diff --git a/README.md b/README.md index e5a1207..3541c49 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ The project is under active development. Core blogging workflows are broadly ava - Local MCP automation over stdio or a localhost-only stateless HTTP endpoint, with project resources, read/search/count tools, inert write proposals, explicit desktop approval, and opt-in Claude Code/Copilot configuration. - A fully localized Ratatui terminal workspace, available locally through `bds-cli tui`/`BDS_MODE=tui` and remotely through authenticated SSH shell sessions, with shared post/template/script editing and publishing, project/search/command overlays, settings, tags, Git, reports, task progress, live multi-client locale updates, and airplane-mode AI gating. - `bds-cli server` hosting the shared application engines over a loopback-by-default, public-key-only SSH service, with restrictive private key material, live authorization updates, terminal-session transport, CLI-change synchronization, ordered domain/task events, and native desktop remote-project selection. -- Markdown/Liquid rendering with native macros, multilingual routes, feeds, sitemap, Pagefind, and incremental site generation through cancellable section task groups. +- bDS2-compatible Markdown/Liquid rendering with native macros, canonical multilingual and flat page routes, recursive menus, calendar archives, feeds, a root hreflang sitemap, Pagefind, and incremental site generation through cancellable section task groups. - Navigable generated-route preview in the app or system browser, with draft database overlays and published filesystem content. - Optional one-shot AI translation, description, analysis, taxonomy, and language-detection operations using independent online and local OpenAI-compatible profiles. Each profile has secure credentials, persistently discovered chat/title/image model selections, explicit tool/vision overrides, chat testing, and status-bar airplane-mode routing. - Persistent conversational AI with safe Markdown, streamed and cancellable responses, model/session/token tracking, bounded project-aware blog tools, and localized conversation management in the Chat workspace. Allowlisted render tools add persistent native cards, charts, forms, lists, metrics, mind maps, tables, and tabs without executing assistant-provided HTML or JavaScript. diff --git a/assets/starter-templates/partials/language-switcher.liquid b/assets/starter-templates/partials/language-switcher.liquid index 1fa9bb3..7b0b604 100644 --- a/assets/starter-templates/partials/language-switcher.liquid +++ b/assets/starter-templates/partials/language-switcher.liquid @@ -15,7 +15,7 @@ @@ -35,7 +35,7 @@ {% endif %} diff --git a/crates/bds-core/src/engine/generation.rs b/crates/bds-core/src/engine/generation.rs index d3060c0..c0b2cbf 100644 --- a/crates/bds-core/src/engine/generation.rs +++ b/crates/bds-core/src/engine/generation.rs @@ -13,10 +13,10 @@ use crate::engine::validate_site::SiteValidationReport; use crate::engine::{EngineError, EngineResult}; use crate::model::{CategorySettings, Post, ProjectMetadata}; use crate::render::{ - GeneratedWriteOutcome, build_calendar_json, build_canonical_post_path, + GeneratedWriteOutcome, PostLanguageVariant, build_calendar_json, build_canonical_post_path, build_site_render_artifacts, build_site_section_render_artifacts, - build_targeted_site_section_render_artifacts, render_markdown_to_html, write_generated_bytes, - write_generated_file, + build_targeted_site_section_render_artifacts, select_post_language_variant, + write_generated_bytes, write_generated_file, }; #[derive(Debug, Clone)] @@ -163,8 +163,6 @@ pub fn render_site_section_with_progress( return Err(EngineError::Validation("cancelled".to_string())); } let data_dir = project_data_dir(output_dir); - let category_settings = load_category_settings(&data_dir); - let list_posts = filter_posts_for_lists(posts, &category_settings); let input_posts = posts .iter() .map(|source| (source.post.clone(), source.body_markdown.clone())) @@ -202,7 +200,7 @@ pub fn render_site_section_with_progress( project_id, metadata, &data_dir, - &list_posts, + posts, &artifacts.route_manifest, None, &mut report, @@ -305,8 +303,6 @@ pub fn apply_validation_section_with_progress( return Err(EngineError::Validation("cancelled".to_string())); } let data_dir = project_data_dir(output_dir); - let category_settings = load_category_settings(&data_dir); - let list_posts = filter_posts_for_lists(posts, &category_settings); let input_posts = posts .iter() .map(|source| (source.post.clone(), source.body_markdown.clone())) @@ -368,7 +364,7 @@ pub fn apply_validation_section_with_progress( project_id, metadata, &data_dir, - &list_posts, + posts, &artifacts.route_manifest, (!fallback).then_some(&requested), &mut report, @@ -400,7 +396,7 @@ fn write_core_outputs( project_id: &str, metadata: &ProjectMetadata, data_dir: &Path, - list_posts: &[PublishedPostSource], + published_posts: &[PublishedPostSource], route_manifest: &[crate::render::SitePage], requested: Option<&HashSet>, report: &mut GenerationReport, @@ -412,7 +408,7 @@ fn write_core_outputs( let mut outputs = vec![( "calendar.json".to_string(), build_calendar_json( - &list_posts + &published_posts .iter() .map(|source| source.post.clone()) .collect::>(), @@ -420,23 +416,53 @@ fn write_core_outputs( )]; for render_language in render_languages(metadata) { let localized_posts = - localized_sources(conn, data_dir, list_posts, &render_language, metadata)?; - let prefix = if render_language == metadata.main_language.as_deref().unwrap_or("en") { + localized_sources(conn, data_dir, published_posts, &render_language, metadata)?; + let is_main = render_language == metadata.main_language.as_deref().unwrap_or("en"); + let prefix = if is_main { String::new() } else { format!("{render_language}/") }; - let rss = build_rss_xml(metadata, &localized_posts, &render_language); - outputs.push((format!("{prefix}rss.xml"), rss.clone())); - outputs.push((format!("{prefix}feed.xml"), rss)); + let mut feed_posts = if is_main { + published_posts.to_vec() + } else { + localized_posts + .iter() + .filter(|source| { + source + .post + .language + .as_deref() + .is_some_and(|language| language.eq_ignore_ascii_case(&render_language)) + }) + .cloned() + .collect::>() + }; + sort_published_sources(&mut feed_posts); + outputs.push(( + format!("{prefix}rss.xml"), + build_rss_xml(metadata, &feed_posts, &render_language), + )); outputs.push(( format!("{prefix}atom.xml"), - build_atom_xml(metadata, &localized_posts, &render_language), - )); - outputs.push(( - format!("{prefix}sitemap.xml"), - build_sitemap_xml(metadata, route_manifest, &localized_posts, &render_language), + build_atom_xml(metadata, &feed_posts, &render_language), )); + if is_main { + let category_settings = load_category_settings(data_dir); + let mut sitemap_posts = published_posts.to_vec(); + sort_published_sources(&mut sitemap_posts); + let sitemap_list_posts = filter_posts_for_lists(&sitemap_posts, &category_settings); + outputs.push(( + "sitemap.xml".to_string(), + build_sitemap_xml( + metadata, + route_manifest, + &sitemap_posts, + &sitemap_list_posts, + &render_language, + ), + )); + } } for (path, content) in outputs { if is_cancelled() { @@ -673,10 +699,9 @@ fn expected_paths_for_sections( format!("{language}/") }; expected.insert(format!("{prefix}rss.xml")); - expected.insert(format!("{prefix}feed.xml")); expected.insert(format!("{prefix}atom.xml")); - expected.insert(format!("{prefix}sitemap.xml")); } + expected.insert("sitemap.xml".to_string()); } expected @@ -775,6 +800,7 @@ pub(crate) fn classify_generated_path(path: &str) -> Option { { Some(GenerationSection::Single) } + [_slug, "index.html"] => Some(GenerationSection::Core), _ => None, } } @@ -782,9 +808,7 @@ pub(crate) fn classify_generated_path(path: &str) -> Option { fn has_language_prefix(parts: &[&str]) -> bool { match parts { [first, second, ..] => { - !is_year_segment(first) - && *first != "category" - && *first != "tag" + matches!(*first, "de" | "en" | "es" | "fr" | "it") && (*second == "index.html" || *second == "404.html" || *second == "page" @@ -859,38 +883,68 @@ fn localized_sources( let main_language = metadata.main_language.as_deref().unwrap_or("en"); let mut localized = Vec::new(); for source in posts { - if language.eq_ignore_ascii_case(main_language) { - localized.push(source.clone()); - continue; - } - if let Ok(translation) = - queries::post_translation::get_post_translation_by_post_and_language( - conn, - &source.post.id, - language, - ) - { - let raw = std::fs::read_to_string( - data_dir.join(translation.file_path.trim_start_matches('/')), - ) - .map_err(EngineError::Io)?; - let (_, body) = crate::util::frontmatter::read_translation_file(&raw) - .map_err(EngineError::Parse)?; - let mut translated_post = source.post.clone(); - translated_post.title = translation.title.clone(); - translated_post.excerpt = translation.excerpt.clone(); - translated_post.language = Some(translation.language.clone()); - translated_post.file_path = translation.file_path.clone(); - translated_post.published_at = translation.published_at.or(source.post.published_at); - localized.push(PublishedPostSource { - post: translated_post, - body_markdown: body, - }); + let translation = queries::post_translation::get_post_translation_by_post_and_language( + conn, + &source.post.id, + language, + ) + .ok() + .filter(|translation| { + !translation.file_path.trim().is_empty() + && data_dir + .join(translation.file_path.trim_start_matches('/')) + .is_file() + }); + match select_post_language_variant( + &source.post, + language, + main_language, + translation.is_some(), + ) { + Some(PostLanguageVariant::Base) => localized.push(source.clone()), + Some(PostLanguageVariant::Translation) => { + let Some(translation) = translation else { + continue; + }; + let raw = std::fs::read_to_string( + data_dir.join(translation.file_path.trim_start_matches('/')), + ) + .map_err(EngineError::Io)?; + let (_, body) = crate::util::frontmatter::read_translation_file(&raw) + .map_err(EngineError::Parse)?; + let mut translated_post = source.post.clone(); + translated_post.id = translation.id.clone(); + translated_post.title = translation.title.clone(); + translated_post.excerpt = translation.excerpt.clone(); + translated_post.language = Some(translation.language.clone()); + translated_post.status = translation.status.clone(); + translated_post.file_path = translation.file_path.clone(); + translated_post.updated_at = translation.updated_at; + translated_post.published_at = + translation.published_at.or(source.post.published_at); + localized.push(PublishedPostSource { + post: translated_post, + body_markdown: body, + }); + } + None => {} } } + sort_published_sources(&mut localized); Ok(localized) } +fn sort_published_sources(posts: &mut [PublishedPostSource]) { + posts.sort_by(|left, right| { + right + .post + .created_at + .cmp(&left.post.created_at) + .then_with(|| right.post.published_at.cmp(&left.post.published_at)) + .then_with(|| left.post.slug.cmp(&right.post.slug)) + }); +} + fn load_category_settings(data_dir: &Path) -> HashMap { crate::engine::meta::read_category_meta_json(data_dir).unwrap_or_default() } @@ -905,8 +959,7 @@ fn filter_posts_for_lists( !source.post.categories.iter().any(|category| { category_settings .get(category) - .map(|settings| !settings.render_in_lists) - .unwrap_or(false) + .is_some_and(|settings| !settings.render_in_lists) }) }) .cloned() @@ -923,74 +976,21 @@ pub(crate) fn build_rss_xml( .as_deref() .unwrap_or("") .trim_end_matches('/'); - let last_build = posts - .iter() - .filter_map(|post| timestamp(post.post.published_at.unwrap_or(post.post.created_at))) - .max() - .unwrap_or_else(Utc::now); - - let mut xml = vec![ - "".to_string(), - "".to_string(), - " ".to_string(), - format!(" {}", escape_xml(&metadata.name)), - format!(" {base_url}/"), - format!(" {}", escape_xml(metadata.description.as_deref().unwrap_or(""))), - format!(" {}", last_build.format("%a, %d %b %Y %H:%M:%S GMT")), - " bDS".to_string(), - ]; + let mut xml = format!( + "{} ({})", + escape_xml(&metadata.name), + escape_xml(language) + ); for source in posts { - let url = format!( - "{base_url}{}", - build_canonical_post_path( - &source.post, - language, - metadata.main_language.as_deref().unwrap_or("en") - ) - ); - let published = timestamp(source.post.published_at.unwrap_or(source.post.created_at)) - .unwrap_or_else(Utc::now); - xml.push(" ".to_string()); - xml.push(format!( - " {}", + let url = post_absolute_url(base_url, metadata, source, language); + xml.push_str(&format!( + "{}{url}", escape_xml(&source.post.title) )); - xml.push(format!(" {url}")); - xml.push(format!(" {url}")); - xml.push(format!( - " {}", - published.format("%a, %d %b %Y %H:%M:%S GMT") - )); - if let Some(author) = &source.post.author { - xml.push(format!(" {}", escape_xml(author))); - } - xml.push(format!( - " {}", - escape_xml(language) - )); - let html = render_markdown_to_html(&source.body_markdown); - xml.push(format!( - " " - )); - xml.push(format!( - " " - )); - for category in &source.post.categories { - xml.push(format!( - " {}", - escape_xml(category) - )); - } - for tag in &source.post.tags { - xml.push(format!(" {}", escape_xml(tag))); - } - xml.push(" ".to_string()); } - - xml.push(" ".to_string()); - xml.push("".to_string()); - xml.join("\n") + xml.push_str(""); + xml } pub(crate) fn build_atom_xml( @@ -1003,85 +1003,45 @@ pub(crate) fn build_atom_xml( .as_deref() .unwrap_or("") .trim_end_matches('/'); - let main_language = metadata.main_language.as_deref().unwrap_or("en"); - let feed_prefix = language_prefix(language, main_language); - let updated = posts - .iter() - .filter_map(|post| timestamp(post.post.published_at.unwrap_or(post.post.created_at))) - .max() - .unwrap_or_else(Utc::now); - let mut xml = vec![ - "".to_string(), - "".to_string(), - format!(" {}", escape_xml(&metadata.name)), - format!( - " {}", - escape_xml(metadata.description.as_deref().unwrap_or("")) - ), - format!(" {base_url}/"), - format!(" "), - format!(" "), - format!( - " {}", - updated.to_rfc3339_opts(chrono::SecondsFormat::Millis, true) - ), - ]; + let mut xml = format!( + "{} ({})", + escape_xml(&metadata.name), + escape_xml(language) + ); for source in posts { - let url = format!( - "{base_url}{}", - build_canonical_post_path( - &source.post, - language, - metadata.main_language.as_deref().unwrap_or("en") - ) - ); - let published = timestamp(source.post.published_at.unwrap_or(source.post.created_at)) - .unwrap_or_else(Utc::now); - let html = render_markdown_to_html(&source.body_markdown); - xml.push(format!(" ", escape_xml(language))); - xml.push(format!( - " {}", + let url = post_absolute_url(base_url, metadata, source, language); + xml.push_str(&format!( + "{}{url}", escape_xml(&source.post.title) )); - xml.push(format!(" {url}")); - xml.push(format!(" ")); - xml.push(format!( - " {}", - published.to_rfc3339_opts(chrono::SecondsFormat::Millis, true) - )); - xml.push(format!( - " {}", - published.to_rfc3339_opts(chrono::SecondsFormat::Millis, true) - )); - if let Some(author) = &source.post.author { - xml.push(format!( - " {}", - escape_xml(author) - )); - } - xml.push(format!("
{html}
")); - xml.push(format!("
{html}
")); - for category in &source.post.categories { - xml.push(format!( - " ", - escape_xml(category) - )); - } - for tag in &source.post.tags { - xml.push(format!(" ", escape_xml(tag))); - } - xml.push("
".to_string()); } + xml.push_str("
"); + xml +} - xml.push("
".to_string()); - xml.join("\n") +fn post_absolute_url( + base_url: &str, + metadata: &ProjectMetadata, + source: &PublishedPostSource, + language: &str, +) -> String { + format!( + "{base_url}{}/", + build_canonical_post_path( + &source.post, + language, + metadata.main_language.as_deref().unwrap_or("en") + ) + .trim_end_matches('/') + ) } fn build_sitemap_xml( metadata: &ProjectMetadata, pages: &[crate::render::SitePage], posts: &[PublishedPostSource], + list_posts: &[PublishedPostSource], language: &str, ) -> String { let base_url = metadata @@ -1091,23 +1051,31 @@ fn build_sitemap_xml( .trim_end_matches('/'); let main_language = metadata.main_language.as_deref().unwrap_or("en"); let languages = render_languages(metadata); - let index_lastmod = posts - .iter() - .filter_map(|post| timestamp(post.post.published_at.unwrap_or(post.post.created_at))) - .max() + let index_lastmod = list_posts + .first() + .and_then(|post| timestamp(post.post.updated_at)) .unwrap_or_else(Utc::now) .to_rfc3339_opts(chrono::SecondsFormat::Millis, true); - let post_lastmod_by_path = posts - .iter() - .filter_map(|source| { - timestamp(source.post.published_at.unwrap_or(source.post.created_at)).map(|lastmod| { - ( - build_canonical_post_path(&source.post, language, main_language), - lastmod.to_rfc3339_opts(chrono::SecondsFormat::Millis, true), - ) - }) - }) - .collect::>(); + let mut post_lastmod_by_path = HashMap::new(); + for source in posts { + let Some(lastmod) = timestamp(source.post.updated_at) else { + continue; + }; + let lastmod = lastmod.to_rfc3339_opts(chrono::SecondsFormat::Millis, true); + post_lastmod_by_path.insert( + build_canonical_post_path(&source.post, language, main_language), + lastmod.clone(), + ); + if source + .post + .categories + .iter() + .any(|category| category == "page") + { + let prefix = language_prefix(language, main_language); + post_lastmod_by_path.insert(format!("{prefix}/{}", source.post.slug), lastmod.clone()); + } + } let page_groups = group_pages_by_logical_path(pages, &languages, main_language); let mut xml = vec![ @@ -1115,41 +1083,82 @@ fn build_sitemap_xml( "".to_string(), ]; - for page in pages.iter().filter(|page| page.language == language) { - let url = format!("{base_url}{}", page.url_path); + let mut language_pages = pages + .iter() + .filter(|page| page.language == language) + .collect::>(); + language_pages.sort_by(|left, right| { + let left_key = logical_page_key(&left.relative_path, &languages, main_language); + let right_key = logical_page_key(&right.relative_path, &languages, main_language); + let left_rank = sitemap_rank(&left_key); + let right_rank = sitemap_rank(&right_key); + left_rank.cmp(&right_rank).then_with(|| { + if (4..=6).contains(&left_rank) { + right_key.cmp(&left_key) + } else { + std::cmp::Ordering::Equal + } + }) + }); + + for page in language_pages { let logical_key = logical_page_key(&page.relative_path, &languages, main_language); + if logical_key.contains("/page/") && !logical_key.starts_with("page/") { + continue; + } + let url_path = sitemap_url_path(&page.url_path); + let url = format!("{base_url}{url_path}"); let alternates = page_groups.get(&logical_key); let lastmod = post_lastmod_by_path .get(&page.url_path) .cloned() .unwrap_or_else(|| index_lastmod.clone()); let is_home = page.url_path == language_root_url_path(language, main_language); + let (changefreq, priority) = sitemap_metadata(&logical_key, is_home); + let rank = sitemap_rank(&logical_key); xml.push(" ".to_string()); - xml.push(format!(" {url}")); + xml.push(format!(" {}", escape_xml(&url))); xml.push(format!(" {lastmod}")); - xml.push(format!( - " {}", - if is_home { "daily" } else { "weekly" } - )); - xml.push(format!( - " {}", - if is_home { "1.0" } else { "0.8" } - )); - if let Some(alternates) = alternates { - for alternate in alternates { + xml.push(format!(" {}", changefreq)); + xml.push(format!(" {}", priority)); + if !matches!(rank, 2 | 3) { + for alternate_language in &languages { + let alternate_path = if alternate_language == main_language { + page.url_path.clone() + } else if page.url_path == "/" { + format!("/{alternate_language}") + } else { + format!("/{alternate_language}{}", page.url_path) + }; + let href = format!("{base_url}{}", sitemap_url_path(&alternate_path)); xml.push(format!( - " ", + " ", + escape_xml(alternate_language), + escape_xml(&href), + )); + } + let href = format!("{base_url}{}", sitemap_url_path(&page.url_path)); + xml.push(format!( + " ", + escape_xml(&href), + )); + } else if let Some(alternates) = alternates { + for alternate in alternates { + let href = format!("{base_url}{}", sitemap_url_path(&alternate.url_path)); + xml.push(format!( + " ", escape_xml(&alternate.language), - alternate.url_path, + escape_xml(&href), )); } if let Some(default_page) = alternates .iter() .find(|alternate| alternate.language == main_language) { + let href = format!("{base_url}{}", sitemap_url_path(&default_page.url_path)); xml.push(format!( - " ", - default_page.url_path, + " ", + escape_xml(&href), )); } } @@ -1157,7 +1166,65 @@ fn build_sitemap_xml( } xml.push("".to_string()); - xml.join("\n") + format!("{}\n", xml.join("\n")) +} + +fn sitemap_url_path(path: &str) -> String { + if path == "/" { + path.to_string() + } else { + format!("{}/", path.trim_end_matches('/')) + } +} + +fn sitemap_metadata(logical_path: &str, is_home: bool) -> (&'static str, &'static str) { + if is_home { + return ("daily", "1.0"); + } + if logical_path.starts_with("page/") { + return ("daily", "0.9"); + } + let parts = logical_path.split('/').collect::>(); + match parts.as_slice() { + [year, month, day, _slug, "index.html"] + if is_year_segment(year) && is_month_segment(month) && is_day_segment(day) => + { + ("monthly", "0.8") + } + ["category" | "tag", ..] => ("weekly", "0.6"), + [year, month, day, "index.html"] + if is_year_segment(year) && is_month_segment(month) && is_day_segment(day) => + { + ("monthly", "0.4") + } + [year, ..] if is_year_segment(year) => ("monthly", "0.5"), + [_slug, "index.html"] => ("weekly", "0.7"), + _ => ("weekly", "0.6"), + } +} + +fn sitemap_rank(logical_path: &str) -> u8 { + let parts = logical_path.split('/').collect::>(); + match parts.as_slice() { + ["index.html"] => 0, + ["page", _, "index.html"] => 1, + [year, month, day, _slug, "index.html"] + if is_year_segment(year) && is_month_segment(month) && is_day_segment(day) => + { + 2 + } + [year, "index.html"] if is_year_segment(year) => 4, + [year, month, "index.html"] if is_year_segment(year) && is_month_segment(month) => 5, + [year, month, day, "index.html"] + if is_year_segment(year) && is_month_segment(month) && is_day_segment(day) => + { + 6 + } + [_slug, "index.html"] => 3, + ["category", ..] => 7, + ["tag", ..] => 8, + _ => 9, + } } fn language_prefix(language: &str, main_language: &str) -> String { diff --git a/crates/bds-core/src/engine/preview.rs b/crates/bds-core/src/engine/preview.rs index 4dac8a9..4a98603 100644 --- a/crates/bds-core/src/engine/preview.rs +++ b/crates/bds-core/src/engine/preview.rs @@ -14,7 +14,7 @@ use crate::db::{Database, queries}; use crate::engine::generation::PublishedPostSource; use crate::engine::{EngineError, EngineResult}; use crate::model::{Post, PostStatus, pico_stylesheet_href}; -use crate::render::build_preview_response; +use crate::render::{PostLanguageVariant, build_preview_response, select_post_language_variant}; use crate::util::frontmatter::{read_post_file, read_translation_file}; pub const PREVIEW_HOST: &str = "127.0.0.1"; @@ -204,9 +204,8 @@ fn render_preview_response( let metadata = crate::engine::meta::read_project_json(&state.data_dir)?; let db = Database::open(&state.db_path)?; let preview_posts = collect_preview_posts(state)?; - let list_posts = filter_preview_list_posts(&state.data_dir, &preview_posts); if path == "/calendar.json" { - let posts = list_posts + let posts = preview_posts .iter() .map(|source| source.post.clone()) .collect::>(); @@ -220,13 +219,27 @@ fn render_preview_response( .into_response()); } if let Some((language, kind)) = preview_feed_request(path, &metadata) { - let localized_posts = localized_preview_posts( - db.conn(), - &state.data_dir, - &list_posts, - &language, - metadata.main_language.as_deref().unwrap_or("en"), - )?; + let main_language = metadata.main_language.as_deref().unwrap_or("en"); + let localized_posts = if language.eq_ignore_ascii_case(main_language) { + preview_posts.clone() + } else { + localized_preview_posts( + db.conn(), + &state.data_dir, + &preview_posts, + &language, + main_language, + )? + .into_iter() + .filter(|source| { + source + .post + .language + .as_deref() + .is_some_and(|post_language| post_language.eq_ignore_ascii_case(&language)) + }) + .collect() + }; let (content_type, xml) = match kind { PreviewFeedKind::Rss => ( "application/rss+xml; charset=utf-8", @@ -414,28 +427,17 @@ fn collect_preview_posts(state: &PreviewServerState) -> EngineResult Vec { - let settings = crate::engine::meta::read_category_meta_json(data_dir).unwrap_or_default(); - posts - .iter() - .filter(|source| { - !source.post.categories.iter().any(|category| { - settings - .get(category) - .is_some_and(|setting| !setting.render_in_lists) - }) - }) - .cloned() - .collect() -} - fn preview_feed_request( path: &str, metadata: &crate::model::ProjectMetadata, @@ -460,7 +462,7 @@ fn preview_feed_request( _ => return None, }; let kind = match filename { - "rss.xml" | "feed.xml" => PreviewFeedKind::Rss, + "rss.xml" => PreviewFeedKind::Rss, "atom.xml" => PreviewFeedKind::Atom, _ => return None, }; @@ -474,30 +476,49 @@ fn localized_preview_posts( language: &str, main_language: &str, ) -> EngineResult> { - if language.eq_ignore_ascii_case(main_language) { - return Ok(posts.to_vec()); - } - let mut localized = Vec::new(); for source in posts { - let Ok(translation) = queries::post_translation::get_post_translation_by_post_and_language( + let translation = queries::post_translation::get_post_translation_by_post_and_language( conn, &source.post.id, language, - ) else { - continue; - }; - let mut translated_post = source.post.clone(); - translated_post.title = translation.title.clone(); - translated_post.excerpt = translation.excerpt.clone(); - translated_post.language = Some(translation.language.clone()); - translated_post.status = translation.status.clone(); - translated_post.file_path = translation.file_path.clone(); - translated_post.published_at = translation.published_at.or(source.post.published_at); - localized.push(PublishedPostSource { - post: translated_post, - body_markdown: load_translation_body(data_dir, &translation)?, + ) + .ok() + .filter(|translation| { + (translation.status == PostStatus::Draft && translation.content.is_some()) + || (!translation.file_path.trim().is_empty() + && data_dir + .join(translation.file_path.trim_start_matches('/')) + .is_file()) }); + match select_post_language_variant( + &source.post, + language, + main_language, + translation.is_some(), + ) { + Some(PostLanguageVariant::Base) => localized.push(source.clone()), + Some(PostLanguageVariant::Translation) => { + let Some(translation) = translation else { + continue; + }; + let mut translated_post = source.post.clone(); + translated_post.id = translation.id.clone(); + translated_post.title = translation.title.clone(); + translated_post.excerpt = translation.excerpt.clone(); + translated_post.language = Some(translation.language.clone()); + translated_post.status = translation.status.clone(); + translated_post.file_path = translation.file_path.clone(); + translated_post.updated_at = translation.updated_at; + translated_post.published_at = + translation.published_at.or(source.post.published_at); + localized.push(PublishedPostSource { + post: translated_post, + body_markdown: load_translation_body(data_dir, &translation)?, + }); + } + None => {} + } } Ok(localized) } @@ -789,6 +810,25 @@ mod tests { assert!(html.contains("world")); } + #[test] + fn preview_renders_page_category_post_at_flat_path() { + let db = Database::open_in_memory().unwrap(); + let mut source = make_post(); + source.post.categories = vec!["page".into()]; + let response = build_preview_response( + db.conn(), + Path::new("."), + "project-1", + &make_metadata(), + &[(source.post, source.body_markdown)], + "/hello", + ) + .unwrap(); + + assert_eq!(response.status_code, 200); + assert!(response.html.contains("

Hello

")); + } + #[test] fn preview_renders_language_prefixed_single_post() { let dir = tempfile::tempdir().unwrap(); @@ -923,11 +963,10 @@ mod tests { assert!(translated_draft_html.contains("Deutscher Entwurf")); assert!(calendar_json.contains("2024")); assert!(rss_xml.contains("body")); - assert!(rss_xml.contains("Filesystem body")); - assert!(!rss_xml.contains("Stale database body")); + assert!(rss_xml.contains("Hello")); + assert!(rss_xml.contains("Published from file")); assert!(translated_atom_xml.contains("Entwurf")); + assert!(translated_atom_xml.contains("Hallo")); } #[test] diff --git a/crates/bds-core/src/engine/validate_site.rs b/crates/bds-core/src/engine/validate_site.rs index 976dff6..3e785f7 100644 --- a/crates/bds-core/src/engine/validate_site.rs +++ b/crates/bds-core/src/engine/validate_site.rs @@ -47,10 +47,9 @@ pub fn validate_site( format!("{language}/") }; expected.insert(format!("{prefix}rss.xml")); - expected.insert(format!("{prefix}feed.xml")); expected.insert(format!("{prefix}atom.xml")); - expected.insert(format!("{prefix}sitemap.xml")); } + expected.insert("sitemap.xml".to_string()); let mut actual = HashSet::new(); if output_dir.exists() { diff --git a/crates/bds-core/src/render/generation.rs b/crates/bds-core/src/render/generation.rs index e1cf741..f0c948b 100644 --- a/crates/bds-core/src/render/generation.rs +++ b/crates/bds-core/src/render/generation.rs @@ -3,7 +3,7 @@ use std::fs; use std::path::Path; use crate::db::DbConnection as Connection; -use chrono::{Datelike, TimeZone, Utc}; +use chrono::{Datelike, Local, TimeZone}; use serde::Serialize; use crate::db::queries::generated_file_hash as qhash; @@ -99,7 +99,6 @@ pub fn build_core_generation_paths(main_language: &str, blog_languages: &[String "404.html".to_string(), "sitemap.xml".to_string(), "rss.xml".to_string(), - "feed.xml".to_string(), "atom.xml".to_string(), "calendar.json".to_string(), ]; @@ -108,9 +107,7 @@ pub fn build_core_generation_paths(main_language: &str, blog_languages: &[String if language != main_language { paths.push(format!("{language}/index.html")); paths.push(format!("{language}/404.html")); - paths.push(format!("{language}/sitemap.xml")); paths.push(format!("{language}/rss.xml")); - paths.push(format!("{language}/feed.xml")); paths.push(format!("{language}/atom.xml")); } } @@ -124,8 +121,7 @@ pub fn build_calendar_archive_data(posts: &[Post]) -> CalendarArchiveData { let mut days = BTreeMap::new(); for post in posts { - let timestamp_ms = post.published_at.unwrap_or(post.created_at); - let Some(created_at) = Utc.timestamp_millis_opt(timestamp_ms).single() else { + let Some(created_at) = Local.timestamp_millis_opt(post.created_at).single() else { continue; }; @@ -146,5 +142,5 @@ pub fn build_calendar_archive_data(posts: &[Post]) -> CalendarArchiveData { } pub fn build_calendar_json(posts: &[Post]) -> serde_json::Result { - serde_json::to_string_pretty(&build_calendar_archive_data(posts)) + serde_json::to_string(&build_calendar_archive_data(posts)) } diff --git a/crates/bds-core/src/render/mod.rs b/crates/bds-core/src/render/mod.rs index a4c8889..4c211bd 100644 --- a/crates/bds-core/src/render/mod.rs +++ b/crates/bds-core/src/render/mod.rs @@ -13,6 +13,7 @@ pub use generation::{ pub use markdown::render_markdown_to_html; pub(crate) use page_renderer::render_liquid_template_with_host; pub use page_renderer::{RenderError, render_liquid_template}; +pub(crate) use routes::{PostLanguageVariant, select_post_language_variant}; pub use routes::{ RenderedPage, build_canonical_post_path, render_starter_list_page, render_starter_list_page_with_media_map, render_starter_single_post_page, diff --git a/crates/bds-core/src/render/routes.rs b/crates/bds-core/src/render/routes.rs index 3edc0c0..282c0a5 100644 --- a/crates/bds-core/src/render/routes.rs +++ b/crates/bds-core/src/render/routes.rs @@ -1,6 +1,6 @@ use std::collections::HashMap; -use chrono::{Datelike, TimeZone, Utc}; +use chrono::{Datelike, Local, TimeZone}; use serde::Serialize; use crate::i18n::normalize_language; @@ -17,6 +17,40 @@ const STARTER_MENU_PARTIAL: &str = include_str!("../../../../assets/starter-templates/partials/menu.liquid"); const STARTER_LANGUAGE_SWITCHER_PARTIAL: &str = include_str!("../../../../assets/starter-templates/partials/language-switcher.liquid"); +const STARTER_MENU_ITEMS_PARTIAL: &str = + include_str!("../../../../assets/starter-templates/partials/menu-items.liquid"); + +#[derive(Debug, Clone, Copy, PartialEq, Eq)] +pub(crate) enum PostLanguageVariant { + Base, + Translation, +} + +pub(crate) fn select_post_language_variant( + post: &Post, + target_language: &str, + main_language: &str, + has_translation: bool, +) -> Option { + let source_language = post.language.as_deref().unwrap_or(main_language); + if target_language.eq_ignore_ascii_case(main_language) { + return Some(if has_translation { + PostLanguageVariant::Translation + } else { + PostLanguageVariant::Base + }); + } + if post.do_not_translate { + return None; + } + if source_language.eq_ignore_ascii_case(target_language) { + Some(PostLanguageVariant::Base) + } else if has_translation { + Some(PostLanguageVariant::Translation) + } else { + Some(PostLanguageVariant::Base) + } +} #[derive(Debug, Clone, PartialEq, Eq)] pub struct RenderedPage { @@ -99,8 +133,7 @@ struct PostTemplateContext<'a> { } pub fn build_canonical_post_path(post: &Post, language: &str, main_language: &str) -> String { - let timestamp_ms = post.published_at.unwrap_or(post.created_at); - let Some(timestamp) = Utc.timestamp_millis_opt(timestamp_ms).single() else { + let Some(timestamp) = Local.timestamp_millis_opt(post.created_at).single() else { return fallback_language_path(post, language, main_language); }; @@ -276,8 +309,7 @@ fn starter_partials() -> HashMap { ), ( "partials/menu-items".to_string(), - "{% for item in items %}{{ item.title }}{% endfor %}" - .to_string(), + STARTER_MENU_ITEMS_PARTIAL.to_string(), ), ]) } @@ -310,8 +342,8 @@ fn fallback_language_path(post: &Post, language: &str, main_language: &str) -> S } fn calendar_initial_parts(post: &Post) -> (i32, u32) { - let timestamp_ms = post.published_at.unwrap_or(post.created_at); - Utc.timestamp_millis_opt(timestamp_ms) + Local + .timestamp_millis_opt(post.created_at) .single() .map(|timestamp| (timestamp.year(), timestamp.month())) .unwrap_or((1970, 1)) @@ -406,8 +438,7 @@ fn build_day_blocks(posts: &[(Post, String)]) -> Vec { let mut current_key: Option = None; for (post, body) in posts { - let timestamp_ms = post.published_at.unwrap_or(post.created_at); - let Some(timestamp) = Utc.timestamp_millis_opt(timestamp_ms).single() else { + let Some(timestamp) = Local.timestamp_millis_opt(post.created_at).single() else { continue; }; @@ -425,10 +456,10 @@ fn build_day_blocks(posts: &[(Post, String)]) -> Vec { blocks.push(DayBlockContext { show_date_marker: true, date_label: format!( - "{:02}.{:02}.{:04}", - timestamp.day(), + "{:04}-{:02}-{:02}", + timestamp.year(), timestamp.month(), - timestamp.year() + timestamp.day() ), posts: Vec::new(), show_separator: false, @@ -500,7 +531,8 @@ mod tests { #[test] fn canonical_post_paths_follow_language_prefix_rule() { - let post = make_post(); + let mut post = make_post(); + post.published_at = Some(1_712_678_400_000); assert_eq!( build_canonical_post_path(&post, "en", "en"), "/2024/03/09/hello" @@ -511,6 +543,52 @@ mod tests { ); } + #[test] + fn canonical_post_paths_use_the_bds2_local_created_date() { + let mut post = make_post(); + post.created_at = 1_711_927_800_000; + let local = Local + .timestamp_millis_opt(post.created_at) + .single() + .unwrap(); + + assert_eq!( + build_canonical_post_path(&post, "en", "en"), + format!( + "/{:04}/{:02}/{:02}/hello", + local.year(), + local.month(), + local.day() + ) + ); + } + + #[test] + fn language_variants_match_bds2_canonical_and_fallback_rules() { + let mut post = make_post(); + post.language = Some("en".into()); + + assert_eq!( + select_post_language_variant(&post, "de", "de", true), + Some(PostLanguageVariant::Translation) + ); + assert_eq!( + select_post_language_variant(&post, "en", "de", false), + Some(PostLanguageVariant::Base) + ); + assert_eq!( + select_post_language_variant(&post, "fr", "de", true), + Some(PostLanguageVariant::Translation) + ); + assert_eq!( + select_post_language_variant(&post, "fr", "de", false), + Some(PostLanguageVariant::Base) + ); + + post.do_not_translate = true; + assert_eq!(select_post_language_variant(&post, "fr", "de", true), None); + } + #[test] fn starter_single_post_renderer_uses_canonical_route_and_language_links() { let post = make_post(); @@ -591,8 +669,8 @@ mod tests { assert_eq!(rendered.relative_path, "de/index.html"); assert!(rendered.html.contains("archive-day-group")); - assert!(rendered.html.contains("09.03.2024")); - assert!(rendered.html.contains("10.03.2024")); + assert!(rendered.html.contains("2024-03-09")); + assert!(rendered.html.contains("2024-03-10")); assert!(rendered.html.contains("href=\"/de/2024/03/10/next\"")); } } diff --git a/crates/bds-core/src/render/site.rs b/crates/bds-core/src/render/site.rs index 3a200a9..5bfb2c5 100644 --- a/crates/bds-core/src/render/site.rs +++ b/crates/bds-core/src/render/site.rs @@ -5,7 +5,7 @@ use std::path::Path; use std::sync::Arc; use crate::db::DbConnection as Connection; -use chrono::{Datelike, TimeZone, Utc}; +use chrono::{Datelike, Local, TimeZone, Utc}; use rayon::prelude::*; use serde_json::{Value, json}; @@ -17,8 +17,8 @@ use crate::model::{ TemplateKind, TemplateStatus, }; use crate::render::{ - RenderCategorySettings, RenderTemplateLookup, build_canonical_post_path, - render_liquid_template_with_host, resolve_post_template, + PostLanguageVariant, RenderCategorySettings, RenderTemplateLookup, build_canonical_post_path, + render_liquid_template_with_host, resolve_post_template, select_post_language_variant, }; use crate::scripting::{CoreHost, HostApi, UnavailableHost}; use crate::util::frontmatter::{read_script_file, read_template_file, read_translation_file}; @@ -36,6 +36,8 @@ const STARTER_MENU_PARTIAL: &str = include_str!("../../../../assets/starter-templates/partials/menu.liquid"); const STARTER_LANGUAGE_SWITCHER_PARTIAL: &str = include_str!("../../../../assets/starter-templates/partials/language-switcher.liquid"); +const STARTER_MENU_ITEMS_PARTIAL: &str = + include_str!("../../../../assets/starter-templates/partials/menu-items.liquid"); #[derive(Debug, Clone, PartialEq, Eq)] pub struct SitePage { @@ -81,6 +83,7 @@ struct TemplateBundle { #[derive(Debug, Clone)] struct RenderPostRecord { post: Post, + source_post_id: String, body_markdown: String, } @@ -278,47 +281,64 @@ fn build_site_render_artifacts_with_mode( canonical_post_path_by_slug(&localized_posts, &language, &main_language); for record in &localized_posts { let canonical_path = build_canonical_post_path(&record.post, &language, &main_language); - let relative_path = format!("{}/index.html", canonical_path.trim_start_matches('/')); - artifacts.route_manifest.push(SitePage { - language: language.clone(), - relative_path: relative_path.clone(), - url_path: canonical_path.clone(), - html: String::new(), - }); - if section.is_some_and(|section| section != GenerationSection::Single) { - continue; + let mut post_paths = vec![(canonical_path, GenerationSection::Single)]; + if record + .post + .categories + .iter() + .any(|category| category == "page") + { + post_paths.push(( + if language == main_language { + format!("/{}", record.post.slug) + } else { + format!("/{language}/{}", record.post.slug) + }, + GenerationSection::Core, + )); } - if requested_paths.is_some_and(|requested| !requested.contains(&relative_path)) { - continue; + for (url_path, route_section) in post_paths { + let relative_path = format!("{}/index.html", url_path.trim_start_matches('/')); + artifacts.route_manifest.push(SitePage { + language: language.clone(), + relative_path: relative_path.clone(), + url_path: url_path.clone(), + html: String::new(), + }); + if section.is_some_and(|section| section != route_section) + || requested_paths.is_some_and(|requested| !requested.contains(&relative_path)) + { + continue; + } + let html = render_post_route( + conn, + metadata, + &language, + &main_language, + record, + &localized_posts, + &tags, + &category_settings, + &media_by_id, + &canonical_map, + &menu_items, + &post_data_json_by_id, + &bundle, + is_preview, + )?; + artifacts.pagefind_documents.push(PagefindDocument { + language: language.clone(), + relative_path: relative_path.clone(), + url_path: url_path.clone(), + html: html.clone(), + }); + artifacts.pages.push(SitePage { + language: language.clone(), + relative_path, + url_path, + html, + }); } - let html = render_post_route( - conn, - metadata, - &language, - &main_language, - record, - &localized_posts, - &tags, - &category_settings, - &media_by_id, - &canonical_map, - &menu_items, - &post_data_json_by_id, - &bundle, - is_preview, - )?; - artifacts.pagefind_documents.push(PagefindDocument { - language: language.clone(), - relative_path: relative_path.clone(), - url_path: canonical_path.clone(), - html: html.clone(), - }); - artifacts.pages.push(SitePage { - language: language.clone(), - relative_path, - url_path: canonical_path, - html, - }); } } @@ -513,47 +533,61 @@ fn load_language_posts( ) -> Result, Box> { let mut posts = Vec::new(); for (post, body) in published_posts { - if language.eq_ignore_ascii_case(main_language) { - posts.push(RenderPostRecord { + let translation = queries::post_translation::get_post_translation_by_post_and_language( + conn, &post.id, language, + ) + .ok() + .filter(|translation| { + (is_preview && translation.status == PostStatus::Draft && translation.content.is_some()) + || (!translation.file_path.trim().is_empty() + && data_dir + .join(translation.file_path.trim_start_matches('/')) + .is_file()) + }); + match select_post_language_variant(post, language, main_language, translation.is_some()) { + Some(PostLanguageVariant::Base) => posts.push(RenderPostRecord { post: post.clone(), + source_post_id: post.id.clone(), body_markdown: body.clone(), - }); - continue; - } - - if let Ok(translation) = - queries::post_translation::get_post_translation_by_post_and_language( - conn, &post.id, language, - ) - { - let translated_body = if is_preview && translation.status == PostStatus::Draft { - match &translation.content { - Some(content) => content.clone(), - None => read_translation_body(data_dir, &translation.file_path)?, - } - } else { - read_translation_body(data_dir, &translation.file_path)? - }; - let mut translated_post = post.clone(); - translated_post.title = translation.title.clone(); - translated_post.excerpt = translation.excerpt.clone(); - translated_post.language = Some(translation.language.clone()); - translated_post.status = translation.status.clone(); - translated_post.file_path = translation.file_path.clone(); - translated_post.published_at = translation.published_at.or(post.published_at); - posts.push(RenderPostRecord { - post: translated_post, - body_markdown: translated_body, - }); + }), + Some(PostLanguageVariant::Translation) => { + let Some(translation) = translation else { + continue; + }; + let translated_body = if is_preview && translation.status == PostStatus::Draft { + match &translation.content { + Some(content) => content.clone(), + None => read_translation_body(data_dir, &translation.file_path)?, + } + } else { + read_translation_body(data_dir, &translation.file_path)? + }; + let mut translated_post = post.clone(); + translated_post.id = translation.id.clone(); + translated_post.title = translation.title.clone(); + translated_post.excerpt = translation.excerpt.clone(); + translated_post.language = Some(translation.language.clone()); + translated_post.status = translation.status.clone(); + translated_post.file_path = translation.file_path.clone(); + translated_post.updated_at = translation.updated_at; + translated_post.published_at = translation.published_at.or(post.published_at); + posts.push(RenderPostRecord { + post: translated_post, + source_post_id: post.id.clone(), + body_markdown: translated_body, + }); + } + None => {} } } posts.sort_by(|left, right| { right .post - .published_at - .unwrap_or(right.post.created_at) - .cmp(&left.post.published_at.unwrap_or(left.post.created_at)) + .created_at + .cmp(&left.post.created_at) + .then_with(|| right.post.published_at.cmp(&left.post.published_at)) + .then_with(|| left.post.slug.cmp(&right.post.slug)) }); Ok(posts) } @@ -607,10 +641,7 @@ fn build_language_routes( .or_default() .push(record.clone()); } - if let Some(timestamp) = Utc - .timestamp_millis_opt(record.post.published_at.unwrap_or(record.post.created_at)) - .single() - { + if let Some(timestamp) = Local.timestamp_millis_opt(record.post.created_at).single() { year_posts .entry(timestamp.year()) .or_default() @@ -791,8 +822,8 @@ fn render_list_route( "calendar_initial_month": route.posts.first().map(|post| calendar_initial_parts(&post.post).1).unwrap_or(1), "archive_context": route.archive_context, "show_archive_range_heading": false, - "min_date": route.posts.last().map(|record| timestamp_parts(record.post.published_at.unwrap_or(record.post.created_at))), - "max_date": route.posts.first().map(|record| timestamp_parts(record.post.published_at.unwrap_or(record.post.created_at))), + "min_date": route.posts.last().map(|record| timestamp_parts(record.post.created_at)), + "max_date": route.posts.first().map(|record| timestamp_parts(record.post.created_at)), "day_blocks": build_day_blocks(&route.posts, category_settings), "is_list_page": route.current_page > 1, "is_first_page": route.current_page == 1, @@ -866,19 +897,19 @@ fn render_post_route( .or_else(|| resolved.content.clone()) .unwrap_or_else(|| STARTER_SINGLE_POST_TEMPLATE.to_string()); - let linked_media = queries::post_media::list_post_media_by_post(conn, &record.post.id) + let linked_media = queries::post_media::list_post_media_by_post(conn, &record.source_post_id) .unwrap_or_default() .into_iter() .filter_map(|link| media_by_id.get(&link.media_id)) .map(media_context) .collect::>(); let outgoing_links = - queries::post_link::list_links_by_source(conn, &record.post.id).unwrap_or_default(); + queries::post_link::list_links_by_source(conn, &record.source_post_id).unwrap_or_default(); let incoming_links = - queries::post_link::list_links_by_target(conn, &record.post.id).unwrap_or_default(); + queries::post_link::list_links_by_target(conn, &record.source_post_id).unwrap_or_default(); let post_by_id = all_posts .iter() - .map(|item| (item.post.id.clone(), item)) + .map(|item| (item.source_post_id.clone(), item)) .collect::>(); let outgoing_link_context = outgoing_links .iter() @@ -1072,8 +1103,7 @@ fn build_day_blocks( let mut current_label = String::new(); for record in posts { - let timestamp_ms = record.post.published_at.unwrap_or(record.post.created_at); - let Some(timestamp) = Utc.timestamp_millis_opt(timestamp_ms).single() else { + let Some(timestamp) = Local.timestamp_millis_opt(record.post.created_at).single() else { continue; }; let key = format!( @@ -1091,13 +1121,8 @@ fn build_day_blocks( })); current_posts = Vec::new(); } + current_label = key.clone(); current_key = key; - current_label = format!( - "{:02}.{:02}.{:04}", - timestamp.day(), - timestamp.month(), - timestamp.year() - ); let show_title = should_show_list_title(&record.post, category_settings); current_posts.push(json!({ "id": record.post.id, @@ -1631,8 +1656,7 @@ fn starter_partials() -> HashMap { ), ( "partials/menu-items".to_string(), - "{% for item in items %}{{ item.title }}{% endfor %}" - .to_string(), + STARTER_MENU_ITEMS_PARTIAL.to_string(), ), ]) } @@ -1644,8 +1668,8 @@ fn pico_stylesheet_href(metadata: &ProjectMetadata) -> Option { } fn calendar_initial_parts(post: &Post) -> (i32, u32) { - let timestamp_ms = post.published_at.unwrap_or(post.created_at); - Utc.timestamp_millis_opt(timestamp_ms) + Local + .timestamp_millis_opt(post.created_at) .single() .map(|timestamp| (timestamp.year(), timestamp.month())) .unwrap_or((1970, 1)) @@ -1670,6 +1694,22 @@ mod menu_tests { use super::*; use crate::engine::menu::{MenuItem, MenuItemKind}; + #[test] + fn starter_menu_partial_keeps_nested_submenus_and_calendar_navigation() { + let partials = starter_partials(); + let menu_items = partials.get("partials/menu-items").unwrap(); + + assert!(menu_items.contains("blog-menu-submenu")); + assert!(menu_items.contains("data-blog-calendar-toggle")); + assert!(menu_items.contains("data-blog-calendar-root")); + assert!( + partials + .get("partials/language-switcher") + .unwrap() + .contains("data-search-no-results") + ); + } + #[test] fn preview_request_paths_select_only_the_matching_generated_page() { assert_eq!(preview_relative_path("/"), "index.html"); diff --git a/crates/bds-core/tests/fixture_readability.rs b/crates/bds-core/tests/fixture_readability.rs index fd4642b..dc08438 100644 --- a/crates/bds-core/tests/fixture_readability.rs +++ b/crates/bds-core/tests/fixture_readability.rs @@ -247,3 +247,26 @@ fn relationships_reference_existing_entities() { ); } } + +#[test] +fn generated_site_golden_tracks_current_bds2_rendering() { + let directory = PathBuf::from(env!("CARGO_MANIFEST_DIR")) + .join("../../fixtures/golden-generated-sites/rfc1437-sample"); + let index = fs::read_to_string(directory.join("index.html")).unwrap(); + let rss = fs::read_to_string(directory.join("rss.xml")).unwrap(); + let atom = fs::read_to_string(directory.join("atom.xml")).unwrap(); + let sitemap = fs::read_to_string(directory.join("sitemap.xml")).unwrap(); + let calendar: serde_json::Value = + serde_json::from_str(&fs::read_to_string(directory.join("calendar.json")).unwrap()) + .unwrap(); + + assert!(index.contains("class=\"blog-menu-submenu\"")); + assert!(index.contains("data-search-no-results=\"Keine Ergebnisse gefunden\"")); + assert!(index.contains("2026-07-17")); + assert!(rss.starts_with("rfc1437 (de)")); + assert!(atom.starts_with("rfc1437 (de)")); + assert!(sitemap.contains("https://www.rfc1437.de/")); + assert!(sitemap.contains("hreflang=\"en\" href=\"https://www.rfc1437.de/en/\"")); + assert!(sitemap.contains("https://www.rfc1437.de/bilderarchiv-2004/")); + assert_eq!(calendar["days"]["2026-07-17"], 3); +} diff --git a/crates/bds-core/tests/m4_generation_engine.rs b/crates/bds-core/tests/m4_generation_engine.rs index eae8d7e..93caa40 100644 --- a/crates/bds-core/tests/m4_generation_engine.rs +++ b/crates/bds-core/tests/m4_generation_engine.rs @@ -11,8 +11,8 @@ use bds_core::engine::generation::{ use bds_core::engine::meta::write_category_meta_json; use bds_core::engine::validate_site::validate_site; use bds_core::model::{ - CategorySettings, Post, PostStatus, Project, ProjectMetadata, Template, TemplateKind, - TemplateStatus, + CategorySettings, Post, PostStatus, PostTranslation, Project, ProjectMetadata, Template, + TemplateKind, TemplateStatus, }; use tempfile::TempDir; @@ -177,7 +177,7 @@ fn generation_engine_writes_core_and_single_post_artifacts() { assert!(report.written_paths.contains(&"index.html".to_string())); assert!(report.written_paths.contains(&"calendar.json".to_string())); assert!(report.written_paths.contains(&"rss.xml".to_string())); - assert!(report.written_paths.contains(&"feed.xml".to_string())); + assert!(!report.written_paths.contains(&"feed.xml".to_string())); assert!(report.written_paths.contains(&"atom.xml".to_string())); assert!(report.written_paths.contains(&"sitemap.xml".to_string())); assert!(report.written_paths.contains(&"404.html".to_string())); @@ -209,7 +209,7 @@ fn generation_engine_writes_core_and_single_post_artifacts() { assert!(dir.path().join("index.html").exists()); assert!(dir.path().join("rss.xml").exists()); - assert!(dir.path().join("feed.xml").exists()); + assert!(!dir.path().join("feed.xml").exists()); assert!(dir.path().join("atom.xml").exists()); assert!(dir.path().join("sitemap.xml").exists()); assert!(dir.path().join("assets/pico.min.css").exists()); @@ -217,14 +217,188 @@ fn generation_engine_writes_core_and_single_post_artifacts() { assert!(dir.path().join("2024/03/09/hello/index.html").exists()); let rss = std::fs::read_to_string(dir.path().join("rss.xml")).unwrap(); - assert!(rss.contains("Blog (en)nexthttps://example.com/2024/03/10/next/hellohttps://example.com/2024/03/09/hello/" + ); + let atom = std::fs::read_to_string(dir.path().join("atom.xml")).unwrap(); + assert_eq!( + atom, + "Blog (en)nexthttps://example.com/2024/03/10/next/hellohttps://example.com/2024/03/09/hello/" + ); let sitemap = std::fs::read_to_string(dir.path().join("sitemap.xml")).unwrap(); assert!(sitemap.contains("https://example.com/2024/03/09/hello")); assert!(sitemap.contains("https://example.com/category/article")); } +#[test] +fn mixed_source_languages_use_the_main_language_at_canonical_urls() { + let (db, dir) = setup(); + let mut metadata = make_metadata(); + metadata.main_language = Some("de".into()); + metadata.blog_languages = vec!["de".into(), "en".into()]; + bds_core::engine::meta::write_project_json(dir.path(), &metadata).unwrap(); + insert_template( + db.conn(), + &Template { + id: "template-post".into(), + project_id: "p1".into(), + slug: "post".into(), + title: "Post".into(), + kind: TemplateKind::Post, + enabled: true, + version: 1, + file_path: String::new(), + status: TemplateStatus::Published, + content: Some("ID={{ post.id }} {{ post.content }}".into()), + created_at: 1, + updated_at: 1, + }, + ) + .unwrap(); + + let mut english_source = make_post("english-source", 1_710_000_000_000); + english_source.language = Some("en".into()); + write_published_snapshot(&dir, &mut english_source, "English source body"); + bds_core::db::queries::post::insert_post(db.conn(), &english_source).unwrap(); + let german_translation = PostTranslation { + id: "translation-english-de".into(), + project_id: "p1".into(), + translation_for: english_source.id.clone(), + language: "de".into(), + title: "Deutsche Übersetzung".into(), + excerpt: None, + content: None, + status: PostStatus::Published, + file_path: "posts/english-source.de.md".into(), + checksum: None, + created_at: english_source.created_at, + updated_at: english_source.updated_at, + published_at: english_source.published_at, + }; + bds_core::db::queries::post_translation::insert_post_translation( + db.conn(), + &german_translation, + ) + .unwrap(); + std::fs::write( + dir.path().join(&german_translation.file_path), + bds_core::util::frontmatter::write_translation_file( + &german_translation, + "Deutscher Übersetzungstext", + ), + ) + .unwrap(); + + let mut german_without_translation = make_post("german-fallback", 1_710_172_800_000); + german_without_translation.language = Some("de".into()); + german_without_translation.title = "Deutscher Fallback".into(); + + let mut german_source = make_post("german-source", 1_710_086_400_000); + german_source.language = Some("de".into()); + german_source.title = "Deutsche Quelle".into(); + write_published_snapshot(&dir, &mut german_source, "Deutscher Quelltext"); + bds_core::db::queries::post::insert_post(db.conn(), &german_source).unwrap(); + let english_translation = PostTranslation { + id: "translation-german-en".into(), + project_id: "p1".into(), + translation_for: german_source.id.clone(), + language: "en".into(), + title: "English translation".into(), + excerpt: None, + content: None, + status: PostStatus::Published, + file_path: "posts/german-source.en.md".into(), + checksum: None, + created_at: german_source.created_at, + updated_at: german_source.updated_at, + published_at: german_source.published_at, + }; + bds_core::db::queries::post_translation::insert_post_translation( + db.conn(), + &english_translation, + ) + .unwrap(); + std::fs::write( + dir.path().join(&english_translation.file_path), + bds_core::util::frontmatter::write_translation_file( + &english_translation, + "English translation body", + ), + ) + .unwrap(); + + let mut german_private = make_post("german-private", 1_710_259_200_000); + german_private.language = Some("de".into()); + german_private.do_not_translate = true; + + let output = dir.path().join("html"); + let sources = vec![ + PublishedPostSource { + post: english_source, + body_markdown: "English source body".into(), + }, + PublishedPostSource { + post: german_source, + body_markdown: "Deutscher Quelltext".into(), + }, + PublishedPostSource { + post: german_without_translation, + body_markdown: "Unübersetzter Quelltext".into(), + }, + PublishedPostSource { + post: german_private, + body_markdown: "Nur auf Deutsch".into(), + }, + ]; + generate_starter_site(db.conn(), &output, "p1", &metadata, &sources, "de").unwrap(); + + let canonical_english_source = + std::fs::read_to_string(output.join("2024/03/09/english-source/index.html")).unwrap(); + let localized_english_source = + std::fs::read_to_string(output.join("en/2024/03/09/english-source/index.html")).unwrap(); + let canonical_german_source = + std::fs::read_to_string(output.join("2024/03/10/german-source/index.html")).unwrap(); + let localized_german_source = + std::fs::read_to_string(output.join("en/2024/03/10/german-source/index.html")).unwrap(); + let localized_fallback = + std::fs::read_to_string(output.join("en/2024/03/11/german-fallback/index.html")).unwrap(); + + assert!(canonical_english_source.contains("Deutscher Übersetzungstext")); + assert!(canonical_english_source.contains("ID=translation-english-de")); + assert!(localized_english_source.contains("English source body")); + assert!(localized_english_source.contains("ID=post-english-source")); + assert!(canonical_german_source.contains("Deutscher Quelltext")); + assert!(localized_german_source.contains("English translation body")); + assert!(localized_fallback.contains("Unübersetzter Quelltext")); + assert!( + output + .join("2024/03/12/german-private/index.html") + .is_file() + ); + assert!( + !output + .join("en/2024/03/12/german-private/index.html") + .exists() + ); + + let sitemap = std::fs::read_to_string(output.join("sitemap.xml")).unwrap(); + assert!(sitemap.contains("https://example.com/2024/03/09/english-source")); + assert!(sitemap.contains("https://example.com/en/2024/03/09/english-source")); + assert!(sitemap.contains("https://example.com/2024/03/10/german-source")); + assert!(sitemap.contains("https://example.com/en/2024/03/10/german-source")); + assert!(sitemap.contains("https://example.com/2024/03/12/german-private")); + assert!(!sitemap.contains("https://example.com/en/2024/03/12/german-private")); + let main_rss = std::fs::read_to_string(output.join("rss.xml")).unwrap(); + let english_rss = std::fs::read_to_string(output.join("en/rss.xml")).unwrap(); + assert!(main_rss.contains("english-source")); + assert!(!main_rss.contains("Deutsche Übersetzung")); + assert!(english_rss.contains("english-source")); + assert!(english_rss.contains("English translation")); + assert!(!english_rss.contains("Deutscher Fallback")); +} + #[test] fn section_generation_reports_its_urls_and_defers_pagefind() { let (db, dir) = setup(); @@ -345,7 +519,8 @@ fn multilingual_generation_writes_language_aware_atom_and_sitemap_routes() { assert!(report.written_paths.contains(&"en/atom.xml".to_string())); assert!(report.written_paths.contains(&"en/rss.xml".to_string())); - assert!(report.written_paths.contains(&"en/sitemap.xml".to_string())); + assert!(!report.written_paths.contains(&"en/sitemap.xml".to_string())); + assert!(!report.written_paths.contains(&"feed.xml".to_string())); assert!(report.written_paths.contains(&"en/404.html".to_string())); assert!( report @@ -354,19 +529,79 @@ fn multilingual_generation_writes_language_aware_atom_and_sitemap_routes() { ); let atom = std::fs::read_to_string(dir.path().join("en/atom.xml")).unwrap(); - assert!( - atom.contains("") - || atom.contains("") - ); - assert!(atom.contains("")); + assert!(atom.starts_with("Blog (en)")); let sitemap = std::fs::read_to_string(dir.path().join("sitemap.xml")).unwrap(); assert!(sitemap.contains("hreflang=\"de\" href=\"https://example.com/\"")); - assert!(sitemap.contains("hreflang=\"en\" href=\"https://example.com/en\"")); + assert!(sitemap.contains("hreflang=\"en\" href=\"https://example.com/en/\"")); assert!(sitemap.contains("hreflang=\"x-default\" href=\"https://example.com/\"")); assert!(sitemap.contains("https://example.com/category/article")); } +#[test] +fn page_category_posts_also_generate_flat_routes() { + let (db, dir) = setup(); + let metadata = make_metadata(); + let mut page = make_post("about", 1_710_000_000_000); + page.categories = vec!["page".into()]; + let posts = vec![PublishedPostSource { + post: page, + body_markdown: "About this site".into(), + }]; + + let report = + generate_starter_site(db.conn(), dir.path(), "p1", &metadata, &posts, "en").unwrap(); + + assert!( + report + .written_paths + .contains(&"about/index.html".to_string()) + ); + assert!(dir.path().join("about/index.html").is_file()); + let sitemap = std::fs::read_to_string(dir.path().join("sitemap.xml")).unwrap(); + assert!(sitemap.contains("https://example.com/about/")); +} + +#[test] +fn page_aliases_belong_to_core_while_dated_posts_belong_to_single() { + let (db, dir) = setup(); + let metadata = make_metadata(); + let mut page = make_post("about", 1_710_000_000_000); + page.categories = vec!["page".into()]; + let posts = vec![PublishedPostSource { + post: page, + body_markdown: "About this site".into(), + }]; + + let single = render_site_section_with_progress( + db.conn(), + dir.path(), + "p1", + &metadata, + &posts, + GenerationSection::Single, + |_current, _total, _url| {}, + || false, + ) + .unwrap(); + assert_eq!(single.written_paths, vec!["2024/03/09/about/index.html"]); + assert!(!dir.path().join("about/index.html").exists()); + + let core = render_site_section_with_progress( + db.conn(), + dir.path(), + "p1", + &metadata, + &posts, + GenerationSection::Core, + |_current, _total, _url| {}, + || false, + ) + .unwrap(); + assert!(core.written_paths.contains(&"about/index.html".to_string())); + assert!(dir.path().join("about/index.html").is_file()); +} + #[test] fn generation_respects_category_list_settings_and_writes_bundled_images() { let (db, dir) = setup(); @@ -457,12 +692,12 @@ fn generation_respects_category_list_settings_and_writes_bundled_images() { std::fs::read_to_string(dir.path().join("category/featured/index.html")).unwrap(); assert!(featured_html.contains("FEATURED:[Featured Post|false]")); - let feed = std::fs::read_to_string(dir.path().join("feed.xml")).unwrap(); - assert!(!feed.contains("hidden-post")); - assert!(feed.contains("featured-post")); + let rss = std::fs::read_to_string(dir.path().join("rss.xml")).unwrap(); + assert!(rss.contains("hidden-post")); + assert!(rss.contains("featured-post")); let calendar = std::fs::read_to_string(dir.path().join("calendar.json")).unwrap(); - assert!(!calendar.contains("2024-03-09")); + assert!(calendar.contains("2024-03-09")); assert!(calendar.contains("2024-03-10")); } @@ -484,7 +719,7 @@ fn generation_engine_skips_unchanged_outputs_on_second_run() { assert!(second.skipped_paths.contains(&"index.html".to_string())); assert!(second.skipped_paths.contains(&"calendar.json".to_string())); assert!(second.skipped_paths.contains(&"rss.xml".to_string())); - assert!(second.skipped_paths.contains(&"feed.xml".to_string())); + assert!(!second.skipped_paths.contains(&"feed.xml".to_string())); assert!( second .skipped_paths @@ -506,12 +741,12 @@ fn site_validation_detects_stale_and_missing_outputs() { generate_starter_site(db.conn(), dir.path(), "p1", &metadata, &posts, "en").unwrap(); std::fs::write(dir.path().join("index.html"), "tampered").unwrap(); - std::fs::remove_file(dir.path().join("feed.xml")).unwrap(); + std::fs::remove_file(dir.path().join("atom.xml")).unwrap(); let report = validate_site(db.conn(), dir.path(), "p1").unwrap(); assert!(report.stale_pages.contains(&"index.html".to_string())); - assert!(report.missing_pages.contains(&"feed.xml".to_string())); + assert!(report.missing_pages.contains(&"atom.xml".to_string())); assert!(report.extra_pages.is_empty()); } @@ -529,7 +764,7 @@ fn apply_validation_repairs_core_section_outputs() { generate_starter_site(db.conn(), dir.path(), "p1", &metadata, &posts, "en").unwrap(); std::fs::write(dir.path().join("index.html"), "tampered").unwrap(); - std::fs::remove_file(dir.path().join("feed.xml")).unwrap(); + std::fs::remove_file(dir.path().join("atom.xml")).unwrap(); let report = validate_site(db.conn(), dir.path(), "p1").unwrap(); let sections = sections_from_validation_report(&report); diff --git a/crates/bds-core/tests/m4_generation_primitives.rs b/crates/bds-core/tests/m4_generation_primitives.rs index 312eaba..6017516 100644 --- a/crates/bds-core/tests/m4_generation_primitives.rs +++ b/crates/bds-core/tests/m4_generation_primitives.rs @@ -111,20 +111,20 @@ fn generated_write_rewrites_stale_file_even_when_db_hash_matches() { } #[test] -fn core_generation_paths_include_language_prefixed_variants() { +fn core_generation_paths_match_bds2_outputs() { let paths = build_core_generation_paths("en", &["en".into(), "de".into(), "fr".into()]); assert!(paths.contains(&"index.html".to_string())); assert!(paths.contains(&"404.html".to_string())); assert!(paths.contains(&"sitemap.xml".to_string())); assert!(paths.contains(&"rss.xml".to_string())); - assert!(paths.contains(&"feed.xml".to_string())); + assert!(!paths.contains(&"feed.xml".to_string())); assert!(paths.contains(&"atom.xml".to_string())); assert!(paths.contains(&"calendar.json".to_string())); assert!(paths.contains(&"de/index.html".to_string())); assert!(paths.contains(&"de/404.html".to_string())); - assert!(paths.contains(&"de/sitemap.xml".to_string())); + assert!(!paths.contains(&"de/sitemap.xml".to_string())); assert!(paths.contains(&"de/rss.xml".to_string())); - assert!(paths.contains(&"de/feed.xml".to_string())); + assert!(!paths.contains(&"de/feed.xml".to_string())); assert!(paths.contains(&"de/atom.xml".to_string())); assert!(paths.contains(&"fr/index.html".to_string())); } @@ -138,6 +138,7 @@ fn calendar_json_groups_posts_by_year_month_day() { ]; let json = build_calendar_json(&posts).unwrap(); + assert!(!json.contains('\n')); let parsed: serde_json::Value = serde_json::from_str(&json).unwrap(); assert_eq!(parsed["years"]["2024"], 3); @@ -146,3 +147,15 @@ fn calendar_json_groups_posts_by_year_month_day() { assert_eq!(parsed["days"]["2024-03-09"], 2); assert_eq!(parsed["days"]["2024-04-09"], 1); } + +#[test] +fn calendar_json_uses_created_at_instead_of_published_at() { + let mut post = make_post("a", 1_710_000_000_000); + post.published_at = Some(1_712_678_400_000); + + let json = build_calendar_json(&[post]).unwrap(); + let parsed: serde_json::Value = serde_json::from_str(&json).unwrap(); + + assert_eq!(parsed["days"]["2024-03-09"], 1); + assert!(parsed["days"].get("2024-04-09").is_none()); +} diff --git a/fixtures/golden-generated-sites/rfc1437-sample/2005/11/13/esmeralda/index.html b/fixtures/golden-generated-sites/rfc1437-sample/2005/11/13/esmeralda/index.html index 687eb93..bd72668 100644 --- a/fixtures/golden-generated-sites/rfc1437-sample/2005/11/13/esmeralda/index.html +++ b/fixtures/golden-generated-sites/rfc1437-sample/2005/11/13/esmeralda/index.html @@ -3,19 +3,23 @@ - Content-type: matter-transport/sentient-life-form - + Esmeralda + - + - - - + + + + + + + @@ -27,20 +31,19 @@ -
- + @@ -64,167 +67,167 @@

Esmeralda

- -
- - picture - - - - fotografie - - - makro - - - natur - - - spinne - - - tiere - -
- -
- \ No newline at end of file + diff --git a/fixtures/golden-generated-sites/rfc1437-sample/2026/03/13/cmux-das-terminal-fur-multitasking/index.html b/fixtures/golden-generated-sites/rfc1437-sample/2026/03/13/cmux-das-terminal-fur-multitasking/index.html index 1a8b0ea..05f4f49 100644 --- a/fixtures/golden-generated-sites/rfc1437-sample/2026/03/13/cmux-das-terminal-fur-multitasking/index.html +++ b/fixtures/golden-generated-sites/rfc1437-sample/2026/03/13/cmux-das-terminal-fur-multitasking/index.html @@ -3,17 +3,21 @@ - Content-type: matter-transport/sentient-life-form - + cmux — Das Terminal für Multitasking + - + - + + + + + @@ -25,20 +29,19 @@ -
- + @@ -62,167 +65,167 @@

cmux — Das Terminal für Multitasking

- +
- + aside - - - + + + programmierung - - + + mac-os-x - - + + sysadmin - +
- -
-

cmux — Das Terminal für Multitasking ist ein ziemlich geniales Terminal-Programm für die gerade durch Agentic Coding wieder verstärkt kommenden CLI Workflows. Und was mich begeistert: es hat eine saubere Persistierung von offenen Workspaces in denen man dann mehrere Tabs haben kann, so dass ich meine Arbeitsumgebung nicht ständig offen lassen muss. Ich habe immer gerne diverse Verzeichnisse direkt offen, weil ich zwischen mehreren hin und her wechsel wärend der Programmierung, das läuft mit CMUX deutlich besser als mit allen anderen.

-
+ +
+

cmux — Das Terminal für Multitasking ist ein ziemlich geniales Terminal-Programm für die gerade durch Agentic Coding wieder verstärkt kommenden CLI Workflows. Und was mich begeistert: es hat eine saubere Persistierung von offenen Workspaces in denen man dann mehrere Tabs haben kann, so dass ich meine Arbeitsumgebung nicht ständig offen lassen muss. Ich habe immer gerne diverse Verzeichnisse direkt offen, weil ich zwischen mehreren hin und her wechsel wärend der Programmierung, das läuft mit CMUX deutlich besser als mit allen anderen.

- +
Verlinkt von - - ghostty - + + supacode +
- +
- \ No newline at end of file + diff --git a/fixtures/golden-generated-sites/rfc1437-sample/2026/03/13/ghostty/index.html b/fixtures/golden-generated-sites/rfc1437-sample/2026/03/13/ghostty/index.html index 42ac40e..aa92958 100644 --- a/fixtures/golden-generated-sites/rfc1437-sample/2026/03/13/ghostty/index.html +++ b/fixtures/golden-generated-sites/rfc1437-sample/2026/03/13/ghostty/index.html @@ -3,17 +3,21 @@ - Content-type: matter-transport/sentient-life-form - + Ghostty + - + - + + + + + @@ -25,20 +29,19 @@ -
- + @@ -62,167 +65,167 @@

Ghostty

- +
- + aside - - - + + + programmierung - - + + sysadmin - - + + mac-os-x - +
- -
-

Ghostty ist die Basis, auf der cmux — Das Terminal für Multitasking aufgebaut wurde. Generell ebenfalls ein sehr nettes Terminal, das auch deutlich schneller reagiert als das Standardterminal und auch schon sehr gut funktioniert. Was mir nicht gefiel, war dass Tabs nicht automatisch in den passenden Pfaden wieder neu geöffnet wurden, wenn das Programm beendet wurde. Ich habe einfach zu lange persistente Sessions, die ich immer wieder aufgreife. Das macht cmux einfach besser.

-
+ +
+

Ghostty ist die Basis, auf der cmux — Das Terminal für Multitasking aufgebaut wurde. Generell ebenfalls ein sehr nettes Terminal, das auch deutlich schneller reagiert als das Standardterminal und auch schon sehr gut funktioniert. Was mir nicht gefiel, war dass Tabs nicht automatisch in den passenden Pfaden wieder neu geöffnet wurden, wenn das Programm beendet wurde. Ich habe einfach zu lange persistente Sessions, die ich immer wieder aufgreife. Das macht cmux einfach besser.

- +
- \ No newline at end of file + diff --git a/fixtures/golden-generated-sites/rfc1437-sample/assets/bds.css b/fixtures/golden-generated-sites/rfc1437-sample/assets/bds.css index c67826c..6e1ef60 100644 --- a/fixtures/golden-generated-sites/rfc1437-sample/assets/bds.css +++ b/fixtures/golden-generated-sites/rfc1437-sample/assets/bds.css @@ -166,4 +166,4 @@ main { display: grid; gap: 1rem; } .blog-search-panel .pagefind-ui__result-excerpt { font-size: .78rem; color: var(--pico-muted-color, var(--muted-color)); } .blog-search-panel .pagefind-ui__result-excerpt mark { background-color: var(--pico-primary-focus, rgba(255,223,0,.35)); color: inherit; } .blog-search-panel .pagefind-ui__button { color: var(--pico-primary, var(--primary)); background: none; border: 1px solid var(--pico-muted-border-color, var(--muted-border-color)); border-radius: .2rem; font-size: .78rem; cursor: pointer; } -.blog-search-panel .pagefind-ui__button:hover { border-color: var(--pico-primary, var(--primary)); } +.blog-search-panel .pagefind-ui__button:hover { border-color: var(--pico-primary, var(--primary)); } \ No newline at end of file diff --git a/fixtures/golden-generated-sites/rfc1437-sample/assets/search-runtime.js b/fixtures/golden-generated-sites/rfc1437-sample/assets/search-runtime.js index c69718e..d38e0cc 100644 --- a/fixtures/golden-generated-sites/rfc1437-sample/assets/search-runtime.js +++ b/fixtures/golden-generated-sites/rfc1437-sample/assets/search-runtime.js @@ -15,11 +15,12 @@ } initialized = true; var placeholder = root.getAttribute('data-search-placeholder') || 'Search...'; + var zeroResults = root.getAttribute('data-search-no-results') || 'No results found'; new PagefindUI({ element: root, showSubResults: true, showImages: false, - translations: { placeholder: placeholder } + translations: { placeholder: placeholder, zero_results: zeroResults } }); var input = root.querySelector('input'); if (input) { diff --git a/fixtures/golden-generated-sites/rfc1437-sample/atom.xml b/fixtures/golden-generated-sites/rfc1437-sample/atom.xml index 223ec13..8818452 100644 --- a/fixtures/golden-generated-sites/rfc1437-sample/atom.xml +++ b/fixtures/golden-generated-sites/rfc1437-sample/atom.xml @@ -1,634 +1 @@ - - - rfc1437 - Content-type: matter-transport/sentient-life-form - https://www.rfc1437.de/ - - - 2026-03-15T09:36:46.000Z - - Pagefind | Pagefind — Static low-bandwidth search at scale - https://www.rfc1437.de/2026/03/15/pagefind-pagefind-static-low-bandwidth-search-at-scale - - 2026-03-15T09:36:46.000Z - 2026-03-15T09:36:46.000Z - hugo -

[Pagefind | Pagefind — Static low-bandwidth search at scale](https://pagefind.app/) ist eine statische Suchmaschine für statisch generiertes HTML, so wie mein Blog. Und wird demnächst die Suche auf diesem Blog betreiben. Keine externen abhängigkeiten, kein Server, keine Komplexität der Infrastruktur - einfach nur ein paar zusätzliche Files, die mit hochgeladen werden. Und natürlich aktives JavaScript im Browser.

-

[Pagefind | Pagefind — Static low-bandwidth search at scale](https://pagefind.app/) ist eine statische Suchmaschine für statisch generiertes HTML, so wie mein Blog. Und wird demnächst die Suche auf diesem Blog betreiben. Keine externen abhängigkeiten, kein Server, keine Komplexität der Infrastruktur - einfach nur ein paar zusätzliche Files, die mit hochgeladen werden. Und natürlich aktives JavaScript im Browser.

- - - - -
- - pi.dev - https://www.rfc1437.de/2026/03/14/pi-dev - - 2026-03-14T20:38:58.000Z - 2026-03-14T20:38:58.000Z - hugo -

[pi.dev](https://shittycodingagent.ai/) ist ein minimalistischer Harness für agentic coding, dessen Fokus nicht auf Features, sondern auf Erweiterbarkeit liegt. Die Grundidee ist solide:. eine sehr einfache Harness die durch Typescript-Plugins erweitert werden kann, so dass sich die Harness an den eigenen Workflow anpassen und an die eigenen Anforderungen. Werde ich mir vielleicht demnächst mal angucken.

-

[pi.dev](https://shittycodingagent.ai/) ist ein minimalistischer Harness für agentic coding, dessen Fokus nicht auf Features, sondern auf Erweiterbarkeit liegt. Die Grundidee ist solide:. eine sehr einfache Harness die durch Typescript-Plugins erweitert werden kann, so dass sich die Harness an den eigenen Workflow anpassen und an die eigenen Anforderungen. Werde ich mir vielleicht demnächst mal angucken.

- - - -
- - steveyegge/beads: Beads - A memory upgrade for your coding agent - https://www.rfc1437.de/2026/03/13/steveyegge-beads-beads-a-memory-upgrade-for-your-coding-agent - - 2026-03-13T16:10:34.000Z - 2026-03-13T16:10:34.000Z - hugo -

[steveyegge/beads: Beads - A memory upgrade for your coding agent](https://github.com/steveyegge/beads) ist ein Todo-Listen-Tool für Agenten. Im Prinzip ein Gedächtnis für Projekte über das sich Agenten steuern können (hinterlegen von Tasks und Features) und auch komplexere Abläufe gesteuert werden können, bei denen ein Agent über eine ganze Reihe von Issues laufen muss und diese lösen muss, wo Tasks abhängigkeiten haben können und Agenten nur den Satz an Aufgaben sehen, die auch wirklich gerade angegangen werden können. Interessant für Projekte, in denen man Agenten in Loops laufen lassen will, um größere Aufgaben zu lösen.

-

[steveyegge/beads: Beads - A memory upgrade for your coding agent](https://github.com/steveyegge/beads) ist ein Todo-Listen-Tool für Agenten. Im Prinzip ein Gedächtnis für Projekte über das sich Agenten steuern können (hinterlegen von Tasks und Features) und auch komplexere Abläufe gesteuert werden können, bei denen ein Agent über eine ganze Reihe von Issues laufen muss und diese lösen muss, wo Tasks abhängigkeiten haben können und Agenten nur den Satz an Aufgaben sehen, die auch wirklich gerade angegangen werden können. Interessant für Projekte, in denen man Agenten in Loops laufen lassen will, um größere Aufgaben zu lösen.

- - - -
- - dolthub/doltgresql: DoltgreSQL - Version Controlled PostgreSQL - https://www.rfc1437.de/2026/03/13/dolthub-doltgresql-doltgresql-version-controlled-postgresql - - 2026-03-13T15:17:32.000Z - 2026-03-13T15:17:32.000Z - hugo -

[dolthub/doltgresql: DoltgreSQL - Version Controlled PostgreSQL](https://github.com/dolthub/doltgresql) ist der PostgreSQL-flavored Partner von [dolthub/dolt: Dolt – Git for Data](/posts/dolthub-dolt-dolt-git-for-data) und bietet die gleichen Features, nur mit Anlehnung an PostgreSQL und einem Binär-Interface das zu PostgreSQL kompatibel ist.

-

[dolthub/doltgresql: DoltgreSQL - Version Controlled PostgreSQL](https://github.com/dolthub/doltgresql) ist der PostgreSQL-flavored Partner von [dolthub/dolt: Dolt – Git for Data](/posts/dolthub-dolt-dolt-git-for-data) und bietet die gleichen Features, nur mit Anlehnung an PostgreSQL und einem Binär-Interface das zu PostgreSQL kompatibel ist.

- - - - -
- - dolthub/dolt: Dolt – Git for Data - https://www.rfc1437.de/2026/03/13/dolthub-dolt-dolt-git-for-data - - 2026-03-13T15:17:25.000Z - 2026-03-13T15:17:25.000Z - hugo -

[dolthub/dolt: Dolt – Git for Data](https://github.com/dolthub/dolt?tab=readme-ov-file) ist eine SQL Datenbank, die intern mit Mechanismen wie git arbeitet und dadurch Daten-Branches und Merges unterstützt und allgemein die Möglichkeit bietet, dass Daten in der Datenbank versioniert und mit History funktionieren. Und das ganze auch analog zu git erlaubt die Datenchanges über die Versionsverwaltung zu verteilen. Im Prinzip "slow transaction shipping".

-

[dolthub/dolt: Dolt – Git for Data](https://github.com/dolthub/dolt?tab=readme-ov-file) ist eine SQL Datenbank, die intern mit Mechanismen wie git arbeitet und dadurch Daten-Branches und Merges unterstützt und allgemein die Möglichkeit bietet, dass Daten in der Datenbank versioniert und mit History funktionieren. Und das ganze auch analog zu git erlaubt die Datenchanges über die Versionsverwaltung zu verteilen. Im Prinzip "slow transaction shipping".

- - - -
- - paperclipai/paperclip: Open-source orchestration for zero-human companies - https://www.rfc1437.de/2026/03/13/paperclipai-paperclip-open-source-orchestration-for-zero-human-companies - - 2026-03-13T15:08:58.000Z - 2026-03-13T15:00:21.000Z - hugo -

[paperclipai/paperclip: Open-source orchestration for zero-human companies](https://github.com/paperclipai/paperclip) ist ein Ansatz um Agenten zu orchestrieren und zu verwalten. Das interessante hier ist, dass es mit einer Organisation angelehnt an eine Firmenorganisation arbeitet und mit Mitteln die Kommunikation der Agenten abbildet, die eine gute Transparenz bieten könnte. Ich habe es noch nicht ausprobiert, aber neben [gastown](https://github.com/steveyegge/gastown) eines der interessanteren Projekte zu diesem Thema. Das ganze Umfeld von Agent-Orchestrierung ist alles noch recht neu, von daher ist das noch ein großes Feld an Experimenten, aber spannend zu beobachten.

-

[paperclipai/paperclip: Open-source orchestration for zero-human companies](https://github.com/paperclipai/paperclip) ist ein Ansatz um Agenten zu orchestrieren und zu verwalten. Das interessante hier ist, dass es mit einer Organisation angelehnt an eine Firmenorganisation arbeitet und mit Mitteln die Kommunikation der Agenten abbildet, die eine gute Transparenz bieten könnte. Ich habe es noch nicht ausprobiert, aber neben [gastown](https://github.com/steveyegge/gastown) eines der interessanteren Projekte zu diesem Thema. Das ganze Umfeld von Agent-Orchestrierung ist alles noch recht neu, von daher ist das noch ein großes Feld an Experimenten, aber spannend zu beobachten.

- - - -
- - Ghostty - https://www.rfc1437.de/2026/03/13/ghostty - - 2026-03-13T11:59:19.000Z - 2026-03-13T11:38:27.000Z -

[Ghostty](https://ghostty.org/) ist die Basis, auf der [cmux — Das Terminal für Multitasking](/posts/cmux-das-terminal-fur-multitasking) aufgebaut wurde. Generell ebenfalls ein sehr nettes Terminal, das auch deutlich schneller reagiert als das Standardterminal und auch schon sehr gut funktioniert. Was mir nicht gefiel, war dass Tabs nicht automatisch in den passenden Pfaden wieder neu geöffnet wurden, wenn das Programm beendet wurde. Ich habe einfach zu lange persistente Sessions, die ich immer wieder aufgreife. Das macht cmux einfach besser.

-

[Ghostty](https://ghostty.org/) ist die Basis, auf der [cmux — Das Terminal für Multitasking](/posts/cmux-das-terminal-fur-multitasking) aufgebaut wurde. Generell ebenfalls ein sehr nettes Terminal, das auch deutlich schneller reagiert als das Standardterminal und auch schon sehr gut funktioniert. Was mir nicht gefiel, war dass Tabs nicht automatisch in den passenden Pfaden wieder neu geöffnet wurden, wenn das Programm beendet wurde. Ich habe einfach zu lange persistente Sessions, die ich immer wieder aufgreife. Das macht cmux einfach besser.

- - - - -
- - cmux — Das Terminal für Multitasking - https://www.rfc1437.de/2026/03/13/cmux-das-terminal-fur-multitasking - - 2026-03-13T07:23:52.000Z - 2026-03-13T07:21:42.000Z -

[cmux — Das Terminal für Multitasking](https://www.cmux.dev/de) ist ein ziemlich geniales Terminal-Programm für die gerade durch Agentic Coding wieder verstärkt kommenden CLI Workflows. Und was mich begeistert: es hat eine saubere Persistierung von offenen Workspaces in denen man dann mehrere Tabs haben kann, so dass ich meine Arbeitsumgebung nicht ständig offen lassen muss. Ich habe immer gerne diverse Verzeichnisse direkt offen, weil ich zwischen mehreren hin und her wechsel wärend der Programmierung, das läuft mit CMUX deutlich besser als mit allen anderen.

-

[cmux — Das Terminal für Multitasking](https://www.cmux.dev/de) ist ein ziemlich geniales Terminal-Programm für die gerade durch Agentic Coding wieder verstärkt kommenden CLI Workflows. Und was mich begeistert: es hat eine saubere Persistierung von offenen Workspaces in denen man dann mehrere Tabs haben kann, so dass ich meine Arbeitsumgebung nicht ständig offen lassen muss. Ich habe immer gerne diverse Verzeichnisse direkt offen, weil ich zwischen mehreren hin und her wechsel wärend der Programmierung, das läuft mit CMUX deutlich besser als mit allen anderen.

- - - - -
- - NuGet Gallery | Photino.Blazor.CustomWindow 1.3.1 - https://www.rfc1437.de/2026/03/12/nuget-gallery-photino-blazor-customwindow-1-3-1 - - 2026-03-13T07:21:55.000Z - 2026-03-12T20:13:10.000Z -

[NuGet Gallery | Photino.Blazor.CustomWindow 1.3.1](https://www.nuget.org/packages/Photino.Blazor.CustomWindow) ist eine Library für Photino Blazor, mit der man Fenster Chrome-less machen kann. Also Titelbalken und Standarddekorationen entfernen kann. Idee dahinter ist darüber mehr Kontrolle über das Look-and-Feel zu bekommen und kompaktere UIs zu schaffen. Mit dieser Library bekommt man dann Grundfunktionen zurück wie Fenstergrößenänderungen und andere Standardelemente, die Benutzer erwarten, aber unter voller Kontrolle der Anwendung.

-

[NuGet Gallery | Photino.Blazor.CustomWindow 1.3.1](https://www.nuget.org/packages/Photino.Blazor.CustomWindow) ist eine Library für Photino Blazor, mit der man Fenster Chrome-less machen kann. Also Titelbalken und Standarddekorationen entfernen kann. Idee dahinter ist darüber mehr Kontrolle über das Look-and-Feel zu bekommen und kompaktere UIs zu schaffen. Mit dieser Library bekommt man dann Grundfunktionen zurück wie Fenstergrößenänderungen und andere Standardelemente, die Benutzer erwarten, aber unter voller Kontrolle der Anwendung.

- - - -
- - OpenClaw Memory Masterclass: The complete guide to agent memory that survives • VelvetShark - https://www.rfc1437.de/2026/03/07/openclaw-memory-masterclass-the-complete-guide-to-agent-memory-that-survives-velvetshark - - 2026-03-08T16:29:16.000Z - 2026-03-07T05:53:59.000Z -

[OpenClaw Memory Masterclass: The complete guide to agent memory that survives • VelvetShark](https://velvetshark.com/openclaw-memory-masterclass) - interessante Zusammenstellung des Memory-Systems und der Fallstricke mit Compaction bei Openclaw. Der Agent ist ja dazu da, über lange Zeit zu laufen, dadurch ist aber auch immer die Gefahr, dass Compaction gerade in komplexeren Situationen mitten drin zuschlägt. Und openclaw läuft autonom, also will man sicher sein, dass es auch kontinuierlich weitergeht.

-

[OpenClaw Memory Masterclass: The complete guide to agent memory that survives • VelvetShark](https://velvetshark.com/openclaw-memory-masterclass) - interessante Zusammenstellung des Memory-Systems und der Fallstricke mit Compaction bei Openclaw. Der Agent ist ja dazu da, über lange Zeit zu laufen, dadurch ist aber auch immer die Gefahr, dass Compaction gerade in komplexeren Situationen mitten drin zuschlägt. Und openclaw läuft autonom, also will man sicher sein, dass es auch kontinuierlich weitergeht.

- - - -
- - unum-cloud/USearch: Fast Open-Source Search & Clustering engine × for Vectors & Arbitrary Objects × in C++, C, Python, JavaScript, Rust, Java, Objective-C, Swift, C#, GoLang, and Wolfram 🔍 - https://www.rfc1437.de/2026/03/05/unum-cloud-usearch-fast-open-source-search-clustering-engine-x-for-vectors-arbitrary-objects-x-in-c-c-python-javascript-rust-java-objective-c-swift-c-golang-and-wolfram - - 2026-03-08T17:01:36.000Z - 2026-03-05T21:18:44.000Z -

[unum-cloud/USearch](https://github.com/unum-cloud/USearch) - drin was drauf steht. Also eine Library, die einen Index für Vektoren bietet, die z.B. aus Embedding stammen können und so semantisch ähnliche Texte finden können. Nicht Text-ähnlich, sondern semantisch, also Inhalt. Spannendes Thema, die dafür nötigen Modelle sind mit den LLMs verwandt, aber eben nicht large, sondern small - sie brauchen nicht voll zu verstehen und zu generieren, weil sie nur Vektoren erstellen, die dann gegeneinander verglichen werden können und je höher die Ähnlichkeit, desto höher die Ähnlichkeit der Texte im Thema. Cooles kleines Feature für bDS.

-

[unum-cloud/USearch](https://github.com/unum-cloud/USearch) - drin was drauf steht. Also eine Library, die einen Index für Vektoren bietet, die z.B. aus Embedding stammen können und so semantisch ähnliche Texte finden können. Nicht Text-ähnlich, sondern semantisch, also Inhalt. Spannendes Thema, die dafür nötigen Modelle sind mit den LLMs verwandt, aber eben nicht large, sondern small - sie brauchen nicht voll zu verstehen und zu generieren, weil sie nur Vektoren erstellen, die dann gegeneinander verglichen werden können und je höher die Ähnlichkeit, desto höher die Ähnlichkeit der Texte im Thema. Cooles kleines Feature für bDS.

- - - -
- - waybarrios/vllm-mlx: OpenAI and Anthropic compatible server for Apple Silicon. - https://www.rfc1437.de/2026/03/02/waybarrios-vllm-mlx-openai-and-anthropic-compatible-server-for-apple-silicon - - 2026-03-08T16:29:28.000Z - 2026-03-02T11:05:49.000Z -

[waybarrios/vllm-mlx: OpenAI and Anthropic compatible server for Apple Silicon.](https://github.com/waybarrios/vllm-mlx) Den benutze ich, um [mlx-community/gemma-3-12b-it-4bit](/posts/mlx-community-gemma-3-12b-it-4bit-hugging-face) auf meinem MacBook Air zu betreiben. Klappt sehr gut, kleines Shell-Script zum Starten des Servers und dann bin ich autonom. Nicht so komfortabel wie Ollama, aber dafür unterstützt es perfekt Apple's MLX und nutzt damit Silicon gut aus.

-

[waybarrios/vllm-mlx: OpenAI and Anthropic compatible server for Apple Silicon.](https://github.com/waybarrios/vllm-mlx) Den benutze ich, um [mlx-community/gemma-3-12b-it-4bit](/posts/mlx-community-gemma-3-12b-it-4bit-hugging-face) auf meinem MacBook Air zu betreiben. Klappt sehr gut, kleines Shell-Script zum Starten des Servers und dann bin ich autonom. Nicht so komfortabel wie Ollama, aber dafür unterstützt es perfekt Apple's MLX und nutzt damit Silicon gut aus.

- - -
- - mlx-community/gemma-3-12b-it-4bit · Hugging Face - https://www.rfc1437.de/2026/03/02/mlx-community-gemma-3-12b-it-4bit-hugging-face - - 2026-03-08T16:29:35.000Z - 2026-03-02T11:03:41.000Z -

[mlx-community/gemma-3-12b-it-4bit · Hugging Face](https://huggingface.co/mlx-community/gemma-3-12b-it-4bit) ist das bisher beste Modell für lokalen Betrieb, mit dem ich die Bildbetitelung und sogar lokalen Chat realisieren kann. Nicht das schnellste, da es schon recht groß ist, aber für Offline-Betrieb absolut geeignet, wenn ich mir da ein paar Mechanismen für Batchverarbeitung von Bildern etc. einfallen lasse. Das könnte gerade für Urlaubszeiten super spannend sein. Eine Bildbeschreibung liegt dann zwar bei einer Minute, aber hey, dafür keine Abhängigkeiten.

-

[mlx-community/gemma-3-12b-it-4bit · Hugging Face](https://huggingface.co/mlx-community/gemma-3-12b-it-4bit) ist das bisher beste Modell für lokalen Betrieb, mit dem ich die Bildbetitelung und sogar lokalen Chat realisieren kann. Nicht das schnellste, da es schon recht groß ist, aber für Offline-Betrieb absolut geeignet, wenn ich mir da ein paar Mechanismen für Batchverarbeitung von Bildern etc. einfallen lasse. Das könnte gerade für Urlaubszeiten super spannend sein. Eine Bildbeschreibung liegt dann zwar bei einer Minute, aber hey, dafür keine Abhängigkeiten.

- - -
- - Models.dev — An open-source database of AI models - https://www.rfc1437.de/2026/03/01/models-dev-an-open-source-database-of-ai-models - - 2026-03-08T16:29:42.000Z - 2026-03-01T12:40:31.000Z -

[Models.dev — An open-source database of AI models](https://models.dev/) ist eine sehr praktische Seite, die für alle möglichen Anbieter und alle möglichen LLMs Rahmenparameter liefert, inklusive sogar API Preise. Und technische Parameter wie Input/Output Tokens.

-

[Models.dev — An open-source database of AI models](https://models.dev/) ist eine sehr praktische Seite, die für alle möglichen Anbieter und alle möglichen LLMs Rahmenparameter liefert, inklusive sogar API Preise. Und technische Parameter wie Input/Output Tokens.

- - -
- - Ollama - https://www.rfc1437.de/2026/03/01/ollama - - 2026-03-08T16:29:46.000Z - 2026-03-01T11:40:25.000Z -

[Ollama](https://ollama.com/) - eine Runtime-Umgebung für LLMs, die es erlaubt Modelle lokal zu betreiben. Mein Lieblingsmodell zur Zeit: [qwen2.5vl:7b-q4_K_M](https://ollama.com/library/qwen2.5vl:7b-q4_K_M). Mit nur 6.6 GB Größe läuft das problemlos auf einem MacBook Air M4 und hat noch genug Speicher und Kapazität frei um Programme nebenbei laufen zu lassen. Das Modell ist im Chat erstaunlich brauchbar und vor allem hat es klasse Vision-Fähigkeiten. Ideal um für Bilder Titel, Alt-Texte oder Zusammenfassungen zu liefern, ohne dafür Geld an große Provider abzudrücken. Und ein wichtiger Baustein, um bDS wieder zurück zu full-offline zu bringen.

-

[Ollama](https://ollama.com/) - eine Runtime-Umgebung für LLMs, die es erlaubt Modelle lokal zu betreiben. Mein Lieblingsmodell zur Zeit: [qwen2.5vl:7b-q4_K_M](https://ollama.com/library/qwen2.5vl:7b-q4_K_M). Mit nur 6.6 GB Größe läuft das problemlos auf einem MacBook Air M4 und hat noch genug Speicher und Kapazität frei um Programme nebenbei laufen zu lassen. Das Modell ist im Chat erstaunlich brauchbar und vor allem hat es klasse Vision-Fähigkeiten. Ideal um für Bilder Titel, Alt-Texte oder Zusammenfassungen zu liefern, ohne dafür Geld an große Provider abzudrücken. Und ein wichtiger Baustein, um bDS wieder zurück zu full-offline zu bringen.

- - - -
- - mistralai/mistral-vibe: Minimal CLI coding agent by Mistral - https://www.rfc1437.de/2026/02/28/mistralai-mistral-vibe-minimal-cli-coding-agent-by-mistral - - 2026-03-08T16:29:55.000Z - 2026-02-28T18:58:21.000Z -

[mistralai/mistral-vibe: Minimal CLI coding agent by Mistral](https://github.com/mistralai/mistral-vibe) - begleitend zum [AI Studio - Mistral AI](/posts/ai-studio-mistral-ai) gibt es die Vibe-Coding Oberfläche zu Devstral auch als Open Source. Sehr nett, weil es ein gutes Paar macht. Wird definitiv bei mir etwas ausprobiert, auch wenn ich sicherlich für große Projekte dann eher zu den Boliden (Opus 4.6) greifen würde.

-

[mistralai/mistral-vibe: Minimal CLI coding agent by Mistral](https://github.com/mistralai/mistral-vibe) - begleitend zum [AI Studio - Mistral AI](/posts/ai-studio-mistral-ai) gibt es die Vibe-Coding Oberfläche zu Devstral auch als Open Source. Sehr nett, weil es ein gutes Paar macht. Wird definitiv bei mir etwas ausprobiert, auch wenn ich sicherlich für große Projekte dann eher zu den Boliden (Opus 4.6) greifen würde.

- - - - -
- - AI Studio - Mistral AI - https://www.rfc1437.de/2026/02/28/ai-studio-mistral-ai - - 2026-03-08T16:30:01.000Z - 2026-02-28T18:55:50.000Z -

[AI Studio - Mistral AI](https://console.mistral.ai/home) - da in den USA ja doch wieder die Lage etwas angespannter wird, und einfach weil man immer mal gucken sollte, was außerhalb der USA passiert, hier ein Link auf eine europäische Alternative zu den großen US Betreibern. Mistral bietet mit Devstral 2 ein Coding-Modell an, das nicht nur open weights ist (also frei zu bekommen und zu betreiben, wenn man die nötige Hardware hat), sondern auch im Betrieb bei Nutzung von Mistral selber recht günstig ist. Und die Leistung liegt etwas oberhalb Claude Haiku 4.5, und zwar unterhalb Sonnet 4.5, aber nicht super weit. Also durchaus brauchbar und meine ersten Experimente waren nicht schlecht. Leider keine Vision-Fähigkeit, also für Experimente mit Bildern nicht so geeignet (und daher für mein bDS nicht ideal), aber trotzdem spannend genug um es im Auge zu behalten.

-

[AI Studio - Mistral AI](https://console.mistral.ai/home) - da in den USA ja doch wieder die Lage etwas angespannter wird, und einfach weil man immer mal gucken sollte, was außerhalb der USA passiert, hier ein Link auf eine europäische Alternative zu den großen US Betreibern. Mistral bietet mit Devstral 2 ein Coding-Modell an, das nicht nur open weights ist (also frei zu bekommen und zu betreiben, wenn man die nötige Hardware hat), sondern auch im Betrieb bei Nutzung von Mistral selber recht günstig ist. Und die Leistung liegt etwas oberhalb Claude Haiku 4.5, und zwar unterhalb Sonnet 4.5, aber nicht super weit. Also durchaus brauchbar und meine ersten Experimente waren nicht schlecht. Leider keine Vision-Fähigkeit, also für Experimente mit Bildern nicht so geeignet (und daher für mein bDS nicht ideal), aber trotzdem spannend genug um es im Auge zu behalten.

- - - - -
- - ZK I Zettel 1 (1) - Niklas Luhmann-Archiv - https://www.rfc1437.de/2026/02/28/zk-i-zettel-1-1-niklas-luhmann-archiv - - 2026-03-08T16:30:07.000Z - 2026-02-28T15:35:59.000Z -

[ZK I Zettel 1 \(1\) - Niklas Luhmann-Archiv](https://niklas-luhmann-archiv.de/bestand/zettelkasten/zettel/ZK_1_NB_1_1_V) - woher die Inspiration für mein Blog kommt, bzw. was mich immer unter der technischen Oberfläche bewegt hat.

-

[ZK I Zettel 1 \(1\) - Niklas Luhmann-Archiv](https://niklas-luhmann-archiv.de/bestand/zettelkasten/zettel/ZK_1_NB_1_1_V) - woher die Inspiration für mein Blog kommt, bzw. was mich immer unter der technischen Oberfläche bewegt hat.

- -
- - Agent UI Standards Multiply: MCP Apps and Google’s A2UI - Richard MacManus - https://www.rfc1437.de/2026/02/28/agent-ui-standards-multiply-mcp-apps-and-google-s-a2ui-richard-macmanus - - 2026-03-08T16:30:13.000Z - 2026-02-28T06:02:52.000Z -

wer so wie ich gerne einen Überblick über UI-integration von LLMs haben möchte und sich fragt, wie A2UI und MCP Apps im Vergleich arbeiten und was sie bieten: [Agent UI Standards Multiply: MCP Apps and Google’s A2UI - Richard MacManus](https://ricmac.org/2025/12/19/agent-ui-standards-multiply-mcp-apps-and-googles-a2ui/) hilft. Ich habe in bDS ja A2UI implementiert, damit im internen Chat das LLM auch visuelle Aspekte nutzen kann, und das gefällt mir schon sehr gut. Aber die Idee, Teile meines UI auch in externe Agents einzubringen ist auch faszinierend. Auch wenn ich finde, dass "lokales HTML/JS in einem IFrame" irgendwie erstmal nach Hack klingt, aber vieles im LLM Umfeld gibt mir das Gefühl im Moment, einfach weil ja alles über einen normalen Text-Stream geschoben wird und man hofft, dass die LLMs sich an die Formate halten (selbst A2UI arbeitet so).

-

wer so wie ich gerne einen Überblick über UI-integration von LLMs haben möchte und sich fragt, wie A2UI und MCP Apps im Vergleich arbeiten und was sie bieten: [Agent UI Standards Multiply: MCP Apps and Google’s A2UI - Richard MacManus](https://ricmac.org/2025/12/19/agent-ui-standards-multiply-mcp-apps-and-googles-a2ui/) hilft. Ich habe in bDS ja A2UI implementiert, damit im internen Chat das LLM auch visuelle Aspekte nutzen kann, und das gefällt mir schon sehr gut. Aber die Idee, Teile meines UI auch in externe Agents einzubringen ist auch faszinierend. Auch wenn ich finde, dass "lokales HTML/JS in einem IFrame" irgendwie erstmal nach Hack klingt, aber vieles im LLM Umfeld gibt mir das Gefühl im Moment, einfach weil ja alles über einen normalen Text-Stream geschoben wird und man hofft, dass die LLMs sich an die Formate halten (selbst A2UI arbeitet so).

- - - -
- - cloudflare/cobweb: COBOL to WebAssembly compiler - https://www.rfc1437.de/2026/02/27/cloudflare-cobweb-cobol-to-webassembly-compiler - - 2026-03-08T16:30:38.000Z - 2026-02-27T13:43:32.000Z -

[cloudflare/cobweb: COBOL to WebAssembly compiler](https://github.com/cloudflare/cobweb) - ich lass das einfach mal hier liegen. Soll doch jemand anders den alten Kram wegräumen. [was soll man da auch anderes sagen](https://blog.cloudflare.com/cloudflare-workers-now-support-cobol/).

-

[cloudflare/cobweb: COBOL to WebAssembly compiler](https://github.com/cloudflare/cobweb) - ich lass das einfach mal hier liegen. Soll doch jemand anders den alten Kram wegräumen. [was soll man da auch anderes sagen](https://blog.cloudflare.com/cloudflare-workers-now-support-cobol/).

- - -
- - Pyodide - https://www.rfc1437.de/2026/02/27/pyodide - - 2026-03-08T16:30:43.000Z - 2026-02-27T13:23:39.000Z -

[Pyodide](https://pyodide.org/en/stable/) ist so ein bisschen mein Lebensretter in bDS: ich muss nämlich gestehen, ich bin jetzt nicht wirklich super tief in TypeScript drin und hab auch eigentlich keine Lust das selber zu schreiben. Wenn die KI das macht, ist das ok, da gibt es genug Wissen auf das ein LLM zurückgreifen kann, aber ich will eigentlich nicht mich da tief einarbeiten. Und Python ist schon seit langem eine meiner favorisierten Sprachen. Und Pyodide bietet genau das: eine Portierung von CPython auf WebAssembly. Das bietet eine angenehme Sprache für Scripte und Makros, die aber auf alles zugreifen kann, was die Applikation macht und - wenn ich das mal will - auch Python Libraries ladenm kann.

-

[Pyodide](https://pyodide.org/en/stable/) ist so ein bisschen mein Lebensretter in bDS: ich muss nämlich gestehen, ich bin jetzt nicht wirklich super tief in TypeScript drin und hab auch eigentlich keine Lust das selber zu schreiben. Wenn die KI das macht, ist das ok, da gibt es genug Wissen auf das ein LLM zurückgreifen kann, aber ich will eigentlich nicht mich da tief einarbeiten. Und Python ist schon seit langem eine meiner favorisierten Sprachen. Und Pyodide bietet genau das: eine Portierung von CPython auf WebAssembly. Das bietet eine angenehme Sprache für Scripte und Makros, die aber auf alles zugreifen kann, was die Applikation macht und - wenn ich das mal will - auch Python Libraries ladenm kann.

- - -
- - Drizzle ORM - Why Drizzle? - https://www.rfc1437.de/2026/02/27/drizzle-orm-why-drizzle - - 2026-03-08T16:30:48.000Z - 2026-02-27T13:17:08.000Z -

[Drizzle ORM](https://orm.drizzle.team/docs/overview) - war ein Vorschlag der KI beim Bau von bDS und hat sich sehr bewährt. Sauberer ORM für TypeScript mit einer recht netten API, die mich stark an Django erinnert. Zusätzlich saubere Abbildung von Migrations, die dann aber einfach SQL erlauben, also auch komplexere Migrationen ermöglichen. Und bisher völlig unauffällig im Betrieb. Was besonders interessant ist: da gibts eine direkte Übersetzung nach GraphQL, so dass man die objekte dann auch nach außen auf ein API legen kann, was ich mir glaube ich mal angucken sollte (bzw. mich bei der KI beschweren sollte, dass es sich das mal anguckt). Ich bin ja immer ein Fan von flexiblen Standard-Integrationen um externe Tools anzubinden.

-

[Drizzle ORM](https://orm.drizzle.team/docs/overview) - war ein Vorschlag der KI beim Bau von bDS und hat sich sehr bewährt. Sauberer ORM für TypeScript mit einer recht netten API, die mich stark an Django erinnert. Zusätzlich saubere Abbildung von Migrations, die dann aber einfach SQL erlauben, also auch komplexere Migrationen ermöglichen. Und bisher völlig unauffällig im Betrieb. Was besonders interessant ist: da gibts eine direkte Übersetzung nach GraphQL, so dass man die objekte dann auch nach außen auf ein API legen kann, was ich mir glaube ich mal angucken sollte (bzw. mich bei der KI beschweren sollte, dass es sich das mal anguckt). Ich bin ja immer ein Fan von flexiblen Standard-Integrationen um externe Tools anzubinden.

- - -
- - A2UI - https://www.rfc1437.de/2026/02/27/a2ui - - 2026-03-08T16:30:53.000Z - 2026-02-27T13:13:21.000Z -

[A2UI](https://a2ui.org/) ist ein interessantes Projekt für ein streaming-orientiertes Protokoll für Anwendungen mit LLM Integration. Die Grundidee ist Streaming von JSON Schnipseln aus denen sich dann inkrementell das UI zusammenbaut, und das LLM hat die Kontrolle darüber, was in das UI rein wandert. Es erlaubt dem LLM mehr als nur simple textuelle Beschreibungen oder einfache Ascii-Grafiken zu produzieren und gibt auch Rückfragen des LLM eine andere Optik. Das ganze kommt von Google und wird auf einem offenen [github Projekt](https://github.com/google/A2UI) gepflegt. In bDS habe ich das ganze auch eingebaut und das hat schon was, wenn man über seine Blogposts eine Heatmap der Verteilung auf die Monate bekommen kann.

-

[A2UI](https://a2ui.org/) ist ein interessantes Projekt für ein streaming-orientiertes Protokoll für Anwendungen mit LLM Integration. Die Grundidee ist Streaming von JSON Schnipseln aus denen sich dann inkrementell das UI zusammenbaut, und das LLM hat die Kontrolle darüber, was in das UI rein wandert. Es erlaubt dem LLM mehr als nur simple textuelle Beschreibungen oder einfache Ascii-Grafiken zu produzieren und gibt auch Rückfragen des LLM eine andere Optik. Das ganze kommt von Google und wird auf einem offenen [github Projekt](https://github.com/google/A2UI) gepflegt. In bDS habe ich das ganze auch eingebaut und das hat schon was, wenn man über seine Blogposts eine Heatmap der Verteilung auf die Monate bekommen kann.

- - -
- - Waggle Dance - https://www.rfc1437.de/2026/02/23/waggle-dance - - 2026-03-08T16:30:57.000Z - 2026-02-23T20:20:07.000Z -

[Waggle Dance](https://boardgamegeek.com/boardgame/158572/waggle-dance) . oldie, but goldie. Immer wieder spaßig wie dieses doch recht einfache Spiel die Leute mitnehmen kann, auch über 10 Jahren nach seiner Veröffentlichung.

-

[Waggle Dance](https://boardgamegeek.com/boardgame/158572/waggle-dance) . oldie, but goldie. Immer wieder spaßig wie dieses doch recht einfache Spiel die Leute mitnehmen kann, auch über 10 Jahren nach seiner Veröffentlichung.

- - - -
- - OpenCode | Der Open-Source AI-Coding-Agent - https://www.rfc1437.de/2026/02/22/opencode-der-open-source-ai-coding-agent - - 2026-03-08T16:31:02.000Z - 2026-02-22T18:07:25.000Z -

[OpenCode | Der Open-Source AI-Coding-Agent](https://opencode.ai/de) - ein open-source coding agent der so langsam Claude Code den Rang ablaufen könnte. Sehr gut in der Ausführung und vor allem Provider-agnostisch. Man kann jedes Modell anhängen, sogar ein selber lokal gehostetes mit LM Studio oder ollama. Wenn man einfach mal spielen will, kann man es auch einfach nur runterladen und loslegen, sogar ohne eine Kreditkarte zu hinterlegen (dann natürlich mit limitierten Tokens, aber für erste Experimente durchaus nutzbar. Und unabhängig von den großen Anbietern (ok, außer deren Modelle, wenn man die benutzen will - und für ernsthaftes Coding sind die leider noch notwendig). OpenCode bietet auch selber AI Modelle an, die dann abgerechnet werden, aber ein paar Modelle sind immer frei verfügbar und bieten damit durchaus ernsthaftes Experimentieren ohne Investment.

-

[OpenCode | Der Open-Source AI-Coding-Agent](https://opencode.ai/de) - ein open-source coding agent der so langsam Claude Code den Rang ablaufen könnte. Sehr gut in der Ausführung und vor allem Provider-agnostisch. Man kann jedes Modell anhängen, sogar ein selber lokal gehostetes mit LM Studio oder ollama. Wenn man einfach mal spielen will, kann man es auch einfach nur runterladen und loslegen, sogar ohne eine Kreditkarte zu hinterlegen (dann natürlich mit limitierten Tokens, aber für erste Experimente durchaus nutzbar. Und unabhängig von den großen Anbietern (ok, außer deren Modelle, wenn man die benutzen will - und für ernsthaftes Coding sind die leider noch notwendig). OpenCode bietet auch selber AI Modelle an, die dann abgerechnet werden, aber ein paar Modelle sind immer frei verfügbar und bieten damit durchaus ernsthaftes Experimentieren ohne Investment.

- - - -
- - Steve Yegge on Vibe Coding - https://www.rfc1437.de/2026/02/22/steve-yegge-on-vibe-coding - - 2026-03-08T16:31:06.000Z - 2026-02-22T14:43:25.000Z - hugo -

Steve Yegge spricht im Interview über die Zukunft der Programmierung und die Herausforderungen des Vibe Codings. Der Autor teilt seine Erfahrungen und sieht einen Umbruch vergleichbar mit der Einführung von Hochsprachen.

-

Steve Yegge spricht im Interview über die Zukunft der Programmierung und die Herausforderungen des Vibe Codings. Der Autor teilt seine Erfahrungen und sieht einen Umbruch vergleichbar mit der Einführung von Hochsprachen.

- - - -
- - bDS langsam benutzbar - https://www.rfc1437.de/2026/02/22/neue-software-langsam-benutzbar - - 2026-03-08T16:31:11.000Z - 2026-02-22T12:28:19.000Z - hugo -

So langsam macht die neue Software Spaß, alles was man für die Benutzung und Erstellung braucht ist weitestgehend vorhanden. Ein paar kleine Schönheitsfehler hat sie moch und es gibt noch das eine oder andere Feature, das ich will, aber ich kann schon alles machen, was ich wirklich als Minimum brauche. Veröffentlichen geht jetzt einfach mit einem shell script:

-

So langsam macht die neue Software Spaß, alles was man für die Benutzung und Erstellung braucht ist weitestgehend vorhanden. Ein paar kleine Schönheitsfehler hat sie moch und es gibt noch das eine oder andere Feature, das ich will, aber ich kann schon alles machen, was ich wirklich als Minimum brauche. Veröffentlichen geht jetzt einfach mit einem shell script:

```bash
#!/bin/sh

cd ~/Blogs/rfc1437.de/html

rsync -rav --delete \
--exclude='thumbnails/' \
--exclude='media/' \
* git.rfc1437.de:git-server/html/

cd ..

rsync -rav --delete thumbnails/ git.rfc1437.de:git-server/html/thumbnails/
rsync -rav --exclude='*.meta' --delete media/ git.rfc1437.de:git-server/html/media/
```

Ja, das war jetzt nur um meine Source-Formatierung zu testen. Und?

- - -
- - Blogging Desktop Server - https://www.rfc1437.de/2026/02/16/blogging-desktop-server - - 2026-03-08T16:31:16.000Z - 2026-02-16T13:40:48.000Z - hugo -

[Big Damn Stupid](https://git.rfc1437.de/hugo/rfc1437) - ne, Blogging Desktop Server. Im Moment mein Lieblingsprojekt an dem ich mit Vibe-Coding herumspiele und mir eine Software baue, mit der ich das Blog betreiben kann. Aber diesmal mit der klaren Perspektive, dass ich nicht wieder dem Bitrot oder der Komplexitätsspirale erliege. Simple Software mit brauchbarer Oberfläche für die Pflege der Blogbeiträge, aber die Speicherung als Markdown Files mit YAML Frontmatter um einfach stabil für die Zukunft zu sein. Das ganze dann mit sqlite für Caching und Volltextsuche und andere Komfort-Features und git für die Synchronisation der Blog-Daten, und git-lfs für die Bilder. Fühlt sich gerade richtig brauchbar an.

-

[Big Damn Stupid](https://git.rfc1437.de/hugo/rfc1437) - ne, Blogging Desktop Server. Im Moment mein Lieblingsprojekt an dem ich mit Vibe-Coding herumspiele und mir eine Software baue, mit der ich das Blog betreiben kann. Aber diesmal mit der klaren Perspektive, dass ich nicht wieder dem Bitrot oder der Komplexitätsspirale erliege. Simple Software mit brauchbarer Oberfläche für die Pflege der Blogbeiträge, aber die Speicherung als Markdown Files mit YAML Frontmatter um einfach stabil für die Zukunft zu sein. Das ganze dann mit sqlite für Caching und Volltextsuche und andere Komfort-Features und git für die Synchronisation der Blog-Daten, und git-lfs für die Bilder. Fühlt sich gerade richtig brauchbar an.

- - - - -
- - Schotten Totten 2 - https://www.rfc1437.de/2023/08/27/schotten-totten-2-board-game-boardgamegeek - - 2026-03-08T16:31:57.000Z - 2023-08-27T19:27:23.000Z - hugo -

[Schotten Totten 2](https://boardgamegeek.com/boardgame/300930/schotten-totten-2) entwickelt sich zu einem unserer Lieblings-Spiele für zwei Spieler. Ein Remake des alten Schotten Totten (das es leider nicht mehr zu kaufen gibt unter dem Namen, nur als Battle Line, aber das eben nur auf Englisch). Im Gegensatz zum ersten Spiel jetzt asymmetrisch mit gerade genug Unterschied in der Spielweise, dass sich die beiden Seiten definitiv unterschiedlich anfühlen, aber trotzdem noch größtenteils die gleichen Sachen machen. Schnell aufgebaut, schnell gespielt und schnell weggeräumt mit genug Taktik um einen für ein paar Spiele zu fesseln. Und der Grafik-Stil ist einfach nett.

-

[Schotten Totten 2](https://boardgamegeek.com/boardgame/300930/schotten-totten-2) entwickelt sich zu einem unserer Lieblings-Spiele für zwei Spieler. Ein Remake des alten Schotten Totten (das es leider nicht mehr zu kaufen gibt unter dem Namen, nur als Battle Line, aber das eben nur auf Englisch). Im Gegensatz zum ersten Spiel jetzt asymmetrisch mit gerade genug Unterschied in der Spielweise, dass sich die beiden Seiten definitiv unterschiedlich anfühlen, aber trotzdem noch größtenteils die gleichen Sachen machen. Schnell aufgebaut, schnell gespielt und schnell weggeräumt mit genug Taktik um einen für ein paar Spiele zu fesseln. Und der Grafik-Stil ist einfach nett.

- - - - -
- - Tak - https://www.rfc1437.de/2023/08/27/tak-board-game-boardgamegeek - - 2026-03-08T16:31:23.000Z - 2023-08-27T19:23:47.000Z - hugo -

[Tak](https://boardgamegeek.com/boardgame/197405/tak) ist ein ziemlich interessantes Spiel: [inspiriert aus einem Fantasy-Roman von Patrick Rothfuss](https://en.wikipedia.org/wiki/Tak_\(game\)), zum Leben erweckt als eine fiktives "klassisches" Strategiespiel. Das schöne daran: man kann es sich problemlos selber machen, wenn man will und geschickt ist. Die Regeln sind super simpel und leicht gelernt, das Spiel aber trickreich mit vielen Möglichkeiten dem Gegner Fallen zu stellen. Wird vermutlich für unseren nächsten Urlaub mitgenommen, weil praktisch zum Draussen spielen.

-

[Tak](https://boardgamegeek.com/boardgame/197405/tak) ist ein ziemlich interessantes Spiel: [inspiriert aus einem Fantasy-Roman von Patrick Rothfuss](https://en.wikipedia.org/wiki/Tak_\(game\)), zum Leben erweckt als eine fiktives "klassisches" Strategiespiel. Das schöne daran: man kann es sich problemlos selber machen, wenn man will und geschickt ist. Die Regeln sind super simpel und leicht gelernt, das Spiel aber trickreich mit vielen Möglichkeiten dem Gegner Fallen zu stellen. Wird vermutlich für unseren nächsten Urlaub mitgenommen, weil praktisch zum Draussen spielen.

- - - - - -
- - In-depth tutorial: How to set up 2FA TOTP with KeepassXC, Aegis and Authy. | Linux.org - https://www.rfc1437.de/2023/08/27/in-depth-tutorial-how-to-set-up-2fa-totp-with-keepassxc-aegis-and-authy-linux-org - - 2026-03-08T16:32:01.000Z - 2023-08-27T10:55:08.000Z - hugo -

Weil mich Google Authenticator ärgert: [In-depth tutorial: How to set up 2FA TOTP with KeepassXC, Aegis and Authy. | Linux.org](https://www.linux.org/threads/in-depth-tutorial-how-to-set-up-2fa-totp-with-keepassxc-aegis-and-authy.36577/). Keepassxc ist deutlich netter, wie ich finde, und ist deutlich kontrollierbarer für mich.

-

Weil mich Google Authenticator ärgert: [In-depth tutorial: How to set up 2FA TOTP with KeepassXC, Aegis and Authy. | Linux.org](https://www.linux.org/threads/in-depth-tutorial-how-to-set-up-2fa-totp-with-keepassxc-aegis-and-authy.36577/). Keepassxc ist deutlich netter, wie ich finde, und ist deutlich kontrollierbarer für mich.

- -
- - Mal wieder auf Linux ... - https://www.rfc1437.de/2023/08/19/mal-wieder-auf-linux - - 2026-03-08T16:32:06.000Z - 2023-08-19T13:26:04.000Z - hugo -

... und natürlich tuts Surround-Sound meines Notebooks nicht mehr, aus Gründen. Und Fingerprint-Login macht weitaus weniger Sinn, wenn man nach Login dann doch das Passwort für den Keyring eingeben muss. Wenn der wenigstens erst beim ersten Bedarf nach einem Passwort käme, dann wärs ja ok, aber der geht direkt nach Login auf. Bah.

-

... und natürlich tuts Surround-Sound meines Notebooks nicht mehr, aus Gründen. Und Fingerprint-Login macht weitaus weniger Sinn, wenn man nach Login dann doch das Passwort für den Keyring eingeben muss. Wenn der wenigstens erst beim ersten Bedarf nach einem Passwort käme, dann wärs ja ok, aber der geht direkt nach Login auf. Bah.

Ansonsten bin ich allerdings angenehm überrascht davon, wie gut die Linux-Unterstützung für das Lenovo T480 ist. Alles andere funktioniert bisher tadellos.

- - -
- - Autumn Leaves - https://www.rfc1437.de/2022/11/11/autumn-leaves - - 2026-03-07T21:06:30.000Z - 2022-11-11T12:06:46.000Z - hugo -

![autumn leaf against fuzzy background with other leaves and sky](media/2022/11/20221111_0177.jpg)

-

![autumn leaf against fuzzy background with other leaves and sky](media/2022/11/20221111_0177.jpg)

- -
- - Prime Time for Prime Slime - https://www.rfc1437.de/2022/11/06/prime-time-for-prime-slime - - 2026-03-07T21:06:31.000Z - 2022-11-06T12:59:14.000Z - hugo -

[Prime Time for Prime Slime](https://www.moxfield.com/users/rfc1437) is the second of my "reinventing the past" deck lists. It is actually my first commander precon deck - Mimeoplasm - just spiced up to 11. It kinda is funny how I stuck with the theme of the deck, transitioning it from the precon to Ooze tribal and later reanimator, then turned it into Muldrotha combo and again turned it back to Mimeoplasm, when the Prime Slime secret lair came out (I love the art style), going full on Necrotic Ooze combo this time. It is a ton of fun to play, which is why some of the old stuff from my collection made it's way into that deck. #EDH #MtG #MagicTheGathering

-

[Prime Time for Prime Slime](https://www.moxfield.com/users/rfc1437) is the second of my "reinventing the past" deck lists. It is actually my first commander precon deck - Mimeoplasm - just spiced up to 11. It kinda is funny how I stuck with the theme of the deck, transitioning it from the precon to Ooze tribal and later reanimator, then turned it into Muldrotha combo and again turned it back to Mimeoplasm, when the Prime Slime secret lair came out (I love the art style), going full on Necrotic Ooze combo this time. It is a ton of fun to play, which is why some of the old stuff from my collection made it's way into that deck. #EDH #MtG #MagicTheGathering

- - - - - -
- - Sweet, so sweet - https://www.rfc1437.de/2022/11/05/sweet-so-sweet - - 2026-03-08T12:21:49.000Z - 2022-11-05T07:08:12.000Z - hugo -

![P1010853 01](media/2022/11/P1010853_01.jpg)

-

![P1010853 01](media/2022/11/P1010853_01.jpg)

- - -
- - Kaalia of the Blast - https://www.rfc1437.de/2022/11/05/kaalia-of-the-blast - - 2026-03-07T21:06:36.000Z - 2022-11-05T06:37:13.000Z - hugo -

[Kaalia of the Blast](https://www.moxfield.com/decks/t4ZVxFbALUS1ciFv6s7tmQ) is one of my "lets recreate original commander" decks. The idea is to keep close to the original structure - one commander with the focus of the deck, a supporting commander that could become the main with some changes, and a big dragon in the same colors. And have the game plan of one of the originals, too. So in a way an updated Kaalia with a bit more focus and dedication, but still Angel/Dragon/Demon beatdown. #EDH #MtG

-

[Kaalia of the Blast](https://www.moxfield.com/decks/t4ZVxFbALUS1ciFv6s7tmQ) is one of my "lets recreate original commander" decks. The idea is to keep close to the original structure - one commander with the focus of the deck, a supporting commander that could become the main with some changes, and a big dragon in the same colors. And have the game plan of one of the originals, too. So in a way an updated Kaalia with a bit more focus and dedication, but still Angel/Dragon/Demon beatdown. #EDH #MtG

- - - - -
- - Abdel, Agent of the Iron Throne - https://www.rfc1437.de/2022/08/22/abdel-agent-of-the-iron-throne-commander-edh-agent-of-the-iron-throne-and-abdel-adrian-gorions-ward-deck-list-mtg-moxfield-an-mtg-deck-builder-site-for-magic-the-gathering - - 2026-03-08T16:32:16.000Z - 2022-08-22T06:54:04.000Z - hugo -

[Abdel, Agent of the Iron Throne](https://www.moxfield.com/users/rfc1437) ist meine neueste high-power, near-competetive Kreation. Das Deck hat einen sehr linearen Combo Plan mit viel Redundanz in den Teilen, und vor allem sowohl Combo-Element als auch Combo-Payoff in der Command Zone. Was an Interaktion aufgrund der Farben fehlt, wird durch Resilienz ersetzt. Ich mag ja lineare Combo, weil das dem Spiel einen klaren Plan vorgibt und es zum Beispiel Mulligan-Entscheidungen deutlich einfacher macht.

-

[Abdel, Agent of the Iron Throne](https://www.moxfield.com/users/rfc1437) ist meine neueste high-power, near-competetive Kreation. Das Deck hat einen sehr linearen Combo Plan mit viel Redundanz in den Teilen, und vor allem sowohl Combo-Element als auch Combo-Payoff in der Command Zone. Was an Interaktion aufgrund der Farben fehlt, wird durch Resilienz ersetzt. Ich mag ja lineare Combo, weil das dem Spiel einen klaren Plan vorgibt und es zum Beispiel Mulligan-Entscheidungen deutlich einfacher macht.

- - - - -
- - Dargo for the Lulz - https://www.rfc1437.de/2021/01/14/dargo-for-the-lulz - - 2026-03-08T16:32:20.000Z - 2021-01-14T12:32:10.000Z - hugo -

[Dargo for the Lulz](https://www.moxfield.com/decks/WO7RNg0DOkaJWTiM-cfWiQ) ist ein Deck, das mich positiv überrascht hat, wie stark es ist. Ich würde es in eine ähnliche Gegend wie Godo stellen, also durchaus cEDH viable. Zwar ist die Combo nicht alleine der Commander, aber es braucht nur eine weitere Karte (Phyrexian Altar) und es geht los, wenn noch ein paar Treasures rumliegen oder Kreaturen zum Opfern da sind. Und der Plan-B mit Beatdown funktioniert auch gut.

-

[Dargo for the Lulz](https://www.moxfield.com/decks/WO7RNg0DOkaJWTiM-cfWiQ) ist ein Deck, das mich positiv überrascht hat, wie stark es ist. Ich würde es in eine ähnliche Gegend wie Godo stellen, also durchaus cEDH viable. Zwar ist die Combo nicht alleine der Commander, aber es braucht nur eine weitere Karte (Phyrexian Altar) und es geht los, wenn noch ein paar Treasures rumliegen oder Kreaturen zum Opfern da sind. Und der Plan-B mit Beatdown funktioniert auch gut.

- -
- - Brettspielrunde - wie macht man das in Zeiten von Corona? - https://www.rfc1437.de/2020/03/27/brettspielrunde-wie-macht-man-das-in-zeiten-von-corona - - 2026-03-08T16:32:35.000Z - 2020-03-27T18:45:02.000Z - hugo -

Also wir haben da eine Lösung gefunden. Und es lief richtig gut - 6 Spieler waren dabei, jeder zu Hause. Bei mir war das Spiel und eine Kamerakonstruktion, um das Bild ins Internet zu stellen - und mit Microsoft Teams dann allen nach Hause zu liefern. Dazu dann Headsets und los gings, Spiel erklären, spielen, gemeinsam drüber reden - all das geht auch zu Zeiten des Social Distancing.

-

Also wir haben da eine Lösung gefunden. Und es lief richtig gut - 6 Spieler waren dabei, jeder zu Hause. Bei mir war das Spiel und eine Kamerakonstruktion, um das Bild ins Internet zu stellen - und mit Microsoft Teams dann allen nach Hause zu liefern. Dazu dann Headsets und los gings, Spiel erklären, spielen, gemeinsam drüber reden - all das geht auch zu Zeiten des Social Distancing.

![IMG 20200326 181231](media/2020/03/IMG_20200326_181231.jpg)

Das Kamera-Stativ hatte ich eh schon, der kleine Schwenkarm mit Handy-Halterung kostet 35€ und das Handy - sowas hat man oft ja schon da. Dann auf dem Handy eine kleine App - "IP Webcam" - mit der die Kamera des Handy über eine Webseite erreichbar wird. Und auf dem Notebook Teams, mit dem ich das Fenster des Browsers mit allen Teilnehmern geteilt habe. Und los kanns gehen!

- -
- - Jhoira, Scrap That! (Commander / EDH MTG Deck) - https://www.rfc1437.de/2020/03/13/jhoira-scrap-that-commander-edh-mtg-deck - - 2026-03-08T16:32:49.000Z - 2020-03-13T18:03:55.000Z - hugo -

[Jhoira, Scrap That!](http://tappedout.net/mtg-decks/jhoira-scrap-that/) ist mitlerweile mein primäres Deck für cEDH und es hat sich verdammt gut bewährt bisher. Das Deck hat eigentlich immer eine Line, kann auf fast alles reagieren und hat gute Rebuild-Fähigkeiten. Durch mehrere überlappende Combos bietet es flexible Wege durch Stax oder Hate hindurch trotzdem zu gewinnen. Und selbst wenn ich nicht gewinne: das Deck hinterlässt bei den Gegnern definitiv einen bleibenden Eindruck.

-

[Jhoira, Scrap That!](http://tappedout.net/mtg-decks/jhoira-scrap-that/) ist mitlerweile mein primäres Deck für cEDH und es hat sich verdammt gut bewährt bisher. Das Deck hat eigentlich immer eine Line, kann auf fast alles reagieren und hat gute Rebuild-Fähigkeiten. Durch mehrere überlappende Combos bietet es flexible Wege durch Stax oder Hate hindurch trotzdem zu gewinnen. Und selbst wenn ich nicht gewinne: das Deck hinterlässt bei den Gegnern definitiv einen bleibenden Eindruck.

- -
- - Rurik: Dawn of Kiev - https://www.rfc1437.de/2020/02/20/rurik-dawn-of-kiev - - 2026-03-08T16:32:54.000Z - 2020-02-20T18:05:19.000Z - hugo -

[Rurik: Dawn of Kiev](https://boardgamegeek.com/boardgame/228328/rurik-dawn-kiev) ist ein Kickstarter-Spiel, das bei mir vor ein paar Wochen eingetrudelt ist und seit dem ein paar Mal auf dem Tisch war. Interessante Aspekte bei dem Spiel sind die Aktionswahl mit unterschiedlich bewerteten Beratern in einer eigenen Auktionsphase, in der man die Aktionsmöglichkeiten selektiert und ein bischen die Reihenfolge, in der man diese ausführt, aber wie stark die Aktion sein wird, hängt von dem Mitspielern ab. Ausgewertet werden die Aktionen erst in der zweiten Phase, in der man dann zusehen muss, mit dem was man bekommt klar zu kommen. Die Zielwertungen sind sehr nah beieinander, jeder Punkt zählt. Dazu noch sehr nettes Spielmaterial und eine praktische Sortiereinlage.

-

[Rurik: Dawn of Kiev](https://boardgamegeek.com/boardgame/228328/rurik-dawn-kiev) ist ein Kickstarter-Spiel, das bei mir vor ein paar Wochen eingetrudelt ist und seit dem ein paar Mal auf dem Tisch war. Interessante Aspekte bei dem Spiel sind die Aktionswahl mit unterschiedlich bewerteten Beratern in einer eigenen Auktionsphase, in der man die Aktionsmöglichkeiten selektiert und ein bischen die Reihenfolge, in der man diese ausführt, aber wie stark die Aktion sein wird, hängt von dem Mitspielern ab. Ausgewertet werden die Aktionen erst in der zweiten Phase, in der man dann zusehen muss, mit dem was man bekommt klar zu kommen. Die Zielwertungen sind sehr nah beieinander, jeder Punkt zählt. Dazu noch sehr nettes Spielmaterial und eine praktische Sortiereinlage.

- - - -
- - Bears on a Plane (Commander / EDH MTG Deck) - https://www.rfc1437.de/2020/02/20/bears-on-a-plane-commander-edh-mtg-deck - - 2026-03-08T16:33:00.000Z - 2020-02-20T13:46:09.000Z - hugo -

[Bears on a Plane](http://tappedout.net/mtg-decks/bears-on-a-plane/) ist mein Versuch ein effektives Prison-Deck in cEDH zu bauen. Erste Versuche mit dem Deck waren dementsprechend "disgusting". Kann nur sporadisch getestet werden wegen Anger-Management-Issues der Playgroup ...

-

[Bears on a Plane](http://tappedout.net/mtg-decks/bears-on-a-plane/) ist mein Versuch ein effektives Prison-Deck in cEDH zu bauen. Erste Versuche mit dem Deck waren dementsprechend "disgusting". Kann nur sporadisch getestet werden wegen Anger-Management-Issues der Playgroup ...

- - -
- - Tin Elves (Commander / EDH MTG Deck) - https://www.rfc1437.de/2019/11/08/tin-elves-commander-edh-mtg-deck - - 2026-03-08T16:33:03.000Z - 2019-11-08T19:10:20.000Z - hugo -

[Tin Elves](http://tappedout.net/mtg-decks/tin-elves/) - Blechelfen. Mein letztes Artefakt-Combo Deck für Magic the Gathering. Hat sich beim letzten Spiel super solide angefühlt. Das Deck geht hart auf Artefakte-Combos, benutzt dafür aber eine Reihe von Elementen, die auch super gut für eine Aggro-Strategie funktionieren. Wenn mir meine Combo-Teile weggeschossen werden, greife ich einfach mit einer Horder Thoptern an. Und Emry als Commander hilft mir um den Commander-Tax herum zu kommen, weil ihre Affinity-to-Artifacts Fähigkeit in diesem Deck Gold wert ist - und da sie zusätzlich auch noch ein Combo-Element ist, hat das Deck sehr gute Chancen auf Comebacks aus dem Hintertreffen. Ich werde die Liste vermutlich noch etwas stabilisieren, aber die Zusammenstellung scheint ein echter Treffer zu sein. Geht vermutlich mit nach Bologna.

-

[Tin Elves](http://tappedout.net/mtg-decks/tin-elves/) - Blechelfen. Mein letztes Artefakt-Combo Deck für Magic the Gathering. Hat sich beim letzten Spiel super solide angefühlt. Das Deck geht hart auf Artefakte-Combos, benutzt dafür aber eine Reihe von Elementen, die auch super gut für eine Aggro-Strategie funktionieren. Wenn mir meine Combo-Teile weggeschossen werden, greife ich einfach mit einer Horder Thoptern an. Und Emry als Commander hilft mir um den Commander-Tax herum zu kommen, weil ihre Affinity-to-Artifacts Fähigkeit in diesem Deck Gold wert ist - und da sie zusätzlich auch noch ein Combo-Element ist, hat das Deck sehr gute Chancen auf Comebacks aus dem Hintertreffen. Ich werde die Liste vermutlich noch etwas stabilisieren, aber die Zusammenstellung scheint ein echter Treffer zu sein. Geht vermutlich mit nach Bologna.

- - - -
- - Wingspan - https://www.rfc1437.de/2019/11/08/wingspan - - 2026-03-08T16:33:08.000Z - 2019-11-08T18:06:27.000Z - hugo -

[Wingspan](https://boardgamegeek.com/boardgame/266192/wingspan) ist mein diesjähriger Neuzugang aus Essen (nicht der einzige, aber der, den ich bisher gespielt hab) und ich bin sehr zufrieden, das Spiel gekauft zu haben. Ein Tableau-Builder mit Karten, bei dem die Karten die Aktionsmöglichkeiten verbessern - das fängt schon mal perfekt für mich an. Variabler Setup, geheime Ziele und hohes Combo-Potential in den Karten machts noch besser. Und die ersten Spiele mit 2 und 5 Spielern waren super spannend. Das Spiel bietet einen nette Eskalationskurve im Spiel - die Runden haben weniger und weniger Aktionen, die Aktionen selber werden aber besser und besser. Und wenn man mal eine produktive Combo trifft, fühlt sich das einfach gut an. Dazu ordentliche Verarbeitung der Materialen und ansprechende Grafik, das ist ein slam-dunk für mich.

-

[Wingspan](https://boardgamegeek.com/boardgame/266192/wingspan) ist mein diesjähriger Neuzugang aus Essen (nicht der einzige, aber der, den ich bisher gespielt hab) und ich bin sehr zufrieden, das Spiel gekauft zu haben. Ein Tableau-Builder mit Karten, bei dem die Karten die Aktionsmöglichkeiten verbessern - das fängt schon mal perfekt für mich an. Variabler Setup, geheime Ziele und hohes Combo-Potential in den Karten machts noch besser. Und die ersten Spiele mit 2 und 5 Spielern waren super spannend. Das Spiel bietet einen nette Eskalationskurve im Spiel - die Runden haben weniger und weniger Aktionen, die Aktionen selber werden aber besser und besser. Und wenn man mal eine produktive Combo trifft, fühlt sich das einfach gut an. Dazu ordentliche Verarbeitung der Materialen und ansprechende Grafik, das ist ein slam-dunk für mich.

- - - - -
- - Golos, Combo Pilgrim (Commander / EDH MTG Deck) - https://www.rfc1437.de/2019/08/20/golos-combo-pilgrim-commander-edh-mtg-deck - - 2026-03-08T16:33:12.000Z - 2019-08-20T17:56:45.000Z - hugo -

Golos is on a pilgrimage to find the most efficient combos to run in his deck - [and I am helping him](http://tappedout.net/mtg-decks/golos-combo-pilgrim/) to achieve his goal. Meine letzte Deckliste, an der ich arbeite. Wird ziemlich hart in Richtung cEDH laufen. Bei den ersten Spielen fühlte sich das schon richtig gut an, auch wenn ein bischen das explosive Combo-Feeling fehlte. Aber das ist in meiner Meta vielleicht auch gar nicht schlecht, wir spielen eher längere Spiele. Daher ist die Liste mehr auf Antworten und weniger auf T2 Combo-Win ausgelegt. Aber von dem, was die Liste macht, geht das voll in meine präferierte Richtung - nicht Suicide-Combo, sondern erstmal schauen was geht, dann zuschlagen, wenn keiner genug antworten haben kann.

-

Golos is on a pilgrimage to find the most efficient combos to run in his deck - [and I am helping him](http://tappedout.net/mtg-decks/golos-combo-pilgrim/) to achieve his goal. Meine letzte Deckliste, an der ich arbeite. Wird ziemlich hart in Richtung cEDH laufen. Bei den ersten Spielen fühlte sich das schon richtig gut an, auch wenn ein bischen das explosive Combo-Feeling fehlte. Aber das ist in meiner Meta vielleicht auch gar nicht schlecht, wir spielen eher längere Spiele. Daher ist die Liste mehr auf Antworten und weniger auf T2 Combo-Win ausgelegt. Aber von dem, was die Liste macht, geht das voll in meine präferierte Richtung - nicht Suicide-Combo, sondern erstmal schauen was geht, dann zuschlagen, wenn keiner genug antworten haben kann.

- - - -
- - Marvel Champions - Fantasy Flight Games - https://www.rfc1437.de/2019/08/02/marvel-champions-fantasy-flight-games - - 2026-03-08T16:33:16.000Z - 2019-08-02T12:19:43.000Z - hugo -

[Marvel Champions - Fantasy Flight Games](https://www.fantasyflightgames.com/en/news/2019/7/31/marvel-champions/) Wow, das kommt unerwartet. Es sieht stark nach einem weiteren Ableger des LOTR Systems aus, allerdings auf den ersten Blick etwas streamlined. Aber wenn das ganze trotzdem die Spieltiefe von LOTR erreicht, wärs klasse. Ich habe zwar mitlerweile eine gut laufende Magic Spielrunde, aber so für zwischendurch fand ich LOTR immer eigentlich recht spannend, da viele Spielentscheidungen (speziell der Szenario-spezifische Bau eines Decks) sehr nah an Magic ran kommen.

-

[Marvel Champions - Fantasy Flight Games](https://www.fantasyflightgames.com/en/news/2019/7/31/marvel-champions/) Wow, das kommt unerwartet. Es sieht stark nach einem weiteren Ableger des LOTR Systems aus, allerdings auf den ersten Blick etwas streamlined. Aber wenn das ganze trotzdem die Spieltiefe von LOTR erreicht, wärs klasse. Ich habe zwar mitlerweile eine gut laufende Magic Spielrunde, aber so für zwischendurch fand ich LOTR immer eigentlich recht spannend, da viele Spielentscheidungen (speziell der Szenario-spezifische Bau eines Decks) sehr nah an Magic ran kommen.

- - - -
- - Pauper Comes to Paper | MAGIC: THE GATHERING - https://www.rfc1437.de/2019/06/28/pauper-comes-to-paper-magic-the-gathering - - 2026-03-08T16:33:22.000Z - 2019-06-28T06:46:02.000Z - hugo -

Wow, [Pauper Comes to Paper](https://magic.wizards.com/en/articles/archive/news/pauper-comes-paper-2019-06-27) - mit vereinheitlichter Legalität. Leider werden gleich zwei meiner Lieblings-Commons gebannt: Hymn to Tourach und High Tide. Schade. Aber trotzdem schön, endlich eine einheitliche Legalität für Karten zu haben.

-

Wow, [Pauper Comes to Paper](https://magic.wizards.com/en/articles/archive/news/pauper-comes-paper-2019-06-27) - mit vereinheitlichter Legalität. Leider werden gleich zwei meiner Lieblings-Commons gebannt: Hymn to Tourach und High Tide. Schade. Aber trotzdem schön, endlich eine einheitliche Legalität für Karten zu haben.

- - - -
- - The London Mulligan | MAGIC: THE GATHERING - https://www.rfc1437.de/2019/06/03/the-london-mulligan-magic-the-gathering - - 2026-03-02T16:35:06.000Z - 2019-06-03T15:03:37.000Z - hugo -

Der [London Mulligan](https://magic.wizards.com/en/articles/archive/news/london-mulligan-2019-06-03) wird der offizielle Mulligan in Magic ab Core Set 2020. Klasse. Wir haben den in Commander ausprobiert und er war völlig ok. Und in Pauper wars auch gut. Klar, es gibt sicherlich ein paar Decks, die übermäßig profitieren, aber das kann man anderweitig regeln. Der neue Mulligan hilft einfach "Nicht-Spiele" aufgrund von mehrfachen schlechten Starthänden zu vermeiden. Es gibt nix nervigeres als ein Spiel im Mulligan zu verlieren, weil einfach jede Hand ohne Länder oder nur Länder war.

-

Der [London Mulligan](https://magic.wizards.com/en/articles/archive/news/london-mulligan-2019-06-03) wird der offizielle Mulligan in Magic ab Core Set 2020. Klasse. Wir haben den in Commander ausprobiert und er war völlig ok. Und in Pauper wars auch gut. Klar, es gibt sicherlich ein paar Decks, die übermäßig profitieren, aber das kann man anderweitig regeln. Der neue Mulligan hilft einfach "Nicht-Spiele" aufgrund von mehrfachen schlechten Starthänden zu vermeiden. Es gibt nix nervigeres als ein Spiel im Mulligan zu verlieren, weil einfach jede Hand ohne Länder oder nur Länder war.

- - - -
- - A Force to be Reckoned With | Article by Jim Davis - https://www.rfc1437.de/2019/05/20/a-force-to-be-reckoned-with-article-by-jim-davis - - 2026-03-02T16:35:10.000Z - 2019-05-20T15:49:19.000Z - hugo -

[A Force to be Reckoned With](https://www.coolstuffinc.com/a/jimdavis-05202019-a-force-to-be-reckoned-with/) - die neue Karte "Force of Vigor" hat mal eben zwei meiner Decks deutlich getroffen. Jhoira als Artefakt-Storm-Deck und Paradox Arcum als Artefakt-Kombo sind beide ziemlich abhängig von ihren Artefakten und Enchantments, so eine Karte kann die mal eben abschalten. Instant-speed. Für lau. Autsch. Wenn andere Liste stärker auf Mana-Dorks statt Mana-Rocks gehen, haben sie genug grüne Karten um den FoV aktiv zu bekommen. Und dann bin ich raus. Jhoira kann sich vielleicht noch knapp halten, Storm hat in der Regel mehrere Vektoren, aber da Artefakte nur mit Shimmer Myr instant-speed werden (und der als Artefakt angreifbar bleibt), ist Arcum wirklich hart betroffen.

-

[A Force to be Reckoned With](https://www.coolstuffinc.com/a/jimdavis-05202019-a-force-to-be-reckoned-with/) - die neue Karte "Force of Vigor" hat mal eben zwei meiner Decks deutlich getroffen. Jhoira als Artefakt-Storm-Deck und Paradox Arcum als Artefakt-Kombo sind beide ziemlich abhängig von ihren Artefakten und Enchantments, so eine Karte kann die mal eben abschalten. Instant-speed. Für lau. Autsch. Wenn andere Liste stärker auf Mana-Dorks statt Mana-Rocks gehen, haben sie genug grüne Karten um den FoV aktiv zu bekommen. Und dann bin ich raus. Jhoira kann sich vielleicht noch knapp halten, Storm hat in der Regel mehrere Vektoren, aber da Artefakte nur mit Shimmer Myr instant-speed werden (und der als Artefakt angreifbar bleibt), ist Arcum wirklich hart betroffen.

- - - - -
- - May 20, 2019 Banned and Restricted Announcement | MAGIC: THE GATHERING - https://www.rfc1437.de/2019/05/20/may-20-2019-banned-and-restricted-announcement-magic-the-gathering - - 2026-03-02T16:35:15.000Z - 2019-05-20T15:15:55.000Z - hugo -

[May 20, 2019 Banned and Restricted Announcement](https://magic.wizards.com/en/articles/archive/news/may-20-2019-banned-and-restricted-announcement) - da hat mir Wizards of the Coast mal eben zwei meiner Decks komplett neutralisiert - Izzet Blitz braucht die kostenlosen Spells um seine Kreaturen zu pumpen oder Direktschaden zu aktivieren und Skred Delver brauchte sie um die Hand zu füllen im Mittelspiel. Autsch. Ok, in letzter Zeit hab ich meistens Tron gespielt (oder mal GB Tortex, wenn mir nach wilden Boardstates war), aber trotzdem, Skred Delver war immer noch mein Lieblingsdeck wegen seiner explosiven Comebacks.

-

[May 20, 2019 Banned and Restricted Announcement](https://magic.wizards.com/en/articles/archive/news/may-20-2019-banned-and-restricted-announcement) - da hat mir Wizards of the Coast mal eben zwei meiner Decks komplett neutralisiert - Izzet Blitz braucht die kostenlosen Spells um seine Kreaturen zu pumpen oder Direktschaden zu aktivieren und Skred Delver brauchte sie um die Hand zu füllen im Mittelspiel. Autsch. Ok, in letzter Zeit hab ich meistens Tron gespielt (oder mal GB Tortex, wenn mir nach wilden Boardstates war), aber trotzdem, Skred Delver war immer noch mein Lieblingsdeck wegen seiner explosiven Comebacks.

- - - - -
-
+rfc1437 (de)hunk — review-first terminal diff viewerhttps://www.rfc1437.de/2026/07/17/hunk-review-first-terminal-diff-viewer/Herdr: one terminal for the whole herdhttps://www.rfc1437.de/2026/07/17/herdr-one-terminal-for-the-whole-herd/JustVugg/colibri: Run GLM-5.2 (744B MoE) on a 25GB-RAM consumer machine — pure C, zero deps, experts streamed from disk. Tiny engine, immense model. 🐦https://www.rfc1437.de/2026/07/14/justvugg-colibri-run-glm-5-2-744b-moe-on-a-25gb-ram-consumer-machine-pure-c-zero-deps-experts-streamed-from-disk-tiny-engine-immense-model/567-labs/instructor: structured outputs for llmshttps://www.rfc1437.de/2026/07/13/567-labs-instructor-structured-outputs-for-llms/dottxt-ai/outlines: Structured Outputshttps://www.rfc1437.de/2026/07/13/dottxt-ai-outlines-structured-outputs/datalab-to/marker: Convert PDF to markdown + JSON quickly with high accuracyhttps://www.rfc1437.de/2026/07/13/datalab-to-marker-convert-pdf-to-markdown-json-quickly-with-high-accuracy/jakobdylanc/llmcord: Make Discord your LLM frontend - Supports any OpenAI compatible API (OpenRouter, Ollama and more)https://www.rfc1437.de/2026/07/06/jakobdylanc-llmcord-make-discord-your-llm-frontend-supports-any-openai-compatible-api-openrouter-ollama-and-more/Forest Shufflehttps://www.rfc1437.de/2026/07/06/forest-shuffle/LMCache – Building the foundation of AI memory tensor with KV Cache Infrastructurehttps://www.rfc1437.de/2026/07/05/lmcache-building-the-foundation-of-ai-memory-tensor-with-kv-cache-infrastructure/Supacodehttps://www.rfc1437.de/2026/06/30/supacode/deepreinforce-ai/Ornith-1.0-35B · Hugging Facehttps://www.rfc1437.de/2026/06/30/deepreinforce-ai-ornith-1-0-35b-hugging-face/DietrichGebert/ponytail: Makes your AI agent think like the laziest senior dev in the room. The best code is the code you never wrote.https://www.rfc1437.de/2026/06/21/dietrichgebert-ponytail-makes-your-ai-agent-think-like-the-laziest-senior-dev-in-the-room-the-best-code-is-the-code-you-never-wrote/AbarthJoe/Qwopus3.6-27B-v2-oQ8-mtp · Hugging Facehttps://www.rfc1437.de/2026/06/20/abarthjoe-qwopus3-6-27b-v2-oq8-mtp-hugging-face/antirez/ds4: DeepSeek 4 Flash and PRO local inference engine for Metal, CUDA and ROCmhttps://www.rfc1437.de/2026/06/18/antirez-ds4-deepseek-4-flash-and-pro-local-inference-engine-for-metal-cuda-and-rocm/oMLX — LLM inference, optimized for your Machttps://www.rfc1437.de/2026/05/30/omlx-llm-inference-optimized-for-your-mac/MTPLX — Twice as fast on MLXhttps://www.rfc1437.de/2026/05/29/mtplx-twice-as-fast-on-mlx/Home - Livebook.devhttps://www.rfc1437.de/2026/05/28/home-livebook-dev/opencodehttps://www.rfc1437.de/2026/04/27/opencode/Dicklesworthstone/pi_agent_rust: High-performance AI coding agent CLI written in Rust with zero unsafe codehttps://www.rfc1437.de/2026/04/10/dicklesworthstone-pi-agent-rust-high-performance-ai-coding-agent-cli-written-in-rust-with-zero-unsafe-code/nearai/ironclaw: IronClaw is OpenClaw inspired implementation in Rust focused on privacy and securityhttps://www.rfc1437.de/2026/04/04/nearai-ironclaw-ironclaw-is-openclaw-inspired-implementation-in-rust-focused-on-privacy-and-security/stonerl/Thaw: Menu bar manager for macOS 26https://www.rfc1437.de/2026/04/01/stonerl-thaw-menu-bar-manager-for-macos-26/Fission-AI/OpenSpec: Spec-driven development (SDD) for AI coding assistants.https://www.rfc1437.de/2026/03/29/fission-ai-openspec-spec-driven-development-sdd-for-ai-coding-assistants/juxt/allium: A language for sharpening intent alongside implementation.https://www.rfc1437.de/2026/03/27/juxt-allium-a-language-for-sharpening-intent-alongside-implementation/scitrera/cuda-containers: Scitrera builds of various CUDA containers for version consistency, starting primarily with NVIDIA DGX Spark Containershttps://www.rfc1437.de/2026/03/27/scitrera-cuda-containers-scitrera-builds-of-various-cuda-containers-for-version-consistency-starting-primarily-with-nvidia-dgx-spark-containers/thushan/olla: High-performance lightweight proxy and load balancer for LLM infrastructure. Intelligent routing, automatic failover and unified model discovery across local and remote inference backendhttps://www.rfc1437.de/2026/03/27/thushan-olla-high-performance-lightweight-proxy-and-load-balancer-for-llm-infrastructure-intelligent-routing-automatic-failover-and-unified-model-discovery-across-local-and-remote-inference-backend/Running Mistral Small 4 119B NVFP4 on NVIDIA DGX Spark (GB10) - DGX Spark / GB10 User Forum / DGX Spark / GB10 - NVIDIA Developer Forumshttps://www.rfc1437.de/2026/03/25/running-mistral-small-4-119b-nvfp4-on-nvidia-dgx-spark-gb10-dgx-spark-gb10-user-forum-dgx-spark-gb10-nvidia-developer-forums/Zed: The Fastest AI Code Editor — Zed''s Bloghttps://www.rfc1437.de/2026/03/22/zed-the-fastest-ai-code-editor-zed-s-blog/Introducing Mistral Small 4 | Mistral AIhttps://www.rfc1437.de/2026/03/22/introducing-mistral-small-4-mistral-ai/nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-NVFP4 · Hugging Facehttps://www.rfc1437.de/2026/03/22/nvidia-nvidia-nemotron-3-super-120b-a12b-nvfp4-hugging-face/WireGuard® for Enterprisehttps://www.rfc1437.de/2026/03/22/wireguard-r-for-enterprise/ASUS Ascent GX10||ASUS Deutschlandhttps://www.rfc1437.de/2026/03/22/asus-ascent-gx10-asus-deutschland/topoteretes/cognee: Knowledge Engine for AI Agent Memory in 6 lines of codehttps://www.rfc1437.de/2026/03/19/topoteretes-cognee-knowledge-engine-for-ai-agent-memory-in-6-lines-of-code/Docker Model Runner Adds vLLM Support on macOS | Dockerhttps://www.rfc1437.de/2026/03/19/docker-model-runner-adds-vllm-support-on-macos-docker/rfc1437/MLXServer: a simple MLX based server for small models to run locallyhttps://www.rfc1437.de/2026/03/18/rfc1437-mlxserver-a-simple-mlx-based-server-for-small-models-to-run-locally/Qwen3.5-9B MLX: Perfekt für MacBook Air M4https://www.rfc1437.de/2026/03/18/qwen3-5-9b-mlx-perfekt-fur-macbook-air-m4/google/gemma-3-4b-it · Hugging Facehttps://www.rfc1437.de/2026/03/16/google-gemma-3-4b-it-hugging-face/Inferencer | Run and Deeply Control Local AI Modelshttps://www.rfc1437.de/2026/03/15/inferencer-run-and-deeply-control-local-ai-models/Pagefind | Pagefind — Static low-bandwidth search at scalehttps://www.rfc1437.de/2026/03/15/pagefind-pagefind-static-low-bandwidth-search-at-scale/pi.devhttps://www.rfc1437.de/2026/03/14/pi-dev/steveyegge/beads: Beads - A memory upgrade for your coding agenthttps://www.rfc1437.de/2026/03/13/steveyegge-beads-beads-a-memory-upgrade-for-your-coding-agent/dolthub/doltgresql: DoltgreSQL - Version Controlled PostgreSQLhttps://www.rfc1437.de/2026/03/13/dolthub-doltgresql-doltgresql-version-controlled-postgresql/dolthub/dolt: Dolt – Git for Datahttps://www.rfc1437.de/2026/03/13/dolthub-dolt-dolt-git-for-data/paperclipai/paperclip: Open-source orchestration for zero-human companieshttps://www.rfc1437.de/2026/03/13/paperclipai-paperclip-open-source-orchestration-for-zero-human-companies/Ghosttyhttps://www.rfc1437.de/2026/03/13/ghostty/cmux — Das Terminal für Multitaskinghttps://www.rfc1437.de/2026/03/13/cmux-das-terminal-fur-multitasking/NuGet Gallery | Photino.Blazor.CustomWindow 1.3.1https://www.rfc1437.de/2026/03/12/nuget-gallery-photino-blazor-customwindow-1-3-1/OpenClaw Memory Masterclass: The complete guide to agent memory that survives • VelvetSharkhttps://www.rfc1437.de/2026/03/07/openclaw-memory-masterclass-the-complete-guide-to-agent-memory-that-survives-velvetshark/unum-cloud/USearch: Fast Open-Source Search & Clustering engine × for Vectors & Arbitrary Objects × in C++, C, Python, JavaScript, Rust, Java, Objective-C, Swift, C#, GoLang, and Wolfram \U0001F50Dhttps://www.rfc1437.de/2026/03/05/unum-cloud-usearch-fast-open-source-search-clustering-engine-x-for-vectors-arbitrary-objects-x-in-c-c-python-javascript-rust-java-objective-c-swift-c-golang-and-wolfram/waybarrios/vllm-mlx: OpenAI and Anthropic compatible server for Apple Silicon.https://www.rfc1437.de/2026/03/02/waybarrios-vllm-mlx-openai-and-anthropic-compatible-server-for-apple-silicon/mlx-community/gemma-3-12b-it-4bit · Hugging Facehttps://www.rfc1437.de/2026/03/02/mlx-community-gemma-3-12b-it-4bit-hugging-face/Models.dev — An open-source database of AI modelshttps://www.rfc1437.de/2026/03/01/models-dev-an-open-source-database-of-ai-models/Ollamahttps://www.rfc1437.de/2026/03/01/ollama/mistralai/mistral-vibe: Minimal CLI coding agent by Mistralhttps://www.rfc1437.de/2026/02/28/mistralai-mistral-vibe-minimal-cli-coding-agent-by-mistral/AI Studio - Mistral AIhttps://www.rfc1437.de/2026/02/28/ai-studio-mistral-ai/ZK I Zettel 1 (1) - Niklas Luhmann-Archivhttps://www.rfc1437.de/2026/02/28/zk-i-zettel-1-1-niklas-luhmann-archiv/Agent UI Standards Multiply: MCP Apps and Google’s A2UI - Richard MacManushttps://www.rfc1437.de/2026/02/28/agent-ui-standards-multiply-mcp-apps-and-google-s-a2ui-richard-macmanus/cloudflare/cobweb: COBOL to WebAssembly compilerhttps://www.rfc1437.de/2026/02/27/cloudflare-cobweb-cobol-to-webassembly-compiler/Pyodidehttps://www.rfc1437.de/2026/02/27/pyodide/Drizzle ORM - Why Drizzle?https://www.rfc1437.de/2026/02/27/drizzle-orm-why-drizzle/A2UIhttps://www.rfc1437.de/2026/02/27/a2ui/Waggle Dancehttps://www.rfc1437.de/2026/02/23/waggle-dance/OpenCode | Der Open-Source AI-Coding-Agenthttps://www.rfc1437.de/2026/02/22/opencode-der-open-source-ai-coding-agent/Steve Yegge on Vibe Codinghttps://www.rfc1437.de/2026/02/22/steve-yegge-on-vibe-coding/bDS langsam benutzbarhttps://www.rfc1437.de/2026/02/22/neue-software-langsam-benutzbar/Blogging Desktop Serverhttps://www.rfc1437.de/2026/02/16/blogging-desktop-server/Schotten Totten 2https://www.rfc1437.de/2023/08/27/schotten-totten-2-board-game-boardgamegeek/Takhttps://www.rfc1437.de/2023/08/27/tak-board-game-boardgamegeek/In-depth tutorial: How to set up 2FA TOTP with KeepassXC, Aegis and Authy. | Linux.orghttps://www.rfc1437.de/2023/08/27/in-depth-tutorial-how-to-set-up-2fa-totp-with-keepassxc-aegis-and-authy-linux-org/Mal wieder auf Linux ...https://www.rfc1437.de/2023/08/19/mal-wieder-auf-linux/Autumn Leaveshttps://www.rfc1437.de/2022/11/11/autumn-leaves/Prime Time for Prime Slimehttps://www.rfc1437.de/2022/11/06/prime-time-for-prime-slime/Sweet, so sweethttps://www.rfc1437.de/2022/11/05/sweet-so-sweet/Kaalia of the Blasthttps://www.rfc1437.de/2022/11/05/kaalia-of-the-blast/Abdel, Agent of the Iron Thronehttps://www.rfc1437.de/2022/08/22/abdel-agent-of-the-iron-throne-commander-edh-agent-of-the-iron-throne-and-abdel-adrian-gorions-ward-deck-list-mtg-moxfield-an-mtg-deck-builder-site-for-magic-the-gathering/Dargo for the Lulzhttps://www.rfc1437.de/2021/01/14/dargo-for-the-lulz/Brettspielrunde - wie macht man das in Zeiten von Corona?https://www.rfc1437.de/2020/03/27/brettspielrunde-wie-macht-man-das-in-zeiten-von-corona/Jhoira, Scrap That! (Commander / EDH MTG Deck)https://www.rfc1437.de/2020/03/13/jhoira-scrap-that-commander-edh-mtg-deck/Rurik: Dawn of Kievhttps://www.rfc1437.de/2020/02/20/rurik-dawn-of-kiev/Bears on a Plane (Commander / EDH MTG Deck)https://www.rfc1437.de/2020/02/20/bears-on-a-plane-commander-edh-mtg-deck/Tin Elves (Commander / EDH MTG Deck)https://www.rfc1437.de/2019/11/08/tin-elves-commander-edh-mtg-deck/Wingspanhttps://www.rfc1437.de/2019/11/08/wingspan/Golos, Combo Pilgrim (Commander / EDH MTG Deck)https://www.rfc1437.de/2019/08/20/golos-combo-pilgrim-commander-edh-mtg-deck/Marvel Champions - Fantasy Flight Gameshttps://www.rfc1437.de/2019/08/02/marvel-champions-fantasy-flight-games/Pauper Comes to Paper | MAGIC: THE GATHERINGhttps://www.rfc1437.de/2019/06/28/pauper-comes-to-paper-magic-the-gathering/The London Mulligan | MAGIC: THE GATHERINGhttps://www.rfc1437.de/2019/06/03/the-london-mulligan-magic-the-gathering/A Force to be Reckoned With | Article by Jim Davishttps://www.rfc1437.de/2019/05/20/a-force-to-be-reckoned-with-article-by-jim-davis/May 20, 2019 Banned and Restricted Announcement | MAGIC: THE GATHERINGhttps://www.rfc1437.de/2019/05/20/may-20-2019-banned-and-restricted-announcement-magic-the-gathering/Metaowl is gonehttps://www.rfc1437.de/2019/04/25/metaowl-is-gone/Mythic Championship II Format and the London Mulligan Testhttps://www.rfc1437.de/2019/02/22/mythic-championship-ii-format-and-the-london-mulligan-test/The Ninth World: A Skillbuilding Game for Numenerahttps://www.rfc1437.de/2018/11/14/the-ninth-world-a-skillbuilding-game-for-numenera/Too Many Bones: Undertowhttps://www.rfc1437.de/2018/11/12/too-many-bones-undertow/Petrichorhttps://www.rfc1437.de/2018/11/10/petrichor/Architects of the West Kingdomhttps://www.rfc1437.de/2018/11/08/architects-of-the-west-kingdom/Iron Curtainhttps://www.rfc1437.de/2018/08/03/iron-curtain/Ethnoshttps://www.rfc1437.de/2018/08/03/ethnos/Renegadehttps://www.rfc1437.de/2018/06/27/renegade/One Deck Dungeon: Forest of Shadowshttps://www.rfc1437.de/2018/06/13/one-deck-dungeon-forest-of-shadows/Wars of Marcus Aurelius: Rome 170-180CEhttps://www.rfc1437.de/2018/06/12/wars-of-marcus-aurelius-rome-170-180ce/Fields of Greenhttps://www.rfc1437.de/2018/06/11/fields-of-green/Innovationhttps://www.rfc1437.de/2018/05/25/innovation/'Kernel memory leaking' Intel processor design flaw forces Linux, Windows redesign • The Registerhttps://www.rfc1437.de/2018/01/03/kernel-memory-leaking-intel-processor-design-flaw-forces-linux-windows-redesign-e2-80-a2-the-register/Codenames Duethttps://www.rfc1437.de/2017/11/25/codenames-duet/Battle Linehttps://www.rfc1437.de/2017/11/24/battle-line/Viticulture Essential Editionhttps://www.rfc1437.de/2017/11/23/viticulture-essential-edition/Godforsaken Scavengershttps://www.rfc1437.de/2017/11/22/godforsaken-scavengers/Azulhttps://www.rfc1437.de/2017/11/21/azul/Triplockhttps://www.rfc1437.de/2017/11/20/triplock/Nemo's War (second edition)https://www.rfc1437.de/2017/09/11/nemos-war-second-edition-board-game-boardgamegeek/The 7th Continenthttps://www.rfc1437.de/2017/08/14/the-7th-continent-board-game-boardgamegeek/The Godfather: Corleone''s Empirehttps://www.rfc1437.de/2017/08/11/the-godfather-corleones-empire/Comanchería: The Rise and Fall of the Comanche Empirehttps://www.rfc1437.de/2017/02/06/comancheria-the-rise-and-fall-of-the-comanche-empire/Between Two Citieshttps://www.rfc1437.de/2017/01/22/between-two-cities/Conflict of Heroes: Awakening the Bear! (second edition)https://www.rfc1437.de/2017/01/15/conflict-of-heroes-awakening-the-bear-second-edition/Pentaquarkhttps://www.rfc1437.de/2017/01/09/pentaquark/The Dukehttps://www.rfc1437.de/2017/01/01/the-duke/Mound Buildershttps://www.rfc1437.de/2016/11/22/mound-builders/Warhammer Quest: The Adventure Card Gamehttps://www.rfc1437.de/2016/11/06/warhammer-quest-the-adventure-card-game-board-game-boardgamegeek/Scythehttps://www.rfc1437.de/2016/11/06/scythe/51st State: Master Sethttps://www.rfc1437.de/2016/10/30/51st-state-master-set-board-game-boardgamegeek/Codenames: Pictureshttps://www.rfc1437.de/2016/10/18/codenames-pictures-board-game-boardgamegeek/Red7https://www.rfc1437.de/2016/10/16/red7/Mare Nostrum: Empireshttps://www.rfc1437.de/2016/09/11/mare-nostrum-empires/Wöchentliche Leselistehttps://www.rfc1437.de/2016/09/11/woechentliche-leseliste-72/Wöchentliche Leselistehttps://www.rfc1437.de/2016/09/04/woechentliche-leseliste-71/7 Wondershttps://www.rfc1437.de/2016/08/28/7-wonders-board-game-boardgamegeek/Wöchentliche Leselistehttps://www.rfc1437.de/2016/08/28/woechentliche-leseliste-70/Wöchentliche Leselistehttps://www.rfc1437.de/2016/08/21/woechentliche-leseliste-69/Slobad - Self-Mill/Eggs (Competitive) (Commander / EDH MTG Deck)https://www.rfc1437.de/2016/08/19/slobad-self-milleggs-competitive-commander-edh-mtg-deck/Wöchentliche Leselistehttps://www.rfc1437.de/2016/08/07/woechentliche-leseliste-68/Deckmaster: A MTG Variant Format by Jim Bowiehttps://www.rfc1437.de/2016/08/03/deckmaster-a-mtg-variant-format-by-jim-bowie/Wöchentliche Leselistehttps://www.rfc1437.de/2016/07/31/woechentliche-leseliste-67/Ohne Furcht und Adelhttps://www.rfc1437.de/2016/07/31/ohne-furcht-und-adel-board-game-boardgamegeek/Yomi Starter Set: Grave versus Jainahttps://www.rfc1437.de/2016/07/31/yomi-starter-set-grave-versus-jaina/Wöchentliche Leselistehttps://www.rfc1437.de/2016/07/24/woechentliche-leseliste-66/Wöchentliche Leselistehttps://www.rfc1437.de/2016/07/17/woechentliche-leseliste-65/Wöchentliche Leselistehttps://www.rfc1437.de/2016/07/10/woechentliche-leseliste-64/Leaving Earthhttps://www.rfc1437.de/2016/07/03/leaving-earth/Wöchentliche Leselistehttps://www.rfc1437.de/2016/07/03/woechentliche-leseliste-63/1775: Rebellionhttps://www.rfc1437.de/2016/06/26/1775-rebellion-board-game-boardgamegeek/Night of Manhttps://www.rfc1437.de/2016/06/25/night-of-man-board-game-boardgamegeek/Reinventing The Commander 2015 “Seize Control” Pre-Con, Part 2: It Seemed So Innocent… | GeneralDamageControlhttps://www.rfc1437.de/2016/06/23/reinventing-the-commander-2015-seize-control-pre-con-part-2-it-seemed-so-innocent-generaldamagecontrol/The Gallerist Review – A Masterpiece – Wolf's Gaming Bloghttps://www.rfc1437.de/2016/06/15/the-gallerist-review-a-masterpiece-wolfs-gaming-blog/Dawn of the Zeds (Third edition)https://www.rfc1437.de/2016/06/14/dawn-of-the-zeds-third-edition/UBportshttps://www.rfc1437.de/2016/06/07/ubports/Simmons Games: Napoleon’s Triumph Sample Gamehttps://www.rfc1437.de/2016/06/06/simmons-games-napoleons-triumph-sample-game/Greenlandhttps://www.rfc1437.de/2016/06/03/greenland-board-game-boardgamegeek/1775: Rebellionhttps://www.rfc1437.de/2016/05/29/1775-rebellion/Wöchentliche Leselistehttps://www.rfc1437.de/2016/05/22/woechentliche-leseliste-62/Wöchentliche Leselistehttps://www.rfc1437.de/2016/05/08/woechentliche-leseliste-61/W1815https://www.rfc1437.de/2016/05/02/w1815-board-game-boardgamegeek/Wöchentliche Leselistehttps://www.rfc1437.de/2016/05/01/woechentliche-leseliste-60/Ohne Display: Leica M-D ist eine analoge Digitalkamera - Golem.dehttps://www.rfc1437.de/2016/04/29/ohne-display-leica-m-d-ist-eine-analoge-digitalkamera-golem-de/Wöchentliche Leselistehttps://www.rfc1437.de/2016/04/24/woechentliche-leseliste-59/USS Macon (ZRS-5) – Wikipediahttps://www.rfc1437.de/2016/04/22/uss-macon-zrs-5-wikipedia/From the Windlord’s Eyrie: Deck Tech – Wielders of the Threehttps://www.rfc1437.de/2016/04/22/from-the-windlords-eyrie-deck-tech-wielders-of-the-three/Wöchentliche Leselistehttps://www.rfc1437.de/2016/04/17/woechentliche-leseliste-58/Wöchentliche Leselistehttps://www.rfc1437.de/2016/04/10/woechentliche-leseliste-57/Wöchentliche Leselistehttps://www.rfc1437.de/2016/03/20/woechentliche-leseliste-56/Wöchentliche Leselistehttps://www.rfc1437.de/2016/03/13/woechentliche-leseliste-55/Trickerion: Legends of Illusionhttps://www.rfc1437.de/2016/03/13/trickerion-legends-of-illusion-board-game-boardgamegeek/The Castles of Burgundy: The Card Gamehttps://www.rfc1437.de/2016/03/11/the-castles-of-burgundy-the-card-game-board-game-boardgamegeek/Wöchentliche Leselistehttps://www.rfc1437.de/2016/03/06/woechentliche-leseliste-54/Imperial Settlershttps://www.rfc1437.de/2016/03/05/imperial-settlers/Wöchentliche Leselistehttps://www.rfc1437.de/2016/02/28/woechentliche-leseliste-53/Wöchentliche Leselistehttps://www.rfc1437.de/2016/02/14/woechentliche-leseliste-52/Wir sind das Volk!https://www.rfc1437.de/2016/02/08/wir-sind-das-volk/Wöchentliche Leselistehttps://www.rfc1437.de/2016/02/07/woechentliche-leseliste-51/Wöchentliche Leselistehttps://www.rfc1437.de/2016/01/31/woechentliche-leseliste-50/Hoplomachus: Originshttps://www.rfc1437.de/2016/01/31/hoplomachus-origins-board-game-boardgamegeek/Wir sind das Volk!https://www.rfc1437.de/2016/01/31/wir-sind-das-volk-board-game-boardgamegeek/zeromq/netmq: A 100% native C# implementation of ZeroMQ for .NEThttps://www.rfc1437.de/2016/01/25/zeromqnetmq-a-100-native-c-implementation-of-zeromq-for-net/Wöchentliche Leselistehttps://www.rfc1437.de/2016/01/24/woechentliche-leseliste-49/Cuba Librehttps://www.rfc1437.de/2016/01/24/cuba-libre/Sentinels of the Multiversehttps://www.rfc1437.de/2016/01/20/sentinels-of-the-multiverse-3/Hostage Negotiatorhttps://www.rfc1437.de/2016/01/15/hostage-negotiator-board-game-boardgamegeek/Soviet Dawnhttps://www.rfc1437.de/2016/01/08/soviet-dawn/Junior General Home Pagehttps://www.rfc1437.de/2016/01/04/junior-general-home-page/Wöchentliche Leselistehttps://www.rfc1437.de/2016/01/03/woechentliche-leseliste-48/Polis: Fight for the Hegemonyhttps://www.rfc1437.de/2015/12/22/polis-fight-for-the-hegemony-board-game-boardgamegeek/Die Macedonierhttps://www.rfc1437.de/2015/12/21/die-macedonier/Great Battles of History: Deluxe Alexanderhttps://www.rfc1437.de/2015/12/21/great-battles-of-history-deluxe-alexander/Wöchentliche Leselistehttps://www.rfc1437.de/2015/12/20/woechentliche-leseliste-47/Wöchentliche Leselistehttps://www.rfc1437.de/2015/11/22/woechentliche-leseliste-46/Mage Knight Board Gamehttps://www.rfc1437.de/2015/11/17/mage-knight-board-game/Wöchentliche Leselistehttps://www.rfc1437.de/2015/11/15/woechentliche-leseliste-45/7 Wonders: Duelhttps://www.rfc1437.de/2015/11/08/7-wonders-duel-board-game-boardgamegeek/Tides of Timehttps://www.rfc1437.de/2015/11/07/tides-of-time-board-game-boardgamegeek/The Lord of the Rings: The Card Gamehttps://www.rfc1437.de/2015/11/06/the-lord-of-the-rings-the-card-game-board-game-boardgamegeek-12/The Galleristhttps://www.rfc1437.de/2015/11/03/the-gallerist/The Golden Ageshttps://www.rfc1437.de/2015/11/02/the-golden-ages-board-game-boardgamegeek/Wöchentliche Leselistehttps://www.rfc1437.de/2015/11/01/woechentliche-leseliste-44/Progress: Evolution of Technologyhttps://www.rfc1437.de/2015/10/26/progress-evolution-of-technology-4/Wöchentliche Leselistehttps://www.rfc1437.de/2015/10/25/woechentliche-leseliste-43/Why Twitter’s Dying (And What You Can Learn From It) — Bad Words — Mediumhttps://www.rfc1437.de/2015/10/16/why-twitters-dying-and-what-you-can-learn-from-it-bad-words-medium/Wöchentliche Leselistehttps://www.rfc1437.de/2015/10/11/woechentliche-leseliste-42/The Lord of the Ice Gardenhttps://www.rfc1437.de/2015/10/08/the-lord-of-the-ice-garden/The Night Larry Wall Unveiled Perl 6 | 10 Zen Monkeyshttps://www.rfc1437.de/2015/10/07/the-night-larry-wall-unveiled-perl-6-10-zen-monkeys/Hero Forge Custom Miniatureshttps://www.rfc1437.de/2015/09/21/hero-forge-custom-miniatures/Jaipurhttps://www.rfc1437.de/2015/09/20/jaipur/Dungeon Dicehttps://www.rfc1437.de/2015/09/17/dungeon-dice/The Golden Ageshttps://www.rfc1437.de/2015/09/14/the-golden-ages/Progress: Evolution of Technologyhttps://www.rfc1437.de/2015/09/13/progress-evolution-of-technology-3/Wöchentliche Leselistehttps://www.rfc1437.de/2015/09/13/woechentliche-leseliste-41/Pergamonhttps://www.rfc1437.de/2015/09/07/pergamon/Wöchentliche Leselistehttps://www.rfc1437.de/2015/09/06/woechentliche-leseliste-40/Wöchentliche Leselistehttps://www.rfc1437.de/2015/08/30/woechentliche-leseliste-39/Haskell for Machttps://www.rfc1437.de/2015/08/26/haskell-for-mac/Kashgar: Händler der Seidenstraßehttps://www.rfc1437.de/2015/08/23/kashgar-haendler-der-seidenstrasse/Wöchentliche Leselistehttps://www.rfc1437.de/2015/08/16/woechentliche-leseliste-38/Wöchentliche Leselistehttps://www.rfc1437.de/2015/08/09/woechentliche-leseliste-37/Pandemic: The Curehttps://www.rfc1437.de/2015/08/07/pandemic-the-cure/Wöchentliche Leselistehttps://www.rfc1437.de/2015/08/02/woechentliche-leseliste-36/The Decktet Wikihttps://www.rfc1437.de/2015/07/31/the-decktet-wiki/The Lord of the Rings: The Card Gamehttps://www.rfc1437.de/2015/07/29/the-lord-of-the-rings-the-card-game-3/VivaJava: The Coffee Game: The Dice Gamehttps://www.rfc1437.de/2015/07/25/vivajava-the-coffee-game-the-dice-game/Cruel Necessityhttps://www.rfc1437.de/2015/07/22/cruel-necessity/San Juanhttps://www.rfc1437.de/2015/07/21/san-juan-2/Wöchentliche Leselistehttps://www.rfc1437.de/2015/07/19/woechentliche-leseliste-35/Race for the Galaxyhttps://www.rfc1437.de/2015/07/19/race-for-the-galaxy/Space Hulk: Death Angel – The Card Gamehttps://www.rfc1437.de/2015/07/14/space-hulk-death-angel-the-card-game/Progress: Evolution of Technologyhttps://www.rfc1437.de/2015/07/13/progress-evolution-of-technology-2/Koken is for sale and looking for a new home - Koken bloghttps://www.rfc1437.de/2015/07/09/koken-is-for-sale-and-looking-for-a-new-home-koken-blog/Warfighter: The Tactical Special Forces Card Gamehttps://www.rfc1437.de/2015/06/20/warfighter-the-tactical-special-forces-card-game/Wöchentliche Leselistehttps://www.rfc1437.de/2015/06/14/woechentliche-leseliste-34/Progress: Evolution of Technologyhttps://www.rfc1437.de/2015/06/07/progress-evolution-of-technology/Neulich im Internethttps://www.rfc1437.de/2015/06/05/neulich-im-internet-13/Nations: The Dice Gamehttps://www.rfc1437.de/2015/06/04/nations-the-dice-game/The Lord of the Rings: The Card Gamehttps://www.rfc1437.de/2015/05/30/the-lord-of-the-rings-the-card-game-2/Tour de Francehttps://www.rfc1437.de/2015/05/30/tour-de-france/Assault on Doomrockhttps://www.rfc1437.de/2015/05/29/assault-on-doomrock/Pathfinder Adventure Card Game: Rise of the Runelords – Base Sethttps://www.rfc1437.de/2015/05/29/pathfinder-adventure-card-game-rise-of-the-runelords-base-set/Wöchentliche Leselistehttps://www.rfc1437.de/2015/05/17/woechentliche-leseliste-33/Fridayhttps://www.rfc1437.de/2015/05/11/friday/The Lord of the Rings: The Card Gamehttps://www.rfc1437.de/2015/05/06/the-lord-of-the-rings-the-card-game/Schloss Nordkirchenhttps://www.rfc1437.de/2015/05/03/schloss-nordkirchen-2/Rieselfelderhttps://www.rfc1437.de/2015/05/01/rieselfelder-2015/Shadowrifthttps://www.rfc1437.de/2015/04/26/shadowrift-board-game-boardgamegeek/Shadow of the Elder Godshttps://www.rfc1437.de/2015/04/18/shadow-of-the-elder-gods-board-game-boardgamegeek/Lost Legacyhttps://www.rfc1437.de/2015/04/16/lost-legacy-board-game-boardgamegeek/Sentinels of the Multiversehttps://www.rfc1437.de/2015/04/14/sentinels-of-the-multiverse-board-game-boardgamegeek-6/A Call to Arms - Fantasy Flight Gameshttps://www.rfc1437.de/2015/04/14/a-call-to-arms-fantasy-flight-games/RedJak's Automated Overlord Variant | Descent: Journeys in the Dark (Second Edition) | BoardGameGeekhttps://www.rfc1437.de/2015/04/12/redjaks-automated-overlord-variant-descent-journeys-in-the-dark-second-edition-boardgamegeek/The Lord of the Rings: The Card Gamehttps://www.rfc1437.de/2015/04/12/the-lord-of-the-rings-the-card-game-board-game-boardgamegeek-11/Waggle Dancehttps://www.rfc1437.de/2015/04/11/waggle-dance-board-game-boardgamegeek-8/Paperbackhttps://www.rfc1437.de/2015/04/06/paperback-board-game-boardgamegeek-4/Paperbackhttps://www.rfc1437.de/2015/04/04/paperback-board-game-boardgamegeek-3/Paperbackhttps://www.rfc1437.de/2015/04/04/paperback-board-game-boardgamegeek-2/Die Legenden von Andor: Der Sternenschildhttps://www.rfc1437.de/2015/04/04/die-legenden-von-andor-der-sternenschild-board-game-boardgamegeek/Wöchentliche Leselistehttps://www.rfc1437.de/2015/03/29/woechentliche-leseliste-32/Why Go’s design is a disservice to intelligent programmers | Nomad Softwarehttps://www.rfc1437.de/2015/03/26/why-gos-design-is-a-disservice-to-intelligent-programmers-nomad-software/Wöchentliche Leselistehttps://www.rfc1437.de/2015/03/22/woechentliche-leseliste-31/Paperbackhttps://www.rfc1437.de/2015/03/21/paperback-board-game-boardgamegeek/Sentinels of the Multiversehttps://www.rfc1437.de/2015/03/17/sentinels-of-the-multiverse-board-game-boardgamegeek-5/Waggle Dancehttps://www.rfc1437.de/2015/03/16/waggle-dance-board-game-boardgamegeek-7/Mental Meta 2: Every Day I’m Shuffling | Dojo Of Lieshttps://www.rfc1437.de/2015/03/16/mental-meta-2-every-day-im-shuffling-dojo-of-lies/San Juanhttps://www.rfc1437.de/2015/03/15/san-juan-board-game-boardgamegeek-3/Wöchentliche Leselistehttps://www.rfc1437.de/2015/03/15/woechentliche-leseliste-30/Thunderstone Advance: Towers of Ruinhttps://www.rfc1437.de/2015/03/14/thunderstone-advance-towers-of-ruin-board-game-boardgamegeek/Race for the Galaxyhttps://www.rfc1437.de/2015/03/14/race-for-the-galaxy-board-game-boardgamegeek-4/The Lord of the Rings: The Card Gamehttps://www.rfc1437.de/2015/03/14/the-lord-of-the-rings-the-card-game-board-game-boardgamegeek-10/Race for the Galaxyhttps://www.rfc1437.de/2015/03/09/race-for-the-galaxy-board-game-boardgamegeek-3/Race for the Galaxyhttps://www.rfc1437.de/2015/03/06/race-for-the-galaxy-board-game-boardgamegeek-2/The Lord of the Rings: The Card Gamehttps://www.rfc1437.de/2015/03/03/the-lord-of-the-rings-the-card-game-board-game-boardgamegeek-9/Race for the Galaxyhttps://www.rfc1437.de/2015/03/02/race-for-the-galaxy-board-game-boardgamegeek/San Juanhttps://www.rfc1437.de/2015/03/01/san-juan-board-game-boardgamegeek-2/Wöchentliche Leselistehttps://www.rfc1437.de/2015/03/01/woechentliche-leseliste-29/Onirimhttps://www.rfc1437.de/2015/02/27/onirim-board-game-boardgamegeek/Download Free Smartwatch Faces for Moto 360, LG G Series, Samsung Gear, Sony SmartWatch 3 and Asus ZenWatch | FaceRepohttps://www.rfc1437.de/2015/02/23/download-free-smartwatch-faces-for-moto-360-lg-g-series-samsung-gear-sony-smartwatch-3-and-asus-zenwatch-facerepo/start [Watchmaker Wiki]https://www.rfc1437.de/2015/02/23/start-watchmaker-wiki/Valley of the Kingshttps://www.rfc1437.de/2015/02/22/valley-of-the-kings-board-game-boardgamegeek/The Lord of the Rings: The Card Gamehttps://www.rfc1437.de/2015/02/17/the-lord-of-the-rings-the-card-game-board-game-boardgamegeek-8/Waggle Dancehttps://www.rfc1437.de/2015/02/15/waggle-dance-board-game-boardgamegeek-6/Wöchentliche Leselistehttps://www.rfc1437.de/2015/02/15/woechentliche-leseliste-28/The Lord of the Rings: The Card Gamehttps://www.rfc1437.de/2015/02/12/the-lord-of-the-rings-the-card-game-board-game-boardgamegeek-7/The Lord of the Rings: The Card Gamehttps://www.rfc1437.de/2015/02/10/the-lord-of-the-rings-the-card-game-board-game-boardgamegeek-6/Sentinels of the Multiversehttps://www.rfc1437.de/2015/02/08/sentinels-of-the-multiverse-board-game-boardgamegeek-4/The Lord of the Rings: The Card Gamehttps://www.rfc1437.de/2015/02/08/the-lord-of-the-rings-the-card-game-board-game-boardgamegeek-5/Robinson Crusoe: Adventure on the Cursed Islandhttps://www.rfc1437.de/2015/02/08/robinson-crusoe-adventure-on-the-cursed-island-board-game-boardgamegeek/Sentinels of the Multiversehttps://www.rfc1437.de/2015/02/07/sentinels-of-the-multiverse-board-game-boardgamegeek-3/Sentinels of the Multiversehttps://www.rfc1437.de/2015/02/03/sentinels-of-the-multiverse-board-game-boardgamegeek-2/Waggle Dancehttps://www.rfc1437.de/2015/02/02/waggle-dance-board-game-boardgamegeek-5/Legends of Andorhttps://www.rfc1437.de/2015/02/02/legends-of-andor-board-game-boardgamegeek/Waggle Dancehttps://www.rfc1437.de/2015/01/31/waggle-dance-board-game-boardgamegeek-4/Gears of War: The Board Game – Custom COG Pack 1 | CelJadedhttps://www.rfc1437.de/2015/01/31/gears-of-war-the-board-game-custom-cog-pack-1-celjaded/Sentinels of the Multiversehttps://www.rfc1437.de/2015/01/31/sentinels-of-the-multiverse-board-game-boardgamegeek/One Zero Onehttps://www.rfc1437.de/2015/01/29/one-zero-one-board-game-boardgamegeek/Merkels Satz "Islam gehört zu Deutschland": De Maizière betont Pflichten für Islam | tagesschau.dehttps://www.rfc1437.de/2015/01/26/merkels-satz-islam-gehoert-zu-deutschland-de-maiziere-betont-pflichten-fuer-islam-tagesschau-de/The Lord of the Rings: The Card Gamehttps://www.rfc1437.de/2015/01/25/the-lord-of-the-rings-the-card-game-board-game-boardgamegeek-4/Elder Signhttps://www.rfc1437.de/2015/01/25/elder-sign-board-game-boardgamegeek/Forbidden Deserthttps://www.rfc1437.de/2015/01/25/forbidden-desert-board-game-boardgamegeek-2/Wöchentliche Leselistehttps://www.rfc1437.de/2015/01/25/woechentliche-leseliste-27/San Juanhttps://www.rfc1437.de/2015/01/25/san-juan-board-game-boardgamegeek/January 19, 2015, Banned and Restricted Announcement | MAGIC: THE GATHERINGhttps://www.rfc1437.de/2015/01/22/january-19-2015-banned-and-restricted-announcement-magic-the-gathering/Update on OS Support for Next Version of Lightroomhttps://www.rfc1437.de/2015/01/22/update-on-os-support-for-next-version-of-lightroom/COLOR AND LIGHT IN NATURE Homepage: Rainbows, haloes, mirages, colors in the sky & water and more!https://www.rfc1437.de/2015/01/22/color-and-light-in-nature-homepage-rainbows-haloes-mirages-colors-in-the-sky-water-and-more/The Lord of the Rings: The Card Gamehttps://www.rfc1437.de/2015/01/20/the-lord-of-the-rings-the-card-game-board-game-boardgamegeek-3/Super Fantasy - Angriff der hässlichen Schnauzenhttps://www.rfc1437.de/2015/01/20/super-fantasy-angriff-der-haesslichen-schnauzen/Waggle Dancehttps://www.rfc1437.de/2015/01/20/waggle-dance-board-game-boardgamegeek-3/Wöchentliche Leselistehttps://www.rfc1437.de/2015/01/18/woechentliche-leseliste-26/Sentinels of the Multiversehttps://www.rfc1437.de/2015/01/17/sentinels-of-the-multiverse-2/Waggle Dancehttps://www.rfc1437.de/2015/01/15/waggle-dance-board-game-boardgamegeek-2/Shadows of Brimstone: City of the Ancientshttps://www.rfc1437.de/2015/01/15/shadows-of-brimstone-city-of-the-ancients/The Lord of the Rings: The Card Gamehttps://www.rfc1437.de/2015/01/14/the-lord-of-the-rings-the-card-game-board-game-boardgamegeek-2/Nach Anschlägen in Paris: Premier Cameron will wirksame Verschlüsselung verbieten - Golem.dehttps://www.rfc1437.de/2015/01/13/nach-anschlaegen-in-paris-premier-cameron-will-wirksame-verschluesselung-verbieten-golem-de/Waggle Dancehttps://www.rfc1437.de/2015/01/12/waggle-dance-board-game-boardgamegeek/What is this all about? | Space Empires 4X - a board game by Jim Krohnhttps://www.rfc1437.de/2015/01/12/what-is-this-all-about-space-empires-4x-a-board-game-by-jim-krohn/Space Empires: 4X - Alien Players Toolhttps://www.rfc1437.de/2015/01/12/space-empires-4x-alien-players-tool/Gears of War: The Board Gamehttps://www.rfc1437.de/2015/01/11/gears-of-war-the-board-game-board-game-boardgamegeek/Wöchentliche Leselistehttps://www.rfc1437.de/2015/01/11/woechentliche-leseliste-25/Forbidden Deserthttps://www.rfc1437.de/2015/01/10/forbidden-desert-board-game-boardgamegeek/The Lord of the Rings: The Card Gamehttps://www.rfc1437.de/2015/01/09/the-lord-of-the-rings-the-card-game-board-game-boardgamegeek/xslt workbenchhttps://www.rfc1437.de/2015/01/07/xslt-workbench/sharplispers/cormanlisphttps://www.rfc1437.de/2015/01/05/sharplisperscormanlisp/Neulich im Internethttps://www.rfc1437.de/2015/01/05/neulich-im-internet-12/Galaxy Defendershttps://www.rfc1437.de/2015/01/05/galaxy-defenders/Years End on Gran Canariahttps://www.rfc1437.de/2015/01/04/years-end-on-gran-canaria/Sentinels of the Multiversehttps://www.rfc1437.de/2015/01/02/sentinels-of-the-multiverse/Ascension: Chronicle of the Godslayerhttps://www.rfc1437.de/2015/01/01/ascension-chronicle-of-the-godslayer/San Juanhttps://www.rfc1437.de/2015/01/01/san-juan/Wöchentliche Leselistehttps://www.rfc1437.de/2014/12/07/woechentliche-leseliste-24/Wöchentliche Leselistehttps://www.rfc1437.de/2014/11/30/woechentliche-leseliste-23/Wöchentliche Leselistehttps://www.rfc1437.de/2014/11/16/woechentliche-leseliste-22/Wöchentliche Leselistehttps://www.rfc1437.de/2014/11/09/woechentliche-leseliste-21/Wöchentliche Leselistehttps://www.rfc1437.de/2014/10/26/woechentliche-leseliste-20/Wöchentliche Leselistehttps://www.rfc1437.de/2014/10/19/woechentliche-leseliste-19/Wöchentliche Leselistehttps://www.rfc1437.de/2014/10/12/woechentliche-leseliste-18/magefree/magehttps://www.rfc1437.de/2014/09/22/magefreemage/Wöchentliche Leselistehttps://www.rfc1437.de/2014/08/10/woechentliche-leseliste-17/A Brief History of Wiz-War https://www.rfc1437.de/2014/07/29/a-brief-history-of-wiz-war/Wöchentliche Leselistehttps://www.rfc1437.de/2014/07/27/woechentliche-leseliste-16/Alderac Entertainment Group • View topic - [Thunderstone] Variant - Cutthroats & Sellswordshttps://www.rfc1437.de/2014/07/26/alderac-entertainment-group-e2-80-a2-view-topic-thunderstone-variant-cutthroats-sellswords/Deckmaster: A MTG Variant Format by Jim Bowie | mtgUK - UK Magic The Gathering Community and Strategyhttps://www.rfc1437.de/2014/07/22/deckmaster-a-mtg-variant-format-by-jim-bowie-mtguk-uk-magic-the-gathering-community-and-strategy/Roadtrip through Sloveniahttps://www.rfc1437.de/2014/07/22/roadtrip-through-slovenia/Wöchentliche Leselistehttps://www.rfc1437.de/2014/06/29/woechentliche-leseliste-15/Schloss Corveyhttps://www.rfc1437.de/2014/06/22/schloss-corvey/Wöchentliche Leselistehttps://www.rfc1437.de/2014/06/22/woechentliche-leseliste-14/Wöchentliche Leselistehttps://www.rfc1437.de/2014/06/15/woechentliche-leseliste-13/Wöchentliche Leselistehttps://www.rfc1437.de/2014/06/08/woechentliche-leseliste-12/End-to-End: Google will mit Javascript verschlüsseln - Golem.dehttps://www.rfc1437.de/2014/06/04/end-to-end-google-will-mit-javascript-verschluesseln-golem-de/Getting started in legacy- Legacy on a Budget - Legacy Type 1.5 - The Game - MTG Salvation Forums - MTG Salvationhttps://www.rfc1437.de/2014/06/04/getting-started-in-legacy-legacy-on-a-budget-legacy-type-1-5-the-game-mtg-salvation-forums-mtg-salvation/Micro Python - Python for microcontrollershttps://www.rfc1437.de/2014/06/03/micro-python-python-for-microcontrollers/High Fidelityhttps://www.rfc1437.de/2014/06/03/high-fidelity/JetDrive™ 500/520/720-Willkommen auf der Transcend Webseitehttps://www.rfc1437.de/2014/06/03/jetdrive-500520720-willkommen-auf-der-transcend-webseite/Warhammer Diskwars Deutschhttps://www.rfc1437.de/2014/06/02/warhammer-diskwars-deutsch/Wöchentliche Leselistehttps://www.rfc1437.de/2014/06/01/woechentliche-leseliste-11/EU-Chefposten: Parlament will Juncker, Cameron will ihn nicht | tagesschau.dehttps://www.rfc1437.de/2014/05/28/eu-chefposten-parlament-will-juncker-cameron-will-ihn-nicht-tagesschau-de/Generalbundesanwalt: Kein Ermittlungsverfahren in Deutschland zur NSA-Überwachung - Golem.dehttps://www.rfc1437.de/2014/05/28/generalbundesanwalt-kein-ermittlungsverfahren-in-deutschland-zur-nsa-ueberwachung-golem-de/Wöchentliche Leselistehttps://www.rfc1437.de/2014/05/25/woechentliche-leseliste-10/click - command line miniframeworkhttps://www.rfc1437.de/2014/05/22/click-command-line-miniframework/Wöchentliche Leselistehttps://www.rfc1437.de/2014/05/18/woechentliche-leseliste-9/Leiden - Hugos House of Photo Horrorhttps://www.rfc1437.de/2014/05/10/leiden-hugos-house-of-photo-horror/Wöchentliche Leselistehttps://www.rfc1437.de/2014/05/04/woechentliche-leseliste-8/Wöchentliche Leselistehttps://www.rfc1437.de/2014/04/28/woechentliche-leseliste-7/Tails - Über Tailshttps://www.rfc1437.de/2014/04/22/tails-ueber-tails/Wöchentliche Leselistehttps://www.rfc1437.de/2014/04/15/woechentliche-leseliste-6/Schleuse, Dyckburg und Handorfhttps://www.rfc1437.de/2014/04/13/schleuse-dyckburg-und-handorf/Marktbesuchhttps://www.rfc1437.de/2014/04/13/marktbesuch/Neulich im Internethttps://www.rfc1437.de/2014/04/04/neulich-im-internet-11/.NET Compiler Platform "Roslyn" - Documentationhttps://www.rfc1437.de/2014/04/04/net-compiler-platform-roslyn-documentation/2.0 Series — IPython 2.0.0 documentationhttps://www.rfc1437.de/2014/04/02/2-0-series-ipython-2-0-0-documentation/reclaim hugo | Collected stuff from social networkshttps://www.rfc1437.de/2014/03/20/reclaim-hugo-collected-stuff-from-social-networks/TheKolWikihttps://www.rfc1437.de/2014/03/12/thekolwiki/The Kingdom of Loathinghttps://www.rfc1437.de/2014/03/11/the-kingdom-of-loathing/Britischer Geheimdienst: #GCHQ #stasi #zersetzung - Golem.dehttps://www.rfc1437.de/2014/02/26/britischer-geheimdienst-gchq-stasi-zersetzung-golem-de/OpenBuilds OX CNC Machine | OpenBuildshttps://www.rfc1437.de/2014/02/26/openbuilds-ox-cnc-machine-openbuilds/Microsoft öffnet .NET-Quellcode - Pro-Linuxhttps://www.rfc1437.de/2014/02/26/microsoft-oeffnet-net-quellcode-pro-linux/MTG Deckbuilder / Cheeky_Hustler Decklinghttps://www.rfc1437.de/2014/02/25/mtg-deckbuilder-cheeky-hustler-deckling/Welcome to RISC OS Pi in Documentationhttps://www.rfc1437.de/2014/01/31/welcome-to-risc-os-pi-in-documentation/The Julia Languagehttps://www.rfc1437.de/2014/01/27/the-julia-language/Wöchentliche Leselistehttps://www.rfc1437.de/2014/01/24/woechentliche-leseliste-5/Wöchentliche Leselistehttps://www.rfc1437.de/2014/01/16/woechentliche-leseliste-4/kachayev/fn.py · GitHubhttps://www.rfc1437.de/2014/01/16/kachayevfn-py-c2-b7-github/OpenCamerahttps://www.rfc1437.de/2014/01/16/opencamera/Will You Fight the Hand that Feeds? : Daily MTG : Magic: The Gatheringhttps://www.rfc1437.de/2014/01/16/will-you-fight-the-hand-that-feeds-daily-mtg-magic-the-gathering/Mogis, God of Slaughter by Jarvis Yu | GatheringMagic.com - Magic: The Gathering Websitehttps://www.rfc1437.de/2014/01/14/mogis-god-of-slaughter-by-jarvis-yu-gatheringmagic-com-magic-the-gathering-website/Port 32764: Cisco bestätigt Backdoor in Routern - Golem.dehttps://www.rfc1437.de/2014/01/14/port-32764-cisco-bestaetigt-backdoor-in-routern-golem-de/Google will Hausgeräte-Markt erobern | tagesschau.dehttps://www.rfc1437.de/2014/01/14/google-will-hausgeraete-markt-erobern-tagesschau-de/TeleHash / JSON + UDP + DHT = Freedomhttps://www.rfc1437.de/2014/01/14/telehash-json-udp-dht-freedom/Self Mallard 4.5.0 released | Selfhttps://www.rfc1437.de/2014/01/13/self-mallard-4-5-0-released-self/Ori File Systemhttps://www.rfc1437.de/2014/01/07/ori-file-system/Magic for Funhttps://www.rfc1437.de/2014/01/06/magic-for-fun/COMMIE BOX MTG: Magic the Gathering formathttps://www.rfc1437.de/2014/01/04/commie-box-mtg-magic-the-gathering-format/The Stack and Backhttps://www.rfc1437.de/2014/01/03/the-stack-and-back/Hiltenfingen und Landsberghttps://www.rfc1437.de/2013/12/24/hiltenfingen-und-landsberg/Un peu de math...: Installing and using Sage just got even easier.https://www.rfc1437.de/2013/12/19/un-peu-de-math-installing-and-using-sage-just-got-even-easier/Hands on Sailfish OS: Intelligenter Baukasten zum Basteln und Portieren - Golem.dehttps://www.rfc1437.de/2013/12/18/hands-on-sailfish-os-intelligenter-baukasten-zum-basteln-und-portieren-golem-de/WordPress › WordPress 3.8 “Parker”https://www.rfc1437.de/2013/12/13/wordpress-wordpress-3-8-parker/Plug-ins for Adobe Photoshop Lightroom | Adobe Labshttps://www.rfc1437.de/2013/12/13/plug-ins-for-adobe-photoshop-lightroom-adobe-labs-2/Urlaub auf Madeirahttps://www.rfc1437.de/2013/12/09/madeira-urlaub/Aussen Hui, innen Pfuihttps://www.rfc1437.de/2013/12/09/aussen-hui-innen-pfui/Bublcam: 360º Camera Technology for Everyone by Bubl Technology Inc. — Kickstarterhttps://www.rfc1437.de/2013/11/11/bublcam-360o-camera-technology-for-everyone-by-bubl-technology-inc-kickstarter/Fishing in Modern: Top 64 at Grand Prix Antwerp by Raphael Levy - Magic the Gathering TCG Articlehttps://www.rfc1437.de/2013/11/06/fishing-in-modern-top-64-at-grand-prix-antwerp-by-raphael-levy-magic-the-gathering-tcg-article/Sony A7R Hands-Onhttps://www.rfc1437.de/2013/10/17/sony-a7r-hands-on/Google Apps Script — Google Developershttps://www.rfc1437.de/2013/10/17/google-apps-script-google-developers/Roundcube - Free and Open Source Webmail Softwarehttps://www.rfc1437.de/2013/10/15/roundcube-free-and-open-source-webmail-software/Drawing Attention : Daily MTG : Magic: The Gatheringhttps://www.rfc1437.de/2013/10/14/drawing-attention-daily-mtg-magic-the-gathering/Scala Implicits - Not to be fearedhttps://www.rfc1437.de/2013/10/11/scala-implicits-not-to-be-feared/lihaoyi/macropyhttps://www.rfc1437.de/2013/09/24/lihaoyimacropy/Tokens zum Ausdruckenhttps://www.rfc1437.de/2013/09/23/tokens-zum-ausdrucken/Welcome | Magic Set Editorhttps://www.rfc1437.de/2013/09/23/welcome-magic-set-editor/Magic Plugin for LackeyCCGhttps://www.rfc1437.de/2013/09/21/magic-plugin-for-lackeyccg/LackeyCCG - Play any CCG Online, or make your own. Mac or PC.https://www.rfc1437.de/2013/09/21/lackeyccg-play-any-ccg-online-or-make-your-own-mac-or-pc/Zim - a desktop wikihttps://www.rfc1437.de/2013/09/19/zim-a-desktop-wiki/FriCAS - an advanced CAShttps://www.rfc1437.de/2013/09/18/fricas-an-advanced-cas/Python Data Analysis Library — pandas: Python Data Analysis Libraryhttps://www.rfc1437.de/2013/09/18/python-data-analysis-library-pandas-python-data-analysis-library/Neulich im Internethttps://www.rfc1437.de/2013/09/17/neulich-im-internet-10/Neulich im Internet (Schwarzweiß-Ausgabe)https://www.rfc1437.de/2013/09/17/neulich-im-internet-schwarzweiss-ausgabe/Bundesregierung: "Datenschützer nicht für NSA-Skandal zuständig" - Golem.dehttps://www.rfc1437.de/2013/09/12/bundesregierung-datenschuetzer-nicht-fuer-nsa-skandal-zustaendig-golem-de/Freebasehttps://www.rfc1437.de/2013/09/11/freebase/wiki.dbpedia.org : Abouthttps://www.rfc1437.de/2013/09/11/wiki-dbpedia-org-about/Quepy: A Python framework to transform natural language questions to queries.https://www.rfc1437.de/2013/09/11/quepy-a-python-framework-to-transform-natural-language-questions-to-queries/Tweak Mode for Processinghttps://www.rfc1437.de/2013/09/11/tweak-mode-for-processing/You are Missing the Point of Promiseshttps://www.rfc1437.de/2013/09/02/youre-missing-the-point-of-promises/part-cw/lambdanativehttps://www.rfc1437.de/2013/08/30/part-cwlambdanative/[Gcl-devel] GCL 2.6.8 and 2.6.9 are releasedhttps://www.rfc1437.de/2013/08/30/gcl-devel-gcl-2-6-8-and-2-6-9-are-released/Anacondahttps://www.rfc1437.de/2013/08/28/anaconda/Meet RegExpBuilder: Verbal Expressions rich, older cousin - The Changeloghttps://www.rfc1437.de/2013/08/28/meet-regexpbuilder-verbal-expressions-rich-older-cousin-the-changelog/Trusted Computing: Bundesregierung warnt vor Windows 8 - Digitale Welt - Technologie - Wirtschaftswochehttps://www.rfc1437.de/2013/08/28/trusted-computing-bundesregierung-warnt-vor-windows-8-digitale-welt-technologie-wirtschaftswoche/Wöchentliche Leselistehttps://www.rfc1437.de/2013/08/26/woechentliche-leseliste-3/PyPy.js Update: A Proof-of-Concept JIThttps://www.rfc1437.de/2013/08/19/pypy-js-update-a-proof-of-concept-jit/How To Create Your Own Chrome Extensionshttps://www.rfc1437.de/2013/08/19/how-to-create-your-own-chrome-extensions/Wöchentliche Leselistehttps://www.rfc1437.de/2013/08/19/woechentliche-leseliste-2/Schneier on Security: NSA Surveillance and Mission Creephttps://www.rfc1437.de/2013/08/07/schneier-on-security-nsa-surveillance-and-mission-creep/Wöchentliche Leselistehttps://www.rfc1437.de/2013/08/06/woechentliche-leseliste/Forge - Slightly Magichttps://www.rfc1437.de/2013/08/04/forge-slightly-magic/Wöchentliche Leselistehttps://www.rfc1437.de/2013/07/29/wochentliche-leseliste-9/Pornwall: Britischer Pornofilter blockt auch andere Inhalte - Golem.dehttps://www.rfc1437.de/2013/07/29/pornwall-britischer-pornofilter-blockt-auch-andere-inhalte-golem-de/Verfassungsschutz-Chef: Keine Hinweise auf Spähaktionen | tagesschau.dehttps://www.rfc1437.de/2013/07/29/verfassungsschutz-chef-keine-hinweise-auf-spahaktionen-tagesschau-de/heuermh/leap-motion-processinghttps://www.rfc1437.de/2013/07/23/heuermhleap-motion-processing/mrzl/LeapMotionP5https://www.rfc1437.de/2013/07/23/mrzlleapmotionp5/Wöchentliche Leselistehttps://www.rfc1437.de/2013/07/22/wochentliche-leseliste-8/Wöchentliche Leselistehttps://www.rfc1437.de/2013/07/02/wochentliche-leseliste-7/Wöchentliche Leselistehttps://www.rfc1437.de/2013/07/02/wochentliche-leseliste-6/washort/parsleyhttps://www.rfc1437.de/2013/07/01/washortparsley/Neulich im Internet (Schwarzweiß-Ausgabe)https://www.rfc1437.de/2013/06/23/neulich-im-internet-schwarzweis-ausgabe-10/Neulich im Internethttps://www.rfc1437.de/2013/06/23/neulich-im-internet-9/Visiting Santorini - Hugos House of Photo Horrorhttps://www.rfc1437.de/2013/06/23/visiting-santorini-hugos-house-of-photo-horror/Review: The 2013 Ricoh GR digital V – Ming Thein | Photographerhttps://www.rfc1437.de/2013/05/31/review-the-2013-ricoh-gr-digital-v-ming-thein-photographer/lihaoyi/macropy · GitHubhttps://www.rfc1437.de/2013/05/17/lihaoyimacropy-c2-b7-github/Getting Started with Android Studio | Android Developershttps://www.rfc1437.de/2013/05/16/getting-started-with-android-studio-android-developers/Updated Contribhttps://www.rfc1437.de/2013/05/15/updated-contrib/Wöchentliche Leselistehttps://www.rfc1437.de/2013/05/06/wochentliche-leseliste-5/davazp/jscl · GitHubhttps://www.rfc1437.de/2013/04/29/davazpjscl-c2-b7-github/Wöchentliche Leselistehttps://www.rfc1437.de/2013/04/29/wochentliche-leseliste-4/Wöchentliche Leselistehttps://www.rfc1437.de/2013/04/23/wochentliche-leseliste-3/Chathead Basics « Piwaï.infohttps://www.rfc1437.de/2013/04/18/chathead-basics-piwai-info/Wöchentliche Leselistehttps://www.rfc1437.de/2013/04/14/wochentliche-leseliste-2/3D Printing with Nylon 618 filament in Tie-Dye colourshttps://www.rfc1437.de/2013/04/12/3d-printing-with-nylon-618-filament-in-tie-dye-colours/LiveCode Community Edition Overview | RunRevhttps://www.rfc1437.de/2013/04/11/livecode-community-edition-overview-runrev/Tutorial · alexander-yakushev/lein-droid Wikihttps://www.rfc1437.de/2013/04/11/tutorial-c2-b7-alexander-yakushevlein-droid-wiki/Wöchentliche Leselistehttps://www.rfc1437.de/2013/04/08/wochentliche-leseliste/Tiny Tiny RSS-Tutorial – Teil 1: Installation & Konfiguration › Michael Sonntaghttps://www.rfc1437.de/2013/04/02/tiny-tiny-rss-tutorial-teil-1-installation-konfiguration-michael-sonntag/Tiny Tiny RSShttps://www.rfc1437.de/2013/04/02/tiny-tiny-rss/Black and White - Hugos House of Photo Horrorhttps://www.rfc1437.de/2013/03/30/black-and-white-hugos-house-of-photo-horror/Jeffrey’s “Export to Google Drive” Lightroom Pluginhttps://www.rfc1437.de/2013/03/27/jeffreys-export-to-google-drive-lightroom-plugin/twotoasters/AndrOAuth · GitHubhttps://www.rfc1437.de/2013/03/26/twotoastersandroauth-c2-b7-github/Sim-on-a-Stickhttps://www.rfc1437.de/2013/03/25/sim-on-a-stick/Netzpolitische Hundstage in der SPD | Lummalandhttps://www.rfc1437.de/2013/03/22/netzpolitische-hundstage-in-der-spd-lummaland/Neulich im Internet (Schwarzweiß-Ausgabe)https://www.rfc1437.de/2013/03/22/neulich-im-internet-schwarzweis-ausgabe-9/Neulich im Internethttps://www.rfc1437.de/2013/03/22/neulich-im-internet-8/LiveCode Markdown converterhttps://www.rfc1437.de/2013/03/21/livecode-markdown-converter/OX Documents: Online-Office-Suite als Open Source - Golem.dehttps://www.rfc1437.de/2013/03/21/ox-documents-online-office-suite-als-open-source-golem-de/Robot-Will/Stino · GitHubhttps://www.rfc1437.de/2013/03/18/robot-willstino-c2-b7-github/EverythingServerUbuntu - Ryzom - Ryzom Core Development Sitehttps://www.rfc1437.de/2013/03/18/everythingserverubuntu-ryzom-ryzom-core-development-site/Vienna Callinghttps://www.rfc1437.de/2013/03/16/vienna-calling/samuelclay/NewsBlur · GitHubhttps://www.rfc1437.de/2013/03/15/samuelclaynewsblur-c2-b7-github/Connecting Arduino to Mathematica on Mac OS X with SerialIOhttps://www.rfc1437.de/2013/03/09/connecting-arduino-to-mathematica-on-mac-os-x-with-serialio/embedXcode - Homehttps://www.rfc1437.de/2013/03/08/embedxcode-home/Pushing the Limits of Self-Programming Artificial Intelligence | Primary Objectshttps://www.rfc1437.de/2013/03/06/pushing-the-limits-of-self-programming-artificial-intelligence-primary-objects/Desinformation: Mauer in Geiselhaft - taz.dehttps://www.rfc1437.de/2013/03/04/desinformation-mauer-in-geiselhaft-taz-de/Getting Started with nRF24L01+ on Arduino | maniacbughttps://www.rfc1437.de/2013/03/03/getting-started-with-nrf24l01-on-arduino-maniacbug/GT.Mhttps://www.rfc1437.de/2013/03/02/gt-m/mumpshttps://www.rfc1437.de/2013/03/02/mumps/Mumps/II MultiDimensional and Hierarchical Toolkithttps://www.rfc1437.de/2013/03/02/mumpsii-multidimensional-and-hierarchical-toolkit/Hugos House of Photo Horrorhttps://www.rfc1437.de/2013/02/27/hugos-house-of-photo-horror/Koken - Creative website publishinghttps://www.rfc1437.de/2013/02/27/koken-creative-website-publishing/Arduino Camera Shield | Arduino Based Camerahttps://www.rfc1437.de/2013/02/26/arduino-camera-shield-arduino-based-camera/Craft Camera by Coralie Gourguechon | mocovote.comhttps://www.rfc1437.de/2013/02/26/craft-camera-by-coralie-gourguechon-mocovote-com/Reprap development and further adventures in DIY 3D printing: Slic3r is Nicer - Part 1 - Settings and Extruder Calibrationhttps://www.rfc1437.de/2013/02/25/reprap-development-and-further-adventures-in-diy-3d-printing-slic3r-is-nicer-part-1-settings-and-extruder-calibration/PhysibleExchange - Popularhttps://www.rfc1437.de/2013/02/25/physibleexchange-popular/pcDuino arduino compatible headershttps://www.rfc1437.de/2013/02/20/pcduino-arduino-compatible-headers/pudb 2012.3 : CUI Debugger for Pythonhttps://www.rfc1437.de/2013/02/20/pudb-2012-3-cui-debugger-for-python/Reconstruct your world with ReconstructMehttps://www.rfc1437.de/2013/02/19/reconstruct-your-world-with-reconstructme/foosel/OctoPrint at devel · GitHubhttps://www.rfc1437.de/2013/02/19/fooseloctoprint-at-devel-c2-b7-github/usb-serial-for-android - Android USB host serial driver library for CDC, FTDI, Arduino and other devices. - Google Project Hostinghttps://www.rfc1437.de/2013/02/19/usb-serial-for-android-android-usb-host-serial-driver-library-for-cdc-ftdi-arduino-and-other-devices-google-project-hosting/Neulich im Internet (Schwarzweiß-Ausgabe)https://www.rfc1437.de/2013/02/18/neulich-im-internet-schwarzweis-ausgabe-8/Write Yourself a Haskell... in Lisp 17 February 2013https://www.rfc1437.de/2013/02/18/write-yourself-a-haskell-in-lisp-17-february-2013/Controlling Arduino with Android using Processinghttps://www.rfc1437.de/2013/02/17/controlling-arduino-with-android-using-processing/Curahttps://www.rfc1437.de/2013/02/15/cura/3ders.org - Infographic: step-by-step guide for 3D printing with a RepRaphttps://www.rfc1437.de/2013/02/15/3ders-org-infographic-step-by-step-guide-for-3d-printing-with-a-reprap/328eForthhttps://www.rfc1437.de/2013/02/15/328eforth/AmForth: Atmega Forthhttps://www.rfc1437.de/2013/02/15/amforth-atmega-forth/Industruinohttps://www.rfc1437.de/2013/02/14/industruino/Sync API - Dropboxhttps://www.rfc1437.de/2013/02/14/sync-api-dropbox/Wings 3D | A Polygon Modelerhttps://www.rfc1437.de/2013/02/12/wings-3d-a-polygon-modeler/FreeCAD: An Open Source parametric 3D CAD modelerhttps://www.rfc1437.de/2013/02/12/freecad-an-open-source-parametric-3d-cad-modeler/Pixologic :: Sculptrishttps://www.rfc1437.de/2013/02/12/pixologic-sculptris/OpenSCAD - The Programmers Solid 3D CAD Modellerhttps://www.rfc1437.de/2013/02/12/openscad-the-programmers-solid-3d-cad-modeller/dashclock - Lock screen clock widget for Android 4.2+ - Google Project Hostinghttps://www.rfc1437.de/2013/02/12/dashclock-lock-screen-clock-widget-for-android-4-2-google-project-hosting/php.js - PHP VM with JavaScripthttps://www.rfc1437.de/2013/02/12/php-js-php-vm-with-javascript/Mal wieder Berlinhttps://www.rfc1437.de/2013/02/11/mal-wieder-berlin/The Larch Environmenthttps://www.rfc1437.de/2013/02/11/the-larch-environment-2/storm-gen - Lightweight DAO generator for Android SQLite - Google Project Hostinghttps://www.rfc1437.de/2013/02/08/storm-gen-lightweight-dao-generator-for-android-sqlite-google-project-hosting/Repetier Software | The software driving your 3d printerhttps://www.rfc1437.de/2013/02/04/repetier-software-the-software-driving-your-3d-printer/Filabot Personal Filament Maker for 3D Printers - Desktop Extruding System – Environmentally Friendlyhttps://www.rfc1437.de/2013/02/01/filabot-personal-filament-maker-for-3d-printers-desktop-extruding-system-environmentally-friendly/Slic3r - G-code generator for 3D printershttps://www.rfc1437.de/2013/02/01/slic3r-g-code-generator-for-3d-printers/Printable wood availablehttps://www.rfc1437.de/2013/02/01/printable-wood-available/LightZone | Open-source digital darkroom software for Windows/Mac/Linuxhttps://www.rfc1437.de/2013/02/01/lightzone-open-source-digital-darkroom-software-for-windowsmaclinux/Thingiverse - Digital Designs for Physical Objectshttps://www.rfc1437.de/2013/02/01/thingiverse-digital-designs-for-physical-objects/Tinkercad - Mind to design in minuteshttps://www.rfc1437.de/2013/02/01/tinkercad-mind-to-design-in-minutes/repetier/Repetier-Host-Mac · GitHubhttps://www.rfc1437.de/2013/02/01/repetierrepetier-host-mac-c2-b7-github/RepRap - RepRapWikihttps://www.rfc1437.de/2013/02/01/reprap-reprapwiki/Neulich im Internet (Schwarzweiß-Ausgabe)https://www.rfc1437.de/2013/01/17/neulich-im-internet-schwarzweis-ausgabe-7/Neulich im Internethttps://www.rfc1437.de/2013/01/17/neulich-im-internet-7/Pinoccio - A Complete Ecosystem for Building the Internet of Things | Indiegogohttps://www.rfc1437.de/2013/01/15/pinoccio-a-complete-ecosystem-for-building-the-internet-of-things-indiegogo/i.MX233 Product Summary Pagehttps://www.rfc1437.de/2013/01/15/i-mx233-product-summary-page/Chumby tricks - ChumbyWikihttps://www.rfc1437.de/2013/01/15/chumby-tricks-chumbywiki/Falling Faster than the Speed of Sound « Wolfram Bloghttps://www.rfc1437.de/2013/01/15/falling-faster-than-the-speed-of-sound-wolfram-blog/ZDoc - Browse Files at SourceForge.nethttps://www.rfc1437.de/2013/01/15/zdoc-browse-files-at-sourceforge-net/End of Chumby as we know it... Page 1 - Chumby.com - chumbysphere forumhttps://www.rfc1437.de/2013/01/15/end-of-chumby-as-we-know-it-page-1-chumby-com-chumbysphere-forum/Koblenz und Schloss Stolzenfelshttps://www.rfc1437.de/2013/01/14/koblenz-und-schloss-stolzenfels/Metabones announces Speed Booster lens adapter for mirrorless cameras: Digital Photography Reviewhttps://www.rfc1437.de/2013/01/14/metabones-announces-speed-booster-lens-adapter-for-mirrorless-cameras-digital-photography-review/Permaduino | Indiegogohttps://www.rfc1437.de/2013/01/14/permaduino-indiegogo/Back To Top: Android vs. iOShttps://www.rfc1437.de/2013/01/11/back-to-top-android-vs-ios/SPT100 Pan & Tilt Systemhttps://www.rfc1437.de/2013/01/11/spt100-pan-tilt-system/Reflow Controller Shield Arduino Compatible - Rocket Screamhttps://www.rfc1437.de/2013/01/11/reflow-controller-shield-arduino-compatible-rocket-scream/ggreer/the_silver_searcher · GitHubhttps://www.rfc1437.de/2013/01/11/ggreerthe-silver-searcher-c2-b7-github/Atom Publishing Protocol « WordPress Pluginshttps://www.rfc1437.de/2013/01/09/atom-publishing-protocol-wordpress-plugins/Polaroids interchangeable lens camera is awful hands-on | The Vergehttps://www.rfc1437.de/2013/01/08/polaroids-interchangeable-lens-camera-is-awful-hands-on-the-verge/Polaroid Announces The iM1836 Mirrorless Camera With Jelly Beanhttps://www.rfc1437.de/2013/01/08/polaroid-announces-the-im1836-mirrorless-camera-with-jelly-bean/Use Your iPhone, Android, Or Windows Phone To Lock And Unlock Your Mac Using Bluetooth | Redmond Piehttps://www.rfc1437.de/2013/01/07/use-your-iphone-android-or-windows-phone-to-lock-and-unlock-your-mac-using-bluetooth-redmond-pie/Aachener Domhttps://www.rfc1437.de/2013/01/05/aachener-dom/Blaze — Blaze 0.1-dev documentationhttps://www.rfc1437.de/2012/12/28/blaze-blaze-0-1-dev-documentation/IOIO for Android - SparkFun Electronicshttps://www.rfc1437.de/2012/12/28/ioio-for-android-sparkfun-electronics/Run Mobile Apps on Mac with BlueStacks :: Mobile Apps on Mac :: Mobile App Player for Mac | BlueStackshttps://www.rfc1437.de/2012/12/27/run-mobile-apps-on-mac-with-bluestacks-mobile-apps-on-mac-mobile-app-player-for-mac-bluestacks/MariaMole | dalpix.comhttps://www.rfc1437.de/2012/12/27/mariamole-dalpix-com/Java 3D Engine | Learn Java Programming in 3Dhttps://www.rfc1437.de/2012/12/27/java-3d-engine-learn-java-programming-in-3d/Locating interesting parts of an image | IP-TECH, votre partenaire nearshore en Tunisie pour le développement informatiquehttps://www.rfc1437.de/2012/12/26/locating-interesting-parts-of-an-image-ip-tech-votre-partenaire-nearshore-en-tunisie-pour-le-developpement-informatique/imwilsonxu/fbone · GitHubhttps://www.rfc1437.de/2012/12/11/imwilsonxufbone-c2-b7-github/Cubes 0.10.1 Released – Multiple Hierarchies Data Breweryhttps://www.rfc1437.de/2012/12/11/cubes-0-10-1-released-multiple-hierarchies-data-brewery/The Ruggeduinohttps://www.rfc1437.de/2012/12/10/the-ruggeduino/The SQLite RTree Modulehttps://www.rfc1437.de/2012/12/03/the-sqlite-rtree-module/The Gaia-SINS federated project home-pagehttps://www.rfc1437.de/2012/12/03/the-gaia-sins-federated-project-home-page/Süßkartoffel-Linsen-Kokosmilch-Suppehttps://www.rfc1437.de/2012/12/01/suskartoffel-linsen-kokosmilch-suppe/Plan 9 from Bell Labshttps://www.rfc1437.de/2012/12/01/plan-9-from-bell-labs/F-Droidhttps://www.rfc1437.de/2012/11/27/f-droid/The iDroid Project - Where it presently stands - 0xDEADFA11https://www.rfc1437.de/2012/11/26/the-idroid-project-where-it-presently-stands-0xdeadfa11/Ipad optimization - xSellizehttps://www.rfc1437.de/2012/11/26/ipad-optimization-xsellize/ActiveAndroid | Active record style SQLite persistence for Androidhttps://www.rfc1437.de/2012/11/20/activeandroid-active-record-style-sqlite-persistence-for-android/Official Website | FreeBASIC Programming Languagehttps://www.rfc1437.de/2012/11/19/official-website-freebasic-programming-language/The ElfData Pluginhttps://www.rfc1437.de/2012/11/19/the-elfdata-plugin/Kürbissuppehttps://www.rfc1437.de/2012/11/17/kurbissuppe/A Cloud Storage Programming Interface - Store everythinghttps://www.rfc1437.de/2012/11/13/a-cloud-storage-programming-interface-store-everything/F# and MonoGame on the Machttps://www.rfc1437.de/2012/11/12/f-and-monogame-on-the-mac/git-annexhttps://www.rfc1437.de/2012/11/03/git-annex-2/Neulich im Internet (Schwarzweiß-Ausgabe)https://www.rfc1437.de/2012/10/30/neulich-im-internet-schwarzweis-ausgabe-6/Neulich im Internethttps://www.rfc1437.de/2012/10/30/neulich-im-internet-6/couchbase/Android-Couchbasehttps://www.rfc1437.de/2012/10/29/couchbaseandroid-couchbase/Processing on iOShttps://www.rfc1437.de/2012/10/28/processing-on-ios/Lachsforelle mit Pastinakenhttps://www.rfc1437.de/2012/10/27/lachsforelle-mit-pastinaken/OpenXIONhttps://www.rfc1437.de/2012/10/25/openxion/uliwitness/Stacksmithhttps://www.rfc1437.de/2012/10/25/uliwitnessstacksmith/NovoCardhttps://www.rfc1437.de/2012/10/25/novocard/Travis Shrugged: The creepy, dangerous ideology behind Silicon Valley’s Cult of Disruption | PandoDailyhttps://www.rfc1437.de/2012/10/25/travis-shrugged-the-creepy-dangerous-ideology-behind-silicon-valleys-cult-of-disruption-pandodaily/Arduino Due mit 32-Bit-ARM-Mikrokontroller - Pro-Linuxhttps://www.rfc1437.de/2012/10/23/arduino-due-mit-32-bit-arm-mikrokontroller-pro-linux/mono/xwthttps://www.rfc1437.de/2012/10/23/monoxwt/misfo/Shell-Turtlesteinhttps://www.rfc1437.de/2012/10/22/misfoshell-turtlestein/Turning to the past to power Windows’ future: An in-depth look at WinRT | Ars Technicahttps://www.rfc1437.de/2012/10/22/turning-to-the-past-to-power-windows-future-an-in-depth-look-at-winrt-ars-technica/wilhelmtell/dishttps://www.rfc1437.de/2012/10/22/wilhelmtelldis/jqhttps://www.rfc1437.de/2012/10/22/jq/Von Coesfeld nach Billerbeckhttps://www.rfc1437.de/2012/10/21/von-coesfeld-nach-billerbeck/Topinambur Salat und Linsensalathttps://www.rfc1437.de/2012/10/20/topinambur-salat-und-linsensalat/XKCD plots in d3https://www.rfc1437.de/2012/10/19/xkcd-plots-in-d3/IBM Worklight - Mobile application platformhttps://www.rfc1437.de/2012/10/19/ibm-worklight-mobile-application-platform/Lomography Belair X 6-12https://www.rfc1437.de/2012/10/19/lomography-belair-x-6-12/BBC News - Apple loses UK tablet design appeal versus Samsunghttps://www.rfc1437.de/2012/10/18/bbc-news-apple-loses-uk-tablet-design-appeal-versus-samsung/Waldpilzsalat mit Hähnchenstreifenhttps://www.rfc1437.de/2012/10/14/waldpilzsalat-mit-hahnchenstreifen/Moby: Racket for Mobile Phoneshttps://www.rfc1437.de/2012/10/14/moby-racket-for-mobile-phones/PharoDroid [Jenkins]https://www.rfc1437.de/2012/10/13/pharodroid-jenkins/ownCloud’s Latest Community Edition Adds Video Streaming, and Easy Mounting of Third-Party Storagehttps://www.rfc1437.de/2012/10/11/ownclouds-latest-community-edition-adds-video-streaming-and-easy-mounting-of-third-party-storage/Streak - CRM in your Inboxhttps://www.rfc1437.de/2012/10/10/streak-crm-in-your-inbox/LLJS : Low-Level JavaScripthttps://www.rfc1437.de/2012/10/09/lljs-low-level-javascript/Comtypes: How Dropbox learned to stop worrying and love the COMhttps://www.rfc1437.de/2012/10/05/comtypes-how-dropbox-learned-to-stop-worrying-and-love-the-com/DataNitrohttps://www.rfc1437.de/2012/10/04/datanitro/Android-x86 - Porting Android to x86https://www.rfc1437.de/2012/10/01/android-x86-porting-android-to-x86/Pyjnius: Accessing Java classes from Python | Txzonehttps://www.rfc1437.de/2012/10/01/pyjnius-accessing-java-classes-from-python-txzone/Rinderrouladen mit Pastinakenhttps://www.rfc1437.de/2012/09/29/rinderrouladen-mit-pastinaken/#21866 Remove AtomPub from core – WordPress Trachttps://www.rfc1437.de/2012/09/28/21866-remove-atompub-from-core-wordpress-trac/Jetstrap - The Bootstrap Interface Builderhttps://www.rfc1437.de/2012/09/26/jetstrap-the-bootstrap-interface-builder/X11-Basic Homepagehttps://www.rfc1437.de/2012/09/26/x11-basic-homepage/RFO BASIC! for Androidhttps://www.rfc1437.de/2012/09/26/rfo-basic-for-android/Clean IT: Die EU-Kommission will das Internet überwachen und filtern, ganz ohne Gesetzehttps://www.rfc1437.de/2012/09/21/clean-it-die-eu-kommission-will-das-internet-uberwachen-und-filtern-ganz-ohne-gesetze/Plug-ins for Adobe Photoshop Lightroom | Adobe Labshttps://www.rfc1437.de/2012/09/21/plug-ins-for-adobe-photoshop-lightroom-adobe-labs/Jforc Contentshttps://www.rfc1437.de/2012/09/20/jforc-contents/toastdriven/django-tastypiehttps://www.rfc1437.de/2012/09/20/toastdrivendjango-tastypie/linq.js - LINQ for JavaScripthttps://www.rfc1437.de/2012/09/19/linq-js-linq-for-javascript-2/Postgres-XC project Pagehttps://www.rfc1437.de/2012/09/19/postgres-xc-project-page/Online Python Tutor - Learn programming by visualizing code executionhttps://www.rfc1437.de/2012/09/19/online-python-tutor-learn-programming-by-visualizing-code-execution/pyMCU - The Python Controlled Microcontrollerhttps://www.rfc1437.de/2012/09/17/pymcu-the-python-controlled-microcontroller/amoffat/shhttps://www.rfc1437.de/2012/09/17/amoffatsh/MS Optical Sonnetar 50mm f/1.1 Test pictures | Japan Camera Hunterhttps://www.rfc1437.de/2012/09/13/ms-optical-sonnetar-50mm-f1-1-test-pictures-japan-camera-hunter/Android Bootstraphttps://www.rfc1437.de/2012/09/12/android-bootstrap/Buildroid for VirtualBox | BuilDroidhttps://www.rfc1437.de/2012/09/06/buildroid-for-virtualbox-buildroid/Supercharge Your Android Emulator Speed - Developer.comhttps://www.rfc1437.de/2012/09/06/supercharge-your-android-emulator-speed-developer-com/David Waring - Remember the Milk CLIhttps://www.rfc1437.de/2012/09/05/david-waring-remember-the-milk-cli/Leipzighttps://www.rfc1437.de/2012/09/04/leipzig/Lazarus 1.0 release available for downloadhttps://www.rfc1437.de/2012/08/30/lazarus-1-0-release-available-for-download/Cameron Lairds personal notes on varieties of Python implementationhttps://www.rfc1437.de/2012/08/30/cameron-lairds-personal-notes-on-varieties-of-python-implementation/Numba vs Cython - Pythonic Perambulationshttps://www.rfc1437.de/2012/08/30/numba-vs-cython-pythonic-perambulations/Noch ein Rettungsschirmhttps://www.rfc1437.de/2012/08/29/noch-ein-rettungsschirm/KDE Necessitas project - Welcome to KDE Necessitas projecthttps://www.rfc1437.de/2012/08/29/kde-necessitas-project-welcome-to-kde-necessitas-project/rawson.js - a camera raw previewer in javascripthttps://www.rfc1437.de/2012/08/29/rawson-js-a-camera-raw-previewer-in-javascript/commonsguy/cwac-anddownhttps://www.rfc1437.de/2012/08/28/commonsguycwac-anddown/LuminosoInsight/python-ftfyhttps://www.rfc1437.de/2012/08/28/luminosoinsightpython-ftfy/kmike/marisa-triehttps://www.rfc1437.de/2012/08/28/kmikemarisa-trie/Arduino - MacOSXhttps://www.rfc1437.de/2012/08/27/arduino-macosx/myabc/markdownjhttps://www.rfc1437.de/2012/08/27/myabcmarkdownj/mitotic/otracehttps://www.rfc1437.de/2012/08/27/mitoticotrace/Nizhniy Tagil im Augusthttps://www.rfc1437.de/2012/08/26/nizhniy-tagil-im-august/cletus/jmdhttps://www.rfc1437.de/2012/08/01/cletusjmd/mitmel/SimpleContentProviderhttps://www.rfc1437.de/2012/08/01/mitmelsimplecontentprovider/sattvik/nekohttps://www.rfc1437.de/2012/07/31/sattvikneko/ActionBarSherlock - Homehttps://www.rfc1437.de/2012/07/31/actionbarsherlock-home/sirthias/pegdownhttps://www.rfc1437.de/2012/07/29/sirthiaspegdown/Neulich im Internethttps://www.rfc1437.de/2012/07/27/neulich-im-internet-5/Neulich im Internet (Schwarzweiß-Ausgabe)https://www.rfc1437.de/2012/07/27/neulich-im-internet-schwarzweis-ausgabe-5/n8han/giter8https://www.rfc1437.de/2012/07/23/n8hangiter8/Getting started · jberkel/android-plugin Wikihttps://www.rfc1437.de/2012/07/23/getting-started-c2-b7-jberkelandroid-plugin-wiki/mpeltonen/sbt-ideahttps://www.rfc1437.de/2012/07/23/mpeltonensbt-idea/Android-Programmierung mit Scalahttps://www.rfc1437.de/2012/07/23/android-programmierung-mit-scala/Postbox — Awesome Emailhttps://www.rfc1437.de/2012/07/23/postbox-awesome-email/Facebook analysiert Chats zur Verbrechensbekämpfunghttps://www.rfc1437.de/2012/07/16/facebook-analysiert-chats-zur-verbrechensbekampfung/sitaramc/gitolitehttps://www.rfc1437.de/2012/07/15/sitaramcgitolite/OrmLite - Lightweight Object Relational Mapping ORM Java Packagehttps://www.rfc1437.de/2012/07/14/ormlite-lightweight-object-relational-mapping-orm-java-package/Create a package for Android for Kivyhttps://www.rfc1437.de/2012/07/12/create-a-package-for-android-for-kivy/Plop: Low-overhead profiling for Pythonhttps://www.rfc1437.de/2012/07/11/plop-low-overhead-profiling-for-python/Custom Drawn Interface/Android - Lazarus wikihttps://www.rfc1437.de/2012/07/08/custom-drawn-interfaceandroid-lazarus-wiki/Basic4android Basic for Android - Rapid Application Developmenthttps://www.rfc1437.de/2012/07/08/basic4android-basic-for-android-rapid-application-development/Android - Processinghttps://www.rfc1437.de/2012/07/08/android-processing/necessitas / Home / necessitashttps://www.rfc1437.de/2012/07/08/necessitas-home-necessitas/Lion: Mobile Backup Lokale Time Machine abschalten | Jan-Kaspar Münnichhttps://www.rfc1437.de/2012/07/08/lion-mobile-backup-lokale-time-machine-abschalten-jan-kaspar-munnich/Ymacs -- An Emacs-like editor for the Webhttps://www.rfc1437.de/2012/07/07/ymacs-an-emacs-like-editor-for-the-web/Lumiya Viewer - About Lumiyahttps://www.rfc1437.de/2012/07/06/lumiya-viewer-about-lumiya/Soulvers Features | Acqualiahttps://www.rfc1437.de/2012/07/05/soulvers-features-acqualia/Samsung: Kompaktkamera EX2F mit extra lichtstarkem Objektiv - Golem.dehttps://www.rfc1437.de/2012/07/05/samsung-kompaktkamera-ex2f-mit-extra-lichtstarkem-objektiv-golem-de/iBookstore sperrt Czernin-Sammelband als ‘zu explizit’ |https://www.rfc1437.de/2012/07/05/ibookstore-sperrt-czernin-sammelband-als-zu-explizit/Fuse4X – The Easiest and Fastest Way to Create File Systems for Mac OS Xhttps://www.rfc1437.de/2012/07/05/fuse4x-the-easiest-and-fastest-way-to-create-file-systems-for-mac-os-x/Epistle - Android Apps auf Google Playhttps://www.rfc1437.de/2012/07/04/epistle-android-apps-auf-google-play/JWBs blog: Ema Personal Wiki for Android and Windowshttps://www.rfc1437.de/2012/07/04/jwbs-blog-ema-personal-wiki-for-android-and-windows/OscarGodson/EpicEditorhttps://www.rfc1437.de/2012/07/04/oscargodsonepiceditor/Blackmagic Design: Blackmagic Cinema Camerahttps://www.rfc1437.de/2012/07/04/blackmagic-design-blackmagic-cinema-camera/Cloud Partyhttps://www.rfc1437.de/2012/07/03/cloud-party/Repo.jshttps://www.rfc1437.de/2012/07/02/repo-js/isagalaev/highlight.jshttps://www.rfc1437.de/2012/07/02/isagalaevhighlight-js/ErlPort - Erlang port protocol for Pythonhttps://www.rfc1437.de/2012/07/02/erlport-erlang-port-protocol-for-python/Hurricanehttps://www.rfc1437.de/2012/07/02/hurricane/Neulich im Internet (Schwarzweiß-Ausgabe)https://www.rfc1437.de/2012/06/29/neulich-im-internet-schwarzweis-ausgabe-4/Neulich im Internethttps://www.rfc1437.de/2012/06/29/neulich-im-internet-4/SQLite4: The Design Of SQLite4https://www.rfc1437.de/2012/06/29/sqlite4-the-design-of-sqlite4/Jarvishttps://www.rfc1437.de/2012/06/28/jarvis/Remote Debugging - Real Software Documentationhttps://www.rfc1437.de/2012/06/25/remote-debugging-real-software-documentation/..Nowhere..https://www.rfc1437.de/2012/06/23/nowhere/The Opa blog: Announcing Opa 1.0https://www.rfc1437.de/2012/06/22/the-opa-blog-announcing-opa-1-0/Make runfcgi fail when database connection is open before forkhttps://www.rfc1437.de/2012/06/20/make-runfcgi-fail-when-database-connection-is-open-before-fork/LiveScripthttps://www.rfc1437.de/2012/06/20/livescript/ronnix/fabtoolshttps://www.rfc1437.de/2012/06/18/ronnixfabtools/SET TRANSACTION ISOLATION LEVEL Transact-SQLhttps://www.rfc1437.de/2012/06/18/set-transaction-isolation-level-transact-sql/#18251 multithreading deadlock in django.models.loading.get_apps – Djangohttps://www.rfc1437.de/2012/06/18/18251-multithreading-deadlock-in-django-models-loading-get-apps-django/Microsoft SQL Server — SQLAlchemy 0.7 Documentationhttps://www.rfc1437.de/2012/06/18/microsoft-sql-server-sqlalchemy-0-7-documentation/"Prince Flo, King Django & The Deadlock Doctor" von Bluekilla – laut.de – Songhttps://www.rfc1437.de/2012/06/18/prince-flo-king-django-the-deadlock-doctor-von-bluekilla-laut-de-song/Using SELECT FOR UPDATE in Djangohttps://www.rfc1437.de/2012/06/18/using-select-for-update-in-django/WordPress › WordPress 3.4 “Green”https://www.rfc1437.de/2012/06/17/wordpress-wordpress-3-4-green/Thomas Tempelmann | Arbed - The Advanced RB Editorhttps://www.rfc1437.de/2012/06/13/thomas-tempelmann-arbed-the-advanced-rb-editor/ucsd-psystem-vm 0.11https://www.rfc1437.de/2012/06/12/ucsd-psystem-vm-0-11/TryAPLhttps://www.rfc1437.de/2012/06/11/tryapl/PEG.js – Parser Generator for JavaScripthttps://www.rfc1437.de/2012/06/11/peg-js-parser-generator-for-javascript/REALbasic | Open Source | Charcoal Designhttps://www.rfc1437.de/2012/06/08/realbasic-open-source-charcoal-design/Xcode 4.3 MacRuby compatible problem workaround - 東 . Bloghttps://www.rfc1437.de/2012/06/04/xcode-4-3-macruby-compatible-problem-workaround-e6-9d-b1-blog/Waterbear: Welcomehttps://www.rfc1437.de/2012/06/03/waterbear-welcome/google-blockly - A visual programming language - Google Project Hostinghttps://www.rfc1437.de/2012/06/03/google-blockly-a-visual-programming-language-google-project-hosting/Emmerich am Rhein und Reeshttps://www.rfc1437.de/2012/06/03/emmerich-am-rhein-und-rees/Freilichtmuseum Arnheimhttps://www.rfc1437.de/2012/06/03/freilichtmuseum-arnheim/Burgers Zoohttps://www.rfc1437.de/2012/06/03/burgers-zoo/Eindrücke aus Arnheimhttps://www.rfc1437.de/2012/06/03/eindrucke-aus-arnheim/AugmenteDevhttps://www.rfc1437.de/2012/05/31/augmentedev/RQ: Simple job queues for Pythonhttps://www.rfc1437.de/2012/05/31/rq-simple-job-queues-for-python/apenwarr/buphttps://www.rfc1437.de/2012/05/29/apenwarrbup/git-annexhttps://www.rfc1437.de/2012/05/29/git-annex/Mumblehttps://www.rfc1437.de/2012/05/23/mumble/Spherohttps://www.rfc1437.de/2012/05/23/sphero/Ubuntu 10.04: Why is ksmd eating CPU cycles? | Interphero Miscellanyhttps://www.rfc1437.de/2012/05/22/ubuntu-10-04-why-is-ksmd-eating-cpu-cycles-interphero-miscellany/Features | ownCloud.orghttps://www.rfc1437.de/2012/05/22/features-owncloud-org/dahlia / TypeQuery / overview — Bitbuckethttps://www.rfc1437.de/2012/05/22/dahlia-typequery-overview-bitbucket/PostgreSQL: Documentation: 8.4: hstorehttps://www.rfc1437.de/2012/05/22/postgresql-documentation-8-4-hstore/TeamPostgreSQL - PostgreSQL Web Admin GUI Toolshttps://www.rfc1437.de/2012/05/22/teampostgresql-postgresql-web-admin-gui-tools/Map of Lifehttps://www.rfc1437.de/2012/05/21/map-of-life/Matasano Security - Matasano Web Security Assessments for Enterpriseshttps://www.rfc1437.de/2012/05/21/matasano-security-matasano-web-security-assessments-for-enterprises/sametmax/0binhttps://www.rfc1437.de/2012/05/21/sametmax0bin/43 Rumors | Blog | Continually updated Panasonic 12-35mm f/2.8 X lens officially announced!https://www.rfc1437.de/2012/05/21/43-rumors-blog-continually-updated-panasonic-12-35mm-f2-8-x-lens-officially-announced/Embedding Python in Objective-C: Part 2https://www.rfc1437.de/2012/05/19/embedding-python-in-objective-c-part-2/jodal/pykkahttps://www.rfc1437.de/2012/05/18/jodalpykka/Jython 2.7 alpha1 released!https://www.rfc1437.de/2012/05/18/jython-2-7-alpha1-released/cocoa-python - Port of Objective-C runtime to Python using ctypes - Google Project Hostinghttps://www.rfc1437.de/2012/05/18/cocoa-python-port-of-objective-c-runtime-to-python-using-ctypes-google-project-hosting/r17 - flexible, scalable, relational data mining languagehttps://www.rfc1437.de/2012/05/18/r17-flexible-scalable-relational-data-mining-language/Neulich im Internet (Schwarzweiß-Ausgabe)https://www.rfc1437.de/2012/05/18/neulich-im-internet-schwarzweis-ausgabe-3/Neulich im Internethttps://www.rfc1437.de/2012/05/18/neulich-im-internet-3/The Schemaversehttps://www.rfc1437.de/2012/05/14/the-schemaverse/sipML5 - The worlds first open source HTML5 clienthttps://www.rfc1437.de/2012/05/14/sipml5-the-worlds-first-open-source-html5-client/Gumbohttps://www.rfc1437.de/2012/05/12/gumbo/Plumbum: Shell Combinators and More — Plumbum: Shell Combinatorshttps://www.rfc1437.de/2012/05/12/plumbum-shell-combinators-and-more-plumbum-shell-combinators/Leica X2 review – Ming Thein | Photographerhttps://www.rfc1437.de/2012/05/11/leica-x2-review-ming-thein-photographer/Pocket-sized fuel cell charges phones for two weeks - Mobile Phones - CNET - CNET Asiahttps://www.rfc1437.de/2012/05/09/pocket-sized-fuel-cell-charges-phones-for-two-weeks-mobile-phones-cnet-cnet-asia/Clojure/core — Reducers - A Library and Model for Collection Processinghttps://www.rfc1437.de/2012/05/09/clojurecore-reducers-a-library-and-model-for-collection-processing/backbone-fundamentals/index.md at master · addyosmani/backbone-fundamentals · GitHubhttps://www.rfc1437.de/2012/05/09/backbone-fundamentalsindex-md-at-master-c2-b7-addyosmanibackbone-fundamentals-c2-b7-github/PyPy Status Blog: STM update: back to threads?https://www.rfc1437.de/2012/05/08/pypy-status-blog-stm-update-back-to-threads/tuupola/jquery_lazyloadhttps://www.rfc1437.de/2012/05/07/tuupolajquery-lazyload/dirq 1.1.2 documentationhttps://www.rfc1437.de/2012/05/07/dirq-1-1-2-documentation/Hotcanvas: Realtime codinghttps://www.rfc1437.de/2012/05/07/hotcanvas-realtime-coding/Bilderarchiv | rfc1437https://www.rfc1437.de/2012/05/07/bilderarchiv-rfc1437/ownCloud.org | Your Cloud, Your Data, Your Way!https://www.rfc1437.de/2012/05/07/owncloud-org-your-cloud-your-data-your-way/RubyMotion - Ruby for iOShttps://www.rfc1437.de/2012/05/04/rubymotion-ruby-for-ios/Mojolicious - Perl real-time web frameworkhttps://www.rfc1437.de/2012/05/03/mojolicious-perl-real-time-web-framework-2/Neulich im Internet (Schwarzweiß-Ausgabe)https://www.rfc1437.de/2012/05/01/neulich-im-internet-schwarzweis-ausgabe-2/Neulich im Internethttps://www.rfc1437.de/2012/05/01/neulich-im-internet-2/RavenDB - 2nd generation document databasehttps://www.rfc1437.de/2012/04/28/ravendb-2nd-generation-document-database/JSIL - .NET to JavaScript compilerhttps://www.rfc1437.de/2012/04/28/jsil-net-to-javascript-compiler/Amazon.com: Send to Kindle for Machttps://www.rfc1437.de/2012/04/26/amazon-com-send-to-kindle-for-mac/the { buckblogs :here }: Maze Generation: Ellers Algorithmhttps://www.rfc1437.de/2012/04/25/the-buckblogs-here-maze-generation-ellers-algorithm/jQuery Masonryhttps://www.rfc1437.de/2012/04/25/jquery-masonry/BlocksIt.js - Dynamic Grid Layout jQuery Pluginhttps://www.rfc1437.de/2012/04/25/blocksit-js-dynamic-grid-layout-jquery-plugin/Kronuz/SublimeCodeIntelhttps://www.rfc1437.de/2012/04/25/kronuzsublimecodeintel/Cubism.jshttps://www.rfc1437.de/2012/04/25/cubism-js/jlongster/dcpu-lisphttps://www.rfc1437.de/2012/04/24/jlongsterdcpu-lisp/Subrepository - Mercurialhttps://www.rfc1437.de/2012/04/24/subrepository-mercurial/645 PRO app for iPhone offers access to lossless camera output but not Raw: Digital Photography Reviewhttps://www.rfc1437.de/2012/04/24/645-pro-app-for-iphone-offers-access-to-lossless-camera-output-but-not-raw-digital-photography-review/ThinkUp: Social Media Insights Platformhttps://www.rfc1437.de/2012/04/23/thinkup-social-media-insights-platform/Google+ Importer for WordPress » Sutherland Boswellhttps://www.rfc1437.de/2012/04/23/google-importer-for-wordpress-sutherland-boswell/Mozilla Archive Format, with MHT and Faithful Save :: Add-ons für Firefoxhttps://www.rfc1437.de/2012/04/23/mozilla-archive-format-with-mht-and-faithful-save-add-ons-fur-firefox/pycountershttps://www.rfc1437.de/2012/04/23/pycounters/Neulich im Internet (Schwarzweiß-Ausgabe)https://www.rfc1437.de/2012/04/22/neulich-im-internet-schwarzweis-ausgabe/Neulich im Internethttps://www.rfc1437.de/2012/04/22/neulich-im-internet/Parlament: Fraktionen wollen Rederecht im Bundestag beschneiden | Politik | ZEIT ONLINEhttps://www.rfc1437.de/2012/04/14/parlament-fraktionen-wollen-rederecht-im-bundestag-beschneiden-politik-zeit-online/Neulich auf Google+https://www.rfc1437.de/2012/04/13/neulich-auf-google/Gesammelte alte Schwarzweissbilderhttps://www.rfc1437.de/2012/04/13/gesammelte-alte-schwarzweissbilder/virtualenv-clone 0.2.2 : Python Package Indexhttps://www.rfc1437.de/2012/04/12/virtualenv-clone-0-2-2-python-package-index/Introducing Pivot.jshttps://www.rfc1437.de/2012/04/12/introducing-pivot-js/abique/tmfshttps://www.rfc1437.de/2012/04/10/abiquetmfs/Offener Brief an die Contentindustriehttps://www.rfc1437.de/2012/04/06/offener-brief-an-die-contentindustrie/the unbearable finality of pixel spacehttps://www.rfc1437.de/2012/04/05/the-unbearable-finality-of-pixel-space/flatiron/plateshttps://www.rfc1437.de/2012/04/04/flatironplates/Neulich auf Google+https://www.rfc1437.de/2012/03/31/neulich-auf-google-4/RQ: Documentationhttps://www.rfc1437.de/2012/03/29/rq-documentation/Kenko extensions tube with full electronic control!https://www.rfc1437.de/2012/03/29/kenko-extensions-tube-with-full-electronic-control/iphone - What happens to JavaScript code after app is compiled using Titanium Mobile - Stack Overflowhttps://www.rfc1437.de/2012/03/29/iphone-what-happens-to-javascript-code-after-app-is-compiled-using-titanium-mobile-stack-overflow/Titanium Desktop – Node.js Prototype « Appcelerator Developer Centerhttps://www.rfc1437.de/2012/03/27/titanium-desktop-node-js-prototype-appcelerator-developer-center/Embedding and running Node.js within a Firefox XUL extension | Captains Blog | Rawkeshttps://www.rfc1437.de/2012/03/27/embedding-and-running-node-js-within-a-firefox-xul-extension-captains-blog-rawkes/NodObjChttps://www.rfc1437.de/2012/03/27/nodobjc/topcubehttps://www.rfc1437.de/2012/03/27/topcube/haypo/pysandboxhttps://www.rfc1437.de/2012/03/26/haypopysandbox/Neulich auf Flickr - Schwarzweiß Ausgabehttps://www.rfc1437.de/2012/03/25/neulich-auf-flickr-schwarzweis-ausgabe-4/Neulich auf Flickrhttps://www.rfc1437.de/2012/03/25/neulich-auf-flickr-9/SynthCam for iPhonehttps://www.rfc1437.de/2012/03/23/synthcam-for-iphone/Depth of fieldhttps://www.rfc1437.de/2012/03/23/depth-of-field/Kein Quick-Freeze: Kanzlerin drängt Rösler zur Vorratsdatenspeicherunghttps://www.rfc1437.de/2012/03/22/kein-quick-freeze-kanzlerin-drangt-rosler-zur-vorratsdatenspeicherung/Katzencontenthttps://www.rfc1437.de/2012/03/21/katzencontent/BOO - Getting Startedhttps://www.rfc1437.de/2012/03/19/boo-getting-started/Rinderrouladenhttps://www.rfc1437.de/2012/03/17/rinderrouladen/pyp - Python Power at the Prompt - Google Project Hostinghttps://www.rfc1437.de/2012/03/16/pyp-python-power-at-the-prompt-google-project-hosting/Gprowlhttps://www.rfc1437.de/2012/03/15/gprowl/Clojure-Pyhttps://www.rfc1437.de/2012/03/13/clojure-py/LensRentals.com - Undressing an NEXhttps://www.rfc1437.de/2012/03/12/lensrentals-com-undressing-an-nex/Create a package for IOS — Kivy 1.1.2-dev documentationhttps://www.rfc1437.de/2012/03/12/create-a-package-for-ios-kivy-1-1-2-dev-documentation/Neulich auf Flickr - Schwarzweiß-Ausgabehttps://www.rfc1437.de/2012/03/10/neulich-auf-flickr-schwarzweis-ausgabe-3/Neulich auf Flickrhttps://www.rfc1437.de/2012/03/10/neulich-auf-flickr-8/wbond/sublime_package_controlhttps://www.rfc1437.de/2012/03/10/wbondsublime-package-control/JulianEberius/SublimeRopehttps://www.rfc1437.de/2012/03/10/julianeberiussublimerope/HyperCard, Visual Basic and the Importance of the Novice Developerhttps://www.rfc1437.de/2012/03/09/hypercard-visual-basic-and-the-importance-of-the-novice-developer/mtravers/heroku-buildpack-clhttps://www.rfc1437.de/2012/03/09/mtraversheroku-buildpack-cl/Heroku | Clojure on Herokuhttps://www.rfc1437.de/2012/03/09/heroku-clojure-on-heroku/TerjeNorderhaug/ecl-iphone-builderhttps://www.rfc1437.de/2012/03/09/terjenorderhaugecl-iphone-builder/Room 101: The Miracle of become:https://www.rfc1437.de/2012/03/08/room-101-the-miracle-of-become/Chrome kann in fünf Minuten geknackt werden | Produkte | futurezone.at: Technology-Newshttps://www.rfc1437.de/2012/03/08/chrome-kann-in-funf-minuten-geknackt-werden-produkte-futurezone-at-technology-news/[New App] Impressive: AIDE Is An IDE That Lets You Write And Compile Android Apps On Your Android Device, Begs For The Yo Dawg Treatmenthttps://www.rfc1437.de/2012/03/07/new-app-impressive-aide-is-an-ide-that-lets-you-write-and-compile-android-apps-on-your-android-device-begs-for-the-yo-dawg-treatment/Vagrant - Virtualized development for the masses.https://www.rfc1437.de/2012/03/07/vagrant-virtualized-development-for-the-masses/PySide for Android thp.iohttps://www.rfc1437.de/2012/03/07/pyside-for-android-thp-io/Robin Wong Olympus E-M5 Reviewhttps://www.rfc1437.de/2012/03/07/robin-wong-olympus-e-m5-review/Hyper-V, virtuelle Maschinen, Laufwerksbuchstaben, Wahnsinn, Microsofthttps://www.rfc1437.de/2012/03/05/hyper-v-virtuelle-maschinen-laufwerksbuchstaben-wahnsinn-microsoft/pyprocessing - A Processing-like environment for doing graphics with Python - Google Project Hostinghttps://www.rfc1437.de/2012/03/02/pyprocessing-a-processing-like-environment-for-doing-graphics-with-python-google-project-hosting/Ex-Bundespräsident Wulff erhält den Ehrensold | tagesschau.dehttps://www.rfc1437.de/2012/02/29/ex-bundesprasident-wulff-erhalt-den-ehrensold-tagesschau-de/41MP Nokia 808 smartphone hints at pixel-binning future for small sensor cameras: Digital Photography Reviewhttps://www.rfc1437.de/2012/02/28/41mp-nokia-808-smartphone-hints-at-pixel-binning-future-for-small-sensor-cameras-digital-photography-review/Temporal Keys, Part 2 | Experimental Thoughtshttps://www.rfc1437.de/2012/02/27/temporal-keys-part-2-experimental-thoughts/ResponsiveSlides.js · Responsive jQuery slideshowhttps://www.rfc1437.de/2012/02/26/responsiveslides-js-c2-b7-responsive-jquery-slideshow/6: Sony infrared conversion servicehttps://www.rfc1437.de/2012/02/21/6-sony-infrared-conversion-service/Karneval. Und jetzt bitte die Pappnasen absetzen, ok?https://www.rfc1437.de/2012/02/20/karneval-und-jetzt-bitte-die-pappnasen-absetzen-ok/The Julia Manualhttps://www.rfc1437.de/2012/02/18/the-julia-manual/Deutsche Tastaturbelegung unter Parallels, VMWare, BootCamp und VirtualBox - Info - Schirmacherhttps://www.rfc1437.de/2012/02/17/deutsche-tastaturbelegung-unter-parallels-vmware-bootcamp-und-virtualbox-info-schirmacher/Mac Developer Tips » How to Uninstall Xcodehttps://www.rfc1437.de/2012/02/17/mac-developer-tips-how-to-uninstall-xcode/Xcode, GCC, and Homebrewhttps://www.rfc1437.de/2012/02/17/xcode-gcc-and-homebrew/stochastic-technologies/goatfish - GitHubhttps://www.rfc1437.de/2012/02/16/stochastic-technologiesgoatfish-github/Concatenative IRC Logs vom 6.1.2012https://www.rfc1437.de/2012/02/14/concatenative-irc-logs-vom-6-1-2012/generateDS 2.7b : Python Package Indexhttps://www.rfc1437.de/2012/02/14/generateds-2-7b-python-package-index/zenphoto-publisher - Lightroom 3 Publisher plugin for Zenphoto - Google Project Hostinghttps://www.rfc1437.de/2012/02/13/zenphoto-publisher-lightroom-3-publisher-plugin-for-zenphoto-google-project-hosting/“Collection Publisher” Lightroom Pluginhttps://www.rfc1437.de/2012/02/13/collection-publisher-lightroom-plugin/CoRD: Remote Desktop for Mac OS Xhttps://www.rfc1437.de/2012/02/13/cord-remote-desktop-for-mac-os-x-2/Die Woche: Wie geht es uns, Herr Küppersbusch? - taz.dehttps://www.rfc1437.de/2012/02/12/die-woche-wie-geht-es-uns-herr-kuppersbusch-taz-de/Schweinefilet in Senfsoßehttps://www.rfc1437.de/2012/02/12/schweinefilet-in-senfsose/IdleX - IDLE Extensions for Pythonhttps://www.rfc1437.de/2012/02/12/idlex-idle-extensions-for-python/Practical Common Lisp - Crawling InterfaceLift with Common Lisp - second tryhttps://www.rfc1437.de/2012/02/12/practical-common-lisp-crawling-interfacelift-with-common-lisp-second-try/arskom/rpclib - GitHubhttps://www.rfc1437.de/2012/02/11/arskomrpclib-github/Aaseevergnügenhttps://www.rfc1437.de/2012/02/11/aaseevergnugen/Howto to rebuild Debian packageshttps://www.rfc1437.de/2012/02/09/howto-to-rebuild-debian-packages/Laurence Tratt: Fast Enough VMs in Fast Enough Timehttps://www.rfc1437.de/2012/02/09/laurence-tratt-fast-enough-vms-in-fast-enough-time/Google Wallet PIN cracked on rooted Android devices | The Vergehttps://www.rfc1437.de/2012/02/09/google-wallet-pin-cracked-on-rooted-android-devices-the-verge/ladon 0.7.0 : Python Package Indexhttps://www.rfc1437.de/2012/02/08/ladon-0-7-0-python-package-index/sudshttps://www.rfc1437.de/2012/02/08/suds/About — soaplib v2.0.0beta documentationhttps://www.rfc1437.de/2012/02/08/about-soaplib-v2-0-0beta-documentation/pysimplesoap - Python Simple SOAP Library - Google Project Hostinghttps://www.rfc1437.de/2012/02/08/pysimplesoap-python-simple-soap-library-google-project-hosting/Smile and SmileLab Home Pagehttps://www.rfc1437.de/2012/02/08/smile-and-smilelab-home-page/Tour de France: Radprofi Contador für zwei Jahre gesperrt | Sport | ZEIT ONLINEhttps://www.rfc1437.de/2012/02/06/tour-de-france-radprofi-contador-fur-zwei-jahre-gesperrt-sport-zeit-online/python4delphi - Embedding Python within a Delphi application. - Google Project Hostinghttps://www.rfc1437.de/2012/02/03/python4delphi-embedding-python-within-a-delphi-application-google-project-hosting/Bundespräsident Wulff verschwieg Beziehung zu Geerkens | tagesschau.dehttps://www.rfc1437.de/2012/01/30/bundesprasident-wulff-verschwieg-beziehung-zu-geerkens-tagesschau-de/Zurück aus Amsterdamhttps://www.rfc1437.de/2012/01/30/zuueck-aus-amsterdam/Iñigo Quilez - fractals, computer graphics, mathematics, demoscene and morehttps://www.rfc1437.de/2012/01/08/inigo-quilez-fractals-computer-graphics-mathematics-demoscene-and-more/Technical Documentation - pistos/diasporahttps://www.rfc1437.de/2012/01/06/technical-documentation-pistosdiaspora/FPC New Features 2.6.0 - Lazarus wikihttps://www.rfc1437.de/2012/01/05/fpc-new-features-2-6-0-lazarus-wiki/Sony "approves" the launch the new hybrid AlphaNex mount camera (sort of fullframe NEX-7!)https://www.rfc1437.de/2012/01/04/sony-approves-the-launch-the-new-hybrid-alphanex-mount-camera-sort-of-fullframe-nex-7/Spaghetti Carbonara mit Gemüse und Frikadellenhttps://www.rfc1437.de/2011/12/31/spaghetti-carbonara-mit-gemuse-und-frikadellen/charles leifer | Updates to peewee, including atomic updates, select related and basic transactionshttps://www.rfc1437.de/2011/12/30/charles-leifer-updates-to-peewee-including-atomic-updates-select-related-and-basic-transactions/Linux L2TP/IPSec with iPhone and Mac OS/X clients | PEEN.NEThttps://www.rfc1437.de/2011/12/29/linux-l2tpipsec-with-iphone-and-mac-osx-clients-peen-net/Distribunomicon | Learn You Some Erlang for Great Good!https://www.rfc1437.de/2011/12/28/distribunomicon-learn-you-some-erlang-for-great-good/Samsung Galaxy S Phones Ice Cream Sandwich Updatehttps://www.rfc1437.de/2011/12/24/samsung-galaxy-s-phones-ice-cream-sandwich-update/Custom iPhone Backshttps://www.rfc1437.de/2011/12/23/custom-iphone-backs/Sublime Texthttps://www.rfc1437.de/2011/12/22/sublime-text/Phalanger 3.0 | PHP compiler for .NEThttps://www.rfc1437.de/2011/12/22/phalanger-3-0-php-compiler-for-net/Lanzarote - Mondlandschaft mit Palmenhttps://www.rfc1437.de/2011/12/21/lanzarote-mondlandschaft-mit-palmen/web2pyhttps://www.rfc1437.de/2011/12/21/web2py/Mac App Store - Clozure CLhttps://www.rfc1437.de/2011/12/21/mac-app-store-clozure-cl/Commentpresshttps://www.rfc1437.de/2011/12/20/commentpress/Neulich auf Flickrhttps://www.rfc1437.de/2011/12/19/neulich-auf-flickr-7/Neulich auf Flickr - Schwarzweiß Ausgabehttps://www.rfc1437.de/2011/12/19/neulich-auf-flickr-schwarzweis-ausgabe-2/Clay Programming Languagehttps://www.rfc1437.de/2011/12/07/clay-programming-language/Thoughts on Python 3 | Armin Ronachers Thoughts and Writingshttps://www.rfc1437.de/2011/12/07/thoughts-on-python-3-armin-ronachers-thoughts-and-writings/Learn Smalltalk with ProfStefhttps://www.rfc1437.de/2011/12/06/learn-smalltalk-with-profstef/iPhone battery life issues may continue to vex users—even post iOS 5.1https://www.rfc1437.de/2011/12/02/iphone-battery-life-issues-may-continue-to-vex-users-e2-80-94even-post-ios-5-1/eComStation - Wikipedia, the free encyclopediahttps://www.rfc1437.de/2011/12/02/ecomstation-wikipedia-the-free-encyclopedia/Open Object Rexxhttps://www.rfc1437.de/2011/12/02/open-object-rexx/Using hardware controllers with Lightroom | Valokuvaaja Max Edinhttps://www.rfc1437.de/2011/12/01/using-hardware-controllers-with-lightroom-valokuvaaja-max-edin/hangout-disco - Renders a WebGL room with avatars for each participant of a Google+ Hangout, with the possibility to play music, etc. - Google Project Hostinghttps://www.rfc1437.de/2011/11/30/hangout-disco-renders-a-webgl-room-with-avatars-for-each-participant-of-a-google-hangout-with-the-possibility-to-play-music-etc-google-project-hosting/BUSTED! Secret app on millions of phones logs key taps • The Registerhttps://www.rfc1437.de/2011/11/30/busted-secret-app-on-millions-of-phones-logs-key-taps-e2-80-a2-the-register/Zinc HTTP Componentshttps://www.rfc1437.de/2011/11/30/zinc-http-components/Tornado on Pypy benchmarks - Tornado Web Server | Google Groupshttps://www.rfc1437.de/2011/11/30/tornado-on-pypy-benchmarks-tornado-web-server-google-groups/GemStone Seaside | Abouthttps://www.rfc1437.de/2011/11/30/gemstone-seaside-about/Sicherheitslücke: Feuergefahr bei HP-Druckern? - Golem.dehttps://www.rfc1437.de/2011/11/30/sicherheitslucke-feuergefahr-bei-hp-druckern-golem-de/Python Math | Python for iPhone/iPad/iPod Touchhttps://www.rfc1437.de/2011/11/29/python-math-python-for-iphoneipadipod-touch-2/Fliers Still Must Turn Off Devices, but Its Not Clear Why - NYTimes.comhttps://www.rfc1437.de/2011/11/29/fliers-still-must-turn-off-devices-but-its-not-clear-why-nytimes-com/YaCy - Freie Suchmaschinensoftware und dezentrale Websuchehttps://www.rfc1437.de/2011/11/28/yacy-freie-suchmaschinensoftware-und-dezentrale-websuche/Flugdatenabkommen ist ausverhandelt - fm4.ORF.athttps://www.rfc1437.de/2011/11/28/flugdatenabkommen-ist-ausverhandelt-fm4-orf-at/Welcome to NeuroLab’s documentation! — NeuroLab v0.2.1 documentationhttps://www.rfc1437.de/2011/11/28/welcome-to-neurolab-e2-80-99s-documentation-e2-80-94-neurolab-v0-2-1-documentation/A human review of the Kindle Fire – Marco.orghttps://www.rfc1437.de/2011/11/20/a-human-review-of-the-kindle-fire-e2-80-93-marco-org/Nizza-Impressionenhttps://www.rfc1437.de/2011/11/20/nizza-impressionen/Männerspielzeug in Nizzahttps://www.rfc1437.de/2011/11/20/mannerspielzeug-in-nizza/forger the digital sculpting app for iPadhttps://www.rfc1437.de/2011/11/10/forger-the-digital-sculpting-app-for-ipad/Dart : Structured web programminghttps://www.rfc1437.de/2011/11/10/dart-structured-web-programming/Newspeak » The Newspeak Programming Languagehttps://www.rfc1437.de/2011/11/10/newspeak-c2-bb-the-newspeak-programming-language/Radius limited searching with the ORM | Neogeo ramblings with a Python twisthttps://www.rfc1437.de/2011/11/10/radius-limited-searching-with-the-orm-neogeo-ramblings-with-a-python-twist/Pixelmatorhttps://www.rfc1437.de/2011/11/09/pixelmator-2/LEGO Universe : Game Help - LEGO Universehttps://www.rfc1437.de/2011/11/08/lego-universe-game-help-lego-universe/Kodak sells Image Sensor Solutions business: Digital Photography Reviewhttps://www.rfc1437.de/2011/11/08/kodak-sells-image-sensor-solutions-business-digital-photography-review/Pinaxhttps://www.rfc1437.de/2011/11/07/pinax/Panasonic: Systemkamera GX1 mit Dreikern-Bildprozessor - Golem.dehttps://www.rfc1437.de/2011/11/07/panasonic-systemkamera-gx1-mit-dreikern-bildprozessor-golem-de/Herbstspazierganghttps://www.rfc1437.de/2011/11/01/herbstspaziergang/New55 Filmhttps://www.rfc1437.de/2011/11/01/new55-film/Pixelmatorhttps://www.rfc1437.de/2011/10/31/pixelmator/Und mal wieder ein Hamburg-Besuchhttps://www.rfc1437.de/2011/10/31/und-mal-wieder-ein-hamburg-besuch/Adobe Carousel: Mini-Lightroom für iPhone und iPad verfügbar - Golem.dehttps://www.rfc1437.de/2011/10/28/adobe-carousel-mini-lightroom-fur-iphone-und-ipad-verfugbar-golem-de/Codify – iPadhttps://www.rfc1437.de/2011/10/27/codify-e2-80-93-ipad/CCC | Chaos Computer Club analysiert aktuelle Version des Staatstrojanershttps://www.rfc1437.de/2011/10/26/ccc-chaos-computer-club-analysiert-aktuelle-version-des-staatstrojaners/Galileo Computing :: Apps entwickeln für iPhone und iPad - indexhttps://www.rfc1437.de/2011/10/25/galileo-computing-apps-entwickeln-fur-iphone-und-ipad-index/Die\_Telekom\_lernt\_es\_nicht... | iPhone\_4S:\_Telekom\_tauscht\_SIM-Karten | Mac & i News-Forenhttps://www.rfc1437.de/2011/10/24/die-c2-a0telekom-c2-a0lernt-c2-a0es-c2-a0nicht-iphone-c2-a04s-c2-a0telekom-c2-a0tauscht-c2-a0sim-karten-mac-i-news-foren/Pixelmator 2 Sneak Previewhttps://www.rfc1437.de/2011/10/24/pixelmator-2-sneak-preview/Mellow Morning » Django Facebook 3.2 – Simple image upload and wall postshttps://www.rfc1437.de/2011/10/24/mellow-morning-c2-bb-django-facebook-3-2-e2-80-93-simple-image-upload-and-wall-posts/Ach, Apple… ach, Aperture… | massenbelichtungswaffen.dehttps://www.rfc1437.de/2011/10/24/ach-apple-e2-80-a6-ach-aperture-e2-80-a6-massenbelichtungswaffen-de/Und es ward mal wieder Send ...https://www.rfc1437.de/2011/10/23/und-es-ward-mal-wieder-send/WordPress Deutschland FAQ » Hinweise zum Datenschutz beim Einsatz von Akismet in Deutschlandhttps://www.rfc1437.de/2011/10/21/wordpress-deutschland-faq-c2-bb-hinweise-zum-datenschutz-beim-einsatz-von-akismet-in-deutschland/iPhone 4S: Nutzer melden Probleme mit neuen SIM-Kartenhttps://www.rfc1437.de/2011/10/19/iphone-4s-nutzer-melden-probleme-mit-neuen-sim-karten/Diaspora* — How Diaspora* Found Its Tiger Stripe in the Midst of a Paypal Fiascohttps://www.rfc1437.de/2011/10/19/diaspora-e2-80-94-how-diaspora-found-its-tiger-stripe-in-the-midst-of-a-paypal-fiasco/The impact of Apple’s Siri release: From the former lead iPhone developer of Sirihttps://www.rfc1437.de/2011/10/18/the-impact-of-apple-e2-80-99s-siri-release-from-the-former-lead-iphone-developer-of-siri/Mojolicious - Perl real-time web frameworkhttps://www.rfc1437.de/2011/10/18/mojolicious-perl-real-time-web-framework/vim-orgmode - Text outlining and task management for Vim based on Emacs' Org-Mode : vim onlinehttps://www.rfc1437.de/2011/10/17/vim-orgmode-text-outlining-and-task-management-for-vim-based-on-emacs-org-mode-vim-online/AirPrint Activator v2.0 « Netputinghttps://www.rfc1437.de/2011/10/17/airprint-activator-v2-0-c2-ab-netputing/John Lee Hooker Jr. im Hot Jazz Clubhttps://www.rfc1437.de/2011/10/17/john-lee-hooker-jr-im-hot-jazz-club/About Weavrshttps://www.rfc1437.de/2011/10/15/about-weavrs/Textastic – Syntax highlighting text editor, FTP, SFTP, Dropbox – for iPadhttps://www.rfc1437.de/2011/10/15/textastic-e2-80-93-syntax-highlighting-text-editor-ftp-sftp-dropbox-e2-80-93-for-ipad/Python Math | Python for iPhone/iPad/iPod Touchhttps://www.rfc1437.de/2011/10/15/python-math-python-for-iphoneipadipod-touch/Neulich auf Flickr - Schwarzweiß Ausgabehttps://www.rfc1437.de/2011/10/14/neulich-auf-flickr-schwarzweis-ausgabe/Neulich auf Flickrhttps://www.rfc1437.de/2011/10/14/neulich-auf-flickr-6/Throwable Panoramic Ball Camera // Jonas Pfeilhttps://www.rfc1437.de/2011/10/14/throwable-panoramic-ball-camera-jonas-pfeil/Diaspora* Advanced Sharerhttps://www.rfc1437.de/2011/10/14/diaspora-advanced-sharer/Cleaning… – Marco.orghttps://www.rfc1437.de/2011/10/14/cleaning-e2-80-a6-e2-80-93-marco-org/Bundestrojaner-Artikel-Sammlung - Farlion Insidehttps://www.rfc1437.de/2011/10/12/bundestrojaner-artikel-sammlung-farlion-inside/Service to share on any Diaspora* pod [Basshero.org]https://www.rfc1437.de/2011/10/12/service-to-share-on-any-diaspora-pod-basshero-org/How to speed up the Android Emulator by up to 400%, Nuxeo Developers Bloghttps://www.rfc1437.de/2011/10/11/how-to-speed-up-the-android-emulator-by-up-to-400-nuxeo-developers-blog/A Lesser Photographer - A Manifesto | A Lesser Photographerhttps://www.rfc1437.de/2011/10/11/a-lesser-photographer-a-manifesto-a-lesser-photographer/Staatstrojaner auch in NRW - WDR 2 Der Senderhttps://www.rfc1437.de/2011/10/11/staatstrojaner-auch-in-nrw-wdr-2-der-sender/Kodak Said to Weigh Bankruptcy Filing to Clear Path for Selling Patents - Bloomberghttps://www.rfc1437.de/2011/10/11/kodak-said-to-weigh-bankruptcy-filing-to-clear-path-for-selling-patents-bloomberg/Ricoh GXR A12 Field Reporthttps://www.rfc1437.de/2011/10/10/ricoh-gxr-a12-field-report/Fujifilm FinePix X10https://www.rfc1437.de/2011/10/10/fujifilm-finepix-x10/Bundestrojaner: Die Privaten hinter dem Bundestrojaner | Politik\_- Frankfurter Rundschauhttps://www.rfc1437.de/2011/10/09/bundestrojaner-die-privaten-hinter-dem-bundestrojaner-politik-c2-a0-frankfurter-rundschau/Twitter Gets Sued For Letting Famous People Interact Online | TechCrunchhttps://www.rfc1437.de/2011/10/09/twitter-gets-sued-for-letting-famous-people-interact-online-techcrunch/SuperCollider » Abouthttps://www.rfc1437.de/2011/10/09/supercollider-c2-bb-about/Home // Overtonehttps://www.rfc1437.de/2011/10/09/home-overtone/Henri Cartier-Bresson | Adam Marelli Photohttps://www.rfc1437.de/2011/10/09/henri-cartier-bresson-adam-marelli-photo/Chaos Computer Club: Der deutsche Staatstrojaner wurde geknackt - Aktuell - FAZhttps://www.rfc1437.de/2011/10/09/chaos-computer-club-der-deutsche-staatstrojaner-wurde-geknackt-aktuell-faz/Zeitzonen: tz-Datenbank wegen Klage abgeschaltet - Golem.dehttps://www.rfc1437.de/2011/10/07/zeitzonen-tz-datenbank-wegen-klage-abgeschaltet-golem-de/oryx-editor - Web-based Graphical Business Process Editor. - Google Project Hostinghttps://www.rfc1437.de/2011/10/07/oryx-editor-web-based-graphical-business-process-editor-google-project-hosting/Gulasch ungarische Arthttps://www.rfc1437.de/2011/10/06/gulasch-ungarische-art/virtualenvwrapper 2.10.1 — virtualenvwrapper v2.10.1 documentationhttps://www.rfc1437.de/2011/10/05/virtualenvwrapper-2-10-1-e2-80-94-virtualenvwrapper-v2-10-1-documentation/Straight Talk on Event Loopshttps://www.rfc1437.de/2011/10/05/straight-talk-on-event-loops/Glass cover replacement for Sony NEX LCD screen | Photoclubalphahttps://www.rfc1437.de/2011/10/04/glass-cover-replacement-for-sony-nex-lcd-screen-photoclubalpha/Ausflug nach Norderneyhttps://www.rfc1437.de/2011/10/04/ausflug-nach-norderney/Benefizkonzert Hungerhilfe Ostafrikahttps://www.rfc1437.de/2011/10/02/benefizkonzert-hungerhilfe-ostafrika/The Olympus 45 1.8 Micro 4/3 Lens Review by Steve Huff | STEVE HUFF PHOTOShttps://www.rfc1437.de/2011/10/02/the-olympus-45-1-8-micro-43-lens-review-by-steve-huff-steve-huff-photos/Innovation Starvation | World Policy Institutehttps://www.rfc1437.de/2011/10/02/innovation-starvation-world-policy-institute/Mein Profil auf meinem eigenen Diaspora Podhttps://www.rfc1437.de/2011/10/02/mein-profil-auf-meinem-eigenen-diaspora-pod/Eindeutig identifizierbar: Nato möchte individuelle Signatur für jeden Internetnutzer - Golem.dehttps://www.rfc1437.de/2011/09/30/eindeutig-identifizierbar-nato-mochte-individuelle-signatur-fur-jeden-internetnutzer-golem-de/Datenschützer: Social Plugins in Deutschland nicht zulässig - Golem.dehttps://www.rfc1437.de/2011/09/30/datenschutzer-social-plugins-in-deutschland-nicht-zulassig-golem-de/dusthttps://www.rfc1437.de/2011/09/30/dust/Kanso Frameworkhttps://www.rfc1437.de/2011/09/30/kanso-framework/StatsModels: Statistics in Python — statsmodels v0.3.0 documentationhttps://www.rfc1437.de/2011/09/30/statsmodels-statistics-in-python-e2-80-94-statsmodels-v0-3-0-documentation/pandas: powerful Python data analysis toolkit — pandas v0.4.1 documentationhttps://www.rfc1437.de/2011/09/30/pandas-powerful-python-data-analysis-toolkit-e2-80-94-pandas-v0-4-1-documentation/websites - How do I suppress the address bar in mobile Safari? - Apple - Stack Exchangehttps://www.rfc1437.de/2011/09/30/websites-how-do-i-suppress-the-address-bar-in-mobile-safari-apple-stack-exchange/"Algorithm" is Not a Four-Letter Wordhttps://www.rfc1437.de/2011/09/30/algorithm-is-not-a-four-letter-word/trunkdesk - Mac desktop companion for Trunk Notes - Google Project Hostinghttps://www.rfc1437.de/2011/09/28/trunkdesk-mac-desktop-companion-for-trunk-notes-google-project-hosting/Firewire Attacks Against Mac OS Lion FileVault 2 Encryption » framelosshttps://www.rfc1437.de/2011/09/28/firewire-attacks-against-mac-os-lion-filevault-2-encryption-c2-bb-frameloss/Face off: Facebook bezeichnet persönliche Daten als "geistiges Eigentum" | G! - gutjahr's bloghttps://www.rfc1437.de/2011/09/28/face-off-facebook-bezeichnet-personliche-daten-als-geistiges-eigentum-g-gutjahrs-blog/psycopg2-ctypes - GitHubhttps://www.rfc1437.de/2011/09/28/psycopg2-ctypes-github/django-tastypie - GitHubhttps://www.rfc1437.de/2011/09/28/django-tastypie-github/flask-peewee - GitHubhttps://www.rfc1437.de/2011/09/28/flask-peewee-github/Diebold voting machines can be hacked by remote control - 2012 Elections - Salon.comhttps://www.rfc1437.de/2011/09/28/diebold-voting-machines-can-be-hacked-by-remote-control-2012-elections-salon-com/pmip - Poor Mans IDE Plugin PMIP - Google Project Hostinghttps://www.rfc1437.de/2011/09/27/poormanstestdox-pmip-poor-mans-ide-plugin-pmip-google-project-hosting/Python for Facebook - Welcomehttps://www.rfc1437.de/2011/09/27/python-for-facebook-welcome/StartSSL and Nginxhttps://www.rfc1437.de/2011/09/26/startssl-and-nginx/Launchpad-Control | chaosspace.dehttps://www.rfc1437.de/2011/09/26/launchpad-control-chaosspace-de/Piroschki wie von Schwiegermutternhttps://www.rfc1437.de/2011/09/25/piroschki-wie-von-schwiegermuttern/facebook/python-sdk - GitHubhttps://www.rfc1437.de/2011/09/23/facebookpython-sdk-github/Django Facebook 2.0 – Integrating Facebookhttps://www.rfc1437.de/2011/09/23/django-facebook-2-0-e2-80-93-integrating-facebook/Photosmith - the iPad mobile companion for Adobe Lightroom | Latest news, challenges, and progress from the developers.https://www.rfc1437.de/2011/09/23/photosmith-the-ipad-mobile-companion-for-adobe-lightroom-latest-news-challenges-and-progress-from-the-developers/Adobe Lightroom - Customising Camera Defaultshttps://www.rfc1437.de/2011/09/23/adobe-lightroom-customising-camera-defaults/Dalienkorso in Legdenhttps://www.rfc1437.de/2011/09/22/dalienkorso-in-legden/nathanmarz/storm - GitHubhttps://www.rfc1437.de/2011/09/21/nathanmarzstorm-github/Nikon Announces J1 and V1 Mirrorless Cameras and New Lens Systemhttps://www.rfc1437.de/2011/09/21/nikon-announces-j1-and-v1-mirrorless-cameras-and-new-lens-system/PLEAC-Objective CAMLhttps://www.rfc1437.de/2011/09/19/pleac-objective-caml/Sony NEX-7 First Impressionshttps://www.rfc1437.de/2011/09/19/sony-nex-7-first-impressions/Offline Web Applications - Dive Into HTML5https://www.rfc1437.de/2011/09/16/offline-web-applications-dive-into-html5/Ricoh GR Digital IV Preview: 1. Introduction: Digital Photography Reviewhttps://www.rfc1437.de/2011/09/15/ricoh-gr-digital-iv-preview-1-introduction-digital-photography-review/albertz/Pyjector - GitHubhttps://www.rfc1437.de/2011/09/14/albertzpyjector-github/Kritik an Notdienst-Organisation:\_Notdienst schickte Augenkranke 37 Kilometer aufs Land\_-\_ Münstersche Zeitunghttps://www.rfc1437.de/2011/09/14/kritik-an-notdienst-organisation-c2-a0notdienst-schickte-augenkranke-37-kilometer-aufs-land-c2-a0-c2-a0-munstersche-zeitung/Euro-Krise: China bietet Hilfe an und will Gegenleistungen | tagesschau.dehttps://www.rfc1437.de/2011/09/14/euro-krise-china-bietet-hilfe-an-und-will-gegenleistungen-tagesschau-de/Ausflug nach Bremenhttps://www.rfc1437.de/2011/09/11/bremen/Neulich auf Flickrhttps://www.rfc1437.de/2011/09/08/neulich-auf-flickr-5/Adobe announces Carousel - cloud-based image service: Digital Photography Reviewhttps://www.rfc1437.de/2011/09/08/adobe-announces-carousel-cloud-based-image-service-digital-photography-review/WordPress › 2 Click Social Media Buttons « WordPress Pluginshttps://www.rfc1437.de/2011/09/07/wordpress-e2-80-ba-2-click-social-media-buttons-c2-ab-wordpress-plugins/WordPress › Social Opt In « WordPress Pluginshttps://www.rfc1437.de/2011/09/04/wordpress-e2-80-ba-social-opt-in-c2-ab-wordpress-plugins/Wir haben geheiratethttps://www.rfc1437.de/2011/09/04/wir-haben-geheiratet/SCO verliert endgültig gegen Novellhttps://www.rfc1437.de/2011/08/31/sco-verliert-endgultig-gegen-novell/Panasonic launches Lumix G X Vario PZ 14-42mm F3.5-5.6 OIS pancake: Digital Photography Reviewhttps://www.rfc1437.de/2011/08/26/panasonic-launches-lumix-g-x-vario-pz-14-42mm-f3-5-5-6-ois-pancake-digital-photography-review/Rote Grützehttps://www.rfc1437.de/2011/08/25/rote-grutze/Sony-August-2011-New-Productshttps://www.rfc1437.de/2011/08/24/sony-august-2011-new-products/PyPy Status Blog: We need Software Transactional Memoryhttps://www.rfc1437.de/2011/08/23/pypy-status-blog-we-need-software-transactional-memory/Setup services on your Pod - GitHubhttps://www.rfc1437.de/2011/08/23/setup-services-on-your-pod-github/Why Im not on Google Plus - Charlies Diaryhttps://www.rfc1437.de/2011/08/23/why-im-not-on-google-plus-charlies-diary/Luban: a generic “language” for creating user interface — luban v0.2 documentationhttps://www.rfc1437.de/2011/08/22/luban-a-generic-e2-80-9clanguage-e2-80-9d-for-creating-user-interface-e2-80-94-luban-v0-2-documentation/Mystische Kreaturenhttps://www.rfc1437.de/2011/08/21/mystische-kreaturen/Sony NEX-7 full specs and images | Photo Rumorshttps://www.rfc1437.de/2011/08/21/sony-nex-7-full-specs-and-images-photo-rumors/Nachtflohmarkthttps://www.rfc1437.de/2011/08/20/nachtflohmarkt/PyPy Status Blog: PyPy 1.6 - kickass pandahttps://www.rfc1437.de/2011/08/19/pypy-status-blog-pypy-1-6-kickass-panda/Markt in Münsterhttps://www.rfc1437.de/2011/08/19/markt-in-munster/Breaking: HP Makes Big Shift on WebOS, Exiting Hardware Business - Ina Fried - Mobile - AllThingsDhttps://www.rfc1437.de/2011/08/18/breaking-hp-makes-big-shift-on-webos-exiting-hardware-business-ina-fried-mobile-allthingsd/The Python Standard Library By Example - Doug Hellmannhttps://www.rfc1437.de/2011/08/18/the-python-standard-library-by-example-doug-hellmann/Python and fileinput - All thishttps://www.rfc1437.de/2011/08/18/python-and-fileinput-all-this/Libre - Home > Tools > GNAT GPL for LEGO MINDSTORMS NXT – Ravenscar Editionhttps://www.rfc1437.de/2011/08/17/libre-home-tools-gnat-gpl-for-lego-mindstorms-nxt-e2-80-93-ravenscar-edition/Cross-domain communications with JSONP, Part 1: Combine JSONP and jQuery to quickly build powerful mashupshttps://www.rfc1437.de/2011/08/17/cross-domain-communications-with-jsonp-part-1-combine-jsonp-and-jquery-to-quickly-build-powerful-mashups/ipdbhttps://www.rfc1437.de/2011/08/17/ipdb/Official Google Blog: Supercharging Android: Google to Acquire Motorola Mobilityhttps://www.rfc1437.de/2011/08/15/official-google-blog-supercharging-android-google-to-acquire-motorola-mobility/Schneier on Security: New, Undeletable, Web Cookiehttps://www.rfc1437.de/2011/08/15/schneier-on-security-new-undeletable-web-cookie/Wildgulaschtopfhttps://www.rfc1437.de/2011/08/13/wildgulaschtopf/rad2py - Rapid Aplication Development platform for python - Google Project Hostinghttps://www.rfc1437.de/2011/08/12/rad2py-rapid-aplication-development-platform-for-python-google-project-hosting/RMoD: Fuelhttps://www.rfc1437.de/2011/08/12/rmod-fuel/SandstoneDb, Simple ActiveRecord Style Persistence in Squeakhttps://www.rfc1437.de/2011/08/12/sandstonedb-simple-activerecord-style-persistence-in-squeak/Coral — Pharo Smalltalk for scriptinghttps://www.rfc1437.de/2011/08/12/coral-e2-80-94-pharo-smalltalk-for-scripting/tode - tODE - the Object centric Development Environment - Google Project Hostinghttps://www.rfc1437.de/2011/08/12/tode-tode-the-object-centric-development-environment-google-project-hosting/CouchDB: Die Definitive Referenzhttps://www.rfc1437.de/2011/08/10/couchdb-die-definitive-referenz/Overview - Installable Web Apps - Google Codehttps://www.rfc1437.de/2011/08/10/overview-installable-web-apps-google-code/Privacy Fail: How Facebook Steals Your Friends Phone Numbers | Kurt von Moos.comhttps://www.rfc1437.de/2011/08/10/privacy-fail-how-facebook-steals-your-friends-phone-numbers-kurt-von-moos-com/Kindle Cloud Readerhttps://www.rfc1437.de/2011/08/10/kindle-cloud-reader/mutle/vim.safariextension - GitHubhttps://www.rfc1437.de/2011/08/09/mutlevim-safariextension-github/vimlike-onsafari - Safari keybind changes like VIM. - Google Project Hostinghttps://www.rfc1437.de/2011/08/09/vimlike-onsafari-safari-keybind-changes-like-vim-google-project-hosting/Update on UIKit lighthouse platformhttps://www.rfc1437.de/2011/08/09/update-on-uikit-lighthouse-platform/Time Machine - Frequently Asked Questions 30. What are Local Snapshots?https://www.rfc1437.de/2011/08/09/time-machine-frequently-asked-questions-30-what-are-local-snapshots/Telefontarife können einem echt den Spaß verderbenhttps://www.rfc1437.de/2011/08/08/telefontarife-konnen-einen-echt-den-spas-verderben/Map Tunneling Toolhttps://www.rfc1437.de/2011/08/08/map-tunneling-tool/Sankra Software: Disable OS X Lion Resume per applicationhttps://www.rfc1437.de/2011/08/08/sankra-software-disable-os-x-lion-resume-per-application/Modula-3 Resource Pagehttps://www.rfc1437.de/2011/08/08/modula-3-resource-page/Magpie Guide: Welcomehttps://www.rfc1437.de/2011/08/08/magpie-guide-welcome/Straßenfest Hammer Straße 2011https://www.rfc1437.de/2011/08/07/strasenfest-hammer-strase-2011/Internet-Law » Friedrich uns graut vor Dirhttps://www.rfc1437.de/2011/08/07/internet-law-c2-bb-friedrich-uns-graut-vor-dir/the "useless" languagehttps://www.rfc1437.de/2011/08/07/the-useless-language/Groklaw - A Brief Explanation of Microsofts Anti-Google Patent FUD ~ by pjhttps://www.rfc1437.de/2011/08/06/groklaw-a-brief-explanation-of-microsofts-anti-google-patent-fud-by-pj/Ricoh GXR Mount A12 Previewhttps://www.rfc1437.de/2011/08/05/ricoh-gxr-mount-a12-preview/Xcode4 / Objective Pascal - Available Fileshttps://www.rfc1437.de/2011/08/03/xcode4-objective-pascal-available-files/extpascal - Ext JS wrapper for Object Pascal - Google Project Hostinghttps://www.rfc1437.de/2011/08/03/extpascal-ext-js-wrapper-for-object-pascal-google-project-hosting/sausage.js - examples - The Core APIhttps://www.rfc1437.de/2011/08/03/sausage-js-examples-the-core-api/Okito.net — On SproutCore 2.0https://www.rfc1437.de/2011/08/03/okito-net-e2-80-94-on-sproutcore-2-0/Pascal Script | RemObjects Softwarehttps://www.rfc1437.de/2011/08/03/pascal-script-remobjects-software/Killer rat daubs fur with poison-arrow plant toxins - life - 03 August 2011 - New Scientisthttps://www.rfc1437.de/2011/08/03/killer-rat-daubs-fur-with-poison-arrow-plant-toxins-life-03-august-2011-new-scientist/Get Started Guide « PhoneGaphttps://www.rfc1437.de/2011/08/01/get-started-guide-c2-ab-phonegap/Python, SymPy and Quantum Physicshttps://www.rfc1437.de/2011/08/01/python-sympy-and-quantum-physics/Blues Jam im Bunten Vogelhttps://www.rfc1437.de/2011/08/01/blues-jam-im-bunten-vogel/wsgi_litehttps://www.rfc1437.de/2011/08/01/wsgi-lite/Allergologie :: Allergene Allergien allergologisch allergischhttps://www.rfc1437.de/2011/07/31/allergologie-allergene-allergien-allergologisch-allergisch/pyglet 1.1.3 fails on Snow Leopard with python 2.6 snow leopards default - Cross-platform windowing and multimedia library for Python. - Google Project Hostinghttps://www.rfc1437.de/2011/07/31/pyglet-1-1-3-fails-on-snow-leopard-with-python-2-6-snow-leopards-default-cross-platform-windowing-and-multimedia-library-for-python-google-project-hosting/Innovations in\_iPythonhttps://www.rfc1437.de/2011/07/31/innovations-in-c2-a0ipython/Kunst trifft Kohlhttps://www.rfc1437.de/2011/07/31/kunst-trifft-kohl/WSGI and the Pluggable Pipe Dream | Armin Ronachers Thoughts and Writingshttps://www.rfc1437.de/2011/07/29/wsgi-and-the-pluggable-pipe-dream-armin-ronachers-thoughts-and-writings/Gambas - Gambas Almost Means Basichttps://www.rfc1437.de/2011/07/29/gambas-gambas-almost-means-basic/TL Omnis - Omnis Downloadshttps://www.rfc1437.de/2011/07/29/tl-omnis-omnis-downloads/Lazarushttps://www.rfc1437.de/2011/07/29/lazarus/HyperNext Studiohttps://www.rfc1437.de/2011/07/29/hypernext-studio/Whalesong: a Racket to JavaScript compilerhttps://www.rfc1437.de/2011/07/29/whalesong-a-racket-to-javascript-compiler/WebKit in PyQt - rendering web pageshttps://www.rfc1437.de/2011/07/29/webkit-in-pyqt-rendering-web-pages/Anonymous und LulzSec: "Sperrt eure PayPal-Konten" - Netzpolitik - derStandard.at › Webhttps://www.rfc1437.de/2011/07/28/anonymous-und-lulzsec-sperrt-eure-paypal-konten-netzpolitik-derstandard-at-e2-80-ba-web/CodeMirrorhttps://www.rfc1437.de/2011/07/27/codemirror/Harbour Project - Homehttps://www.rfc1437.de/2011/07/27/harbour-project-home/Orange - Data Mining Fruitful & Funhttps://www.rfc1437.de/2011/07/27/orange-data-mining-fruitful-fun/Sage: Open Source Mathematics Softwarehttps://www.rfc1437.de/2011/07/27/sage-open-source-mathematics-software/The Xavisys WordPress Plugin Framework - Xavisyshttps://www.rfc1437.de/2011/07/27/the-xavisys-wordpress-plugin-framework-xavisys/BuddyPress.orghttps://www.rfc1437.de/2011/07/27/buddypress-org/On Safarihttps://www.rfc1437.de/2011/07/27/on-safari/EL34 - The home of Eddie - Abouthttps://www.rfc1437.de/2011/07/27/el34-the-home-of-eddie-about/Ultimatum: Paypal will in Deutschland Kuba-Embargo durchdrücken - Golem.dehttps://www.rfc1437.de/2011/07/27/ultimatum-paypal-will-in-deutschland-kuba-embargo-durchdrucken-golem-de/Creating Apps Using AppleScript Objective-Chttps://www.rfc1437.de/2011/07/26/creating-apps-using-applescript-objective-c/SuperCard on Lionhttps://www.rfc1437.de/2011/07/26/supercard-on-lion/Mac\_OS\_X 10.7 Lion Automation Release Noteshttps://www.rfc1437.de/2011/07/26/mac-c2-a0os-c2-a0x-10-7-lion-automation-release-notes/Meedia: Meck-Pomms CDU wirbt mit “C wie Zukunft”https://www.rfc1437.de/2011/07/25/meedia-meck-pomms-cdu-wirbt-mit-e2-80-9cc-wie-zukunft-e2-80-9d/Trunk Notes | Apps On The Movehttps://www.rfc1437.de/2011/07/25/trunk-notes-apps-on-the-move/Die seltsamen Fakten des Herrn Uhl - mrtopf.dehttps://www.rfc1437.de/2011/07/25/die-seltsamen-fakten-des-herrn-uhl-mrtopf-de/XMPPFLASK — XmppFlask v0.1 documentationhttps://www.rfc1437.de/2011/07/25/xmppflask-e2-80-94-xmppflask-v0-1-documentation/Social Networks und meine Nutzung von denselbenhttps://www.rfc1437.de/2011/07/25/social-networks-und-meine-nutzung-von-denselben/flot - Attractive Javascript plotting for jQuery - Google Project Hostinghttps://www.rfc1437.de/2011/07/25/flot-attractive-javascript-plotting-for-jquery-google-project-hosting/EVIL is Kinghttps://www.rfc1437.de/2011/07/24/evil-is-king/clojurescript demo convex hullhttps://www.rfc1437.de/2011/07/24/clojurescript-demo-convex-hull/Flurstücke 2011 - Généric Vapeurhttps://www.rfc1437.de/2011/07/23/flurstucke-2011-generic-vapeur/First Demonstration of Time Cloaking\_ - Technology Reviewhttps://www.rfc1437.de/2011/07/22/first-demonstration-of-time-cloaking-c2-a0-technology-review/Elements+https://www.rfc1437.de/2011/07/22/elements/Elemental - Integrating Photoshop Elements with Lightroomhttps://www.rfc1437.de/2011/07/22/elemental-integrating-photoshop-elements-with-lightroom/ShareMeNothttps://www.rfc1437.de/2011/07/20/sharemenot/Pattern Matching In Pythonhttps://www.rfc1437.de/2011/07/20/pattern-matching-in-python/Bash on Ballshttps://www.rfc1437.de/2011/07/20/bash-on-balls/FAQ - Kotlin - Confluencehttps://www.rfc1437.de/2011/07/20/faq-kotlin-confluence/Wenig Trauer um elektronisches Lohnmeldeverfahren ELENA | tagesschau.dehttps://www.rfc1437.de/2011/07/19/wenig-trauer-um-elektronisches-lohnmeldeverfahren-elena-tagesschau-de/Copiepresse: Googles Suchmaschine zeigt wieder belgische Zeitungen - Golem.dehttps://www.rfc1437.de/2011/07/19/copiepresse-googles-suchmaschine-zeigt-wieder-belgische-zeitungen-golem-de/WSGID When your WSGI app becomes a nix daemonhttps://www.rfc1437.de/2011/07/18/wsgid-when-your-wsgi-app-becomes-a-nix-daemon/Typekithttps://www.rfc1437.de/2011/07/18/typekit/Elnode - an Emacs version of node.jshttps://www.rfc1437.de/2011/07/18/elnode-an-emacs-version-of-node-js/Replication, atomicity and order in distributed systemshttps://www.rfc1437.de/2011/07/18/replication-atomicity-and-order-in-distributed-systems/Kivy: a crossplatform framework for creating NUI applicationshttps://www.rfc1437.de/2011/07/18/kivy-a-crossplatform-framework-for-creating-nui-applications/Simple, Secure, Scalable Web Development with Opahttps://www.rfc1437.de/2011/07/18/simple-secure-scalable-web-development-with-opa/Bulbflow: a New Python Framework for Graph Databaseshttps://www.rfc1437.de/2011/07/17/bulbflow-a-new-python-framework-for-graph-databases/Core Data - The Pragmatic Bookshelfhttps://www.rfc1437.de/2011/07/15/core-data-the-pragmatic-bookshelf/Scripts Tagged fluid - Userscripts.orghttps://www.rfc1437.de/2011/07/14/scripts-tagged-fluid-userscripts-org/Responsive Applications - Monohttps://www.rfc1437.de/2011/07/14/responsive-applications-mono/MonoMac und XCode 4https://www.rfc1437.de/2011/07/14/monotouch-news/Jtalk Smalltalkhttps://www.rfc1437.de/2011/07/13/jtalk-smalltalk/jQuery vs MooTools: Choosing Between Two Great JavaScript Frameworkshttps://www.rfc1437.de/2011/07/13/jquery-vs-mootools-choosing-between-two-great-javascript-frameworks/Aber da muss man doch was gegen tun! - Die Raummaschinehttps://www.rfc1437.de/2011/07/13/aber-da-muss-man-doch-was-gegen-tun-die-raummaschine/Google Plus RSS Feedshttps://www.rfc1437.de/2011/07/13/google-plus-rss-feeds/happy / overview – Bitbuckethttps://www.rfc1437.de/2011/07/13/happy-overview-e2-80-93-bitbucket/Pyrolog / overview – Bitbuckethttps://www.rfc1437.de/2011/07/13/pyrolog-overview-e2-80-93-bitbucket/The Node Beginner Book » A comprehensive Node.js tutorialhttps://www.rfc1437.de/2011/07/12/the-node-beginner-book-c2-bb-a-comprehensive-node-js-tutorial/JQuery-Wysiwym - PushingKarmahttps://www.rfc1437.de/2011/07/12/jquery-wysiwym-pushingkarma/pdf.js reached its first milestone < Chris Pitchin Heyhttps://www.rfc1437.de/2011/07/12/pdf-js-reached-its-first-milestone-chris-pitchin-hey/PDFKit — A PDF Generation Library for Nodehttps://www.rfc1437.de/2011/07/12/pdfkit-e2-80-94-a-pdf-generation-library-for-node/manuel/edgelisp - GitHubhttps://www.rfc1437.de/2011/07/12/manueledgelisp-github/paver/paver - GitHubhttps://www.rfc1437.de/2011/07/12/paverpaver-github/Uhrwerk in Hiltruphttps://www.rfc1437.de/2011/07/12/uhrwerk-in-hiltrup/PerlDancer - The easiest way to write web applications with Perlhttps://www.rfc1437.de/2011/07/11/perldancer-the-easiest-way-to-write-web-applications-with-perl/Tuning Your PostgreSQL Server - PostgreSQL wikihttps://www.rfc1437.de/2011/07/11/tuning-your-postgresql-server-postgresql-wiki/Max Pechstein im Ahlener Kunstmuseumhttps://www.rfc1437.de/2011/07/10/max-pechstein-im-ahlener-kunstmuseum/Datenschutz und Social Network Buttonshttps://www.rfc1437.de/2011/07/10/datenschutz-und-social-network-buttons/danlucraft/git.js - GitHubhttps://www.rfc1437.de/2011/07/10/danlucraftgit-js-github/Google+https://www.rfc1437.de/2011/07/09/google/Operation Quiche erfolgreichhttps://www.rfc1437.de/2011/07/08/operation-quiche-erfolgreich/Stiivi / cubes / overview – Bitbuckethttps://www.rfc1437.de/2011/07/08/stiivi-cubes-overview-e2-80-93-bitbucket/Tree for policy-settings-basic in MeeGo Multimedia - MeeGohttps://www.rfc1437.de/2011/07/08/tree-for-policy-settings-basic-in-meego-multimedia-meego/Auto Refresh Plus - Chrome Web Storehttps://www.rfc1437.de/2011/07/08/auto-refresh-plus-chrome-web-store/DropKick - a jQuery plugin for beautiful dropdownshttps://www.rfc1437.de/2011/07/07/dropkick-a-jquery-plugin-for-beautiful-dropdowns/WordPress 3.2 now availablehttps://www.rfc1437.de/2011/07/06/wordpress-3-2-now-available/Deshalb müssen wir Panzer an Saudi-Arabien verkaufen | Notizbloghttps://www.rfc1437.de/2011/07/06/deshalb-mussen-wir-panzer-an-saudi-arabien-verkaufen-notizblog/Prowl - iOS Push Notificationshttps://www.rfc1437.de/2011/07/06/prowl-ios-push-notifications/Google+: Facebook verhindert Export von Freunden - Golem.dehttps://www.rfc1437.de/2011/07/05/google-facebook-verhindert-export-von-freunden-golem-de/DSK: „Spiegel” beklagt Vorverurteilung « Stefan Niggemeierhttps://www.rfc1437.de/2011/07/04/dsk-e2-80-9espiegel-e2-80-9d-beklagt-vorverurteilung-c2-ab-stefan-niggemeier/realmacsoftwares Profile - GitHubhttps://www.rfc1437.de/2011/07/04/realmacsoftwares-profile-github/SiteMap Loghound.comhttps://www.rfc1437.de/2011/07/04/sitemap-loghound-com/PlusKit Loghound.comhttps://www.rfc1437.de/2011/07/04/pluskit-loghound-com/RapidScripthttps://www.rfc1437.de/2011/07/04/rapidscript/...und nebenan brennt das Reaktorgelände | G! - gutjahrs bloghttps://www.rfc1437.de/2011/07/04/und-nebenan-brennt-das-reaktorgelande-g-gutjahrs-blog/Sommerkonzert Millima Mabondehttps://www.rfc1437.de/2011/07/04/millima-mabonde/The Dropbox Blog » Blog Archive » Changes to our policies updatedhttps://www.rfc1437.de/2011/07/03/the-dropbox-blog-c2-bb-blog-archive-c2-bb-changes-to-our-policies-updated/Ubuntu Cron-Fehler - Module is unknown - nach libpam Upgrade Update - Systemdateien - administratorhttps://www.rfc1437.de/2011/07/02/ubuntu-cron-fehler-module-is-unknown-nach-libpam-upgrade-update-systemdateien-administrator/Digitalkameras: Ricoh kauft Pentax - Golem.dehttps://www.rfc1437.de/2011/07/01/digitalkameras-ricoh-kauft-pentax-golem-de/Abstiegsszenariohttps://www.rfc1437.de/2011/06/30/abstiegsszenario/Opa: Advancing web development to the next generationhttps://www.rfc1437.de/2011/06/30/opa-advancing-web-development-to-the-next-generation/SymPyhttps://www.rfc1437.de/2011/06/30/sympy/PyPy Status Blog: Global Interpreter Lock, or how to kill ithttps://www.rfc1437.de/2011/06/30/pypy-status-blog-global-interpreter-lock-or-how-to-kill-it/BBC News - Great Exhibition faces London 2012 legal actionhttps://www.rfc1437.de/2011/06/29/bbc-news-great-exhibition-faces-london-2012-legal-action/jsPlumb demo - jQueryhttps://www.rfc1437.de/2011/06/29/jsplumb-demo-jquery/Paper.js — Paper.jshttps://www.rfc1437.de/2011/06/28/paper-js-e2-80-94-paper-js/Installing gitorious on Ubuntu 10.04https://www.rfc1437.de/2011/06/27/installing-gitorious-on-ubuntu/Sync BitBucket and GitHub - Ramanas Bloghttps://www.rfc1437.de/2011/06/27/sync-bitbucket-and-github-ramanas-blog/Issue Buckethttps://www.rfc1437.de/2011/06/27/issue-bucket/iOctocat is your GitHub companion for the iPhone and iPod Touchhttps://www.rfc1437.de/2011/06/27/ioctocat-is-your-github-companion-for-the-iphone-and-ipod-touch/thecodejunkie/Nancy - GitHubhttps://www.rfc1437.de/2011/06/27/thecodejunkienancy-github/Bistrohttps://www.rfc1437.de/2011/06/27/bistro/scalatra/scalatra - GitHubhttps://www.rfc1437.de/2011/06/27/scalatrascalatra-github/Ausflug nach Enschedehttps://www.rfc1437.de/2011/06/26/enschede/Send in Münsterhttps://www.rfc1437.de/2011/06/25/send-in-muenster/The Larch Environmenthttps://www.rfc1437.de/2011/06/24/the-larch-environment/django-gae2django - Django-based implementation of App Engine APIs - Google Project Hostinghttps://www.rfc1437.de/2011/06/24/django-gae2django-django-based-implementation-of-app-engine-apis-google-project-hosting/DocumentClouds VisualSearch.jshttps://www.rfc1437.de/2011/06/24/documentclouds-visualsearch-js/Journey North: Monarch Butterflyhttps://www.rfc1437.de/2011/06/24/journey-north-monarch-butterfly/Ein Besuch im Zoohttps://www.rfc1437.de/2011/06/23/im-zoo/The Online Photographer: The Pentax Q Systemhttps://www.rfc1437.de/2011/06/23/the-online-photographer-the-pentax-q-system/SourceTree | Mercurial and Git GUI for Mac OS Xhttps://www.rfc1437.de/2011/06/23/sourcetree-mercurial-and-git-gui-for-mac-os-x-2/GitHub for Machttps://www.rfc1437.de/2011/06/23/github-for-mac/traits.js - Traits for Javascripthttps://www.rfc1437.de/2011/06/22/traits-js-traits-for-javascript/Technical Discovery: Speeding up Python NumPy, Cython, and Weavehttps://www.rfc1437.de/2011/06/22/technical-discovery-speeding-up-python-numpy-cython-and-weave/Circus Ponies NoteBook for iPad - Take Great Noteshttps://www.rfc1437.de/2011/06/22/circus-ponies-notebook-for-ipad-take-great-notes/OmniOutliner for iPad - Products - The Omni Grouphttps://www.rfc1437.de/2011/06/22/omnioutliner-for-ipad-products-the-omni-group/Leos Home Pagehttps://www.rfc1437.de/2011/06/22/leos-home-page/Brennender Berg – Wikipediahttps://www.rfc1437.de/2011/06/22/brennender-berg-e2-80-93-wikipedia/Firefox Add-on Builder and SDKhttps://www.rfc1437.de/2011/06/22/firefox-add-on-builder-and-sdk/Firmware 04 für Sony NEX Kamerashttps://www.rfc1437.de/2011/06/22/firmware-04-fur-sony-nex-kameras/Python/Harmattan - MeeGo wikihttps://www.rfc1437.de/2011/06/22/pythonharmattan-meego-wiki/Nokia N9 first hands-on! update: video -- Engadgethttps://www.rfc1437.de/2011/06/22/nokia-n9-first-hands-on-update-video-engadget/gcc python plugin and static analyser for CPython sources - comp.lang.python.announce | Google Groupshttps://www.rfc1437.de/2011/06/22/gcc-python-plugin-and-static-analyser-for-cpython-sources-comp-lang-python-announce-google-groups/Dirty lens articlehttps://www.rfc1437.de/2011/06/22/dirty-lens-article/Verleger reichen Klage gegen Tagesschau-App ein | tagesschau.dehttps://www.rfc1437.de/2011/06/21/verleger-reichen-klage-gegen-tagesschau-app-ein-tagesschau-de/The story of the Gömböc | plus.maths.orghttps://www.rfc1437.de/2011/06/20/the-story-of-the-gomboc-plus-maths-org/LR/Blog – Export directly from Lightroom 2 to your Blog!Photographers Toolbox | Photographers Toolboxhttps://www.rfc1437.de/2011/06/20/lrblog-e2-80-93-export-directly-from-lightroom-2-to-your-blogphotographers-toolbox-photographers-toolbox/What Is Inside A Cathttps://www.rfc1437.de/2011/06/20/what-is-inside-a-cat/SparkleShare - Sharing work made easyhttps://www.rfc1437.de/2011/06/20/sparkleshare-sharing-work-made-easy/Gesundheitsreform: Zahnbehandlungen sollen teuer werden | Wirtschaft | ZEIT ONLINEhttps://www.rfc1437.de/2011/06/19/gesundheitsreform-zahnbehandlungen-sollen-teuer-werden-wirtschaft-zeit-online/SONY PRS-505 Firmware-Update + Customizing - MobileRead Forumshttps://www.rfc1437.de/2011/06/19/sony-prs-505-firmware-update-customizing-mobileread-forums/Bundeswehr-Dozent: Plagiator gibt den Doktortitel zurück | Studium\_- Frankfurter Rundschauhttps://www.rfc1437.de/2011/06/19/bundeswehr-dozent-plagiator-gibt-den-doktortitel-zuruck-studium-c2-a0-frankfurter-rundschau/Der Postillon: Der Postillon erklärt: Was kann das Nationale Cyber-Abwehrzentrum?https://www.rfc1437.de/2011/06/19/der-postillon-der-postillon-erklart-was-kann-das-nationale-cyber-abwehrzentrum/Honeybees Might Have Emotions | Wired Science | Wired.comhttps://www.rfc1437.de/2011/06/18/honeybees-might-have-emotions-wired-science-wired-com/Skulpthttps://www.rfc1437.de/2011/06/16/skulpt/MAXIMAhttps://www.rfc1437.de/2011/06/15/maxima/JQuery Form Wizardhttps://www.rfc1437.de/2011/06/15/jquery-form-wizard/josevalim/elixir - GitHubhttps://www.rfc1437.de/2011/06/15/josevalimelixir-github/HTC Desire wont be getting an official Gingerbread update | Android Centralhttps://www.rfc1437.de/2011/06/15/htc-desire-wont-be-getting-an-official-gingerbread-update-android-central/Tumult Hypehttps://www.rfc1437.de/2011/06/14/tumult-hype/ccons - Interactive Console for the C Programming Language - Google Project Hostinghttps://www.rfc1437.de/2011/06/14/ccons-interactive-console-for-the-c-programming-language-google-project-hosting/Asciiflow - ASCII Flow Diagram Toolhttps://www.rfc1437.de/2011/06/14/asciiflow-ascii-flow-diagram-tool/Black Stone Raidershttps://www.rfc1437.de/2011/06/11/black-stone-raiders/Grünflächenunterhaltunghttps://www.rfc1437.de/2011/06/11/gruenflaechenunterhaltung/burrahobbithttps://www.rfc1437.de/2011/06/11/burrahobbit/Bonnhttps://www.rfc1437.de/2011/06/08/bonn/Neulich auf Flickrhttps://www.rfc1437.de/2011/06/07/neulich-auf-flickr-4/Cloud9 meets Bitbucket - Cloud9 IDEs Posteroushttps://www.rfc1437.de/2011/06/07/cloud9-meets-bitbucket-cloud9-ides-posterous/Metaverse Ink Blog» Blog Archive » The 4,096 “bug”https://www.rfc1437.de/2011/06/05/metaverse-ink-blog-c2-bb-blog-archive-c2-bb-the-4096-e2-80-9cbug-e2-80-9d/Why arent you using git-flow? - Jeff Kreeftmeijerhttps://www.rfc1437.de/2011/06/05/why-arent-you-using-git-flow-jeff-kreeftmeijer/Comparison to Python | Cobrahttps://www.rfc1437.de/2011/06/04/comparison-to-python-cobra/Clack - Web Application Environment for Common Lisphttps://www.rfc1437.de/2011/06/04/clack-web-application-environment-for-common-lisp/Polycodehttps://www.rfc1437.de/2011/06/04/polycode/CouchDB: The Definitive Guidehttps://www.rfc1437.de/2011/06/01/couchdb-the-definitive-guide/Simple JavaScript Applications with CouchDB - CouchApp.orghttps://www.rfc1437.de/2011/06/01/simple-javascript-applications-with-couchdb-couchapp-org/Its About The Hashbangshttps://www.rfc1437.de/2011/06/01/its-about-the-hashbangs/Function Reference/site url « WordPress Codexhttps://www.rfc1437.de/2011/05/31/function-referencesite-url-c2-ab-wordpress-codex/Shedding Bikes: Programming Culture And Philosophyhttps://www.rfc1437.de/2011/05/31/shedding-bikes-programming-culture-and-philosophy/SSL and Cookies in WordPress 2.6 « Ryan Borenhttps://www.rfc1437.de/2011/05/30/ssl-and-cookies-in-wordpress-2-6-c2-ab-ryan-boren/cloud9https://www.rfc1437.de/2011/05/30/cloud9/Hackers broke into Lockheed Martin: source - Technology & science - Security - msnbc.comhttps://www.rfc1437.de/2011/05/28/hackers-broke-into-lockheed-martin-source-technology-science-security-msnbc-com/Spring cleaning for some of our APIs - The official Google Code bloghttps://www.rfc1437.de/2011/05/28/spring-cleaning-for-some-of-our-apis-the-official-google-code-blog/IPhone PPTP VPN – GRE Protokoll Probleme | it-fabrik bloghttps://www.rfc1437.de/2011/05/27/iphone-pptp-vpn-e2-80-93-gre-protokoll-probleme-it-fabrik-blog/remvee/clj-android - GitHubhttps://www.rfc1437.de/2011/05/27/remveeclj-android-github/scalaforandroid - Scala for Android - Google Project Hostinghttps://www.rfc1437.de/2011/05/27/scalaforandroid-scala-for-android-google-project-hosting/mirah/pindah - GitHubhttps://www.rfc1437.de/2011/05/27/mirahpindah-github/Ruboto: Ruby on Androidhttps://www.rfc1437.de/2011/05/27/ruboto-ruby-on-android/Rubotohttps://www.rfc1437.de/2011/05/26/ruboto/MS Optical Super Triplet Perar 3.5/35 Mark II | japan exposureshttps://www.rfc1437.de/2011/05/25/ms-optical-super-triplet-perar-3-535-mark-ii-japan-exposures/Zotonic's Hot Features — Zotonichttps://www.rfc1437.de/2011/05/25/zotonics-hot-features-e2-80-94-zotonic/hij1nx/SugarSkull - GitHubhttps://www.rfc1437.de/2011/05/25/hij1nxsugarskull-github/Seesaw - GitHubhttps://www.rfc1437.de/2011/05/25/seesaw-github/Tequila Suicide | Blogrebellen Kreuzberghttps://www.rfc1437.de/2011/05/25/tequila-suicide-blogrebellen-kreuzberg/Single Page Apps with Node.js. - blog.nodejitsu.com - scaling node.js applications one callback at a time.https://www.rfc1437.de/2011/05/23/single-page-apps-with-node-js-blog-nodejitsu-com-scaling-node-js-applications-one-callback-at-a-time/llama font - say it in llamahttps://www.rfc1437.de/2011/05/23/llama-font-say-it-in-llama/FredHQ - Roundabout for jQuery by Fred LeBlanchttps://www.rfc1437.de/2011/05/23/fredhq-roundabout-for-jquery-by-fred-leblanc/Servergate - geht garnicht.https://www.rfc1437.de/2011/05/21/servergate-geht-garnicht/Cloud Foundry - Make it Yours!https://www.rfc1437.de/2011/05/20/cloud-foundry-make-it-yours/AndTidWiki | mgBloghttps://www.rfc1437.de/2011/05/20/andtidwiki-mgblog/Introducing JetBrains dotPeek - dotPeek - Confluencehttps://www.rfc1437.de/2011/05/20/introducing-jetbrains-dotpeek-dotpeek-confluence/TiddlySpace/tiddlyspace - GitHubhttps://www.rfc1437.de/2011/05/19/tiddlyspacetiddlyspace-github/TWMobilehttps://www.rfc1437.de/2011/05/19/twmobile/QuickSilver Networkhttps://www.rfc1437.de/2011/05/19/quicksilver-network/Urteil: Sharehoster müssen externe Linksammlungen prüfen - Golem.dehttps://www.rfc1437.de/2011/05/18/urteil-sharehoster-mussen-externe-linksammlungen-prufen-golem-de/On TermKit | Steven Wittens - Acko.nethttps://www.rfc1437.de/2011/05/18/on-termkit-steven-wittens-acko-net/AI art | painting robot | art | expert systemshttps://www.rfc1437.de/2011/05/18/ai-art-painting-robot-art-expert-systems/xmlisp - eXtreme Media Lisp: Rich media cross-platform programming for 3D (OpenGL) and 2D applications - Google Project Hostinghttps://www.rfc1437.de/2011/05/18/xmlisp-extreme-media-lisp-rich-media-cross-platform-programming-for-3d-opengl-and-2d-applications-google-project-hosting/MilkPack - Edgar Gonçalveshttps://www.rfc1437.de/2011/05/18/milkpack-edgar-goncalves/michaelmacinnis/oh - GitHubhttps://www.rfc1437.de/2011/05/18/michaelmacinnisoh-github/Javascript PC Emulator - Technical Noteshttps://www.rfc1437.de/2011/05/18/javascript-pc-emulator-technical-notes/Infinite Scroll « WordPress Pluginshttps://www.rfc1437.de/2011/05/18/infinite-scroll-c2-ab-wordpress-plugins/Lightroom Developer Center | Adobe Developer Connectionhttps://www.rfc1437.de/2011/05/17/lightroom-developer-center-adobe-developer-connection/Neulich auf Flickrhttps://www.rfc1437.de/2011/05/16/neulich-auf-flickr-3/Microsoft Small Basichttps://www.rfc1437.de/2011/05/16/microsoft-small-basic/WordPress › Pressbox « WordPress Pluginshttps://www.rfc1437.de/2011/05/16/wordpress-e2-80-ba-pressbox-c2-ab-wordpress-plugins/Teures Gesundheitswesen: Kassen rechnen mit\_Zusatzbeitrag von 70 Euro - SPIEGEL ONLINE - Nachrichten - Wirtschafthttps://www.rfc1437.de/2011/05/16/teures-gesundheitswesen-kassen-rechnen-mit-c2-a0zusatzbeitrag-von-70-euro-spiegel-online-nachrichten-wirtschaft/Leistungsschutzrecht: Bundesjustizministerin über eine Abgabenpflicht für Zitate - Golem.dehttps://www.rfc1437.de/2011/05/16/leistungsschutzrecht-bundesjustizministerin-uber-eine-abgabenpflicht-fur-zitate-golem-de/ZenphotoPress « WordPress Pluginshttps://www.rfc1437.de/2011/05/16/zenphotopress-c2-ab-wordpress-plugins/From Me To Youhttps://www.rfc1437.de/2011/05/16/from-me-to-you/Dropbox Lied to Users About Data Security, Complaint to FTC Alleges | Threat Level | Wired.comhttps://www.rfc1437.de/2011/05/15/dropbox-lied-to-users-about-data-security-complaint-to-ftc-alleges-threat-level-wired-com/match Technical Serviceshttps://www.rfc1437.de/2011/05/15/match-technical-services/Variochromat Homepagehttps://www.rfc1437.de/2011/05/15/variochromat-homepage/The Best Street Photographer You've Never Heard Of | Mother Joneshttps://www.rfc1437.de/2011/05/15/the-best-street-photographer-youve-never-heard-of-mother-jones/Stadtspaziergang mal wiederhttps://www.rfc1437.de/2011/05/14/stadtspaziergang-mal-wieder/Rund um den Stadthafenhttps://www.rfc1437.de/2011/05/14/rund-um-den-stadthafen/Writing Plugins for gedit 3 with Pythonhttps://www.rfc1437.de/2011/05/13/writing-plugins-for-gedit-3-with-python/Python Interpreter by Noam Gat -- Unity Asset Storehttps://www.rfc1437.de/2011/05/13/python-interpreter-by-noam-gat-unity-asset-store/micromongo — micromongo v0.1 documentationhttps://www.rfc1437.de/2011/05/13/micromongo-e2-80-94-micromongo-v0-1-documentation/execnet v1.0.9 documentationhttps://www.rfc1437.de/2011/05/13/execnet-v1-0-9-documentation/Home | Read the Docshttps://www.rfc1437.de/2011/05/13/home-read-the-docs/Mochi Labs - statebox, an eventually consistent data model for Erlang (and Riak)https://www.rfc1437.de/2011/05/13/mochi-labs-statebox-an-eventually-consistent-data-model-for-erlang-and-riak/pmundkur/odisco - GitHubhttps://www.rfc1437.de/2011/05/13/pmundkurodisco-github/Überlegungen zu Datenschutz, Kontrollverlust und anderen Dingenhttps://www.rfc1437.de/2011/05/13/uberlegungen-zu-datenschutz-kontrollverlust-und-anderen-dingen/Reinteract - Trachttps://www.rfc1437.de/2011/05/12/reinteract-trac/A successful Git branching model » nvie.comhttps://www.rfc1437.de/2011/05/12/a-successful-git-branching-model-c2-bb-nvie-com/counterclockwise - Counterclockwise is an Eclipse plugin helping developers write Clojure code - Google Project Hostinghttps://www.rfc1437.de/2011/05/12/counterclockwise-counterclockwise-is-an-eclipse-plugin-helping-developers-write-clojure-code-google-project-hosting/Typesafe - Overviewhttps://www.rfc1437.de/2011/05/12/typesafe-overview/LLVM Project Blog: What Every C Programmer Should Know About Undefined Behavior #1/3https://www.rfc1437.de/2011/05/12/llvm-project-blog-what-every-c-programmer-should-know-about-undefined-behavior-13/Wieder Kontrollen an deutsch-dänischer Grenze | tagesschau.dehttps://www.rfc1437.de/2011/05/11/wieder-kontrollen-an-deutsch-danischer-grenze-tagesschau-de/Twitter-Bilder: Verwirrung um Twitpic - Golem.dehttps://www.rfc1437.de/2011/05/11/twitter-bilder-verwirrung-um-twitpic-golem-de/RaptorDB - CodeProjecthttps://www.rfc1437.de/2011/05/11/raptordb-codeproject/App Engine Go Overview - Google App Engine - Google Codehttps://www.rfc1437.de/2011/05/11/app-engine-go-overview-google-app-engine-google-code/Owl Content » Blog Archive » Metaowl ist life!https://www.rfc1437.de/2011/05/10/owl-content-c2-bb-blog-archive-c2-bb-metaowl-ist-life/Microsoft Near Deal to Buy Skype for Nearly $8 Billion - WSJ.comhttps://www.rfc1437.de/2011/05/10/microsoft-near-deal-to-buy-skype-for-nearly-8-billion-wsj-com/The Ark In Space: Manul – the Cat that Time Forgothttps://www.rfc1437.de/2011/05/10/the-ark-in-space-manul-e2-80-93-the-cat-that-time-forgot/bconstantin / django_polymorphic / overview – Bitbuckethttps://www.rfc1437.de/2011/05/10/bconstantin-django-polymorphic-overview-e2-80-93-bitbucket/obensonne / hg-autosync / wiki / Home – Bitbuckethttps://www.rfc1437.de/2011/05/10/obensonne-hg-autosync-wiki-home-e2-80-93-bitbucket/The Visual Science Lab / Kirk Tuck: Approval. Tacit Approval. Implied Approval and "Street Photography."https://www.rfc1437.de/2011/05/10/the-visual-science-lab-kirk-tuck-approval-tacit-approval-implied-approval-and-street-photography/Mixing it up: when F# meets C#https://www.rfc1437.de/2011/05/10/mixing-it-up-when-f-meets-c/philikon / weaveclient-chromium / overview – Bitbuckethttps://www.rfc1437.de/2011/05/10/philikon-weaveclient-chromium-overview-e2-80-93-bitbucket-2/birkenfeld / karnickel / overview – Bitbuckethttps://www.rfc1437.de/2011/05/09/birkenfeld-karnickel-overview-e2-80-93-bitbucket/dyoo/moby-scheme - GitHubhttps://www.rfc1437.de/2011/05/09/dyoomoby-scheme-github/BLDGBLOG: Baarle-Hertoghttps://www.rfc1437.de/2011/05/09/bldgblog-baarle-hertog/Blurb Plug-In For Adobe Photoshop Lightroom 3 | Blurbhttps://www.rfc1437.de/2011/05/08/blurb-plug-in-for-adobe-photoshop-lightroom-3-blurb/Computer Science and Biology Come Together to Make Tree Identification a Snap | Newsdeskhttps://www.rfc1437.de/2011/05/08/computer-science-and-biology-come-together-to-make-tree-identification-a-snap-newsdesk/Wochenmarkt. Noch viel bunter.https://www.rfc1437.de/2011/05/07/wochenmarkt-noch-viel-bunter/Münster. Bunt.https://www.rfc1437.de/2011/05/07/munster-bunt/Acta: Lobbyisten wollen Acta-Prüfung durch den EuGH verhindern - Golem.dehttps://www.rfc1437.de/2011/05/06/acta-lobbyisten-wollen-acta-prufung-durch-den-eugh-verhindern-golem-de/Uni Bayreuth: Guttenberg hat absichtlich getäuscht | tagesschau.dehttps://www.rfc1437.de/2011/05/06/uni-bayreuth-guttenberg-hat-absichtlich-getauscht-tagesschau-de/Ralf Jäger: SPD-Innenminister will "sorgenfreie" Vorratsdatenspeicherung - Golem.dehttps://www.rfc1437.de/2011/05/06/ralf-jager-spd-innenminister-will-sorgenfreie-vorratsdatenspeicherung-golem-de/icylisper.in - jarkhttps://www.rfc1437.de/2011/05/06/icylisper-in-jark/Pygame Subset for Androidhttps://www.rfc1437.de/2011/05/06/home-e2-80-94-pygame-subset-for-android/android-scripting - Scripting Layer for Android brings scripting languages to Android. - Google Project Hostinghttps://www.rfc1437.de/2011/05/06/android-scripting-scripting-layer-for-android-brings-scripting-languages-to-android-google-project-hosting/PayPal Money Module « Snoopy Pfeffer’s Bloghttps://www.rfc1437.de/2011/05/06/paypal-money-module-c2-ab-snoopy-pfeffer-e2-80-99s-blog/SnoopyPfeffer/Mod-PayPal - GitHubhttps://www.rfc1437.de/2011/05/06/snoopypfeffermod-paypal-github/Tagbar, the Vim class browserhttps://www.rfc1437.de/2011/05/04/tagbar-the-vim-class-browser/ifttt / About ifttthttps://www.rfc1437.de/2011/05/04/ifttt-about-ifttt/Scala 2.9.0 RC3 | The Scala Programming Languagehttps://www.rfc1437.de/2011/05/04/scala-2-9-0-rc3-the-scala-programming-language/jQuery: » jQuery 1.6 Releasedhttps://www.rfc1437.de/2011/05/03/jquery-c2-bb-jquery-1-6-released/stanlemon.net : jgrowlhttps://www.rfc1437.de/2011/05/03/stanlemon-net-jgrowl/the m8 metadata projecthttps://www.rfc1437.de/2011/05/02/the-m8-metadata-project/inotify - get your file system supervisedhttps://www.rfc1437.de/2011/05/02/inotify-get-your-file-system-supervised/Ettenheim: Vergabe Kleinkunstpreis: Georg Schramm sorgt für Eklat im Europa-Park - badische-zeitung.dehttps://www.rfc1437.de/2011/05/01/ettenheim-vergabe-kleinkunstpreis-georg-schramm-sorgt-fur-eklat-im-europa-park-badische-zeitung-de/Aasee und Schloßgartenhttps://www.rfc1437.de/2011/05/01/aasee-und-schlosgarten/Taschentuchbaumhttps://www.rfc1437.de/2011/05/01/taschentuchbaum/UNO III Streetbike at Firebox.comhttps://www.rfc1437.de/2011/05/01/uno-iii-streetbike-at-firebox-com/Nubrella.comhttps://www.rfc1437.de/2011/05/01/nubrella-com/PyPy Status Blog: PyPy 1.5 Released: Catching Uphttps://www.rfc1437.de/2011/05/01/pypy-status-blog-pypy-1-5-released-catching-up/Neulich auf Flickrhttps://www.rfc1437.de/2011/04/30/neulich-auf-flickr-2/spock - The Chicken Scheme wikihttps://www.rfc1437.de/2011/04/29/spock-the-chicken-scheme-wiki/turbolent/ralph - GitHubhttps://www.rfc1437.de/2011/04/29/turbolentralph-github/Flusspferd - CommonJS platform | Javascript bindings for C++https://www.rfc1437.de/2011/04/29/flusspferd-commonjs-platform-javascript-bindings-for-c/PDP-11 emulatorhttps://www.rfc1437.de/2011/04/29/pdp-11-emulator/Nochmal iPhone Location Datenhttps://www.rfc1437.de/2011/04/29/nochmal-iphone-location-daten/Paper Airplanes | Paper Airplanes HQhttps://www.rfc1437.de/2011/04/28/paper-airplanes-paper-airplanes-hq/kiorky/spynner - GitHubhttps://www.rfc1437.de/2011/04/28/kiorkyspynner-github/IgniteInteractiveStudio/SLSharp - GitHubhttps://www.rfc1437.de/2011/04/28/igniteinteractivestudioslsharp-github/IronSchemehttps://www.rfc1437.de/2011/04/28/ironscheme/F Sharp Programming - Wikibooks, open books for an open worldhttps://www.rfc1437.de/2011/04/28/f-sharp-programming-wikibooks-open-books-for-an-open-world/Tomtom entschuldigt sich wegen Datenweitergabe für Radarfallenhttps://www.rfc1437.de/2011/04/28/tomtom-entschuldigt-sich-wegen-datenweitergabe-fur-radarfallen/Apple Q&A on Location Datahttps://www.rfc1437.de/2011/04/28/apple-qa-on-location-data/Neulich auf Flickrhttps://www.rfc1437.de/2011/04/27/neulich-auf-flickr/Home - Redline Smalltalk - Smalltalk for the Java Virtual Machine.https://www.rfc1437.de/2011/04/27/home-redline-smalltalk-smalltalk-for-the-java-virtual-machine/Comics by Nick St. Johnhttps://www.rfc1437.de/2011/04/27/comics-by-nick-st-john/Download Adobe Lens Profile Creator Preview - Adobe Labshttps://www.rfc1437.de/2011/04/27/download-adobe-lens-profile-creator-preview-adobe-labs/Geotagging: Fotospot macht Digitalkameras GPS-fähig - Golem.dehttps://www.rfc1437.de/2011/04/27/geotagging-fotospot-macht-digitalkameras-gps-fahig-golem-de/Folgenschwerer PSN-Hack: Persönliche Kundendaten kopiert - Golem.dehttps://www.rfc1437.de/2011/04/27/folgenschwerer-psn-hack-personliche-kundendaten-kopiert-golem-de/Photosmith – The Grand Tour | Photosmith – the iPad mobile companion for Adobe Lightroomhttps://www.rfc1437.de/2011/04/27/photosmith-e2-80-93-the-grand-tour-photosmith-e2-80-93-the-ipad-mobile-companion-for-adobe-lightroom/Lightroom Auto Sync: HOW to use ithttps://www.rfc1437.de/2011/04/27/lightroom-auto-sync-how-to-use-it/Piroggen (vegetarisch, und so garnicht russisch)https://www.rfc1437.de/2011/04/26/piroggen-vegetarisch-und-so-garnicht-russisch/The plan for mods : The Word of Notchhttps://www.rfc1437.de/2011/04/26/the-plan-for-mods-the-word-of-notch/tvon / python-wordpress / overview – Bitbuckethttps://www.rfc1437.de/2011/04/25/tvon-python-wordpress-overview-e2-80-93-bitbucket/Backing Up Flickrhttps://www.rfc1437.de/2011/04/25/backing-up-flickr/AWS Developer Forums: Life of our patients is at stake - I am ...https://www.rfc1437.de/2011/04/24/aws-developer-forums-life-of-our-patients-is-at-stake-i-am/Real World Minecrafthttps://www.rfc1437.de/2011/04/23/real-world-minecraft/iPhone consolidated.dbhttps://www.rfc1437.de/2011/04/22/iphone-consolidated-db/Leica Summilux 35mm / 1.4 ASPH FLEhttps://www.rfc1437.de/2011/04/22/leica-summilux-35mm-1-4-asph-fle/Münster bekennt Farbehttps://www.rfc1437.de/2011/04/22/munster-bekennt-farbe/Natur erobert Geschichtehttps://www.rfc1437.de/2011/04/22/natur-erobert-geschichte/Zwinger in Münsterhttps://www.rfc1437.de/2011/04/22/zwinger-in-munster/Patentklage: Google wegen Linux-Servern in erster Instanz verurteilt - Golem.dehttps://www.rfc1437.de/2011/04/22/patentklage-google-wegen-linux-servern-in-erster-instanz-verurteilt-golem-de/Kodak DC20 Datenblatthttps://www.rfc1437.de/2011/04/20/kodak-dc20-datenblatt/Diskussion um Karfreitagsruhe - WDR 2 Der Senderhttps://www.rfc1437.de/2011/04/20/diskussion-um-karfreitagsruhe-wdr-2-der-sender/Gondor — effortless production Django hostinghttps://www.rfc1437.de/2011/04/20/gondor-e2-80-94-effortless-production-django-hosting/Kodak 760m Reviewhttps://www.rfc1437.de/2011/04/20/kodak-760m-review/Minolta Dimage RD3000 Digital Camera Review: Intro and Highlightshttps://www.rfc1437.de/2011/04/20/minolta-dimage-rd3000-digital-camera-review-intro-and-highlights/Broadway update 3 « Alexander Larssonhttps://www.rfc1437.de/2011/04/19/broadway-update-3-c2-ab-alexander-larsson/Ratingagentur stellt Bonität der USA infrage | tagesschau.dehttps://www.rfc1437.de/2011/04/19/ratingagentur-stellt-bonitat-der-usa-infrage-tagesschau-de/Snooping: It''s not a crime, it''s a feature - Computerworldhttps://www.rfc1437.de/2011/04/18/snooping-its-not-a-crime-its-a-feature-computerworld/Jess, the Rule Engine for the Java Platformhttps://www.rfc1437.de/2011/04/18/jess-the-rule-engine-for-the-java-platform/Evolutie testhttps://www.rfc1437.de/2011/04/18/evolutie-test/Re: Factor: Mail with GUIhttps://www.rfc1437.de/2011/04/18/re-factor-mail-with-gui/Quiche Ratatuillehttps://www.rfc1437.de/2011/04/17/quiche-ratatuille/Und weil ich grade von Schleuse schreibe ...https://www.rfc1437.de/2011/04/16/und-weil-ich-grade-von-schleuse-schreibe/Münster. In Schwarzweiß.https://www.rfc1437.de/2011/04/16/munster-in-schwarzweis/Toshiba releases self-erasing drives - Computerworldhttps://www.rfc1437.de/2011/04/15/toshiba-releases-self-erasing-drives-computerworld/Is Chernobyl a Wild Kingdom or a Radioactive Den of Decay? | Magazinehttps://www.rfc1437.de/2011/04/15/is-chernobyl-a-wild-kingdom-or-a-radioactive-den-of-decay-magazine/VirtuaWin - Virtual Desktops for Windowshttps://www.rfc1437.de/2011/04/15/virtuawin-virtual-desktops-for-windows/Re: Factor: XKCDhttps://www.rfc1437.de/2011/04/14/re-factor-xkcd/Deutlich erhöhte Strahlung in der Asse | NDR.de - Regional - Niedersachsen - Braunschweig/Harz/Göttingenhttps://www.rfc1437.de/2011/04/14/deutlich-erhohte-strahlung-in-der-asse-ndr-de-regional-niedersachsen-braunschweigharzgottingen/Akka Projecthttps://www.rfc1437.de/2011/04/14/akka-project/Programming Scalahttps://www.rfc1437.de/2011/04/14/programming-scala/ScalaQueryhttps://www.rfc1437.de/2011/04/14/scalaquery/Programming in Scala, First Editionhttps://www.rfc1437.de/2011/04/14/programming-in-scala-first-edition/Scala IDE for Eclipsehttps://www.rfc1437.de/2011/04/14/scala-ide-for-eclipse/Why do I do what I dohttps://www.rfc1437.de/2011/04/12/why-do-i-do-what-i-do/Männerspielzeughttps://www.rfc1437.de/2011/04/12/mannerspielzeug/USB Porthttps://www.rfc1437.de/2011/04/12/usb-port/agronholm / jython-swingutils / source – Bitbuckethttps://www.rfc1437.de/2011/04/11/agronholm-jython-swingutils-source-e2-80-93-bitbucket/Code rant: Message Queue Shootout!https://www.rfc1437.de/2011/04/11/code-rant-message-queue-shootout/NOSQL Databaseshttps://www.rfc1437.de/2011/04/11/nosql-databases/BBC News - Net giants challenge French data lawhttps://www.rfc1437.de/2011/04/07/bbc-news-net-giants-challenge-french-data-law/Warum die VISA-Warndatei eine Schweinerei ist bei Metronaut.de – Big Berlin Bullshit Bloghttps://www.rfc1437.de/2011/04/07/warum-die-visa-warndatei-eine-schweinerei-ist-bei-metronaut-de-e2-80-93-big-berlin-bullshit-blog/visionmedia/asset - GitHubhttps://www.rfc1437.de/2011/04/06/visionmediaasset-github/jRumble | A jQuery Plugin That Rumbles Elementshttps://www.rfc1437.de/2011/04/06/jrumble-a-jquery-plugin-that-rumbles-elements/Python Package Index : pip 1.0https://www.rfc1437.de/2011/04/06/python-package-index-pip-1-0/sunng87/jip - GitHubhttps://www.rfc1437.de/2011/04/06/sunng87jip-github/Exploring Beautiful Languages: A quick look at APLhttps://www.rfc1437.de/2011/04/06/exploring-beautiful-languages-a-quick-look-at-apl/How I learned to stop worrying and write my own ORMhttps://www.rfc1437.de/2011/04/06/how-i-learned-to-stop-worrying-and-write-my-own-orm/dapper-dot-net - Simple SQL object mapper for SQL Server - Google Project Hostinghttps://www.rfc1437.de/2011/04/06/dapper-dot-net-simple-sql-object-mapper-for-sql-server-google-project-hosting/philikon / python-weave client / overview – Bitbuckethttps://www.rfc1437.de/2011/04/06/philikon-python-weave-client-overview-e2-80-93-bitbucket/philikon / weaveclient-chromium / overview – Bitbuckethttps://www.rfc1437.de/2011/04/06/philikon-weaveclient-chromium-overview-e2-80-93-bitbucket/Bill Gates: “In toilets, we’re the kings” | Spreeblickhttps://www.rfc1437.de/2011/04/06/bill-gates-e2-80-9cin-toilets-we-e2-80-99re-the-kings-e2-80-9d-spreeblick/Video LightBox - binden Sie Videos mit Lightbox Effekt in Ihre Internetseite ein!https://www.rfc1437.de/2011/04/06/video-lightbox-binden-sie-videos-mit-lightbox-effekt-in-ihre-internetseite-ein/JulienPalard/Pipe - GitHubhttps://www.rfc1437.de/2011/04/04/julienpalardpipe-github/Krümeltortehttps://www.rfc1437.de/2011/04/03/krumeltorte/Sammelsurium aus Hamburghttps://www.rfc1437.de/2011/04/03/sammelsurium-aus-hamburg/Pängelantonhttps://www.rfc1437.de/2011/03/31/pangelanton/markrendle/Simple.Data - GitHubhttps://www.rfc1437.de/2011/03/30/markrendlesimple-data-github/Send in Münster mal wiederhttps://www.rfc1437.de/2011/03/29/send-in-munster-mal-wieder/Tuckesburg und alter Zoohttps://www.rfc1437.de/2011/03/29/tuckesburg-und-alter-zoo/Basho: An Introduction to Riakhttps://www.rfc1437.de/2011/03/29/basho-an-introduction-to-riak/HBase vs Cassandra: why we moved « Dominic Williamshttps://www.rfc1437.de/2011/03/28/hbase-vs-cassandra-why-we-moved-c2-ab-dominic-williams/Brisk – Apache Hadoop™ powered by Cassandra | DataStaxhttps://www.rfc1437.de/2011/03/28/brisk-e2-80-93-apache-hadoop-e2-84-a2-powered-by-cassandra-datastax/HIVE: Data Warehousing & Analytics on Hadoophttps://www.rfc1437.de/2011/03/28/hive-data-warehousing-analytics-on-hadoop/Apache Thrifthttps://www.rfc1437.de/2011/03/28/apache-thrift/The Secrets of Building Realtime Big Data Systemshttps://www.rfc1437.de/2011/03/28/the-secrets-of-building-realtime-big-data-systems/nathanmarz/elephantdb - GitHubhttps://www.rfc1437.de/2011/03/28/nathanmarzelephantdb-github/nathanmarz/cascalog - GitHubhttps://www.rfc1437.de/2011/03/28/nathanmarzcascalog-github/JavaScript Quotations « IronJS Bloghttps://www.rfc1437.de/2011/03/27/javascript-quotations-c2-ab-ironjs-blog/Microsoft Shuts off HTTPS in Hotmail for Over a Dozen Countries | Electronic Frontier Foundationhttps://www.rfc1437.de/2011/03/26/microsoft-shuts-off-https-in-hotmail-for-over-a-dozen-countries-electronic-frontier-foundation/Enterprise Java Development Tools | SpringSourcehttps://www.rfc1437.de/2011/03/25/enterprise-java-development-tools-springsource/Trinity - Microsoft Researchhttps://www.rfc1437.de/2011/03/25/trinity-microsoft-research/Programming, Motherfuckerhttps://www.rfc1437.de/2011/03/22/programming-motherfucker/Why Cloud9 Deserves your Attention | Nettuts+https://www.rfc1437.de/2011/03/22/why-cloud9-deserves-your-attention-nettuts/Django-nonrel - NoSQL support for Django | All Buttons Pressedhttps://www.rfc1437.de/2011/03/22/django-nonrel-nosql-support-for-django-all-buttons-pressed/WordPress › Really Static « WordPress Pluginshttps://www.rfc1437.de/2011/03/21/wordpress-e2-80-ba-really-static-c2-ab-wordpress-plugins/Vundle 0.7 is out | gmarik.infohttps://www.rfc1437.de/2011/03/20/vundle-0-7-is-out-gmarik-info/Gefüllte Paprika im Tomatenbetthttps://www.rfc1437.de/2011/03/19/gefullte-paprika-im-tomatenbett/Adobe Photoshop Lightroom 3 * Exporting using Publish Serviceshttps://www.rfc1437.de/2011/03/16/adobe-photoshop-lightroom-3-exporting-using-publish-services/Datenschützer: Piwik statt Google Analyticshttps://www.rfc1437.de/2011/03/15/datenschutzer-piwik-statt-google-analytics/After Church Clubhttps://www.rfc1437.de/2011/03/15/after-church-club/Kiepenkerle (Kiepenkerls?)https://www.rfc1437.de/2011/03/15/kiepenkerle-kiepenkerls/Türfigurenhttps://www.rfc1437.de/2011/03/15/turfiguren/With hacking, music can take control of your car | ITworldhttps://www.rfc1437.de/2011/03/14/with-hacking-music-can-take-control-of-your-car-itworld/Satellite Photos - Japan Before and After Tsunami - Interactive Feature - NYTimes.comhttps://www.rfc1437.de/2011/03/14/satellite-photos-japan-before-and-after-tsunami-interactive-feature-nytimes-com/Programming Languages - Progopedia - Encyclopedia of Programming Languageshttps://www.rfc1437.de/2011/03/14/programming-languages-progopedia-encyclopedia-of-programming-languages/Instagram API verfügbarhttps://www.rfc1437.de/2011/03/14/instagram/pdict.py at master from segfaulthunter/sandbox - GitHubhttps://www.rfc1437.de/2011/03/14/pdict-py-at-master-from-segfaulthuntersandbox-github/ShutterSnitchhttps://www.rfc1437.de/2011/03/13/shuttersnitch/Rob Galbraith DPI: Alex Majoli points and shootshttps://www.rfc1437.de/2011/03/13/rob-galbraith-dpi-alex-majoli-points-and-shoots/HowTo: Using Radio2https://www.rfc1437.de/2011/03/13/howto-using-radio2/Threads sind ein Hammer, aber nicht jedes Problem ist ein Nagelhttps://www.rfc1437.de/2011/03/13/threads-sind-ein-hammer-aber-nicht-jedes-problem-ist-ein-nagel/Dieses Vertuschen und Verzögern ist ein unfassbarer Skandal: Die Methoden der Atomlobby - taz.dehttps://www.rfc1437.de/2011/03/13/dieses-vertuschen-und-verzogern-ist-ein-unfassbarer-skandal-die-methoden-der-atomlobby-taz-de/Minestrone für die ganze Familiehttps://www.rfc1437.de/2011/03/12/minestrone-fur-die-ganze-familie/Re: Factor: Google Chartshttps://www.rfc1437.de/2011/03/12/re-factor-google-charts/Kernschmelze in Japan immer wahrscheinlicherhttps://www.rfc1437.de/2011/03/12/kernschmelze-in-japan-immer-wahrscheinlicher/twitters Größenwahnhttps://www.rfc1437.de/2011/03/12/twitters-grosenwahn/Python Tools for Visual Studiohttps://www.rfc1437.de/2011/03/11/python-tools-for-visual-studio/ABCL - Release notes v0.25https://www.rfc1437.de/2011/03/11/abcl-release-notes-v0-25/BBC News - Voyager: Still dancing 17 billion km from Earthhttps://www.rfc1437.de/2011/03/09/bbc-news-voyager-still-dancing-17-billion-km-from-earth/J Sourcehttps://www.rfc1437.de/2011/03/09/j-source/blueMarine - Homehttps://www.rfc1437.de/2011/03/09/bluemarine-home/darktable | newshttps://www.rfc1437.de/2011/03/09/darktable-news/fantasm - Project Hosting on Google Codehttps://www.rfc1437.de/2011/03/08/fantasm-project-hosting-on-google-code/Seltsame Phänomene in iPhotohttps://www.rfc1437.de/2011/03/08/seltsame-phanomene-in-iphoto/harukizaemon/hamster - GitHubhttps://www.rfc1437.de/2011/03/07/harukizaemonhamster-github/Pyjamas - Python Javascript Compiler, Desktop Widget Set and RIA Web Frameworkhttps://www.rfc1437.de/2011/03/07/pyjamas-python-javascript-compiler-desktop-widget-set-and-ria-web-framework/pqc - Project Hosting on Google Codehttps://www.rfc1437.de/2011/03/07/pqc-project-hosting-on-google-code/idiotisches Interfacedesignhttps://www.rfc1437.de/2011/03/06/idiotisches-interfacedesign/Apple kann einfach keine Verschlüsselunghttps://www.rfc1437.de/2011/03/06/apple-kann-einfach-keine-verschlusselung/The Sinclair ZX81: 30 years old today - Winterdrakehttps://www.rfc1437.de/2011/03/06/the-sinclair-zx81-30-years-old-today-winterdrake/Pferderouladen mit Ratatouillehttps://www.rfc1437.de/2011/03/05/pferderouladen-mit-ratatouille/jsFiddle Javascript Editorhttps://www.rfc1437.de/2011/03/04/jsfiddle-javascript-editor/Wordpress and HTML 5https://www.rfc1437.de/2011/03/04/wordpress-and-html-5/balupton/history.js - GitHubhttps://www.rfc1437.de/2011/03/04/baluptonhistory-js-github/Handwühlen – Wikipediahttps://www.rfc1437.de/2011/03/02/handwuhlen-e2-80-93-wikipedia/Paprika-Bohnen-Suppe mit Hackhttps://www.rfc1437.de/2011/03/02/paprika-bohnen-suppe-mit-hack/Plagiatsaffäre: Doktorvater distanziert sich von zu Guttenberg | tagesschau.dehttps://www.rfc1437.de/2011/03/01/plagiatsaffare-doktorvater-distanziert-sich-von-zu-guttenberg-tagesschau-de/WordPress › JSON API « WordPress Pluginshttps://www.rfc1437.de/2011/02/28/wordpress-e2-80-ba-json-api-c2-ab-wordpress-plugins/Feeding the Bit Bucket» Blog Archive » Common Lisp, Clojure and Evolutionhttps://www.rfc1437.de/2011/02/27/feeding-the-bit-bucket-c2-bb-blog-archive-c2-bb-common-lisp-clojure-and-evolution/Naked Password - jQuery Plugin to Encourage Stronger Passwordshttps://www.rfc1437.de/2011/02/27/naked-password-jquery-plugin-to-encourage-stronger-passwords/Wochenmarkt in Münsterhttps://www.rfc1437.de/2011/02/27/wochenmarkt-in-munster/Hundreds of Tourist Photos Weaved into One (18 total) - My Modern Metropolishttps://www.rfc1437.de/2011/02/26/hundreds-of-tourist-photos-weaved-into-one-18-total-my-modern-metropolis/Fairytaleshttps://www.rfc1437.de/2011/02/26/fairytales/Kochen mit rfc1437 - Schweinegeschnetzeltes Mediterranhttps://www.rfc1437.de/2011/02/26/rfc1437-on-the-road/Ihr seid Helden!https://www.rfc1437.de/2011/02/25/ihr-seid-helden/MostAwesomeDude/bravo - GitHubhttps://www.rfc1437.de/2011/02/25/mostawesomedudebravo-github/Ada 95: The Craft of Object-Oriented Programminghttps://www.rfc1437.de/2011/02/23/ada-95-the-craft-of-object-oriented-programming/IP-Adressen und Datenschutzhttps://www.rfc1437.de/2011/02/22/ip-adressen-und-datenschutz/Andescotia Software | Products : Marten&trade IDE 1.4https://www.rfc1437.de/2011/02/21/andescotia-software-products-martentrade-ide-1-4/hotzen/ScalaFlow - GitHubhttps://www.rfc1437.de/2011/02/21/hotzenscalaflow-github/JSSpeccy: A ZX Spectrum emulator in Javascript « matt.west.co.tthttps://www.rfc1437.de/2011/02/21/jsspeccy-a-zx-spectrum-emulator-in-javascript-c2-ab-matt-west-co-tt/remogatto/gospeccy - GitHubhttps://www.rfc1437.de/2011/02/21/remogattogospeccy-github/lsyncd - Project Hosting on Google Codehttps://www.rfc1437.de/2011/02/21/lsyncd-project-hosting-on-google-code/Plagiate – GuttenPlag Wikihttps://www.rfc1437.de/2011/02/19/plagiate-e2-80-93-guttenplag-wiki/MS Optical Super Triplet Perar 3.5/35 | japan exposureshttps://www.rfc1437.de/2011/02/17/ms-optical-super-triplet-perar-3-535-japan-exposures/Spherical aberrationhttps://www.rfc1437.de/2011/02/16/spherical-aberration/BoPhoto.com: M8 coder - simple manual handcoding of M lenseshttps://www.rfc1437.de/2011/02/16/bophoto-com-m8-coder-simple-manual-handcoding-of-m-lenses/Get inPulse and Hack Your Watch | Homehttps://www.rfc1437.de/2011/02/16/get-inpulse-and-hack-your-watch-home/PyPy Status Blog: PyPy Winter Sprint Reporthttps://www.rfc1437.de/2011/02/16/pypy-status-blog-pypy-winter-sprint-report/Comparison of S3QL and other S3 file systemshttps://www.rfc1437.de/2011/02/16/comparison-of-s3ql-and-other-s3-file-systems/s3fs - Project Hosting on Google Codehttps://www.rfc1437.de/2011/02/16/s3fs-project-hosting-on-google-code/HttpDavModulehttps://www.rfc1437.de/2011/02/16/httpdavmodule/Zeitung: Guttenberg schrieb Teile seiner Doktorarbeit ab | tagesschau.dehttps://www.rfc1437.de/2011/02/16/zeitung-guttenberg-schrieb-teile-seiner-doktorarbeit-ab-tagesschau-de/MobileMe saugt Hamster durch Strohhalmehttps://www.rfc1437.de/2011/02/16/mobileme-saugt-hamster-durch-strohhalme/LR/Blog - Send images to your blog from Adobe Lightoomhttps://www.rfc1437.de/2011/02/16/lrblog-send-images-to-your-blog-from-adobe-lightoom/Tom Otterness: Überfrauhttps://www.rfc1437.de/2011/02/16/tom-otterness-uberfrau/Orgelpfeifenhttps://www.rfc1437.de/2011/02/16/orgelpfeifen/Contador darf wieder in den Sattel - Radsport - sportschau.dehttps://www.rfc1437.de/2011/02/15/contador-darf-wieder-in-den-sattel-radsport-sportschau-de/Bracketeer: Exposure Processing Softwarehttps://www.rfc1437.de/2011/02/15/bracketeer-exposure-processing-software/KammaGamma » Articles » Solving the Leica M8 DNG riddlehttps://www.rfc1437.de/2011/02/15/kammagamma-c2-bb-articles-c2-bb-solving-the-leica-m8-dng-riddle/Main Page - Esolanghttps://www.rfc1437.de/2011/02/14/main-page-esolang/Working Leica M8 Created Using Legohttps://www.rfc1437.de/2011/02/13/working-leica-m8-created-using-lego/- 3D Portfolio of Michael Grote -https://www.rfc1437.de/2011/02/13/3d-portfolio-of-michael-grote/Camerashttps://www.rfc1437.de/2011/02/13/cameras/‘The Beast’ Electric Bikehttps://www.rfc1437.de/2011/02/13/e2-80-98the-beast-e2-80-99-electric-bike/Leica M Lens Codeshttps://www.rfc1437.de/2011/02/12/leica-m-lens-codes/SourceTree | Mercurial and Git GUI for Mac OS Xhttps://www.rfc1437.de/2011/02/12/sourcetree-mercurial-and-git-gui-for-mac-os-x/JSTalk: Indexhttps://www.rfc1437.de/2011/02/12/jstalk-index/“Dossier de Presse” « Lucs Journalhttps://www.rfc1437.de/2011/02/11/e2-80-9cdossier-de-presse-e2-80-9d-c2-ab-lucs-journal/Advanced sign-in security for your Google account - Official Gmail Bloghttps://www.rfc1437.de/2011/02/10/advanced-sign-in-security-for-your-google-account-official-gmail-blog/ongoing by Tim Bray · Broken Linkshttps://www.rfc1437.de/2011/02/10/ongoing-by-tim-bray-c2-b7-broken-links/Beginners GH1 Custom Firmware Guide - EOSHDhttps://www.rfc1437.de/2011/02/09/beginners-gh1-custom-firmware-guide-eoshd/Secret texts ''key to Julian Assange case'' - Crime, UK - The Independenthttps://www.rfc1437.de/2011/02/09/secret-texts-key-to-julian-assange-case-crime-uk-the-independent/scgi-wsgi 1.1 released - Allan Saddi's projects bloghttps://www.rfc1437.de/2011/02/08/scgi-wsgi-1-1-released-allan-saddis-projects-blog/Streitfall: Telekom will einheitlichen De-Mail-Domainnamen per Gesetz - Golem.dehttps://www.rfc1437.de/2011/02/07/streitfall-telekom-will-einheitlichen-de-mail-domainnamen-per-gesetz-golem-de/Carl Zeiss joins Micro Four Thirds system: Digital Photography Reviewhttps://www.rfc1437.de/2011/02/07/carl-zeiss-joins-micro-four-thirds-system-digital-photography-review/Gravatars: why publishing your email''s hash is not a good ideahttps://www.rfc1437.de/2011/02/07/gravatars-why-publishing-your-emails-hash-is-not-a-good-idea/IN-12 / IV-12 Nixie / VFD Clockhttps://www.rfc1437.de/2011/02/07/in-12-iv-12-nixie-vfd-clock/RUR-PLEhttps://www.rfc1437.de/2011/02/07/rur-ple/using negotiate authentication (GSSAPI Kerberos) with Firefoxhttps://www.rfc1437.de/2011/02/07/using-negotiate-authentication-gssapi-kerberos-with-firefox/Neueinsteiger: Kenko will Systemkamera mit C-Mount-Objektiven anbieten - Golem.dehttps://www.rfc1437.de/2011/02/07/neueinsteiger-kenko-will-systemkamera-mit-c-mount-objektiven-anbieten-golem-de/what a superb owlhttps://www.rfc1437.de/2011/02/07/what-a-superb-owl/Lenzighttps://www.rfc1437.de/2011/02/06/lenzig/How to write vim plugins with pythonhttps://www.rfc1437.de/2011/02/05/how-to-write-vim-plugins-with-python/Forum > Sony Alpha NEX-Open-Source-Firmware Linux-basierthttps://www.rfc1437.de/2011/02/04/forum-sony-alpha-nex-open-source-firmware-linux-basiert/Layoutspielereienhttps://www.rfc1437.de/2011/02/04/layoutspielereien/WorkingWithSubversion - Mercurialhttps://www.rfc1437.de/2011/02/03/workingwithsubversion-mercurial/Sorting elements with jQuery – James Padolseyhttps://www.rfc1437.de/2011/02/02/sorting-elements-with-jquery-e2-80-93-james-padolsey/SLR Magic 35 1.7 Lens review on the Sony NEX-5 | STEVE HUFF PHOTOShttps://www.rfc1437.de/2011/02/02/slr-magic-35-1-7-lens-review-on-the-sony-nex-5-steve-huff-photos/Ricoh developing M-mount module for GXR system: Digital Photography Reviewhttps://www.rfc1437.de/2011/02/01/ricoh-developing-m-mount-module-for-gxr-system-digital-photography-review/Vimari - Keyboard Shortcuts extension for Safari - GitHubhttps://www.rfc1437.de/2011/02/01/vimari-keyboard-shortcuts-extension-for-safari-github/Google: Bing Is Cheating, Copying Our Search Resultshttps://www.rfc1437.de/2011/02/01/google-bing-is-cheating-copying-our-search-results/Java Hangs When Converting 2.2250738585072012e-308 - Exploring Binaryhttps://www.rfc1437.de/2011/02/01/java-hangs-when-converting-2-2250738585072012e-308-exploring-binary/moblhttps://www.rfc1437.de/2011/01/31/mobl/Three20https://www.rfc1437.de/2011/01/31/three20/Introduction to Pharenhttps://www.rfc1437.de/2011/01/30/introduction-to-pharen/cfbolz / Pyrolog / overview – Bitbuckethttps://www.rfc1437.de/2011/01/30/cfbolz-pyrolog-overview-e2-80-93-bitbucket/Sho - Microsoft Researchhttps://www.rfc1437.de/2011/01/28/sho-microsoft-research/eMIPS - Microsoft Researchhttps://www.rfc1437.de/2011/01/28/emips-microsoft-research/live-processinghttps://www.rfc1437.de/2011/01/27/live-processing/Optimizing Crajsh – Part 1 « #ponce''s bloghttps://www.rfc1437.de/2011/01/26/optimizing-crajsh-e2-80-93-part-1-c2-ab-ponces-blog/don't code today what you can't debug tomorrow: PhantomJS: minimalistic headless WebKit-based JavaScript-driven toolhttps://www.rfc1437.de/2011/01/26/dont-code-today-what-you-cant-debug-tomorrow-phantomjs-minimalistic-headless-webkit-based-javascript-driven-tool/linq.js - LINQ for JavaScripthttps://www.rfc1437.de/2011/01/24/linq-js-linq-for-javascript/PyPy Status Blog: PyPy wants you!https://www.rfc1437.de/2011/01/21/pypy-status-blog-pypy-wants-you/InformIT: Art of Computer Programming, Volume 4A, The: Combinatorial Algorithms, Part 1https://www.rfc1437.de/2011/01/21/informit-art-of-computer-programming-volume-4a-the-combinatorial-algorithms-part-1//dev/random - Random Thoughts On Programming In Parentheses - Coops - An introduction to chicken scheme's object systemhttps://www.rfc1437.de/2011/01/21/devrandom-random-thoughts-on-programming-in-parentheses-coops-an-introduction-to-chicken-schemes-object-system/Tail Call Optimization Decorator « Python recipes « ActiveState Codehttps://www.rfc1437.de/2011/01/21/tail-call-optimization-decorator-c2-ab-python-recipes-c2-ab-activestate-code/App Development Tools Contribhttps://www.rfc1437.de/2011/01/20/app-development-tools-contrib/Harmony Of My Dreams | Brendan Eichhttps://www.rfc1437.de/2011/01/19/harmony-of-my-dreams-brendan-eich/Swordcane : The Official Web Site of Burger Kniveshttps://www.rfc1437.de/2011/01/18/swordcane-the-official-web-site-of-burger-knives/F-Script Homehttps://www.rfc1437.de/2011/01/18/f-script-home/Lively Kernel - Livelyhttps://www.rfc1437.de/2011/01/18/lively-kernel-lively/Open Cobalt Websitehttps://www.rfc1437.de/2011/01/17/open-cobalt-website/Pyrates are cool — A wiki about python game developmenthttps://www.rfc1437.de/2011/01/17/pyrates-are-cool-e2-80-94-a-wiki-about-python-game-development/CoRD: Remote Desktop for Mac OS Xhttps://www.rfc1437.de/2011/01/17/cord-remote-desktop-for-mac-os-x/CLPython - an implementation of Python in Common Lisphttps://www.rfc1437.de/2011/01/16/clpython-an-implementation-of-python-in-common-lisp/FSet on Common-Lisp.nethttps://www.rfc1437.de/2011/01/16/fset-on-common-lisp-net/CL-STMhttps://www.rfc1437.de/2011/01/16/cl-stm/CLAZY: Lazy Calling in Common Lisphttps://www.rfc1437.de/2011/01/16/clazy-lazy-calling-in-common-lisp/Fundshttps://www.rfc1437.de/2011/01/16/funds/qb.js: An implementation of QBASIC in Javascript (part 1) - Steve Hanov's Programming Bloghttps://www.rfc1437.de/2011/01/15/qb-js-an-implementation-of-qbasic-in-javascript-part-1-steve-hanovs-programming-blog/Vimium - Google Chrome-Erweiterungsgaleriehttps://www.rfc1437.de/2011/01/15/vimium-google-chrome-erweiterungsgalerie/WordPress Wiki Plugin | Home of the WordPress Wiki Pluginhttps://www.rfc1437.de/2011/01/14/wordpress-wiki-plugin-home-of-the-wordpress-wiki-plugin/Embedder Plugin Home | moztoolshttps://www.rfc1437.de/2011/01/14/embedder-plugin-home-moztools/CBSC Decision\_| CHOZ-FM re the song “Money for Nothing” by Dire Straitshttps://www.rfc1437.de/2011/01/14/cbsc-decision-c2-a0-choz-fm-re-the-song-e2-80-9cmoney-for-nothing-e2-80-9d-by-dire-straits/dcolthorp/matchure - GitHubhttps://www.rfc1437.de/2011/01/14/dcolthorpmatchure-github/About Dirigiblehttps://www.rfc1437.de/2011/01/14/about-dirigible/kriyative/clojurejs - GitHubhttps://www.rfc1437.de/2011/01/13/kriyativeclojurejs-github/Welcome to WuWeihttps://www.rfc1437.de/2011/01/12/welcome-to-wuwei/Bizarre sea slug is half plant, half animal | MNN - Mother Nature Networkhttps://www.rfc1437.de/2011/01/12/bizarre-sea-slug-is-half-plant-half-animal-mnn-mother-nature-network/Mozilla Labs » skywriterhttps://www.rfc1437.de/2011/01/12/mozilla-labs-c2-bb-skywriter/Life at Eclipse » Blog Archive » Introducing Orionhttps://www.rfc1437.de/2011/01/12/life-at-eclipse-c2-bb-blog-archive-c2-bb-introducing-orion/Bitte vergessen | heise Securityhttps://www.rfc1437.de/2011/01/12/bitte-vergessen-heise-security/Bundestubehttps://www.rfc1437.de/2011/01/12/bundestube/App der British Library: Hohe Literatur für iOS- und Android-Geräte - Golem.dehttps://www.rfc1437.de/2011/01/12/app-der-british-library-hohe-literatur-fur-ios-und-android-gerate-golem-de/Chromium Blog: HTML Video Codec Support in Chromehttps://www.rfc1437.de/2011/01/11/chromium-blog-html-video-codec-support-in-chrome/MonoMac - Monohttps://www.rfc1437.de/2011/01/11/monomac-mono-2/Eisskulpturen in Nizhniy Tagilhttps://www.rfc1437.de/2011/01/10/eisskulpturen-in-nizhniy-tagil/Modernizrhttps://www.rfc1437.de/2011/01/10/modernizr/Malmström: EU-Kommissarin will keine Internetsperren für weitere Themen - Golem.dehttps://www.rfc1437.de/2011/01/10/malmstrom-eu-kommissarin-will-keine-internetsperren-fur-weitere-themen-golem-de/Department of Justice: Twitter muss Wikileaks-Daten an US-Gericht übergeben - Golem.dehttps://www.rfc1437.de/2011/01/10/department-of-justice-twitter-muss-wikileaks-daten-an-us-gericht-ubergeben-golem-de/Nischni Tagil – Wikipediahttps://www.rfc1437.de/2010/12/29/nischni-tagil-e2-80-93-wikipedia/szeiger.de » Blog Archive » A Type-Safe Database Query DSL for Scalahttps://www.rfc1437.de/2010/12/29/szeiger-de-c2-bb-blog-archive-c2-bb-a-type-safe-database-query-dsl-for-scala/11861: Betreiber der Bahn-Auskunftsnummer klagt gegen Abschaltung - Golem.dehttps://www.rfc1437.de/2010/12/28/11861-betreiber-der-bahn-auskunftsnummer-klagt-gegen-abschaltung-golem-de/Studie: Stromkonzerne verlangen zwei Milliarden Euro zu viel | tagesschau.dehttps://www.rfc1437.de/2010/12/28/studie-stromkonzerne-verlangen-zwei-milliarden-euro-zu-viel-tagesschau-de/Sequel: The Database Toolkit for Rubyhttps://www.rfc1437.de/2010/12/28/sequel-the-database-toolkit-for-ruby/MacRuby: The Definitive Guidehttps://www.rfc1437.de/2010/12/28/macruby-the-definitive-guide/hoc - Project Hosting on Google Codehttps://www.rfc1437.de/2010/12/27/hoc-project-hosting-on-google-code/emscripten - Project Hosting on Google Codehttps://www.rfc1437.de/2010/12/27/emscripten-project-hosting-on-google-code/Emscripten: Pythonhttps://www.rfc1437.de/2010/12/27/emscripten-python/pyfilesystem - Project Hosting on Google Codehttps://www.rfc1437.de/2010/12/27/pyfilesystem-project-hosting-on-google-code/Instagram api - instagram - GitHubhttps://www.rfc1437.de/2010/12/27/instagram-api-instagram-github/Monads Are Not Metaphors - Code Commithttps://www.rfc1437.de/2010/12/27/monads-are-not-metaphors-code-commit/J Homehttps://www.rfc1437.de/2010/12/27/j-home/Kodhttps://www.rfc1437.de/2010/12/26/kod/The Art and Science of Smalltalkhttps://www.rfc1437.de/2010/12/26/the-art-and-science-of-smalltalk/IPython as a system shell — IPython v0.11.alpha1.git documentationhttps://www.rfc1437.de/2010/12/24/ipython-as-a-system-shell-e2-80-94-ipython-v0-11-alpha1-git-documentation/The Blast Shackhttps://www.rfc1437.de/2010/12/23/the-blast-shack/Oni Labs: Apollohttps://www.rfc1437.de/2010/12/23/oni-labs-apollo/Jquery Snowfall Plugin 1.4 | Somethinghitmehttps://www.rfc1437.de/2010/12/23/jquery-snowfall-plugin-1-4-somethinghitme/MacBookAir3-2/Meerkat - Community Ubuntu Documentationhttps://www.rfc1437.de/2010/12/23/macbookair3-2meerkat-community-ubuntu-documentation/OAShttps://www.rfc1437.de/2010/12/23/oas/StatusUpdatehttps://www.rfc1437.de/2010/12/23/statusupdate/Ausfall: Skype für viele Nutzer nicht erreichbar - Golem.dehttps://www.rfc1437.de/2010/12/23/ausfall-skype-fur-viele-nutzer-nicht-erreichbar-golem-de/Denisovans Were Neanderthals’ Cousins, DNA Analysis Reveals - NYTimes.comhttps://www.rfc1437.de/2010/12/23/denisovans-were-neanderthals-e2-80-99-cousins-dna-analysis-reveals-nytimes-com/Python Package Index : futures 2.0https://www.rfc1437.de/2010/12/22/python-package-index-futures-2-0/Pharo Open Source Smalltalk - Homehttps://www.rfc1437.de/2010/12/22/pharo-open-source-smalltalk-home/pure-lang - Project Hosting on Google Codehttps://www.rfc1437.de/2010/12/21/pure-lang-project-hosting-on-google-code/Netzsperren: Großbritannien plant globalen Pornofilter - Golem.dehttps://www.rfc1437.de/2010/12/20/netzsperren-grosbritannien-plant-globalen-pornofilter-golem-de/c't - Inhalt 1/2011 - Seite 26https://www.rfc1437.de/2010/12/20/ct-inhalt-12011-seite-26/Alex Gaynor -- Getting the most out of toxhttps://www.rfc1437.de/2010/12/20/alex-gaynor-getting-the-most-out-of-tox/sparrow - The New Mail for Machttps://www.rfc1437.de/2010/12/20/sparrow-the-new-mail-for-mac/coleifer/peewee at master - GitHubhttps://www.rfc1437.de/2010/12/18/coleiferpeewee-at-master-github/Middleware_and_Utilities - WSGI Wikihttps://www.rfc1437.de/2010/12/18/middleware-and-utilities-wsgi-wiki/Python Package Index : urlrelay 0.7.1https://www.rfc1437.de/2010/12/18/python-package-index-urlrelay-0-7-1/Bug 1044 – CVE-2010-4345 exim privilege escalationhttps://www.rfc1437.de/2010/12/17/bug-1044-e2-80-93-cve-2010-4345-exim-privilege-escalation/Bug 787 – memory corruption in string_format codehttps://www.rfc1437.de/2010/12/17/bug-787-e2-80-93-memory-corruption-in-string-format-code/rhodecode Summary - RhodeCodehttps://www.rfc1437.de/2010/12/17/rhodecode-summary-rhodecode/HP Storage Hardware Harbors Secret Back Door | threatposthttps://www.rfc1437.de/2010/12/16/hp-storage-hardware-harbors-secret-back-door-threatpost/The Self Publishing Revolution: Amazon in the Book Banning Businesshttps://www.rfc1437.de/2010/12/16/the-self-publishing-revolution-amazon-in-the-book-banning-business/Bottle: Python Web Framework — Bottle v0.9.dev documentationhttps://www.rfc1437.de/2010/12/16/bottle-python-web-framework-e2-80-94-bottle-v0-9-dev-documentation/In Albanien und Bosnien fällt der Visa-Zwang | tagesschau.dehttps://www.rfc1437.de/2010/12/15/in-albanien-und-bosnien-fallt-der-visa-zwang-tagesschau-de/Mehrheit in NRW gegen neuen Staatsvertrag für Jugendschutz im Internet - Computer - WDR.dehttps://www.rfc1437.de/2010/12/15/mehrheit-in-nrw-gegen-neuen-staatsvertrag-fur-jugendschutz-im-internet-computer-wdr-de/Nicholas Piël » Benchmark of Python Web Servershttps://www.rfc1437.de/2010/12/15/nicholas-piel-c2-bb-benchmark-of-python-web-servers/RecordExtension - Mercurialhttps://www.rfc1437.de/2010/12/15/recordextension-mercurial/Sicherheit: Angeblich Backdoor im IPSEC-Stack von OpenBSD - Golem.dehttps://www.rfc1437.de/2010/12/15/sicherheit-angeblich-backdoor-im-ipsec-stack-von-openbsd-golem-de/Home | The FinePix X100 Professional Photographer's compact digital camera from Fujifilmhttps://www.rfc1437.de/2010/12/14/home-the-finepix-x100-professional-photographers-compact-digital-camera-from-fujifilm/mrdoob/three.js - GitHubhttps://www.rfc1437.de/2010/12/13/mrdoobthree-js-github/Namespacing in JavaScript | JavaScript, JavaScripthttps://www.rfc1437.de/2010/12/13/namespacing-in-javascript-javascript-javascript/The Ball Revealed – Sphero « The Orbotix Bloghttps://www.rfc1437.de/2010/12/13/the-ball-revealed-e2-80-93-sphero-c2-ab-the-orbotix-blog/Home - gloss - GitHubhttps://www.rfc1437.de/2010/12/12/home-gloss-github/Mac\_OS\_X Automation: Serviceshttps://www.rfc1437.de/2010/12/10/mac-c2-a0os-c2-a0x-automation-services/Clojure Libs and Namespaces: require, use, import, and ns - 8th Light Bloghttps://www.rfc1437.de/2010/12/10/clojure-libs-and-namespaces-require-use-import-and-ns-8th-light-blog/ninjudd/cake - GitHubhttps://www.rfc1437.de/2010/12/09/ninjuddcake-github/slimv.vim - SLIME-like Lisp and Clojure REPL inside Vim with Profiling, Hyperspec, Paredit : vim onlinehttps://www.rfc1437.de/2010/12/09/slimv-vim-slime-like-lisp-and-clojure-repl-inside-vim-with-profiling-hyperspec-paredit-vim-online/Mainz/Landau: Erdwärmekraftwerk wohl für Erdbeben verantwortlich - Nachrichten :: Rheinland-Pfalz | SWR.dehttps://www.rfc1437.de/2010/12/08/mainzlandau-erdwarmekraftwerk-wohl-fur-erdbeben-verantwortlich-nachrichten-rheinland-pfalz-swr-de/Gundo - Visualize your Vim Undo Treehttps://www.rfc1437.de/2010/12/08/gundo-visualize-your-vim-undo-tree/Chromium Blog: A New Crankshaft for V8https://www.rfc1437.de/2010/12/08/chromium-blog-a-new-crankshaft-for-v8/instagr.amhttps://www.rfc1437.de/2010/12/08/instagr-am/The Risks of Cloud: Lessons from Wikileaks - Simon Says...https://www.rfc1437.de/2010/12/07/the-risks-of-cloud-lessons-from-wikileaks-simon-says/pyquery: a jquery-like library for python — pyquery v0.6.1 documentationhttps://www.rfc1437.de/2010/12/07/pyquery-a-jquery-like-library-for-python-e2-80-94-pyquery-v0-6-1-documentation/stream – Lazily-evaluated, parallelizable pipeline — stream v0.8 documentationhttps://www.rfc1437.de/2010/12/07/stream-e2-80-93-lazily-evaluated-parallelizable-pipeline-e2-80-94-stream-v0-8-documentation/Wau-Holland-Stiftung: Geldgebern von Wikileaks drohen Sanktionen - Golem.dehttps://www.rfc1437.de/2010/12/07/wau-holland-stiftung-geldgebern-von-wikileaks-drohen-sanktionen-golem-de/About - pyconditions - About the module - Project Hosting on Google Codehttps://www.rfc1437.de/2010/12/07/about-pyconditions-about-the-module-project-hosting-on-google-code/Python Package Index : withrestart 0.2.6https://www.rfc1437.de/2010/12/07/python-package-index-withrestart-0-2-6/snipMate - TextMate-style snippets for Vim : vim onlinehttps://www.rfc1437.de/2010/12/07/snipmate-textmate-style-snippets-for-vim-vim-online/vcscommand.vim - CVS/SVN/SVK/git/hg/bzr integration plugin : vim onlinehttps://www.rfc1437.de/2010/12/07/vcscommand-vim-cvssvnsvkgithgbzr-integration-plugin-vim-online/Home — pyclewnhttps://www.rfc1437.de/2010/12/07/home-e2-80-94-pyclewn/Vim Taglist plugin manualhttps://www.rfc1437.de/2010/12/06/vim-taglist-plugin-manual/Harte Kritik an französischem Concorde-Urteil | tagesschau.dehttps://www.rfc1437.de/2010/12/06/harte-kritik-an-franzosischem-concorde-urteil-tagesschau-de/Vim autocomplete, Django and virtualenv | rosemanbloghttps://www.rfc1437.de/2010/12/05/vim-autocomplete-django-and-virtualenv-rosemanblog/Homebrew — MacPorts driving you to drink? Try Homebrew!https://www.rfc1437.de/2010/12/03/homebrew-e2-80-94-macports-driving-you-to-drink-try-homebrew/chrisdickinson's wilson at master - GitHubhttps://www.rfc1437.de/2010/12/03/chrisdickinsons-wilson-at-master-github/Modules - node - GitHubhttps://www.rfc1437.de/2010/12/03/modules-node-github/persistence.js: An Asynchronous Javascript ORM for HTML5/Gears « I am Zefhttps://www.rfc1437.de/2010/12/03/persistence-js-an-asynchronous-javascript-orm-for-html5gears-c2-ab-i-am-zef/Express - node web frameworkhttps://www.rfc1437.de/2010/12/03/express-node-web-framework/LearnBoost labshttps://www.rfc1437.de/2010/12/03/learnboost-labs/Nigeria to charge Dick Cheney in $180 million bribery case, issue Interpol arrest warrant | Raw Storyhttps://www.rfc1437.de/2010/12/03/nigeria-to-charge-dick-cheney-in-180-million-bribery-case-issue-interpol-arrest-warrant-raw-story/Mono Lake bacteria build their DNA using arsenic (and no, this isn’t about aliens) | Not Exactly Rocket Science | Discover Magazinehttps://www.rfc1437.de/2010/12/02/mono-lake-bacteria-build-their-dna-using-arsenic-and-no-this-isn-e2-80-99t-about-aliens-not-exactly-rocket-science-discover-magazine/NASA’s real news: bacterium on Earth that lives off arsenic! | Bad Astronomy | Discover Magazinehttps://www.rfc1437.de/2010/12/02/nasa-e2-80-99s-real-news-bacterium-on-earth-that-lives-off-arsenic-bad-astronomy-discover-magazine/WordPress › WordPress 3.0.2https://www.rfc1437.de/2010/12/01/wordpress-e2-80-ba-wordpress-3-0-2/agr / ropevim / source – Bitbuckethttps://www.rfc1437.de/2010/12/01/agr-ropevim-source-e2-80-93-bitbucket/pyflakes.vim - PyFlakes on-the-fly Python code checking : vim onlinehttps://www.rfc1437.de/2010/12/01/pyflakes-vim-pyflakes-on-the-fly-python-code-checking-vim-online/Download Qt for Open Source C++ development on Mac OS X — Qt - A cross-platform application and UI frameworkhttps://www.rfc1437.de/2010/12/01/download-qt-for-open-source-c-development-on-mac-os-x-e2-80-94-qt-a-cross-platform-application-and-ui-framework/spyderlib - Project Hosting on Google Codehttps://www.rfc1437.de/2010/11/30/spyderlib-project-hosting-on-google-code/Jugendmedienschutzstaatsvertrag: Grüne wollen zustimmen - erste Blogs schließen - Golem.dehttps://www.rfc1437.de/2010/11/30/jugendmedienschutzstaatsvertrag-grune-wollen-zustimmen-erste-blogs-schliesen-golem-de/Technology - Canvas Viewerhttps://www.rfc1437.de/2010/11/30/technology-canvas-viewer/The surreal treehoppers « Why Evolution Is Truehttps://www.rfc1437.de/2010/11/29/the-surreal-treehoppers-c2-ab-why-evolution-is-true/FrontPage - Conkerorhttps://www.rfc1437.de/2010/11/29/frontpage-conkeror/Komodo Edit is a Free Open Source Editor for Perl, Python, Tcl, PHP, Ruby & Javascripthttps://www.rfc1437.de/2010/11/29/komodo-edit-is-a-free-open-source-editor-for-perl-python-tcl-php-ruby-javascript/Python Package Index : lupa 0.18https://www.rfc1437.de/2010/11/29/python-package-index-lupa-0-18/Dampfwalzehttps://www.rfc1437.de/2010/11/28/dampfwalze-2/probablycorey's wax at master - GitHubhttps://www.rfc1437.de/2010/11/27/probablycoreys-wax-at-master-github/Have tracing JIT compilers won? | Lambda the Ultimatehttps://www.rfc1437.de/2010/11/27/have-tracing-jit-compilers-won-lambda-the-ultimate/PyPy Status Blog: PyPy 1.4: Ouroboros in practicehttps://www.rfc1437.de/2010/11/27/pypy-status-blog-pypy-1-4-ouroboros-in-practice/Build a Bootable Rescue SD Card For Your Mac | Mac|Lifehttps://www.rfc1437.de/2010/11/27/build-a-bootable-rescue-sd-card-for-your-mac-maclife/IKVM.NET Home Pagehttps://www.rfc1437.de/2010/11/27/ikvm-net-home-page/gleeBox: Keyboard glee for your webhttps://www.rfc1437.de/2010/11/26/gleebox-keyboard-glee-for-your-web/MacRuby » An Introduction to GCD with MacRubyhttps://www.rfc1437.de/2010/11/26/macruby-c2-bb-an-introduction-to-gcd-with-macruby/WordPress › Conditional CAPTCHA for WordPress « WordPress Pluginshttps://www.rfc1437.de/2010/11/25/wordpress-e2-80-ba-conditional-captcha-for-wordpress-c2-ab-wordpress-plugins/Zach's Journal - Making a small Lisp project with quickproject and Quicklisphttps://www.rfc1437.de/2010/11/25/zachs-journal-making-a-small-lisp-project-with-quickproject-and-quicklisp/Marke: Facebook will Face - Golem.dehttps://www.rfc1437.de/2010/11/24/marke-facebook-will-face-golem-de/Higher Order Javascripthttps://www.rfc1437.de/2010/11/24/higher-order-javascript/Backbone.jshttps://www.rfc1437.de/2010/11/24/backbone-js/Installing and using F# in MonoDevelop | Functional Variationshttps://www.rfc1437.de/2010/11/23/installing-and-using-f-in-monodevelop-functional-variations/F# cross-platform packages and sampleshttps://www.rfc1437.de/2010/11/23/f-cross-platform-packages-and-samples/MonoMac - Monohttps://www.rfc1437.de/2010/11/23/monomac-mono/Datejs - An open-source JavaScript Date Libraryhttps://www.rfc1437.de/2010/11/23/datejs-an-open-source-javascript-date-library/Kasseler Dokumentarfilm- und Videofest » Reality Shockhttps://www.rfc1437.de/2010/11/23/kasseler-dokumentarfilm-und-videofest-c2-bb-reality-shock/Printopia - Share Your Mac's Printers to iPhone and iPad - Print from iPhone - Ecamm Networkhttps://www.rfc1437.de/2010/11/23/printopia-share-your-macs-printers-to-iphone-and-ipad-print-from-iphone-ecamm-network/Zirkeltraining™ ★ The Range - Take A Look At Our Bag Collectionhttps://www.rfc1437.de/2010/11/22/zirkeltraining-e2-84-a2-e2-98-85-the-range-take-a-look-at-our-bag-collection/Pixie Scheme IIIhttps://www.rfc1437.de/2010/11/22/pixie-scheme-iii/Blogofilehttps://www.rfc1437.de/2010/11/22/blogofile/UltimateVimPythonSetup - Launchpad Developmenthttps://www.rfc1437.de/2010/11/22/ultimatevimpythonsetup-launchpad-development/Mit de Maizière am Frühstückstisch: Der Terror ist da, das Müsli ist alle - taz.dehttps://www.rfc1437.de/2010/11/22/mit-de-maiziere-am-fruhstuckstisch-der-terror-ist-da-das-musli-ist-alle-taz-de/How I build-in Tumblr in my Drupal install | The e-laboratoryhttps://www.rfc1437.de/2010/11/21/how-i-build-in-tumblr-in-my-drupal-install-the-e-laboratory/Sonntagslektüre: Google Streetview | Spreeblickhttps://www.rfc1437.de/2010/11/21/sonntagslekture-google-streetview-spreeblick/API | Tumblrhttps://www.rfc1437.de/2010/11/21/api-tumblr/Display photos from Tumblr (using JSON method) | drupal.orghttps://www.rfc1437.de/2010/11/21/display-photos-from-tumblr-using-json-method-drupal-org/hyphenator - Project Hosting on Google Codehttps://www.rfc1437.de/2010/11/21/hyphenator-project-hosting-on-google-code/Performancefresser ...https://www.rfc1437.de/2010/11/21/performancefresser/WordPress › Support » WP Super Cache sometimes ignites a blank Home Page! Need to restart Apachehttps://www.rfc1437.de/2010/11/21/wordpress-e2-80-ba-support-c2-bb-wp-super-cache-sometimes-ignites-a-blank-home-page-need-to-restart-apache/Ist die NATO-Strategie das Problem oder die Lösung? | tagesschau.dehttps://www.rfc1437.de/2010/11/20/ist-die-nato-strategie-das-problem-oder-die-losung-tagesschau-de/Logisimhttps://www.rfc1437.de/2010/11/20/logisim/Pure CSS GUI icons (experimental) – Nicolas Gallagher – Blog & Ephemerahttps://www.rfc1437.de/2010/11/20/pure-css-gui-icons-experimental-e2-80-93-nicolas-gallagher-e2-80-93-blog-ephemera/Have we found the universe that existed before the Big Bang?https://www.rfc1437.de/2010/11/20/have-we-found-the-universe-that-existed-before-the-big-bang/BBC - Earth News - Attack of the ratshttps://www.rfc1437.de/2010/11/20/bbc-earth-news-attack-of-the-rats/WordPress › Support » [Plugin: WP Super Cache] Blank Pages - 500 Errror - in Dashboard (sometimes the site too)https://www.rfc1437.de/2010/11/19/wordpress-e2-80-ba-support-c2-bb-plugin-wp-super-cache-blank-pages-500-errror-in-dashboard-sometimes-the-site-too/Long Live the Web: Scientific Americanhttps://www.rfc1437.de/2010/11/19/long-live-the-web-scientific-american/pyfpdf - Project Hosting on Google Codehttps://www.rfc1437.de/2010/11/19/pyfpdf-project-hosting-on-google-code/Processing.js v1.0 Released « Processing.js Bloghttps://www.rfc1437.de/2010/11/19/processing-js-v1-0-released-c2-ab-processing-js-blog/Is My Blog Working?https://www.rfc1437.de/2010/11/19/is-my-blog-working/Bottlehttps://www.rfc1437.de/2010/11/19/bottle/Owl Content in neuem Zuhausehttps://www.rfc1437.de/2010/11/19/owl-content-in-neuem-zuhause/Mit Sicherheit: Rufe nach schärferen Gesetzen | tagesschau.dehttps://www.rfc1437.de/2010/11/18/mit-sicherheit-rufe-nach-scharferen-gesetzen-tagesschau-de/WordPress › WP Super Cache « WordPress Pluginshttps://www.rfc1437.de/2010/11/18/wordpress-e2-80-ba-wp-super-cache-c2-ab-wordpress-plugins/offline_messages at master from jor3l's OSModules - GitHubhttps://www.rfc1437.de/2010/11/18/offline-messages-at-master-from-jor3ls-osmodules-github/wp-Typography • KINGdeskhttps://www.rfc1437.de/2010/11/17/wp-typography-e2-80-a2-kingdesk/Zahlenmagie beim Renteneintrittsalter: Trick 67 - taz.dehttps://www.rfc1437.de/2010/11/17/zahlenmagie-beim-renteneintrittsalter-trick-67-taz-de/Umzugsstatushttps://www.rfc1437.de/2010/11/17/umzugsstatus/Front-end Editor | scribuhttps://www.rfc1437.de/2010/11/16/front-end-editor-scribu/Icon Search Engine - Download 300,770 Free Icons, PNG Icons, Web Iconshttps://www.rfc1437.de/2010/11/16/icon-search-engine-download-300770-free-icons-png-icons-web-icons/F# in MonoDevelop and cross-platform web sites & screencasts | Blog | TomasP.Nethttps://www.rfc1437.de/2010/11/16/f-in-monodevelop-and-cross-platform-web-sites-screencasts-blog-tomasp-net/JQTreeTablehttps://www.rfc1437.de/2010/11/16/jqtreetable/''Super-secret'' debugger discovered in AMD CPUs • The Registerhttps://www.rfc1437.de/2010/11/15/super-secret-debugger-discovered-in-amd-cpus-e2-80-a2-the-register/''Space Quest'' Lands on the iPad — Courtesy of Safari | Touch Arcadehttps://www.rfc1437.de/2010/11/15/space-quest-lands-on-the-ipad-e2-80-94-courtesy-of-safari-touch-arcade/jQuery lightBox pluginhttps://www.rfc1437.de/2010/11/14/jquery-lightbox-plugin/Twenty Ten Weaver | Wordpress Weaverhttps://www.rfc1437.de/2010/11/14/twenty-ten-weaver-wordpress-weaver/Dynamic Widgets | Qurlhttps://www.rfc1437.de/2010/11/14/dynamic-widgets-qurl/kbhomes's TextCaptchaBreaker at master - GitHubhttps://www.rfc1437.de/2010/11/14/kbhomess-textcaptchabreaker-at-master-github/Word This - Google Chrome-Erweiterungsgaleriehttps://www.rfc1437.de/2010/11/14/word-this-google-chrome-erweiterungsgalerie/JLOUIS Ramblings: On Erlang, State and Crasheshttps://www.rfc1437.de/2010/11/14/jlouis-ramblings-on-erlang-state-and-crashes/atomohttps://www.rfc1437.de/2010/11/14/atomo/WordPress › WPtouch « WordPress Pluginshttps://www.rfc1437.de/2010/11/13/wordpress-e2-80-ba-wptouch-c2-ab-wordpress-plugins/Unionsminister: Sitzblockierer sollen Polizei-Einsatz bezahlen | tagesschau.dehttps://www.rfc1437.de/2010/11/13/unionsminister-sitzblockierer-sollen-polizei-einsatz-bezahlen-tagesschau-de/Herbsthttps://www.rfc1437.de/2010/11/13/herbst/Introducing Thirty Ten, my guide to creating a Twenty Ten Child Theme | aaron.jorb.inaaron.jorb.inhttps://www.rfc1437.de/2010/11/13/introducing-thirty-ten-my-guide-to-creating-a-twenty-ten-child-theme-aaron-jorb-inaaron-jorb-in/WordPress › WordPress Nginx proxy cache integrator « WordPress Pluginshttps://www.rfc1437.de/2010/11/13/wordpress-e2-80-ba-wordpress-nginx-proxy-cache-integrator-c2-ab-wordpress-plugins/Bitrot reloadedhttps://www.rfc1437.de/2010/11/13/bitrot-reloaded/rfc1437 | Content-type: matter-transport/sentient-life-formhttps://www.rfc1437.de/2010/11/13/rfc1437-content-type-matter-transport-sentient/Bitrothttps://www.rfc1437.de/2010/11/12/bitrot/Fragen und Antworten zur Gesundheitsreform | tagesschau.dehttps://www.rfc1437.de/2010/11/12/fragen-und-antworten-zur-gesundheitsreform/Kilimhttps://www.rfc1437.de/2010/11/10/kilim/Orc Languagehttps://www.rfc1437.de/2010/11/10/orc-language/Twisted Orchestration Language in Launchpadhttps://www.rfc1437.de/2010/11/10/twisted-orchestration-language-in-launchpad/Fat Cat Software - iPhoto Library Managerhttps://www.rfc1437.de/2010/11/08/fat-cat-software-iphoto-library-manager/Interactive Fabrication » Beautiful Modelerhttps://www.rfc1437.de/2010/11/08/interactive-fabrication-beautiful-modeler/The V4Z80P – A Z80 Based Laptop @ Retroleumhttps://www.rfc1437.de/2010/11/08/the-v4z80p-a-z80-based-laptop-retroleum/Tornado Web Server Documentationhttps://www.rfc1437.de/2010/11/08/tornado-web-server-documentation/Oracle cooks up free and premium JVMshttps://www.rfc1437.de/2010/11/07/oracle-cooks-up-free-and-premium-jvms/Kunsthalle Bielefeld: Der Westfälische Expressionismushttps://www.rfc1437.de/2010/11/05/kunsthalle-bielefeld-der-westfaelische/Mediathek für Mac OS Xhttps://www.rfc1437.de/2010/11/05/mediathek-fuer-mac-os-x/Panasonic DMC-GF2 Preview: 1. Introduction: Digital Photography Reviewhttps://www.rfc1437.de/2010/11/05/panasonic-dmc-gf2-preview-1-introduction-digital/Eventlet Networking Libraryhttps://www.rfc1437.de/2010/11/02/eventlet-networking-library/Content-type: matter-transport/sentient-life-formhttps://www.rfc1437.de/2010/11/02/page/Immateriblog.de - Matthias Spielkamp über Immaterialgüter in der digitalen Welthttps://www.rfc1437.de/2010/11/01/immateriblog-de-matthias-spielkamp-ueber/don’t look » columnManagerhttps://www.rfc1437.de/2010/10/28/don-t-look-columnmanager/John Resig - Simple JavaScript Inheritancehttps://www.rfc1437.de/2010/10/28/john-resig-simple-javascript-inheritance/jQuery column cell selector - bramstein.comhttps://www.rfc1437.de/2010/10/28/jquery-column-cell-selector-bramstein-com/Inform 7https://www.rfc1437.de/2010/10/27/inform-7/Magic Launchhttps://www.rfc1437.de/2010/10/27/magic-launch/Coffee on the Keyboard » Bleach, HTML sanitizer and auto-linkerhttps://www.rfc1437.de/2010/10/25/coffee-on-the-keyboard-bleach-html-sanitizer-and/robhudson's django-debug-toolbar at master - GitHubhttps://www.rfc1437.de/2010/10/25/robhudson-s-django-debug-toolbar-at-master-github/Oxymoron CSS Frameworkhttps://www.rfc1437.de/2010/10/21/oxymoron-css-framework/postgres 9 streaming replication and django balancerhttps://www.rfc1437.de/2010/10/21/postgres-9-streaming-replication-and-django/Fuzzy Mathematics with FuzzPy (Part 1) | Mad Pythonhttps://www.rfc1437.de/2010/10/19/fuzzy-mathematics-with-fuzzpy-part-1-mad-python/buckingham - Project Hosting on Google Codehttps://www.rfc1437.de/2010/10/18/buckingham-project-hosting-on-google-code/Building iPhone Apps with HTML, CSS, and JavaScripthttps://www.rfc1437.de/2010/10/18/building-iphone-apps-with-html-css-and-javascript-2/PhoneGaphttps://www.rfc1437.de/2010/10/18/phonegap/HyperGrid 1.5, OpenSim, & 3D Web | HyperGrid Teleport Networkhttps://www.rfc1437.de/2010/10/11/hypergrid-1-5-opensim-3d-web-hypergrid-teleport/jacksonh's manos at master - GitHubhttps://www.rfc1437.de/2010/10/11/jacksonh-s-manos-at-master-github/kramdownhttps://www.rfc1437.de/2010/10/11/kramdown/RubyFrontier Documentationhttps://www.rfc1437.de/2010/10/11/rubyfrontier-documentation-2/Andrew de Quincey's livejournalhttps://www.rfc1437.de/2010/10/09/andrew-de-quincey-s-livejournal/brisshttps://www.rfc1437.de/2010/10/08/briss/Camelot - See ithttps://www.rfc1437.de/2010/10/08/camelot-see-it/Downloads for diva's d2 - GitHubhttps://www.rfc1437.de/2010/10/08/downloads-for-diva-s-d2-github/uncertainties Python package v1.7.0 documentationhttps://www.rfc1437.de/2010/10/08/uncertainties-python-package-v1-7-0-documentation/LookingGlasshttps://www.rfc1437.de/2010/10/07/lookingglass/Radegast Metaverse Client · Lightweight client for connecting to Second Life and OpenSim based virtual worldshttps://www.rfc1437.de/2010/10/07/radegast-metaverse-client-lightweight-client-for/santhoshtr's pypdflib at master - GitHubhttps://www.rfc1437.de/2010/10/06/santhoshtr-s-pypdflib-at-master-github/There is no Plan B: why the IPv4-to-IPv6 transition will be uglyhttps://www.rfc1437.de/2010/10/06/there-is-no-plan-b-why-the-ipv4-to-ipv6/Chicken Nuggets Are Made From This Pink Goophttps://www.rfc1437.de/2010/10/04/chicken-nuggets-are-made-from-this-pink-goop/Filtering Dropdown Lists in the Django Admin — Stereoplexhttps://www.rfc1437.de/2010/10/02/filtering-dropdown-lists-in-the-django-admin/arskom's soaplib at 1_0 - GitHubhttps://www.rfc1437.de/2010/10/01/arskom-s-soaplib-at-1-0-github/pysimplesoap - Project Hosting on Google Codehttps://www.rfc1437.de/2010/10/01/pysimplesoap-project-hosting-on-google-code/Using the ElementTree Module to Generate SOAP\_Messageshttps://www.rfc1437.de/2010/10/01/using-the-elementtree-module-to-generate-soap/dcramer's django-sentry at master - GitHubhttps://www.rfc1437.de/2010/09/28/dcramer-s-django-sentry-at-master-github/Wo ich schon überall warhttps://www.rfc1437.de/2010/09/28/wo-ich-schon-ueberall-war/gcv's appengine-magic at master - GitHubhttps://www.rfc1437.de/2010/09/27/gcv-s-appengine-magic-at-master-github/jduey's arrows at master - GitHubhttps://www.rfc1437.de/2010/09/27/jduey-s-arrows-at-master-github/ninjudd's cake at master - GitHubhttps://www.rfc1437.de/2010/09/27/ninjudd-s-cake-at-master-github/Shotwellhttps://www.rfc1437.de/2010/09/27/shotwell/Kojo Homehttps://www.rfc1437.de/2010/09/23/kojo-home/Lastschriftzahlung: Easycash sammelt Daten über gute und schlechte Kunden - Golem.dehttps://www.rfc1437.de/2010/09/23/lastschriftzahlung-easycash-sammelt-daten-ueber/Finepix X100: Fujifilm bringt Kompaktkamera mit APS-C-Sensor - Golem.dehttps://www.rfc1437.de/2010/09/21/finepix-x100-fujifilm-bringt-kompaktkamera-mit/Fujifilm FinePix X100: Where the Hell Did THIS Come From? | Enticing the Lighthttps://www.rfc1437.de/2010/09/21/fujifilm-finepix-x100-where-the-hell-did-this/Fujifilm unveils FinePix X100 large-sensor compact: Digital Photography Reviewhttps://www.rfc1437.de/2010/09/21/fujifilm-unveils-finepix-x100-large-sensor/Hands on the VLC iPad App (Pretty Good)https://www.rfc1437.de/2010/09/21/hands-on-the-vlc-ipad-app-pretty-good/README - copperhead - Project Hosting on Google Codehttps://www.rfc1437.de/2010/09/21/readme-copperhead-project-hosting-on-google-code/TidBITS Watchlist: TinkerTool 4.2https://www.rfc1437.de/2010/09/21/tidbits-watchlist-tinkertool-4-2/codepadhttps://www.rfc1437.de/2010/09/15/codepad/Free Pascal - Advanced open source Pascal compiler for Pascal and Object Pascal - Home Pagehttps://www.rfc1437.de/2010/09/15/free-pascal-advanced-open-source-pascal-compiler/home | Disco Projecthttps://www.rfc1437.de/2010/09/15/home-disco-project/Lazarus Snapshotshttps://www.rfc1437.de/2010/09/15/lazarus-snapshots/octopy - Project Hosting on Google Codehttps://www.rfc1437.de/2010/09/15/octopy-project-hosting-on-google-code/mincemeat.py: MapReduce on Pythonhttps://www.rfc1437.de/2010/09/14/mincemeat-py-mapreduce-on-python/Sass - Syntactically Awesome Stylesheetshttps://www.rfc1437.de/2010/09/14/sass-syntactically-awesome-stylesheets/NinjaKit: GreaseMonkey for Safari! : applehttps://www.rfc1437.de/2010/09/13/ninjakit-greasemonkey-for-safari-apple/NodeBox for OpenGL | City in a Bottlehttps://www.rfc1437.de/2010/09/13/nodebox-for-opengl-city-in-a-bottle/objgraph - Drawing Python object reference graphshttps://www.rfc1437.de/2010/09/13/objgraph-drawing-python-object-reference-graphs/pyglethttps://www.rfc1437.de/2010/09/13/pyglet/Introductionhttps://www.rfc1437.de/2010/09/10/introduction/Lingua::Romana::Perligata -- Perl for the XXIimum Centuryhttps://www.rfc1437.de/2010/09/10/lingua-romana-perligata-perl-for-the-xxiimum/Squerylhttps://www.rfc1437.de/2010/09/10/squeryl/COBOL ON COGShttps://www.rfc1437.de/2010/09/06/cobol-on-cogs/DOS on Dope: The last MVC web framework you''ll ever needhttps://www.rfc1437.de/2010/09/06/dos-on-dope-the-last-mvc-web-framework-you-ll/Plachttps://www.rfc1437.de/2010/09/06/plac/Python Datastructures Backed by Redis @ Irrational Exuberancehttps://www.rfc1437.de/2010/09/06/python-datastructures-backed-by-redis-irrational/Schwarz-Gelb einigt sich auf längere AKW-Laufzeitenhttps://www.rfc1437.de/2010/09/06/schwarz-gelb-einigt-sich-auf-laengere-akw/zeromqhttps://www.rfc1437.de/2010/09/06/zeromq/Kein Sommersend mehr?:\_Wochenmarkt vor der Privatisierung\_-\_ Münstersche Zeitunghttps://www.rfc1437.de/2010/09/04/kein-sommersend-mehr-wochenmarkt-vor-der/Digitale Literatur: Neal Stephenson und die digital-sozialen Mongolen - Golem.dehttps://www.rfc1437.de/2010/09/03/digitale-literatur-neal-stephenson-und-die/JazzSchemehttps://www.rfc1437.de/2010/09/03/jazzscheme-2/Quicklisp - get started with Common Lisp libraries, quicklyhttps://www.rfc1437.de/2010/09/03/quicklisp-get-started-with-common-lisp-libraries/Paver: Easy Scripting for Software Projectshttps://www.rfc1437.de/2010/09/02/paver-easy-scripting-for-software-projects/Pysistencehttps://www.rfc1437.de/2010/09/02/pysistence/The Official web2py Bookhttps://www.rfc1437.de/2010/09/01/the-official-web2py-book/emscriptenhttps://www.rfc1437.de/2010/08/30/emscripten/lambdajhttps://www.rfc1437.de/2010/08/30/lambdaj/nakkaya's static at master - GitHubhttps://www.rfc1437.de/2010/08/30/nakkaya-s-static-at-master-github/Project Aon: Main / Home (browse)https://www.rfc1437.de/2010/08/30/project-aon-main-home-browse/Creating ePub files with Pageshttps://www.rfc1437.de/2010/08/27/creating-epub-files-with-pages/Meliae python memory analysis in Launchpadhttps://www.rfc1437.de/2010/08/27/meliae-python-memory-analysis-in-launchpad/Cosina joins Micro Four Thirds system: Digital Photography Reviewhttps://www.rfc1437.de/2010/08/26/cosina-joins-micro-four-thirds-system-digital/[Cython] ANN: Cython 0.13 released!https://www.rfc1437.de/2010/08/26/cython-ann-cython-0-13-released/Falls sich wer wundert wo ich warhttps://www.rfc1437.de/2010/08/23/falls-sich-wer-wundert-wo-ich-war/wo ich auch noch warhttps://www.rfc1437.de/2010/08/23/wo-ich-auch-noch-war/Wegen des Aufschwungs: Wirtschaftsverband will Urlaub kürzen - taz.dehttps://www.rfc1437.de/2010/08/21/wegen-des-aufschwungs-wirtschaftsverband-will/Multiplication is easier when it's complexhttps://www.rfc1437.de/2010/08/03/multiplication-is-easier-when-it-s-complex/Virtuelle Internetlady provoziert in den USA Geheimnisverrat | tagesschau.dehttps://www.rfc1437.de/2010/08/03/virtuelle-internetlady-provoziert-in-den-usa/Emotion Markup Language (EmotionML) 1.0https://www.rfc1437.de/2010/07/31/emotion-markup-language-emotionml-1-0/JEmacs - the Java/Scheme-based Emacshttps://www.rfc1437.de/2010/07/30/jemacs-the-java-scheme-based-emacs/Scribes - Simple And Powerful Text Editor for GNOMEhttps://www.rfc1437.de/2010/07/30/scribes-simple-and-powerful-text-editor-for-gnome/EU-Kommission plant Umstellung aller Girokonto-Nummern | tagesschau.dehttps://www.rfc1437.de/2010/07/28/eu-kommission-plant-umstellung-aller-girokonto/PEP 380 -- Syntax for Delegating to a Subgeneratorhttps://www.rfc1437.de/2010/07/27/pep-380-syntax-for-delegating-to-a-subgenerator/saucelabs's monocle at master - GitHubhttps://www.rfc1437.de/2010/07/27/saucelabs-s-monocle-at-master-github/Hg-Git Mercurial Pluginhttps://www.rfc1437.de/2010/07/26/hg-git-mercurial-plugin-2/Valued Lessons: Monads in Python (with nice syntax!)https://www.rfc1437.de/2010/07/26/valued-lessons-monads-in-python-with-nice-syntax-2/pjs4ipad - Project Hosting on Google Codehttps://www.rfc1437.de/2010/07/25/pjs4ipad-project-hosting-on-google-code/0.7 Release - OpenSimhttps://www.rfc1437.de/2010/07/24/0-7-release-opensim/TIDE 2.0 betahttps://www.rfc1437.de/2010/07/24/tide-2-0-beta/AR.Drone.com – Parrot Wi-Fi quadricopter. Augmented Reality games on iPhone, iPod touch & iPadhttps://www.rfc1437.de/2010/07/23/ar-drone-com-parrot-wi-fi-quadricopter-augmented/Python IDE with Django support : JetBrains PyCharmhttps://www.rfc1437.de/2010/07/23/python-ide-with-django-support-jetbrains-pycharm/Don't Hold It Wronghttps://www.rfc1437.de/2010/07/20/don-t-hold-it-wrong/Gefahren im Netz: Kriminalbeamte fordern Reset-Knopf fürs Internet - SPIEGEL ONLINE - Nachrichten - Netzwelthttps://www.rfc1437.de/2010/07/19/gefahren-im-netz-kriminalbeamte-fordern-reset/itod's fluidium at master - GitHubhttps://www.rfc1437.de/2010/07/19/itod-s-fluidium-at-master-github/Panasonic DMC-LX5K Support and Service Informationhttps://www.rfc1437.de/2010/07/18/panasonic-dmc-lx5k-support-and-service-information/Lightweight Approach to AOP in Pythonhttps://www.rfc1437.de/2010/07/17/lightweight-approach-to-aop-in-python/Mobile/firefoxhome - MozillaWikihttps://www.rfc1437.de/2010/07/17/mobile-firefoxhome-mozillawiki/Building iPhone Apps with HTML, CSS, and JavaScripthttps://www.rfc1437.de/2010/07/16/building-iphone-apps-with-html-css-and-javascript/jquery-aop - Project Hosting on Google Codehttps://www.rfc1437.de/2010/07/16/jquery-aop-project-hosting-on-google-code/Auch Union gegen Homöopathie auf Kassenkostenhttps://www.rfc1437.de/2010/07/12/auch-union-gegen-homoeopathie-auf-kassenkosten/jessenoller.com - PEP 3148 Accepted: “futures – execute computations asynchronously”https://www.rfc1437.de/2010/07/12/jessenoller-com-pep-3148-accepted-futures-execute/Chickenfoothttps://www.rfc1437.de/2010/07/11/chickenfoot/CoScripterhttps://www.rfc1437.de/2010/07/11/coscripter/''Hollywood Accounting'' Losing In The Courts | Techdirthttps://www.rfc1437.de/2010/07/10/hollywood-accounting-losing-in-the-courts-techdirt/Three Minute Philosophy - Immanuel Kanthttps://www.rfc1437.de/2010/07/10/three-minute-philosophy-immanuel-kant/Fake - Mac OS X Web Browser Automation and Webapp Testing Made Simple.https://www.rfc1437.de/2010/07/05/fake-mac-os-x-web-browser-automation-and-webapp/Dropbox APIhttps://www.rfc1437.de/2010/07/04/dropbox-api/Python 2.7 Releasehttps://www.rfc1437.de/2010/07/04/python-2-7-release/Gib dem Irrsinn eine Chance!: Ich kaufe nicht mehr bei Thalia!!!https://www.rfc1437.de/2010/07/03/gib-dem-irrsinn-eine-chance-ich-kaufe-nicht-mehr/Back In Timehttps://www.rfc1437.de/2010/07/02/back-in-time/liebke's cljhttps://www.rfc1437.de/2010/07/01/liebke-s-clj/jessemiller's HamlPyhttps://www.rfc1437.de/2010/06/27/jessemiller-s-hamlpy/Welcome | Ibis Reader ™https://www.rfc1437.de/2010/06/27/welcome-ibis-reader/Write-Ahead Logginghttps://www.rfc1437.de/2010/06/27/write-ahead-logging/Inconsolatahttps://www.rfc1437.de/2010/06/23/inconsolata/iPad or Bust! - Blog - The Omni Grouphttps://www.rfc1437.de/2010/06/23/ipad-or-bust-blog-the-omni-group/Nicholas Piël » ZeroMQ an introductionhttps://www.rfc1437.de/2010/06/23/nicholas-pi-l-zeromq-an-introduction/Ben Goldacre: Predictions are fine, but there are better ways to protect a populationhttps://www.rfc1437.de/2010/06/20/ben-goldacre-predictions-are-fine-but-there-are/iOS 4 walkthrough | TiPbhttps://www.rfc1437.de/2010/06/20/ios-4-walkthrough-tipb/PyFilesystem 0.3 releasedhttps://www.rfc1437.de/2010/06/20/pyfilesystem-0-3-released/About Greenfoothttps://www.rfc1437.de/2010/06/19/about-greenfoot/Chimply generates your imageshttps://www.rfc1437.de/2010/06/18/chimply-generates-your-images/PyPy Status Blog: A JIT for Regular Expression Matchinghttps://www.rfc1437.de/2010/06/17/pypy-status-blog-a-jit-for-regular-expression/nutshell — Lettuce v0.1.2 (barium release) documentationhttps://www.rfc1437.de/2010/06/16/nutshell-lettuce-v0-1-2-barium-release/SSH on the iPhone at last | The 23x bloghttps://www.rfc1437.de/2010/06/16/ssh-on-the-iphone-at-last-the-23x-blog/Urheberrechtsreform: Justizministerin füllt Dritten Korb - Golem.dehttps://www.rfc1437.de/2010/06/16/urheberrechtsreform-justizministerin-fuellt/iFolderhttps://www.rfc1437.de/2010/06/12/ifolder/Innovation sieht anders aus: Rechristiansenisierung - taz.dehttps://www.rfc1437.de/2010/06/12/innovation-sieht-anders-aus/SPD sagt CDU in NRW ab: Die wahren Irren - taz.dehttps://www.rfc1437.de/2010/06/12/spd-sagt-cdu-in-nrw-ab-die-wahren-irren-taz-de/AdBlock for Safarihttps://www.rfc1437.de/2010/06/09/adblock-for-safari/Im Auge des Gesetzes — Der Freitaghttps://www.rfc1437.de/2010/06/09/im-auge-des-gesetzes-der-freitag/Racket Releasedhttps://www.rfc1437.de/2010/06/08/racket-released/Internettelefonie: iPhone: Telekom droht Skype-Nutzern - WirtschaftsWochehttps://www.rfc1437.de/2010/06/07/internettelefonie-iphone-telekom-droht-skype/HDR Testhttps://www.rfc1437.de/2010/06/06/hdr-test/HDRtist "HDR Software will never be the same" - Ohanawarehttps://www.rfc1437.de/2010/06/06/hdrtist-hdr-software-will-never-be-the-same/kenkeiter's ryfihttps://www.rfc1437.de/2010/06/06/kenkeiter-s-ryfi/Creaceed - Hydrahttps://www.rfc1437.de/2010/06/04/creaceed-hydra/HDR PhotoStudio: HDR photo software, HDR merge & editing, BEF plug-in, realistic HDR imaginghttps://www.rfc1437.de/2010/06/04/hdr-photostudio-hdr-photo-software-hdr-merge/Plac: Parsing the Command Line the Easy Wayhttps://www.rfc1437.de/2010/06/04/plac-parsing-the-command-line-the-easy-way/Python Package Index : Baker 1.1https://www.rfc1437.de/2010/06/04/python-package-index-baker-1-1/Aeracode :: On Django And Migrationshttps://www.rfc1437.de/2010/06/03/aeracode-on-django-and-migrations/Mamiya announces RZ33 medium format camerahttps://www.rfc1437.de/2010/06/03/mamiya-announces-rz33-medium-format-camera/Oppugn.us: Where The Rants Gohttps://www.rfc1437.de/2010/06/03/oppugn-us-where-the-rants-go/HackageDB: berp-0.0.1https://www.rfc1437.de/2010/05/31/hackagedb-berp-0-0-1/Köhler-Rücktritt: Fassungslosigkeit und Bedauernhttps://www.rfc1437.de/2010/05/31/koehler-ruecktritt-fassungslosigkeit-und-bedauern/Fossil: Fossil Home Pagehttps://www.rfc1437.de/2010/05/30/fossil-fossil-home-page/ikiwikihttps://www.rfc1437.de/2010/05/30/ikiwiki/Bug 560738 – No Mac-style keyboard shortcutshttps://www.rfc1437.de/2010/05/28/bug-560738-no-mac-style-keyboard-shortcuts/daemon 1.0https://www.rfc1437.de/2010/05/27/daemon-1-0/pyquery: a jquery-like library for pythonhttps://www.rfc1437.de/2010/05/27/pyquery-a-jquery-like-library-for-python/python-daemon 1.5.5https://www.rfc1437.de/2010/05/27/python-daemon-1-5-5/Spring Pythonhttps://www.rfc1437.de/2010/05/27/spring-python/Turkmenbashi 1.0.0https://www.rfc1437.de/2010/05/27/turkmenbashi-1-0-0/MY WORLD IS A LITTLE DARKER…https://www.rfc1437.de/2010/05/23/my-world-is-a-little-darker/Whack’emhttps://www.rfc1437.de/2010/05/22/whack-em/Bundesgerichtshof: Freie Bahn für Softwarepatentehttps://www.rfc1437.de/2010/05/21/bundesgerichtshof-freie-bahn-fuer-softwarepatente/Landis gesteht Dopinghttps://www.rfc1437.de/2010/05/20/landis-gesteht-doping/RFC1437 on the Road: Archivehttps://www.rfc1437.de/2010/05/19/rfc1437-on-the-road-archive-2/Waveboard – Google Wave Client for iPhone and Machttps://www.rfc1437.de/2010/05/18/waveboard-google-wave-client-for-iphone-and-mac/AKW-Laufzeiten sollen ohne Bundesrat verlängert werdenhttps://www.rfc1437.de/2010/05/16/akw-laufzeiten-sollen-ohne-bundesrat-verlaengert/Clojure - datatypeshttps://www.rfc1437.de/2010/05/15/clojure-datatypes/Deutsche Bank für verbotene Wetten bestrafthttps://www.rfc1437.de/2010/05/15/deutsche-bank-fuer-verbotene-wetten-bestraft/Koch beharrt auf Kürzungen im Bildungsbereichhttps://www.rfc1437.de/2010/05/15/koch-beharrt-auf-kuerzungen-im-bildungsbereich/Köhler kritisiert Klagewut deutscher Politikerhttps://www.rfc1437.de/2010/05/15/koehler-kritisiert-klagewut-deutscher-politiker/Rubinius : Use Ruby™https://www.rfc1437.de/2010/05/15/rubinius-use-ruby/Street View: Google belauschte offene WLANshttps://www.rfc1437.de/2010/05/15/street-view-google-belauschte-offene-wlans/HTML5 For Drunkshttps://www.rfc1437.de/2010/05/14/html5-for-drunks/alienscience's leiningen-warhttps://www.rfc1437.de/2010/05/12/alienscience-s-leiningen-war/hiredman's lein-gaehttps://www.rfc1437.de/2010/05/12/hiredman-s-lein-gae/Licenser's lein-searchhttps://www.rfc1437.de/2010/05/12/licenser-s-lein-search/sethtrain's begethttps://www.rfc1437.de/2010/05/12/sethtrain-s-beget/NRW hat gewählt - Landtagswahl 2010https://www.rfc1437.de/2010/05/09/nrw-hat-gewaehlt-landtagswahl-2010/Mac OS X on netbooks | myMacNetbook.comhttps://www.rfc1437.de/2010/05/08/mac-os-x-on-netbooks-mymacnetbook-com/Bischof Walter Mixa: Mixa des sexuellen Missbrauchs verdächtigthttps://www.rfc1437.de/2010/05/07/bischof-walter-mixa-mixa-des-sexuellen/Familienzuwachs: Neandertaler mit Menschen verwandthttps://www.rfc1437.de/2010/05/07/familienzuwachs-neandertaler-mit-menschen-verwandt/Dow Falls in High-Speed Drop - WSJ.comhttps://www.rfc1437.de/2010/05/06/dow-falls-in-high-speed-drop-wsj-com/What iPads Did To My Family - Chuck's Bloghttps://www.rfc1437.de/2010/05/06/what-ipads-did-to-my-family-chuck-s-blog/Ceph: A Linux petabyte-scale distributed file systemhttps://www.rfc1437.de/2010/05/05/ceph-a-linux-petabyte-scale-distributed-file/Marak's JSLINQ at master - GitHubhttps://www.rfc1437.de/2010/05/05/marak-s-jslinq-at-master-github/parsedatetimehttps://www.rfc1437.de/2010/05/05/parsedatetime/PyPy Status Blog: Running wxPython on top of pypyhttps://www.rfc1437.de/2010/05/05/pypy-status-blog-running-wxpython-on-top-of-pypy/Zoolanderhttps://www.rfc1437.de/2010/05/05/zoolander/CDU gerät unter Druck wegen "Wählerinitiative"https://www.rfc1437.de/2010/05/02/cdu-geraet-unter-druck-wegen-waehlerinitiative/The Brads – How to Alienate a Fanbasehttps://www.rfc1437.de/2010/04/29/the-brads-how-to-alienate-a-fanbase/Thoughts on Flashhttps://www.rfc1437.de/2010/04/29/thoughts-on-flash/Gerade mal ein Monat ist das her ...https://www.rfc1437.de/2010/04/28/gerade-mal-ein-monat-ist-das-her/django-paginationhttps://www.rfc1437.de/2010/04/27/django-pagination/Henry's EuLisphttps://www.rfc1437.de/2010/04/27/henry-s-eulisp/jcottonhttps://www.rfc1437.de/2010/04/27/jcotton/Schlüsselbund meldet: Der Zugriff auf dieses Objekt unterliegt Beschränkungenhttps://www.rfc1437.de/2010/04/27/schluesselbund-meldet-der-zugriff-auf-dieses/Große Kirchner-Retrospektive im Frankfurter Städelhttps://www.rfc1437.de/2010/04/23/grosse-kirchner-retrospektive-im-frankfurter/HoudahGeo - Photo Geocoding for Machttps://www.rfc1437.de/2010/04/23/houdahgeo-photo-geocoding-for-mac/Markdochttps://www.rfc1437.de/2010/04/22/markdoc/Große Herstellerunterschiede bei Digitalkamera-Defekten - Golem.dehttps://www.rfc1437.de/2010/04/19/grosse-herstellerunterschiede-bei-digitalkamera/This Is Apple's Next iPhone - Iphone 4 - Gizmodohttps://www.rfc1437.de/2010/04/19/this-is-apple-s-next-iphone-iphone-4-gizmodo/Web.de nennt Fraunhofer-Studie "Microsoft-Propaganda"https://www.rfc1437.de/2010/04/18/web-de-nennt-fraunhofer-studie-microsoft/XML in Postgres – The Game Changer « Flex and Specs()https://www.rfc1437.de/2010/04/18/xml-in-postgres-the-game-changer-flex-and-specs/Archives of the Caml Mailing list: O''Caml for DOShttps://www.rfc1437.de/2010/04/17/archives-of-the-caml-mailing-list-o-caml-for-dos/Umweltbundesamt fordert Pkw-Maut | tagesschau.dehttps://www.rfc1437.de/2010/04/15/umweltbundesamt-fordert-pkw-maut-tagesschau-de/Daring Fireball: New iPhone Developer Agreement Bans the Use of Adobe's Flash-to-iPhone Compilerhttps://www.rfc1437.de/2010/04/09/daring-fireball-new-iphone-developer-agreement/django-ajax-filtered-fieldshttps://www.rfc1437.de/2010/04/09/django-ajax-filtered-fields/My experience with using MongoDB for great science.https://www.rfc1437.de/2010/04/09/my-experience-with-using-mongodb-for-great-science/Ars Technica reviews the iPadhttps://www.rfc1437.de/2010/04/08/ars-technica-reviews-the-ipad/CSU: Absage an Internetsperren verstößt gegen Absprachen - Golem.dehttps://www.rfc1437.de/2010/04/07/csu-absage-an-internetsperren-verstoesst-gegen/twitter's gizzardhttps://www.rfc1437.de/2010/04/07/twitter-s-gizzard/Writing a non-relational Django backend - Django nonrel / NoSQL blog - All buttons pressedhttps://www.rfc1437.de/2010/04/07/writing-a-non-relational-django-backend-django/IBM breaks OSS patent promise, targets mainframe emulatorhttps://www.rfc1437.de/2010/04/06/ibm-breaks-oss-patent-promise-targets-mainframe/Perfection kills » What’s wrong with extending the DOMhttps://www.rfc1437.de/2010/04/06/perfection-kills-what-s-wrong-with-extending-the/Oracle Announces Latest Release of Oracle® Berkeley DBhttps://www.rfc1437.de/2010/04/03/oracle-announces-latest-release-of-oracle/Elixirgraphicshttps://www.rfc1437.de/2010/04/02/elixirgraphics/seyDesign Professional RapidWeaver themeshttps://www.rfc1437.de/2010/04/02/seydesign-professional-rapidweaver-themes/YourHead Softwarehttps://www.rfc1437.de/2010/04/02/yourhead-software/Sony Steals Feature From Your PlayStation 3https://www.rfc1437.de/2010/03/31/sony-steals-feature-from-your-playstation-3/EU-Kommission will Internetsperren einführenhttps://www.rfc1437.de/2010/03/29/eu-kommission-will-internetsperren-einfuehren/Viele Tote bei Anschlägen auf Moskauer U-Bahnhttps://www.rfc1437.de/2010/03/29/viele-tote-bei-anschlaegen-auf-moskauer-u-bahn/NLTK Home (Natural Language Toolkit)https://www.rfc1437.de/2010/03/12/nltk-home-natural-language-toolkit/Python Package Index : Esrapy 0.5https://www.rfc1437.de/2010/03/12/python-package-index-esrapy-0-5/Building Skills in Pythonhttps://www.rfc1437.de/2010/03/10/building-skills-in-python/Jobo AG & Jobo Labortechnik GmbH sind insolvent (aktualisiert) | photoscalahttps://www.rfc1437.de/2010/03/08/jobo-ag-jobo-labortechnik-gmbh-sind-insolvent/Oscar für Waltzhttps://www.rfc1437.de/2010/03/08/oscar-fuer-waltz/Bottle: Python Web Frameworkhttps://www.rfc1437.de/2010/03/07/bottle-python-web-framework/clojure-pythonhttps://www.rfc1437.de/2010/03/07/clojure-python/hugoduncan's clj-ssh at master - GitHubhttps://www.rfc1437.de/2010/03/07/hugoduncan-s-clj-ssh-at-master-github/Scala: Post-Functional, Post-Modern, or Just Perl++?https://www.rfc1437.de/2010/03/07/scala-post-functional-post-modern-or-just-perl/digg's lazyboy at master - GitHubhttps://www.rfc1437.de/2010/03/02/digg-s-lazyboy-at-master-github/17.6. multiprocessinghttps://www.rfc1437.de/2010/03/01/17-6-multiprocessing/rfc1437 / lazypy / source — bitbucket.orghttps://www.rfc1437.de/2010/03/01/rfc1437-lazypy-source-bitbucket-org/Semanchuk.com - Python IPC Moduleshttps://www.rfc1437.de/2010/03/01/semanchuk-com-python-ipc-modules/A simple web application in Clojure using ring and enlive « LShift Ltd.https://www.rfc1437.de/2010/02/28/a-simple-web-application-in-clojure-using-ring/Dynamic Web Development with Seasidehttps://www.rfc1437.de/2010/02/28/dynamic-web-development-with-seaside-2/Heroku | Ruby Cloud Platform as a Servicehttps://www.rfc1437.de/2010/02/28/heroku-ruby-cloud-platform-as-a-service/inessential.com: On switching away from Core Datahttps://www.rfc1437.de/2010/02/28/inessential-com-on-switching-away-from-core-data/Johnny Cache v0.1 documentationhttps://www.rfc1437.de/2010/02/28/johnny-cache-v0-1-documentation/Kotka : Projects : Clojure : VimClojurehttps://www.rfc1437.de/2010/02/28/kotka-projects-clojure-vimclojure/LinuxTupleshttps://www.rfc1437.de/2010/02/28/linuxtuples/mmcgrana's ring at master - GitHubhttps://www.rfc1437.de/2010/02/28/mmcgrana-s-ring-at-master-github/Open Wi-Fi 'outlawed' in Digital Economy Bill - ZDNet.co.ukhttps://www.rfc1437.de/2010/02/28/open-wi-fi-outlawed-in-digital-economy-bill-zdnet/PiCloud | Cloud Computing. Simplified.https://www.rfc1437.de/2010/02/28/picloud-cloud-computing-simplified/rfc1437 / django-standalone / overview — bitbucket.orghttps://www.rfc1437.de/2010/02/28/rfc1437-django-standalone-overview-bitbucket-org/World Record-Setting Kick to the Groin Raises Five Perplexing Questions - World Record - Gawkerhttps://www.rfc1437.de/2010/02/28/world-record-setting-kick-to-the-groin-raises/fiat lux » Extracting iPhone Backup Data with mobilesync-inspecthttps://www.rfc1437.de/2010/02/27/fiat-lux-extracting-iphone-backup-data-with/iphone-backup-decoder - Project Hosting on Google Codehttps://www.rfc1437.de/2010/02/27/iphone-backup-decoder-project-hosting-on-google/iPhone / iPod Touch Backup Extractorhttps://www.rfc1437.de/2010/02/27/iphone-ipod-touch-backup-extractor/Menial » Basehttps://www.rfc1437.de/2010/02/27/menial-base/Bundestag: Argumente oder Transparente?https://www.rfc1437.de/2010/02/26/bundestag-argumente-oder-transparente/dajaxproject.com - easy to use ajax library for djangohttps://www.rfc1437.de/2010/02/24/dajaxproject-com-easy-to-use-ajax-library-for/PostgreSQL: News: 9.0 Alpha 4 Available Nowhttps://www.rfc1437.de/2010/02/24/postgresql-news-9-0-alpha-4-available-now/Squeryl — Introductionhttps://www.rfc1437.de/2010/02/24/squeryl-introduction/IronPython 2.0 and Jython 2.5 performance compared to Python 2.5https://www.rfc1437.de/2010/02/22/ironpython-2-0-and-jython-2-5-performance/IronPython hammers CPython when not mutating class attributeshttps://www.rfc1437.de/2010/02/22/ironpython-hammers-cpython-when-not-mutating/Polyglothttps://www.rfc1437.de/2010/02/22/polyglot-2/bpython interpreterhttps://www.rfc1437.de/2010/02/21/bpython-interpreter/DreamPie: The Python shell you''ve always dreamed about!https://www.rfc1437.de/2010/02/21/dreampie-the-python-shell-you-ve-always-dreamed/The New App Store Rules: No Swimsuits, No Skin, And No Innuendohttps://www.rfc1437.de/2010/02/21/the-new-app-store-rules-no-swimsuits-no-skin-and/5 Animals That Can Do Amazing Things ... With Their Penises | Cracked.comhttps://www.rfc1437.de/2010/02/20/5-animals-that-can-do-amazing-things-with-their/ZODB - a native object database for Python — ZODB v3.9.0 documentationhttps://www.rfc1437.de/2010/02/19/zodb-a-native-object-database-for-python-zodb-v3/Foto verbotenhttps://www.rfc1437.de/2010/02/15/foto-verboten/The dark side of Dubaihttps://www.rfc1437.de/2010/02/14/the-dark-side-of-dubai/django-pistonhttps://www.rfc1437.de/2010/02/13/django-piston/Fuck you, Google « Fugitivushttps://www.rfc1437.de/2010/02/13/fuck-you-google-fugitivus/Murkyhttps://www.rfc1437.de/2010/02/13/murky/Tomboy : Simple note takinghttps://www.rfc1437.de/2010/02/13/tomboy-simple-note-taking/Front Range Pythoneering: Realizing Jython 2.5https://www.rfc1437.de/2010/02/12/front-range-pythoneering-realizing-jython-2-5/Interactive Python GIL Visualization [dabeaz]https://www.rfc1437.de/2010/02/12/interactive-python-gil-visualization-dabeaz/maven-jython-plugin - Maven Jython Pluginhttps://www.rfc1437.de/2010/02/12/maven-jython-plugin-maven-jython-plugin/Proteste gegen G8: Pfeifkonzert für Ludwig Spaenlehttps://www.rfc1437.de/2010/02/12/proteste-gegen-g8-pfeifkonzert-fuer-ludwig-spaenle/Security-Forscher: Bezahlen mit Kreditkarte und PIN unsicher - Golem.dehttps://www.rfc1437.de/2010/02/12/security-forscher-bezahlen-mit-kreditkarte-und/Bill Clementson's Blog: Elephant and Rucksack - Comparison of two CL Open Source Prevalence packageshttps://www.rfc1437.de/2010/02/10/bill-clementson-s-blog-elephant-and-rucksack/Presenting django-devserver, a better runserver.https://www.rfc1437.de/2010/02/10/presenting-django-devserver-a-better-runserver/Jesus, Kirk and Vinnyhttps://www.rfc1437.de/2010/02/09/jesus-kirk-and-vinny/Schneier on Security: All Subversive Organizations Now Must Register in South Carolinahttps://www.rfc1437.de/2010/02/09/schneier-on-security-all-subversive-organizations/Twitpic / Astro_Soichihttps://www.rfc1437.de/2010/02/09/twitpic-astro-soichi/persistence.js: An Asynchronous Javascript ORM for HTML5/Gears « I am Zefhttps://www.rfc1437.de/2010/02/08/persistence-js-an-asynchronous-javascript-orm-for/Bericht: Post plant DE-Mail für 20 Centhttps://www.rfc1437.de/2010/02/07/bericht-post-plant-de-mail-fuer-20-cent/Simtec Electronics Entropy Keyhttps://www.rfc1437.de/2010/02/07/simtec-electronics-entropy-key/Faster or Lazier Paginationhttps://www.rfc1437.de/2010/02/06/faster-or-lazier-pagination/Please read: Security Issue on AMO « Mozilla Add-ons Bloghttps://www.rfc1437.de/2010/02/06/please-read-security-issue-on-amo-mozilla-add-ons/Using ctags in Vim - amix.dkhttps://www.rfc1437.de/2010/02/05/using-ctags-in-vim-amix-dk/Vim 7: Turning completion on - amix.dkhttps://www.rfc1437.de/2010/02/05/vim-7-turning-completion-on-amix-dk/collision detection: Molecular secrets of the "iron-plated snail"https://www.rfc1437.de/2010/02/04/collision-detection-molecular-secrets-of-the-iron/mongoenginehttps://www.rfc1437.de/2010/02/04/mongoengine/BookmarksExtension - Mercurialhttps://www.rfc1437.de/2010/02/03/bookmarksextension-mercurial/Gericht: E-Mail-Abmahnungen sind zulässighttps://www.rfc1437.de/2010/02/03/gericht-e-mail-abmahnungen-sind-zulaessig/InfiniDB 1.0.2: Analytische Datenbank Engine für Datamining - Golem.dehttps://www.rfc1437.de/2010/02/03/infinidb-1-0-2-analytische-datenbank-engine-fuer/Pollution in 1/8 | RIPE Labshttps://www.rfc1437.de/2010/02/03/pollution-in-1-8-ripe-labs/Time Capsule Memorial Registerhttps://www.rfc1437.de/2010/02/03/time-capsule-memorial-register/homebrew - GitHubhttps://www.rfc1437.de/2010/02/02/homebrew-github/The Definitive Guide to Jython — Jython Book v0.91 documentationhttps://www.rfc1437.de/2010/02/02/the-definitive-guide-to-jython-jython-book-v0-91/CLiki : FirstStepsWithAsdfAndAsdfInstallhttps://www.rfc1437.de/2010/01/31/cliki-firststepswithasdfandasdfinstall/HintsForAsdfAndOpenmcl – Clozure CLhttps://www.rfc1437.de/2010/01/31/hintsforasdfandopenmcl-clozure-cl/Alex Payne — On the iPadhttps://www.rfc1437.de/2010/01/29/alex-payne-on-the-ipad/Apple buys P.A. Semi chip designer, Intel says wha?https://www.rfc1437.de/2010/01/29/apple-buys-p-a-semi-chip-designer-intel-says-wha/AppScale, an OpenSource GAE implementationhttps://www.rfc1437.de/2010/01/29/appscale-an-opensource-gae-implementation/Clozure CLhttps://www.rfc1437.de/2010/01/29/clozure-cl/Eucalyptus Communityhttps://www.rfc1437.de/2010/01/29/eucalyptus-community/Mindestlohn-Urteil: Postdienstleister PIN will Löhne senken | tagesschau.dehttps://www.rfc1437.de/2010/01/29/mindestlohn-urteil-postdienstleister-pin-will/Apple - iPad - Technical specifications and accessories for iPad.https://www.rfc1437.de/2010/01/28/apple-ipad-technical-specifications-and/denkspuren: Factor @ Heilbronn Universityhttps://www.rfc1437.de/2010/01/28/denkspuren-factor-heilbronn-university/Mainz: Brüderle kein Landesparteitags-Delegierter mehrhttps://www.rfc1437.de/2010/01/28/mainz-bruederle-kein-landesparteitags-delegierter/django-extensionshttps://www.rfc1437.de/2010/01/27/django-extensions/Introducing Bibble 5https://www.rfc1437.de/2010/01/27/introducing-bibble-5/kbarni's bibble plugins - Pluginshttps://www.rfc1437.de/2010/01/27/kbarni-s-bibble-plugins-plugins/LightZone « lightcraftshttps://www.rfc1437.de/2010/01/27/lightzone-lightcrafts/Scala 2.8.0 Beta 1 | The Scala Programming Languagehttps://www.rfc1437.de/2010/01/27/scala-2-8-0-beta-1-the-scala-programming-language/Carl Bildt: Digitale Mauern einreißenhttps://www.rfc1437.de/2010/01/26/carl-bildt-digitale-mauern-einreissen/fastutilhttps://www.rfc1437.de/2010/01/26/fastutil/Have you seen the old men | Spreeblickhttps://www.rfc1437.de/2010/01/26/have-you-seen-the-old-men-spreeblick/Christopher Blizzard · HTML5 video and H.264 – what history tells us and why we’re standing with the webhttps://www.rfc1437.de/2010/01/25/christopher-blizzard-html5-video-and-h-264-what/IronPython in Action: Front Pagehttps://www.rfc1437.de/2010/01/25/ironpython-in-action-front-page/Zensur im Namen des Jugendschutzes: Stellungnahme zum Jugendmedienschutz-Staatsvertrag - Arbeitskreis gegen Internet-Sperren und Zensur (AK Zensur)https://www.rfc1437.de/2010/01/25/zensur-im-namen-des-jugendschutzes-stellungnahme/Alle Atommeiler sollen offenbar zunächst am Netz bleibenhttps://www.rfc1437.de/2010/01/24/alle-atommeiler-sollen-offenbar-zunaechst-am-netz/annalist - "Wir werden blockieren"https://www.rfc1437.de/2010/01/24/annalist-wir-werden-blockieren/Armin Maiwald wird 70https://www.rfc1437.de/2010/01/24/armin-maiwald-wird-70/Facebook Gives Harman His Name Back, Apologizeshttps://www.rfc1437.de/2010/01/24/facebook-gives-harman-his-name-back-apologizes/High-Level Virtual Machine (HLVM)https://www.rfc1437.de/2010/01/24/high-level-virtual-machine-hlvm/michaelv.orghttps://www.rfc1437.de/2010/01/24/michaelv-org/Trellishttps://www.rfc1437.de/2010/01/24/trellis/Closure Compilerhttps://www.rfc1437.de/2010/01/23/closure-compiler/django-history-tableshttps://www.rfc1437.de/2010/01/23/django-history-tables/EZ430-Chronos - Texas Instruments Embedded Processors Wikihttps://www.rfc1437.de/2010/01/23/ez430-chronos-texas-instruments-embedded/Facebook Snatches User’s Vanity URL And Sells It To Harman Internationalhttps://www.rfc1437.de/2010/01/23/facebook-snatches-user-s-vanity-url-and-sells-it/How to create offline webapps on the iPhonehttps://www.rfc1437.de/2010/01/23/how-to-create-offline-webapps-on-the-iphone/Inheritance Patterns in JavaScripthttps://www.rfc1437.de/2010/01/23/inheritance-patterns-in-javascript/Syntensityhttps://www.rfc1437.de/2010/01/23/syntensity/TI hits home run with Chronos sportswatch wireless dev kithttps://www.rfc1437.de/2010/01/23/ti-hits-home-run-with-chronos-sportswatch/Well, I''m Back: Video, Freedom And Mozillahttps://www.rfc1437.de/2010/01/23/well-i-m-back-video-freedom-and-mozilla/A Postfunctional Languagehttps://www.rfc1437.de/2010/01/22/a-postfunctional-language/Export ban for useless 'bomb detector'https://www.rfc1437.de/2010/01/22/export-ban-for-useless-bomb-detector/Giant Knife 16999 Wenger Swiss Army Knifehttps://www.rfc1437.de/2010/01/22/giant-knife-16999-wenger-swiss-army-knife/The Collection - Leathermanhttps://www.rfc1437.de/2010/01/22/the-collection-leatherman/Kindle Development Kithttps://www.rfc1437.de/2010/01/21/kindle-development-kit/ABCL-webhttps://www.rfc1437.de/2010/01/20/abcl-web/Armed Bearhttps://www.rfc1437.de/2010/01/20/armed-bear/Auch CDU erhielt Spende aus der Hotelbranchehttps://www.rfc1437.de/2010/01/20/auch-cdu-erhielt-spende-aus-der-hotelbranche/Chipformate digitaler Kamerashttps://www.rfc1437.de/2010/01/20/chipformate-digitaler-kameras/Clojure 1.1 and Beyondhttps://www.rfc1437.de/2010/01/20/clojure-1-1-and-beyond/Diffraction and Fraud in Digicams « Petavoxelhttps://www.rfc1437.de/2010/01/20/diffraction-and-fraud-in-digicams-petavoxel/Kvardek Du: How a Common Lisp Programmer Views Users of Other Languageshttps://www.rfc1437.de/2010/01/20/kvardek-du-how-a-common-lisp-programmer-views/LEGO Universe allows kids to fight with their imaginationhttps://www.rfc1437.de/2010/01/20/lego-universe-allows-kids-to-fight-with-their/pylint (analyzes Python source code looking for bugs and signs of poor quality.) (Logilab.org)https://www.rfc1437.de/2010/01/20/pylint-analyzes-python-source-code-looking-for/research!rsc: Go Data Structures: Interfaceshttps://www.rfc1437.de/2010/01/20/research-rsc-go-data-structures-interfaces/taylanpince's django-doc-wiki at master - GitHubhttps://www.rfc1437.de/2010/01/20/taylanpince-s-django-doc-wiki-at-master-github/Windows hole discovered after 17 yearshttps://www.rfc1437.de/2010/01/20/windows-hole-discovered-after-17-years/Anonymous Prohttps://www.rfc1437.de/2010/01/18/anonymous-pro/Ein Echtzeit-Experiment: Der Mensch wird zum Datensatz - Hintergründe - Feuilleton - FAZ.NEThttps://www.rfc1437.de/2010/01/18/ein-echtzeit-experiment-der-mensch-wird-zum/Java Image Processing - Blurring for Beginnershttps://www.rfc1437.de/2010/01/18/java-image-processing-blurring-for-beginners/jekaterinburg weather in march - Wolfram|Alphahttps://www.rfc1437.de/2010/01/18/jekaterinburg-weather-in-march-wolfram-alpha/Mercurial: The Definitive Guidehttps://www.rfc1437.de/2010/01/18/mercurial-the-definitive-guide/aM laboratoryhttps://www.rfc1437.de/2010/01/17/am-laboratory/Deutsche Verleger gehen gegen Google vorhttps://www.rfc1437.de/2010/01/16/deutsche-verleger-gehen-gegen-google-vor/jQuery 1.4 Released – The 14 Days of jQueryhttps://www.rfc1437.de/2010/01/15/jquery-1-4-released-the-14-days-of-jquery/matthiask's feincmshttps://www.rfc1437.de/2010/01/15/matthiask-s-feincms/ReusableAppResources - Django - Trachttps://www.rfc1437.de/2010/01/15/reusableappresources-django-trac/stream – Lazily-evaluated, parallelizable pipelinehttps://www.rfc1437.de/2010/01/15/stream-lazily-evaluated-parallelizable-pipeline/Kritik an Berufung von Privatenkassen-Manager ins Ministerium | tagesschau.dehttps://www.rfc1437.de/2010/01/13/kritik-an-berufung-von-privatenkassen-manager-ins/fingernails in oatmeal, The Unsightliness of Merge Commitshttps://www.rfc1437.de/2010/01/12/fingernails-in-oatmeal-the-unsightliness-of-merge/Introducing Akka - Simpler Scalability, Fault-Tolerance, Concurrency & Remoting through Actorshttps://www.rfc1437.de/2010/01/12/introducing-akka-simpler-scalability-fault/Linus on git pull/rebasehttps://www.rfc1437.de/2010/01/12/linus-on-git-pull-rebase/Voigtlaender - Die offizielle Homepage - Bessa III Mittelformatkamerahttps://www.rfc1437.de/2010/01/12/voigtlaender-die-offizielle-homepage-bessa-iii/Voigtlander Bessa IIIhttps://www.rfc1437.de/2010/01/12/voigtlander-bessa-iii/entrian.com - goto for Python - goto for Pythonhttps://www.rfc1437.de/2010/01/11/entrian-com-goto-for-python-goto-for-python/HeyChinaski.com » Blog Archive » HeyGraph Javascript and canvas graphing toolhttps://www.rfc1437.de/2010/01/11/heychinaski-com-blog-archive-heygraph-javascript/Nailgun: Insanely Fast Javahttps://www.rfc1437.de/2010/01/11/nailgun-insanely-fast-java/Parrot AR.Drone - Quadrotor helicopter with wifi and 2 cameras - AR.Drone games for iPhone and iPod touchhttps://www.rfc1437.de/2010/01/11/parrot-ar-drone-quadrotor-helicopter-with-wifi/ProGuardhttps://www.rfc1437.de/2010/01/11/proguard/ScalaCheck User Guidehttps://www.rfc1437.de/2010/01/11/scalacheck-user-guide/technically.us Git - sling.git/blob - project/build/AssemblyProject.scalahttps://www.rfc1437.de/2010/01/11/technically-us-git-sling-git-blob-project-build/Ursulahttps://www.rfc1437.de/2010/01/11/ursula/anichttps://www.rfc1437.de/2010/01/10/anic/Communities: DIY LabVIEW Crew: A Commodore 64 emulator written in LabVIEWhttps://www.rfc1437.de/2010/01/10/communities-diy-labview-crew-a-commodore-64/MeshLabhttps://www.rfc1437.de/2010/01/10/meshlab/qb.js: An implementation of QBASIC in Javascript (part 1) - Steve Hanov's Programming Bloghttps://www.rfc1437.de/2010/01/10/qb-js-an-implementation-of-qbasic-in-javascript/Schützt Handystrahlung vor Alzheimer?https://www.rfc1437.de/2010/01/10/schuetzt-handystrahlung-vor-alzheimer/Shapeways | passionate about creatinghttps://www.rfc1437.de/2010/01/10/shapeways-passionate-about-creating-2/Alloy Analyzerhttps://www.rfc1437.de/2010/01/09/alloy-analyzer/Apples and Bananashttps://www.rfc1437.de/2010/01/09/apples-and-bananas/Google Voice Blog: Google welcomes Gizmo5https://www.rfc1437.de/2010/01/09/google-voice-blog-google-welcomes-gizmo5/[jdev] Wikipedia deletionshttps://www.rfc1437.de/2010/01/09/jdev-wikipedia-deletions/Meine OpenIDhttps://www.rfc1437.de/2010/01/09/meine-openid/Nullege: A Search Engine for Python source codehttps://www.rfc1437.de/2010/01/09/nullege-a-search-engine-for-python-source-code/phpMyIDhttps://www.rfc1437.de/2010/01/09/phpmyid/TidBITS Entertainment: "If Monks Had Macs" Available for Freehttps://www.rfc1437.de/2010/01/09/tidbits-entertainment-if-monks-had-macs-available/[tw] : Building a Codeless Language Module with BBEdit 8.5 and (Ir-)Regular Expressionshttps://www.rfc1437.de/2010/01/09/tw-building-a-codeless-language-module-with/Wikipedia:Articles for deletion/Ejabberdhttps://www.rfc1437.de/2010/01/09/wikipedia-articles-for-deletion-ejabberd/Aasee (Münster) – Wikipediahttps://www.rfc1437.de/2010/01/08/aasee-muenster-wikipedia/maven-scala-plugin - maven-scala-pluginhttps://www.rfc1437.de/2010/01/08/maven-scala-plugin-maven-scala-plugin/SQLiteJDBChttps://www.rfc1437.de/2010/01/08/sqlitejdbc-2/SQLiteJDBChttps://www.rfc1437.de/2010/01/07/sqlitejdbc/Fehlerhafte Sicherheitschips: 30 Millionen Bankkarten vom 2010-Fehler betroffen - SPIEGEL ONLINE - Nachrichten - Netzwelthttps://www.rfc1437.de/2010/01/06/fehlerhafte-sicherheitschips-30-millionen/Fragen und Antworten zur Bankkarten-Pannehttps://www.rfc1437.de/2010/01/06/fragen-und-antworten-zur-bankkarten-panne/Python Package Index : promise 0.2.1https://www.rfc1437.de/2010/01/06/python-package-index-promise-0-2-1/FleetDBhttps://www.rfc1437.de/2010/01/05/fleetdb/generator_toolshttps://www.rfc1437.de/2010/01/05/generator-tools/Introduction to Concurrent Programming with Stackless Pythonhttps://www.rfc1437.de/2010/01/05/introduction-to-concurrent-programming-with/Matasano Security LLC - Chargen - If You're Typing The Letters A-E-S Into Your Code, You're Doing It\_Wronghttps://www.rfc1437.de/2010/01/05/matasano-security-llc-chargen-if-you-re-typing/MetaPython Documentationhttps://www.rfc1437.de/2010/01/05/metapython-documentation-2/Study shows viral SSIDs could be creating a massive wireless botnet Tech Sanity Check TechRepublic.comhttps://www.rfc1437.de/2010/01/04/study-shows-viral-ssids-could-be-creating-a/Viral SSID - WLAN/Wireless Security Knowledge Centerhttps://www.rfc1437.de/2010/01/04/viral-ssid-wlan-wireless-security-knowledge-center/OpenSimulator GForgehttps://www.rfc1437.de/2010/01/03/opensimulator-gforge/Hg-Git Mercurial Pluginhttps://www.rfc1437.de/2010/01/02/hg-git-mercurial-plugin-3/Daring Fireball: The Tablethttps://www.rfc1437.de/2010/01/01/daring-fireball-the-tablet/hgsubversionhttps://www.rfc1437.de/2010/01/01/hgsubversion/Datenschützer kritisieren "Elektronischen Einkommensnachweis"https://www.rfc1437.de/2009/12/31/datenschuetzer-kritisieren-elektronischen/duelinmarkers's clj-recordhttps://www.rfc1437.de/2009/12/31/duelinmarkers-s-clj-record/mattrepl's clojure-neo4jhttps://www.rfc1437.de/2009/12/31/mattrepl-s-clojure-neo4j/neo4j open source nosql graph databasehttps://www.rfc1437.de/2009/12/31/neo4j-open-source-nosql-graph-database/pjstadig's tim-clojure-1.0.0https://www.rfc1437.de/2009/12/31/pjstadig-s-tim-clojure-1-0-0/Bei Nachthttps://www.rfc1437.de/2009/12/30/bei-nacht/Blaue Stundehttps://www.rfc1437.de/2009/12/30/blaue-stunde/IPhone Remote - Plexhttps://www.rfc1437.de/2009/12/30/iphone-remote-plex/Kanex Mini DisplayPort to HDMI 1080p Video with Digital Audio Adapterhttps://www.rfc1437.de/2009/12/30/kanex-mini-displayport-to-hdmi-1080p-video-with/Plex Media Center for OS Xhttps://www.rfc1437.de/2009/12/30/plex-media-center-for-os-x/Privacy of 3.5 Billion Cellphone Users Compromised – GSM Code is Broken | ProgrammerFishhttps://www.rfc1437.de/2009/12/29/privacy-of-3-5-billion-cellphone-users/Flugzeug-Attentäter muss mit 40 Jahren Haft rechnenhttps://www.rfc1437.de/2009/12/28/flugzeug-attentaeter-muss-mit-40-jahren-haft/Bundestagspräsident missfällt Regierungskurshttps://www.rfc1437.de/2009/12/27/bundestagspraesident-missfaellt-regierungskurs/Moscow ML Home Pagehttps://www.rfc1437.de/2009/12/27/moscow-ml-home-page/neatxhttps://www.rfc1437.de/2009/12/27/neatx/openduckbillhttps://www.rfc1437.de/2009/12/27/openduckbill/Poly/ML Home Pagehttps://www.rfc1437.de/2009/12/27/poly-ml-home-page/Standard ML of New Jerseyhttps://www.rfc1437.de/2009/12/27/standard-ml-of-new-jersey/Fuzzy Hashing and ssdeephttps://www.rfc1437.de/2009/12/26/fuzzy-hashing-and-ssdeep/Home of pHash, the open source perceptual hash libraryhttps://www.rfc1437.de/2009/12/26/home-of-phash-the-open-source-perceptual-hash/Kulturstaatsminister kritisiert Smartphone-Apps der ARDhttps://www.rfc1437.de/2009/12/26/kulturstaatsminister-kritisiert-smartphone-apps/MLton Standard ML Compiler (SML Compiler)https://www.rfc1437.de/2009/12/26/mlton-standard-ml-compiler-sml-compiler/Ocsigenhttps://www.rfc1437.de/2009/12/26/ocsigen/The Ur Programming Language Familyhttps://www.rfc1437.de/2009/12/26/the-ur-programming-language-family/Web Authoring System Haskell (WASH)https://www.rfc1437.de/2009/12/26/web-authoring-system-haskell-wash/December 25thhttps://www.rfc1437.de/2009/12/25/december-25th/Mail::RFC822::Addresshttps://www.rfc1437.de/2009/12/25/mail-rfc822-address/The 25th Anniversary Edition of Little, Big, by John Crowleyhttps://www.rfc1437.de/2009/12/24/the-25th-anniversary-edition-of-little-big-by/Ho Ho Ho!https://www.rfc1437.de/2009/12/23/ho-ho-ho/Real World Haskellhttps://www.rfc1437.de/2009/12/22/real-world-haskell/Regierung hält sich Anhebung des Arbeitslosenbeitrags offenhttps://www.rfc1437.de/2009/12/22/regierung-haelt-sich-anhebung-des/Socket Benchmark of Asynchronous Servers in Pythonhttps://www.rfc1437.de/2009/12/22/socket-benchmark-of-asynchronous-servers-in-python/A Case of the MUMPS - The Daily WTFhttps://www.rfc1437.de/2009/12/21/a-case-of-the-mumps-the-daily-wtf/HDR photo software & plugin for Lightroom, Aperture & Photoshop - Tone Mapping, Exposure Fusion & HDR Imaging for photographyhttps://www.rfc1437.de/2009/12/21/hdr-photo-software-plugin-for-lightroom-aperture/Intersystems Caché -- Gateway to hell - TDWTF Forumshttps://www.rfc1437.de/2009/12/21/intersystems-cach-gateway-to-hell-tdwtf-forums/Invent with Pythonhttps://www.rfc1437.de/2009/12/21/invent-with-python/Panasonic Lumix GF1 Field Test — 16 Days in the Himalayashttps://www.rfc1437.de/2009/12/21/panasonic-lumix-gf1-field-test-16-days-in-the/WinMergehttps://www.rfc1437.de/2009/12/21/winmerge-2/Crowdsourced document analysis and MP expenseshttps://www.rfc1437.de/2009/12/20/crowdsourced-document-analysis-and-mp-expenses/fabricatehttps://www.rfc1437.de/2009/12/20/fabricate-2/Schnööööööö!https://www.rfc1437.de/2009/12/20/schnoeoeoeoeoeoeoe/Building a Clojure Web application with Incanter, Compojure, and Leiningen « Data Analysis and Visualization with Clojurehttps://www.rfc1437.de/2009/12/19/building-a-clojure-web-application-with-incanter/git.postgresql.org Git - postgresql.git/commithttps://www.rfc1437.de/2009/12/19/git-postgresql-org-git-postgresql-git-commit/About Hypertablehttps://www.rfc1437.de/2009/12/18/about-hypertable/etherpadhttps://www.rfc1437.de/2009/12/18/etherpad/Haystack - Search for Djangohttps://www.rfc1437.de/2009/12/18/haystack-search-for-django/InfoQ: Clojure 1.1 Adds Transients, Chunked Sequences for Efficiencyhttps://www.rfc1437.de/2009/12/18/infoq-clojure-1-1-adds-transients-chunked/Leica X1 Review: 27. Conclusion: Digital Photography Reviewhttps://www.rfc1437.de/2009/12/18/leica-x1-review-27-conclusion-digital-photography/Mir war danachhttps://www.rfc1437.de/2009/12/18/mir-war-danach/Ten years of .NET - Did Microsoft deliver? • The Registerhttps://www.rfc1437.de/2009/12/18/ten-years-of-net-did-microsoft-deliver-the/Whooshhttps://www.rfc1437.de/2009/12/18/whoosh/Algorithmic Botanyhttps://www.rfc1437.de/2009/12/17/algorithmic-botany/Apparent Software blog » Blog Archive » “Is PayPal good for your microISV business?” A short PayPal horror storyhttps://www.rfc1437.de/2009/12/17/apparent-software-blog-blog-archive-is-paypal/BERT and BERT-RPC 1.0 Specificationhttps://www.rfc1437.de/2009/12/17/bert-and-bert-rpc-1-0-specification/briancarper.net :: Clojure Reader Macroshttps://www.rfc1437.de/2009/12/17/briancarper-net-clojure-reader-macros/IronPython - Release: 2.6https://www.rfc1437.de/2009/12/17/ironpython-release-2-6/John Graham-Cumming: Data Visualization Diseasehttps://www.rfc1437.de/2009/12/17/john-graham-cumming-data-visualization-disease/mojombo's berthttps://www.rfc1437.de/2009/12/17/mojombo-s-bert/ProjectPlan - unladen-swallow - Plans for optimizing Pythonhttps://www.rfc1437.de/2009/12/17/projectplan-unladen-swallow-plans-for-optimizing/Python Package Index : python-daemon 1.5.2https://www.rfc1437.de/2009/12/17/python-package-index-python-daemon-1-5-2/samuel's python-berthttps://www.rfc1437.de/2009/12/17/samuel-s-python-bert/The Render Engine - Javascript Game Enginehttps://www.rfc1437.de/2009/12/17/the-render-engine-javascript-game-engine/trotter's bert-cljhttps://www.rfc1437.de/2009/12/17/trotter-s-bert-clj/Making lighthttps://www.rfc1437.de/2009/12/16/making-light/Microsoft Acknowledges Theft of Code from Plurkhttps://www.rfc1437.de/2009/12/16/microsoft-acknowledges-theft-of-code-from-plurk/Widefinder 2 with Clojurehttps://www.rfc1437.de/2009/12/16/widefinder-2-with-clojure/Bug #387308 in Ubuntu One Client: “[Wishlist] Proxy Support”https://www.rfc1437.de/2009/12/15/bug-387308-in-ubuntu-one-client-wishlist-proxy/Code tutorial: make your application sync with Ubuntu Onehttps://www.rfc1437.de/2009/12/15/code-tutorial-make-your-application-sync-with/Damn Cool Algorithms: Log structured storagehttps://www.rfc1437.de/2009/12/14/damn-cool-algorithms-log-structured-storage/Hunger!https://www.rfc1437.de/2009/12/14/hunger/Intland now on Mercurial - Part 3: Giving new momentum to the Eclipse Mercurial Plugin | Intland Bloghttps://www.rfc1437.de/2009/12/14/intland-now-on-mercurial-part-3-giving-new/Maven - Guide to using proxieshttps://www.rfc1437.de/2009/12/14/maven-guide-to-using-proxies/Tutorial - clojars-web - GitHubhttps://www.rfc1437.de/2009/12/14/tutorial-clojars-web-github/EMBODY von Herman Miller - Chairholder Newshttps://www.rfc1437.de/2009/12/13/embody-von-herman-miller-chairholder-news/Radio UserLand: Auf Wiedersehen, und danke für den Fischhttps://www.rfc1437.de/2009/12/13/radio-userland-auf-wiedersehen-und-danke-fuer-den/Yeti programming languagehttps://www.rfc1437.de/2009/12/13/yeti-programming-language/Either Mark Zuckerberg got a whole lot less private or Facebook’s CEO doesn’t understand the company’s new privacy settings.https://www.rfc1437.de/2009/12/11/either-mark-zuckerberg-got-a-whole-lot-less/JavaScript web workers: use visitors to your website to do background data processing for you. : programminghttps://www.rfc1437.de/2009/12/11/javascript-web-workers-use-visitors-to-your/The Tumblr Backup app is ready for its first beta...https://www.rfc1437.de/2009/12/11/the-tumblr-backup-app-is-ready-for-its-first-beta/TuxMobil: Fingerprint Readers on Linux Laptops and Notebookshttps://www.rfc1437.de/2009/12/11/tuxmobil-fingerprint-readers-on-linux-laptops-and/Klimakonferenz: Keine 0,5 Grad extra für Tuvaluhttps://www.rfc1437.de/2009/12/10/klimakonferenz-keine-0-5-grad-extra-fuer-tuvalu/Regierungs-Smartphones arbeiten mit Windows Mobilehttps://www.rfc1437.de/2009/12/10/regierungs-smartphones-arbeiten-mit-windows-mobile/Zarengold Bahnreisenhttps://www.rfc1437.de/2009/12/10/zarengold-bahnreisen/taskpaper-webhttps://www.rfc1437.de/2009/12/08/taskpaper-web/taskpaperplushttps://www.rfc1437.de/2009/12/08/taskpaperplus/TodoPaperhttps://www.rfc1437.de/2009/12/08/todopaper/We call it OPAhttps://www.rfc1437.de/2009/12/08/we-call-it-opa/Cadmium - Introductionhttps://www.rfc1437.de/2009/12/07/cadmium-introduction/Cafesterolhttps://www.rfc1437.de/2009/12/07/cafesterol/PLT Scheme Blog: Futures: Fine Grained Parallelism in PLThttps://www.rfc1437.de/2009/12/07/plt-scheme-blog-futures-fine-grained-parallelism/Short Chat Server in Clojurehttps://www.rfc1437.de/2009/12/07/short-chat-server-in-clojure/clutchski's fileutilshttps://www.rfc1437.de/2009/12/06/clutchski-s-fileutils/Escher in Hagenhttps://www.rfc1437.de/2009/12/05/escher-in-hagen/Mal mit Tabblo gespielthttps://www.rfc1437.de/2009/12/05/mal-mit-tabblo-gespielt/Why Object-Oriented Languages Need Tail Calls – projectfortress Communityhttps://www.rfc1437.de/2009/12/04/why-object-oriented-languages-need-tail-calls/Google Maps Distance Calculatorhttps://www.rfc1437.de/2009/12/03/google-maps-distance-calculator/La Bambahttps://www.rfc1437.de/2009/12/03/la-bamba/MCLIDE - Lisp IDE for Macintoshhttps://www.rfc1437.de/2009/12/03/mclide-lisp-ide-for-macintosh/Sonarhttps://www.rfc1437.de/2009/11/26/sonar/Building Clojure Projects with Leiningenhttps://www.rfc1437.de/2009/11/25/building-clojure-projects-with-leiningen/Amp | Version Control Revolutionhttps://www.rfc1437.de/2009/11/24/amp-version-control-revolution/formsets und inline forms in Djangohttps://www.rfc1437.de/2009/11/24/formsets-und-inline-forms-in-django/Implementing a DHT in Go, part 1https://www.rfc1437.de/2009/11/24/implementing-a-dht-in-go-part-1/Understanding Haskell Monadshttps://www.rfc1437.de/2009/11/24/understanding-haskell-monads/AvahiAndUnicastDotLocal – Avahihttps://www.rfc1437.de/2009/11/23/avahiandunicastdotlocal-avahi/gopenvpnhttps://www.rfc1437.de/2009/11/23/gopenvpn/Buntes Gemüsehttps://www.rfc1437.de/2009/11/22/buntes-gemuese/uWSGIhttps://www.rfc1437.de/2009/11/21/uwsgi/Clojarshttps://www.rfc1437.de/2009/11/20/clojars/Incanter: Statistical Computing and Graphics Environment for Clojurehttps://www.rfc1437.de/2009/11/20/incanter-statistical-computing-and-graphics/technomancy's leiningenhttps://www.rfc1437.de/2009/11/20/technomancy-s-leiningen/2060 wird jeder Dritte 65 oder älter seinhttps://www.rfc1437.de/2009/11/18/2060-wird-jeder-dritte-65-oder-aelter-sein/Hudson CIhttps://www.rfc1437.de/2009/11/18/hudson-ci/Light and Shadowhttps://www.rfc1437.de/2009/11/18/light-and-shadow/PyGoWave Serverhttps://www.rfc1437.de/2009/11/18/pygowave-server/Python moratorium and the future of 2.x [LWN.net]https://www.rfc1437.de/2009/11/18/python-moratorium-and-the-future-of-2-x-lwn-net/Steinbach wirft Westerwelle Profilierung vorhttps://www.rfc1437.de/2009/11/18/steinbach-wirft-westerwelle-profilierung-vor/Verteilte Wikipedias statt zentralem Monster mit Löschfanatikernhttps://www.rfc1437.de/2009/11/18/verteilte-wikipedias-statt-zentralem-monster-mit/in which things are mapped, but also reducedhttps://www.rfc1437.de/2009/11/15/in-which-things-are-mapped-but-also-reduced/Fefes Kritik an Spdyhttps://www.rfc1437.de/2009/11/14/fefes-kritik-an-spdy/More Freedom Necessary as Top Developers Abandon iPhonehttps://www.rfc1437.de/2009/11/14/more-freedom-necessary-as-top-developers-abandon/nothing newhttps://www.rfc1437.de/2009/11/14/nothing-new/warum Common Lisp nie wirklich Mainstream sein wirdhttps://www.rfc1437.de/2009/11/14/warum-common-lisp-nie-wirklich-mainstream-sein/Play frameworkhttps://www.rfc1437.de/2009/11/13/play-framework/Google Closure: How not to write JavaScripthttps://www.rfc1437.de/2009/11/12/google-closure-how-not-to-write-javascript/Mandelbulb: The Unravelling of the Real 3D Mandelbrot Fractalhttps://www.rfc1437.de/2009/11/12/mandelbulb-the-unravelling-of-the-real-3d/NetBeans support for Google App Enginehttps://www.rfc1437.de/2009/11/12/netbeans-support-for-google-app-engine/The Enclojure REPLs (Not just for Netbeans!)https://www.rfc1437.de/2009/11/12/the-enclojure-repls-not-just-for-netbeans/Joe Strummer darf alles (1999) | Spreeblickhttps://www.rfc1437.de/2009/11/11/joe-strummer-darf-alles-1999-spreeblick/The Go Programming Languagehttps://www.rfc1437.de/2009/11/11/the-go-programming-language/Ricoh GXR Hands on Previewhttps://www.rfc1437.de/2009/11/10/ricoh-gxr-hands-on-preview/Staatssekretär Hanning in Ruhestand versetzthttps://www.rfc1437.de/2009/11/10/staatssekretaer-hanning-in-ruhestand-versetzt/:: Clojure and Markdown (and Javascript and Java and...)https://www.rfc1437.de/2009/11/09/clojure-and-markdown-and-javascript-and-java-and/for post in leo.blog():: Django-Jython 1.0.0 released!https://www.rfc1437.de/2009/11/09/for-post-in-leo-blog-django-jython-1-0-0-released/What DNS Is Not - ACM Queuehttps://www.rfc1437.de/2009/11/09/what-dns-is-not-acm-queue/Acme::Don''thttps://www.rfc1437.de/2009/11/08/acme-don-t/Automatisiertes Newsportal: Netzeitung verliert Redaktionhttps://www.rfc1437.de/2009/11/08/automatisiertes-newsportal-netzeitung-verliert/Eva Redselighttps://www.rfc1437.de/2009/11/06/eva-redselig/avodonosov's abcl-ideahttps://www.rfc1437.de/2009/11/04/avodonosov-s-abcl-idea/Cluster SSH - Cluster Admin Via SSHhttps://www.rfc1437.de/2009/11/04/cluster-ssh-cluster-admin-via-ssh/FAI - Fully Automatic Installationhttps://www.rfc1437.de/2009/11/04/fai-fully-automatic-installation/flogrhttps://www.rfc1437.de/2009/11/04/flogr/iWebKit - Make a quality iPhone Website or Webapphttps://www.rfc1437.de/2009/11/04/iwebkit-make-a-quality-iphone-website-or-webapp/jQTouch — jQuery plugin for mobile web developmenthttps://www.rfc1437.de/2009/11/04/jqtouch-jquery-plugin-for-mobile-web-development/Lazy Pythonista: Diving into Unladen Swallow''s Optimizationshttps://www.rfc1437.de/2009/11/04/lazy-pythonista-diving-into-unladen-swallow-s/OpenOffice.org2GoogleDocs - export & import to Google Docs, Zoho, WebDAVhttps://www.rfc1437.de/2009/11/04/openoffice-org2googledocs-export-import-to-google/Electric Alchemy: Cracking Passwords in the Cloud: Breaking PGP on EC2 with EDPRhttps://www.rfc1437.de/2009/11/03/electric-alchemy-cracking-passwords-in-the-cloud/Large Problems in Django, Mostly Solved: Searchhttps://www.rfc1437.de/2009/11/03/large-problems-in-django-mostly-solved-search/Parsing JSON in Archttps://www.rfc1437.de/2009/11/03/parsing-json-in-arc/Why do we have an IMG element?https://www.rfc1437.de/2009/11/03/why-do-we-have-an-img-element/Tausende Blaue Briefe vom Jugendamthttps://www.rfc1437.de/2009/11/01/tausende-blaue-briefe-vom-jugendamt/alandipert's stephttps://www.rfc1437.de/2009/10/31/alandipert-s-step/GRDIII vs. GRDII vs. GRD - B&W side by side photoshttps://www.rfc1437.de/2009/10/31/grdiii-vs-grdii-vs-grd-b-w-side-by-side-photos/Henri de Toulouse-Lautrec in Langenfeldhttps://www.rfc1437.de/2009/10/31/henri-de-toulouse-lautrec-in-langenfeld/hlship's cascadehttps://www.rfc1437.de/2009/10/31/hlship-s-cascade/macourtney's Conjurehttps://www.rfc1437.de/2009/10/31/macourtney-s-conjure/weavejester's compojurehttps://www.rfc1437.de/2009/10/31/weavejester-s-compojure/RWPluginMarkuphttps://www.rfc1437.de/2009/10/30/rwpluginmarkup/Bill Clementson's Blog: Clojure could be to Concurrency-Oriented Programming what Java was to OOPhttps://www.rfc1437.de/2009/10/29/bill-clementson-s-blog-clojure-could-be-to/(Field)https://www.rfc1437.de/2009/10/29/field/Underscore.jshttps://www.rfc1437.de/2009/10/29/underscore-js/UNITY: Game Development Toolhttps://www.rfc1437.de/2009/10/29/unity-game-development-tool/Scientists discover gene that 'cancer-proofs' rodent's cellshttps://www.rfc1437.de/2009/10/27/scientists-discover-gene-that-cancer-proofs/[Python-Dev] Reworking the GILhttps://www.rfc1437.de/2009/10/26/python-dev-reworking-the-gil/[zfs-discuss] Apple cans ZFS projecthttps://www.rfc1437.de/2009/10/26/zfs-discuss-apple-cans-zfs-project/exploring the mandelbrot set with your gpuhttps://www.rfc1437.de/2009/10/25/exploring-the-mandelbrot-set-with-your-gpu/The Self Handbookhttps://www.rfc1437.de/2009/10/25/the-self-handbook/Klaus Staeck über die Gefahr der "Blogorrhoe"https://www.rfc1437.de/2009/10/24/klaus-staeck-ueber-die-gefahr-der-blogorrhoe/bamboo-languagehttps://www.rfc1437.de/2009/10/23/bamboo-language/DeliciousSafarihttps://www.rfc1437.de/2009/10/23/delicioussafari/Enterprise scala actors: introducing the Akka frameworkhttps://www.rfc1437.de/2009/10/23/enterprise-scala-actors-introducing-the-akka/Mozilla Labs Raindrophttps://www.rfc1437.de/2009/10/23/mozilla-labs-raindrop/pierhttps://www.rfc1437.de/2009/10/23/pier/Snow projecthttps://www.rfc1437.de/2009/10/23/snow-project/xmlisphttps://www.rfc1437.de/2009/10/23/xmlisp/MCLhttps://www.rfc1437.de/2009/10/22/mcl/Panasonic Leica 45mm F2.8 Macro OIS Lens Reviewhttps://www.rfc1437.de/2009/10/21/panasonic-leica-45mm-f2-8-macro-ois-lens-review/Machinariumhttps://www.rfc1437.de/2009/10/19/machinarium/Die Wikipedia ist irrelevanthttps://www.rfc1437.de/2009/10/18/die-wikipedia-ist-irrelevant/rosado's clj-processinghttps://www.rfc1437.de/2009/10/17/rosado-s-clj-processing/ScalaCL: Reap OpenCL’s benefits without learning its syntax (Scala DSL for transparently parallel computations)https://www.rfc1437.de/2009/10/17/scalacl-reap-opencl-s-benefits-without-learning/Spdehttps://www.rfc1437.de/2009/10/17/spde/macwidgetshttps://www.rfc1437.de/2009/10/15/macwidgets/rlwraphttps://www.rfc1437.de/2009/10/15/rlwrap/Leben mit Chancenlosen: Wallraffs neuer Undercover-Einsatzhttps://www.rfc1437.de/2009/10/14/leben-mit-chancenlosen-wallraffs-neuer-undercover/toolmantim's bananajourhttps://www.rfc1437.de/2009/10/14/toolmantim-s-bananajour/Übernahme des SPD-Vorsitzes war Fehlerhttps://www.rfc1437.de/2009/10/14/uebernahme-des-spd-vorsitzes-war-fehler/Eine Spinne, die kein Fleisch maghttps://www.rfc1437.de/2009/10/13/eine-spinne-die-kein-fleisch-mag/Let it crash (the right way…)https://www.rfc1437.de/2009/10/13/let-it-crash-the-right-way/Niederländische DSB-Bank pleitehttps://www.rfc1437.de/2009/10/13/niederlaendische-dsb-bank-pleite/Tom Waits - Free Glitter and Doom Live Album Previewhttps://www.rfc1437.de/2009/10/13/tom-waits-free-glitter-and-doom-live-album-preview/Using Erlang to Build Reliable, Fault Tolerant, Scalable Systems | Oktober 12, 2009https://www.rfc1437.de/2009/10/13/using-erlang-to-build-reliable-fault-tolerant/Cloud Data Blown Away for Sidekick Usershttps://www.rfc1437.de/2009/10/12/cloud-data-blown-away-for-sidekick-users/JAD Java Decompiler Download Mirrorhttps://www.rfc1437.de/2009/10/12/jad-java-decompiler-download-mirror/Major bug in Snow Leopard deletes all user datahttps://www.rfc1437.de/2009/10/12/major-bug-in-snow-leopard-deletes-all-user-data/Claude Monets Meisterwerke in Wuppertalhttps://www.rfc1437.de/2009/10/11/claude-monets-meisterwerke-in-wuppertal/Useless Factor: Bitfields in Factor structs and the special stylehttps://www.rfc1437.de/2009/10/11/useless-factor-bitfields-in-factor-structs-and/WizBanghttps://www.rfc1437.de/2009/10/10/wizbang/Friedensnobelpreis für Barack Obamahttps://www.rfc1437.de/2009/10/09/friedensnobelpreis-fuer-barack-obama/Simpler long polling with Django and geventhttps://www.rfc1437.de/2009/10/09/simpler-long-polling-with-django-and-gevent/Städteranking: München vorn, Rote Laterne für Hernehttps://www.rfc1437.de/2009/10/09/staedteranking-muenchen-vorn-rote-laterne-fuer/Thawte widerruft persönliche E-Mail-Zertifikatehttps://www.rfc1437.de/2009/10/09/thawte-widerruft-persoenliche-e-mail-zertifikate/MacRuby » MacRuby 0.5 beta 1https://www.rfc1437.de/2009/10/08/macruby-macruby-0-5-beta-1/Amazon goes global with new Kindlehttps://www.rfc1437.de/2009/10/07/amazon-goes-global-with-new-kindle/Finding Similar Items with Amazon Elastic MapReduce, Python, and Hadoop Streaminghttps://www.rfc1437.de/2009/10/07/finding-similar-items-with-amazon-elastic/I like Unicorn because it's Unixhttps://www.rfc1437.de/2009/10/07/i-like-unicorn-because-it-s-unix/Lets have a smokehttps://www.rfc1437.de/2009/10/07/lets-have-a-smoke/Münsterland Girohttps://www.rfc1437.de/2009/10/07/muensterland-giro/shedskinhttps://www.rfc1437.de/2009/10/07/shedskin/Abmahnanwältin Günther wegen Beihilfe zum Betrug verurteilthttps://www.rfc1437.de/2009/10/06/abmahnanwaeltin-guenther-wegen-beihilfe-zum/EC2 and Ubuntu - Alestic.comhttps://www.rfc1437.de/2009/10/05/ec2-and-ubuntu-alestic-com/Clamato: A Smalltalk Dialect for JavaScripthttps://www.rfc1437.de/2009/10/04/clamato-a-smalltalk-dialect-for-javascript/Dynamic Web Development with Seasidehttps://www.rfc1437.de/2009/10/04/dynamic-web-development-with-seaside/GNU Smalltalkhttps://www.rfc1437.de/2009/10/04/gnu-smalltalk/Winclonehttps://www.rfc1437.de/2009/10/04/winclone/Roman Polanskihttps://www.rfc1437.de/2009/10/03/roman-polanski/Chicago Boss - the no-nonsense MVC framework for Erlanghttps://www.rfc1437.de/2009/10/02/chicago-boss-the-no-nonsense-mvc-framework-for/Log-structured file systems: There''s one in every SSDhttps://www.rfc1437.de/2009/10/01/log-structured-file-systems-there-s-one-in-every/My final Ricoh GR Digital III impressionshttps://www.rfc1437.de/2009/10/01/my-final-ricoh-gr-digital-iii-impressions/Gabriel soll SPD-Parteichef werdenhttps://www.rfc1437.de/2009/09/30/gabriel-soll-spd-parteichef-werden/Groklaw - On Mono, Miguel, Stallman and Fusion with Microsofthttps://www.rfc1437.de/2009/09/30/groklaw-on-mono-miguel-stallman-and-fusion-with/Pick up a penguinhttps://www.rfc1437.de/2009/09/30/pick-up-a-penguin/Plumber Jack: Python Logging 101https://www.rfc1437.de/2009/09/30/plumber-jack-python-logging-101/sebastien's sinkhttps://www.rfc1437.de/2009/09/30/sebastien-s-sink/Dropbox iPhone App ist raushttps://www.rfc1437.de/2009/09/29/dropbox-iphone-app-ist-raus/Insect sushi: creepy crawly cuisinehttps://www.rfc1437.de/2009/09/29/insect-sushi-creepy-crawly-cuisine/jQuery Tools: The missing UI library for the Web « Noupehttps://www.rfc1437.de/2009/09/29/jquery-tools-the-missing-ui-library-for-the-web/lsyncdhttps://www.rfc1437.de/2009/09/28/lsyncd/Swarm - Concurrency with Scala Continuationshttps://www.rfc1437.de/2009/09/28/swarm-concurrency-with-scala-continuations/Webberhttps://www.rfc1437.de/2009/09/28/webber/Welcome To Tahoe-LAFShttps://www.rfc1437.de/2009/09/28/welcome-to-tahoe-lafs/Die Zwillinge und die Blechganghttps://www.rfc1437.de/2009/09/27/die-zwillinge-und-die-blechgang/Das Utopia Timor (Faltrad, Klapprad)https://www.rfc1437.de/2009/09/26/das-utopia-timor-faltrad-klapprad/Die Dahon Mµ Falträder 20 Zoll - Dahon Mµ XL Licht, Mµ P8 Sport, Mµ P24 TR Licht, Mµ Uno, Mµ EXhttps://www.rfc1437.de/2009/09/26/die-dahon-m-faltraeder-20-zoll-dahon-m-xl-licht-m/Official Google Blog: Picasa 3.5, now with name tags and morehttps://www.rfc1437.de/2009/09/26/official-google-blog-picasa-3-5-now-with-name/Panasonic Lumix G 20mm F1.7 ASPH Lens Reviewhttps://www.rfc1437.de/2009/09/26/panasonic-lumix-g-20mm-f1-7-asph-lens-review/Photic sneeze reflexhttps://www.rfc1437.de/2009/09/25/photic-sneeze-reflex/This Rocketship Will Crashhttps://www.rfc1437.de/2009/09/25/this-rocketship-will-crash/Weird New Ghostshark Found; Male Has Sex Organ on Headhttps://www.rfc1437.de/2009/09/25/weird-new-ghostshark-found-male-has-sex-organ-on/CAIR - Content Aware Image Resizerhttps://www.rfc1437.de/2009/09/24/cair-content-aware-image-resizer/Diesel: How Python Does Comethttps://www.rfc1437.de/2009/09/23/diesel-how-python-does-comet/Umweltbundesamt warnt vor RFID-Tags im Müllhttps://www.rfc1437.de/2009/09/23/umweltbundesamt-warnt-vor-rfid-tags-im-muell/Neat Graphics with Scala Processinhttps://www.rfc1437.de/2009/09/21/neat-graphics-with-scala-processin/Google Releases A Nuke. Apple Won’t Win This Fight.https://www.rfc1437.de/2009/09/20/google-releases-a-nuke-apple-won-t-win-this-fight/lionet: Erlang, Yaws, and the deadly Tornadohttps://www.rfc1437.de/2009/09/20/lionet-erlang-yaws-and-the-deadly-tornado/Georg Bauer auf Facebookhttps://www.rfc1437.de/2009/09/19/georg-bauer-auf-facebook/Online Latein Wörterbuchhttps://www.rfc1437.de/2009/09/19/online-latein-woerterbuch/Coryell Auger Sample Triohttps://www.rfc1437.de/2009/09/18/coryell-auger-sample-trio/PubSubHubbub is a Lot Easier Than It Soundshttps://www.rfc1437.de/2009/09/18/pubsubhubbub-is-a-lot-easier-than-it-sounds/The Most Useful Rope Knots for the Average Person to Knowhttps://www.rfc1437.de/2009/09/18/the-most-useful-rope-knots-for-the-average-person/Kein Tethering für iPhone-Kunden mit Verträgen der ersten Generationhttps://www.rfc1437.de/2009/09/16/kein-tethering-fuer-iphone-kunden-mit-vertraegen/Kündigung bei abgeordnetenwatch.de wegen NPDhttps://www.rfc1437.de/2009/09/13/kuendigung-bei-abgeordnetenwatch-de-wegen-npd/libdispatchhttps://www.rfc1437.de/2009/09/11/libdispatch/Tornado: Facebook''s Real-Time Web Framework for Pythonhttps://www.rfc1437.de/2009/09/11/tornado-facebook-s-real-time-web-framework-for/Hurtigruten 2009 mit der MS Lofoten noch einmalhttps://www.rfc1437.de/2009/09/10/hurtigruten-2009-mit-der-ms-lofoten-noch-einmal/Atomkraft- Beweise für Manipulation in Sachen Gorleben?https://www.rfc1437.de/2009/09/09/atomkraft-beweise-fuer-manipulation-in-sachen/Automotoren sollen als "Zuhausekraftwerk" dienenhttps://www.rfc1437.de/2009/09/09/automotoren-sollen-als-zuhausekraftwerk-dienen/billy's band-ICMhttps://www.rfc1437.de/2009/09/09/billy-s-band-icm/Hurtigruten 2009 mit der MS Lofotenhttps://www.rfc1437.de/2009/09/09/hurtigruten-2009-mit-der-ms-lofoten/Leica M9 Hands-on Preview: 1. Introduction: Digital Photography Reviewhttps://www.rfc1437.de/2009/09/09/leica-m9-hands-on-preview-1-introduction-digital/Leica X1 and brief hands-onhttps://www.rfc1437.de/2009/09/09/leica-x1-and-brief-hands-on/Pressflow makes Drupal scalehttps://www.rfc1437.de/2009/09/09/pressflow-makes-drupal-scale/Varnishhttps://www.rfc1437.de/2009/09/09/varnish-2/Mythrylhttps://www.rfc1437.de/2009/09/07/mythryl/Foldy - bicycling.comhttps://www.rfc1437.de/2009/09/06/foldy-bicycling-com/Leaked! Leica M9https://www.rfc1437.de/2009/09/06/leaked-leica-m9/Google App Engine Blog: App Engine SDK 1.2.5 released for Python and Java, now with XMPP supporthttps://www.rfc1437.de/2009/09/04/google-app-engine-blog-app-engine-sdk-1-2-5/Phone Amego Helphttps://www.rfc1437.de/2009/09/04/phone-amego-help/Post streicht 560 Stellen wegen Arcandor-Insolvenzhttps://www.rfc1437.de/2009/09/04/post-streicht-560-stellen-wegen-arcandor-insolvenz/Booting Windows XP From An External Drivehttps://www.rfc1437.de/2009/09/02/booting-windows-xp-from-an-external-drive/Panasonic DMC-GF1 Hands on Previewhttps://www.rfc1437.de/2009/09/02/panasonic-dmc-gf1-hands-on-preview/Panasonic Leica 45mm F2.8 Macro lens with OIShttps://www.rfc1437.de/2009/09/02/panasonic-leica-45mm-f2-8-macro-lens-with-ois/Panasonic unveils DMC-GF1 Micro four-thirds camerahttps://www.rfc1437.de/2009/09/02/panasonic-unveils-dmc-gf1-micro-four-thirds-camera/Set newer portable Macs' sleep modehttps://www.rfc1437.de/2009/09/02/set-newer-portable-macs-sleep-mode/The Dropbox Blog - iPhone Sneak Peek!https://www.rfc1437.de/2009/09/02/the-dropbox-blog-iphone-sneak-peek/RFC1437 on the Road: Archivehttps://www.rfc1437.de/2009/09/01/rfc1437-on-the-road-archive/MS Lofotenhttps://www.rfc1437.de/2009/08/18/ms-lofoten-2/"Arctic Sea" vor Kapverdischen Inseln gesichtethttps://www.rfc1437.de/2009/08/14/arctic-sea-vor-kapverdischen-inseln-gesichtet/django-jythonhttps://www.rfc1437.de/2009/08/14/django-jython/Python Library for Google Setshttps://www.rfc1437.de/2009/08/14/python-library-for-google-sets/Apple bringt MacBook Pro 15" mit mattem Displayhttps://www.rfc1437.de/2009/08/12/apple-bringt-macbook-pro-15-mit-mattem-display/Artangel | SEIZUREhttps://www.rfc1437.de/2009/08/10/artangel-seizure/Comparing Mongo DB and Couch DBhttps://www.rfc1437.de/2009/08/10/comparing-mongo-db-and-couch-db/Kanzleramtschef fordert "Verkehrsregeln im Internet"https://www.rfc1437.de/2009/08/10/kanzleramtschef-fordert-verkehrsregeln-im-internet/Braunschweiger Flashmob wird zum Politikumhttps://www.rfc1437.de/2009/08/08/braunschweiger-flashmob-wird-zum-politikum/Sunshinehttps://www.rfc1437.de/2009/08/08/sunshine/taz sagt Leichtathletik-WM abhttps://www.rfc1437.de/2009/08/08/taz-sagt-leichtathletik-wm-ab/WAZ begrüßt Springer-Vorstoß für Bezahlcontenthttps://www.rfc1437.de/2009/08/08/waz-begruesst-springer-vorstoss-fuer-bezahlcontent/Zypries: Web-Sperren können nicht auf Vertragsbasis aktiviert werdenhttps://www.rfc1437.de/2009/08/08/zypries-web-sperren-koennen-nicht-auf/Panasonic GF1 is leaked - new compact Micro Four Thirds camera - 1001 Noisy Camerashttps://www.rfc1437.de/2009/08/07/panasonic-gf1-is-leaked-new-compact-micro-four/iPhone Dictionary, Censored by Applehttps://www.rfc1437.de/2009/08/06/iphone-dictionary-censored-by-apple/gitithttps://www.rfc1437.de/2009/08/05/gitit/Human Dominoshttps://www.rfc1437.de/2009/08/05/human-dominos/MongoDBhttps://www.rfc1437.de/2009/08/05/mongodb/NoSQL: If Only It Was That Easyhttps://www.rfc1437.de/2009/08/05/nosql-if-only-it-was-that-easy/PawelPacana/MercurialBackend/Configuration - MoinMoinhttps://www.rfc1437.de/2009/08/05/pawelpacana-mercurialbackend-configuration/up and running with cassandrahttps://www.rfc1437.de/2009/08/05/up-and-running-with-cassandra/ADC—Developing Cocoa Applications Using MacRubyhttps://www.rfc1437.de/2009/08/03/adc-developing-cocoa-applications-using-macruby/FRANK BUCHWALD Maschinenleuchtenhttps://www.rfc1437.de/2009/08/03/frank-buchwald-maschinenleuchten/Human Powered Monorail Racetrackhttps://www.rfc1437.de/2009/08/03/human-powered-monorail-racetrack/MacRuby » Homehttps://www.rfc1437.de/2009/08/03/macruby-home/Von der Leyen will gegen rechte Inhalte im Netz vorgehenhttps://www.rfc1437.de/2009/08/02/von-der-leyen-will-gegen-rechte-inhalte-im-netz/Meister der Fotografiehttps://www.rfc1437.de/2009/08/01/meister-der-fotografie/WPS: PostScript for the Webhttps://www.rfc1437.de/2009/07/31/wps-postscript-for-the-web/Discworld Cakehttps://www.rfc1437.de/2009/07/29/discworld-cake/Flickr: Boy Obsolete''s Photostreamhttps://www.rfc1437.de/2009/07/29/flickr-boy-obsolete-s-photostream/There’s No App for That « Riverturn Blog and Talk Backhttps://www.rfc1437.de/2009/07/29/there-s-no-app-for-that-riverturn-blog-and-talk/fabricatehttps://www.rfc1437.de/2009/07/27/fabricate/Ricoh GR Digital III Announcedhttps://www.rfc1437.de/2009/07/27/ricoh-gr-digital-iii-announced/Welcome to Self — Self - the power of simplicityhttps://www.rfc1437.de/2009/07/27/welcome-to-self-self-the-power-of-simplicity/Olympus E-P1 hands-on impressionshttps://www.rfc1437.de/2009/07/23/olympus-e-p1-hands-on-impressions/RubyFrontier Documentationhttps://www.rfc1437.de/2009/07/23/rubyfrontier-documentation/The Online Photographer: Olympus E-P1 PEN Reviewhttps://www.rfc1437.de/2009/07/23/the-online-photographer-olympus-e-p1-pen-review/wxMaximahttps://www.rfc1437.de/2009/07/21/wxmaxima-2/CAS | Jasig Communityhttps://www.rfc1437.de/2009/07/20/cas-jasig-community/Franke & Heidecke to closehttps://www.rfc1437.de/2009/07/20/franke-heidecke-to-close/pam_python - write PAM modules in Pythonhttps://www.rfc1437.de/2009/07/20/pam-python-write-pam-modules-in-python/Python PAMhttps://www.rfc1437.de/2009/07/20/python-pam/SSO frei Haushttps://www.rfc1437.de/2009/07/20/sso-frei-haus/Toolserver Framework for Pythonhttps://www.rfc1437.de/2009/07/20/toolserver-framework-for-python-2/Amazon löscht gekaufte Kindle-eBookshttps://www.rfc1437.de/2009/07/19/amazon-loescht-gekaufte-kindle-ebooks/C/Y Adapter für 4/3https://www.rfc1437.de/2009/07/19/c-y-adapter-fuer-4-3/Lumix Digitalkameras - G Micro System - H-F007014https://www.rfc1437.de/2009/07/19/lumix-digitalkameras-g-micro-system-h-f007014/Zubehör Digitalkameras - Sonstiges - DMW-MA2Mhttps://www.rfc1437.de/2009/07/19/zubehoer-digitalkameras-sonstiges-dmw-ma2m/One bug to rule them allhttps://www.rfc1437.de/2009/07/17/one-bug-to-rule-them-all/[pypy-dev] ANN: psyco V2https://www.rfc1437.de/2009/07/17/pypy-dev-ann-psyco-v2/Tablet-Netbook von Asus für 450 Eurohttps://www.rfc1437.de/2009/07/17/tablet-netbook-von-asus-fuer-450-euro/django-queue-servicehttps://www.rfc1437.de/2009/07/13/django-queue-service/GitXhttps://www.rfc1437.de/2009/07/13/gitx/Google veröffentlicht freien NX-Serverhttps://www.rfc1437.de/2009/07/10/google-veroeffentlicht-freien-nx-server/jQuery Visualize Plugin: Accessible Charts & Graphs from Table Elements using HTML 5 Canvashttps://www.rfc1437.de/2009/07/10/jquery-visualize-plugin-accessible-charts-graphs/MetaPython Documentationhttps://www.rfc1437.de/2009/07/10/metapython-documentation/pudb 0.92.2https://www.rfc1437.de/2009/07/10/pudb-0-92-2/robey's kestrel at masterhttps://www.rfc1437.de/2009/07/10/robey-s-kestrel-at-master/simple-build-toolhttps://www.rfc1437.de/2009/07/10/simple-build-tool/SUMMON: visualization prototyping and scriptinghttps://www.rfc1437.de/2009/07/10/summon-visualization-prototyping-and-scripting/Urteil: DSL-Sharing per WLAN verstößt gegen Wettbewerbsrechthttps://www.rfc1437.de/2009/07/10/urteil-dsl-sharing-per-wlan-verstoesst-gegen/MS Lofotenhttps://www.rfc1437.de/2009/07/09/ms-lofoten/Koffein macht Alzheimer rückgängighttps://www.rfc1437.de/2009/07/07/koffein-macht-alzheimer-rueckgaengig/Dead Media Beat: CompuServehttps://www.rfc1437.de/2009/07/06/dead-media-beat-compuserve/Dev Thoughts: Scala: Program like you mean it.https://www.rfc1437.de/2009/07/06/dev-thoughts-scala-program-like-you-mean-it/Dispatch → Guidehttps://www.rfc1437.de/2009/07/06/dispatch-guide/In eigener Sache: Stromausfall im Rechenzentrum stoppte heise onlinehttps://www.rfc1437.de/2009/07/03/in-eigener-sache-stromausfall-im-rechenzentrum/iPhone to Get SMS Vulnerability Fixhttps://www.rfc1437.de/2009/07/03/iphone-to-get-sms-vulnerability-fix/NetBeans 6.7 setzt Fokus auf Maven- und Kenai-Integrationhttps://www.rfc1437.de/2009/06/29/netbeans-6-7-setzt-fokus-auf-maven-und-kenai/agile42 | How to install Agilo for Scrumhttps://www.rfc1437.de/2009/06/26/agile42-how-to-install-agilo-for-scrum/CSS Homer, animatedhttps://www.rfc1437.de/2009/06/26/css-homer-animated/''Misty caverns'' on Enceladus moonhttps://www.rfc1437.de/2009/06/26/misty-caverns-on-enceladus-moon/OCaml-mindstormhttps://www.rfc1437.de/2009/06/26/ocaml-mindstorm/Olympus E-P1 London Launch & Hands-onhttps://www.rfc1437.de/2009/06/26/olympus-e-p1-london-launch-hands-on/pygowave-serverhttps://www.rfc1437.de/2009/06/26/pygowave-server-2/PyPy Status Blog: JIT progresshttps://www.rfc1437.de/2009/06/26/pypy-status-blog-jit-progress/''Stoned wallabies make crop circles''https://www.rfc1437.de/2009/06/26/stoned-wallabies-make-crop-circles/Why are There 60 Minutes in an Hour?https://www.rfc1437.de/2009/06/26/why-are-there-60-minutes-in-an-hour/Window damage on Atlantis threatens six month delay to STS-129https://www.rfc1437.de/2009/06/26/window-damage-on-atlantis-threatens-six-month/Four crowdsourcing lessons from the Guardian’s (spectacular) expenses-scandal experimenthttps://www.rfc1437.de/2009/06/24/four-crowdsourcing-lessons-from-the-guardian-s/Second edition of Practical Django Projectshttps://www.rfc1437.de/2009/06/24/second-edition-of-practical-django-projects/Pharo Open Source Smalltalkhttps://www.rfc1437.de/2009/06/23/pharo-open-source-smalltalk/scala.xmlhttps://www.rfc1437.de/2009/06/22/scala-xml/Erik Naggum, 1965-2009 RIPhttps://www.rfc1437.de/2009/06/21/erik-naggum-1965-2009-rip/software - xml - s-exp vs XMLhttps://www.rfc1437.de/2009/06/21/software-xml-s-exp-vs-xml/Futurebox, lightbox without the JavaScripthttps://www.rfc1437.de/2009/06/20/futurebox-lightbox-without-the-javascript/scalalahttps://www.rfc1437.de/2009/06/20/scalala/scouchdbhttps://www.rfc1437.de/2009/06/20/scouchdb/NIK Complete Collectionhttps://www.rfc1437.de/2009/06/18/nik-complete-collection/Subdomain-Patent null und nichtighttps://www.rfc1437.de/2009/06/18/subdomain-patent-null-und-nichtig/Neuer Investor rettet SCO vor der Liquidierunghttps://www.rfc1437.de/2009/06/16/neuer-investor-rettet-sco-vor-der-liquidierung/Olympus E-P1 'Digital Pen' Officially Announcedhttps://www.rfc1437.de/2009/06/16/olympus-e-p1-digital-pen-officially-announced/Olympus E-P1 Hands-on Previewhttps://www.rfc1437.de/2009/06/16/olympus-e-p1-hands-on-preview/httplib2https://www.rfc1437.de/2009/06/15/httplib2/Mal Sondock gestorbenhttps://www.rfc1437.de/2009/06/15/mal-sondock-gestorben/HATTLERhttps://www.rfc1437.de/2009/06/13/hattler/Kunst-Trifft-Kohl.de :: Skulpturen in Kleingärten - Münster Kinderhaus Kulturhttps://www.rfc1437.de/2009/06/11/kunst-trifft-kohl-de-skulpturen-in-kleingaerten/Europawahl: Debakel für die SPDhttps://www.rfc1437.de/2009/06/07/europawahl-debakel-fuer-die-spd/The Gettysburg Powerpoint Presentationhttps://www.rfc1437.de/2009/06/04/the-gettysburg-powerpoint-presentation/The speed, size and dependability of programming languageshttps://www.rfc1437.de/2009/06/01/the-speed-size-and-dependability-of-programming/AK Zensur lässt 60 Kinderporno-Seiten in 12 Stunden löschenhttps://www.rfc1437.de/2009/05/29/ak-zensur-laesst-60-kinderporno-seiten-in-12/bobo v0.2 documentationhttps://www.rfc1437.de/2009/05/29/bobo-v0-2-documentation/Reading and Writing to Excel Spreadsheets in Pythonhttps://www.rfc1437.de/2009/05/29/reading-and-writing-to-excel-spreadsheets-in/Roland Schulz: SSH ProxyCommand without netcathttps://www.rfc1437.de/2009/05/29/roland-schulz-ssh-proxycommand-without-netcat/The Online Photographer: Sigma DP2 Reviewhttps://www.rfc1437.de/2009/05/29/the-online-photographer-sigma-dp2-review/iSqueakhttps://www.rfc1437.de/2009/05/27/isqueak/Mobile Wiki Serverhttps://www.rfc1437.de/2009/05/27/mobile-wiki-server/Geeking out with Lisp Flavoured Erlanghttps://www.rfc1437.de/2009/05/22/geeking-out-with-lisp-flavoured-erlang/Nanojithttps://www.rfc1437.de/2009/05/22/nanojit/pickled-object-databasehttps://www.rfc1437.de/2009/05/22/pickled-object-database/Whither Eucalyptus?https://www.rfc1437.de/2009/05/22/whither-eucalyptus/Lamson: Lamson The Python SMTP Serverhttps://www.rfc1437.de/2009/05/17/lamson-lamson-the-python-smtp-server/Glusterhttps://www.rfc1437.de/2009/05/15/gluster/Nimrod Programming Languagehttps://www.rfc1437.de/2009/05/15/nimrod-programming-language/SCO soll liquidiert werdenhttps://www.rfc1437.de/2009/05/09/sco-soll-liquidiert-werden/Animeeple Softwarehttps://www.rfc1437.de/2009/05/07/animeeple-software/Bundesinkompetenz und Wackeldackelhttps://www.rfc1437.de/2009/05/07/bundesinkompetenz-und-wackeldackel/Hausdurchsuchung bei Forenbetreiber rechtswidrighttps://www.rfc1437.de/2009/05/07/hausdurchsuchung-bei-forenbetreiber-rechtswidrig/MonoDevelop on MacOS Xhttps://www.rfc1437.de/2009/05/07/monodevelop-on-macos-x/Murdoch will hinter die Paywallhttps://www.rfc1437.de/2009/05/07/murdoch-will-hinter-die-paywall/Packet Gardenhttps://www.rfc1437.de/2009/05/04/packet-garden/Hg-Git Mercurial Pluginhttps://www.rfc1437.de/2009/05/01/hg-git-mercurial-plugin/New Survey Suggests Modern Humans Originated in Southwest Africahttps://www.rfc1437.de/2009/05/01/new-survey-suggests-modern-humans-originated-in/Axiotron Modbookhttps://www.rfc1437.de/2009/04/29/axiotron-modbook/Is blender really equal to the competition?https://www.rfc1437.de/2009/04/29/is-blender-really-equal-to-the-competition/Ärgerliches | Die Netzsperren-Show.https://www.rfc1437.de/2009/04/27/aergerliches-die-netzsperren-show/Von der Leyen: Nur versierte Nutzer können Sperren umgehenhttps://www.rfc1437.de/2009/04/27/von-der-leyen-nur-versierte-nutzer-koennen/Überwachungswahn und Internetzensurhttps://www.rfc1437.de/2009/04/25/ueberwachungswahn-und-internetzensur/Vioxx maker Merck and Co drew up doctor hit list | The Australianhttps://www.rfc1437.de/2009/04/24/vioxx-maker-merck-and-co-drew-up-doctor-hit-list/E-Books: Verlage schotten Märkte abhttps://www.rfc1437.de/2009/04/23/e-books-verlage-schotten-maerkte-ab/Bundesregierung will Internetsperren mit Zugriffskontrollenhttps://www.rfc1437.de/2009/04/21/bundesregierung-will-internetsperren-mit/Laktoseintoleranzhttps://www.rfc1437.de/2009/04/21/laktoseintoleranz/Mothers Ruin Software: Suspicious Packagehttps://www.rfc1437.de/2009/04/20/mothers-ruin-software-suspicious-package/Oracle Agrees to Acquire Sun Microsystemshttps://www.rfc1437.de/2009/04/20/oracle-agrees-to-acquire-sun-microsystems/Mac-Bot-Netz?https://www.rfc1437.de/2009/04/18/mac-bot-netz/Pulp Browserhttps://www.rfc1437.de/2009/04/16/pulp-browser/Tax-free Internet shopping may be at an endhttps://www.rfc1437.de/2009/04/16/tax-free-internet-shopping-may-be-at-an-end/tweenbothttps://www.rfc1437.de/2009/04/16/tweenbot/Tropohttps://www.rfc1437.de/2009/04/15/tropo/wikileaks-Kram doch etwas anders als ursprünglich behauptethttps://www.rfc1437.de/2009/04/14/wikileaks-kram-doch-etwas-anders-als/Armstrong droht das Tour-Aushttps://www.rfc1437.de/2009/04/12/armstrong-droht-das-tour-aus/Müntefering rechnet mit Opel-Staatsbeteiligunghttps://www.rfc1437.de/2009/04/12/muentefering-rechnet-mit-opel-staatsbeteiligung/Vorauseilender Gehorsam beim DENIChttps://www.rfc1437.de/2009/04/12/vorauseilender-gehorsam-beim-denic/Discount — a C implementation of the Markdown markup languagehttps://www.rfc1437.de/2009/04/08/discount-a-c-implementation-of-the-markdown/Experiences deploying a large-scale infrastructure in Amazon EC2https://www.rfc1437.de/2009/04/08/experiences-deploying-a-large-scale/jgm's peg-markdownhttps://www.rfc1437.de/2009/04/08/jgm-s-peg-markdown/Books on Boardhttps://www.rfc1437.de/2009/04/03/books-on-board/Moleskin page designerhttps://www.rfc1437.de/2009/04/03/moleskin-page-designer/Python MQI Interface - pymqi. Version 0.5dhttps://www.rfc1437.de/2009/04/03/python-mqi-interface-pymqi-version-0-5d/Sup dawg, we heard you like Smalltalk so we put Smalltalk in your Factor so you can send messages while you rollhttps://www.rfc1437.de/2009/04/01/sup-dawg-we-heard-you-like-smalltalk-so-we-put/Welcome to Waterstones.comhttps://www.rfc1437.de/2009/04/01/welcome-to-waterstones-com/An Experimental MacRubyhttps://www.rfc1437.de/2009/03/30/an-experimental-macruby/Kopfschüttelanreiz aus Karlsruhe (nur Landgericht)https://www.rfc1437.de/2009/03/30/kopfschuettelanreiz-aus-karlsruhe-nur-landgericht/Telekom will iPhones Skype-frei haltenhttps://www.rfc1437.de/2009/03/30/telekom-will-iphones-skype-frei-halten/Getting the most out of a 1024x600 screenhttps://www.rfc1437.de/2009/03/29/getting-the-most-out-of-a-1024x600-screen/Schwedens Polizei: Kinderpornofilter sind wenig wirksamhttps://www.rfc1437.de/2009/03/29/schwedens-polizei-kinderpornofilter-sind-wenig/BKA-Zeuge lügt (schlecht) über gefälschte Aktenhttps://www.rfc1437.de/2009/03/28/bka-zeuge-luegt-schlecht-ueber-gefaelschte-akten/Review of 3D Engines for the iPhonehttps://www.rfc1437.de/2009/03/28/review-of-3d-engines-for-the-iphone/Somethings to rejoice abouthttps://www.rfc1437.de/2009/03/28/somethings-to-rejoice-about/Intuos4 - Wacom-Zeichentabletts mit neuer Stifttechnikhttps://www.rfc1437.de/2009/03/26/intuos4-wacom-zeichentabletts-mit-neuer/KeyCue - find, remember, and learn menu shortcutshttps://www.rfc1437.de/2009/03/25/keycue-find-remember-and-learn-menu-shortcuts/wikileaks und die Sperrlistenhttps://www.rfc1437.de/2009/03/25/wikileaks-und-die-sperrlisten/Abacus Tutorial - How to use an Abacus. Japanese, Chinese abacushttps://www.rfc1437.de/2009/03/24/abacus-tutorial-how-to-use-an-abacus-japanese/Koalition will Pläne gegen Datenmissbrauch entschärfenhttps://www.rfc1437.de/2009/03/24/koalition-will-plaene-gegen-datenmissbrauch/OLG Hamburg schränkt Forenhaftung einhttps://www.rfc1437.de/2009/03/24/olg-hamburg-schraenkt-forenhaftung-ein/One Laptop Battery Later And I'm A Django Fanhttps://www.rfc1437.de/2009/03/23/one-laptop-battery-later-and-i-m-a-django-fan/Regierung will Onlinedurchsuchung beschleunigt ausweitenhttps://www.rfc1437.de/2009/03/23/regierung-will-onlinedurchsuchung-beschleunigt/Schweinemast neben Staatsgästenhttps://www.rfc1437.de/2009/03/23/schweinemast-neben-staatsgaesten/Sony e-book reader gets 500,000 books from Googlehttps://www.rfc1437.de/2009/03/19/sony-e-book-reader-gets-500-000-books-from-google/Das iPhone kann bald auch «Copy and Paste»https://www.rfc1437.de/2009/03/18/das-iphone-kann-bald-auch-copy-and-paste/RapidMinerhttps://www.rfc1437.de/2009/03/18/rapidminer/Baen Books Science Fiction & Fantasyhttps://www.rfc1437.de/2009/03/14/baen-books-science-fiction-fantasy/Calibrehttps://www.rfc1437.de/2009/03/14/calibre/Sony Reader PRS-505 - LatheWikihttps://www.rfc1437.de/2009/03/14/sony-reader-prs-505-lathewiki/Bug #317781 - Comment #45https://www.rfc1437.de/2009/03/13/bug-317781-comment-45/.epub eBooks Tutorialhttps://www.rfc1437.de/2009/03/13/epub-ebooks-tutorial/Feedbooks: Food for the mindhttps://www.rfc1437.de/2009/03/13/feedbooks-food-for-the-mind/Fictionwise eBookshttps://www.rfc1437.de/2009/03/13/fictionwise-ebooks/macvim - Google Codehttps://www.rfc1437.de/2009/03/13/macvim-google-code/:: Munseys : A Bangsian Fantasyhttps://www.rfc1437.de/2009/03/13/munseys-a-bangsian-fantasy/John J Marley Lettershttps://www.rfc1437.de/2009/03/12/john-j-marley-letters/Sendezeitbegrenzung für erotische Inhaltehttps://www.rfc1437.de/2009/03/12/sendezeitbegrenzung-fuer-erotische-inhalte/Tauss räumt eigene Ermittlungen in Kinderpornoszene einhttps://www.rfc1437.de/2009/03/12/tauss-raeumt-eigene-ermittlungen-in/OpenDocument, diff, and revision-controlhttps://www.rfc1437.de/2009/03/11/opendocument-diff-and-revision-control/Schäuble unter Beobachtung des Verfassungsschutz stellenhttps://www.rfc1437.de/2009/03/11/schaeuble-unter-beobachtung-des-verfassungsschutz/Enzyme behind cancer spread foundhttps://www.rfc1437.de/2009/03/09/enzyme-behind-cancer-spread-found/The START Natural Language Question Answering Systemhttps://www.rfc1437.de/2009/03/09/the-start-natural-language-question-answering/What happened to Hot Standby?https://www.rfc1437.de/2009/03/09/what-happened-to-hot-standby/wmd - The Wysiwym Markdown Editorhttps://www.rfc1437.de/2009/03/09/wmd-the-wysiwym-markdown-editor/Portrait of an Artist as an Avatar - Filthy Flunohttps://www.rfc1437.de/2009/03/07/portrait-of-an-artist-as-an-avatar-filthy-fluno/Scripting Drawer für Acornhttps://www.rfc1437.de/2009/03/06/scripting-drawer-fuer-acorn/Stainless for OS X Leopardhttps://www.rfc1437.de/2009/03/06/stainless-for-os-x-leopard/Leica ceases R-series productionhttps://www.rfc1437.de/2009/03/05/leica-ceases-r-series-production/Nik Software, Inc.https://www.rfc1437.de/2009/03/05/nik-software-inc/lange Akkulaufzeithttps://www.rfc1437.de/2009/03/04/lange-akkulaufzeit/Bundesverfassungsgericht entscheidet gegen Wahlcomputerhttps://www.rfc1437.de/2009/03/03/bundesverfassungsgericht-entscheidet-gegen/git installer für OS Xhttps://www.rfc1437.de/2009/02/26/git-installer-fuer-os-x/Alien Skin Software: Bokehhttps://www.rfc1437.de/2009/02/25/alien-skin-software-bokeh/OMVViewer-light a Secondlife Text Clienthttps://www.rfc1437.de/2009/02/25/omvviewer-light-a-secondlife-text-client/The man who invented the doner kebab has diedhttps://www.rfc1437.de/2009/02/25/the-man-who-invented-the-doner-kebab-has-died/Adapters: Micro 4/3https://www.rfc1437.de/2009/02/20/adapters-micro-4-3/Alhazenhttps://www.rfc1437.de/2009/02/20/alhazen/ITU-Pläne zum Kampf gegen Cybercrime stoßen auf Widerstandhttps://www.rfc1437.de/2009/02/20/itu-plaene-zum-kampf-gegen-cybercrime-stossen-auf/StillTasty: Your Ultimate Shelf Life Guidehttps://www.rfc1437.de/2009/02/20/stilltasty-your-ultimate-shelf-life-guide/Union will auch Kinder überwachen lassenhttps://www.rfc1437.de/2009/02/20/union-will-auch-kinder-ueberwachen-lassen/And now a physics engine for JavaScript...https://www.rfc1437.de/2009/02/18/and-now-a-physics-engine-for-javascript/zsynchttps://www.rfc1437.de/2009/02/18/zsync/A high-level cross-protocol url-grabberhttps://www.rfc1437.de/2009/02/16/a-high-level-cross-protocol-url-grabber/Anonymous(tm)https://www.rfc1437.de/2009/02/16/anonymous-tm/Britisch-Französisches Nuklear-Billiard im Atlantikhttps://www.rfc1437.de/2009/02/16/britisch-franzoesisches-nuklear-billiard-im/CDU: Gegner von Internetsperren fördern Kinderpornografiehttps://www.rfc1437.de/2009/02/16/cdu-gegner-von-internetsperren-foerdern/py-amqplibhttps://www.rfc1437.de/2009/02/16/py-amqplib/Rabbits and warrenshttps://www.rfc1437.de/2009/02/16/rabbits-and-warrens/txAMQP: Twisted AMQP in Launchpadhttps://www.rfc1437.de/2009/02/16/txamqp-twisted-amqp-in-launchpad/Using RabbitMQ Beyond Queueinghttps://www.rfc1437.de/2009/02/16/using-rabbitmq-beyond-queueing/zeromq: Fastest. Messaging. Ever.https://www.rfc1437.de/2009/02/16/zeromq-fastest-messaging-ever/FragStore - A Fragmenting Asset Store at Adam Frisbyhttps://www.rfc1437.de/2009/02/15/fragstore-a-fragmenting-asset-store-at-adam-frisby/FractalMakerhttps://www.rfc1437.de/2009/02/13/fractalmaker/The Oarfish - A Creature Of Legendhttps://www.rfc1437.de/2009/02/13/the-oarfish-a-creature-of-legend/Unix Lovers to Party Like It's 1234567890https://www.rfc1437.de/2009/02/13/unix-lovers-to-party-like-it-s-1234567890/Schäuble gehackt (Update)https://www.rfc1437.de/2009/02/11/schaeuble-gehackt-update/Demo scripts for gnuplot CVS versionhttps://www.rfc1437.de/2009/02/09/demo-scripts-for-gnuplot-cvs-version/Gravenreuth muss in Hafthttps://www.rfc1437.de/2009/02/08/gravenreuth-muss-in-haft/Linzer Weihbischof hält Homosexualität für heilbarhttps://www.rfc1437.de/2009/02/08/linzer-weihbischof-haelt-homosexualitaet-fuer/ExpanDrive: Ridiculously simple SFTP and FTP drive access on your Machttps://www.rfc1437.de/2009/02/06/expandrive-ridiculously-simple-sftp-and-ftp-drive/Instant color schemes for your Mac with ColorSchemer Studio OSXhttps://www.rfc1437.de/2009/02/06/instant-color-schemes-for-your-mac-with/Intaglio — Macintosh Drawing & Illustrationhttps://www.rfc1437.de/2009/02/06/intaglio-macintosh-drawing-illustration/VectorDesignerhttps://www.rfc1437.de/2009/02/06/vectordesigner/Moving Forth: Part 1https://www.rfc1437.de/2009/02/04/moving-forth-part-1/Wolfram Mathematica Home Editionhttps://www.rfc1437.de/2009/02/04/wolfram-mathematica-home-edition/NodeBox 2https://www.rfc1437.de/2009/02/03/nodebox-2/US-Hacker kopiert unbemerkt RFID-Ausweisehttps://www.rfc1437.de/2009/02/03/us-hacker-kopiert-unbemerkt-rfid-ausweise/Nokia drückt Überwachungsrechte für E-Mails durchhttps://www.rfc1437.de/2009/02/02/nokia-drueckt-ueberwachungsrechte-fuer-e-mails/Filter Forgehttps://www.rfc1437.de/2009/01/31/filter-forge/Imagelys Picture Styleshttps://www.rfc1437.de/2009/01/31/imagelys-picture-styles/LÖVE - Free 2D Game Enginehttps://www.rfc1437.de/2009/01/30/loeve-free-2d-game-engine/Online Backup: Multi-Platform, Multi-Computer | SpiderOak, Inc.https://www.rfc1437.de/2009/01/30/online-backup-multi-platform-multi-computer/Patterns in Pythonhttps://www.rfc1437.de/2009/01/30/patterns-in-python/Darwin/x86 Boot Loaderhttps://www.rfc1437.de/2009/01/26/darwin-x86-boot-loader/How To Migrate from Parallels to VirtualBoxhttps://www.rfc1437.de/2009/01/26/how-to-migrate-from-parallels-to-virtualbox/New in JavaScript 1.7https://www.rfc1437.de/2009/01/26/new-in-javascript-1-7-2/Data Mining with R: learning by case studieshttps://www.rfc1437.de/2009/01/23/data-mining-with-r-learning-by-case-studies/Op-Ed Contributor - The One-State Solutionhttps://www.rfc1437.de/2009/01/23/op-ed-contributor-the-one-state-solution/XBinary: Extended Binary Format Support for Mac OS Xhttps://www.rfc1437.de/2009/01/21/xbinary-extended-binary-format-support-for-mac-os/TimeMachine fails backup - InsanelyMac Forumhttps://www.rfc1437.de/2009/01/20/timemachine-fails-backup-insanelymac-forum/Weekend Grid Outageshttps://www.rfc1437.de/2009/01/20/weekend-grid-outages/how to find mac os x application specifier for preferenceshttps://www.rfc1437.de/2009/01/19/how-to-find-mac-os-x-application-specifier-for/Kim Keeverhttps://www.rfc1437.de/2009/01/19/kim-keever/The Impossible Projecthttps://www.rfc1437.de/2009/01/19/the-impossible-project/Bubble, bubble toil and trouble: Juice Analyticshttps://www.rfc1437.de/2009/01/16/bubble-bubble-toil-and-trouble-juice-analytics/OS X auf dem EeePChttps://www.rfc1437.de/2009/01/16/os-x-auf-dem-eeepc/Dark Roasted Blend: Weird "Walking" Frogfishhttps://www.rfc1437.de/2009/01/12/dark-roasted-blend-weird-walking-frogfish/eee Mac journey: EEE Boot: Installing OSX on an EEE PC 901 or 1000 with an original Apple Install Disk v1.09https://www.rfc1437.de/2009/01/12/eee-mac-journey-eee-boot-installing-osx-on-an-eee/English Russia » Abandoned Russian Polar Nuclear Lighthouseshttps://www.rfc1437.de/2009/01/12/english-russia-abandoned-russian-polar-nuclear/RunCore 256GB Pro III Hyper Speed 2.5" SATA Solid State Drivehttps://www.rfc1437.de/2009/01/12/runcore-256gb-pro-iii-hyper-speed-2-5-sata-solid/Das Geheimnis der verschwundenen Bücherhttps://www.rfc1437.de/2009/01/10/das-geheimnis-der-verschwundenen-buecher/iUI Introduction Wiki Page.https://www.rfc1437.de/2009/01/09/iui-introduction-wiki-page/PyChahttps://www.rfc1437.de/2009/01/09/pycha/Jörg Schieb - iTunes verzichtet auf Kopierschutzhttps://www.rfc1437.de/2009/01/07/joerg-schieb-itunes-verzichtet-auf-kopierschutz/Monstershttps://www.rfc1437.de/2009/01/05/monsters/pure-langhttps://www.rfc1437.de/2009/01/05/pure-lang/The RLTileshttps://www.rfc1437.de/2009/01/05/the-rltiles/Vx32: Lightweight, User-level Sandboxing on the x86https://www.rfc1437.de/2009/01/05/vx32-lightweight-user-level-sandboxing-on-the-x86/Cython: C-Extensions for Pythonhttps://www.rfc1437.de/2009/01/02/cython-c-extensions-for-python/Mobile Django Admin Patches - Shifting Bits by Patrick Altmanhttps://www.rfc1437.de/2009/01/01/mobile-django-admin-patches-shifting-bits-by/DigitalSpace Traveler : Travelerhttps://www.rfc1437.de/2008/12/30/digitalspace-traveler-traveler/Improve Your Photo Booth With 90 Free Effectshttps://www.rfc1437.de/2008/12/30/improve-your-photo-booth-with-90-free-effects/Raw Photo Processor (RPP)https://www.rfc1437.de/2008/12/24/raw-photo-processor-rpp/uninformation.org: Arbeitswelt 2.0, oder: Der Dot-Com-Tod ist wieder da!https://www.rfc1437.de/2008/12/18/uninformation-org-arbeitswelt-2-0-oder-der-dot/ngPlant - Open Source plant modeling packagehttps://www.rfc1437.de/2008/12/16/ngplant-open-source-plant-modeling-package/Tree makinghttps://www.rfc1437.de/2008/12/16/tree-making/Yorik's blender greenhousehttps://www.rfc1437.de/2008/12/16/yorik-s-blender-greenhouse/Arbaro - tree generation for povrayhttps://www.rfc1437.de/2008/12/15/arbaro-tree-generation-for-povray/AUST TOMTREEhttps://www.rfc1437.de/2008/12/15/aust-tomtree/MacMegaPov Indexhttps://www.rfc1437.de/2008/12/15/macmegapov-index/POV-Ray: Documentationhttps://www.rfc1437.de/2008/12/15/pov-ray-documentation/POV-Treehttps://www.rfc1437.de/2008/12/15/pov-tree/SuperColdMilkhttps://www.rfc1437.de/2008/12/15/supercoldmilk/Mystic Foresthttps://www.rfc1437.de/2008/12/03/mystic-forest/A3DSculpt: Creating sculpties with Albatross3Dhttps://www.rfc1437.de/2008/11/29/a3dsculpt-creating-sculpties-with-albatross3d/Albatross3Dhttps://www.rfc1437.de/2008/11/29/albatross3d/2,700-year-old marijuana found in Chinese tombhttps://www.rfc1437.de/2008/11/28/2-700-year-old-marijuana-found-in-chinese-tomb/IronCladhttps://www.rfc1437.de/2008/11/28/ironclad/Python-Ogre | High performance gaming and graphics library for Pythonhttps://www.rfc1437.de/2008/11/28/python-ogre-high-performance-gaming-and-graphics/Tutorial: Einstieg in das Adobe Flex SDKhttps://www.rfc1437.de/2008/11/28/tutorial-einstieg-in-das-adobe-flex-sdk/VPythonhttps://www.rfc1437.de/2008/11/28/vpython/C o r e P y : Synthetic Programming in Pythonhttps://www.rfc1437.de/2008/11/26/c-o-r-e-p-y-synthetic-programming-in-python/Rands In Repose: Dumbing Down the Cloudhttps://www.rfc1437.de/2008/11/26/rands-in-repose-dumbing-down-the-cloud/Continue: Web Applications in PLT Schemehttps://www.rfc1437.de/2008/11/24/continue-web-applications-in-plt-scheme/JazzSchemehttps://www.rfc1437.de/2008/11/24/jazzscheme/Mankind's new best friend?https://www.rfc1437.de/2008/11/24/mankind-s-new-best-friend/Molotov Alvahttps://www.rfc1437.de/2008/11/22/molotov-alva/arRsync - an Rsync GUI for Mac OS Xhttps://www.rfc1437.de/2008/11/20/arrsync-an-rsync-gui-for-mac-os-x/duplicityhttps://www.rfc1437.de/2008/11/20/duplicity/IT-Gipfel: Vertrauenswürdige De-Mail von Innenministerium und Telekomhttps://www.rfc1437.de/2008/11/20/it-gipfel-vertrauenswuerdige-de-mail-von/Mercurial hosting — bitbucket.orghttps://www.rfc1437.de/2008/11/17/mercurial-hosting-bitbucket-org/Modulare Kamera mit 6 x 17 cm großem Riesensensorhttps://www.rfc1437.de/2008/11/17/modulare-kamera-mit-6-x-17-cm-grossem-riesensensor/Respectful Insolence: That'll teach 'em for using an actual valid placebo controlhttps://www.rfc1437.de/2008/11/17/respectful-insolence-that-ll-teach-em-for-using/Wikipedia abgeschaltethttps://www.rfc1437.de/2008/11/17/wikipedia-abgeschaltet/I'm actually Knuth's homeboy on Flickrhttps://www.rfc1437.de/2008/11/14/i-m-actually-knuth-s-homeboy-on-flickr/ISS rät vom Einsatz von Trend Micros ServerProtect abhttps://www.rfc1437.de/2008/11/14/iss-raet-vom-einsatz-von-trend-micros/Microsoft erklärt siebenjährige Patch-Verspätunghttps://www.rfc1437.de/2008/11/14/microsoft-erklaert-siebenjaehrige-patch/The world’s most super-designed data center – fit for a James Bond villainhttps://www.rfc1437.de/2008/11/14/the-world-s-most-super-designed-data-center-fit/To WebKit or not to WebKit within your iPhone app?https://www.rfc1437.de/2008/11/14/to-webkit-or-not-to-webkit-within-your-iphone-app/Deutsche Bank verklagt Lehman Brothershttps://www.rfc1437.de/2008/11/13/deutsche-bank-verklagt-lehman-brothers/The flying carhttps://www.rfc1437.de/2008/11/13/the-flying-car/Lokführer springen aus Güterzughttps://www.rfc1437.de/2008/11/11/lokfuehrer-springen-aus-gueterzug/Vom qualitativen Abstieg eines Providershttps://www.rfc1437.de/2008/11/11/vom-qualitativen-abstieg-eines-providers/CLPython - an implementation of Python in Common Lisphttps://www.rfc1437.de/2008/11/10/clpython-an-implementation-of-python-in-common/CouchDBX Revivalhttps://www.rfc1437.de/2008/11/10/couchdbx-revival/Nagarehttps://www.rfc1437.de/2008/11/10/nagare/The Picodore 64 - a Commodore 64 PDAhttps://www.rfc1437.de/2008/11/10/the-picodore-64-a-commodore-64-pda/Fabrichttps://www.rfc1437.de/2008/11/06/fabric/Seed: Prime Numbers Get Hitchedhttps://www.rfc1437.de/2008/11/06/seed-prime-numbers-get-hitched/"Sichere Identität = Eindeutige Identität"https://www.rfc1437.de/2008/11/06/sichere-identitaet-eindeutige-identitaet/WPA angeblich in weniger als 15 Minuten knackbarhttps://www.rfc1437.de/2008/11/06/wpa-angeblich-in-weniger-als-15-minuten-knackbar/SPD-Rebellen lassen Ypsilanti scheiternhttps://www.rfc1437.de/2008/11/03/spd-rebellen-lassen-ypsilanti-scheitern/Gobekli Tepe: The World’s First Temple?https://www.rfc1437.de/2008/10/31/gobekli-tepe-the-world-s-first-temple/NASA - MESSENGER Teleconference: More ''Hidden'' Territory on Mercury Revealedhttps://www.rfc1437.de/2008/10/31/nasa-messenger-teleconference-more-hidden/Otto the octopus wrecks havochttps://www.rfc1437.de/2008/10/31/otto-the-octopus-wrecks-havoc/pysmellhttps://www.rfc1437.de/2008/10/31/pysmell/Tom Otterness - Making the Sculpturehttps://www.rfc1437.de/2008/10/31/tom-otterness-making-the-sculpture/JSSpeccy: A ZX Spectrum emulator in Javascripthttps://www.rfc1437.de/2008/10/30/jsspeccy-a-zx-spectrum-emulator-in-javascript/Richter: Wahlcomputer unsicherhttps://www.rfc1437.de/2008/10/29/richter-wahlcomputer-unsicher/Zed über die Bankenkrisehttps://www.rfc1437.de/2008/10/29/zed-ueber-die-bankenkrise/The Comfy Chairhttps://www.rfc1437.de/2008/10/28/the-comfy-chair/Poladroid project : the easiest and funniest Polaroid Image Makerhttps://www.rfc1437.de/2008/10/27/poladroid-project-the-easiest-and-funniest/Wahlprüfer des Bundestags bezeichnet Wahlcomputer als sicherhttps://www.rfc1437.de/2008/10/27/wahlpruefer-des-bundestags-bezeichnet/CouchDB Implementationhttps://www.rfc1437.de/2008/10/24/couchdb-implementation/Kritische Sicherheitslücke: Microsoft warnt vor Würmernhttps://www.rfc1437.de/2008/10/24/kritische-sicherheitsluecke-microsoft-warnt-vor/Kidding (not)https://www.rfc1437.de/2008/10/23/kidding-not/Developing Cocoa Applications Using MacRubyhttps://www.rfc1437.de/2008/10/21/developing-cocoa-applications-using-macruby/Frauenstraße 24https://www.rfc1437.de/2008/10/21/frauenstrasse-24/John Nack on Adobe: The DNG Profile Editor: What''s it all about?https://www.rfc1437.de/2008/10/20/john-nack-on-adobe-the-dng-profile-editor-what-s/Ackermann warnt vor Feinden der Marktwirtschafthttps://www.rfc1437.de/2008/10/19/ackermann-warnt-vor-feinden-der-marktwirtschaft/VirusTotal - Kostenloser online Viren- und Malwarescannerhttps://www.rfc1437.de/2008/10/19/virustotal-kostenloser-online-viren-und/freeSSHdhttps://www.rfc1437.de/2008/10/18/freesshd/Jeffrey’s “Export to Flickr” Lightroom Pluginhttps://www.rfc1437.de/2008/10/18/jeffrey-s-export-to-flickr-lightroom-plugin/Jeffrey’s “Export to PicasaWeb” Lightroom Pluginhttps://www.rfc1437.de/2008/10/18/jeffrey-s-export-to-picasaweb-lightroom-plugin/PresetsHeavenhttps://www.rfc1437.de/2008/10/18/presetsheaven/WinMergehttps://www.rfc1437.de/2008/10/18/winmerge/picasa2flickr - flickr upload plugin for picasahttps://www.rfc1437.de/2008/10/17/picasa2flickr-flickr-upload-plugin-for-picasa/Software Tools in Haskellhttps://www.rfc1437.de/2008/10/17/software-tools-in-haskell/eBooks mal wiederhttps://www.rfc1437.de/2008/10/15/ebooks-mal-wieder/Bericht: Digitaler Polizeifunk erreicht nur 3 KBit/shttps://www.rfc1437.de/2008/10/14/bericht-digitaler-polizeifunk-erreicht-nur-3-kbit/Das Schräuble wieder malhttps://www.rfc1437.de/2008/10/14/das-schraeuble-wieder-mal/SAP will sparenhttps://www.rfc1437.de/2008/10/14/sap-will-sparen/Auch Kohl positiv getestethttps://www.rfc1437.de/2008/10/13/auch-kohl-positiv-getestet/Bund stützt Banken mit bis zu 400 Milliarden Eurohttps://www.rfc1437.de/2008/10/13/bund-stuetzt-banken-mit-bis-zu-400-milliarden-euro/Buzzaire - Metered Dose Caffeine Inhalerhttps://www.rfc1437.de/2008/10/13/buzzaire-metered-dose-caffeine-inhaler/Downloading Hugshttps://www.rfc1437.de/2008/10/13/downloading-hugs/ECMAScript 4 - Progresshttps://www.rfc1437.de/2008/10/13/ecmascript-4-progress/IM Functionality On Twitter Suspended Indefinitelyhttps://www.rfc1437.de/2008/10/13/im-functionality-on-twitter-suspended-indefinitely/.:: NOTEPAD++ ::.https://www.rfc1437.de/2008/10/13/notepad/Overclock Your Body With Geek Cuisinehttps://www.rfc1437.de/2008/10/13/overclock-your-body-with-geek-cuisine/Shapeways | passionate about creatinghttps://www.rfc1437.de/2008/10/13/shapeways-passionate-about-creating/Slipstream - Intuition + Money - An Aha Momenthttps://www.rfc1437.de/2008/10/13/slipstream-intuition-money-an-aha-moment/T-Mobile-Aufsichtsrat nennt eigenen Konzern Klitschehttps://www.rfc1437.de/2008/10/13/t-mobile-aufsichtsrat-nennt-eigenen-konzern/The ORIGINAL Illustrated Catalog Of ACME Productshttps://www.rfc1437.de/2008/10/13/the-original-illustrated-catalog-of-acme-products/the world's most bad-ass grotesques and gargoyleshttps://www.rfc1437.de/2008/10/13/the-world-s-most-bad-ass-grotesques-and-gargoyles/Why 42 ?https://www.rfc1437.de/2008/10/13/why-42/:MyDigitalSSDhttps://www.rfc1437.de/2008/10/11/mydigitalssd/SSD-Erweiterung auf 32 oder 64 GBhttps://www.rfc1437.de/2008/10/11/ssd-erweiterung-auf-32-oder-64-gb/eeebuntuhttps://www.rfc1437.de/2008/10/10/eeebuntu/Ubuntu Eeehttps://www.rfc1437.de/2008/10/10/ubuntu-eee/UMTS USB Sticks: mit Xandros (Linux) ÜBERSICHThttps://www.rfc1437.de/2008/10/10/umts-usb-sticks-mit-xandros-linux-uebersicht/Abbyy FotoReader: OCR mit der Digitalkamerahttps://www.rfc1437.de/2008/10/07/abbyy-fotoreader-ocr-mit-der-digitalkamera/Bericht: Erotik-Unternehmer lagert T-Mobile-Kundendatenbankhttps://www.rfc1437.de/2008/10/07/bericht-erotik-unternehmer-lagert-t-mobile/OLG Hamburg: RapidShare haftet als Mitstörer für Urheberrechtsverletzungenhttps://www.rfc1437.de/2008/10/07/olg-hamburg-rapidshare-haftet-als-mitstoerer-fuer/Orbited – Networking for the Webhttps://www.rfc1437.de/2008/10/07/orbited-networking-for-the-web/Schumacher unter Doping-Verdachthttps://www.rfc1437.de/2008/10/07/schumacher-unter-doping-verdacht/Unity erstellt Spiele und 3D-Anwendungen fürs iPhone [Update]https://www.rfc1437.de/2008/10/07/unity-erstellt-spiele-und-3d-anwendungen-fuers/Multi-Dimensional Analog Literals in C++https://www.rfc1437.de/2008/10/06/multi-dimensional-analog-literals-in-c/Apple und Windows - Failhttps://www.rfc1437.de/2008/10/05/apple-und-windows-fail/17 Millionen Kundendaten bei T-Mobile geklauthttps://www.rfc1437.de/2008/10/04/17-millionen-kundendaten-bei-t-mobile-geklaut/Verraten und verkaufthttps://www.rfc1437.de/2008/10/03/verraten-und-verkauft/Tiny Nation Premierehttps://www.rfc1437.de/2008/10/01/tiny-nation-premiere/Guppy-PE: A Python Programming Environmenthttps://www.rfc1437.de/2008/09/29/guppy-pe-a-python-programming-environment/Hypo Real Estate: Steuerzahler springt in die Breschehttps://www.rfc1437.de/2008/09/29/hypo-real-estate-steuerzahler-springt-in-die/Landtagswahl in Bayern: CSU verliert absolute Mehrheithttps://www.rfc1437.de/2008/09/29/landtagswahl-in-bayern-csu-verliert-absolute/PySizer - a memory profiler for Pythonhttps://www.rfc1437.de/2008/09/29/pysizer-a-memory-profiler-for-python/Wal-Mart latest store to shut DRM key servershttps://www.rfc1437.de/2008/09/29/wal-mart-latest-store-to-shut-drm-key-servers/Neat Image /Mac - best noise reduction for digital cameras and scanners on Machttps://www.rfc1437.de/2008/09/26/neat-image-mac-best-noise-reduction-for-digital/papert: logo in your browserhttps://www.rfc1437.de/2008/09/26/papert-logo-in-your-browser/Zabel steigt vom Radhttps://www.rfc1437.de/2008/09/26/zabel-steigt-vom-rad/AK Vorrat veröffentlicht geheimes Datenaustauschabkommenhttps://www.rfc1437.de/2008/09/25/ak-vorrat-veroeffentlicht-geheimes/GTK+ on OSXhttps://www.rfc1437.de/2008/09/24/gtk-on-osx/IBM warns standards bodies to shape uphttps://www.rfc1437.de/2008/09/24/ibm-warns-standards-bodies-to-shape-up/Leica S2 with 56% larger sensor than full frame:https://www.rfc1437.de/2008/09/23/leica-s2-with-56-larger-sensor-than-full-frame/Sigma announces DP2 large sensor compacthttps://www.rfc1437.de/2008/09/23/sigma-announces-dp2-large-sensor-compact/Home Page for ATShttps://www.rfc1437.de/2008/09/21/home-page-for-ats/MailWrangler and the Apple App Storehttps://www.rfc1437.de/2008/09/21/mailwrangler-and-the-apple-app-store/Making (some) sense out of sensor sizeshttps://www.rfc1437.de/2008/09/20/making-some-sense-out-of-sensor-sizes/tmshttps://www.rfc1437.de/2008/09/20/tms/Vertraulichkeit, Integrität sowie Beweisbarkeit - mit denen?https://www.rfc1437.de/2008/09/20/vertraulichkeit-integritaet-sowie-beweisbarkeit/Clozure CL 1.2 releasedhttps://www.rfc1437.de/2008/09/19/clozure-cl-1-2-released/Introducing SquirrelFish Extremehttps://www.rfc1437.de/2008/09/19/introducing-squirrelfish-extreme/Mario's Bike on Flickrhttps://www.rfc1437.de/2008/09/19/mario-s-bike-on-flickr/Play light-Bot, a free online game on Kongregatehttps://www.rfc1437.de/2008/09/19/play-light-bot-a-free-online-game-on-kongregate/Summer of JavaScriptCore: SquirrelFish Extreme has landed!https://www.rfc1437.de/2008/09/19/summer-of-javascriptcore-squirrelfish-extreme-has/Canon EOS 5D Mark II: 21MP and HD movieshttps://www.rfc1437.de/2008/09/17/canon-eos-5d-mark-ii-21mp-and-hd-movies/Millionenpanne: KfW-Überweisung an Pleite-Bank Lehmanhttps://www.rfc1437.de/2008/09/17/millionenpanne-kfw-ueberweisung-an-pleite-bank/US-Geheimdienste: Terroristen könnten Online-Rollenspiele zur Planung von Anschlägen nutzenhttps://www.rfc1437.de/2008/09/17/us-geheimdienste-terroristen-koennten-online/Wert den Purschen in den Kerker!https://www.rfc1437.de/2008/09/17/wert-den-purschen-in-den-kerker/i41CX+https://www.rfc1437.de/2008/09/16/i41cx/SourceForge.net: X-41 - an HP-41CV Simulatorhttps://www.rfc1437.de/2008/09/16/sourceforge-net-x-41-an-hp-41cv-simulator/Carl Zeiss lenses for Canon SLRshttps://www.rfc1437.de/2008/09/15/carl-zeiss-lenses-for-canon-slrs/heise online - 15.09.08 - ITU diskutiert bessere Nachverfolgbarkeit von IP-Adressenhttps://www.rfc1437.de/2008/09/15/heise-online-15-09-08-itu-diskutiert-bessere/Lichtstarkes Kleinod: Leica Noctilux mit Weltrekord-Blendenöffnunghttps://www.rfc1437.de/2008/09/15/lichtstarkes-kleinod-leica-noctilux-mit/The deep heap: Ghost in the Java virtual machinehttps://www.rfc1437.de/2008/09/15/the-deep-heap-ghost-in-the-java-virtual-machine/Dropbox - Secure backup, sync and sharing made easy.https://www.rfc1437.de/2008/09/12/dropbox-secure-backup-sync-and-sharing-made-easy/Prototype based programming in pythonhttps://www.rfc1437.de/2008/09/12/prototype-based-programming-in-python/Dumme Userinterfaces (c) by Applehttps://www.rfc1437.de/2008/09/11/dummer-userinterfaces-c-by-apple/Armstrong kehrt zurückhttps://www.rfc1437.de/2008/09/10/armstrong-kehrt-zurueck/Bund kauft Bundesdruckerei zurückhttps://www.rfc1437.de/2008/09/10/bund-kauft-bundesdruckerei-zurueck/EU erlaubt Bayer Import von Gensojabohnenhttps://www.rfc1437.de/2008/09/08/eu-erlaubt-bayer-import-von-gensojabohnen/Ex-BND-Chef: Pläne für heimliche Online-Durchsuchungen verfassungswidrighttps://www.rfc1437.de/2008/09/08/ex-bnd-chef-plaene-fuer-heimliche-online/Cappuccino Web Frameworkhttps://www.rfc1437.de/2008/09/05/cappuccino-web-framework/Dark Roasted Blend: The Most Alien-Looking Place on Earthhttps://www.rfc1437.de/2008/09/05/dark-roasted-blend-the-most-alien-looking-place/Discohttps://www.rfc1437.de/2008/09/05/disco/Django 1.0 released!https://www.rfc1437.de/2008/09/05/django-1-0-released/ThinkGeek :: Luxeed Dynamic Pixel LED Keyboardhttps://www.rfc1437.de/2008/09/05/thinkgeek-luxeed-dynamic-pixel-led-keyboard/ThinkGeek :: Optimus Maximus Keyboardhttps://www.rfc1437.de/2008/09/05/thinkgeek-optimus-maximus-keyboard/Urheberrechtsverletzung: Gerichte setzen niedrige Hürde für Auskunftsanspruch gegen Providerhttps://www.rfc1437.de/2008/09/05/urheberrechtsverletzung-gerichte-setzen-niedrige/OpenCOBOL - an open-source COBOL compilerhttps://www.rfc1437.de/2008/09/01/opencobol-an-open-source-cobol-compiler/Sync trigger with Applescript ...https://www.rfc1437.de/2008/08/31/sync-trigger-with-applescript/Deutsche Bahn erhöht Ticketpreise um 3,9 Prozenthttps://www.rfc1437.de/2008/08/29/deutsche-bahn-erhoeht-ticketpreise-um-3-9-prozent/Handel mit Melderegisterdaten: Die Schattenmeldeämterhttps://www.rfc1437.de/2008/08/29/handel-mit-melderegisterdaten-die/Scientists Discover Why Flies Are So Hard To Swathttps://www.rfc1437.de/2008/08/29/scientists-discover-why-flies-are-so-hard-to-swat/Aus für Gerolsteinerhttps://www.rfc1437.de/2008/08/28/aus-fuer-gerolsteiner/Canon EOS 50Dhttps://www.rfc1437.de/2008/08/26/canon-eos-50d/Gears für Safarihttps://www.rfc1437.de/2008/08/26/gears-fuer-safari/Redhat perl. What a tragedy.https://www.rfc1437.de/2008/08/26/redhat-perl-what-a-tragedy/Annals of the Patently Absurdhttps://www.rfc1437.de/2008/08/25/annals-of-the-patently-absurd/Factor: a practical stack language: New optimizerhttps://www.rfc1437.de/2008/08/25/factor-a-practical-stack-language-new-optimizer/Google: "No Trespassing" signs won''t stop Street Viewhttps://www.rfc1437.de/2008/08/25/google-no-trespassing-signs-won-t-stop-street-view/Jennifer Daniel Dot Com Was Takenhttps://www.rfc1437.de/2008/08/25/jennifer-daniel-dot-com-was-taken/Rabbiterhttps://www.rfc1437.de/2008/08/25/rabbiter/Techdirt: Diebold/Premier Actually Admits Its Machines Are Faulty! And That It Lied About Antivirus Software...https://www.rfc1437.de/2008/08/25/techdirt-diebold-premier-actually-admits-its/The Transterpreterhttps://www.rfc1437.de/2008/08/25/the-transterpreter/Index of /namespace/OmniOutlinerhttps://www.rfc1437.de/2008/08/22/index-of-namespace-omnioutliner/Amazon EBS - Elastic Block Store has launchedhttps://www.rfc1437.de/2008/08/21/amazon-ebs-elastic-block-store-has-launched/Free Critical Mass Modula-3 (CM3)https://www.rfc1437.de/2008/08/21/free-critical-mass-modula-3-cm3/Phil Plait''s Bad Astronomy: Bad TVhttps://www.rfc1437.de/2008/08/21/phil-plait-s-bad-astronomy-bad-tv/CPU Rings, Privilege, and Protectionhttps://www.rfc1437.de/2008/08/20/cpu-rings-privilege-and-protection/Drinking fruit juice 'may stop medication working'https://www.rfc1437.de/2008/08/20/drinking-fruit-juice-may-stop-medication-working/Peter's Evil Overlord Listhttps://www.rfc1437.de/2008/08/20/peter-s-evil-overlord-list/The Associated Press: States throw out costly electronic voting machineshttps://www.rfc1437.de/2008/08/20/the-associated-press-states-throw-out-costly/The Great Consumer Crash of 2009https://www.rfc1437.de/2008/08/20/the-great-consumer-crash-of-2009/BeagleBoard.orghttps://www.rfc1437.de/2008/08/19/beagleboard-org/Everything You Need to Know About USB 3.0, Plus First Spliced Cable Photoshttps://www.rfc1437.de/2008/08/19/everything-you-need-to-know-about-usb-3-0-plus/tunnelblickhttps://www.rfc1437.de/2008/08/18/tunnelblick/We're running out of IPv4 addresses. Time for IPv6. Really.https://www.rfc1437.de/2008/08/18/we-re-running-out-of-ipv4-addresses-time-for-ipv6/Doug's AppleScripts for iTuneshttps://www.rfc1437.de/2008/08/15/doug-s-applescripts-for-itunes/Django on Jython: It''s here!https://www.rfc1437.de/2008/08/14/django-on-jython-it-s-here/Advertising and Privacy – Google Privacy Centerhttps://www.rfc1437.de/2008/08/08/advertising-and-privacy-google-privacy-center/Edge Cases are the Root of all Evilhttps://www.rfc1437.de/2008/08/08/edge-cases-are-the-root-of-all-evil/Network Advertising Initiativehttps://www.rfc1437.de/2008/08/08/network-advertising-initiative/Pentagon will offenbar Guantanamo-Freisprüche ignorierenhttps://www.rfc1437.de/2008/08/06/pentagon-will-offenbar-guantanamo-freisprueche/Kabinettsbeschluss: Hohe Strafen für illegale Telefonwerbunghttps://www.rfc1437.de/2008/07/30/kabinettsbeschluss-hohe-strafen-fuer-illegale/Keine Rundfunkgebühr für PC in Anwaltskanzleihttps://www.rfc1437.de/2008/07/29/keine-rundfunkgebuehr-fuer-pc-in-anwaltskanzlei/Bundesrechnungshof kritisiert Arbeit der Jobcenterhttps://www.rfc1437.de/2008/07/25/bundesrechnungshof-kritisiert-arbeit-der-jobcenter/Here We Go Again: Yahoo! Music Throws Away the DRM Keyshttps://www.rfc1437.de/2008/07/25/here-we-go-again-yahoo-music-throws-away-the-drm/The Death of Google's Patents?https://www.rfc1437.de/2008/07/25/the-death-of-google-s-patents/Erlang GS Explorations - Organized by Doug Edmundshttps://www.rfc1437.de/2008/07/24/erlang-gs-explorations-organized-by-doug-edmunds/Fahrer in der EPO-Fallehttps://www.rfc1437.de/2008/07/23/fahrer-in-der-epo-falle/Method and apparatus for creation and maintenance of database structurehttps://www.rfc1437.de/2008/07/23/method-and-apparatus-for-creation-and-maintenance/Methods for tying knots in ropeshttps://www.rfc1437.de/2008/07/23/methods-for-tying-knots-in-ropes/Objective Caml Plugin for Xcodehttps://www.rfc1437.de/2008/07/23/objective-caml-plugin-for-xcode/Tetrishttps://www.rfc1437.de/2008/07/23/tetris/Park Placehttps://www.rfc1437.de/2008/07/21/park-place/Technical: mw2html -- Export Mediawiki to static, traditional websitehttps://www.rfc1437.de/2008/07/21/technical-mw2html-export-mediawiki-to-static/Wikipedia Webservicehttps://www.rfc1437.de/2008/07/21/wikipedia-webservice/Radlern drohen Unfruchtbarkeit und Impotenzhttps://www.rfc1437.de/2008/07/19/radlern-drohen-unfruchtbarkeit-und-impotenz/Bushido gewinnt vor Gericht gegen drei Rentnerhttps://www.rfc1437.de/2008/07/17/bushido-gewinnt-vor-gericht-gegen-drei-rentner/„Das sind Drückermanieren“https://www.rfc1437.de/2008/07/16/das-sind-drueckermanieren/My Code Blog: ICFP Contest 2008https://www.rfc1437.de/2008/07/16/my-code-blog-icfp-contest-2008/Postgres-R: a database replication system for PostgreSQLhttps://www.rfc1437.de/2008/07/16/postgres-r-a-database-replication-system-for/SPD macht Weg für sensiblen Datenaustausch mit den USA freihttps://www.rfc1437.de/2008/07/15/spd-macht-weg-fuer-sensiblen-datenaustausch-mit/5 reasons to avoid iPhone 3Ghttps://www.rfc1437.de/2008/07/14/5-reasons-to-avoid-iphone-3g/Energie-Sozialtarife: Bundespresseamt räumt Fehler einhttps://www.rfc1437.de/2008/07/14/energie-sozialtarife-bundespresseamt-raeumt/Official Google Mobile Blog: Searching on an iPhone can be funhttps://www.rfc1437.de/2008/07/14/official-google-mobile-blog-searching-on-an/Squeak by Examplehttps://www.rfc1437.de/2008/07/14/squeak-by-example/T-Mobile will VoIP-Programm für iPhone verbietenhttps://www.rfc1437.de/2008/07/14/t-mobile-will-voip-programm-fuer-iphone-verbieten/The Omni Group - Developer - Source Codehttps://www.rfc1437.de/2008/07/14/the-omni-group-developer-source-code/Étoiléhttps://www.rfc1437.de/2008/07/14/toil/Datenschützer: Google Analytics verletzt Nutzerrechtehttps://www.rfc1437.de/2008/07/09/datenschuetzer-google-analytics-verletzt/Erster Avatar-Teleport von Second Life zu OpenSimhttps://www.rfc1437.de/2008/07/09/erster-avatar-teleport-von-second-life-zu-opensim/Livelyhttps://www.rfc1437.de/2008/07/09/lively/Massives DNS-Sicherheitsproblem gefährdet das Internethttps://www.rfc1437.de/2008/07/09/massives-dns-sicherheitsproblem-gefaehrdet-das/Second Life kontert Googles Livelyhttps://www.rfc1437.de/2008/07/09/second-life-kontert-googles-lively/VMware tauscht CEO aushttps://www.rfc1437.de/2008/07/09/vmware-tauscht-ceo-aus/Apple just gave out my Apple ID password because someone askedhttps://www.rfc1437.de/2008/07/08/apple-just-gave-out-my-apple-id-password-because/Protocol Buffers: Google''s Data Interchange Formathttps://www.rfc1437.de/2008/07/08/protocol-buffers-google-s-data-interchange-format/PostgreSQL Gets Religion About Replicationhttps://www.rfc1437.de/2008/07/07/postgresql-gets-religion-about-replication/Court Ruling Will Expose Viewing Habits of YouTube Usershttps://www.rfc1437.de/2008/07/03/court-ruling-will-expose-viewing-habits-of/Drobohttps://www.rfc1437.de/2008/07/03/drobo/Google Talk for the iPhonehttps://www.rfc1437.de/2008/07/03/google-talk-for-the-iphone/Kartellamt durchsucht bundesweit Kaffee-Produzentenhttps://www.rfc1437.de/2008/07/03/kartellamt-durchsucht-bundesweit-kaffee/Phone Smart - Cellphone Termination Fees Seem to Be on the Way Outhttps://www.rfc1437.de/2008/07/03/phone-smart-cellphone-termination-fees-seem-to-be/Python Underscore Methodshttps://www.rfc1437.de/2008/07/03/python-underscore-methods/Steinbrück: Harte Worte gegen Kindergelderhöhunghttps://www.rfc1437.de/2008/07/03/steinbrueck-harte-worte-gegen-kindergelderhoehung/Watermelon Found to Have a Viagra effecthttps://www.rfc1437.de/2008/07/03/watermelon-found-to-have-a-viagra-effect/New law says computer repair guys in Texas must also be licensed private investigators!!!https://www.rfc1437.de/2008/07/02/new-law-says-computer-repair-guys-in-texas-must/T-Mobile Abzockerhttps://www.rfc1437.de/2008/07/02/t-mobile-abzocker/Nikon D700 Hands-on Previewhttps://www.rfc1437.de/2008/07/01/nikon-d700-hands-on-preview/Cocoa on the web: 280 North, Objective-J, and Cappuccinohttps://www.rfc1437.de/2008/06/30/cocoa-on-the-web-280-north-objective-j-and/NNDB Mapper: Tracking the entire worldhttps://www.rfc1437.de/2008/06/30/nndb-mapper-tracking-the-entire-world/Seltsame Praxis bei Handyaltvertragshandelsportalhttps://www.rfc1437.de/2008/06/30/seltsame-praxis-bei-handyaltvertragshandelsportal/Studie: Rauchverbot in England verhindert 40.000 Todesfällehttps://www.rfc1437.de/2008/06/30/studie-rauchverbot-in-england-verhindert-40-000/Wee Westernshttps://www.rfc1437.de/2008/06/30/wee-westerns/WikidBASEhttps://www.rfc1437.de/2008/06/30/wikidbase/Datenschacher mit dem FBIhttps://www.rfc1437.de/2008/06/29/datenschacher-mit-dem-fbi/ICANN und IANA Defacementshttps://www.rfc1437.de/2008/06/29/icann-und-iana-defacements/Graphitehttps://www.rfc1437.de/2008/06/28/graphite/iPhone 3G: T-Mobile verspricht unbegrenzte VPN-Nutzunghttps://www.rfc1437.de/2008/06/28/iphone-3g-t-mobile-verspricht-unbegrenzte-vpn/AVG ist ne Schweinesoftwarehttps://www.rfc1437.de/2008/06/27/avg-ist-ne-schweinesoftware/Chuck Moore's Wonderful colorForth Programming Language and Operating Systemhttps://www.rfc1437.de/2008/06/27/chuck-moore-s-wonderful-colorforth-programming/Keylogger in JavaScript mit IE bis Version 8betahttps://www.rfc1437.de/2008/06/27/keylogger-in-javascript-mit-ie-bis-version-8beta/«So kann man mit Atommüll nicht umgehen»https://www.rfc1437.de/2008/06/27/so-kann-man-mit-atommuell-nicht-umgehen/The A-Z of Programming Languages: Forthhttps://www.rfc1437.de/2008/06/27/the-a-z-of-programming-languages-forth/Amphibious Robot Snake (Video)https://www.rfc1437.de/2008/06/26/amphibious-robot-snake-video/It''s L-i-n-u-x, that is an Operating Systemhttps://www.rfc1437.de/2008/06/26/it-s-l-i-n-u-x-that-is-an-operating-system/OmniFocus for iPhone and iPod touchhttps://www.rfc1437.de/2008/06/26/omnifocus-for-iphone-and-ipod-touch/One Man, One Long List, No More Web Adshttps://www.rfc1437.de/2008/06/26/one-man-one-long-list-no-more-web-ads/Perfect multi-column CSS liquid layouts - iPhone compatiblehttps://www.rfc1437.de/2008/06/26/perfect-multi-column-css-liquid-layouts-iphone/Ruinen von Babylon durch Irakkrieg irreparabel beschädigthttps://www.rfc1437.de/2008/06/26/ruinen-von-babylon-durch-irakkrieg-irreparabel/Ströbele verlässt BND-Ausschuss zeitweilig | tagesschau.dehttps://www.rfc1437.de/2008/06/26/stroebele-verlaesst-bnd-ausschuss-zeitweilig/The Floating Boxes CSS Layouthttps://www.rfc1437.de/2008/06/26/the-floating-boxes-css-layout/Abhörwahn in Berlinhttps://www.rfc1437.de/2008/06/25/abhoerwahn-in-berlin/Arbeitslosengeld ab 2012 nur noch mit Chipkartehttps://www.rfc1437.de/2008/06/25/arbeitslosengeld-ab-2012-nur-noch-mit-chipkarte/Front Range Pythoneering: Flipping the 2.5 Bit for Jythonhttps://www.rfc1437.de/2008/06/25/front-range-pythoneering-flipping-the-2-5-bit-for/White House Refused to Open Pollutants E-Mailhttps://www.rfc1437.de/2008/06/25/white-house-refused-to-open-pollutants-e-mail/Politische Datenbank - Parteienfinanzierung - Parteispenden - Parteifinanzierunghttps://www.rfc1437.de/2008/06/24/politische-datenbank-parteienfinanzierung/Symbian soll Open Source werdenhttps://www.rfc1437.de/2008/06/24/symbian-soll-open-source-werden/Amazon EC2 Basics For Python Programmershttps://www.rfc1437.de/2008/06/23/amazon-ec2-basics-for-python-programmers/Einzelhandel wird beklauthttps://www.rfc1437.de/2008/06/23/einzelhandel-wird-beklaut/Interview: "Öl-Spekulanten sind keine Preistreiber"https://www.rfc1437.de/2008/06/23/interview-oel-spekulanten-sind-keine-preistreiber/More: Systems Programming with PLT Schemehttps://www.rfc1437.de/2008/06/23/more-systems-programming-with-plt-scheme/Nokia kauft Plazeshttps://www.rfc1437.de/2008/06/23/nokia-kauft-plazes/Olympus E-420 Reviewhttps://www.rfc1437.de/2008/06/23/olympus-e-420-review/Olympus Zuiko Digital 25mm 1:2.8 Lens Reviewhttps://www.rfc1437.de/2008/06/23/olympus-zuiko-digital-25mm-1-2-8-lens-review/Python Cookbook, 2nd Editionhttps://www.rfc1437.de/2008/06/23/python-cookbook-2nd-edition/Ravelry - a knit and crochet communityhttps://www.rfc1437.de/2008/06/23/ravelry-a-knit-and-crochet-community/screamyGuy - Random Acts of Programminghttps://www.rfc1437.de/2008/06/23/screamyguy-random-acts-of-programming/Telekom hörte mutmaßliche Hacker abhttps://www.rfc1437.de/2008/06/21/telekom-hoerte-mutmassliche-hacker-ab/Aquamacs: Emacs for Mac OS Xhttps://www.rfc1437.de/2008/06/20/aquamacs-emacs-for-mac-os-x/Alte Google Mail Domain in Deutschland verbotenhttps://www.rfc1437.de/2008/06/19/alte-google-mail-domain-in-deutschland-verboten/klassische Ermittlung halt doch besser als Massentestshttps://www.rfc1437.de/2008/06/19/klassische-ermittlung-halt-doch-besser-als/The Mundaneum Museum Honors the First Concept of the World Wide Webhttps://www.rfc1437.de/2008/06/17/the-mundaneum-museum-honors-the-first-concept-of/Olympus LS-10 digitaler Recorderhttps://www.rfc1437.de/2008/06/16/olympus-ls-10-digitaler-recorder/Fan Programming Languagehttps://www.rfc1437.de/2008/06/13/fan-programming-language/PLT Scheme Bloghttps://www.rfc1437.de/2008/06/13/plt-scheme-blog/Squeak on the iPhone!https://www.rfc1437.de/2008/06/12/squeak-on-the-iphone/Alice.orghttps://www.rfc1437.de/2008/06/11/alice-org/AVOX Antares Vocal Toolkithttps://www.rfc1437.de/2008/06/11/avox-antares-vocal-toolkit/Lunatic Pythonhttps://www.rfc1437.de/2008/06/11/lunatic-python/90% of Enviro Skeptic Books Have Think Tank Rootshttps://www.rfc1437.de/2008/06/09/90-of-enviro-skeptic-books-have-think-tank-roots/A Spellchecker Used to Be a Major Feat of Software Engineeringhttps://www.rfc1437.de/2008/06/09/a-spellchecker-used-to-be-a-major-feat-of/Algorithmic Botany: Publicationshttps://www.rfc1437.de/2008/06/09/algorithmic-botany-publications/Cog Bloghttps://www.rfc1437.de/2008/06/09/cog-blog/Factor: a practical stack language:https://www.rfc1437.de/2008/06/09/factor-a-practical-stack-language/Fractured YEARFRAC and Discounted DISChttps://www.rfc1437.de/2008/06/09/fractured-yearfrac-and-discounted-disc/TileStack - Your Creative Playgroundhttps://www.rfc1437.de/2008/06/09/tilestack-your-creative-playground/"An Exotic Matter"https://www.rfc1437.de/2008/06/06/an-exotic-matter/Anne gegen den politischen Willenhttps://www.rfc1437.de/2008/06/06/anne-gegen-den-politischen-willen/Introducing Gmail Labshttps://www.rfc1437.de/2008/06/06/introducing-gmail-labs/Regierung will persönliche Bürgerdaten an die USA liefernhttps://www.rfc1437.de/2008/06/06/regierung-will-persoenliche-buergerdaten-an-die/Toy Scheme interpreter in Jhttps://www.rfc1437.de/2008/06/06/toy-scheme-interpreter-in-j/Zukunft - nichts als ein großer Spaß | tagesschau.dehttps://www.rfc1437.de/2008/06/06/zukunft-nichts-als-ein-grosser-spass-tagesschau-de/ruby-processinghttps://www.rfc1437.de/2008/06/05/ruby-processing/The Lew Languagehttps://www.rfc1437.de/2008/06/05/the-lew-language/PLT Scheme version 4.0 is Coming Soonhttps://www.rfc1437.de/2008/06/04/plt-scheme-version-4-0-is-coming-soon/Kalte Platte bei Kerzenscheinhttps://www.rfc1437.de/2008/06/03/kalte-platte-bei-kerzenschein/Dive Into Greasemonkeyhttps://www.rfc1437.de/2008/06/02/dive-into-greasemonkey/django-ae-utilshttps://www.rfc1437.de/2008/06/02/django-ae-utils/flickrfshttps://www.rfc1437.de/2008/06/02/flickrfs/Google will doch nur spielenhttps://www.rfc1437.de/2008/06/02/google-will-doch-nur-spielen/goosh.org - the unofficial google shell.https://www.rfc1437.de/2008/06/02/goosh-org-the-unofficial-google-shell/RetroShare: a secure combined file sharing-Chat-IM F2F servicehttps://www.rfc1437.de/2008/06/02/retroshare-a-secure-combined-file-sharing-chat-im/RWE will Kunden reinen Atomstrom-Tarif anbietenhttps://www.rfc1437.de/2008/06/02/rwe-will-kunden-reinen-atomstrom-tarif-anbieten/Arbeitgeber drohen mit Klage gegen Lohnnebenkostenhttps://www.rfc1437.de/2008/06/01/arbeitgeber-drohen-mit-klage-gegen-lohnnebenkosten/Conway's Game of Life in one line of APLhttps://www.rfc1437.de/2008/05/30/conway-s-game-of-life-in-one-line-of-apl/no-racism.net: Presseerklärung der Rechtshilfe zur Repressionswellehttps://www.rfc1437.de/2008/05/30/no-racism-net-presseerklaerung-der-rechtshilfe/Revision3 DOShttps://www.rfc1437.de/2008/05/30/revision3-dos/Best. Image. Ever.https://www.rfc1437.de/2008/05/26/best-image-ever/Cocoa Text Systemhttps://www.rfc1437.de/2008/05/26/cocoa-text-system/impromptuhttps://www.rfc1437.de/2008/05/26/impromptu/TP: Opfer auf dem Altar der Einheitlichkeithttps://www.rfc1437.de/2008/05/26/tp-opfer-auf-dem-altar-der-einheitlichkeit/Amazon byteflow: Hgshelvehttps://www.rfc1437.de/2008/05/19/amazon-byteflow-hgshelve/Yhc/Erlang/Proof of concepthttps://www.rfc1437.de/2008/05/19/yhc-erlang-proof-of-concept/Endgültiges Aus für Wahlcomputer in den Niederlanden - Golem.dehttps://www.rfc1437.de/2008/05/18/endgueltiges-aus-fuer-wahlcomputer-in-den/Radius Hornethttps://www.rfc1437.de/2008/05/18/radius-hornet/Sic Transit Gloria Laptopihttps://www.rfc1437.de/2008/05/17/sic-transit-gloria-laptopi/Consequences of the SSH/SSL weaknesshttps://www.rfc1437.de/2008/05/15/consequences-of-the-ssh-ssl-weakness/Debian OpenSSL Predictable PRNG Toyshttps://www.rfc1437.de/2008/05/15/debian-openssl-predictable-prng-toys/Fragwürdige Risikobewertung: Ist Gen-Futter gefährlich?https://www.rfc1437.de/2008/05/15/fragwuerdige-risikobewertung-ist-gen-futter/Getting Started with Processing.jshttps://www.rfc1437.de/2008/05/15/getting-started-with-processing-js/Google Doctypehttps://www.rfc1437.de/2008/05/15/google-doctype/Lilyhttps://www.rfc1437.de/2008/05/15/lily/Nudibranchshttps://www.rfc1437.de/2008/05/15/nudibranchs/processing.appjet.nethttps://www.rfc1437.de/2008/05/15/processing-appjet-net/Some Chrome For Pjshttps://www.rfc1437.de/2008/05/15/some-chrome-for-pjs/The Bla Pagehttps://www.rfc1437.de/2008/05/15/the-bla-page/Debian and OpenSSL: The Aftermathhttps://www.rfc1437.de/2008/05/14/debian-and-openssl-the-aftermath/Panoramafreiheit in Gefahrhttps://www.rfc1437.de/2008/05/14/panoramafreiheit-in-gefahr/Vendors Are Bad For Securityhttps://www.rfc1437.de/2008/05/14/vendors-are-bad-for-security/Wallraff deckt Missstände in Brotfabrik aufhttps://www.rfc1437.de/2008/05/14/wallraff-deckt-missstaende-in-brotfabrik-auf/Injektion gegen Lähmunghttps://www.rfc1437.de/2008/05/13/injektion-gegen-laehmung/Kameliahttps://www.rfc1437.de/2008/05/13/kamelia/pg8000 -- pure-Python PostgreSQL interface (w/ DBAPI 2.0 interface, no external dependencies)https://www.rfc1437.de/2008/05/13/pg8000-pure-python-postgresql-interface-w-dbapi-2/US-Offizier will Abschreckung im Cyberspacehttps://www.rfc1437.de/2008/05/13/us-offizier-will-abschreckung-im-cyberspace/Why your internet experience is slowhttps://www.rfc1437.de/2008/05/13/why-your-internet-experience-is-slow/Eine gewisse Schamlosigkeithttps://www.rfc1437.de/2008/05/09/eine-gewisse-schamlosigkeit/fseventerhttps://www.rfc1437.de/2008/05/09/fseventer/Münster steht kurz stillhttps://www.rfc1437.de/2008/05/09/muenster-steht-kurz-still/Taskpaperhttps://www.rfc1437.de/2008/05/09/taskpaper/Wurde Schrottbeton im Kernkraftwerk verbaut?https://www.rfc1437.de/2008/05/09/wurde-schrottbeton-im-kernkraftwerk-verbaut/hacksector.cc als Musterfall für § 202 c?https://www.rfc1437.de/2008/05/07/hacksector-cc-als-musterfall-fuer-202-c/Phisher gehen mit Vorladungen auf Walfanghttps://www.rfc1437.de/2008/05/07/phisher-gehen-mit-vorladungen-auf-walfang/SCM Integration Scriptshttps://www.rfc1437.de/2008/05/07/scm-integration-scripts/Telekom-Chef sieht Managerbezüge als angemessen anhttps://www.rfc1437.de/2008/05/07/telekom-chef-sieht-managerbezuege-als-angemessen/Sneaking Ruby Through Google App Engine (and Other Strictly Python Places)https://www.rfc1437.de/2008/05/06/sneaking-ruby-through-google-app-engine-and-other/vi in javascripthttps://www.rfc1437.de/2008/05/06/vi-in-javascript/Announcing Teh - the minimalist blog tool using Google App Enginehttps://www.rfc1437.de/2008/05/05/announcing-teh-the-minimalist-blog-tool-using/Fraghttps://www.rfc1437.de/2008/05/05/frag/Magmahttps://www.rfc1437.de/2008/05/05/magma/Ready Lisp: Common Lisp for Mac OS Xhttps://www.rfc1437.de/2008/05/05/ready-lisp-common-lisp-for-mac-os-x/DAZ Productions Hexagon 2.5https://www.rfc1437.de/2008/05/02/daz-productions-hexagon-2-5/GreaseKit - User Scripting for all WebKit applicationshttps://www.rfc1437.de/2008/05/02/greasekit-user-scripting-for-all-webkit/Mailplanehttps://www.rfc1437.de/2008/05/02/mailplane/Neue Version von VirtualBox läuft auch unter Mac OS X und Solaris (Update)https://www.rfc1437.de/2008/05/02/neue-version-von-virtualbox-laeuft-auch-unter-mac/TidBITS Entertainment: Thank You for Not Playing: Microsoft Expires Future Playback of DRM-Protected Musichttps://www.rfc1437.de/2008/05/02/tidbits-entertainment-thank-you-for-not-playing/Your personal data just got permanently cached at the US borderhttps://www.rfc1437.de/2008/05/02/your-personal-data-just-got-permanently-cached-at/How do I delete my Facebook accounthttps://www.rfc1437.de/2008/05/01/how-do-i-delete-my-facebook-account/USBOverdrivehttps://www.rfc1437.de/2008/04/28/usboverdrive/Limp: When You Need More Than Just a Lisphttps://www.rfc1437.de/2008/04/27/limp-when-you-need-more-than-just-a-lisp/Verlogenes Getue gegen Internetzensurhttps://www.rfc1437.de/2008/04/26/verlogenes-getue-gegen-internetzensur/Victorian All-in-One PChttps://www.rfc1437.de/2008/04/25/victorian-all-in-one-pc/Geplantes BKA-Gesetz Die Lidlisierung des Rechtshttps://www.rfc1437.de/2008/04/21/geplantes-bka-gesetz-die-lidlisierung-des-rechts/Programming Languages: Application and Interpretation by Shriram Krishnamurthihttps://www.rfc1437.de/2008/04/21/programming-languages-application-and/RFID System Mifare Classic geknackt?https://www.rfc1437.de/2008/04/21/rfid-system-mifare-classic-geknackt/BBC - Radio 4 - The Hitchhiker's Guide to the Galaxyhttps://www.rfc1437.de/2008/04/18/bbc-radio-4-the-hitchhiker-s-guide-to-the-galaxy/Milliways: Infocom's Unreleased Sequel to Hitchhiker's Guide to the Galaxy - Waxy.orghttps://www.rfc1437.de/2008/04/18/milliways-infocom-s-unreleased-sequel-to/Nikon D3 Reviewhttps://www.rfc1437.de/2008/04/18/nikon-d3-review/Stundenlöhne unter fünf Euro bruttohttps://www.rfc1437.de/2008/04/18/stundenloehne-unter-fuenf-euro-brutto/The Flying Meat Wiki: Acornhttps://www.rfc1437.de/2008/04/18/the-flying-meat-wiki-acorn/The Flying Meat Wiki: VoodooPadhttps://www.rfc1437.de/2008/04/18/the-flying-meat-wiki-voodoopad/AS3 Flash Physics Engine Box2DFlashAS3 2.0.0https://www.rfc1437.de/2008/04/17/as3-flash-physics-engine-box2dflashas3-2-0-0/Breaking News for sky afficionados: Apophis risk not increasedhttps://www.rfc1437.de/2008/04/17/breaking-news-for-sky-afficionados-apophis-risk/Infektionswerkzeug für SQL-Server und IIShttps://www.rfc1437.de/2008/04/17/infektionswerkzeug-fuer-sql-server-und-iis/Kirchliche Arbeitgeber wollen keinen Mindestlohnhttps://www.rfc1437.de/2008/04/17/kirchliche-arbeitgeber-wollen-keinen-mindestlohn/Lighthousehttps://www.rfc1437.de/2008/04/17/lighthouse/NASA Extends Saturn Mission for Another 2 Yearshttps://www.rfc1437.de/2008/04/17/nasa-extends-saturn-mission-for-another-2-years/Port Map and TCMPortMapperhttps://www.rfc1437.de/2008/04/17/port-map-and-tcmportmapper/Sleep - Java Scripting Languagehttps://www.rfc1437.de/2008/04/17/sleep-java-scripting-language/The iPhone SDK and free software: not a matchhttps://www.rfc1437.de/2008/04/17/the-iphone-sdk-and-free-software-not-a-match/Amazon Web Services Blog: Storage Space, The Final Frontierhttps://www.rfc1437.de/2008/04/14/amazon-web-services-blog-storage-space-the-final/CHDK in Briefhttps://www.rfc1437.de/2008/04/14/chdk-in-brief/Gericht: Anzeige von Thumbnails bei Suchmaschinen rechtswidrighttps://www.rfc1437.de/2008/04/14/gericht-anzeige-von-thumbnails-bei-suchmaschinen/Latest Advance in Artificial Intelligence: Computer Wins a Game Against a Go Masterhttps://www.rfc1437.de/2008/04/14/latest-advance-in-artificial-intelligence/SeasideXULhttps://www.rfc1437.de/2008/04/14/seasidexul/ARD und ZDF: Zurück ins Mittelalter?https://www.rfc1437.de/2008/04/11/ard-und-zdf-zurueck-ins-mittelalter/Digging into Factor’s compilerhttps://www.rfc1437.de/2008/04/11/digging-into-factor-s-compiler/Filesharing wird gefährlicher - oder auch nichthttps://www.rfc1437.de/2008/04/11/filesharing-wird-gefaehrlicher-oder-auch-nicht/GitHubhttps://www.rfc1437.de/2008/04/11/github/Google App Engine for developershttps://www.rfc1437.de/2008/04/11/google-app-engine-for-developers/Network Solutions: Not Just Thieves and Hijackers, Now Using Tactics That Can Get Your Site Banned From Googlehttps://www.rfc1437.de/2008/04/11/network-solutions-not-just-thieves-and-hijackers/Strange TCP-networking problems with Mac OS X 10.4 and Solaris 10https://www.rfc1437.de/2008/04/11/strange-tcp-networking-problems-with-mac-os-x-10/Unicode 5.1 enthält ß als Großbuchstabenhttps://www.rfc1437.de/2008/04/11/unicode-5-1-enthaelt-ss-als-grossbuchstaben/Google App Enginehttps://www.rfc1437.de/2008/04/09/google-app-engine/The world in virtual reality, VR city maps. 360 Cities. Prague, Moscow, Vancouver, Venice, London, Tokyo, Hong Kong, Vienna, Taipei, Seoul, L.A., Egypt, and many more....https://www.rfc1437.de/2008/04/04/the-world-in-virtual-reality-vr-city-maps-360/Der neue Geschäftsplan von SCO stösst schon im Vorfeld auf Ablehnunghttps://www.rfc1437.de/2008/04/03/der-neue-geschaeftsplan-von-sco-stoesst-schon-im/Magentahttps://www.rfc1437.de/2008/04/03/magenta/Pydevhttps://www.rfc1437.de/2008/04/03/pydev/Pydev Extensionshttps://www.rfc1437.de/2008/04/03/pydev-extensions/ral 4010 bf1773 - Google Searchhttps://www.rfc1437.de/2008/04/03/ral-4010-bf1773-google-search/ral 4010 C03F7D - Google Searchhttps://www.rfc1437.de/2008/04/03/ral-4010-c03f7d-google-search/Telekom Farbverwendunghttps://www.rfc1437.de/2008/04/03/telekom-farbverwendung/The Diaries of John Quincy Adams: A Digital Collectionhttps://www.rfc1437.de/2008/04/03/the-diaries-of-john-quincy-adams-a-digital/Thompson Rivers University Owlcamhttps://www.rfc1437.de/2008/04/03/thompson-rivers-university-owlcam/Towers of Hanoihttps://www.rfc1437.de/2008/04/03/towers-of-hanoi/Interview: "Die Bankenaufsicht hat versagt und ist überflüssig"https://www.rfc1437.de/2008/04/02/interview-die-bankenaufsicht-hat-versagt-und-ist/iTunes jetzt mit TV-Inhalten auch in Deutschlandhttps://www.rfc1437.de/2008/04/02/itunes-jetzt-mit-tv-inhalten-auch-in-deutschland/Kassenpatienten müssen länger auf Facharzttermine wartenhttps://www.rfc1437.de/2008/04/01/kassenpatienten-muessen-laenger-auf/Norway seeks to reverse Open XML vote at ISOhttps://www.rfc1437.de/2008/04/01/norway-seeks-to-reverse-open-xml-vote-at-iso/OOXML: Warten auf die ISO-Entscheidunghttps://www.rfc1437.de/2008/04/01/ooxml-warten-auf-die-iso-entscheidung/Python processinghttps://www.rfc1437.de/2008/04/01/python-processing/Türkei: Präsident und Premier müssen vor Gerichthttps://www.rfc1437.de/2008/04/01/tuerkei-praesident-und-premier-muessen-vor-gericht/CCC publiziert Schäubles Fingerabdruckhttps://www.rfc1437.de/2008/03/31/ccc-publiziert-schaeubles-fingerabdruck/cusphttps://www.rfc1437.de/2008/03/28/cusp/DIN sagt "Ja" zur ISO-Standardisierung von OOXMLhttps://www.rfc1437.de/2008/03/28/din-sagt-ja-zur-iso-standardisierung-von-ooxml/LispWithCusphttps://www.rfc1437.de/2008/03/28/lispwithcusp/TDD Proven Effective! Or is it?https://www.rfc1437.de/2008/03/28/tdd-proven-effective-or-is-it/Usability problems with .Mac synchttps://www.rfc1437.de/2008/03/28/usability-problems-with-mac-sync/SAP ist Müllhttps://www.rfc1437.de/2008/03/27/sap-ist-muell/Transrapid-Flop: Stoiber verwundert - Maget hämischhttps://www.rfc1437.de/2008/03/27/transrapid-flop-stoiber-verwundert-maget-haemisch/Spirit darf weiter den Mars erkundenhttps://www.rfc1437.de/2008/03/26/spirit-darf-weiter-den-mars-erkunden/Mars-Roboter Spirit wird stillgelegt?https://www.rfc1437.de/2008/03/25/mars-roboter-spirit-wird-stillgelegt/South Park Studioshttps://www.rfc1437.de/2008/03/25/south-park-studios/MCL 5.2 has been released as open sourcehttps://www.rfc1437.de/2008/03/22/mcl-5-2-has-been-released-as-open-source/After Security Update today: "Bus ...https://www.rfc1437.de/2008/03/21/after-security-update-today-bus/Banken und das Webhttps://www.rfc1437.de/2008/03/21/banken-und-das-web/iTimeMachinehttps://www.rfc1437.de/2008/03/21/itimemachine/fscklog: Firmware 7.3.1 für 802.11n-AirPort Stationen: Time Machine-Backup mit AirPort Extreme [Update]https://www.rfc1437.de/2008/03/20/fscklog-firmware-7-3-1-fuer-802-11n-airport/Rätsel um Saint-Exupéry gelöst?: „Ich bedauere es zutiefst, den verehrten Autor getötet zu haben“https://www.rfc1437.de/2008/03/18/raetsel-um-saint-exup-ry-geloest-ich-bedauere-es/Panda3d full featured open source python 3d enginehttps://www.rfc1437.de/2008/03/17/panda3d-full-featured-open-source-python-3d-engine/This is The End My Friend: Negroponte Says XP on XO in 60 Dayshttps://www.rfc1437.de/2008/03/17/this-is-the-end-my-friend-negroponte-says-xp-on/Ur-Scheme: A GPL self-hosting compiler from a subset of R5RS Scheme to fast Linux x86 asmhttps://www.rfc1437.de/2008/03/17/ur-scheme-a-gpl-self-hosting-compiler-from-a/Building a Codeless Language Module with BBEdit 8.5 and (Ir-)Regular Expressionshttps://www.rfc1437.de/2008/03/15/building-a-codeless-language-module-with-bbedit-8/Jill Bolte Taylor: My stroke of insight (video)https://www.rfc1437.de/2008/03/15/jill-bolte-taylor-my-stroke-of-insight-video/Hacking implanted defibrillators: shockingly easyhttps://www.rfc1437.de/2008/03/13/hacking-implanted-defibrillators-shockingly-easy/Wie Hessens Landeschef weiterregieren kann: Für immer Kochhttps://www.rfc1437.de/2008/03/13/wie-hessens-landeschef-weiterregieren-kann-fuer/MidiKeyshttps://www.rfc1437.de/2008/03/09/midikeys/NodeBox | Superfoliahttps://www.rfc1437.de/2008/03/09/nodebox-superfolia/Why is 37signals so arrogant?https://www.rfc1437.de/2008/03/09/why-is-37signals-so-arrogant/Fluid - Free Site Specific Browser for Mac OS X Leopardhttps://www.rfc1437.de/2008/03/08/fluid-free-site-specific-browser-for-mac-os-x/Prismhttps://www.rfc1437.de/2008/03/08/prism/Grenzen des Wissens Wir gegen die Gierhttps://www.rfc1437.de/2008/03/07/grenzen-des-wissens-wir-gegen-die-gier/iPhone Developer Program Detailshttps://www.rfc1437.de/2008/03/07/iphone-developer-program-details/Seaside development with GNU Smalltalkhttps://www.rfc1437.de/2008/03/07/seaside-development-with-gnu-smalltalk/The Secret Diary of Steve Jobs: Happy now, bitches?https://www.rfc1437.de/2008/03/07/the-secret-diary-of-steve-jobs-happy-now-bitches/Materialized Views in PostgreSQLhttps://www.rfc1437.de/2008/03/05/materialized-views-in-postgresql/Das RIPE analysiert das Youtube-Hijackinghttps://www.rfc1437.de/2008/03/03/das-ripe-analysiert-das-youtube-hijacking/Programming Nuhttps://www.rfc1437.de/2008/03/03/programming-nu/BKA Chef voll abgedrehthttps://www.rfc1437.de/2008/03/02/bka-chef-voll-abgedreht/PyGUIhttps://www.rfc1437.de/2008/03/02/pygui/vimperatorhttps://www.rfc1437.de/2008/03/02/vimperator/PyInjector - embed Python interpreter and object browser in Cocoa appshttps://www.rfc1437.de/2008/03/01/pyinjector-embed-python-interpreter-and-object/Abramowitz and Stegun: Handbook of Mathematical Functionshttps://www.rfc1437.de/2008/02/29/abramowitz-and-stegun-handbook-of-mathematical/Changeshttps://www.rfc1437.de/2008/02/29/changes/Flying Meat: Acornhttps://www.rfc1437.de/2008/02/29/flying-meat-acorn/iMaginatorhttps://www.rfc1437.de/2008/02/29/imaginator/Special report: Fixing short iPhone battery lifehttps://www.rfc1437.de/2008/02/29/special-report-fixing-short-iphone-battery-life/The Truth About Autism: Scientists Reconsider What They Think They Knowhttps://www.rfc1437.de/2008/02/29/the-truth-about-autism-scientists-reconsider-what/vi & TextMate together at lasthttps://www.rfc1437.de/2008/02/29/vi-textmate-together-at-last/ANT (ant is not TeX)https://www.rfc1437.de/2008/02/28/ant-ant-is-not-tex/Karlsruhe lässt kaum Raum für heimliche Online-Durchsuchungenhttps://www.rfc1437.de/2008/02/27/karlsruhe-laesst-kaum-raum-fuer-heimliche-online/abyssoft teleporthttps://www.rfc1437.de/2008/02/26/abyssoft-teleport/FSClass 3.0https://www.rfc1437.de/2008/02/26/fsclass-3-0/Learn F-Script in 20 Minutes...and Have Fun Playing with Core Imagehttps://www.rfc1437.de/2008/02/26/learn-f-script-in-20-minutes-and-have-fun-playing/LEGO Universe: ''LEGO Star Wars Multiplied By A Million''https://www.rfc1437.de/2008/02/26/lego-universe-lego-star-wars-multiplied-by-a/Mathomatichttps://www.rfc1437.de/2008/02/26/mathomatic/Murphy''s Law Strikes Again: AS7007https://www.rfc1437.de/2008/02/26/murphy-s-law-strikes-again-as7007/Rope, a python refactoring library ...https://www.rfc1437.de/2008/02/26/rope-a-python-refactoring-library/Steuer-Razzien: Bisher fast hundert Geständnissehttps://www.rfc1437.de/2008/02/26/steuer-razzien-bisher-fast-hundert-gestaendnisse/Django snippets: MintCachehttps://www.rfc1437.de/2008/02/25/django-snippets-mintcache/Obsolete Skills Wiki - The more you know...https://www.rfc1437.de/2008/02/25/obsolete-skills-wiki-the-more-you-know/Cryptanalysis of A5/1https://www.rfc1437.de/2008/02/22/cryptanalysis-of-a5-1/Erlwarehttps://www.rfc1437.de/2008/02/22/erlware/memcachedbhttps://www.rfc1437.de/2008/02/22/memcachedb/New Research Result: Cold Boot Attacks on Disk Encryptionhttps://www.rfc1437.de/2008/02/22/new-research-result-cold-boot-attacks-on-disk/AquaCurryhttps://www.rfc1437.de/2008/02/19/aquacurry/djapianhttps://www.rfc1437.de/2008/02/19/djapian/Harsche Kritik aus Liechtenstein wegen Steuer-Ermittlungenhttps://www.rfc1437.de/2008/02/19/harsche-kritik-aus-liechtenstein-wegen-steuer/Mysteries of computer from 65BC are solvedhttps://www.rfc1437.de/2008/02/19/mysteries-of-computer-from-65bc-are-solved/OS 2008 Hacker Editionhttps://www.rfc1437.de/2008/02/19/os-2008-hacker-edition/Rumänische Gewerkschaft rügt Nokias "neue Form der Sklaverei"https://www.rfc1437.de/2008/02/19/rumaenische-gewerkschaft-ruegt-nokias-neue-form/Thousand Parsechttps://www.rfc1437.de/2008/02/19/thousand-parsec/chumbyhttps://www.rfc1437.de/2008/02/18/chumby/Command line Haskell and error handling exampleshttps://www.rfc1437.de/2008/02/18/command-line-haskell-and-error-handling-examples/Cooperative Linuxhttps://www.rfc1437.de/2008/02/18/cooperative-linux/Kommentar: Stasi-Äußerung für Die Linke ein Super-GAUhttps://www.rfc1437.de/2008/02/18/kommentar-stasi-aeusserung-fuer-die-linke-ein/Pisa-Verlierer sind Opfer ihres Medienkonsumshttps://www.rfc1437.de/2008/02/18/pisa-verlierer-sind-opfer-ihres-medienkonsums/Steueraffäre: Mehr Fahnder und härtere Strafen geforderthttps://www.rfc1437.de/2008/02/18/steueraffaere-mehr-fahnder-und-haertere-strafen/WiebeTech Micro Storage Solutions - HotPlug - Move a computer to battery power and transport it without ever shutting it down.https://www.rfc1437.de/2008/02/18/wiebetech-micro-storage-solutions-hotplug-move-a/Become a Mac OS X Services Ninjahttps://www.rfc1437.de/2008/02/15/become-a-mac-os-x-services-ninja/SCO vs. Linux: Klagen bis zum Ende, doch ohne Darl McBridehttps://www.rfc1437.de/2008/02/15/sco-vs-linux-klagen-bis-zum-ende-doch-ohne-darl/Zumwinkel tritt als Postchef zurückhttps://www.rfc1437.de/2008/02/15/zumwinkel-tritt-als-postchef-zurueck/Atomic Commit In SQLitehttps://www.rfc1437.de/2008/02/14/atomic-commit-in-sqlite/Astana nicht zur Tour 2008https://www.rfc1437.de/2008/02/13/astana-nicht-zur-tour-2008/Bundesregierung hält "Big-Brother-Szenarien" bei RFID für weit hergeholthttps://www.rfc1437.de/2008/02/13/bundesregierung-haelt-big-brother-szenarien-bei/LG Hamburg will umfassendere Forenhaftung bei Verwendung von Pseudonymenhttps://www.rfc1437.de/2008/02/13/lg-hamburg-will-umfassendere-forenhaftung-bei/Zypries droht Haft oder Ordnungsgeld beim Speichern von IP-Adressenhttps://www.rfc1437.de/2008/02/13/zypries-droht-haft-oder-ordnungsgeld-beim/So you’re going to write an iPhone app…https://www.rfc1437.de/2008/02/12/so-you-re-going-to-write-an-iphone-app/Caecilianhttps://www.rfc1437.de/2008/02/11/caecilian/In-Depth TimeVault Review: Backing up in Ubuntu is Finally Made Simple!!https://www.rfc1437.de/2008/02/11/in-depth-timevault-review-backing-up-in-ubuntu-is/Polaroid verabschiedet sich vom Sofortbildfilmhttps://www.rfc1437.de/2008/02/11/polaroid-verabschiedet-sich-vom-sofortbildfilm/The world''s rubbish dump: a garbage tip that stretches from Hawaii to Japanhttps://www.rfc1437.de/2008/02/11/the-world-s-rubbish-dump-a-garbage-tip-that/CamlXhttps://www.rfc1437.de/2008/02/07/camlx/FastCGI Programmer''s Guide - Chapter 2, Developing FastCGI Applications in Chttps://www.rfc1437.de/2008/02/07/fastcgi-programmer-s-guide-chapter-2-developing/Tenerife Skunkworks: Parsing text and binary files with Erlanghttps://www.rfc1437.de/2008/02/06/tenerife-skunkworks-parsing-text-and-binary-files/Developing an iPhoto export pluginhttps://www.rfc1437.de/2008/02/01/developing-an-iphoto-export-plugin/Microsoft bereitet Übernahme von Yahoo vorhttps://www.rfc1437.de/2008/02/01/microsoft-bereitet-uebernahme-von-yahoo-vor/n8gray.org: ScriptExporthttps://www.rfc1437.de/2008/02/01/n8gray-org-scriptexport/Programming Nuhttps://www.rfc1437.de/2008/02/01/programming-nu-2/real programmershttps://www.rfc1437.de/2008/02/01/real-programmers/Upload with SCPhttps://www.rfc1437.de/2008/02/01/upload-with-scp/A9.com patentiert HTTP-Redirectshttps://www.rfc1437.de/2008/01/31/a9-com-patentiert-http-redirects/Archttps://www.rfc1437.de/2008/01/31/arc/Bei Shell sprudeln die Milliardenhttps://www.rfc1437.de/2008/01/31/bei-shell-sprudeln-die-milliarden/Jython 2.5https://www.rfc1437.de/2008/01/31/jython-2-5/Paten auf mobiles Unterhaltungsgerät mit Telefonhttps://www.rfc1437.de/2008/01/31/paten-auf-mobiles-unterhaltungsgeraet-mit-telefon/Post-Konkurrenten klagen gegen den Mindestlohnhttps://www.rfc1437.de/2008/01/31/post-konkurrenten-klagen-gegen-den-mindestlohn/Sigma announces DP1 to be available spring 2008https://www.rfc1437.de/2008/01/31/sigma-announces-dp1-to-be-available-spring-2008/Allegorithmic | MaPZonehttps://www.rfc1437.de/2008/01/28/allegorithmic-mapzone/Nokia: Hinweise auf Verstoß gegen Auflagenhttps://www.rfc1437.de/2008/01/28/nokia-hinweise-auf-verstoss-gegen-auflagen/Österreichische Auskunfteien müssen Bonitätsdaten auf Wunsch löschenhttps://www.rfc1437.de/2008/01/28/oesterreichische-auskunfteien-muessen/tunneling over ICMPhttps://www.rfc1437.de/2008/01/28/tunneling-over-icmp/Wahlbeobachter in Hessenhttps://www.rfc1437.de/2008/01/28/wahlbeobachter-in-hessen/#10919 (incorrect pluralization) - Rails Trachttps://www.rfc1437.de/2008/01/25/10919-incorrect-pluralization-rails-trac/OSXCrypt.org - Truecrypt for MAChttps://www.rfc1437.de/2008/01/24/osxcrypt-org-truecrypt-for-mac/Finanzhof: Gekürzte Pendlerpauschale verfassungswidrighttps://www.rfc1437.de/2008/01/23/finanzhof-gekuerzte-pendlerpauschale/Ich mag das Internet. Und meine Gene.https://www.rfc1437.de/2008/01/23/ich-mag-das-internet-und-meine-gene/Immer noch keine Klingeltöne in Deutschlandhttps://www.rfc1437.de/2008/01/23/immer-noch-keine-klingeltoene-in-deutschland/OLG Frankfurt: Provider müssen Inhalte nicht sperrenhttps://www.rfc1437.de/2008/01/23/olg-frankfurt-provider-muessen-inhalte-nicht/an offline Wikipedia reader for the iPhonehttps://www.rfc1437.de/2008/01/22/an-offline-wikipedia-reader-for-the-iphone/Durchbruch für CC-Musikhttps://www.rfc1437.de/2008/01/22/durchbruch-fuer-cc-musik/Evolution Major Vanishes From Approved Federal Listhttps://www.rfc1437.de/2008/01/22/evolution-major-vanishes-from-approved-federal/Japan wants to fly paper plane from International Space Station to earthhttps://www.rfc1437.de/2008/01/22/japan-wants-to-fly-paper-plane-from-international/Strasheelahttps://www.rfc1437.de/2008/01/22/strasheela/Unshaking and refocusing your photoshttps://www.rfc1437.de/2008/01/22/unshaking-and-refocusing-your-photos/60.000 Dollar Strafe für DNS-Abrufhttps://www.rfc1437.de/2008/01/21/60-000-dollar-strafe-fuer-dns-abruf/"Amerikas beste Hausfrau" düpiert deutsche Digital-Lifestyle-Konferenzhttps://www.rfc1437.de/2008/01/21/amerikas-beste-hausfrau-duepiert-deutsche-digital/CDU Hessen soll interne Schulamtsdaten für Wahlwerbung genutzt habenhttps://www.rfc1437.de/2008/01/21/cdu-hessen-soll-interne-schulamtsdaten-fuer/Der Carlos-Hoaxhttps://www.rfc1437.de/2008/01/21/der-carlos-hoax/Drei Verfassungsrichter rangeln um Zuständigkeit für Vorratsdatenspeicherunghttps://www.rfc1437.de/2008/01/21/drei-verfassungsrichter-rangeln-um-zustaendigkeit/Elephants Evolve Smaller Tusks Due to Poachinghttps://www.rfc1437.de/2008/01/21/elephants-evolve-smaller-tusks-due-to-poaching/Kapitalspritze für WestLBhttps://www.rfc1437.de/2008/01/21/kapitalspritze-fuer-westlb/Mac OS X und DTracehttps://www.rfc1437.de/2008/01/21/mac-os-x-und-dtrace/SPD debattiert über Maßnahmen gegen Clementhttps://www.rfc1437.de/2008/01/21/spd-debattiert-ueber-massnahmen-gegen-clement/The Tintypeshttps://www.rfc1437.de/2008/01/21/the-tintypes/The Unburdened Mindhttps://www.rfc1437.de/2008/01/21/the-unburdened-mind/Schäuble greift Verfassungsrichter Papier scharf anhttps://www.rfc1437.de/2008/01/20/schaeuble-greift-verfassungsrichter-papier-scharf/Bundestag setzt sich für regionale Top-Level-Domains einhttps://www.rfc1437.de/2008/01/18/bundestag-setzt-sich-fuer-regionale-top-level/Innenministerium sperrt Herausgabe der Buback-Aktenhttps://www.rfc1437.de/2008/01/18/innenministerium-sperrt-herausgabe-der-buback/SPD: Entscheidung für Online-Durchsuchung ist gefallenhttps://www.rfc1437.de/2008/01/18/spd-entscheidung-fuer-online-durchsuchung-ist/EU-Abgeordneter: Provider sollen bei Urheberrechtsverstößen die Leitung kappenhttps://www.rfc1437.de/2008/01/17/eu-abgeordneter-provider-sollen-bei/FireGPG - use GPG easily in Firefox !https://www.rfc1437.de/2008/01/17/firegpg-use-gpg-easily-in-firefox/Macworld: Carl Zeiss stellt eine Videobrille für iPods vorhttps://www.rfc1437.de/2008/01/17/macworld-carl-zeiss-stellt-eine-videobrille-fuer/Navy Wins Exemption From Bush to Continue Sonar Exercises in Calif.https://www.rfc1437.de/2008/01/17/navy-wins-exemption-from-bush-to-continue-sonar/Schäubles neue Pläne empören die Oppositionhttps://www.rfc1437.de/2008/01/17/schaeubles-neue-plaene-empoeren-die-opposition/DreamHost Blog"Um, Whoops."https://www.rfc1437.de/2008/01/16/dreamhost-blog-um-whoops/Bahn kündigt nach Einigung mit GDL Stellenabbau anhttps://www.rfc1437.de/2008/01/15/bahn-kuendigt-nach-einigung-mit-gdl-stellenabbau/USA wollen mit Verbündeten internationale biometrische Datenbank einrichtenhttps://www.rfc1437.de/2008/01/15/usa-wollen-mit-verbuendeten-internationale/Airfoil 3 Spreads Music Streaming Beyond AirPort Expresshttps://www.rfc1437.de/2008/01/11/airfoil-3-spreads-music-streaming-beyond-airport/Dryadhttps://www.rfc1437.de/2008/01/11/dryad/Struck lehnt Entschuldigung bei Koch abhttps://www.rfc1437.de/2008/01/11/struck-lehnt-entschuldigung-bei-koch-ab/The Definitive Four Fours Answer Key (by David A. Wheeler)https://www.rfc1437.de/2008/01/11/the-definitive-four-fours-answer-key-by-david-a/Ver.di kündigt Funktionär, die NPD ist erfreuthttps://www.rfc1437.de/2008/01/11/ver-di-kuendigt-funktionaer-die-npd-ist-erfreut/Why Crunch Mode Doesn't Workhttps://www.rfc1437.de/2008/01/11/why-crunch-mode-doesn-t-work/Wilber loves Applehttps://www.rfc1437.de/2008/01/09/wilber-loves-apple/Rüffel für "Existenz bedrohende" Warndatei der Versicherungswirtschafthttps://www.rfc1437.de/2008/01/08/rueffel-fuer-existenz-bedrohende-warndatei-der/Valued Lessons: Monads in Python (with nice syntax!)https://www.rfc1437.de/2008/01/08/valued-lessons-monads-in-python-with-nice-syntax/At a Loss for Wordshttps://www.rfc1437.de/2008/01/07/at-a-loss-for-words/Backscatterer.org, eine weitere asoziale und technisch dumme Sperrlistehttps://www.rfc1437.de/2008/01/07/backscatterer-org-eine-weitere-asoziale-und/base2https://www.rfc1437.de/2008/01/07/base2/Dean Edwards: IE7.js version 2.0 (beta)https://www.rfc1437.de/2008/01/07/dean-edwards-ie7-js-version-2-0-beta/Kinderpornografie: Firmen sollen Festplatten auswertenhttps://www.rfc1437.de/2008/01/07/kinderpornografie-firmen-sollen-festplatten/Marskollision wird wahrscheinlicherhttps://www.rfc1437.de/2008/01/07/marskollision-wird-wahrscheinlicher/Scratch Home imagine, program, sharehttps://www.rfc1437.de/2008/01/06/scratch-home-imagine-program-share/Adobe-Produkte kommunizieren über dubiose Web-Adressehttps://www.rfc1437.de/2008/01/04/adobe-produkte-kommunizieren-ueber-dubiose-web/BGH: Razzien gegen Globalisierungskritiker waren rechtswidrighttps://www.rfc1437.de/2008/01/04/bgh-razzien-gegen-globalisierungskritiker-waren/Django on Jython: Minding the Gaphttps://www.rfc1437.de/2008/01/04/django-on-jython-minding-the-gap/HD Monitor Causes DRM Issues with Netflixhttps://www.rfc1437.de/2008/01/04/hd-monitor-causes-drm-issues-with-netflix/iCab ist wieder dahttps://www.rfc1437.de/2008/01/04/icab-ist-wieder-da/Baut Australien eine Great Firewall?https://www.rfc1437.de/2008/01/03/baut-australien-eine-great-firewall/GrabFS: The Screenshot File Systemhttps://www.rfc1437.de/2008/01/03/grabfs-the-screenshot-file-system/OLPC-Technikchefin macht sich selbstständighttps://www.rfc1437.de/2008/01/03/olpc-technikchefin-macht-sich-selbststaendig/Gmail Filesystemhttps://www.rfc1437.de/2008/01/02/gmail-filesystem/Psychology Today: Dreams: Night Schoolhttps://www.rfc1437.de/2008/01/02/psychology-today-dreams-night-school/Varnishhttps://www.rfc1437.de/2007/12/27/varnish/Australia to enforce a "rating system" on web, track usershttps://www.rfc1437.de/2007/12/25/australia-to-enforce-a-rating-system-on-web-track/David Byrne's Survival Strategies for Emerging Artists — and Megastarshttps://www.rfc1437.de/2007/12/21/david-byrne-s-survival-strategies-for-emerging/More on widgets: When one e-mail is enough to break a system.https://www.rfc1437.de/2007/12/21/more-on-widgets-when-one-e-mail-is-enough-to/Samba Team Receives Microsoft Protocol Docshttps://www.rfc1437.de/2007/12/21/samba-team-receives-microsoft-protocol-docs/Surfen für 61,98 Euro pro Stundehttps://www.rfc1437.de/2007/12/21/surfen-fuer-61-98-euro-pro-stunde/A young blonde Icelandic woman's recent experience visiting the UShttps://www.rfc1437.de/2007/12/20/a-young-blonde-icelandic-woman-s-recent/Harvey Wasserman on New Ohio Voting Report: "The 2004 Election Was Stolen… Finally We Have Irrefutable Confirmation"https://www.rfc1437.de/2007/12/20/harvey-wasserman-on-new-ohio-voting-report-the/Creative Commons will EU-Schutzrecht für Datenbanken umgehenhttps://www.rfc1437.de/2007/12/19/creative-commons-will-eu-schutzrecht-fuer/Die Samariter-Definition der "Süddeutschen Zeitung" [Indiskretion Ehrensache]https://www.rfc1437.de/2007/12/19/die-samariter-definition-der-sueddeutschen/Neue Schlappe für Abmahnanwalt der Musikindustriehttps://www.rfc1437.de/2007/12/19/neue-schlappe-fuer-abmahnanwalt-der-musikindustrie/Colds - Alcohol - Medicine and Healthhttps://www.rfc1437.de/2007/12/18/colds-alcohol-medicine-and-health/Ping Tunnel - Send TCP traffic over ICMPhttps://www.rfc1437.de/2007/12/17/ping-tunnel-send-tcp-traffic-over-icmp/Run Python Scripthttps://www.rfc1437.de/2007/12/17/run-python-script/SPD-Innenpolitiker kündigt Zustimmung zu Online-Durchsuchungen anhttps://www.rfc1437.de/2007/12/17/spd-innenpolitiker-kuendigt-zustimmung-zu-online/TOR-Server durch Vorratsdatenspeicherung von Schließung bedrohthttps://www.rfc1437.de/2007/12/17/tor-server-durch-vorratsdatenspeicherung-von/129a: Lesereise hinter Gitterhttps://www.rfc1437.de/2007/12/14/129a-lesereise-hinter-gitter/Amazon Web Services: SimpleDBhttps://www.rfc1437.de/2007/12/14/amazon-web-services-simpledb/heise online - Erweiterte polizeiliche Abhörbefugnisse geforderthttps://www.rfc1437.de/2007/12/14/heise-online-erweiterte-polizeiliche/Shoe-Fitting Fluoroscopehttps://www.rfc1437.de/2007/12/14/shoe-fitting-fluoroscope/Doris Lessing - Nobel Lecturehttps://www.rfc1437.de/2007/12/11/doris-lessing-nobel-lecture/Experten bestätigen Zusammenhang zwischen AKW und Krebshttps://www.rfc1437.de/2007/12/11/experten-bestaetigen-zusammenhang-zwischen-akw/Nokia: Ogg-Formate im HTML-Standard? Nicht mit uns!https://www.rfc1437.de/2007/12/11/nokia-ogg-formate-im-html-standard-nicht-mit-uns/Skype on OS2007HE umm... working...https://www.rfc1437.de/2007/12/11/skype-on-os2007he-umm-working/The Glass Books of the Dream Eatershttps://www.rfc1437.de/2007/12/11/the-glass-books-of-the-dream-eaters/Foren-Haftung: LG Hamburg besteht auf Vorab-Kontrollehttps://www.rfc1437.de/2007/12/07/foren-haftung-lg-hamburg-besteht-auf-vorab/Kriminalisierung von Parallelimporten weiter umstrittenhttps://www.rfc1437.de/2007/12/07/kriminalisierung-von-parallelimporten-weiter/New version of Ready Lisp for Mac OS X availablehttps://www.rfc1437.de/2007/12/07/new-version-of-ready-lisp-for-mac-os-x-available/Objects Have Failedhttps://www.rfc1437.de/2007/12/07/objects-have-failed/Sie haben das Recht zu schweigenhttps://www.rfc1437.de/2007/12/07/sie-haben-das-recht-zu-schweigen/Ajatus manifestohttps://www.rfc1437.de/2007/12/06/ajatus-manifesto/Microsoft und OLPChttps://www.rfc1437.de/2007/12/06/microsoft-und-olpc/Mindestlohn-Streit: PIN entlässt fast 900 Mitarbeiterhttps://www.rfc1437.de/2007/12/06/mindestlohn-streit-pin-entlaesst-fast-900/Moonlight/Silverlight Unfughttps://www.rfc1437.de/2007/12/06/moonlight-silverlight-unfug/Programming CouchDB with Javascripthttps://www.rfc1437.de/2007/12/06/programming-couchdb-with-javascript/NodeBoxhttps://www.rfc1437.de/2007/12/05/nodebox/Solar + Tiny PC + Linux = Sweeeethttps://www.rfc1437.de/2007/12/05/solar-tiny-pc-linux-sweeeet/Standpauke vs. Requiemhttps://www.rfc1437.de/2007/12/05/standpauke-vs-requiem/Clojurehttps://www.rfc1437.de/2007/12/04/clojure/Getting Started on Natural Language Processing with Pythonhttps://www.rfc1437.de/2007/12/04/getting-started-on-natural-language-processing/JLinehttps://www.rfc1437.de/2007/12/04/jline/Saurier entpuppt sich als Muskelpakethttps://www.rfc1437.de/2007/12/04/saurier-entpuppt-sich-als-muskelpaket/VoIP-Signatur Patent für Fraunhoferhttps://www.rfc1437.de/2007/12/04/voip-signatur-patent-fuer-fraunhofer/iPhone in Deutschland: Warten aufs Gerichthttps://www.rfc1437.de/2007/12/03/iphone-in-deutschland-warten-aufs-gericht/BGH erklärt Kontrolle von Briefen in Hamburg für rechtswidrighttps://www.rfc1437.de/2007/11/30/bgh-erklaert-kontrolle-von-briefen-in-hamburg/Chromatron, by Silver Spaceship Softwarehttps://www.rfc1437.de/2007/11/30/chromatron-by-silver-spaceship-software/Cory Docterow über Facebookhttps://www.rfc1437.de/2007/11/30/cory-docterow-ueber-facebook/IRSeeking trouble...https://www.rfc1437.de/2007/11/30/irseeking-trouble/Warnung vor "unerträglicher Verschärfung" der Vorratsdatenspeicherunghttps://www.rfc1437.de/2007/11/29/warnung-vor-unertraeglicher-verschaerfung-der/BGH: "Militante Gruppe" keine terroristische Vereinigunghttps://www.rfc1437.de/2007/11/28/bgh-militante-gruppe-keine-terroristische/LKA-Direktor Hüttemann zurückgetretenhttps://www.rfc1437.de/2007/11/28/lka-direktor-huettemann-zurueckgetreten/Networkhttps://www.rfc1437.de/2007/11/28/network/OLPC in Nigeria wegen Patentverletzung verklagthttps://www.rfc1437.de/2007/11/28/olpc-in-nigeria-wegen-patentverletzung-verklagt/Richter hält Vorratsdatenspeicherung für verfassungswidrighttps://www.rfc1437.de/2007/11/28/richter-haelt-vorratsdatenspeicherung-fuer/Telekom steigt aus Radsport aushttps://www.rfc1437.de/2007/11/28/telekom-steigt-aus-radsport-aus/The Future of Reading (A Play in Six Acts)https://www.rfc1437.de/2007/11/26/the-future-of-reading-a-play-in-six-acts/Aloha--Ken Whartonhttps://www.rfc1437.de/2007/11/23/aloha-ken-wharton/Karnevalsverein mit TÜV-Siegelhttps://www.rfc1437.de/2007/11/23/karnevalsverein-mit-tuev-siegel/lxml.htmlhttps://www.rfc1437.de/2007/11/23/lxml-html/Bundestag nickt Abkommen zur Weitergabe von Fluggastdaten abhttps://www.rfc1437.de/2007/11/19/bundestag-nickt-abkommen-zur-weitergabe-von/Encrypted E-Mail Company Hushmail Spills to Fedshttps://www.rfc1437.de/2007/11/19/encrypted-e-mail-company-hushmail-spills-to-feds/iP2Fhttps://www.rfc1437.de/2007/11/19/ip2f/Patentklage gegen Apple, Microsoft und 21 weitere Unternehmenhttps://www.rfc1437.de/2007/11/19/patentklage-gegen-apple-microsoft-und-21-weitere/Schäuble fährt Softwareentwicklung hoch - Golem.dehttps://www.rfc1437.de/2007/11/19/schaeuble-faehrt-softwareentwicklung-hoch-golem-de/Tarimporterhttps://www.rfc1437.de/2007/11/19/tarimporter/Verschlüsselungsstandard unter Backdoor-Verdachthttps://www.rfc1437.de/2007/11/19/verschluesselungsstandard-unter-backdoor-verdacht/Warner-Music-Chef: Wir lagen falschhttps://www.rfc1437.de/2007/11/19/warner-music-chef-wir-lagen-falsch/Ziplight - Search ZIP Files with Spotlighthttps://www.rfc1437.de/2007/11/19/ziplight-search-zip-files-with-spotlight/Polizei gibt Rechner von Beschuldigten an Musikindustrie-Anwalt weiterhttps://www.rfc1437.de/2007/11/14/polizei-gibt-rechner-von-beschuldigten-an/Dirvishhttps://www.rfc1437.de/2007/11/12/dirvish/Kommt die Bundesabhörzentrale?https://www.rfc1437.de/2007/11/12/kommt-die-bundesabhoerzentrale/Rechnungshof verschwendet Millionenhttps://www.rfc1437.de/2007/11/12/rechnungshof-verschwendet-millionen/reinteracthttps://www.rfc1437.de/2007/11/12/reinteract/rsnapshothttps://www.rfc1437.de/2007/11/12/rsnapshot/Sicherheitsberater wegen Betreiben eines Bot-Netzes angeklagthttps://www.rfc1437.de/2007/11/12/sicherheitsberater-wegen-betreiben-eines-bot/The Terrifying Toothpick Fishhttps://www.rfc1437.de/2007/11/12/the-terrifying-toothpick-fish/Upside-Down-Ternethttps://www.rfc1437.de/2007/11/12/upside-down-ternet/E-Vergabe: Nutzer von Linux oder Mac müssen draußen bleibenhttps://www.rfc1437.de/2007/11/08/e-vergabe-nutzer-von-linux-oder-mac-muessen/Zope: Using UTF-8 in the Management Interface (ZMI)https://www.rfc1437.de/2007/11/06/zope-using-utf-8-in-the-management-interface-zmi/"Spiegel": Hinweise auf Absprachen der Stromkonzernehttps://www.rfc1437.de/2007/11/05/spiegel-hinweise-auf-absprachen-der-stromkonzerne/Zypries wirft Kritikern der Vorratsdatenspeicherung wenig Sachkunde vorhttps://www.rfc1437.de/2007/11/05/zypries-wirft-kritikern-der/Mac OS X 10.5 Leopard: the Ars Technica reviewhttps://www.rfc1437.de/2007/10/30/mac-os-x-10-5-leopard-the-ars-technica-review/Doing the Leopard Moanhttps://www.rfc1437.de/2007/10/29/doing-the-leopard-moan/TidBITS Macs & Mac OS X: Getting to Know Time Machinehttps://www.rfc1437.de/2007/10/29/tidbits-macs-mac-os-x-getting-to-know-time-machine/CCC hackt Hamburger Wahlstifthttps://www.rfc1437.de/2007/10/26/ccc-hackt-hamburger-wahlstift/Cowboy Programming: Mature Optimizationhttps://www.rfc1437.de/2007/10/23/cowboy-programming-mature-optimization/heise online -Softwarepatent-Gegner beklagen Deal der EU-Kommission mit Microsofthttps://www.rfc1437.de/2007/10/23/heise-online-softwarepatent-gegner-beklagen-deal/Ist die Inflationsrate wirklich bedrohlich?https://www.rfc1437.de/2007/10/23/ist-die-inflationsrate-wirklich-bedrohlich/Anwälte verbieten Ansicht des HTML-Codes ihrer Websitehttps://www.rfc1437.de/2007/10/22/anwaelte-verbieten-ansicht-des-html-codes-ihrer/Clozure CL IDE for Tigerhttps://www.rfc1437.de/2007/10/22/clozure-cl-ide-for-tiger/Arcor muss YouPorn sperrenhttps://www.rfc1437.de/2007/10/21/arcor-muss-youporn-sperren/Sorge um Nutzerrechte wegen Copyright-Filter fürs Web 2.0https://www.rfc1437.de/2007/10/20/sorge-um-nutzerrechte-wegen-copyright-filter/annalisthttps://www.rfc1437.de/2007/10/19/annalist/Wie wird man Terrorist?https://www.rfc1437.de/2007/10/19/wie-wird-man-terrorist/CL-OBJC projecthttps://www.rfc1437.de/2007/10/18/cl-objc-project/Hello, Bob. Hello Joe.https://www.rfc1437.de/2007/10/18/hello-bob-hello-joe/Jobs freut sich auf hunderte iPhone-Anwendungenhttps://www.rfc1437.de/2007/10/18/jobs-freut-sich-auf-hunderte-iphone-anwendungen/Nikon D3 First Impressionshttps://www.rfc1437.de/2007/10/18/nikon-d3-first-impressions/Wahlcomputer und die Grenzen der Informationsfreiheithttps://www.rfc1437.de/2007/10/18/wahlcomputer-und-die-grenzen-der/AG Köln: Öffentliches Singen ist keine Urheberrechtsverletzunghttps://www.rfc1437.de/2007/10/17/ag-koeln-oeffentliches-singen-ist-keine/Amazons Ein-Klick-Patent größtenteils für ungültig erklärthttps://www.rfc1437.de/2007/10/17/amazons-ein-klick-patent-groesstenteils-fuer/Dot-com fever stirs sense of déjà vuhttps://www.rfc1437.de/2007/10/17/dot-com-fever-stirs-sense-of-d-j-vu/It Only Tuesdayhttps://www.rfc1437.de/2007/10/17/it-only-tuesday/Nokia announces N810 Internet Tablet with GPS and OS 2008https://www.rfc1437.de/2007/10/17/nokia-announces-n810-internet-tablet-with-gps-and/OOXML Payback Time as Global Standards Work in SC 34 "Grinds to a Halt"https://www.rfc1437.de/2007/10/17/ooxml-payback-time-as-global-standards-work-in-sc/Biometrie-Gegner wegen Hausfriedensbruch angezeigthttps://www.rfc1437.de/2007/10/16/biometrie-gegner-wegen-hausfriedensbruch-angezeigt/Canon kündigt Objektive mit 200mm f/2 und 800mm f/5,6 anhttps://www.rfc1437.de/2007/10/16/canon-kuendigt-objektive-mit-200mm-f-2-und-800mm/''Second Earth'' found, 20 light years awayhttps://www.rfc1437.de/2007/10/16/second-earth-found-20-light-years-away/Patentklage wegen Linux-Desktopshttps://www.rfc1437.de/2007/10/12/patentklage-wegen-linux-desktops/Re: digitool MCL clozure OpenMCLhttps://www.rfc1437.de/2007/10/12/re-digitool-mcl-clozure-openmcl/Tale of Taleshttps://www.rfc1437.de/2007/10/11/tale-of-tales/Bevölkerung ab 16 soll für Perso Fingerabdrücke abgebenhttps://www.rfc1437.de/2007/10/10/bevoelkerung-ab-16-soll-fuer-perso/Kirch ist zurück auf der großen Bühnehttps://www.rfc1437.de/2007/10/10/kirch-ist-zurueck-auf-der-grossen-buehne/Text & Tabellen: Google hat kritisierte AGB nicht korrigierthttps://www.rfc1437.de/2007/10/05/text-tabellen-google-hat-kritisierte-agb-nicht/SWIFT entzieht EU-Daten dem einfachen Zugriff durch die USAhttps://www.rfc1437.de/2007/10/04/swift-entzieht-eu-daten-dem-einfachen-zugriff/Creative Commons verklagthttps://www.rfc1437.de/2007/10/02/creative-commons-verklagt/Berliner Amtsgericht verbietet Speichern von personenbezogenen Datenhttps://www.rfc1437.de/2007/10/01/berliner-amtsgericht-verbietet-speichern-von/Pandochttps://www.rfc1437.de/2007/10/01/pandoc/Vortragsfolien mit S5 - Cognitiones Publicaehttps://www.rfc1437.de/2007/10/01/vortragsfolien-mit-s5-cognitiones-publicae/Empörung über EU-Pläne für «Web-Zensur»https://www.rfc1437.de/2007/09/28/empoerung-ueber-eu-plaene-fuer-web-zensur/Flying Logic : Software for Visual Planning Supporthttps://www.rfc1437.de/2007/09/28/flying-logic-software-for-visual-planning-support/Niederlande: Aus für Nedap-Wahlcomputerhttps://www.rfc1437.de/2007/09/28/niederlande-aus-fuer-nedap-wahlcomputer/Schwarzgeldaffäre: Kanther kommt mit Geldstrafe davonhttps://www.rfc1437.de/2007/09/28/schwarzgeldaffaere-kanther-kommt-mit-geldstrafe/Tour: Rasmussen hatte künstliches EPO im Urinhttps://www.rfc1437.de/2007/09/28/tour-rasmussen-hatte-kuenstliches-epo-im-urin/Wie der Weltuntergang aussiehthttps://www.rfc1437.de/2007/09/28/wie-der-weltuntergang-aussieht/Bounce-Verbot für Bundes-Mailserverhttps://www.rfc1437.de/2007/09/24/bounce-verbot-fuer-bundes-mailserver/PIN-Code und Fingerabdruckhttps://www.rfc1437.de/2007/09/24/pin-code-und-fingerabdruck/Polizeizugriffe bei Demo gegen den Überwachungsstaathttps://www.rfc1437.de/2007/09/24/polizeizugriffe-bei-demo-gegen-den/Sachverständige haben erhebliche Bedenken gegen die Vorratsdatenspeicherunghttps://www.rfc1437.de/2007/09/24/sachverstaendige-haben-erhebliche-bedenken-gegen/Zwei OLPC-Notebooks kaufen, eines spendenhttps://www.rfc1437.de/2007/09/24/zwei-olpc-notebooks-kaufen-eines-spenden/Dolderer zurück an Denic-Spitzehttps://www.rfc1437.de/2007/09/20/dolderer-zurueck-an-denic-spitze/IE pwns SecondLifehttps://www.rfc1437.de/2007/09/17/ie-pwns-secondlife/Ozbus, London to Sydney Bus Travelhttps://www.rfc1437.de/2007/09/17/ozbus-london-to-sydney-bus-travel/Tor-Server-Betreiber stellt nach Razzia Anonymisierungsserver abhttps://www.rfc1437.de/2007/09/17/tor-server-betreiber-stellt-nach-razzia/Veröffentlichter Mailverkehr belastet Anti-Filesharing-Dienstleisterhttps://www.rfc1437.de/2007/09/17/veroeffentlichter-mailverkehr-belastet-anti/Merkel findet Debatte über Online-Razzien "bedenklich"https://www.rfc1437.de/2007/09/15/merkel-findet-debatte-ueber-online-razzien/SCO beantragt Gläubigerschutzhttps://www.rfc1437.de/2007/09/15/sco-beantragt-glaeubigerschutz/Anonymisierungsnetz Tor "abgephisht"https://www.rfc1437.de/2007/09/12/anonymisierungsnetz-tor-abgephisht/Anwalt Gravenreuth zu Haftstrafe verurteilthttps://www.rfc1437.de/2007/09/12/anwalt-gravenreuth-zu-haftstrafe-verurteilt/EU-Kommissar will "gefährliche Wörter" im Internet sperrenhttps://www.rfc1437.de/2007/09/12/eu-kommissar-will-gefaehrliche-woerter-im/Microsoft erhält Patent auf Benachrichtung über Änderungen in Datenschutzerklärungenhttps://www.rfc1437.de/2007/09/12/microsoft-erhaelt-patent-auf-benachrichtung-ueber/Bayern will schärfe Strafen für Gotteslästerunghttps://www.rfc1437.de/2007/09/10/bayern-will-schaerfe-strafen-fuer-gotteslaesterung/Leatherman Skeletool: The Lightweight Multi-Tool You''ll Actually Usehttps://www.rfc1437.de/2007/09/07/leatherman-skeletool-the-lightweight-multi-tool/Shadeshttps://www.rfc1437.de/2007/09/07/shades/External Filters from Erlanghttps://www.rfc1437.de/2007/09/05/external-filters-from-erlang/Mobile Processinghttps://www.rfc1437.de/2007/09/05/mobile-processing/NasaWorldWind in Processinghttps://www.rfc1437.de/2007/09/05/nasaworldwind-in-processing/Processing 1.0 (BETA)https://www.rfc1437.de/2007/09/05/processing-1-0-beta/World Wind JAVA SDKhttps://www.rfc1437.de/2007/09/05/world-wind-java-sdk/Tin-Foil-Hatshttps://www.rfc1437.de/2007/09/04/tin-foil-hats/BabelDjangohttps://www.rfc1437.de/2007/09/03/babeldjango/Microsoft Allegedly Bullies and Bribes to Make Office an International Standardhttps://www.rfc1437.de/2007/09/02/microsoft-allegedly-bullies-and-bribes-to-make/Abmahnung: GEZ untersagt "GEZ-Gebühren", "PC-Gebühren" und "GEZ-Anmeldung"https://www.rfc1437.de/2007/08/30/abmahnung-gez-untersagt-gez-gebuehren-pc/Court Rules: Novell owns the UNIX and UnixWare copyrights! Novell has right to waive!https://www.rfc1437.de/2007/08/11/court-rules-novell-owns-the-unix-and-unixware/The Shakespeare Programming Languagehttps://www.rfc1437.de/2007/08/10/the-shakespeare-programming-language/Wir alle haben Kommentarspam zugestimmthttps://www.rfc1437.de/2007/08/10/wir-alle-haben-kommentarspam-zugestimmt/BrandweekNRX: Red Cross sued over its - Red cross!https://www.rfc1437.de/2007/08/09/brandweeknrx-red-cross-sued-over-its-red-cross/MathTrek: Cracking the Cubehttps://www.rfc1437.de/2007/08/09/mathtrek-cracking-the-cube/New FCC rules may impact Linux-based deviceshttps://www.rfc1437.de/2007/08/09/new-fcc-rules-may-impact-linux-based-devices/TidBITS: New iLife ''08 Revealedhttps://www.rfc1437.de/2007/08/08/tidbits-new-ilife-08-revealed/Freie ERP- und CRM-Lösung für Linux, Windows und Mac OS Xhttps://www.rfc1437.de/2007/08/06/freie-erp-und-crm-loesung-fuer-linux-windows-und/Herber Rückschlag für US-Wahlmaschinenherstellerhttps://www.rfc1437.de/2007/08/06/herber-rueckschlag-fuer-us-wahlmaschinenhersteller/Light Blue Touchpaper » Electoral Commission releases e-voting and e-counting reportshttps://www.rfc1437.de/2007/08/06/light-blue-touchpaper-electoral-commission/m-e-c AS2 ::: Open source AS2 softwarehttps://www.rfc1437.de/2007/08/06/m-e-c-as2-open-source-as2-software/real-time GPS shark huntinghttps://www.rfc1437.de/2007/08/06/real-time-gps-shark-hunting/Amazon FPS, Amazon Flexible Payment Servicehttps://www.rfc1437.de/2007/08/03/amazon-fps-amazon-flexible-payment-service/Multiversehttps://www.rfc1437.de/2007/08/03/multiverse/Unter Hausarresthttps://www.rfc1437.de/2007/08/03/unter-hausarrest/US-Wahlcomputer können keine vertrauenswürdigen Wahlen garantierenhttps://www.rfc1437.de/2007/08/03/us-wahlcomputer-koennen-keine-vertrauenswuerdigen/Vimdoc : the online source for Vim documentationhttps://www.rfc1437.de/2007/08/03/vimdoc-the-online-source-for-vim-documentation/Virtualisierungs-Rootkit Blue Pill frei verfügbarhttps://www.rfc1437.de/2007/08/03/virtualisierungs-rootkit-blue-pill-frei-verfuegbar/Zypries verschärft Kritik an Online-Razzienhttps://www.rfc1437.de/2007/08/03/zypries-verschaerft-kritik-an-online-razzien/EU-Klage gegen deutsche Datenschutz-Gesetzehttps://www.rfc1437.de/2007/08/02/eu-klage-gegen-deutsche-datenschutz-gesetze/1.3 Megapixel USB Digital Microscopehttps://www.rfc1437.de/2007/08/01/1-3-megapixel-usb-digital-microscope/Leica M8 Review: 1. Introduction: Digital Photography Reviewhttps://www.rfc1437.de/2007/08/01/leica-m8-review-1-introduction-digital/Scan This Guy's E-Passport and Watch Your System Crashhttps://www.rfc1437.de/2007/08/01/scan-this-guy-s-e-passport-and-watch-your-system/Ergebnisse des größten "Hacker"-Tests für US-Wahlmaschinen liegen vorhttps://www.rfc1437.de/2007/07/31/ergebnisse-des-groessten-hacker-tests-fuer-us/Harter Kurs gegen Drogensünderhttps://www.rfc1437.de/2007/07/31/harter-kurs-gegen-drogensuender/Project Wonderlandhttps://www.rfc1437.de/2007/07/31/project-wonderland/Skeptical Science and Technology Quoteshttps://www.rfc1437.de/2007/07/31/skeptical-science-and-technology-quotes/The effects of data fragmentation in a mixed load database. Theoretical discussion and PostgreSQL benchmark.https://www.rfc1437.de/2007/07/31/the-effects-of-data-fragmentation-in-a-mixed-load/Totgesagte leben (nicht) länger: Kein Amiga-Center in Kenthttps://www.rfc1437.de/2007/07/31/totgesagte-leben-nicht-laenger-kein-amiga-center/Uh Oh. Another Smooth Move from Microsoft: Watch out, Ruby. Watch out OSI.https://www.rfc1437.de/2007/07/31/uh-oh-another-smooth-move-from-microsoft-watch/Anti-Grain Geometry - Texts Rasterization Exposureshttps://www.rfc1437.de/2007/07/30/anti-grain-geometry-texts-rasterization-exposures/Coding Horror: The Coming Software Patent Apocalypsehttps://www.rfc1437.de/2007/07/30/coding-horror-the-coming-software-patent/Top-Beamter der Bundespolizei ließ E-Mails seiner Mitarbeiter bespitzelnhttps://www.rfc1437.de/2007/07/30/top-beamter-der-bundespolizei-liess-e-mails/WGET 1.10.2 for Windows (win32)https://www.rfc1437.de/2007/07/30/wget-1-10-2-for-windows-win32/«Second Life» für Deutschehttps://www.rfc1437.de/2007/07/27/second-life-fuer-deutsche/Ermittlung des Anschlussinhabers bei Tauschbörsen-Strafverfahren ist unzulässighttps://www.rfc1437.de/2007/07/26/ermittlung-des-anschlussinhabers-bei/Japanese Watch Makerhttps://www.rfc1437.de/2007/07/26/japanese-watch-maker/Rasmussen gefeuert und aus der Tour genommenhttps://www.rfc1437.de/2007/07/26/rasmussen-gefeuert-und-aus-der-tour-genommen/Stackless Python soll Eve Online schneller machenhttps://www.rfc1437.de/2007/07/26/stackless-python-soll-eve-online-schneller-machen/The Church of the Latter-Day Dudehttps://www.rfc1437.de/2007/07/26/the-church-of-the-latter-day-dude/Antique engines inspire nano chiphttps://www.rfc1437.de/2007/07/25/antique-engines-inspire-nano-chip/Auf Nummer Sicher?https://www.rfc1437.de/2007/07/25/auf-nummer-sicher/Britische Musikindustrie greift Regierung anhttps://www.rfc1437.de/2007/07/25/britische-musikindustrie-greift-regierung-an/…free your imagination…https://www.rfc1437.de/2007/07/25/free-your-imagination/iPhoto Library Managerhttps://www.rfc1437.de/2007/07/25/iphoto-library-manager/Jamendo : Fabrice Collettehttps://www.rfc1437.de/2007/07/25/jamendo-fabrice-collette/Tour macht weiter, trotz aller Problemehttps://www.rfc1437.de/2007/07/25/tour-macht-weiter-trotz-aller-probleme/We're All Gonna Diehttps://www.rfc1437.de/2007/07/25/we-re-all-gonna-die/DarwiinRemotehttps://www.rfc1437.de/2007/07/24/darwiinremote/RE: question about Erlang''s futurehttps://www.rfc1437.de/2007/07/24/re-question-about-erlang-s-future/The Real Problem With Alexahttps://www.rfc1437.de/2007/07/24/the-real-problem-with-alexa/Urteil gegen Skype wegen GPL-Verletzunghttps://www.rfc1437.de/2007/07/24/urteil-gegen-skype-wegen-gpl-verletzung/David Carr: Deadlines, Overtime and Undertimehttps://www.rfc1437.de/2007/07/23/david-carr-deadlines-overtime-and-undertime/What Linspire Agreed Tohttps://www.rfc1437.de/2007/07/23/what-linspire-agreed-to/Bush Abolishes Fifth Amendmenthttps://www.rfc1437.de/2007/07/20/bush-abolishes-fifth-amendment/Chax - miscellaneous iChat improvementshttps://www.rfc1437.de/2007/07/20/chax-miscellaneous-ichat-improvements/Dame durchgespielthttps://www.rfc1437.de/2007/07/20/dame-durchgespielt/Dead Iron Monsters, Legacy Of Soviet Unionhttps://www.rfc1437.de/2007/07/20/dead-iron-monsters-legacy-of-soviet-union/Distel = Erlang-like Concurrency in Emacshttps://www.rfc1437.de/2007/07/20/distel-erlang-like-concurrency-in-emacs/iGlasses for iChat AVhttps://www.rfc1437.de/2007/07/20/iglasses-for-ichat-av/Learning from Dave Winerhttps://www.rfc1437.de/2007/07/20/learning-from-dave-winer/Tiny PC sips power, runs Linuxhttps://www.rfc1437.de/2007/07/20/tiny-pc-sips-power-runs-linux/Trojaner-Basteln für Dummyshttps://www.rfc1437.de/2007/07/20/trojaner-basteln-fuer-dummys/Jing Project: Visual conversation starts here. Mac or Windows.https://www.rfc1437.de/2007/07/19/jing-project-visual-conversation-starts-here-mac/Nokia veröffentlicht Browser für Maemohttps://www.rfc1437.de/2007/07/19/nokia-veroeffentlicht-browser-fuer-maemo/Project details for leJOShttps://www.rfc1437.de/2007/07/19/project-details-for-lejos/Schenk?https://www.rfc1437.de/2007/07/19/schenk/The History of Software Patents (BitLaw)https://www.rfc1437.de/2007/07/19/the-history-of-software-patents-bitlaw/Abmahngrund: Fotos vom Fotostudiohttps://www.rfc1437.de/2007/07/18/abmahngrund-fotos-vom-fotostudio/Absurditäten der Medienhttps://www.rfc1437.de/2007/07/18/absurditaeten-der-median/BrowseBack: Visual Web History You Can Searchhttps://www.rfc1437.de/2007/07/18/browseback-visual-web-history-you-can-search/"Amflora" kommt: EU will BASF-Kartoffel zulassenhttps://www.rfc1437.de/2007/07/17/amflora-kommt-eu-will-basf-kartoffel-zulassen/integer overflowshttps://www.rfc1437.de/2007/07/17/integer-overflows/Microsofts Digital Rights Management umgangenhttps://www.rfc1437.de/2007/07/17/microsofts-digital-rights-management-umgangen/iPod Operating Systemhttps://www.rfc1437.de/2007/07/16/ipod-operating-system/Linux Creator Calls GPLv3 Authors 'Hypocrites' As Open Source Debate Turns Nastyhttps://www.rfc1437.de/2007/07/16/linux-creator-calls-gplv3-authors-hypocrites-as/low-level network packets with pythonhttps://www.rfc1437.de/2007/07/16/low-level-network-packets-with-python/Tinderbox: Downloadshttps://www.rfc1437.de/2007/07/16/tinderbox-downloads/Bischof fordert Schöpfungslehre im Bio-Unterrichthttps://www.rfc1437.de/2007/07/13/bischof-fordert-schoepfungslehre-im-bio-unterricht/Face Blindness ( Prosopagnosia ) and stoneshttps://www.rfc1437.de/2007/07/13/face-blindness-prosopagnosia-and-stones/Why Spiders Aren''t Insects II: A Primer on Cladisticshttps://www.rfc1437.de/2007/07/13/why-spiders-aren-t-insects-ii-a-primer-on/AT&T Cingular Vertragsbedingungen für iPhone untersuchthttps://www.rfc1437.de/2007/07/11/at-t-cingular-vertragsbedingungen-fuer-iphone/Genera Conceptshttps://www.rfc1437.de/2007/07/11/genera-concepts/Ampache Web Musicboxhttps://www.rfc1437.de/2007/07/10/ampache-web-musicbox/EU bei Fluggastdaten "über den Tisch gezogen"https://www.rfc1437.de/2007/07/10/eu-bei-fluggastdaten-ueber-den-tisch-gezogen/Konrad Zuse - Turing's Alter Ego?https://www.rfc1437.de/2007/07/10/konrad-zuse-turing-s-alter-ego/Nokia Skypes its N800 Linux tablethttps://www.rfc1437.de/2007/07/09/nokia-skypes-its-n800-linux-tablet/Perlbalhttps://www.rfc1437.de/2007/07/09/perlbal/Popstars retten die Erdehttps://www.rfc1437.de/2007/07/09/popstars-retten-die-erde/Professional Fartershttps://www.rfc1437.de/2007/07/09/professional-farters/Schäuble fordert "Internierung", Internet- und Handyverbot für "Gefährder"https://www.rfc1437.de/2007/07/09/schaeuble-fordert-internierung-internet-und/SQLite performance and Djangohttps://www.rfc1437.de/2007/07/09/sqlite-performance-and-django/Union droht ARD und ZDF mit Werbeverbothttps://www.rfc1437.de/2007/07/09/union-droht-ard-und-zdf-mit-werbeverbot/WinMTRhttps://www.rfc1437.de/2007/07/08/winmtr/I Can''t Stop Thinking! #6https://www.rfc1437.de/2007/07/07/i-can-t-stop-thinking-6/BGH erleichtert Telefonauskünften Herausgabe von Datenhttps://www.rfc1437.de/2007/07/06/bgh-erleichtert-telefonauskuenften-herausgabe-von/MacFusion | The GUI for MacFUSEhttps://www.rfc1437.de/2007/07/06/macfusion-the-gui-for-macfuse/Performance Tuning PostgreSQLhttps://www.rfc1437.de/2007/07/06/performance-tuning-postgresql/Unternehmensnamen in Blog-Domains sind problematischhttps://www.rfc1437.de/2007/07/06/unternehmensnamen-in-blog-domains-sind/The story of Melhttps://www.rfc1437.de/2007/07/05/the-story-of-mel/Bush on overruling judgementshttps://www.rfc1437.de/2007/07/04/bush-on-overruling-judgements/Karlsruhe: Abgeordnete müssen erstmals Nebeneinkünfte offenlegenhttps://www.rfc1437.de/2007/07/04/karlsruhe-abgeordnete-muessen-erstmals/L''état, c''est moihttps://www.rfc1437.de/2007/07/04/l-tat-c-est-moi/Freace - Wieder das gleiche Musterhttps://www.rfc1437.de/2007/07/03/freace-wieder-das-gleiche-muster/Perian 1.0 macht Macs zu universellen Video-Abspielernhttps://www.rfc1437.de/2007/07/03/perian-1-0-macht-macs-zu-universellen-video/Python NetWorkSpaces and Parallel Programshttps://www.rfc1437.de/2007/07/03/python-networkspaces-and-parallel-programs/SOS: Bundestag soll Patentierte Standards abnicken - FiFF bittet um Mithilfehttps://www.rfc1437.de/2007/07/03/sos-bundestag-soll-patentierte-standards-abnicken/Terror suspects all linked to NHShttps://www.rfc1437.de/2007/07/03/terror-suspects-all-linked-to-nhs/Golfstrom droht spätestens 2100 zu versiegenhttps://www.rfc1437.de/2007/07/02/golfstrom-droht-spaetestens-2100-zu-versiegen/T-Online sperrt TCP-Port 8085https://www.rfc1437.de/2007/07/02/t-online-sperrt-tcp-port-8085/Thousands of rubber ducks to land on British shores after 15 year journeyhttps://www.rfc1437.de/2007/07/02/thousands-of-rubber-ducks-to-land-on-british/Giftiger Riesenbärenklau wird bekämpfthttps://www.rfc1437.de/2007/06/29/giftiger-riesenbaerenklau-wird-bekaempft/Linux-Smartphone OpenMoko ab Juli 2007 zu habenhttps://www.rfc1437.de/2007/06/29/linux-smartphone-openmoko-ab-juli-2007-zu-haben/Polizei entschärft Sprengsatz in Londonhttps://www.rfc1437.de/2007/06/29/polizei-entschaerft-sprengsatz-in-london/"Code kennt keine Fairness"https://www.rfc1437.de/2007/06/28/code-kennt-keine-fairness/EU und USA haben Vereinbarungen über Weitergabe von Flugpassagier- und Finanzdaten erzielthttps://www.rfc1437.de/2007/06/28/eu-und-usa-haben-vereinbarungen-ueber-weitergabe/''Intel Core 2''https://www.rfc1437.de/2007/06/28/intel-core-2/Millionenschaden durch manipulierte Geldautomatenhttps://www.rfc1437.de/2007/06/28/millionenschaden-durch-manipulierte-geldautomaten/When Sysadmins Ruled the Earth, by Cory Doctorowhttps://www.rfc1437.de/2007/06/28/when-sysadmins-ruled-the-earth-by-cory-doctorow/alte Domains raushttps://www.rfc1437.de/2007/06/27/alte-domains-raus/Ari Jaaksi on Nokia and Open Source and the N770https://www.rfc1437.de/2007/06/27/ari-jaaksi-on-nokia-and-open-source-and-the-n770/Kaczynski droht Bundesregierung wegen Karikaturhttps://www.rfc1437.de/2007/06/27/kaczynski-droht-bundesregierung-wegen-karikatur/The iPhone Matches Most of Its Hypehttps://www.rfc1437.de/2007/06/27/the-iphone-matches-most-of-its-hype/Banned By Gaussianhttps://www.rfc1437.de/2007/06/26/banned-by-gaussian/"Schwere Dopingvorwürfe gegen BDR"https://www.rfc1437.de/2007/06/26/schwere-dopingvorwuerfe-gegen-bdr/Zwangsausschluss von Aktionären verfassungsgemäßhttps://www.rfc1437.de/2007/06/26/zwangsausschluss-von-aktionaeren/Full map of Europe in year 1000https://www.rfc1437.de/2007/06/25/full-map-of-europe-in-year-1000/Google Mail will bei Vorratsdatenspeicherung zumachenhttps://www.rfc1437.de/2007/06/25/google-mail-will-bei-vorratsdatenspeicherung/Inhaltsfilter für Second Lifehttps://www.rfc1437.de/2007/06/25/inhaltsfilter-fuer-second-life/Schäuble hält Online-Durchsuchungen für "lebensnotwendig"https://www.rfc1437.de/2007/06/25/schaeuble-haelt-online-durchsuchungen-fuer/Try These Different ways to Become Invisiblehttps://www.rfc1437.de/2007/06/25/try-these-different-ways-to-become-invisible/Von tarifpolitischen Zukunftsperspektiven und politisch inszenierten Gnadenbrotenhttps://www.rfc1437.de/2007/06/25/von-tarifpolitischen-zukunftsperspektiven-und/XGPhttps://www.rfc1437.de/2007/06/25/xgp/Bald bei allen EU-Autos Höchstgeschwindigkeit ab Werk?https://www.rfc1437.de/2007/06/22/bald-bei-allen-eu-autos-hoechstgeschwindigkeit-ab/Binary marble adding machinehttps://www.rfc1437.de/2007/06/22/binary-marble-adding-machine/Paul Dowman » Ruby on Rails EC2 “Appliance”https://www.rfc1437.de/2007/06/22/paul-dowman-ruby-on-rails-ec2-appliance/Wettbewerbsbeschwerde gegen BBC wegen Videoformathttps://www.rfc1437.de/2007/06/22/wettbewerbsbeschwerde-gegen-bbc-wegen-videoformat/Yahoo Censoring Open Sourcehttps://www.rfc1437.de/2007/06/22/yahoo-censoring-open-source/Musikindustrie will schrankenlosen Zugriff auf Nutzerdatenhttps://www.rfc1437.de/2007/06/21/musikindustrie-will-schrankenlosen-zugriff-auf/Programming Experiments: Initial Release of my web toolshttps://www.rfc1437.de/2007/06/21/programming-experiments-initial-release-of-my-web/An analysis of EOS-1D Mark III autofocus performancehttps://www.rfc1437.de/2007/06/20/an-analysis-of-eos-1d-mark-iii-autofocus/Anthracitehttps://www.rfc1437.de/2007/06/20/anthracite/Spamhaus.org relativiert nic.at-Listinghttps://www.rfc1437.de/2007/06/20/spamhaus-org-relativiert-nic-at-listing/Python 3000 Status Update (Long!)https://www.rfc1437.de/2007/06/19/python-3000-status-update-long/Atombombenexplosion im tschechischen Frühstücksfernsehenhttps://www.rfc1437.de/2007/06/18/atombombenexplosion-im-tschechischen/"Skulptur Projekte Münster 07"https://www.rfc1437.de/2007/06/15/skulptur-projekte-muenster-07/Third Viewhttps://www.rfc1437.de/2007/06/15/third-view/Schneier on Security: Portrait of the Modern Terrorist as an Idiothttps://www.rfc1437.de/2007/06/14/schneier-on-security-portrait-of-the-modern/Ärger um neue Flickr-Filterhttps://www.rfc1437.de/2007/06/13/aerger-um-neue-flickr-filter/Yahoo-Aktionäre lehnen Menschenrechtsanträge abhttps://www.rfc1437.de/2007/06/13/yahoo-aktionaere-lehnen-menschenrechtsantraege-ab/ZFS ist in MacOS X 10.5 - Golem.dehttps://www.rfc1437.de/2007/06/13/zfs-ist-in-macos-x-10-5-golem-de/Gutachten bestätigt Manipulierbarkeit von Wahlcomputernhttps://www.rfc1437.de/2007/06/11/gutachten-bestaetigt-manipulierbarkeit-von/httplib2.pyhttps://www.rfc1437.de/2007/06/11/httplib2-py/Keine Kennzeichnung nötig: EU erlaubt Spuren von Gentech in Bio-Kosthttps://www.rfc1437.de/2007/06/11/keine-kennzeichnung-noetig-eu-erlaubt-spuren-von/Media-Saturn trennt sich von Anwalt Steinhöfelhttps://www.rfc1437.de/2007/06/11/media-saturn-trennt-sich-von-anwalt-steinhoefel/CSC stoppt möglicherweise Radsport-Sponsoringhttps://www.rfc1437.de/2007/06/08/csc-stoppt-moeglicherweise-radsport-sponsoring/Reportage: Zwanzig in einem Käfig, 24 Stunden Lichthttps://www.rfc1437.de/2007/06/08/reportage-zwanzig-in-einem-kaefig-24-stunden-licht/Sun: ZFS wird neues Dateisystem in Apples Leopardhttps://www.rfc1437.de/2007/06/08/sun-zfs-wird-neues-dateisystem-in-apples-leopard/Camino. Mozilla Power, Mac Stylehttps://www.rfc1437.de/2007/06/06/camino-mozilla-power-mac-style/MarsEdithttps://www.rfc1437.de/2007/06/06/marsedit/Microsoft threatens its Most Valuable Professionalhttps://www.rfc1437.de/2007/06/06/microsoft-threatens-its-most-valuable-professional/The contact lenses that could restore 20/20 visionhttps://www.rfc1437.de/2007/06/06/the-contact-lenses-that-could-restore-20-20-vision/3 awesome free Math programshttps://www.rfc1437.de/2007/06/05/3-awesome-free-math-programs/A 10 minute tutorial for solving Math problems with Maximahttps://www.rfc1437.de/2007/06/05/a-10-minute-tutorial-for-solving-math-problems/Linux.com | Encrypt and sign Gmail messages with FireGPGhttps://www.rfc1437.de/2007/06/05/linux-com-encrypt-and-sign-gmail-messages-with/MailTagshttps://www.rfc1437.de/2007/06/05/mailtags/Pistol Shrimphttps://www.rfc1437.de/2007/06/05/pistol-shrimp/Relocating iTunes Music Libraries to Removable/External Storage Mediahttps://www.rfc1437.de/2007/06/05/relocating-itunes-music-libraries-to-removable/wxMaximahttps://www.rfc1437.de/2007/06/05/wxmaxima/RTL will sich nicht kopieren lassenhttps://www.rfc1437.de/2007/06/04/rtl-will-sich-nicht-kopieren-lassen/TV Ad Sound Levelshttps://www.rfc1437.de/2007/06/04/tv-ad-sound-levels/UBERWACH!https://www.rfc1437.de/2007/06/04/uberwach/Astronomers Capture The First Image Of Surface Features On A Sun-like Starhttps://www.rfc1437.de/2007/06/01/astronomers-capture-the-first-image-of-surface/Google Gears for WebKithttps://www.rfc1437.de/2007/06/01/google-gears-for-webkit/HD-DVD und Blu-ray Disc wieder kopierbarhttps://www.rfc1437.de/2007/06/01/hd-dvd-und-blu-ray-disc-wieder-kopierbar/How to Swear in any languagehttps://www.rfc1437.de/2007/06/01/how-to-swear-in-any-language/Personal History: How I Spent the Warhttps://www.rfc1437.de/2007/06/01/personal-history-how-i-spent-the-war/Single spinning nuclei in diamond offer a stable quantum computing building blockhttps://www.rfc1437.de/2007/06/01/single-spinning-nuclei-in-diamond-offer-a-stable/trackbackhttps://www.rfc1437.de/2007/06/01/trackback/Bundesratsausschüsse für deutlichen Ausbau der TK-Überwachunghttps://www.rfc1437.de/2007/05/31/bundesratsausschuesse-fuer-deutlichen-ausbau-der/CSU: Seehofer droht Parteifreunden mit Sex-Enthüllungenhttps://www.rfc1437.de/2007/05/31/csu-seehofer-droht-parteifreunden-mit-sex/Don't Mess With Our Chocolatehttps://www.rfc1437.de/2007/05/31/don-t-mess-with-our-chocolate/Dumb, Dumber, Bush? Mooo!https://www.rfc1437.de/2007/05/31/dumb-dumber-bush-mooo/Exklusiv: Fatih Akins "Gegen die Wand" im Internethttps://www.rfc1437.de/2007/05/31/exklusiv-fatih-akins-gegen-die-wand-im-internet/Man described as a top spammer arrestedhttps://www.rfc1437.de/2007/05/31/man-described-as-a-top-spammer-arrested/Verwertungsgesellschaften kritisieren Commons-Projekt als urheberrechtsfeindlichhttps://www.rfc1437.de/2007/05/31/verwertungsgesellschaften-kritisieren-commons/20 Ways to Use Gmail Filtershttps://www.rfc1437.de/2007/05/30/20-ways-to-use-gmail-filters/ARD/ZDF wollen Tour-Vertrag vorerst nicht verlängernhttps://www.rfc1437.de/2007/05/30/ard-zdf-wollen-tour-vertrag-vorerst-nicht/Bundesregierung präzisiert Pflichten zur Archivierung von Netzinhaltenhttps://www.rfc1437.de/2007/05/30/bundesregierung-praezisiert-pflichten-zur/Diebe stehlen Seekabel vor Vietnamhttps://www.rfc1437.de/2007/05/30/diebe-stehlen-seekabel-vor-vietnam/duplicityhttps://www.rfc1437.de/2007/05/30/duplicity-2/Gericht untersagt Artikelversand per E-Mailhttps://www.rfc1437.de/2007/05/30/gericht-untersagt-artikelversand-per-e-mail/GVU und Ermittlungenhttps://www.rfc1437.de/2007/05/30/gvu-und-ermittlungen/Our oceans are turning into plastic...are we?https://www.rfc1437.de/2007/05/30/our-oceans-are-turning-into-plastic-are-we/Park Place, the Amazon-S3 clonehttps://www.rfc1437.de/2007/05/30/park-place-the-amazon-s3-clone/VI in JavaScripthttps://www.rfc1437.de/2007/05/30/vi-in-javascript-2/BKA-Ermittler fahnden im Biergartenhttps://www.rfc1437.de/2007/05/29/bka-ermittler-fahnden-im-biergarten/IT-Chronikhttps://www.rfc1437.de/2007/05/29/it-chronik/New database class - HyperDBhttps://www.rfc1437.de/2007/05/29/new-database-class-hyperdb/Studie: Atomstrom - weder billig noch gut fürs Klimahttps://www.rfc1437.de/2007/05/29/studie-atomstrom-weder-billig-noch-gut-fuers-klima/RFC gegen Spamhttps://www.rfc1437.de/2007/05/27/rfc-gegen-spam/Ein Terrorist wie du und ichhttps://www.rfc1437.de/2007/05/25/ein-terrorist-wie-du-und-ich/Einzelhandel frohlockt: Biometriebilder für Gesundheitskartehttps://www.rfc1437.de/2007/05/25/einzelhandel-frohlockt-biometriebilder-fuer/Undercover : Günter Wallraff ist zurückhttps://www.rfc1437.de/2007/05/25/undercover-guenter-wallraff-ist-zurueck/Amnesty international prangert "Politik der Angst" anhttps://www.rfc1437.de/2007/05/24/amnesty-international-prangert-politik-der-angst/Die ARD-Tonstörung namens Godefroot (Update 3)https://www.rfc1437.de/2007/05/24/die-ard-tonstoerung-namens-godefroot-update-3/Dietz, Henn, Böltz, Aldag, Ullrichhttps://www.rfc1437.de/2007/05/24/dietz-henn-boeltz-aldag-ullrich/Microsoft will den unbekannten Internetbenutzer identifizierenhttps://www.rfc1437.de/2007/05/24/microsoft-will-den-unbekannten-internetbenutzer/NDR zensiert Dietz Inteview bei Beckmannhttps://www.rfc1437.de/2007/05/24/ndr-zensiert-dietz-inteview-bei-beckmann/Ornithopters to Revolutionize Aircraft Designhttps://www.rfc1437.de/2007/05/24/ornithopters-to-revolutionize-aircraft-design/Wiesenhof steigt aushttps://www.rfc1437.de/2007/05/24/wiesenhof-steigt-aus/Bundesinnenminister warnt vor zunehmender Netzspionagehttps://www.rfc1437.de/2007/05/23/bundesinnenminister-warnt-vor-zunehmender/Cyborg-Feeling für jedermannhttps://www.rfc1437.de/2007/05/23/cyborg-feeling-fuer-jedermann/Google turns the page… in a bad way.https://www.rfc1437.de/2007/05/23/google-turns-the-page-in-a-bad-way/Inside the Monkeyspherehttps://www.rfc1437.de/2007/05/23/inside-the-monkeysphere/Introducing Mahlee™https://www.rfc1437.de/2007/05/23/introducing-mahlee/PyCellshttps://www.rfc1437.de/2007/05/23/pycells/Ex-Telekom-Profi beichtet Dopinghttps://www.rfc1437.de/2007/05/22/ex-telekom-profi-beichtet-doping/Innere Sicherheit: Der Duft des Terrorshttps://www.rfc1437.de/2007/05/22/innere-sicherheit-der-duft-des-terrors/The Birth Control of Yesteryearhttps://www.rfc1437.de/2007/05/22/the-birth-control-of-yesteryear/Warner legt bei EMI-Offerte nachhttps://www.rfc1437.de/2007/05/22/warner-legt-bei-emi-offerte-nach/Wirtschaftsprofessor fordert: "Wir brauchen einen regulierten Markt für Organe"https://www.rfc1437.de/2007/05/22/wirtschaftsprofessor-fordert-wir-brauchen-einen/100-Dollar-Laptop: Negroponte greift Intel scharf anhttps://www.rfc1437.de/2007/05/21/100-dollar-laptop-negroponte-greift-intel-scharf/CIA's Harsh Interrogation Techniques Describedhttps://www.rfc1437.de/2007/05/21/cia-s-harsh-interrogation-techniques-described/Diamonds Tell Tale Of Comet That Killed Off The Cavemenhttps://www.rfc1437.de/2007/05/21/diamonds-tell-tale-of-comet-that-killed-off-the/Jason Corso - Vi Input Manager Pluginhttps://www.rfc1437.de/2007/05/21/jason-corso-vi-input-manager-plugin/The Cerne Abbas Gianthttps://www.rfc1437.de/2007/05/21/the-cerne-abbas-giant/The Red Hot Erlang Bloghttps://www.rfc1437.de/2007/05/21/the-red-hot-erlang-blog/Uffington White Horsehttps://www.rfc1437.de/2007/05/21/uffington-white-horse/Wilmingtonhttps://www.rfc1437.de/2007/05/21/wilmington/Amazon kündigt DRM-freie MP3-Downloads anhttps://www.rfc1437.de/2007/05/18/amazon-kuendigt-drm-freie-mp3-downloads-an/Deutsche Telekom verabschiedet sich von Marke T-Comhttps://www.rfc1437.de/2007/05/18/deutsche-telekom-verabschiedet-sich-von-marke-t/Freitag 20 - Es geht um fast alleshttps://www.rfc1437.de/2007/05/18/freitag-20-es-geht-um-fast-alles/individual-i [de]https://www.rfc1437.de/2007/05/18/individual-i-de/JPC - Computer Virtualization in Javahttps://www.rfc1437.de/2007/05/18/jpc-computer-virtualization-in-java/Why, oh WHY, do those #?@! nutheads use vi?https://www.rfc1437.de/2007/05/18/why-oh-why-do-those-nutheads-use-vi/WMAP Mission: Resultshttps://www.rfc1437.de/2007/05/18/wmap-mission-results/Unterstützung für Globalisierungskritiker Geißler tritt Attac beihttps://www.rfc1437.de/2007/05/17/unterstuetzung-fuer-globalisierungskritiker/Atze Schröder und die Wikipediahttps://www.rfc1437.de/2007/05/16/atze-schroeder-und-die-wikipedia/capsulehotelhttps://www.rfc1437.de/2007/05/16/capsulehotel/MarcoPolo - Automatic location switching for Mac OS Xhttps://www.rfc1437.de/2007/05/16/marcopolo-automatic-location-switching-for-mac-os/Verwaltungsgericht: Honig muss vor Pollen von Gen-Mais geschützt werdenhttps://www.rfc1437.de/2007/05/16/verwaltungsgericht-honig-muss-vor-pollen-von-gen/Beautiful Soup: We called him Tortoise because he taught us.https://www.rfc1437.de/2007/05/15/beautiful-soup-we-called-him-tortoise-because-he/Create a Tumblr widget using Dashcodehttps://www.rfc1437.de/2007/05/15/create-a-tumblr-widget-using-dashcode/ISO-Arbeitsgruppe schlägt Unicode mit "ß" als Großbuchstaben vorhttps://www.rfc1437.de/2007/05/15/iso-arbeitsgruppe-schlaegt-unicode-mit-ss-als/twill: a simple scripting language for Web browsinghttps://www.rfc1437.de/2007/05/15/twill-a-simple-scripting-language-for-web-browsing-2/Apple und Microsoft sollen zu DRM-Einsatz gezwungen werdenhttps://www.rfc1437.de/2007/05/14/apple-und-microsoft-sollen-zu-drm-einsatz/Flickr → iPhotohttps://www.rfc1437.de/2007/05/14/flickr-iphoto/FlickrExporthttps://www.rfc1437.de/2007/05/14/flickrexport/Google will aus Online-Spielen psychologische Profile erstellenhttps://www.rfc1437.de/2007/05/14/google-will-aus-online-spielen-psychologische/Public Acceptance of Evolutionhttps://www.rfc1437.de/2007/05/11/public-acceptance-of-evolution/Stig's Inferno by Ty Templetonhttps://www.rfc1437.de/2007/05/11/stig-s-inferno-by-ty-templeton/XML Transformation in Schemehttps://www.rfc1437.de/2007/05/11/xml-transformation-in-scheme/Doping-Szene Deutschland: Heile Welt in Magentahttps://www.rfc1437.de/2007/05/10/doping-szene-deutschland-heile-welt-in-magenta/Escaping the data panopticon: Prof says computers must learn to "forget"https://www.rfc1437.de/2007/05/10/escaping-the-data-panopticon-prof-says-computers/Musikindustrie und Udo Jürgens setzen Kanzlerin unter Druckhttps://www.rfc1437.de/2007/05/10/musikindustrie-und-udo-juergens-setzen-kanzlerin/Streit bei Axel Springer: "WamS"-Kommentarchef attackiert "Bild"-Chefredakteurhttps://www.rfc1437.de/2007/05/10/streit-bei-axel-springer-wams-kommentarchef/Terror-Webseiten: Europol sucht Terroristen im Netzhttps://www.rfc1437.de/2007/05/10/terror-webseiten-europol-sucht-terroristen-im-netz/A MacFUSE-Based Process File System for Mac OS Xhttps://www.rfc1437.de/2007/05/09/a-macfuse-based-process-file-system-for-mac-os-x/Alligator Eggs!https://www.rfc1437.de/2007/05/09/alligator-eggs/Erlang For The Practical Manhttps://www.rfc1437.de/2007/05/09/erlang-for-the-practical-man/Ertrunken in der Datenflut - “Man kann mit solchen Maßnahmen nichts verhindern”https://www.rfc1437.de/2007/05/09/ertrunken-in-der-datenflut-man-kann-mit-solchen/Evolved Virtual Creatureshttps://www.rfc1437.de/2007/05/09/evolved-virtual-creatures/Lambda Associates Home Pagehttps://www.rfc1437.de/2007/05/09/lambda-associates-home-page/Linuxtag mit Schirmherr Wolfgang Schäublehttps://www.rfc1437.de/2007/05/09/linuxtag-mit-schirmherr-wolfgang-schaeuble/Philip Linden's Follyhttps://www.rfc1437.de/2007/05/09/philip-linden-s-folly/Reset Reloadedhttps://www.rfc1437.de/2007/05/09/reset-reloaded/US-Bürgerrechtler werfen Uri Geller Urheberrechtsbeugung vorhttps://www.rfc1437.de/2007/05/09/us-buergerrechtler-werfen-uri-geller/Basso gesteht Dopinghttps://www.rfc1437.de/2007/05/08/basso-gesteht-doping/Schäuble: Deutschland gehört "zu den sichersten Ländern der Welt"https://www.rfc1437.de/2007/05/08/schaeuble-deutschland-gehoert-zu-den-sichersten/Schäuble und Zypries wollen Paragraph 129 StGB auf Einzeltäter ausweitenhttps://www.rfc1437.de/2007/05/08/schaeuble-und-zypries-wollen-paragraph-129-stgb/T-Online, Adidas und Gumball 3000https://www.rfc1437.de/2007/05/08/t-online-adidas-und-gumball-3000/Desktop Factory kündigt Billig-3D-Drucker anhttps://www.rfc1437.de/2007/05/07/desktop-factory-kuendigt-billig-3d-drucker-an/impromptuhttps://www.rfc1437.de/2007/05/07/impromptu-2/JSONstore 0.2https://www.rfc1437.de/2007/05/07/jsonstore-0-2/Polizei setzt bei Kinderporno-Jagd auf private Dienstleisterhttps://www.rfc1437.de/2007/05/07/polizei-setzt-bei-kinderporno-jagd-auf-private/PyInstallerhttps://www.rfc1437.de/2007/05/07/pyinstaller/Chanalyzer Software und Wi-Spy Stickhttps://www.rfc1437.de/2007/05/06/chanalyzer-software-und-wi-spy-stick/Die Erfinder von Helmut Kohlhttps://www.rfc1437.de/2007/05/04/die-erfinder-von-helmut-kohl/JungleDisk - Reliable online storage powered by Amazon S3 ™https://www.rfc1437.de/2007/05/04/jungledisk-reliable-online-storage-powered-by/Rampant Layering Violationhttps://www.rfc1437.de/2007/05/04/rampant-layering-violation/Thursday: Biggest. Anti-Spam. Lawsuit. Ever.https://www.rfc1437.de/2007/05/04/thursday-biggest-anti-spam-lawsuit-ever/Transterpreterhttps://www.rfc1437.de/2007/05/04/transterpreter/ardourhttps://www.rfc1437.de/2007/05/03/ardour/ext3cowhttps://www.rfc1437.de/2007/05/03/ext3cow/Fraghttps://www.rfc1437.de/2007/05/03/frag-2/GLASS: Gemstone, Linux, Apache, Seaside and Smalltalkhttps://www.rfc1437.de/2007/05/03/glass-gemstone-linux-apache-seaside-and-smalltalk/Haskell vs. Erlang in einem Beispielprojekthttps://www.rfc1437.de/2007/05/03/haskell-vs-erlang-in-einem-beispielprojekt/Manually Adding DNS-SD Service Discovery Records to an Existing Name Serverhttps://www.rfc1437.de/2007/05/03/manually-adding-dns-sd-service-discovery-records/F-Scripthttps://www.rfc1437.de/2007/05/02/f-script/Vorsicht ist die Mutter der Porzelankistehttps://www.rfc1437.de/2007/05/02/vorsicht-ist-die-mutter-der-porzelankiste/fantasy mounts-Custom Creature Taxidermy-Gaffshttps://www.rfc1437.de/2007/04/27/fantasy-mounts-custom-creature-taxidermy-gaffs/Faster Page Loads With Image Concatenationhttps://www.rfc1437.de/2007/04/27/faster-page-loads-with-image-concatenation/Mark Jenkins: Street Installationshttps://www.rfc1437.de/2007/04/27/mark-jenkins-street-installations/AllegroGraphhttps://www.rfc1437.de/2007/04/26/allegrograph/Erde 2.0: ESO-Forscher entdecken bislang erdähnlichsten Exoplanetenhttps://www.rfc1437.de/2007/04/25/erde-2-0-eso-forscher-entdecken-bislang/Innenministerium: Online-Durchsuchungen längst Usushttps://www.rfc1437.de/2007/04/25/innenministerium-online-durchsuchungen-laengst/Introducing Dashcodehttps://www.rfc1437.de/2007/04/25/introducing-dashcode/Israel's 'modesty buses' draw firehttps://www.rfc1437.de/2007/04/25/israel-s-modesty-buses-draw-fire/Keine Sorge - wir passen schon gut auf Dich auf!https://www.rfc1437.de/2007/04/25/keine-sorge-wir-passen-schon-gut-auf-dich-auf/Seven JavaScript Techniques You Should Be Using Todayhttps://www.rfc1437.de/2007/04/25/seven-javascript-techniques-you-should-be-using/The Carina Nebula: Star Birth in the Extremehttps://www.rfc1437.de/2007/04/25/the-carina-nebula-star-birth-in-the-extreme/Vendetta Onlinehttps://www.rfc1437.de/2007/04/25/vendetta-online/Even CEO Can't Figure Out How RadioShack Still In Businesshttps://www.rfc1437.de/2007/04/24/even-ceo-can-t-figure-out-how-radioshack-still-in/Fingerabdrücke aus Reisepässen sollen nicht gespeichert werdenhttps://www.rfc1437.de/2007/04/24/fingerabdruecke-aus-reisepaessen-sollen-nicht/JavaScriptTemplateshttps://www.rfc1437.de/2007/04/24/javascripttemplates/major labels: the problem with musichttps://www.rfc1437.de/2007/04/24/major-labels-the-problem-with-music/terciohttps://www.rfc1437.de/2007/04/24/tercio/The Deephttps://www.rfc1437.de/2007/04/24/the-deep/The Side Effects of Truthhttps://www.rfc1437.de/2007/04/24/the-side-effects-of-truth/The universe is a string-net liquidhttps://www.rfc1437.de/2007/04/24/the-universe-is-a-string-net-liquid/Delibarhttps://www.rfc1437.de/2007/04/23/delibar/delimporthttps://www.rfc1437.de/2007/04/23/delimport/ETOS Compilerhttps://www.rfc1437.de/2007/04/23/etos-compiler/Greg Haerr's Nano-X Window System Page (previously Microwindows)https://www.rfc1437.de/2007/04/23/greg-haerr-s-nano-x-window-system-page-previously/Internet Verbindungen auf dem Machttps://www.rfc1437.de/2007/04/23/internet-verbindungen-auf-dem-mac/Last night's performance of INVINCIBLE SUMMER was disruptedhttps://www.rfc1437.de/2007/04/23/last-night-s-performance-of-invincible-summer-was/QuirksMode - for all your browser quirkshttps://www.rfc1437.de/2007/04/23/quirksmode-for-all-your-browser-quirks/Spoonhttps://www.rfc1437.de/2007/04/23/spoon/TextMate: Power Editing for the Machttps://www.rfc1437.de/2007/04/23/textmate-power-editing-for-the-mac/the messing link - home of a delicious widgethttps://www.rfc1437.de/2007/04/23/the-messing-link-home-of-a-delicious-widget/xmonad 0.1https://www.rfc1437.de/2007/04/23/xmonad-0-1/Freie Smalltalk Bücherhttps://www.rfc1437.de/2007/04/20/freie-smalltalk-buecher/Union will den "Schäuble-Katalog" in allen Punkten durchsetzenhttps://www.rfc1437.de/2007/04/20/union-will-den-schaeuble-katalog-in-allen-punkten/UseTheSource / Published Code Snippetshttps://www.rfc1437.de/2007/04/20/usethesource-published-code-snippets/Vista Smalltalk Wikihttps://www.rfc1437.de/2007/04/20/vista-smalltalk-wiki/Blacksburg: Amokläufer schickte Manifest an Senderhttps://www.rfc1437.de/2007/04/19/blacksburg-amoklaeufer-schickte-manifest-an-sender/Erlang Cookbookhttps://www.rfc1437.de/2007/04/19/erlang-cookbook/NPR : Giant Bats Snatch Birds from Night Skyhttps://www.rfc1437.de/2007/04/19/npr-giant-bats-snatch-birds-from-night-sky/Bundesinnenminister Schäuble will Grundsatz der Unschuldsvermutung aushebelnhttps://www.rfc1437.de/2007/04/18/bundesinnenminister-schaeuble-will-grundsatz-der/Gericht bestätigt Haftung des Admin-Chttps://www.rfc1437.de/2007/04/18/gericht-bestaetigt-haftung-des-admin-c/Kameliahttps://www.rfc1437.de/2007/04/18/kamelia-2/PragDave: Adding Concurrency to Our Erlang Programhttps://www.rfc1437.de/2007/04/18/pragdave-adding-concurrency-to-our-erlang-program/QuickCheck: An Automatic Testing Tool for Haskellhttps://www.rfc1437.de/2007/04/18/quickcheck-an-automatic-testing-tool-for-haskell/(The Scheme Way): Erlang or Gambit-C/Termite? A practitioner''s perspectivehttps://www.rfc1437.de/2007/04/18/the-scheme-way-erlang-or-gambit-c-termite-a/“What the fuck is informationelle Selbstbestimmung!?”https://www.rfc1437.de/2007/04/18/what-the-fuck-is-informationelle-selbstbestimmung/Wings3Dhttps://www.rfc1437.de/2007/04/18/wings3d/ChronoSynchttps://www.rfc1437.de/2007/04/17/chronosync/CouchDb Project Websitehttps://www.rfc1437.de/2007/04/17/couchdb-project-website/current workhttps://www.rfc1437.de/2007/04/17/current-work/History of the tildehttps://www.rfc1437.de/2007/04/17/history-of-the-tilde/HTML5, XHTML2, and the Future of the Webhttps://www.rfc1437.de/2007/04/17/html5-xhtml2-and-the-future-of-the-web/PragDave: A First Erlang Programhttps://www.rfc1437.de/2007/04/17/pragdave-a-first-erlang-program/Translation From PR-Speak to English of Selected Portions of Rails Developer David Heinemeier Hansson’s Response to Alex Payne’s Interviewhttps://www.rfc1437.de/2007/04/17/translation-from-pr-speak-to-english-of-selected/Why you should be using HTML 4.01 instead of XHTMLhttps://www.rfc1437.de/2007/04/17/why-you-should-be-using-html-4-01-instead-of-xhtml/Apple - Downloads - Mac OS X - Automator Actionshttps://www.rfc1437.de/2007/04/16/apple-downloads-mac-os-x-automator-actions/automator actionshttps://www.rfc1437.de/2007/04/16/automator-actions/Automator Worldhttps://www.rfc1437.de/2007/04/16/automator-world/Doug's AppleScripts for iTuneshttps://www.rfc1437.de/2007/04/16/doug-s-applescripts-for-itunes-2/Metaluahttps://www.rfc1437.de/2007/04/16/metalua/USB-To-Ethernet Adaptors for Mac OS Xhttps://www.rfc1437.de/2007/04/16/usb-to-ethernet-adaptors-for-mac-os-x/Write Your Own Automator Actionshttps://www.rfc1437.de/2007/04/16/write-your-own-automator-actions/Google kauft DoubleClickhttps://www.rfc1437.de/2007/04/14/google-kauft-doubleclick/Speakeasy - Speed Testhttps://www.rfc1437.de/2007/04/14/speakeasy-speed-test/Vinton Cerf denkt an Internet-Neustarthttps://www.rfc1437.de/2007/04/14/vinton-cerf-denkt-an-internet-neustart/Navigation Kit für das Nokia N800 Internet Tablethttps://www.rfc1437.de/2007/04/13/navigation-kit-fuer-das-nokia-n800-internet-tablet/5 Question Interview with Twitter Developer Alex Paynehttps://www.rfc1437.de/2007/04/12/5-question-interview-with-twitter-developer-alex/Door to Door Atheistshttps://www.rfc1437.de/2007/04/12/door-to-door-atheists/Polizei soll automatisch auf digitale Passfotos zugreifen könnenhttps://www.rfc1437.de/2007/04/12/polizei-soll-automatisch-auf-digitale-passfotos/senduithttps://www.rfc1437.de/2007/04/12/senduit/Hacker reißen neues Loch in AACS-Verschlüsselunghttps://www.rfc1437.de/2007/04/11/hacker-reissen-neues-loch-in-aacs-verschluesselung/MogileFShttps://www.rfc1437.de/2007/04/11/mogilefs/RabbitMQ - Open Source Enterprise Messaginghttps://www.rfc1437.de/2007/04/11/rabbitmq-open-source-enterprise-messaging/Datenschützer schlagen Alarm: US-Geheimdienst vor Kontrolle deutscher Bankdatenhttps://www.rfc1437.de/2007/04/10/datenschuetzer-schlagen-alarm-us-geheimdienst-vor/Debian 4.0 finally arrives!https://www.rfc1437.de/2007/04/10/debian-4-0-finally-arrives/IMified - Developer Communityhttps://www.rfc1437.de/2007/04/10/imified-developer-community/Just How Smart Are Ravens?https://www.rfc1437.de/2007/04/10/just-how-smart-are-ravens/kulerhttps://www.rfc1437.de/2007/04/10/kuler/Scribdhttps://www.rfc1437.de/2007/04/10/scribd/Debatte um Christian Klar: Wenn wir schon von Mord sprechenhttps://www.rfc1437.de/2007/04/06/debatte-um-christian-klar-wenn-wir-schon-von-mord/Breaking WEP in Under a Minutehttps://www.rfc1437.de/2007/04/05/breaking-wep-in-under-a-minute/Dabble DB Commonshttps://www.rfc1437.de/2007/04/05/dabble-db-commons/Genossenschaftsbanken und was draus wurdehttps://www.rfc1437.de/2007/04/05/genossenschaftsbanken-und-was-draus-wurde/Globulation2https://www.rfc1437.de/2007/04/05/globulation2/BKNRhttps://www.rfc1437.de/2007/04/04/bknr/CLiki : CommonLispPrevalencehttps://www.rfc1437.de/2007/04/04/cliki-commonlispprevalence/HUNCHENTOOT - The Common Lisp web server formerly known as TBNLhttps://www.rfc1437.de/2007/04/04/hunchentoot-the-common-lisp-web-server-formerly/Lispboxhttps://www.rfc1437.de/2007/04/04/lispbox/PLEAC - Programming Language Examples Alike Cookbookhttps://www.rfc1437.de/2007/04/04/pleac-programming-language-examples-alike-cookbook/The Elephant Persistent Object Metaprotocol and Databasehttps://www.rfc1437.de/2007/04/04/the-elephant-persistent-object-metaprotocol-and/USA reklamieren "absolutes Recht" auf persönliche Daten von Europäern bei der Einreisehttps://www.rfc1437.de/2007/04/04/usa-reklamieren-absolutes-recht-auf-persoenliche/Devicescape – Connect all your wi-fi devices to any hotspot or wifi network – automatically!https://www.rfc1437.de/2007/04/03/devicescape-connect-all-your-wi-fi-devices-to-any/Französische Bahn stellt Geschwindigkeitsrekord aufhttps://www.rfc1437.de/2007/04/03/franzoesische-bahn-stellt-geschwindigkeitsrekord/Locomotivehttps://www.rfc1437.de/2007/04/03/locomotive/Scheme 48https://www.rfc1437.de/2007/04/03/scheme-48/Vista Smalltalkhttps://www.rfc1437.de/2007/04/03/vista-smalltalk/EMI Music launches DRM-free superior sound quality downloads across its entire digital repertoirehttps://www.rfc1437.de/2007/04/02/emi-music-launches-drm-free-superior-sound/Good Math, Bad Math : Damn. Damn. Damn. Damn. DAMN IT! I''m an <b>idiot</b>!https://www.rfc1437.de/2007/04/02/good-math-bad-math-damn-damn-damn-damn-damn-it-i/DjangoKithttps://www.rfc1437.de/2007/03/29/djangokit/Industrie will Raubkopierer öffentlich machenhttps://www.rfc1437.de/2007/03/29/industrie-will-raubkopierer-oeffentlich-machen/Servalhttps://www.rfc1437.de/2007/03/29/serval/Tsunghttps://www.rfc1437.de/2007/03/29/tsung/What is Eddie?https://www.rfc1437.de/2007/03/29/what-is-eddie/Open Croquet SDK 1.0https://www.rfc1437.de/2007/03/28/open-croquet-sdk-1-0/Uni-verse Homehttps://www.rfc1437.de/2007/03/28/uni-verse-home/A Sign, a Flipped Structure, and a Scientific Flameout of Epic Proportionshttps://www.rfc1437.de/2007/03/27/a-sign-a-flipped-structure-and-a-scientific/appscripthttps://www.rfc1437.de/2007/03/27/appscript/Comprehensive Erlang Archive Networkhttps://www.rfc1437.de/2007/03/27/comprehensive-erlang-archive-network/IMified - Instant Productivityhttps://www.rfc1437.de/2007/03/27/imified-instant-productivity/Skeptico: Pretty soon…https://www.rfc1437.de/2007/03/27/skeptico-pretty-soon/Emergent Technologies Inc. -- LMI K-Machinehttps://www.rfc1437.de/2007/03/26/emergent-technologies-inc-lmi-k-machine/Gtk+ for Mac OS Xhttps://www.rfc1437.de/2007/03/26/gtk-for-mac-os-x/google-code-prettify - Google Codehttps://www.rfc1437.de/2007/03/23/google-code-prettify-google-code/LambdaVM - The Haskell to Java Translatorhttps://www.rfc1437.de/2007/03/23/lambdavm-the-haskell-to-java-translator/10 Most Magnificent Trees in the World.https://www.rfc1437.de/2007/03/22/10-most-magnificent-trees-in-the-world/Backhoehttps://www.rfc1437.de/2007/03/22/backhoe/Gymnasium verbannt Harry Potterhttps://www.rfc1437.de/2007/03/22/gymnasium-verbannt-harry-potter/"Koran-Urteil": Empörung über Frankfurter Richterinhttps://www.rfc1437.de/2007/03/22/koran-urteil-empoerung-ueber-frankfurter-richterin/Lift Web Frameworkhttps://www.rfc1437.de/2007/03/22/lift-web-framework/Maya -> Second Life : Beta versionhttps://www.rfc1437.de/2007/03/22/maya-second-life-beta-version/The Scala Programming Languagehttps://www.rfc1437.de/2007/03/22/the-scala-programming-language/HyperLook (aka HyperNeWS (aka GoodNeWS))https://www.rfc1437.de/2007/03/21/hyperlook-aka-hypernews-aka-goodnews/N800 & Video playbackhttps://www.rfc1437.de/2007/03/21/n800-video-playback/SPD-Sprecher: Online-Durchsuchungen kommen auf jeden Fallhttps://www.rfc1437.de/2007/03/21/spd-sprecher-online-durchsuchungen-kommen-auf/"Sprachlicher Verbraucherschutz": Union gegen Denglischhttps://www.rfc1437.de/2007/03/21/sprachlicher-verbraucherschutz-union-gegen/[sugar] Ideas for Sugar development environment from HyperLookSimCityhttps://www.rfc1437.de/2007/03/21/sugar-ideas-for-sugar-development-environment/Amnesty™ Singleshttps://www.rfc1437.de/2007/03/19/amnesty-singles/EURion constellationhttps://www.rfc1437.de/2007/03/19/eurion-constellation/SQLite Introductionhttps://www.rfc1437.de/2007/03/19/sqlite-introduction/weil sich ein paar Leute gewundert hattenhttps://www.rfc1437.de/2007/03/19/weil-sich-ein-paar-leute-gewundert-hatten/Federal Patent Court declares FAT patent of Microsoft null and voidhttps://www.rfc1437.de/2007/03/16/federal-patent-court-declares-fat-patent-of/JavaScript for the Macintoshhttps://www.rfc1437.de/2007/03/16/javascript-for-the-macintosh/Lingon by Peter Borghttps://www.rfc1437.de/2007/03/16/lingon-by-peter-borg/NetworkLocationhttps://www.rfc1437.de/2007/03/16/networklocation/Python, Django and DB2: we need your input!https://www.rfc1437.de/2007/03/16/python-django-and-db2-we-need-your-input/Script Debugger 4.0https://www.rfc1437.de/2007/03/16/script-debugger-4-0/LSL Module For BBEdit/TextWranglerhttps://www.rfc1437.de/2007/03/15/lsl-module-for-bbedit-textwrangler/Programming Erlanghttps://www.rfc1437.de/2007/03/15/programming-erlang/Shill (LSL syntax files)https://www.rfc1437.de/2007/03/15/shill-lsl-syntax-files/Bericht: OpenBSD-Entwickler wollten kritische Lücke kleinredenhttps://www.rfc1437.de/2007/03/14/bericht-openbsd-entwickler-wollten-kritische/Gen-Mais: Ratten zeigen Schäden an Leber und Nierenhttps://www.rfc1437.de/2007/03/14/gen-mais-ratten-zeigen-schaeden-an-leber-und/Mono on Nokia 770/800https://www.rfc1437.de/2007/03/14/mono-on-nokia-770-800/Nochmal PicoLisphttps://www.rfc1437.de/2007/03/14/nochmal-picolisp-2/Pico Lisphttps://www.rfc1437.de/2007/03/14/pico-lisp/Polen: Minister will "homosexuelle Agitation" verbietenhttps://www.rfc1437.de/2007/03/14/polen-minister-will-homosexuelle-agitation/SCIgen - An Automatic CS Paper Generatorhttps://www.rfc1437.de/2007/03/14/scigen-an-automatic-cs-paper-generator/Leica 25mm F1.4 Four Thirds lenshttps://www.rfc1437.de/2007/03/12/leica-25mm-f1-4-four-thirds-lens/Sigma DP1https://www.rfc1437.de/2007/03/12/sigma-dp1/Alioth: Debian Root Software Raid Documentation: Detail: 303419 XFS issue / solutionhttps://www.rfc1437.de/2007/03/11/alioth-debian-root-software-raid-documentation/Debian Administration :: Migrating To RAID1 Mirror on Sargehttps://www.rfc1437.de/2007/03/10/debian-administration-migrating-to-raid1-mirror/RAID-1, Part 2 | Linux Journalhttps://www.rfc1437.de/2007/03/10/raid-1-part-2-linux-journal/Cargo Cult Sciencehttps://www.rfc1437.de/2007/02/22/cargo-cult-science/Bewährungsstrafen für FTPWelt-Betreiberhttps://www.rfc1437.de/2007/02/21/bewaehrungsstrafen-fuer-ftpwelt-betreiber/Darwin Streaming Server unter Ubuntu/Debianhttps://www.rfc1437.de/2007/02/21/darwin-streaming-server-unter-ubuntu-debian/QuickTime Broadcasterhttps://www.rfc1437.de/2007/02/21/quicktime-broadcaster/rtsp.org: Real Time Streaming Protocol (RTSP) Information and Updateshttps://www.rfc1437.de/2007/02/21/rtsp-org-real-time-streaming-protocol-rtsp/Streaming mit Linuxhttps://www.rfc1437.de/2007/02/21/streaming-mit-linux/Using Nicecast with Streaming Serverhttps://www.rfc1437.de/2007/02/21/using-nicecast-with-streaming-server/Build Me A Tapewormhttps://www.rfc1437.de/2007/02/20/build-me-a-tapeworm/rziphttps://www.rfc1437.de/2007/02/20/rzip/Die Mehrheit der Schweigerhttps://www.rfc1437.de/2007/02/19/die-mehrheit-der-schweiger/Jungerl - a dense and chaotic Jungle of Erlang codehttps://www.rfc1437.de/2007/02/19/jungerl-a-dense-and-chaotic-jungle-of-erlang-code/personal computers will never have gigabytes of RAMhttps://www.rfc1437.de/2007/02/16/personal-computers-will-never-have-gigabytes-of/GrandPerspectivehttps://www.rfc1437.de/2007/02/15/grandperspective/The largest drain hole in the worldhttps://www.rfc1437.de/2007/02/14/the-largest-drain-hole-in-the-world/Schneier on DRM in Windows Vistahttps://www.rfc1437.de/2007/02/13/schneier-on-drm-in-windows-vista/Scientist finds new ocean in inner earthhttps://www.rfc1437.de/2007/02/13/scientist-finds-new-ocean-in-inner-earth/soaplibhttps://www.rfc1437.de/2007/02/13/soaplib/botohttps://www.rfc1437.de/2007/02/12/boto/Jython 2.2 Betahttps://www.rfc1437.de/2007/02/12/jython-2-2-beta/Caught in the Networkhttps://www.rfc1437.de/2007/02/09/caught-in-the-network/Politiker gegen Einbürgerung von Kurnazhttps://www.rfc1437.de/2007/02/09/politiker-gegen-einbuergerung-von-kurnaz/Schäuble: Trojaner sollen auch private Tagebücher durchsuchenhttps://www.rfc1437.de/2007/02/09/schaeuble-trojaner-sollen-auch-private/Yahoos kleine Mashup-Revolutionhttps://www.rfc1437.de/2007/02/09/yahoos-kleine-mashup-revolution/Asimov, "What is Intelligence?"https://www.rfc1437.de/2007/02/08/asimov-what-is-intelligence/» Wi-Fi hacking, with a handheld PDAhttps://www.rfc1437.de/2007/02/08/wi-fi-hacking-with-a-handheld-pda/Older than the sun, the meteorite scientists call ''the real time machine''https://www.rfc1437.de/2007/02/07/older-than-the-sun-the-meteorite-scientists-call/The Pi-Search Pagehttps://www.rfc1437.de/2007/02/07/the-pi-search-page/Useless Accounthttps://www.rfc1437.de/2007/02/07/useless-account/Linux-Vserver on Debian Testing (Etch), the easy wayhttps://www.rfc1437.de/2007/02/06/linux-vserver-on-debian-testing-etch-the-easy-way/Adiumhttps://www.rfc1437.de/2007/02/05/adium/DocuColor Tracking Dot Decoding Guidehttps://www.rfc1437.de/2007/02/05/docucolor-tracking-dot-decoding-guide/''Electric Slide'' on slippery DMCA slopehttps://www.rfc1437.de/2007/02/05/electric-slide-on-slippery-dmca-slope/Heimliche Online-Durchsuchungen sind unzulässighttps://www.rfc1437.de/2007/02/05/heimliche-online-durchsuchungen-sind-unzulaessig/Schäuble heizt nach BGH-Urteil Debatte um Online-Durchsuchung anhttps://www.rfc1437.de/2007/02/05/schaeuble-heizt-nach-bgh-urteil-debatte-um-online/Slimbox, the ultimate lightweight Lightbox clonehttps://www.rfc1437.de/2007/02/05/slimbox-the-ultimate-lightweight-lightbox-clone/Gothia Gazettehttps://www.rfc1437.de/2007/02/02/gothia-gazette/ModWsgihttps://www.rfc1437.de/2007/02/02/modwsgi/Non-Terrorist Embarrassment in Bostonhttps://www.rfc1437.de/2007/02/02/non-terrorist-embarrassment-in-boston/We need to remove this access barrier before it gets put up. (Incandescent lighting ban in California.)https://www.rfc1437.de/2007/02/02/we-need-to-remove-this-access-barrier-before-it/An Iron Curtain is Descending: And Most Americans Don''t Knowhttps://www.rfc1437.de/2007/02/01/an-iron-curtain-is-descending-and-most-americans/Courtney Love does the mathhttps://www.rfc1437.de/2007/02/01/courtney-love-does-the-math/King Mojohttps://www.rfc1437.de/2007/02/01/king-mojo/US urges scientists to block out sunhttps://www.rfc1437.de/2007/01/31/us-urges-scientists-to-block-out-sun/Village May Have Housed Builders of Stonehengehttps://www.rfc1437.de/2007/01/31/village-may-have-housed-builders-of-stonehenge/Worldmapper: The world as you''ve never seen it beforehttps://www.rfc1437.de/2007/01/31/worldmapper-the-world-as-you-ve-never-seen-it/Yes - in 10 years we may have no bananashttps://www.rfc1437.de/2007/01/31/yes-in-10-years-we-may-have-no-bananas/Auf in den Überwachungsstaathttps://www.rfc1437.de/2007/01/30/auf-in-den-ueberwachungsstaat/''Hobbit'' human ''is a new species''https://www.rfc1437.de/2007/01/30/hobbit-human-is-a-new-species/Legal wrangle puts India's generic drugs at riskhttps://www.rfc1437.de/2007/01/30/legal-wrangle-puts-india-s-generic-drugs-at-risk/Microsoft copies BlueJ, admits it, then patents ithttps://www.rfc1437.de/2007/01/29/microsoft-copies-bluej-admits-it-then-patents-it/SOLL & HABEN: Die Doppelmoral des Rechtsanwalts Joachim N. Steinhöfelhttps://www.rfc1437.de/2007/01/29/soll-haben-die-doppelmoral-des-rechtsanwalts/Blogs mit Link-Redirector haben doofe Ohrenhttps://www.rfc1437.de/2007/01/26/blogs-mit-link-redirector-haben-doofe-ohren/Life Is Complicatedhttps://www.rfc1437.de/2007/01/26/life-is-complicated/Mindestlöhne in Europahttps://www.rfc1437.de/2007/01/26/mindestloehne-in-europa/Musikindustrie: Regierung will Urheberrecht zum "zahnlosen Tiger" machenhttps://www.rfc1437.de/2007/01/26/musikindustrie-regierung-will-urheberrecht-zum/Willard Wigan :: Micro Sculptorhttps://www.rfc1437.de/2007/01/26/willard-wigan-micro-sculptor/Exotischer Tiefseehai ins Netz gegangenhttps://www.rfc1437.de/2007/01/25/exotischer-tiefseehai-ins-netz-gegangen/frozen waveshttps://www.rfc1437.de/2007/01/25/frozen-waves/Interview with muslix64, Developer of BackupHDDVDhttps://www.rfc1437.de/2007/01/25/interview-with-muslix64-developer-of-backuphddvd/"Münstersche Zeitung": Verleger stellt ganze Redaktion kalthttps://www.rfc1437.de/2007/01/25/muenstersche-zeitung-verleger-stellt-ganze/Reddit.com User Agreementhttps://www.rfc1437.de/2007/01/25/reddit-com-user-agreement/Regular Expression Matching Can Be Simple And Fasthttps://www.rfc1437.de/2007/01/25/regular-expression-matching-can-be-simple-and-fast/The Text Editor samhttps://www.rfc1437.de/2007/01/25/the-text-editor-sam/The truth about working in the IT industryhttps://www.rfc1437.de/2007/01/25/the-truth-about-working-in-the-it-industry/Literature and Latte - Scrivenerhttps://www.rfc1437.de/2007/01/24/literature-and-latte-scrivener/Pando (tree)https://www.rfc1437.de/2007/01/24/pando-tree/Bundestag: Abhörgeräte in Abgeordnetenbüro?https://www.rfc1437.de/2007/01/23/bundestag-abhoergeraete-in-abgeordnetenbuero/IronPython und libsecondlifehttps://www.rfc1437.de/2007/01/23/ironpython-und-libsecondlife/macfusehttps://www.rfc1437.de/2007/01/23/macfuse/.NET Languageshttps://www.rfc1437.de/2007/01/23/net-languages/News -Anfängerfehler in Mac OS Xhttps://www.rfc1437.de/2007/01/23/news-anfaengerfehler-in-mac-os-x/Rinderbraten und Brötchenhttps://www.rfc1437.de/2007/01/23/rinderbraten-und-broetchen/identiconhttps://www.rfc1437.de/2007/01/22/identicon/M is for monkeyhttps://www.rfc1437.de/2007/01/22/m-is-for-monkey/Geschichte ab 1945https://www.rfc1437.de/2007/01/19/geschichte-ab-1945/Pointless Sites - Useless Siteshttps://www.rfc1437.de/2007/01/19/pointless-sites-useless-sites/Polyglothttps://www.rfc1437.de/2007/01/19/polyglot/Tupper's Self-Referential Formulahttps://www.rfc1437.de/2007/01/19/tupper-s-self-referential-formula/Bill & M. Gates foundation for-profit investments harm the health & environment of the poorhttps://www.rfc1437.de/2007/01/18/bill-m-gates-foundation-for-profit-investments/Think Gloves!https://www.rfc1437.de/2007/01/18/think-gloves/Think Gloveshttps://www.rfc1437.de/2007/01/18/think-gloves-2/Nutzerdaten sollen zur Gefahrenabwehr freigeben werdenhttps://www.rfc1437.de/2007/01/17/nutzerdaten-sollen-zur-gefahrenabwehr-freigeben/Python for Maemohttps://www.rfc1437.de/2007/01/17/python-for-maemo/Second Life - warum?https://www.rfc1437.de/2007/01/17/second-life-warum/Take The AQ Testhttps://www.rfc1437.de/2007/01/16/take-the-aq-test/DIY Guide: Your own Supervillain Hideout aka tailrace tunnel of Niagarahttps://www.rfc1437.de/2007/01/15/diy-guide-your-own-supervillain-hideout-aka/Entity Crisis: Unity3D Evaluated. Wow.https://www.rfc1437.de/2007/01/15/entity-crisis-unity3d-evaluated-wow/Generalverdacht gegen alle Kreditkartenbesitzerhttps://www.rfc1437.de/2007/01/15/generalverdacht-gegen-alle-kreditkartenbesitzer/Photography of the Unexpected and Neglected Architecture - Yves Marchand & Romain Meffrehttps://www.rfc1437.de/2007/01/15/photography-of-the-unexpected-and-neglected/The Jaquet-Droz androids, three extraordinary automatonshttps://www.rfc1437.de/2007/01/15/the-jaquet-droz-androids-three-extraordinary/XO Wavehttps://www.rfc1437.de/2007/01/15/xo-wave/2006 Darwin Awardshttps://www.rfc1437.de/2007/01/12/2006-darwin-awards/macfusehttps://www.rfc1437.de/2007/01/12/macfuse-2/Mehr Schweine als Menschen in Niedersachsenhttps://www.rfc1437.de/2007/01/12/mehr-schweine-als-menschen-in-niedersachsen/Robert A. Wilson gestorbenhttps://www.rfc1437.de/2007/01/12/robert-a-wilson-gestorben/soviet roadside bus-stopshttps://www.rfc1437.de/2007/01/12/soviet-roadside-bus-stops/eBayhttps://www.rfc1437.de/2007/01/11/ebay/Mindestlohnhttps://www.rfc1437.de/2007/01/11/mindestlohn/StudiVZ: "Gegendarstellung" per Defacement [Update]https://www.rfc1437.de/2007/01/11/studivz-gegendarstellung-per-defacement-update/Tappt Blu-ray in die Anti-Porno-Falle?https://www.rfc1437.de/2007/01/11/tappt-blu-ray-in-die-anti-porno-falle/Zwei Programmierstellen für den "Bundestrojaner"https://www.rfc1437.de/2007/01/11/zwei-programmierstellen-fuer-den-bundestrojaner/Fab @ Homehttps://www.rfc1437.de/2007/01/10/fab-home/GeeXboX uShare UPnP A/V Media Server HomePagehttps://www.rfc1437.de/2007/01/10/geexbox-ushare-upnp-a-v-media-server-homepage/Magnatune: free MP3 music and music licensinghttps://www.rfc1437.de/2007/01/10/magnatune-free-mp3-music-and-music-licensing/Need a Painter?https://www.rfc1437.de/2007/01/10/need-a-painter/RepRaphttps://www.rfc1437.de/2007/01/10/reprap/towboathttps://www.rfc1437.de/2007/01/10/towboat/Wikipedia Skinshttps://www.rfc1437.de/2007/01/10/wikipedia-skins/Correo - a new mail client for OS Xhttps://www.rfc1437.de/2007/01/09/correo-a-new-mail-client-for-os-x/If You Don’t Have the Balls to be Hated, Then You Don’t Deserve to be Lovedhttps://www.rfc1437.de/2007/01/09/if-you-don-t-have-the-balls-to-be-hated-then-you/Kinderpornografie im Internet: Fahnder überprüfen erstmals alle deutschen Kreditkartenhttps://www.rfc1437.de/2007/01/09/kinderpornografie-im-internet-fahnder/chaostables - Ideas for firewallinghttps://www.rfc1437.de/2007/01/08/chaostables-ideas-for-firewalling/Free Will: Now You Have It, Now You Don’thttps://www.rfc1437.de/2007/01/08/free-will-now-you-have-it-now-you-don-t/Look around youhttps://www.rfc1437.de/2007/01/08/look-around-you/Max (Macintosh Audio for OS X)https://www.rfc1437.de/2007/01/08/max-macintosh-audio-for-os-x/Momofuku Andohttps://www.rfc1437.de/2007/01/08/momofuku-ando/Nokia N800 is now public & available!https://www.rfc1437.de/2007/01/08/nokia-n800-is-now-public-available/Ophcrackhttps://www.rfc1437.de/2007/01/08/ophcrack/Second life goes open sourcehttps://www.rfc1437.de/2007/01/08/second-life-goes-open-source/Skype für das Nokia Tablethttps://www.rfc1437.de/2007/01/08/skype-fuer-das-nokia-tablet/What really happened on Mars? -- Authoritative Accounthttps://www.rfc1437.de/2007/01/08/what-really-happened-on-mars-authoritative-account/GWUP - Willkommen bei den Skeptikern!https://www.rfc1437.de/2007/01/04/gwup-willkommen-bei-den-skeptikern/Health Of Brazilian Rainforest Depends On Dust From One Valley In Africahttps://www.rfc1437.de/2007/01/04/health-of-brazilian-rainforest-depends-on-dust/Amazon mystery: pricing of bookshttps://www.rfc1437.de/2007/01/03/amazon-mystery-pricing-of-books/Der VRS fördert minderjährige Raucher!https://www.rfc1437.de/2007/01/03/der-vrs-foerdert-minderjaehrige-raucher/FBI: Workers saw prisoner abuse at Guantanamohttps://www.rfc1437.de/2007/01/03/fbi-workers-saw-prisoner-abuse-at-guantanamo/Pegasus fliegt nicht mehrhttps://www.rfc1437.de/2007/01/03/pegasus-fliegt-nicht-mehr/soso, 2007 ...https://www.rfc1437.de/2007/01/03/soso-2007/cutmp3https://www.rfc1437.de/2006/12/29/cutmp3/Dallas Food - What's Noka Worth? (Part 1)https://www.rfc1437.de/2006/12/29/dallas-food-what-s-noka-worth-part-1/How Old is the Grand Canyon? Park Service Won't Say.https://www.rfc1437.de/2006/12/29/how-old-is-the-grand-canyon-park-service-won-t-say/Pushtunwali, Honour among themhttps://www.rfc1437.de/2006/12/28/pushtunwali-honour-among-them/SLeekhttps://www.rfc1437.de/2006/12/28/sleek/Der Große Bruder im privaten Computerhttps://www.rfc1437.de/2006/12/27/der-grosse-bruder-im-privaten-computer/"Billy''s Band - Clap Hands" Live at the 6th Russian Rock Festival in New Yorkhttps://www.rfc1437.de/2006/12/23/billy-s-band-clap-hands-live-at-the-6th-russian/Bildzeitung erscheint in Second Lifehttps://www.rfc1437.de/2006/12/15/bildzeitung-erscheint-in-second-life/Google Pagerank Algorithmhttps://www.rfc1437.de/2006/12/15/google-pagerank-algorithm/MySQL Quietly Drops Support for Most Linux Distributionshttps://www.rfc1437.de/2006/12/15/mysql-quietly-drops-support-for-most-linux/Olympische Abmahnung: Saftblog gibt aufhttps://www.rfc1437.de/2006/12/15/olympische-abmahnung-saftblog-gibt-auf/Real-World Passwordshttps://www.rfc1437.de/2006/12/15/real-world-passwords/john sore & his afro-safetyhttps://www.rfc1437.de/2006/12/14/john-sore-his-afro-safety/Man with no pulse considered a medical breakthroughhttps://www.rfc1437.de/2006/12/14/man-with-no-pulse-considered-a-medical/ajp-wsgihttps://www.rfc1437.de/2006/12/13/ajp-wsgi/EU-Parlament stimmt für Liberalisierung der Fernsehwerbunghttps://www.rfc1437.de/2006/12/13/eu-parlament-stimmt-fuer-liberalisierung-der/LibSecondLife-Javahttps://www.rfc1437.de/2006/12/13/libsecondlife-java/Object Debuggerhttps://www.rfc1437.de/2006/12/13/object-debugger/Retired from security@php.nethttps://www.rfc1437.de/2006/12/13/retired-from-security-php-net/BGH verbietet Online-Durchsuchung von Computersystemenhttps://www.rfc1437.de/2006/12/11/bgh-verbietet-online-durchsuchung-von/Map of the Internethttps://www.rfc1437.de/2006/12/11/map-of-the-internet/Schäuble: Internet ist "Fernuniversität und Trainingscamp" für Terroristenhttps://www.rfc1437.de/2006/12/11/schaeuble-internet-ist-fernuniversitaet-und/Fließend Wasser auf dem Marshttps://www.rfc1437.de/2006/12/07/fliessend-wasser-auf-dem-mars/Online-Durchsuchung von PCs durch Strafverfolger und Verfassungsschutzhttps://www.rfc1437.de/2006/12/07/online-durchsuchung-von-pcs-durch-strafverfolger/Putziges aus der Blogosphärehttps://www.rfc1437.de/2006/12/07/putziges-aus-der-blogosphaere/Angeblich 200.000 deutschsprachige Bombenbauanleitungen im Netzhttps://www.rfc1437.de/2006/12/06/angeblich-200-000-deutschsprachige/Crossroadshttps://www.rfc1437.de/2006/12/06/crossroads/Swivel Aims To Become The Internet Archive For Datahttps://www.rfc1437.de/2006/12/06/swivel-aims-to-become-the-internet-archive-for/Top 10 Marijuana Mythshttps://www.rfc1437.de/2006/12/06/top-10-marijuana-myths/Ball gegen Bahn: 1 zu 0https://www.rfc1437.de/2006/12/05/ball-gegen-bahn-1-zu-0/Giving It Awayhttps://www.rfc1437.de/2006/12/05/giving-it-away/Mecklenburg-Vorpommern bleibt auf Großteil der G8-Kosten sitzenhttps://www.rfc1437.de/2006/12/05/mecklenburg-vorpommern-bleibt-auf-grossteil-der/Musicovery : interactive webRadiohttps://www.rfc1437.de/2006/12/05/musicovery-interactive-webradio/You cannot rely on JavaScript being available. Period.https://www.rfc1437.de/2006/12/05/you-cannot-rely-on-javascript-being-available/Database test: dual Intel Xeon 5160 (6/6)https://www.rfc1437.de/2006/12/04/database-test-dual-intel-xeon-5160-6-6/Internationale Suche nach Hamburgs Ex-Senator Schillhttps://www.rfc1437.de/2006/12/04/internationale-suche-nach-hamburgs-ex-senator/Man kriegt es überallhttps://www.rfc1437.de/2006/12/04/man-kriegt-es-ueberall/Richard Dawkinshttps://www.rfc1437.de/2006/12/04/richard-dawkins/Sieben Milliarden für IT-Projekt der Bundeswehrhttps://www.rfc1437.de/2006/12/04/sieben-milliarden-fuer-it-projekt-der-bundeswehr/Siemens-Manager packt im Korruptionsskandal aushttps://www.rfc1437.de/2006/12/04/siemens-manager-packt-im-korruptionsskandal-aus/The Post-Rapture Post - Send Messages to Loved Ones!https://www.rfc1437.de/2006/12/04/the-post-rapture-post-send-messages-to-loved-ones/Verfassungssschützer würde Folter-Geständnisse nutzenhttps://www.rfc1437.de/2006/12/04/verfassungssschuetzer-wuerde-folter-gestaendnisse/Adobe Photoshop Textures and Patterns Tutorialshttps://www.rfc1437.de/2006/12/01/adobe-photoshop-textures-and-patterns-tutorials/"Satan and the Damned" schocken Kundenhttps://www.rfc1437.de/2006/12/01/satan-and-the-damned-schocken-kunden/Startling Discovery: The First Human Ritualhttps://www.rfc1437.de/2006/12/01/startling-discovery-the-first-human-ritual/VRML / X3D und 3D-Präsentationenhttps://www.rfc1437.de/2006/12/01/vrml-x3d-und-3d-praesentationen/Antike Feinmechanikhttps://www.rfc1437.de/2006/11/30/antike-feinmechanik/Firefoxhttps://www.rfc1437.de/2006/11/30/firefox/Kabinett beschließt Rente mit 67https://www.rfc1437.de/2006/11/30/kabinett-beschliesst-rente-mit-67/Sofanet startet Nachbarschafts-WLANhttps://www.rfc1437.de/2006/11/30/sofanet-startet-nachbarschafts-wlan/Stop Motion Piano And Drumshttps://www.rfc1437.de/2006/11/30/stop-motion-piano-and-drums/Zensurvorwürfe gegen EU-Bericht zur IT-Zukunfthttps://www.rfc1437.de/2006/11/30/zensurvorwuerfe-gegen-eu-bericht-zur-it-zukunft/3D Game Programming All in One with CDROM (Course Technology PTR Game Development Series): English Books: Kenneth C. Finneyhttps://www.rfc1437.de/2006/11/29/3d-game-programming-all-in-one-with-cdrom-course/A Leap Backhttps://www.rfc1437.de/2006/11/29/a-leap-back/The Official QuArK websitehttps://www.rfc1437.de/2006/11/29/the-official-quark-website/10 Minute Mailhttps://www.rfc1437.de/2006/11/28/10-minute-mail/4 Jahre bloggenhttps://www.rfc1437.de/2006/11/28/4-jahre-bloggen/Kopierschutz von Microsofts Zune geknackthttps://www.rfc1437.de/2006/11/28/kopierschutz-von-microsofts-zune-geknackt/3D-Atlas Gaia nicht mehr verfügbarhttps://www.rfc1437.de/2006/11/27/3d-atlas-gaia-nicht-mehr-verfuegbar/hexfiendhttps://www.rfc1437.de/2006/11/27/hexfiend/"Peinliche Pleite von Axel Schulz"https://www.rfc1437.de/2006/11/27/peinliche-pleite-von-axel-schulz/Rückkehr der Paper Disk: 256 GByte auf A4-Blatthttps://www.rfc1437.de/2006/11/27/rueckkehr-der-paper-disk-256-gbyte-auf-a4-blatt/Übereifrige Spam-Blockliste sperrt Server4You-Adressenhttps://www.rfc1437.de/2006/11/27/uebereifrige-spam-blockliste-sperrt-server4you/Wenn die Anti-Korruptionsabteilung bei der Korruption beteiligt isthttps://www.rfc1437.de/2006/11/27/wenn-die-anti-korruptionsabteilung-bei-der/EU darf Bankdaten nicht an die USA übermittelnhttps://www.rfc1437.de/2006/11/24/eu-darf-bankdaten-nicht-an-die-usa-uebermitteln/FairGamehttps://www.rfc1437.de/2006/11/24/fairgame/Gefälschte Waren gefährden Second Lifehttps://www.rfc1437.de/2006/11/24/gefaelschte-waren-gefaehrden-second-life/M8, a missed opportunityhttps://www.rfc1437.de/2006/11/24/m8-a-missed-opportunity/Mannesmann-Prozess vor dem Aushttps://www.rfc1437.de/2006/11/24/mannesmann-prozess-vor-dem-aus/StudiVZ: 700 Stalker und der Datenschutzhttps://www.rfc1437.de/2006/11/24/studivz-700-stalker-und-der-datenschutz/Owl Contenthttps://www.rfc1437.de/2006/11/23/owl-content-2/Tausende Strafverfahren gegen Internet-Kaffeekäuferhttps://www.rfc1437.de/2006/11/23/tausende-strafverfahren-gegen-internet/Flickr: Camera Finderhttps://www.rfc1437.de/2006/11/22/flickr-camera-finder/kontrollierte Heroinabgabe vor dem Aus?https://www.rfc1437.de/2006/11/22/kontrollierte-heroinabgabe-vor-dem-aus/SAP Network usehttps://www.rfc1437.de/2006/11/22/sap-network-use/The Rolex Awards: a cheap technique for food preservation, M. B. Abbahttps://www.rfc1437.de/2006/11/22/the-rolex-awards-a-cheap-technique-for-food/United States Patent Application: 0060242178https://www.rfc1437.de/2006/11/22/united-states-patent-application-0060242178/3D Game Textures: Create Professional Game Art Using Photoshop: Books: Luke Ahearnhttps://www.rfc1437.de/2006/11/21/3d-game-textures-create-professional-game-art/Coccinella | Jabber client with integrated whiteboardhttps://www.rfc1437.de/2006/11/21/coccinella-jabber-client-with-integrated/Forderungen nach Verbot von Killerspielen werden lauterhttps://www.rfc1437.de/2006/11/21/forderungen-nach-verbot-von-killerspielen-werden/The Dark Side of Game Texturing: Books: David Fransonhttps://www.rfc1437.de/2006/11/21/the-dark-side-of-game-texturing-books-david/Cracked it!https://www.rfc1437.de/2006/11/20/cracked-it/Getting Cute with the GPLhttps://www.rfc1437.de/2006/11/20/getting-cute-with-the-gpl/Microsoft-Chef: Linux "nutzt unser geistiges Eigentum"https://www.rfc1437.de/2006/11/20/microsoft-chef-linux-nutzt-unser-geistiges/Online-Preisvergleich für Zahnarztpatienten untersagthttps://www.rfc1437.de/2006/11/20/online-preisvergleich-fuer-zahnarztpatienten/Schiesserei an Schule in Emsdettenhttps://www.rfc1437.de/2006/11/20/schiesserei-an-schule-in-emsdetten/Stopping spam with the Anti-Spam-SMTP-Proxy (ASSP)https://www.rfc1437.de/2006/11/20/stopping-spam-with-the-anti-spam-smtp-proxy-assp/If I dig a very deep hole, where I go to stop?https://www.rfc1437.de/2006/11/16/if-i-dig-a-very-deep-hole-where-i-go-to-stop/The Zfone Projecthttps://www.rfc1437.de/2006/11/16/the-zfone-project/E-Mail-Konto nur noch gegen Personalausweis?https://www.rfc1437.de/2006/11/15/e-mail-konto-nur-noch-gegen-personalausweis/StudiVZ - Der Hitler-Screenshot und der Käufer Facebookhttps://www.rfc1437.de/2006/11/15/studivz-der-hitler-screenshot-und-der-kaeufer/Der Lotto-Zwangsproxyhttps://www.rfc1437.de/2006/11/13/der-lotto-zwangsproxy/E-Votinghttps://www.rfc1437.de/2006/11/13/e-voting/Freie Wähler fühlen sich erpresst: Koch weist Vorwürfe als "absurd" zurückhttps://www.rfc1437.de/2006/11/13/freie-waehler-fuehlen-sich-erpresst-koch-weist/Merkel plädiert für mehr Überwachung trotz hoher Sicherheithttps://www.rfc1437.de/2006/11/13/merkel-plaediert-fuer-mehr-ueberwachung-trotz/Guidelines for Platonic Friendshiphttps://www.rfc1437.de/2006/11/10/guidelines-for-platonic-friendship/JMRI Defense: Our Story So Farhttps://www.rfc1437.de/2006/11/10/jmri-defense-our-story-so-far/Richter stärken Datenschutz für Versichertehttps://www.rfc1437.de/2006/11/10/richter-staerken-datenschutz-fuer-versicherte/Basso zu Discoveryhttps://www.rfc1437.de/2006/11/09/basso-zu-discovery/Croatia - Plitvicka Jezera National Park - waterfalls, Plitvicka, Croatiahttps://www.rfc1437.de/2006/11/09/croatia-plitvicka-jezera-national-park-waterfalls/Innenminister Schünemann: T-Mobile behindert Strafverfolgunghttps://www.rfc1437.de/2006/11/09/innenminister-schuenemann-t-mobile-behindert/TEH INTERNETShttps://www.rfc1437.de/2006/11/09/teh-internets/Woo Math: Steiner and Theosophical Mathhttps://www.rfc1437.de/2006/11/09/woo-math-steiner-and-theosophical-math/CSSEdithttps://www.rfc1437.de/2006/11/08/cssedit/Die Mythen der Arbeitgeberhttps://www.rfc1437.de/2006/11/08/die-mythen-der-arbeitgeber/Fefe's Bloghttps://www.rfc1437.de/2006/11/08/fefe-s-blog/JumpBoxhttps://www.rfc1437.de/2006/11/08/jumpbox/Perian - The swiss-army knife of QuickTime® componentshttps://www.rfc1437.de/2006/11/08/perian-the-swiss-army-knife-of-quicktime/Statistiken über Copyright-Verstöße sind übertriebenhttps://www.rfc1437.de/2006/11/08/statistiken-ueber-copyright-verstoesse-sind/Studie: Jeder vierte Deutsche wünscht sich eine einzige Partei der “Volksgemeinschaft”https://www.rfc1437.de/2006/11/08/studie-jeder-vierte-deutsche-wuenscht-sich-eine/Datenschützer spricht offen vom Weg in den Überwachungsstaathttps://www.rfc1437.de/2006/11/07/datenschuetzer-spricht-offen-vom-weg-in-den/Efficient JavaScripthttps://www.rfc1437.de/2006/11/07/efficient-javascript/Fission for Mac OS Xhttps://www.rfc1437.de/2006/11/07/fission-for-mac-os-x/incheshttps://www.rfc1437.de/2006/11/07/inches/Light Zonehttps://www.rfc1437.de/2006/11/07/light-zone/Personalauswahl per Gesichtsanalyse: Verräterische Beule am Kopfhttps://www.rfc1437.de/2006/11/07/personalauswahl-per-gesichtsanalyse/Urteil: T-Online darf Verbindungsdaten nicht speichernhttps://www.rfc1437.de/2006/11/07/urteil-t-online-darf-verbindungsdaten-nicht/VIA schließt Treiberquellenhttps://www.rfc1437.de/2006/11/07/via-schliesst-treiberquellen/World Mysteries - Voynich Manuscripthttps://www.rfc1437.de/2006/11/07/world-mysteries-voynich-manuscript/Ballmer Invites Patent Talks with Competing Linux Vendorshttps://www.rfc1437.de/2006/11/06/ballmer-invites-patent-talks-with-competing-linux/Bill Gates warnt vor digitaler Spaltung in Deutschlandhttps://www.rfc1437.de/2006/11/06/bill-gates-warnt-vor-digitaler-spaltung-in/Brandenburg: Neonazis schlagen Journalistin niederhttps://www.rfc1437.de/2006/11/06/brandenburg-neonazis-schlagen-journalistin-nieder/Kündigungsschutz: Glos'' Pläne in der Kritikhttps://www.rfc1437.de/2006/11/06/kuendigungsschutz-glos-plaene-in-der-kritik/Millionen Europäer saßen im Dunkelnhttps://www.rfc1437.de/2006/11/06/millionen-europaeer-sassen-im-dunkeln/Programming in Colorhttps://www.rfc1437.de/2006/11/06/programming-in-color/Torque : TGEhttps://www.rfc1437.de/2006/11/06/torque-tge/Britischer Angriff auf die Telekomhttps://www.rfc1437.de/2006/11/03/britischer-angriff-auf-die-telekom/Das Ende von Second Life: Bild kommt!https://www.rfc1437.de/2006/11/03/das-ende-von-second-life-bild-kommt/Korrumpierte Pharma-Forschunghttps://www.rfc1437.de/2006/11/03/korrumpierte-pharma-forschung/Man removes sharp hand tool from rear at gunpointhttps://www.rfc1437.de/2006/11/03/man-removes-sharp-hand-tool-from-rear-at-gunpoint/THANK GOODNESS! by Daniel C Dennetthttps://www.rfc1437.de/2006/11/03/thank-goodness-by-daniel-c-dennett/The Parable of the Two Programmershttps://www.rfc1437.de/2006/11/03/the-parable-of-the-two-programmers/With Microscope and Tweezers: Chronologyhttps://www.rfc1437.de/2006/11/03/with-microscope-and-tweezers-chronology/Artists in Metal—Mark Hohttps://www.rfc1437.de/2006/11/02/artists-in-metal-mark-ho/Explosion erschüttert PayPal-Hauptquartierhttps://www.rfc1437.de/2006/11/02/explosion-erschuettert-paypal-hauptquartier/Geldscheine lösen sich aufhttps://www.rfc1437.de/2006/11/02/geldscheine-loesen-sich-auf/Jamendo : Mach die Ohren aufhttps://www.rfc1437.de/2006/11/02/jamendo-mach-die-ohren-auf/Nasa will Weltraumteleskop Hubble doch reparierenhttps://www.rfc1437.de/2006/11/02/nasa-will-weltraumteleskop-hubble-doch-reparieren/The "C is Efficient" Language Fallacyhttps://www.rfc1437.de/2006/11/02/the-c-is-efficient-language-fallacy/The Django Bookhttps://www.rfc1437.de/2006/11/02/the-django-book/Weniger Rechte für Personalräte im öffentlichen Diensthttps://www.rfc1437.de/2006/11/02/weniger-rechte-fuer-personalraete-im/World''s smallest fish title in dispute, new marine species is 20% smallerhttps://www.rfc1437.de/2006/11/02/world-s-smallest-fish-title-in-dispute-new-marine/Charlie's Diary: "The book is not that interesting, as tales of desperation and survival are actually quite common."https://www.rfc1437.de/2006/10/31/charlie-s-diary-the-book-is-not-that-interesting/Converting Pi to binaryhttps://www.rfc1437.de/2006/10/31/converting-pi-to-binary/Electronic Voting Machineshttps://www.rfc1437.de/2006/10/31/electronic-voting-machines/Leica M8 Reviewhttps://www.rfc1437.de/2006/10/31/leica-m8-review/SDU-Wahlcomputer von niederländischen Parlamentswahlen ausgeschlossenhttps://www.rfc1437.de/2006/10/31/sdu-wahlcomputer-von-niederlaendischen/Six Word Stories about Programming Languageshttps://www.rfc1437.de/2006/10/31/six-word-stories-about-programming-languages/Skandal um Protestaktion privater Krankenkassenhttps://www.rfc1437.de/2006/10/31/skandal-um-protestaktion-privater-krankenkassen/Small crimes against the planethttps://www.rfc1437.de/2006/10/31/small-crimes-against-the-planet/Staatsanwaltschaft darf GVU nicht bei Urheberrechtsermittlungen beiziehenhttps://www.rfc1437.de/2006/10/31/staatsanwaltschaft-darf-gvu-nicht-bei/Alice and Bobhttps://www.rfc1437.de/2006/10/30/alice-and-bob/Good Math, Bad Math : Pathological Programming: Ignorance is Bliss, or at least control.https://www.rfc1437.de/2006/10/30/good-math-bad-math-pathological-programming/Good Math, Bad Math : Prime Number Pathology: Fractranhttps://www.rfc1437.de/2006/10/30/good-math-bad-math-prime-number-pathology-fractran/Molecule of the Day: L-Methamphetamine (Would you believe this is over the counter?)https://www.rfc1437.de/2006/10/30/molecule-of-the-day-l-methamphetamine-would-you/"Push! push! push!"https://www.rfc1437.de/2006/10/30/push-push-push/WebSnaprhttps://www.rfc1437.de/2006/10/30/websnapr/Weichensteller krank: Bahnstrecke stundenlang gesperrthttps://www.rfc1437.de/2006/10/30/weichensteller-krank-bahnstrecke-stundenlang/Bundesregierung will Kundendaten für vorbeugende Straftatenbekämpfunghttps://www.rfc1437.de/2006/10/27/bundesregierung-will-kundendaten-fuer-vorbeugende/Der Wahlschrankhttps://www.rfc1437.de/2006/10/27/der-wahlschrank/Dubioser Verein mahnt massenhaft eBay-Händler abhttps://www.rfc1437.de/2006/10/27/dubioser-verein-mahnt-massenhaft-ebay-haendler-ab/Miss Congenialityhttps://www.rfc1437.de/2006/10/27/miss-congeniality/OpenGL Tools for Serious Graphics Developmenthttps://www.rfc1437.de/2006/10/27/opengl-tools-for-serious-graphics-development/Oracle Linux uncoveredhttps://www.rfc1437.de/2006/10/27/oracle-linux-uncovered/The elephant and the event horizonhttps://www.rfc1437.de/2006/10/27/the-elephant-and-the-event-horizon/The Victorian Internethttps://www.rfc1437.de/2006/10/27/the-victorian-internet/Analyse von SpamThruhttps://www.rfc1437.de/2006/10/25/analyse-von-spamthru/Bericht der CCC-Wahlbeobachtergruppe von der Oberbürgermeisterwahl in Cottbushttps://www.rfc1437.de/2006/10/25/bericht-der-ccc-wahlbeobachtergruppe-von-der/Elektrosmog : Heiße Gesprächehttps://www.rfc1437.de/2006/10/25/elektrosmog-heisse-gespraeche/LEG wird privatisierthttps://www.rfc1437.de/2006/10/25/leg-wird-privatisiert/Mac OS X "Leopard" mit erweiterter Zugriffskontrollehttps://www.rfc1437.de/2006/10/25/mac-os-x-leopard-mit-erweiterter-zugriffskontrolle/new snapshot tarballs finallyhttps://www.rfc1437.de/2006/10/25/new-snapshot-tarballs-finally/Error Message: Your Password Must Be at Least 18770 Characters and Cannot Repeat Any of Your Previous 30689 Passwordshttps://www.rfc1437.de/2006/10/24/error-message-your-password-must-be-at-least/Köhler stoppt Privatisierung der Flugsicherunghttps://www.rfc1437.de/2006/10/24/koehler-stoppt-privatisierung-der-flugsicherung/Ogogliohttps://www.rfc1437.de/2006/10/24/ogoglio/Pihttps://www.rfc1437.de/2006/10/24/pi/Pressefreiheit immer mehr bedrohthttps://www.rfc1437.de/2006/10/24/pressefreiheit-immer-mehr-bedroht/Towel Incident At The Westin Tokyohttps://www.rfc1437.de/2006/10/24/towel-incident-at-the-westin-tokyo/Fefe's Bloghttps://www.rfc1437.de/2006/10/23/fefe-s-blog-3/Fefe's Bloghttps://www.rfc1437.de/2006/10/23/fefe-s-blog-4/Kategorie Verbraucherschutz: Verband deutscher Versicherer — BigBrotherAwardshttps://www.rfc1437.de/2006/10/23/kategorie-verbraucherschutz-verband-deutscher/Unmut über Honorarsystem: Ärzte schließen Praxenhttps://www.rfc1437.de/2006/10/23/unmut-ueber-honorarsystem-aerzte-schliessen-praxen/Wohnungen sollen aus REIT-Gesetz gestrichen werdenhttps://www.rfc1437.de/2006/10/23/wohnungen-sollen-aus-reit-gesetz-gestrichen-werden/Bundestags-Petition gegen Wahlcomputerhttps://www.rfc1437.de/2006/10/20/bundestags-petition-gegen-wahlcomputer/Auch beim Bildblog rechnen Milchmädchenhttps://www.rfc1437.de/2006/10/18/auch-beim-bildblog-rechnen-milchmaedchen/Das Diktat der Meritokratenhttps://www.rfc1437.de/2006/10/18/das-diktat-der-meritokraten/Ralph Griswold diedhttps://www.rfc1437.de/2006/10/18/ralph-griswold-died/Teen Using MySpace to Lure Bands to Los Angeleshttps://www.rfc1437.de/2006/10/18/teen-using-myspace-to-lure-bands-to-los-angeles/Addressbook X LDAPhttps://www.rfc1437.de/2006/10/17/addressbook-x-ldap/Edelentmant: Lüge, Bestechung und Diffamierung statt Dialoghttps://www.rfc1437.de/2006/10/17/edelentmant-luege-bestechung-und-diffamierung/Unternehmen kehren reumütig aus dem Osten zurückhttps://www.rfc1437.de/2006/10/17/unternehmen-kehren-reumuetig-aus-dem-osten-zurueck/Glos will flexiblere Lehrlingehttps://www.rfc1437.de/2006/10/16/glos-will-flexiblere-lehrlinge/Innen-Staatssekretär: Internet wichtiges Mittel für Islamistenhttps://www.rfc1437.de/2006/10/16/innen-staatssekretaer-internet-wichtiges-mittel/Terror-Zahnärztehttps://www.rfc1437.de/2006/10/16/terror-zahnaerzte/Would you like fries with your spyware?https://www.rfc1437.de/2006/10/16/would-you-like-fries-with-your-spyware/Vista Licenses Limit OS Transfers, Ban VM Usehttps://www.rfc1437.de/2006/10/13/vista-licenses-limit-os-transfers-ban-vm-use/World’s worst use of a jpeghttps://www.rfc1437.de/2006/10/13/world-s-worst-use-of-a-jpeg/Concrete and Clayhttps://www.rfc1437.de/2006/10/12/concrete-and-clay/doctor paradox: the metaphysician.https://www.rfc1437.de/2006/10/12/doctor-paradox-the-metaphysician/G2Imagehttps://www.rfc1437.de/2006/10/12/g2image/HotBitchArsenalhttps://www.rfc1437.de/2006/10/12/hotbitcharsenal/Paulo Sacramento - creative commons soundtracks and photoshttps://www.rfc1437.de/2006/10/12/paulo-sacramento-creative-commons-soundtracks-and/Simple image manager/uploaderhttps://www.rfc1437.de/2006/10/12/simple-image-manager-uploader/Stromausfall beim Hoster Hetzner legte tausende Server lahmhttps://www.rfc1437.de/2006/10/12/stromausfall-beim-hoster-hetzner-legte-tausende/TinyMCE Javascript Content Editorhttps://www.rfc1437.de/2006/10/12/tinymce-javascript-content-editor/Schünemann fordert Verbot des Herunterladens von Hassbotschaftenhttps://www.rfc1437.de/2006/10/11/schuenemann-fordert-verbot-des-herunterladens-von/Bioresonanz, Psychotronik und Homöopathie: My hairy Asshttps://www.rfc1437.de/2006/10/10/bioresonanz-psychotronik-und-homoeopathie-my/Böse große Verlage, arme kleine Übersetzerhttps://www.rfc1437.de/2006/10/10/boese-grosse-verlage-arme-kleine-uebersetzer/Fabjectoryhttps://www.rfc1437.de/2006/10/10/fabjectory/Genealogische Datenbank: Vornamenhttps://www.rfc1437.de/2006/10/10/genealogische-datenbank-vornamen/Geonameshttps://www.rfc1437.de/2006/10/10/geonames/Google code searchhttps://www.rfc1437.de/2006/10/10/google-code-search/Lightning exits woman's bottomhttps://www.rfc1437.de/2006/10/10/lightning-exits-woman-s-bottom/MoinXhttps://www.rfc1437.de/2006/10/10/moinx/The Heath Robinson Rube Goldberg Computer, Part 1: Implementing a computer using a mixture of technologies from relays to fluidic logichttps://www.rfc1437.de/2006/10/10/the-heath-robinson-rube-goldberg-computer-part-1/100.000 Jahre alte Kamelknochen gefundenhttps://www.rfc1437.de/2006/10/09/100-000-jahre-alte-kamelknochen-gefunden/Chinas Billigwaren: Wer profitiert wirklich?https://www.rfc1437.de/2006/10/09/chinas-billigwaren-wer-profitiert-wirklich/Justizministerium sieht keinen Änderungsbedarf bei "Hacker-Tool"-Paragraphenhttps://www.rfc1437.de/2006/10/09/justizministerium-sieht-keinen-aenderungsbedarf/PTB: Keine Hinweise auf manipulierte Wahlcomputerhttps://www.rfc1437.de/2006/10/09/ptb-keine-hinweise-auf-manipulierte-wahlcomputer/Sicherheitslücke in Python 2.3 und aufwärtshttps://www.rfc1437.de/2006/10/09/sicherheitsluecke-in-python-2-3-und-aufwaerts/Uni Mannheim will Informatik-Institut schließenhttps://www.rfc1437.de/2006/10/09/uni-mannheim-will-informatik-institut-schliessen/Your Ancestors Disgust Mehttps://www.rfc1437.de/2006/10/09/your-ancestors-disgust-me/3D-Scanner aus Webcam und Laser für jedermannhttps://www.rfc1437.de/2006/10/06/3d-scanner-aus-webcam-und-laser-fuer-jedermann/6502asm.com - 6502 compatible compiler and emulator in javascripthttps://www.rfc1437.de/2006/10/06/6502asm-com-6502-compatible-compiler-and-emulator/Fefe's Bloghttps://www.rfc1437.de/2006/10/06/fefe-s-blog-2/How to create a new generation of scientists.https://www.rfc1437.de/2006/10/06/how-to-create-a-new-generation-of-scientists/Parallelport-Adapter mit USB und Bluetoothhttps://www.rfc1437.de/2006/10/06/parallelport-adapter-mit-usb-und-bluetooth/Scribus/Aquahttps://www.rfc1437.de/2006/10/06/scribus-aqua/Gizmondo's Spectacular Crack-uphttps://www.rfc1437.de/2006/10/05/gizmondo-s-spectacular-crack-up/iCalamus.nethttps://www.rfc1437.de/2006/10/05/icalamus-net/Nedap-Wahlcomputer gehackthttps://www.rfc1437.de/2006/10/05/nedap-wahlcomputer-gehackt/New drug blocks influenza, including bird flu virushttps://www.rfc1437.de/2006/10/05/new-drug-blocks-influenza-including-bird-flu-virus/Schachcomputerhttps://www.rfc1437.de/2006/10/05/schachcomputer/Verleger fordern schrankenlosen Auskunftsanspruch gegen Providerhttps://www.rfc1437.de/2006/10/05/verleger-fordern-schrankenlosen-auskunftsanspruch/Exploding Hello Kitty toys recalledhttps://www.rfc1437.de/2006/10/04/exploding-hello-kitty-toys-recalled/immaterial musichttps://www.rfc1437.de/2006/10/04/immaterial-music/Novell will SCO an die Kriegskassehttps://www.rfc1437.de/2006/10/04/novell-will-sco-an-die-kriegskasse/PubSigshttps://www.rfc1437.de/2006/10/04/pubsigs/Shearerhttps://www.rfc1437.de/2006/10/04/shearer/A-Bikehttps://www.rfc1437.de/2006/10/02/a-bike/ATI-Grafikchips falten Proteine schnellerhttps://www.rfc1437.de/2006/10/02/ati-grafikchips-falten-proteine-schneller/Teacher Fired Due to Dallas Museum of Art Fieldtriphttps://www.rfc1437.de/2006/10/02/teacher-fired-due-to-dallas-museum-of-art/Vmware how to - OSx86https://www.rfc1437.de/2006/10/02/vmware-how-to-osx86/Blender 3D: Noob to Prohttps://www.rfc1437.de/2006/09/29/blender-3d-noob-to-pro/Final Vote Results for Roll Call 491https://www.rfc1437.de/2006/09/29/final-vote-results-for-roll-call-491/Gewerkschaft sieht in BenQ-Mobile-Insolvenz einen "schmutzigen Trick"https://www.rfc1437.de/2006/09/29/gewerkschaft-sieht-in-benq-mobile-insolvenz-einen/Google Sketchup -> Second Life exporthttps://www.rfc1437.de/2006/09/29/google-sketchup-second-life-export/The GPL is not a compromisehttps://www.rfc1437.de/2006/09/29/the-gpl-is-not-a-compromise/tutorial - walk cyclehttps://www.rfc1437.de/2006/09/29/tutorial-walk-cycle/BenQ Mobile in Deutschland stellt Insolvenzantraghttps://www.rfc1437.de/2006/09/28/benq-mobile-in-deutschland-stellt-insolvenzantrag/Masonhttps://www.rfc1437.de/2006/09/28/mason/Siemens-Vorstand sieht Gefahr einer feindlichen Übernahmehttps://www.rfc1437.de/2006/09/28/siemens-vorstand-sieht-gefahr-einer-feindlichen/Types of Mazeshttps://www.rfc1437.de/2006/09/28/types-of-mazes/Welcome to the WorldForge Project.https://www.rfc1437.de/2006/09/28/welcome-to-the-worldforge-project/E.ON erhöht Endesa-Angebot auf 35 Euro je Aktiehttps://www.rfc1437.de/2006/09/27/e-on-erhoeht-endesa-angebot-auf-35-euro-je-aktie/Freeplay Energy Plc.https://www.rfc1437.de/2006/09/27/freeplay-energy-plc/Idiotic examples of corporate cost-cuttinghttps://www.rfc1437.de/2006/09/27/idiotic-examples-of-corporate-cost-cutting/One Planet Many Peoplehttps://www.rfc1437.de/2006/09/27/one-planet-many-people/Die Electronic Forntier Foundation stellt sich auf die Hinterbeine gegen die WIPOhttps://www.rfc1437.de/2006/09/26/die-electronic-forntier-foundation-stellt-sich/In Tiny Courts of N.Y., Abuses of Law and Powerhttps://www.rfc1437.de/2006/09/26/in-tiny-courts-of-n-y-abuses-of-law-and-power/Rübstiel (Stielmus)https://www.rfc1437.de/2006/09/26/ruebstiel-stielmus/Töpfer will Atomausstieg und rügt Industrienationenhttps://www.rfc1437.de/2006/09/25/toepfer-will-atomausstieg-und-ruegt/Rare Woodpecker Sends a Town Running for Its Chain Sawshttps://www.rfc1437.de/2006/09/24/rare-woodpecker-sends-a-town-running-for-its/SpamCop genauso inkompetent wie SORBShttps://www.rfc1437.de/2006/09/22/spamcop-genauso-inkompetent-wie-sorbs/Virtuelle Mode als Lebensunterhalthttps://www.rfc1437.de/2006/09/22/virtuelle-mode-als-lebensunterhalt/EU will Verbindungsdaten an die USA weitergebenhttps://www.rfc1437.de/2006/09/21/eu-will-verbindungsdaten-an-die-usa-weitergeben/Netzbetreiber ignorieren Thoben-Fristhttps://www.rfc1437.de/2006/09/21/netzbetreiber-ignorieren-thoben-frist/Popkomm: Musikwirtschaft will Zugangsanbieter zur Kasse bittenhttps://www.rfc1437.de/2006/09/21/popkomm-musikwirtschaft-will-zugangsanbieter-zur/Understanding HTML, XML and XHTMLhttps://www.rfc1437.de/2006/09/21/understanding-html-xml-and-xhtml/Microsoft's Masterpiece of FUDhttps://www.rfc1437.de/2006/09/20/microsoft-s-masterpiece-of-fud/Nova 1 photo selectionhttps://www.rfc1437.de/2006/09/20/nova-1-photo-selection/Regierung will "letzte Lücken" im Computerstrafrecht schließenhttps://www.rfc1437.de/2006/09/20/regierung-will-letzte-luecken-im/Seehofer verärgert Bauern und Gentech-Kritikerhttps://www.rfc1437.de/2006/09/20/seehofer-veraergert-bauern-und-gentech-kritiker/The denial industryhttps://www.rfc1437.de/2006/09/20/the-denial-industry/Von “kontrollierten” Abstürzen und “Bail-Out” Zonenhttps://www.rfc1437.de/2006/09/20/von-kontrollierten-abstuerzen-und-bail-out-zonen/Gutachten: Bagatellklausel bei Tauschbörsen ist unsinnighttps://www.rfc1437.de/2006/09/19/gutachten-bagatellklausel-bei-tauschboersen-ist/H I P P O P O T A M O U S Ehttps://www.rfc1437.de/2006/09/18/h-i-p-p-o-p-o-t-a-m-o-u-s-e/Internet Jäger des virtuellen Schatzeshttps://www.rfc1437.de/2006/09/18/internet-jaeger-des-virtuellen-schatzes/NETZEITUNG INTERNET: Google muss belgische Zeitungsartikel löschenhttps://www.rfc1437.de/2006/09/18/netzeitung-internet-google-muss-belgische/Spam-Gegner sollen 11 Millionen Dollar zahlenhttps://www.rfc1437.de/2006/09/18/spam-gegner-sollen-11-millionen-dollar-zahlen/The Perry Bible Fellowshiphttps://www.rfc1437.de/2006/09/18/the-perry-bible-fellowship/The "Triple-X" hack - an exclusive CSS filter for IE7https://www.rfc1437.de/2006/09/18/the-triple-x-hack-an-exclusive-css-filter-for-ie7/Little People - a tiny street art projecthttps://www.rfc1437.de/2006/09/15/little-people-a-tiny-street-art-project/Leica M8 Hands-on Previewhttps://www.rfc1437.de/2006/09/14/leica-m8-hands-on-preview/Strongtalk: A High-Performance Open Source Smalltalk With An Optional Type Systemhttps://www.rfc1437.de/2006/09/13/strongtalk-a-high-performance-open-source/Connecting with people in six stepshttps://www.rfc1437.de/2006/09/12/connecting-with-people-in-six-steps/elektrosmog: Three-in-onehttps://www.rfc1437.de/2006/09/12/elektrosmog-three-in-one/John Graham-Cumming: Did SoftScan, Sophos and Panda rip off my blog?https://www.rfc1437.de/2006/09/12/john-graham-cumming-did-softscan-sophos-and-panda/KETTLEhttps://www.rfc1437.de/2006/09/12/kettle/Wearing helmets 'more dangerous'https://www.rfc1437.de/2006/09/12/wearing-helmets-more-dangerous/Nigeria widows lose their fortunehttps://www.rfc1437.de/2006/09/11/nigeria-widows-lose-their-fortune/Staatsanwaltschaft beschlagnahmt Anonymisierungsserverhttps://www.rfc1437.de/2006/09/11/staatsanwaltschaft-beschlagnahmt/Unverschlüsseltes WLAN und Störerhaftung: LG Hamburg öffnet die Büchse der Pandorahttps://www.rfc1437.de/2006/09/11/unverschluesseltes-wlan-und-stoererhaftung-lg/Studie: Viel-Chatter haben häufig psychische Störungenhttps://www.rfc1437.de/2006/09/04/studie-viel-chatter-haben-haeufig-psychische/elektrosmog: Flickragenturhttps://www.rfc1437.de/2006/09/03/elektrosmog-flickragentur/FireWire-Ultra SCSI Converter FR1SX[RATOC]https://www.rfc1437.de/2006/09/02/firewire-ultra-scsi-converter-fr1sx-ratoc/Going for a Walkhttps://www.rfc1437.de/2006/08/29/going-for-a-walk/Pluto kein Planet mehrhttps://www.rfc1437.de/2006/08/25/pluto-kein-planet-mehr/Kieler Justizminister kritisiert Anonymisierungsdiensthttps://www.rfc1437.de/2006/08/23/kieler-justizminister-kritisiert/SPD debattiert über Kürzung der Witwenrentehttps://www.rfc1437.de/2006/08/23/spd-debattiert-ueber-kuerzung-der-witwenrente/Tom Cruise demnächst arbeitslos?https://www.rfc1437.de/2006/08/23/tom-cruise-demnaechst-arbeitslos/Boom der Riester-Rente hält anhttps://www.rfc1437.de/2006/08/18/boom-der-riester-rente-haelt-an/Sternwarte Bochum hat Originalaufzeichnungen der Apollomissionhttps://www.rfc1437.de/2006/08/17/sternwarte-bochum-hat-originalaufzeichnungen-der/Kurth rät Telekom zu Gesprächen über VDSLhttps://www.rfc1437.de/2006/08/16/kurth-raet-telekom-zu-gespraechen-ueber-vdsl/Unsicherheit über Rechtsgültigkeit von ElsterOnlinehttps://www.rfc1437.de/2006/08/16/unsicherheit-ueber-rechtsgueltigkeit-von/Vampire sea spiders suck on preyhttps://www.rfc1437.de/2006/08/16/vampire-sea-spiders-suck-on-prey/Verschollene Fischer nach neun Monaten gerettethttps://www.rfc1437.de/2006/08/16/verschollene-fischer-nach-neun-monaten-gerettet/Basic mit Come Fromhttps://www.rfc1437.de/2006/08/15/basic-mit-come-from/DM's Esoteric Programming Languages - Piet Sampleshttps://www.rfc1437.de/2006/08/15/dm-s-esoteric-programming-languages-piet-samples/OFFhttps://www.rfc1437.de/2006/08/15/off/Eine naive Ideehttps://www.rfc1437.de/2006/08/11/eine-naive-idee/If the liquid could be explosive, why are you dumping it in a crowd?https://www.rfc1437.de/2006/08/11/if-the-liquid-could-be-explosive-why-are-you/Merlin XU870 3G HSDPA 7.2 ExpressCardhttps://www.rfc1437.de/2006/08/11/merlin-xu870-3g-hsdpa-7-2-expresscard/AMD talks about ATIhttps://www.rfc1437.de/2006/08/10/amd-talks-about-ati/Bill Biggart's Final Exposureshttps://www.rfc1437.de/2006/08/10/bill-biggart-s-final-exposures/Escher's "Relativity" in LEGOhttps://www.rfc1437.de/2006/08/10/escher-s-relativity-in-lego/Idaho Observer: Aspartame - The World’s Best Ant Poisonhttps://www.rfc1437.de/2006/08/10/idaho-observer-aspartame-the-world-s-best-ant/A Face Is Exposed for AOL Searcher No. 4417749https://www.rfc1437.de/2006/08/09/a-face-is-exposed-for-aol-searcher-no-4417749/O'Reillys Liste der beliebtesten Programmiersprachenhttps://www.rfc1437.de/2006/08/09/o-reillys-liste-der-beliebtesten/Update beschleunigt Parallels Desktop für Mac OS Xhttps://www.rfc1437.de/2006/08/09/update-beschleunigt-parallels-desktop-fuer-mac-os/ApplicationRepositories - Maemo Wikihttps://www.rfc1437.de/2006/08/08/applicationrepositories-maemo-wiki/Star Trek Inspirational Postershttps://www.rfc1437.de/2006/08/08/star-trek-inspirational-posters/BS Exporter for Blenderhttps://www.rfc1437.de/2006/08/07/bs-exporter-for-blender/David Byrnehttps://www.rfc1437.de/2006/08/07/david-byrne/Der Staat geht, die Wirtschaft kommthttps://www.rfc1437.de/2006/08/07/der-staat-geht-die-wirtschaft-kommt/MacWeb3Dhttps://www.rfc1437.de/2006/08/07/macweb3d/Synthetisches Testosteronhttps://www.rfc1437.de/2006/08/07/synthetisches-testosteron/The Annotated VRML97 Reference Manualhttps://www.rfc1437.de/2006/08/07/the-annotated-vrml97-reference-manual/Voigt in Gelbhttps://www.rfc1437.de/2006/08/07/voigt-in-gelb/Voigt siegt und hält die Konkurrenz in Schachhttps://www.rfc1437.de/2006/08/07/voigt-siegt-und-haelt-die-konkurrenz-in-schach/VRML Primer and Tutorialhttps://www.rfc1437.de/2006/08/07/vrml-primer-and-tutorial/Wie die Bahn verhackstückt wirdhttps://www.rfc1437.de/2006/08/07/wie-die-bahn-verhackstueckt-wird/QAvimatorhttps://www.rfc1437.de/2006/08/05/qavimator/Hackers Clone RFID Passportshttps://www.rfc1437.de/2006/08/04/hackers-clone-rfid-passports/Neue "Web'n'Walk"-Datenoptionen bei T-Mobilehttps://www.rfc1437.de/2006/08/04/neue-web-n-walk-datenoptionen-bei-t-mobile/SLStats: Is Big Brother Watch-ing?https://www.rfc1437.de/2006/08/04/slstats-is-big-brother-watch-ing/The scientist whom history forgothttps://www.rfc1437.de/2006/08/04/the-scientist-whom-history-forgot/When did we forget our dreams?https://www.rfc1437.de/2006/08/04/when-did-we-forget-our-dreams/Amtliche Vorformulierung zum Online-Widerrufsrecht ist unwirksamhttps://www.rfc1437.de/2006/08/03/amtliche-vorformulierung-zum-online/Black Hat: MacBook via WLAN gehackthttps://www.rfc1437.de/2006/08/03/black-hat-macbook-via-wlan-gehackt/Girllovers - Hinter den Spiegelnhttps://www.rfc1437.de/2006/08/03/girllovers-hinter-den-spiegeln/Kinderschutzbund: "Kassen müssen für Narkosen zahlen"https://www.rfc1437.de/2006/08/03/kinderschutzbund-kassen-muessen-fuer-narkosen/Frankreich: iTunes-Gesetz verstößt gegen Menschenrechtehttps://www.rfc1437.de/2006/08/02/frankreich-itunes-gesetz-verstoesst-gegen/Apple - Support - Download TechTool Deluxehttps://www.rfc1437.de/2006/08/01/apple-support-download-techtool-deluxe/Cruel.Com: Ancient Chinese Secret, Huh?https://www.rfc1437.de/2006/08/01/cruel-com-ancient-chinese-secret-huh/Humorous Poems by Joachim Ringelnatzhttps://www.rfc1437.de/2006/08/01/humorous-poems-by-joachim-ringelnatz/Konsternation nach französischem Grundsatzurteil zum Urheberrechthttps://www.rfc1437.de/2006/08/01/konsternation-nach-franzoesischem-grundsatzurteil/Kriminalbeamte kritisieren Äußerungen des Bundesdatenschützers zu Massen-Gentestshttps://www.rfc1437.de/2006/08/01/kriminalbeamte-kritisieren-aeusserungen-des/Nonsense poetry by Christian Morgensternhttps://www.rfc1437.de/2006/08/01/nonsense-poetry-by-christian-morgenstern/SCO is Distributing ELF Under the GPL Still. Yes. Now. Today.https://www.rfc1437.de/2006/08/01/sco-is-distributing-elf-under-the-gpl-still-yes/Apple tauscht defekte Akkus bei MacBook Prohttps://www.rfc1437.de/2006/07/31/apple-tauscht-defekte-akkus-bei-macbook-pro/Atomic Rocket: Space War: Weaponshttps://www.rfc1437.de/2006/07/31/atomic-rocket-space-war-weapons/Banken: Vollstrecker aus Texashttps://www.rfc1437.de/2006/07/31/banken-vollstrecker-aus-texas/Free Movies Fallen out of Copyright (Public Domain)https://www.rfc1437.de/2006/07/31/free-movies-fallen-out-of-copyright-public-domain/How to Bypass Most Firewall Restrictions and Access the Internet Privatelyhttps://www.rfc1437.de/2006/07/31/how-to-bypass-most-firewall-restrictions-and/How To Criticizing Computer Scientistshttps://www.rfc1437.de/2006/07/31/how-to-criticizing-computer-scientists/Introducing Django 0.95https://www.rfc1437.de/2006/07/31/introducing-django-0-95/Leben mit Fehlern - der Schlüssel zum Scaleouthttps://www.rfc1437.de/2006/07/31/leben-mit-fehlern-der-schluessel-zum-scaleout/New in JavaScript 1.7https://www.rfc1437.de/2006/07/31/new-in-javascript-1-7/RIAA Will Drop Cases If You Point Out That An IP Address Isn't A Personhttps://www.rfc1437.de/2006/07/31/riaa-will-drop-cases-if-you-point-out-that-an-ip/Wings 3dhttps://www.rfc1437.de/2006/07/31/wings-3d/Intershop schreibt weiter Verlustehttps://www.rfc1437.de/2006/07/28/intershop-schreibt-weiter-verluste/Landis positivhttps://www.rfc1437.de/2006/07/28/landis-positiv/Ungewisse Zukunft für Fraunhofer-Institut in Darmstadthttps://www.rfc1437.de/2006/07/28/ungewisse-zukunft-fuer-fraunhofer-institut-in/WPHPhttps://www.rfc1437.de/2006/07/28/wphp/stop making fun of ushttps://www.rfc1437.de/2006/07/27/stop-making-fun-of-us/RWE will Strompreise erneut erhöhen | tagesschau.dehttps://www.rfc1437.de/2006/07/26/rwe-will-strompreise-erneut-erhoehen-tagesschau-de/Aldag als T-Mobile Sportchefhttps://www.rfc1437.de/2006/07/25/aldag-als-t-mobile-sportchef/Arbeitsamt: Erlasse im Netzhttps://www.rfc1437.de/2006/07/25/arbeitsamt-erlasse-im-netz/Der Computerclub ist wieder dahttps://www.rfc1437.de/2006/07/25/der-computerclub-ist-wieder-da/Metasploit: Internet Drive-By Shootingshttps://www.rfc1437.de/2006/07/24/metasploit-internet-drive-by-shootings/BlogHUD : Second Life blogging systemhttps://www.rfc1437.de/2006/07/21/bloghud-second-life-blogging-system/My Boring Ass Lifehttps://www.rfc1437.de/2006/07/21/my-boring-ass-life/Woe betide my Dellhttps://www.rfc1437.de/2006/07/21/woe-betide-my-dell/Landis ist zurückhttps://www.rfc1437.de/2006/07/20/landis-ist-zurueck/Billig und willighttps://www.rfc1437.de/2006/07/19/billig-und-willig/Rasmussen gewinnt, Landis bricht einhttps://www.rfc1437.de/2006/07/19/rasmussen-gewinnt-landis-bricht-ein/The Ugly Truth: Our President is an Imbecilehttps://www.rfc1437.de/2006/07/19/the-ugly-truth-our-president-is-an-imbecile/TLS Litehttps://www.rfc1437.de/2006/07/19/tls-lite/IT-Branchenverband will Zuwanderung gegen Fachkräftemangelhttps://www.rfc1437.de/2006/07/17/it-branchenverband-will-zuwanderung-gegen/Mal ne andere Meinunghttps://www.rfc1437.de/2006/07/17/mal-ne-andere-meinung/Numbers stationhttps://www.rfc1437.de/2006/07/17/numbers-station/Debian-Hack: Einbrecher kam über bekannte Lückehttps://www.rfc1437.de/2006/07/14/debian-hack-einbrecher-kam-ueber-bekannte-luecke/Garfield: Permanent Mondayhttps://www.rfc1437.de/2006/07/14/garfield-permanent-monday/Gizmo – A free phone for your computerhttps://www.rfc1437.de/2006/07/14/gizmo-a-free-phone-for-your-computer/Magnolia Hall Victorian Furniturehttps://www.rfc1437.de/2006/07/14/magnolia-hall-victorian-furniture/beaTunes ~ build better playlistshttps://www.rfc1437.de/2006/07/13/beatunes-build-better-playlists/Pink-Floyd-Mitbegründer Syd Barrett gestorbenhttps://www.rfc1437.de/2006/07/12/pink-floyd-mitbegruender-syd-barrett-gestorben/Blue People of Kentuckyhttps://www.rfc1437.de/2006/07/11/blue-people-of-kentucky/The Phrontistery: Obscure Words and Vocabulary Resourceshttps://www.rfc1437.de/2006/07/11/the-phrontistery-obscure-words-and-vocabulary/Enigma Homepagehttps://www.rfc1437.de/2006/07/10/enigma-homepage/Galileo Verschlüsselung geknackthttps://www.rfc1437.de/2006/07/10/galileo-verschluesselung-geknackt/Landis hat Osteonecrosehttps://www.rfc1437.de/2006/07/10/landis-hat-osteonecrose/Oxyd Extrahttps://www.rfc1437.de/2006/07/10/oxyd-extra/Patent auf Social Networkinghttps://www.rfc1437.de/2006/07/10/patent-auf-social-networking/Running Linux on the Sony UX-180phttps://www.rfc1437.de/2006/07/10/running-linux-on-the-sony-ux-180p/Suitable Systems / SeisMachttps://www.rfc1437.de/2006/07/10/suitable-systems-seismac/CLPython - an implementation of Python in Common Lisphttps://www.rfc1437.de/2006/07/05/clpython-an-implementation-of-python-in-common-2/Der Weltmeister in Grün und Gelbhttps://www.rfc1437.de/2006/07/05/der-weltmeister-in-gruen-und-gelb/Große Koalition über Verschärfung der Anti-Terrorgesetze einighttps://www.rfc1437.de/2006/07/04/grosse-koalition-ueber-verschaerfung-der-anti/Na also, geht doch!https://www.rfc1437.de/2006/07/04/na-also-geht-doch/Basso auch in Doping-Skandal verwickelt?https://www.rfc1437.de/2006/06/30/basso-auch-in-doping-skandal-verwickelt/Oberster Gerichtshof: Guantanamo-Tribunale illegalhttps://www.rfc1437.de/2006/06/30/oberster-gerichtshof-guantanamo-tribunale-illegal/Textureshophttps://www.rfc1437.de/2006/06/30/textureshop/Ullrich, Sevilla und Pevenage vorerst suspendierthttps://www.rfc1437.de/2006/06/30/ullrich-sevilla-und-pevenage-vorerst-suspendiert/heise online -Google wegen Links zu Produktfälschern verurteilthttps://www.rfc1437.de/2006/06/29/heise-online-googl-wgn-lnks-z-prdktflschrn-vrrtlt/OMG Girlz Don’t Exist on teh Intarweb!!!!1https://www.rfc1437.de/2006/06/29/omg-girlz-don-t-exist-on-teh-intarweb-1/Wells Grants in Part IBM's Motion to Limit SCO's Claims! In Large Part.https://www.rfc1437.de/2006/06/29/wells-grants-in-part-ibm-s-motion-to-limit-sco-s/Bankdaten von der SWIFT abgepressthttps://www.rfc1437.de/2006/06/28/bankdaten-von-der-swift-abgepresst/Conversation with Boston Volkswagenhttps://www.rfc1437.de/2006/06/28/conversation-with-boston-volkswagen/iView Multimedia von Microsoft aufgekaufthttps://www.rfc1437.de/2006/06/28/iview-multimedia-von-microsoft-aufgekauft/Tinderbox: Tinderbox 3.5https://www.rfc1437.de/2006/06/28/tinderbox-tinderbox-3-5/Schrumpfkur für Krankenkassen?https://www.rfc1437.de/2006/06/27/schrumpfkur-fuer-krankenkassen/30-Milliarden-Spende für Bill Gateshttps://www.rfc1437.de/2006/06/26/30-milliarden-spende-fuer-bill-gates/58 Profis in spanische Affäre verwickelthttps://www.rfc1437.de/2006/06/26/58-profis-in-spanische-affaere-verwickelt/Braunbär Bruno von Jägern getötethttps://www.rfc1437.de/2006/06/26/braunbaer-bruno-von-jaegern-getoetet/Der Staat entmachtet sich selbsthttps://www.rfc1437.de/2006/06/26/der-staat-entmachtet-sich-selbst/Exploring Cocoa with F-Scripthttps://www.rfc1437.de/2006/06/26/exploring-cocoa-with-f-script/Freenode gehackthttps://www.rfc1437.de/2006/06/26/freenode-gehackt/Hartz-IV-Missbrauch: ''Unser Menschenbild war zu positiv''https://www.rfc1437.de/2006/06/26/hartz-iv-missbrauch-unser-menschenbild-war-zu/Microsoft beerdigt WinFShttps://www.rfc1437.de/2006/06/26/microsoft-beerdigt-winfs/Python Cheese Shop : saprfc 0.08https://www.rfc1437.de/2006/06/26/python-cheese-shop-saprfc-0-08/Trotz steigender Umsätze baut Industrie Stellen abhttps://www.rfc1437.de/2006/06/26/trotz-steigender-umsaetze-baut-industrie-stellen/Verkauf von NRW-Unikliniken?https://www.rfc1437.de/2006/06/26/verkauf-von-nrw-unikliniken/DrSchemehttps://www.rfc1437.de/2006/06/19/drscheme-2/Generische Tabellenrelationenhttps://www.rfc1437.de/2006/06/19/generische-tabellenrelationen/Großer Rückschlag für Walfanggegnerhttps://www.rfc1437.de/2006/06/19/grosser-rueckschlag-fuer-walfanggegner/Handys sind Wegwerfproduktehttps://www.rfc1437.de/2006/06/19/handys-sind-wegwerfprodukte/Jan Ullrich legt aufhttps://www.rfc1437.de/2006/06/19/jan-ullrich-legt-auf/Wengophone: VoIP done righthttps://www.rfc1437.de/2006/06/19/wengophone-voip-done-right/Allegro Common Lisp Expresshttps://www.rfc1437.de/2006/06/16/allegro-common-lisp-express/Urteil: Vorabprüfung von Forenbeiträgen ist unzumutbarhttps://www.rfc1437.de/2006/06/16/urteil-vorabpruefung-von-forenbeitraegen-ist/Automatic Pickle Serialization and Deserialization with PostgreSQLhttps://www.rfc1437.de/2006/06/14/automatic-pickle-serialization-and/Bundestag beschließt staatlich verordnetes Verhungernhttps://www.rfc1437.de/2006/06/12/bundestag-beschliesst-staatlich-verordnetes/Die Welt nackt zu Gast bei Freundenhttps://www.rfc1437.de/2006/06/12/die-welt-nackt-zu-gast-bei-freunden/Früherer BND-Spitzel belastet Hanning | tagesschau.dehttps://www.rfc1437.de/2006/06/12/frueherer-bnd-spitzel-belastet-hanning-tagesschau/Microsoft's Calling Home Problemhttps://www.rfc1437.de/2006/06/12/microsoft-s-calling-home-problem/Speaking Frankly: From Leitz sublime to Leica splitsvillehttps://www.rfc1437.de/2006/06/12/speaking-frankly-from-leitz-sublime-to-leica/McDonald's Interactive Divisionhttps://www.rfc1437.de/2006/06/09/mcdonald-s-interactive-division/Tod eines Unschuldigen bleibt ohne juristische Folgehttps://www.rfc1437.de/2006/06/09/tod-eines-unschuldigen-bleibt-ohne-juristische/US-Repräsentantenhaus stimmt gegen "Netzneutralität"https://www.rfc1437.de/2006/06/09/us-repraesentantenhaus-stimmt-gegen/SkypeOut - Das Aushttps://www.rfc1437.de/2006/06/07/skypeout-das-aus/Create SL Objects in Blender — If You Darehttps://www.rfc1437.de/2006/06/06/create-sl-objects-in-blender-if-you-dare/Sony: 10-Megapixel-Kamera mit Staubwedel aus der alpha-Seriehttps://www.rfc1437.de/2006/06/06/sony-10-megapixel-kamera-mit-staubwedel-aus-der/Caller ID Spoofinghttps://www.rfc1437.de/2006/06/02/caller-id-spoofing/Rolling Stone : Was the 2004 Election Stolen?https://www.rfc1437.de/2006/06/02/rolling-stone-was-the-2004-election-stolen/OLG Frankfurt: Online-Demonstration ist keine Gewalthttps://www.rfc1437.de/2006/06/01/olg-frankfurt-online-demonstration-ist-keine/Digitale Messsucherkamera Epson R-D1s kommthttps://www.rfc1437.de/2006/05/31/digitale-messsucherkamera-epson-r-d1s-kommt/StepTalkhttps://www.rfc1437.de/2006/05/31/steptalk/The Illustrated Nethack Monstershttps://www.rfc1437.de/2006/05/31/the-illustrated-nethack-monsters/Basso deklassiert die Konkurrenzhttps://www.rfc1437.de/2006/05/29/basso-deklassiert-die-konkurrenz/Beleidigte italienische Leberwursthttps://www.rfc1437.de/2006/05/29/beleidigte-italienische-leberwurst/Die Quelltexte für UCSD-Pascal sind freihttps://www.rfc1437.de/2006/05/29/die-quelltexte-fuer-ucsd-pascal-sind-frei/Feedjack - A Django+Python Powered Feed Aggregator (Planet)https://www.rfc1437.de/2006/05/29/feedjack-a-django-python-powered-feed-aggregator/Microsoft möchte »kooperierende Redaktionen«https://www.rfc1437.de/2006/05/29/microsoft-moechte-kooperierende-redaktionen/PL/1 for GCChttps://www.rfc1437.de/2006/05/29/pl-1-for-gcc/PyCells and peak.eventshttps://www.rfc1437.de/2006/05/29/pycells-and-peak-events/Theorie für Tarnkappenhttps://www.rfc1437.de/2006/05/29/theorie-fuer-tarnkappen/US-Patentamt weist Ansprüche in Forgents JPEG-Patent zurückhttps://www.rfc1437.de/2006/05/29/us-patentamt-weist-ansprueche-in-forgents-jpeg/Medallia Blog: SmackBook Prohttps://www.rfc1437.de/2006/05/26/medallia-blog-smackbook-pro/O’Reilly trademarks “Web 2.0″ and sets lawyers on IT@Cork! » at Tom Raftery’s I.T. viewshttps://www.rfc1437.de/2006/05/26/o-reilly-trademarks-web-2-0-and-sets-lawyers-on/Safari Tidy pluginhttps://www.rfc1437.de/2006/05/26/safari-tidy-plugin/x48 emulatorhttps://www.rfc1437.de/2006/05/26/x48-emulator/Bild kneift vor Blümhttps://www.rfc1437.de/2006/05/24/bild-kneift-vor-bluem/Are you generic?https://www.rfc1437.de/2006/05/22/are-you-generic/Free42 for Zaurus X/Qt and Nokia 770https://www.rfc1437.de/2006/05/22/free42-for-zaurus-x-qt-and-nokia-770/MyTunesRSShttps://www.rfc1437.de/2006/05/22/mytunesrss/Rogue Amoeba - Nicecast for Mac OS Xhttps://www.rfc1437.de/2006/05/22/rogue-amoeba-nicecast-for-mac-os-x/Klinikstreik: Sind Kassenpatienten keine Notfälle?https://www.rfc1437.de/2006/05/19/klinikstreik-sind-kassenpatienten-keine-notfaelle/US-Richter weist Masris Folter-Klage gegen CIA abhttps://www.rfc1437.de/2006/05/19/us-richter-weist-masris-folter-klage-gegen-cia-ab/MGTalk - Google Talk for mobilehttps://www.rfc1437.de/2006/05/18/mgtalk-google-talk-for-mobile/What Happened To Dynamic Rangehttps://www.rfc1437.de/2006/05/18/what-happened-to-dynamic-range/Adactio: Journal - The ugly Americanhttps://www.rfc1437.de/2006/05/17/adactio-journal-the-ugly-american/Kauder warnt vor Veröffentlichung des BND-Berichtshttps://www.rfc1437.de/2006/05/17/kauder-warnt-vor-veroeffentlichung-des-bnd/Neue MacBookshttps://www.rfc1437.de/2006/05/17/neue-macbooks/Debunking Linus's Latesthttps://www.rfc1437.de/2006/05/16/debunking-linus-s-latest/Nokia Announces the Internet Tablet 2006 OS Updatehttps://www.rfc1437.de/2006/05/16/nokia-announces-the-internet-tablet-2006-os-update/Tanenbaum-Torvalds debate, Part IIhttps://www.rfc1437.de/2006/05/16/tanenbaum-torvalds-debate-part-ii/In den Mühlen der Fürsorgehttps://www.rfc1437.de/2006/05/15/in-den-muehlen-der-fuersorge/RWE: Der Profit, der aus der Kälte kamhttps://www.rfc1437.de/2006/05/15/rwe-der-profit-der-aus-der-kaelte-kam/Nokia will Google Talk vorinstallierenhttps://www.rfc1437.de/2006/05/14/nokia-will-google-talk-vorinstallieren/Schneier on Security: Major Vulnerability Found in Diebold Election Machineshttps://www.rfc1437.de/2006/05/12/schneier-on-security-major-vulnerability-found-in/Bluetooth SIG - Idioten am Ruderhttps://www.rfc1437.de/2006/05/09/bluetooth-sig-idioten-am-ruder/heise online - LG Düsseldorf: Forenhaftung erst ab Kenntnis des Rechtsverstoßeshttps://www.rfc1437.de/2006/05/09/heise-online-lg-duesseldorf-forenhaftung-erst-ab/Rotten Efforthttps://www.rfc1437.de/2006/05/09/rotten-effort/HashCamlhttps://www.rfc1437.de/2006/05/08/hashcaml/Ab in den Asozialstaat?https://www.rfc1437.de/2006/05/07/ab-in-den-asozialstaat/Django for non-programmershttps://www.rfc1437.de/2006/05/06/django-for-non-programmers/Aldag gewinnt eigenes Abschiedsrennenhttps://www.rfc1437.de/2006/05/02/aldag-gewinnt-eigenes-abschiedsrennen/Django Weblog "magic-removal" branch mergedhttps://www.rfc1437.de/2006/05/02/django-weblog-magic-removal-branch-merged/How to cure your asthma or hayfever using hookworm - a practical guide || kuro5hin.orghttps://www.rfc1437.de/2006/05/02/how-to-cure-your-asthma-or-hayfever-using/Workbench: Settlement Reached with Dave Winerhttps://www.rfc1437.de/2006/05/02/workbench-settlement-reached-with-dave-winer/Wenn Firmen ihren Doppelgänger treffenhttps://www.rfc1437.de/2006/04/29/wenn-firmen-ihren-doppelgaenger-treffen/Das waren die Roots: Wie das Internet nach Deutschland kamhttps://www.rfc1437.de/2006/04/28/das-waren-die-roots-wie-das-internet-nach/Gerücht: Apple hat Aperture-Entwicklungsteam aufgelösthttps://www.rfc1437.de/2006/04/27/geruecht-apple-hat-aperture-entwicklungsteam/Oberon Script. A Lightweight Compiler and Runtime System for the Webhttps://www.rfc1437.de/2006/04/27/oberon-script-a-lightweight-compiler-and-runtime/World Press Photos 2005: Deutschlandpremiere in Hamburghttps://www.rfc1437.de/2006/04/27/world-press-photos-2005-deutschlandpremiere-in/Mamiya to sell camera divisionhttps://www.rfc1437.de/2006/04/26/mamiya-to-sell-camera-division/WASG-Bundesvorstandsmitglied wechselt zur NPDhttps://www.rfc1437.de/2006/04/26/wasg-bundesvorstandsmitglied-wechselt-zur-npd/Hyperlink-Prozess: Netzaktivist erneut freigesprochenhttps://www.rfc1437.de/2006/04/24/hyperlink-prozess-netzaktivist-erneut/Netzwerk-Spielehttps://www.rfc1437.de/2006/04/24/netzwerk-spiele/Pur3d.de | TEXTURENhttps://www.rfc1437.de/2006/04/23/pur3d-de-texturen/UVMapperhttps://www.rfc1437.de/2006/04/23/uvmapper/AOL.de Zuganghttps://www.rfc1437.de/2006/04/22/aol-de-zugang/Kritische Sicherheitslücken in Mac OS Xhttps://www.rfc1437.de/2006/04/22/kritische-sicherheitsluecken-in-mac-os-x/Empörung über Schäublehttps://www.rfc1437.de/2006/04/21/empoerung-ueber-schaeuble/Gazprom droht EU mit Gas-Entzughttps://www.rfc1437.de/2006/04/21/gazprom-droht-eu-mit-gas-entzug/Metasploit: Exploit Development: GroupWise Messenger Serverhttps://www.rfc1437.de/2006/04/21/metasploit-exploit-development-groupwise/Neues von den Christianismus-Mullahshttps://www.rfc1437.de/2006/04/21/neues-von-den-christianismus-mullahs/''Pioneer-Anomalie'': Rätselhafte Kraft im Alhttps://www.rfc1437.de/2006/04/21/pioneer-anomalie-raetselhafte-kraft-im-al/YES, finally! me too!https://www.rfc1437.de/2006/04/21/yes-finally-me-too/Philips will Umschalten in Werbepausen verhindernhttps://www.rfc1437.de/2006/04/19/philips-will-umschalten-in-werbepausen-verhindern/Volksverhetzung Teil III - Staatsanwalt gegen Alvar Freudehttps://www.rfc1437.de/2006/04/19/volksverhetzung-teil-iii-staatsanwalt-gegen-alvar/Open Letter to D-Link about their NTP vandalismhttps://www.rfc1437.de/2006/04/18/open-letter-to-d-link-about-their-ntp-vandalism/SPD besteht auf Bagatellklausel für Kopienhttps://www.rfc1437.de/2006/04/18/spd-besteht-auf-bagatellklausel-fuer-kopien/Tibet bei Wikipedia - und FAZhttps://www.rfc1437.de/2006/04/18/tibet-bei-wikipedia-und-faz/Yummy mummy feeds young its skinhttps://www.rfc1437.de/2006/04/18/yummy-mummy-feeds-young-its-skin/Virtuelle Welten und Angriffsszenarienhttps://www.rfc1437.de/2006/04/16/virtuelle-welten-und-angriffsszenarien/Hamburger Landgericht: Forenbetreiber sind für Beiträge haftbarhttps://www.rfc1437.de/2006/04/14/hamburger-landgericht-forenbetreiber-sind-fuer/2003 UB313: "Zehnter Planet" kaum größer als Plutohttps://www.rfc1437.de/2006/04/13/2003-ub313-zehnter-planet-kaum-groesser-als-pluto/Get A-Life: Core Wars / Tierrahttps://www.rfc1437.de/2006/04/13/get-a-life-core-wars-tierra/Texas Judge Orders Medication for Inmatehttps://www.rfc1437.de/2006/04/13/texas-judge-orders-medication-for-inmate/UMTS über Vodafone und Sony Ericsson V600i / V600 via Bluetooth unter Mac OS X nutzenhttps://www.rfc1437.de/2006/04/11/umts-ueber-vodafone-und-sony-ericsson-v600i-v600/Bundesrat liebäugelt mit Softwarepatentenhttps://www.rfc1437.de/2006/04/10/bundesrat-liebaeugelt-mit-softwarepatenten/PHI, the golden ratiohttps://www.rfc1437.de/2006/04/10/phi-the-golden-ratio/The nonsense about AdSensehttps://www.rfc1437.de/2006/04/10/the-nonsense-about-adsense/Rechteinhaber wollen Auskunft von Providern ohne Richterbeschlusshttps://www.rfc1437.de/2006/04/08/rechteinhaber-wlln-sknft-vn-prvdrn-hn-rchtrbschlss/Experte: Google Earth gefährdet WM-Sicherheithttps://www.rfc1437.de/2006/04/07/experte-google-earth-gefaehrdet-wm-sicherheit/Eiffel-Entwicklungsumgebung wird Open Sourcehttps://www.rfc1437.de/2006/04/06/eiffel-entwicklungsumgebung-wird-open-source/Man Was Enduring the Dentist''s Drill 9,000 Years Agohttps://www.rfc1437.de/2006/04/06/man-was-enduring-the-dentist-s-drill-9-000-years/Patent Busting: EFF gegen Patent auf Online-Prüfungenhttps://www.rfc1437.de/2006/04/06/patent-busting-eff-gegen-patent-auf-online/Python 3000 - Adaptation or Generic Functions?https://www.rfc1437.de/2006/04/06/python-3000-adaptation-or-generic-functions/Things nobody tells you about the south polehttps://www.rfc1437.de/2006/04/06/things-nobody-tells-you-about-the-south-pole/Maemo Development Platform Roadmaphttps://www.rfc1437.de/2006/04/04/maemo-development-platform-roadmap/Colorblind Web Page Filterhttps://www.rfc1437.de/2006/04/02/colorblind-web-page-filter/Apple Converts Xserves from PowerPC to AMDhttps://www.rfc1437.de/2006/04/01/apple-converts-xserves-from-powerpc-to-amd/Deutsche Bahn wird zum DSL-Anbieterhttps://www.rfc1437.de/2006/04/01/deutsche-bahn-wird-zum-dsl-anbieter/IP-Adressen für die Eitelkeithttps://www.rfc1437.de/2006/04/01/ip-adressen-fuer-die-eitelkeit/WordPatternhttps://www.rfc1437.de/2006/04/01/wordpattern/Bildungsziel: Mythos statt Wissen!https://www.rfc1437.de/2006/03/31/bildungsziel-mythos-statt-wissen-pressemitteilngws/IBM offers bounty for Exchange customershttps://www.rfc1437.de/2006/03/31/ibm-offers-bounty-for-exchange-customers/python-constrainthttps://www.rfc1437.de/2006/03/31/python-constraint/Geogenhttps://www.rfc1437.de/2006/03/30/geogen/Merquery, Text Indexing and Search with a Focushttps://www.rfc1437.de/2006/03/30/merquery-text-indexing-and-search-with-a-focus/The Spider of Doomhttps://www.rfc1437.de/2006/03/30/the-spider-of-doom/Backfire für Transparency Internationalhttps://www.rfc1437.de/2006/03/29/backfire-fuer-transparency-international/Münte schickt Vereinbarung zum Kündigungsschutz zurück in den Koalitionsausschusshttps://www.rfc1437.de/2006/03/29/muente-schickt-vereinbarung-zum-kuendigungsschutz/Ullrich verschiebt Saisondebüthttps://www.rfc1437.de/2006/03/29/ullrich-verschiebt-saisondebuet/Microsoft-Drohung mit Patentklagen in den USA Warnsignal für Europahttps://www.rfc1437.de/2006/03/28/microsoft-drohung-mit-patentklagen-in-den-usa/Seed: Prime Numbers Get Hitchedhttps://www.rfc1437.de/2006/03/28/seed-prime-numbers-get-hitched-2/IQ-Forscher nennt Deutsche klügste Europäerhttps://www.rfc1437.de/2006/03/27/iq-forscher-nennt-deutsche-kluegste-europaeer/SPD-Fraktion lehnt neues Urheberrecht abhttps://www.rfc1437.de/2006/03/27/spd-fraktion-lehnt-neues-urheberrecht-ab/Nasa-Sonde macht Superfoto vom Marshttps://www.rfc1437.de/2006/03/26/nasa-sonde-macht-superfoto-vom-mars/ajaxWritehttps://www.rfc1437.de/2006/03/25/ajaxwrite/The Mac OS MUD Zone: Clientshttps://www.rfc1437.de/2006/03/25/the-mac-os-mud-zone-clients/transparency international mag keine kritik und schickt den anwalthttps://www.rfc1437.de/2006/03/25/trnsprncy-ntrntnl-mg-kn-krtk-nd-schckt-dn-nwlt-g/Virtueller Big Brotherhttps://www.rfc1437.de/2006/03/24/virtueller-big-brother/Bundesjustizministerin ohne Durchblickhttps://www.rfc1437.de/2006/03/23/bundesjustizministerin-ohne-durchblick/Empörung über drohendes Todesurteil gegen Ex-Muslimhttps://www.rfc1437.de/2006/03/22/empoerung-ueber-drohendes-todesurteil-gegen-x-mslm/Urteil: Dolzers "Domain-Engel" darf nicht zuschlagenhttps://www.rfc1437.de/2006/03/22/urteil-dolzers-domain-engel-darf-nicht-zuschlagen/Open Source Web Designhttps://www.rfc1437.de/2006/03/21/open-source-web-design/Abmahnwahn gibts überallhttps://www.rfc1437.de/2006/03/20/abmahnwahn-gibts-ueberall/Erschreckend ...https://www.rfc1437.de/2006/03/20/erschreckend/Meinungsfreiheit ala Eurowebhttps://www.rfc1437.de/2006/03/20/meinungsfreiheit-ala-euroweb/Und weil die Absurditäten noch nicht reichen ...https://www.rfc1437.de/2006/03/20/und-weil-die-absurditaeten-noch-nicht-reichen/Die Frösche machen einen schwindelighttps://www.rfc1437.de/2006/03/18/die-froesche-machen-einen-schwindelig/Münsterland-Giro als Profi-Rennenhttps://www.rfc1437.de/2006/03/18/muensterland-giro-als-profi-rennen/PS3 kommt mit Linuxhttps://www.rfc1437.de/2006/03/18/ps3-kommt-mit-linux/Tolles SAP Betriebsklimahttps://www.rfc1437.de/2006/03/18/tolles-sap-betriebsklima/Was machen wenn man verklagt wird?https://www.rfc1437.de/2006/03/18/was-machen-wenn-man-verklagt-wird/Dave Winer Breakdownhttps://www.rfc1437.de/2006/03/16/dave-winer-breakdown/Google kauft SketchUphttps://www.rfc1437.de/2006/03/16/google-kauft-sketchup/Horizonhttps://www.rfc1437.de/2006/03/16/horizon/TUD:OS - TU Dresden Operating Systemshttps://www.rfc1437.de/2006/03/16/tud-os-tu-dresden-operating-systems/Karlsruhe: Rezzo Schlauch berät EnBW - Nachrichten | SWR.dehttps://www.rfc1437.de/2006/03/14/karlsruhe-rezzo-schlauch-beraet-enbw-nachrichten/Avimatorhttps://www.rfc1437.de/2006/03/13/avimator/Demonstranten niederreiten ...https://www.rfc1437.de/2006/03/13/demonstranten-niederreiten/LambdaMOO (with LambdaMOO Map) An Introductionhttps://www.rfc1437.de/2006/03/13/lambdamoo-with-lambdamoo-map-an-introduction/MudWalker - A MUD Client for Mac OS Xhttps://www.rfc1437.de/2006/03/13/mudwalker-a-mud-client-for-mac-os-x/Naked Objects in Virtual Lifehttps://www.rfc1437.de/2006/03/13/naked-objects-in-virtual-life/Nicht mehr ganz so geheim ...https://www.rfc1437.de/2006/03/13/nicht-mehr-ganz-so-geheim/NPD-BLOGhttps://www.rfc1437.de/2006/03/13/npd-blog/Roamhttps://www.rfc1437.de/2006/03/13/roam/Technische Revolutionhttps://www.rfc1437.de/2006/03/13/technische-revolution/Gosling Didn’t Get The Memohttps://www.rfc1437.de/2006/03/12/gosling-didn-t-get-the-memo/Mal wieder ne Woche Münchenhttps://www.rfc1437.de/2006/03/12/mal-wieder-ne-woche-muenchen/Was Firmenchefs heute so lernen ...https://www.rfc1437.de/2006/03/12/was-firmenchefs-heute-so-lernen/Official Google Blog: Writely sohttps://www.rfc1437.de/2006/03/10/official-google-blog-writely-so/Apple beantragt Patente auf Feed-Viewer und Browserhttps://www.rfc1437.de/2006/03/09/apple-beantragt-patente-auf-feed-viewer-und/Cassini Finds Signs of Liquid Water on Saturn's Moonhttps://www.rfc1437.de/2006/03/09/cassini-finds-signs-of-liquid-water-on-saturn-s/Lego hats geschnallthttps://www.rfc1437.de/2006/03/09/lego-hats-geschnallt/Merkels neuer Kumpel?https://www.rfc1437.de/2006/03/09/merkels-neuer-kumpel-2/P.K.K. - Purzel-Kollektiv Kübelreiterhttps://www.rfc1437.de/2006/03/09/p-k-k-purzel-kollektiv-kuebelreiter/Shit hits Fan bei Debian?https://www.rfc1437.de/2006/03/09/shit-hits-fan-bei-debian/Waterfall 2006 - International Conference on Sequential Developmenthttps://www.rfc1437.de/2006/03/09/waterfall-2006-international-conference-on/Mac OS X Security Challengehttps://www.rfc1437.de/2006/03/07/mac-os-x-security-challenge/Aries - Umweltprodukte, Die Spezialisten für biologische Schädlingsbekämpfunghttps://www.rfc1437.de/2006/03/06/aries-umweltprodukte-die-spezialisten-fuer/MP3 Python Modulehttps://www.rfc1437.de/2006/03/06/mp3-python-module/OPUS - Zivilrechtliche Ansprüche gegen unerwünschte Mitbenutzer von privaten Funknetzenhttps://www.rfc1437.de/2006/03/06/opus-zivilrechtliche-ansprueche-gegen/Religion ist Opium fürs Volkhttps://www.rfc1437.de/2006/03/06/religion-ist-opium-fuers-volk/aspectes.tigris.orghttps://www.rfc1437.de/2006/03/05/aspectes-tigris-org/CPU/MEM with swap on/offhttps://www.rfc1437.de/2006/03/05/cpu-mem-with-swap-on-off/Hmm.https://www.rfc1437.de/2006/03/05/hmm/Lebowski Fest Westhttps://www.rfc1437.de/2006/03/04/lebowski-fest-west/MANaOS 0.1.2 is outhttps://www.rfc1437.de/2006/03/04/manaos-0-1-2-is-out/Netzneutralität und die Realitäthttps://www.rfc1437.de/2006/03/04/netzneutralitaet-und-die-realitaet/ob das eBay schmeckt?https://www.rfc1437.de/2006/03/04/ob-das-ebay-schmeckt/Principia Discordia the book of Chaos, Discord and Confusion Fnord!https://www.rfc1437.de/2006/03/04/principia-discordia-the-book-of-chaos-discord-and/SharedAppVNChttps://www.rfc1437.de/2006/03/04/sharedappvnc/UFRawhttps://www.rfc1437.de/2006/03/04/ufraw/Zurück zu den KZ-Hühnernhttps://www.rfc1437.de/2006/03/04/zurueck-zu-den-kz-huehnern/Land of the Stupid and Unfreehttps://www.rfc1437.de/2006/03/03/land-of-the-stupid-and-unfree/Larrys verzerrte Realitäthttps://www.rfc1437.de/2006/03/03/larrys-verzerrte-realitaet/Lernkurven diverser Editorenhttps://www.rfc1437.de/2006/03/03/lernkurven-diverser-unix-editoren/Datengier ist geil?https://www.rfc1437.de/2006/03/02/datengier-ist-geil/Warum ich PHP-Software nicht maghttps://www.rfc1437.de/2006/03/02/warum-ich-php-software-nicht-mag/Arbeitsplätze auf dem Altar des Aktienkurses opfernhttps://www.rfc1437.de/2006/03/01/arbeitsplaetze-auf-dem-altar-des-aktienkurses-pfrn/Bock zum Gärtner machenhttps://www.rfc1437.de/2006/03/01/bock-zum-gaertner-machen/Zensur per Anwalthttps://www.rfc1437.de/2006/03/01/zensur-per-anwalt/Blue Ball Machinehttps://www.rfc1437.de/2006/02/28/blue-ball-machine/BranchBasedDevelopmenthttps://www.rfc1437.de/2006/02/28/branchbaseddevelopment/Divmodhttps://www.rfc1437.de/2006/02/28/divmod/MacMini mit Core-Duohttps://www.rfc1437.de/2006/02/28/macmini-mit-core-duo/Mehr Bilder von der DMC-L1https://www.rfc1437.de/2006/02/28/mehr-bilder-von-der-dmc-l1/NASA World Windhttps://www.rfc1437.de/2006/02/28/nasa-world-wind/Pictures of a guy in a blue shirthttps://www.rfc1437.de/2006/02/28/pictures-of-a-guy-in-a-blue-shirt/Screencast über Web-Anwendungenhttps://www.rfc1437.de/2006/02/28/screencast-ueber-web-anwendungen/SonyStyle USA - PRS-500https://www.rfc1437.de/2006/02/28/sonystyle-usa-prs-500/Tail Call Optimization in Pythonhttps://www.rfc1437.de/2006/02/28/tail-call-optimization-in-python/Was sich Firmengründer so vorstellenhttps://www.rfc1437.de/2006/02/28/was-sich-firmengruender-so-vorstellen/Disk Inventory Xhttps://www.rfc1437.de/2006/02/27/disk-inventory-x/id-design, inc. | WhatSizehttps://www.rfc1437.de/2006/02/27/id-design-inc-whatsize/Monolingualhttps://www.rfc1437.de/2006/02/27/monolingual/Digi-Wunder-Chip von TI?https://www.rfc1437.de/2006/02/26/digi-wunder-chip-von-ti/Instant Community Buildinghttps://www.rfc1437.de/2006/02/26/instant-community-building/Leica und Panasonic mit Digi-SLR-Kombohttps://www.rfc1437.de/2006/02/26/leica-und-panasonic-mit-digi-slr-kombo/Textpanderhttps://www.rfc1437.de/2006/02/26/textpander/Hetima:SafariStandhttps://www.rfc1437.de/2006/02/25/hetima-safaristand/London 2.0 RC 4 - Monday 3rd Aprilhttps://www.rfc1437.de/2006/02/25/london-20-rc-4-monday-3rd-april/Pimp My Safarihttps://www.rfc1437.de/2006/02/25/pimp-my-safari/stripsquad.sehttps://www.rfc1437.de/2006/02/25/stripsquad-se/SurfRabbithttps://www.rfc1437.de/2006/02/25/surfrabbit/Wow.https://www.rfc1437.de/2006/02/25/wow/Angebliche Wettermanipulation?https://www.rfc1437.de/2006/02/24/angebliche-wettermanipulation/Democracy Playerhttps://www.rfc1437.de/2006/02/24/democracy-player/Google Macintosh Dashboard Widgetshttps://www.rfc1437.de/2006/02/24/google-macintosh-dashboard-widgets/Growl!https://www.rfc1437.de/2006/02/24/growl/Live Thumbnails: Watch ''em Growhttps://www.rfc1437.de/2006/02/24/live-thumbnails-watch-em-grow/The Little Calculist: JavaScript language levelhttps://www.rfc1437.de/2006/02/24/the-little-calculist-javascript-language-level/Water: the structure and properties of liquid waterhttps://www.rfc1437.de/2006/02/24/water-the-structure-and-properties-of-liquid-water/iWeb und sein Outputhttps://www.rfc1437.de/2006/02/23/iweb-und-sein-output/Nikon D200 Full Reviewhttps://www.rfc1437.de/2006/02/23/nikon-d200-full-review/Patentamtsidiotie in den USAhttps://www.rfc1437.de/2006/02/23/patentamtsidiotie-in-den-usa/RubyForge: Ruby Port to Nokia 770 Internet Tablet: Projektinfohttps://www.rfc1437.de/2006/02/23/rubyforge-ruby-port-to-nokia-770-internet-tablet/Scsh PhotoBasehttps://www.rfc1437.de/2006/02/23/scsh-photobase/So bescheisst man Kundenhttps://www.rfc1437.de/2006/02/23/so-bescheisst-man-kunden/Tomato Torrenthttps://www.rfc1437.de/2006/02/23/tomato-torrent/Tor GUI Competitionhttps://www.rfc1437.de/2006/02/23/tor-gui-competition/Verstrahlter Kochhttps://www.rfc1437.de/2006/02/23/verstrahlter-koch/Wasabi Systemshttps://www.rfc1437.de/2006/02/23/wasabi-systems/An die Content-Diebehttps://www.rfc1437.de/2006/02/22/an-die-content-diebe/Babylonische Erklärung für die Nebra-Himmelsscheibe?https://www.rfc1437.de/2006/02/22/babylonische-erklaerung-fuer-die-nebra-himmelsschb/Clim-Desktop projecthttps://www.rfc1437.de/2006/02/22/clim-desktop-project/Jetzt kommt IBM in Fahrthttps://www.rfc1437.de/2006/02/22/jetzt-kommt-ibm-in-fahrt/Musikindustrie verblödet immer mehrhttps://www.rfc1437.de/2006/02/22/musikindustrie-verbloedet-immer-mehr/Netz-Neutralität gefährdethttps://www.rfc1437.de/2006/02/22/netz-neutralitaet-gefaehrdet/Phollowing the Phlopping Phishhttps://www.rfc1437.de/2006/02/22/phollowing-the-phlopping-phish/The Linux Kernel Driver Interfacehttps://www.rfc1437.de/2006/02/22/the-linux-kernel-driver-interface/virtuelles Bluetooth Keyboardhttps://www.rfc1437.de/2006/02/22/virtuelles-bluetooth-keyboard/Zeichen der Krisehttps://www.rfc1437.de/2006/02/22/zeichen-der-krise/#4G European Grounded "Shuko" Adapter. Walkabout Travel Gear (tm)https://www.rfc1437.de/2006/02/21/4g-european-grounded-shuko-adapter-walkabout/8-p.info - Creammonkeyhttps://www.rfc1437.de/2006/02/21/8-p-info-creammonkey/Bluetooth Securityhttps://www.rfc1437.de/2006/02/21/bluetooth-security/Migrate apps from Internet Explorer to Mozillahttps://www.rfc1437.de/2006/02/21/migrate-apps-from-internet-explorer-to-mozilla/PlayDeluxe Shop - Online-Shophttps://www.rfc1437.de/2006/02/21/playdeluxe-shop-online-shop/Browser sind eben keine Programmstarterhttps://www.rfc1437.de/2006/02/20/browser-sind-eben-keine-programmstarter/Know Your Enemy: Learning with VMwarehttps://www.rfc1437.de/2006/02/20/know-your-enemy-learning-with-vmware/Snowballhttps://www.rfc1437.de/2006/02/20/snowball/Stéphane Ducasse :: Free Online Bookshttps://www.rfc1437.de/2006/02/20/st-phane-ducasse-free-online-books/ZNC - RottenBoyhttps://www.rfc1437.de/2006/02/20/znc-rottenboy/Bush und die Atomkrafthttps://www.rfc1437.de/2006/02/19/bush-und-die-atomkraft/United States of Absurdityhttps://www.rfc1437.de/2006/02/19/united-states-of-absurdity/Cocoa für Klammerfetischistenhttps://www.rfc1437.de/2006/02/18/cocoa-fuer-klammerfetischisten/Gauche:ObjectiveCBridgehttps://www.rfc1437.de/2006/02/18/gauche-objectivecbridge/HOC: A Haskell to Objective-C Bindinghttps://www.rfc1437.de/2006/02/18/hoc-a-haskell-to-objective-c-binding/Der wirkliche Grund hinter Hartz IV?https://www.rfc1437.de/2006/02/17/der-wirkliche-grund-hinter-hartz-iv/Dresdner war «Vertrauensbank der SS»https://www.rfc1437.de/2006/02/17/dresdner-war-vertrauensbank-der-ss/Nokia 770 and Virtual Bluetooth Keyboardhttps://www.rfc1437.de/2006/02/17/nokia-770-and-virtual-bluetooth-keyboard/OpenVPN on Maemohttps://www.rfc1437.de/2006/02/17/openvpn-on-maemo/Protzgehabe testosteron-geschädigter Prolethikerhttps://www.rfc1437.de/2006/02/17/protzgehabe-testosteron-geschaedigter-prolethiker/Bayrisches Innenministerium gegen das Grundgesetzhttps://www.rfc1437.de/2006/02/16/bayrisches-innenministerium-gegen-das-grundgesetz/Firewall-Anbieter, spitzt die Füller!https://www.rfc1437.de/2006/02/16/firewall-anbieter-spitzt-die-fueller/Schöne, neue RFID Welthttps://www.rfc1437.de/2006/02/16/schoene-neue-rfid-welt/Und wann gründen sie die Stasi neu?https://www.rfc1437.de/2006/02/16/und-wann-gruenden-sie-die-stasi-neu/Google Maps Plugin for Address Book - Brian Tothhttps://www.rfc1437.de/2006/02/15/google-maps-plugin-for-address-book-brian-toth/Karlsruhe kippt Luftsicherheitsgesetzhttps://www.rfc1437.de/2006/02/15/karlsruhe/Management by Stupidity or by Corruption?https://www.rfc1437.de/2006/02/15/management-by-stupidity-or-by-corruption/MUlliNER.ORG : Nokia770https://www.rfc1437.de/2006/02/15/mulliner-org-nokia770/SlimserverAndNokia770https://www.rfc1437.de/2006/02/15/slimserverandnokia770/Flagge zeigen gegen Nazishttps://www.rfc1437.de/2006/02/14/bnt-sttt-brn-bndns-fr-mnstr-ggn-rchtsrdklsms-t-n/Datenschutz und Sicherheitsinteressenhttps://www.rfc1437.de/2006/02/14/datenschutz-und-sicherheitsinteressen/Druck auf Hardware-Herstellerhttps://www.rfc1437.de/2006/02/14/druck-auf-hardware-hersteller/Ich mach den Job ja gerne...https://www.rfc1437.de/2006/02/14/ich-mach-den-job-ja-gerne/Mobil? 870 MB sind Mobil?https://www.rfc1437.de/2006/02/14/mobil-870-mb-sind-mobil/Peinliche SSL-Panne bei GeoTrusthttps://www.rfc1437.de/2006/02/14/peinliche-ssl-panne-bei-geotrust/pyOpenSSL - Python interface to the OpenSSL libraryhttps://www.rfc1437.de/2006/02/14/pyopenssl-python-interface-to-the-openssl-library/Sabrina und Twisterhttps://www.rfc1437.de/2006/02/14/sabrina-und-twister/Statistical programming with Rhttps://www.rfc1437.de/2006/02/14/statistical-programming-with-r-2/Yahoo! Design Pattern Libraryhttps://www.rfc1437.de/2006/02/14/yahoo-design-pattern-library/Yahoo! UI Libraryhttps://www.rfc1437.de/2006/02/14/yahoo-ui-library/Man muss Ask MetaFilter einfach liebenhttps://www.rfc1437.de/2006/02/13/man-muss-ask-metafilter-einfach-lieben/screen4DSLR : Changing Focusing screen for Canon DSLRhttps://www.rfc1437.de/2006/02/13/screen4dslr-changing-focusing-screen-for-canon/Spirit erreicht Homeplatehttps://www.rfc1437.de/2006/02/13/spirit-erreicht-homeplate/Kids ...https://www.rfc1437.de/2006/02/12/kids/Strategische Arbeitsmarktpolitikhttps://www.rfc1437.de/2006/02/12/strategische-arbeitsmarktpolitik/Aber bei uns hat ja keiner was gewussthttps://www.rfc1437.de/2006/02/11/aber-bei-uns-hat-ja-keiner-was-gewusst/Online-Luftbilder von Deutschlandhttps://www.rfc1437.de/2006/02/11/online-luftbilder-von-deutschland/I''m not a hater, I just flush a lot.https://www.rfc1437.de/2006/02/10/im-not-a-hater-i-just-flush-a-lot/Klar, ich pack Daten zu Google ...https://www.rfc1437.de/2006/02/10/klar-ich-pack-daten-zu-google/Language Design Is Not Just Solving Puzzleshttps://www.rfc1437.de/2006/02/10/language-design-is-not-just-solving-puzzles/Powerful Remote X Displays with FreeNXhttps://www.rfc1437.de/2006/02/10/powerful-remote-x-displays-with-freenx/RENAISSANCE Le site officiel du film de Christian Volckman - en salles en mars 2006.https://www.rfc1437.de/2006/02/10/renaissance-le-site-officiel-du-film-de-christian/Sin Cityhttps://www.rfc1437.de/2006/02/10/sin-city/VMware Server jetzt Freibierhttps://www.rfc1437.de/2006/02/10/vmware-server-jetzt-freibier/Django Templates are not limitedhttps://www.rfc1437.de/2006/02/09/django-templates-are-not-limited/.eu Domain Debakelhttps://www.rfc1437.de/2006/02/09/eu-domain-debakel/HolisTech Limited Free Software, pwsafehttps://www.rfc1437.de/2006/02/09/holistech-limited-free-software-pwsafe/Menschen den Märkten opfernhttps://www.rfc1437.de/2006/02/09/menschen-den-maerkten-opfern/Password Safehttps://www.rfc1437.de/2006/02/09/password-safe/pwsafe password databasehttps://www.rfc1437.de/2006/02/09/pwsafe-password-database/Spuren im Netzhttps://www.rfc1437.de/2006/02/09/spuren-im-netz/Benford's Lawhttps://www.rfc1437.de/2006/02/08/benford-s-law/EU verliert Gentechnik-Streit mit den USAhttps://www.rfc1437.de/2006/02/08/eu-verliert-gentechnik-streit-mit-den-usa/Hedgehoghttps://www.rfc1437.de/2006/02/08/hedgehog/LEGO Technic Difference Enginehttps://www.rfc1437.de/2006/02/08/lego-technic-difference-engine/Löcher im Java-Sandkastenhttps://www.rfc1437.de/2006/02/08/loecher-im-java-sandkasten/Scientists find new species in 'Garden of Eden'https://www.rfc1437.de/2006/02/08/scientists-find-new-species-in-garden-of-eden/CSS Fisheyehttps://www.rfc1437.de/2006/02/07/css-fisheye/GREYCSTORATIONhttps://www.rfc1437.de/2006/02/07/greycstoration/Lightbox JShttps://www.rfc1437.de/2006/02/07/lightbox-js/AVM könnte ja einfach Treiber unter GPL schreibenhttps://www.rfc1437.de/2006/02/06/avm-koennte-ja-einfach-treiber-unter-gpl-schreiben/HOWTO: Bluetooth GPS and GPSDrive on the Nokia 770https://www.rfc1437.de/2006/02/06/howto-bluetooth-gps-and-gpsdrive-on-the-nokia-770/Kommt einem alles so bekannt vorhttps://www.rfc1437.de/2006/02/06/kommt-einem-alles-so-bekannt-vor/lambda bleibt in Pythonhttps://www.rfc1437.de/2006/02/06/lambda-bleibt-in-python/Nennt mich einen Pessimisten ...https://www.rfc1437.de/2006/02/06/nennt-mich-einen-pessimisten/Ösi-Pässe auch anfällighttps://www.rfc1437.de/2006/02/06/oesi-paesse-auch-anfaellig/BMW bei Google rausgeworfenhttps://www.rfc1437.de/2006/02/05/bmw-bei-google-rausgeworfen/Console Password Managerhttps://www.rfc1437.de/2006/02/05/console-password-manager/The End of the Internet?https://www.rfc1437.de/2006/02/04/the-end-of-the-internet/Bielefelder Schienenklauhttps://www.rfc1437.de/2006/02/03/bielefelder-schienenklau/Zeichen von Intelligenzhttps://www.rfc1437.de/2006/02/03/zeichen-von-intelligenz/Book Review -- The Debian System: Concepts and Techniques | Linux Journalhttps://www.rfc1437.de/2006/02/02/book-review-the-debian-system-concepts-and/Die Lüge von der Informationsfreiheithttps://www.rfc1437.de/2006/02/02/die-luege-von-der-informationsfreiheit/Fischertechnik und der Machttps://www.rfc1437.de/2006/02/02/fischertechnik-und-der-mac/Internet Tablet Talk - Gnumeric 1.6.2 Releasedhttps://www.rfc1437.de/2006/02/02/internet-tablet-talk-gnumeric-1-6-2-released/Kopf in den Sandhttps://www.rfc1437.de/2006/02/02/kopf-in-den-sand/Man fühlt sich schon etwas missbraucht ...https://www.rfc1437.de/2006/02/02/man-fuehlt-sich-schon-etwas-missbraucht/Mandelbrot Set - Labixhttps://www.rfc1437.de/2006/02/02/mandelbrot-set-labix/Nokia 770 Internet Tablethttps://www.rfc1437.de/2006/02/02/nokia-770-internet-tablet/Schickt Münte in Rentehttps://www.rfc1437.de/2006/02/02/schickt-muente-in-rente/Verraten, überwacht und verkaufthttps://www.rfc1437.de/2006/02/02/verraten-ueberwacht-und-verkauft/Biometrischer Reisepass unsicherhttps://www.rfc1437.de/2006/02/01/biometrischer-reisepass-unsicher/Dummschwätzerhttps://www.rfc1437.de/2006/02/01/dummschwaetzer/Eiffel For OS Xhttps://www.rfc1437.de/2006/02/01/eiffel-for-os-x/Just-In-Time-Schemehttps://www.rfc1437.de/2006/02/01/just-in-time-scheme/Übergewichtighttps://www.rfc1437.de/2006/02/01/uebergewichtig/ApplicationCatalog - Maemo Wikihttps://www.rfc1437.de/2006/01/31/applicationcatalog-maemo-wiki/Springer und die Ministererlaubnishttps://www.rfc1437.de/2006/01/31/springer-und-die-ministererlaubnis/Domain-Engel wird pampighttps://www.rfc1437.de/2006/01/29/domain-engel-wird-pampig/Strickmoden - Stricken mit Strickmaschine, Strickdesign und Strickmusterhttps://www.rfc1437.de/2006/01/29/strickmoden-stricken-mit-strickmaschine/ThoughtFix on the Nokia 770: USB Power Injector 2https://www.rfc1437.de/2006/01/29/thoughtfix-on-the-nokia-770-usb-power-injector-2/Fussball-Leinwände und Webseitenhttps://www.rfc1437.de/2006/01/28/fussball-leinwaende-und-webseiten/Guido van Rossum und Web-Frameworkshttps://www.rfc1437.de/2006/01/28/guido-van-rossum-und-web-frameworks/"Bruder Johannes" gestorbenhttps://www.rfc1437.de/2006/01/27/bruder-johannes-gestorben/PythonForMaemo - Python for Maemohttps://www.rfc1437.de/2006/01/27/pythonformaemo-python-for-maemo/twill: a simple scripting language for Web browsinghttps://www.rfc1437.de/2006/01/27/twill-a-simple-scripting-language-for-web-browsing/Wir tun uns immer noch schwerhttps://www.rfc1437.de/2006/01/27/wir-tun-uns-immer-noch-schwer/Hirnfürze von Ex-Ministernhttps://www.rfc1437.de/2006/01/26/hirnfuerze-von-ex-ministern/Interessanter Hybride von Olympushttps://www.rfc1437.de/2006/01/26/interessanter-hybride-von-olympus/Leichte Übertreibungen bei der Netzzeitunghttps://www.rfc1437.de/2006/01/26/leichte-uebertreibungen-bei-der-netzzeitung/Spiele-Protokolle und Firewallshttps://www.rfc1437.de/2006/01/26/spiele-protokolle-und-firewalls/Torvalds: insert foot into mouthhttps://www.rfc1437.de/2006/01/26/torvalds-insert-foot-into-mouth/Windows-Source offenlegen?https://www.rfc1437.de/2006/01/26/windows-source-offenlegen/Opera Mini: Gratis HTML-Browser fürs Handy startet weltweit - Golem.dehttps://www.rfc1437.de/2006/01/25/opera-mini-gratis-html-browser-fuers-handy/Stigmatisierung von Jugendlichen schon in den Zeugnissenhttps://www.rfc1437.de/2006/01/25/stigmatisierung-von-jugendlichen-schon-n-dn-zgnssn/T-Online darf Nutzungsdaten nicht speichernhttps://www.rfc1437.de/2006/01/25/t-online-darf-nutzungsdaten-nicht-speichern/GVU soll Raubkopierer gesponsert habenhttps://www.rfc1437.de/2006/01/24/gvu-soll-raubkopierer-gesponsert-haben/Jean-Remy von Matt entkollert - dafür neidischhttps://www.rfc1437.de/2006/01/24/jean-remy-von-matt-entkollert-dafuer-neidisch/Microsoft macht die Schotten gegen OSS dichthttps://www.rfc1437.de/2006/01/24/microsoft-macht-die-schotten-gegen-oss-dicht/pyvm homehttps://www.rfc1437.de/2006/01/24/pyvm-home/A P R E S S . C O M : Practical Common Lisphttps://www.rfc1437.de/2006/01/23/a-p-r-e-s-s-c-o-m-practical-common-lisp/Bill Clementson's Blog: Update on Termite (A Lisp for Concurrent/Parallel Programming)https://www.rfc1437.de/2006/01/23/bill-clementson-s-blog-update-on-termite-a-lisp/BooCompanyhttps://www.rfc1437.de/2006/01/23/boocompany/Thinking Forthhttps://www.rfc1437.de/2006/01/23/thinking-forth-2/Unofficial documentation of iPhoto 6.0 photocasting feedshttps://www.rfc1437.de/2006/01/23/unofficial-documentation-of-iphoto-6-0/Wann entdecken Devs endlich Notebooks?https://www.rfc1437.de/2006/01/23/wann-entdecken-devs-endlich-notebooks/zum 20. Todestag von Joseph Beuyshttps://www.rfc1437.de/2006/01/23/zum-20-todestag-von-joseph-beuys/Unberechtigter Zugriff auf E-Mail ist halt unberechtigthttps://www.rfc1437.de/2006/01/22/hs-nln-nbrchtgtr-zgrff-f-ml-rchtfrtgt-frstls-kn/A list of open-source HTTP proxies written in pythonhttps://www.rfc1437.de/2006/01/21/a-list-of-open-source-http-proxies-written-in/runit - a UNIX init scheme with service supervisionhttps://www.rfc1437.de/2006/01/21/runit-a-unix-init-scheme-with-service-supervision/WebCleaner - a filtering HTTP proxyhttps://www.rfc1437.de/2006/01/21/webcleaner-a-filtering-http-proxy/Feed Icons - Help establish the new standardhttps://www.rfc1437.de/2006/01/20/feed-icons-help-establish-the-new-standard/HD? Nix da, sagt Hollywoodhttps://www.rfc1437.de/2006/01/20/hd-nix-da-sagt-hollywood/Hurring.com: Code: Python: PHP Serialize implemented in Pythonhttps://www.rfc1437.de/2006/01/20/hurring-com-code-python-php-serialize-implemented/Ok, Sandvox saugt nicht nur Hamsterhttps://www.rfc1437.de/2006/01/20/ok-sandvox-saugt-nicht-nur-hamster/Ross Barkman's Home Pagehttps://www.rfc1437.de/2006/01/20/ross-barkman-s-home-page/ScriptAculoUs - MochiKit - Trachttps://www.rfc1437.de/2006/01/20/scriptaculous-mochikit-trac/Sinar mhttps://www.rfc1437.de/2006/01/20/sinar-m/The Scanner Photography Projecthttps://www.rfc1437.de/2006/01/20/the-scanner-photography-project/US-Justiz will Google Datenhttps://www.rfc1437.de/2006/01/20/us-justiz-will-google-daten/Vertuschen, verleugnen und ignorierenhttps://www.rfc1437.de/2006/01/20/vertuschen-verleugnen-und-ignorieren/Monitor: Vorwürfe gegen Ratiopharmhttps://www.rfc1437.de/2006/01/19/monitor-vorwuerfe-gegen-ratiopharm/Putzige Werbefuzzishttps://www.rfc1437.de/2006/01/19/putzige-werbefuzzis/Und der nächste verlässt unshttps://www.rfc1437.de/2006/01/19/und-der-naechste-verlaesst-uns/Wikipedia.de derzeit abgeschaltethttps://www.rfc1437.de/2006/01/19/wikipediade-derzeit-abgeschaltet/Cosina ist das neue Contax, sort ofhttps://www.rfc1437.de/2006/01/18/cosina-ist-das-neue-contax-sort-of/Katz Eye Focusing Screen for the Canon 10D @ KatzEyeOptics.comhttps://www.rfc1437.de/2006/01/18/katz-eye-focusing-screen-for-the-canon-10d/RapidWeaver - das nächste Website-Toolhttps://www.rfc1437.de/2006/01/18/rapidweaver-das-naechste-website-tool/An alle Oberonistashttps://www.rfc1437.de/2006/01/17/an-alle-oberonistas/Erster Test mit Sandvoxhttps://www.rfc1437.de/2006/01/17/erster-test-mit-sandvox/FDP spannt sich vor die Musikindustriehttps://www.rfc1437.de/2006/01/17/fdp-spannt-sich-vor-die-musikindustrie/Plötzlich evangelischhttps://www.rfc1437.de/2006/01/17/junge-welt-vom-17012006-ploetzlich-evangelisch/Sandvox Test Teil 2https://www.rfc1437.de/2006/01/17/sandvox-test-teil-2/Du bist Blödhttps://www.rfc1437.de/2006/01/16/du-bist-bloed/Fiddling with iWebhttps://www.rfc1437.de/2006/01/15/fiddling-with-iweb/RFID-Zapper - 22C3https://www.rfc1437.de/2006/01/15/rfid-zapper-22c3/Ancient Languages: Perlhttps://www.rfc1437.de/2006/01/14/ancient-languages-perl/Auf Schilys Spurenhttps://www.rfc1437.de/2006/01/13/auf-schilys-spuren/Django Pastehttps://www.rfc1437.de/2006/01/13/django-paste/Europäisches Schulterklopfen auf Kosten der Bürgerrechtehttps://www.rfc1437.de/2006/01/13/europaeisches-schulterklopfen-auf-kstn-dr-brgrrcht/Products - Flip4Mac WMVhttps://www.rfc1437.de/2006/01/13/products-flip4mac-wmv/Apples Photocast Formathttps://www.rfc1437.de/2006/01/12/apples-photocast-format/Jetzt mal ganz ehrlich ...https://www.rfc1437.de/2006/01/12/jetzt-mal-ganz-ehrlich/MoinMoin Release 1.5https://www.rfc1437.de/2006/01/12/moinmoin-release-1-5/Das kalte Grausen packt einen ...https://www.rfc1437.de/2006/01/11/das-kalte-grausen-packt-einen/Feeds auf diesem Serverhttps://www.rfc1437.de/2006/01/11/feeds-auf-diesem-server/Microsoft behält FAT-Patentehttps://www.rfc1437.de/2006/01/11/microsoft-behaelt-fat-patente/ProGraph für OS Xhttps://www.rfc1437.de/2006/01/11/prograph-fuer-os-x//sandbox/spam-filter - The Trac Project - Trachttps://www.rfc1437.de/2006/01/11/sandbox-spam-filter-the-trac-project-trac/Was man so mit Arbeitslosen machen kannhttps://www.rfc1437.de/2006/01/11/was-man-so-mit-arbeitslosen-machen-kann/DotMac nervthttps://www.rfc1437.de/2006/01/10/dotmac-nervt/Efficient Editing With vim - Jonathan McPhersonhttps://www.rfc1437.de/2006/01/10/efficient-editing-with-vim-jonathan-mcpherson/Farbenfrohhttps://www.rfc1437.de/2006/01/10/farbenfroh/Freie Alternative zu Flash?https://www.rfc1437.de/2006/01/10/freie-alternative-zu-flash/Gerade einen Schreck gekriegt ...https://www.rfc1437.de/2006/01/10/gerade-einen-schreck-gekriegt/Kann mir bitte mal jemand erklären ...https://www.rfc1437.de/2006/01/10/kann-mir-bitte-mal-jemand-erklaeren/open sword - pixenhttps://www.rfc1437.de/2006/01/10/open-sword-pixen/Adobe Lightroom Beta: Digital Photography Reviewhttps://www.rfc1437.de/2006/01/09/adobe-lightroom-beta-digital-photography-review/Introducing Sandvox | Karelia Softwarehttps://www.rfc1437.de/2006/01/09/introducing-sandvox-karelia-software/Lightroom - erste Testshttps://www.rfc1437.de/2006/01/09/lightroom-erste-tests/Mancher Abmahnwahnsinn wird verständlich ...https://www.rfc1437.de/2006/01/09/mancher-abmahnwahnsinn-wird-verstaendlich/Mexico Bars Canadian over U.S. No-Fly Listhttps://www.rfc1437.de/2006/01/09/mexico-bars-canadian-over-us-no-fly-list/nadamac CamiScripthttps://www.rfc1437.de/2006/01/09/nadamac-camiscript/nadamac CamiScript - Script Repositoryhttps://www.rfc1437.de/2006/01/09/nadamac-camiscript-script-repository/PictureSync » Photo-sharing for Mac OS Xhttps://www.rfc1437.de/2006/01/09/picturesync-photo-sharing-for-mac-os-x/Polaris: OpenSolaris für den PowerPChttps://www.rfc1437.de/2006/01/09/polaris-opensolaris-fuer-den-powerpc/Billy's Band - polnische Rock-Polkahttps://www.rfc1437.de/2006/01/08/billys-band-polnische-rock-polka/Loading a ZX Spectrum from an iPodhttps://www.rfc1437.de/2006/01/08/loading-a-zx-spectrum-from-an-ipod/Gambit Scheme - eine neue Betahttps://www.rfc1437.de/2006/01/07/gambit-scheme-eine-neue-beta/Impotenz per Funk diagnostizierbarhttps://www.rfc1437.de/2006/01/07/impotenz-per-funk-diagnostizierbar/Nazi und SS-Mann Harrer verstorbenhttps://www.rfc1437.de/2006/01/07/nazi-und-ss-mann-harrer-verstorben/Nur die besten Absichten ...https://www.rfc1437.de/2006/01/07/nur-die-besten-absichten/Wahrung der Interessen des Senats?https://www.rfc1437.de/2006/01/07/wahrung-der-interessen-des-senats/Wiedereinführung des Schuldturmshttps://www.rfc1437.de/2006/01/07/wiedereinfuehrung-des-schuldturms/AES (Rijndael) Encryption Test in JavaScripthttps://www.rfc1437.de/2006/01/06/aes-rijndael-encryption-test-in-javascript/FUDMachine SCOhttps://www.rfc1437.de/2006/01/06/fudmachine-sco/Informationsfreiheitsgesetz und seine Umsetzunghttps://www.rfc1437.de/2006/01/06/informationsfreiheitsgesetz-und-seine-umsetzung/JavaScript Encryption Libraryhttps://www.rfc1437.de/2006/01/06/javascript-encryption-library/OpenPGP Message Encryption in JavaScripthttps://www.rfc1437.de/2006/01/06/openpgp-message-encryption-in-javascript/Pangasiushttps://www.rfc1437.de/2006/01/06/pangasius/PuTTY for Symbian OShttps://www.rfc1437.de/2006/01/06/putty-for-symbian-os/Rijndael in JavaScripthttps://www.rfc1437.de/2006/01/06/rijndael-in-javascript/Spekulationen um neue Atommeiler in NRWhttps://www.rfc1437.de/2006/01/06/spekulationen-um-neue-atommeiler-in-nrw/Terrorverdächtiger Hut?https://www.rfc1437.de/2006/01/06/terrorverdaechtiger-hut/twofish/javascripthttps://www.rfc1437.de/2006/01/06/twofish-javascript/code.enthought.com - Enthought Tool Suitehttps://www.rfc1437.de/2006/01/05/code-enthought-com-enthought-tool-suite/morons.org - Anti-Gay Preacher Arrested for Soliciting Sex from Male Undercover Cophttps://www.rfc1437.de/2006/01/05/morons-org-anti-gay-preacher-arrested-for//my/cssQuery/https://www.rfc1437.de/2006/01/05/my-cssquery/Neues von Lego Mindstormshttps://www.rfc1437.de/2006/01/05/neues-von-lego-mindstorms/Schmeissen wir doch gleich das Geld in den Tankhttps://www.rfc1437.de/2006/01/05/schmeissen-wir-doch-gleich-das-geld-in-den-tank/Aggregatoren und Referrer-Spamminghttps://www.rfc1437.de/2006/01/04/aggregatoren-und-referrer-spamming/Baden-Württemberg, das etwas deutschere Deutschland?https://www.rfc1437.de/2006/01/04/baden-wuerttemberg-das-etwas-deutschere-deutschlnd/Codevillehttps://www.rfc1437.de/2006/01/04/codeville/Crossroads 0.23https://www.rfc1437.de/2006/01/04/crossroads-0-23/CSU kann Gas und Strom nicht auseinanderhaltenhttps://www.rfc1437.de/2006/01/04/csu-kann-gas-und-strom-nicht-auseinanderhalten/Hat so ein RFID-Pass eigentlich Garantie?https://www.rfc1437.de/2006/01/04/hat-so-ein-rfid-pass-eigentlich-garantie/monotone: distributed version controlhttps://www.rfc1437.de/2006/01/04/monotone-distributed-version-control/xmledit - A filetype plugin to help edit XML, HTML, and SGML documents : vim onlinehttps://www.rfc1437.de/2006/01/04/xmledit-a-filetype-plugin-to-help-edit-xml-html/cucumber2: an object-relational mapping system for Python and PostgreSQLhttps://www.rfc1437.de/2006/01/03/cucumber2-an-object-relational-mapping-system-for/Folter-Hoax und die Aktzeptanzhttps://www.rfc1437.de/2006/01/03/folter-hoax-und-die-aktzeptanz/Schon seltsamhttps://www.rfc1437.de/2006/01/03/schon-seltsam/WAP, Internet & Multimedia Messaging (MMS) Einstellungen Netzbetreiber Deutschland - Telefon-Treffhttps://www.rfc1437.de/2006/01/03/wap-internet-multimedia-messaging-mms/Wie man sich vor Verantwortung drückthttps://www.rfc1437.de/2006/01/03/wie-man-sich-vor-verantwortung-drueckt/Camino Bookmarkletshttps://www.rfc1437.de/2006/01/02/camino-bookmarklets/Damit Softwarepatente nicht in Vergessenheit geratenhttps://www.rfc1437.de/2006/01/02/damit-softwarepatente-nicht-in-vergessenheit-gertn/FireFox ist schon strangehttps://www.rfc1437.de/2006/01/02/firefox-ist-schon-strange/Lisp at Light Speedhttps://www.rfc1437.de/2006/01/02/lisp-at-light-speed/nadamac CamiToolshttps://www.rfc1437.de/2006/01/02/nadamac-camitools/Noch mehr Abmahnereien zum neuen Jahrhttps://www.rfc1437.de/2006/01/02/noch-mehr-abmahnereien-zum-neuen-jahr/NoScript - Whitelist JavaScript blocking for a safer Firefox experience! - what is it? - InformActionhttps://www.rfc1437.de/2006/01/02/noscript-whitelist-javascript-blocking-for-a/Taste for the Webhttps://www.rfc1437.de/2006/01/02/taste-for-the-web/Verfassungsbeschwerde gegen Abhörbefugnisse des Zollshttps://www.rfc1437.de/2006/01/02/verfassungsbeschwerd-ggn-mstrttn-bhrbfgnss-ds-zlls/Web Developer Extensionhttps://www.rfc1437.de/2006/01/02/web-developer-extension/Forscher neigen zu Übertreibungenhttps://www.rfc1437.de/2005/12/31/forscher-neigen-zu-uebertreibungen/Re: Web application design: the REST of the storyhttps://www.rfc1437.de/2005/12/31/re-web-application-design-the-rest-of-the-story/Wiehernde Amtsschimmelhttps://www.rfc1437.de/2005/12/31/wiehernde-amtsschimmel/LGT: Lightweight Game Toolkit for Pythonhttps://www.rfc1437.de/2005/12/30/lgt-lightweight-game-toolkit-for-python/newsRiver - Aggregator für den OPML Editorhttps://www.rfc1437.de/2005/12/30/newsriver-aggregator-fuer-den-opml-editor/SIXTUS.NET - Blog | Papi, wo kommen eigenlich die ganzen Spam-Kommentare her? Die, mein Kind, kommen aus Lindlar, vom Sebastian Fosshttps://www.rfc1437.de/2005/12/30/sixtus-net-blog-papi-wo-kommen-eigenlich-die/TP: Noch nicht aus dem Vollen geschöpfthttps://www.rfc1437.de/2005/12/30/tp-noch-nicht-aus-dem-vollen-geschoepft/Webstemmerhttps://www.rfc1437.de/2005/12/30/webstemmer/RAW Developer Upgradehttps://www.rfc1437.de/2005/12/29/raw-developer-upgrade/Susanne Osthoff - und die Presse und Politikhttps://www.rfc1437.de/2005/12/29/susanne-osthoff-und-die-presse-und-politik/Wer ist denn jetzt hier der Hassprediger?https://www.rfc1437.de/2005/12/28/wer-ist-denn-jetzt-hier-der-hassprediger/Was ist los mit dem Glos?https://www.rfc1437.de/2005/12/27/was-ist-los-mit-dem-glos/Wettbewerb des Horrorshttps://www.rfc1437.de/2005/12/27/wettbewerb-des-horrors/Hwang soll alle Ergebnisse gefälscht habenhttps://www.rfc1437.de/2005/12/26/hwang-soll-alle-ergebnisse-gefaelscht-haben/Internet Explorer Suckshttps://www.rfc1437.de/2005/12/26/internet-explorer-sucks/Leica Digital Mhttps://www.rfc1437.de/2005/12/26/leica-digital-m/Neue Kleinbild-Optiken von Zeisshttps://www.rfc1437.de/2005/12/26/neue-kleinbild-optiken-von-zeiss/simple_json 1.0https://www.rfc1437.de/2005/12/26/simple-json-1-0/Strelitzia reginaehttps://www.rfc1437.de/2005/12/26/strelitzia-reginae/Nun habt doch mal Verständnis!https://www.rfc1437.de/2005/12/23/nun-habt-doch-mal-verstaendnis/SCO damit wohl bald besiegelthttps://www.rfc1437.de/2005/12/23/sco-damit-wohl-bald-besiegelt/Demontage von NRW geht voranhttps://www.rfc1437.de/2005/12/22/demontage-von-nrw-geht-voran/Ja watt denn nu?https://www.rfc1437.de/2005/12/22/ja-watt-denn-nu/Rennende Riesen Down Under?https://www.rfc1437.de/2005/12/22/rennende-riesen-down-under/CSS2/DOM - Styling an input type="file"https://www.rfc1437.de/2005/12/21/css2-dom-styling-an-input-type-file/Rechenspielchenhttps://www.rfc1437.de/2005/12/21/rechenspielchen/StickBlog » Blog Archive » Upload multiple files with a single file elementhttps://www.rfc1437.de/2005/12/21/stickblog-blog-archive-upload-multiple-files-with/Weblogshttps://www.rfc1437.de/2005/12/21/weblogs/Werft die Purschen zu Poden!https://www.rfc1437.de/2005/12/21/werft-die-purschen-zu-poden/Experten am Werkhttps://www.rfc1437.de/2005/12/20/experten-am-werk/Reichsarbeitsdiensthttps://www.rfc1437.de/2005/12/20/reichsarbeitsdienst/Verschollener Mars-Roboter "Beagle 2" entdeckthttps://www.rfc1437.de/2005/12/20/verschollener-mars-roboter-beagle-2-entdeckt/Dejavu - Trachttps://www.rfc1437.de/2005/12/19/dejavu-trac-2/Homebrew CPU Home Pagehttps://www.rfc1437.de/2005/12/19/homebrew-cpu-home-page/leichte Instabilität dieser Sitehttps://www.rfc1437.de/2005/12/19/leichte-instabilitaet-dieser-site/Download DrScheme v300https://www.rfc1437.de/2005/12/18/download-drscheme-v300/Elende Abzockerhttps://www.rfc1437.de/2005/12/18/elende-abzocker/Pandora - erste Spielereienhttps://www.rfc1437.de/2005/12/18/pandora-erste-spielereien/Qualitätssicherung im iTunes Music Storehttps://www.rfc1437.de/2005/12/18/qualitaetssicherung-im-itunes-music-store/SVG Has Landedhttps://www.rfc1437.de/2005/12/18/svg-has-landed/Wie wärs denn mal mit Ausbilden?https://www.rfc1437.de/2005/12/18/wie-waers-denn-mal-mit-ausbilden/AirTunes - nur ne halbe Sache?https://www.rfc1437.de/2005/12/17/airtunes-nur-ne-halbe-sache/Apple und Firewire - bald ein Ende?https://www.rfc1437.de/2005/12/17/apple-und-firewire-bald-ein-ende/appscripthttps://www.rfc1437.de/2005/12/17/appscript-3/Generische Funktionen mit Pythonhttps://www.rfc1437.de/2005/12/17/generische-funktionen-mit-python/LTK - The Lisp Toolkithttps://www.rfc1437.de/2005/12/17/ltk-the-lisp-toolkit/Sams Teach Yourself Shell Programming in 24 Hourshttps://www.rfc1437.de/2005/12/17/sams-teach-yourself-shell-programming-in-24-hours/Tonnenschwere Moore-Skulptur gestohlenhttps://www.rfc1437.de/2005/12/17/tonnenschwere-moore-skulptur-gestohlen/Bundestag verlängert Zoll-Befugnissehttps://www.rfc1437.de/2005/12/16/bundestag-verlaengert-zoll-befugnisse/Gen-Food-Dreck auch bald in Deutschland?https://www.rfc1437.de/2005/12/16/gen-food-dreck-auch-bald-in-deutschland/[GOODIE] Headless Squeak for OS X (Re: Mac VM 3.2.X)https://www.rfc1437.de/2005/12/16/goodie-headless-squeak-for-os-x-re-mac-vm-3-2-x/Hyper Estraier: a full-text search system for communitieshttps://www.rfc1437.de/2005/12/16/hyper-estraier-a-full-text-search-system-for/The Xapian Projecthttps://www.rfc1437.de/2005/12/16/the-xapian-project/Bankenskandal in Italien: keine kleinen Brötchenhttps://www.rfc1437.de/2005/12/15/bankenskandal-in-italien-keine-kleinen-broetchen/Inets 2.5.5https://www.rfc1437.de/2005/12/15/inets-2-5-5/Is Rails a DSL? What is a DSL, and is it possible in Python?https://www.rfc1437.de/2005/12/15/is-rails-a-dsl-what-is-a-dsl-and-is-it-possible/Niederlage für Strafanzeigen-Maschinerie gegen P2P-Nutzerhttps://www.rfc1437.de/2005/12/15/juristische-nidrlg-fr-strfnzgn-mschnr-ggn-p2p-ntzr/Linux Daemon Writing HOWTOhttps://www.rfc1437.de/2005/12/15/linux-daemon-writing-howto/Yawshttps://www.rfc1437.de/2005/12/15/yaws/Python Cheese Shop : python-fastcgi 1.0https://www.rfc1437.de/2005/12/14/python-cheese-shop-python-fastcgi-1-0/Python OpenID 1.0.1 Released — OpenID Enabledhttps://www.rfc1437.de/2005/12/14/python-openid-1-0-1-released-openid-enabled/Vorratsdatenspeicherung ist ein Skandalhttps://www.rfc1437.de/2005/12/14/vorratsdatenspeicherung-ist-ein-skandal/Brüssel will jetzt auch am Fernsehprogramm rumpfuschenhttps://www.rfc1437.de/2005/12/13/bruessel-will-jetzt-auch-am-fernsehprgrmm-rmpfschn/Hacking the jProject - The Daily WTFhttps://www.rfc1437.de/2005/12/13/hacking-the-jproject-the-daily-wtf/How-To Guide for Descriptorshttps://www.rfc1437.de/2005/12/13/how-to-guide-for-descriptors/jacobian.org : Django performance tipshttps://www.rfc1437.de/2005/12/13/jacobian-org-django-performance-tips/Nur so eine Überlegunghttps://www.rfc1437.de/2005/12/13/nur-so-eine-ueberlegung/pgpool pagehttps://www.rfc1437.de/2005/12/13/pgpool-page/Von Kontrolle redet mal wieder keinerhttps://www.rfc1437.de/2005/12/12/von-kontrolle-redet-mal-wieder-keiner/Westerwelle an Lächerlichkeit kaum zu überbietenhttps://www.rfc1437.de/2005/12/12/westerwelle-an-laecherlichkeit-kaum-zu-ueberbieten/Wikipedia verklagen?https://www.rfc1437.de/2005/12/12/wikipedia-verklagen/Seltsames iTunes Verhaltenhttps://www.rfc1437.de/2005/12/11/seltsames-itunes-verhalten/Guardian Unlimited Special reports How planespotters turned into the scourge of the CIAhttps://www.rfc1437.de/2005/12/10/guardian-unlimited-special-reports-how/Super-DRM-Architektur der Zukunfthttps://www.rfc1437.de/2005/12/10/super-drm-architektur-der-zukunft/Und wir machen alle Fehler erneuthttps://www.rfc1437.de/2005/12/10/und-wir-machen-alle-fehler-erneut/Deadlockhttps://www.rfc1437.de/2005/12/09/deadlock/Fragen, die man sich stellen musshttps://www.rfc1437.de/2005/12/09/fragen-die-man-sich-stellen-muss/Grössenwahnsinnige Musikverlagehttps://www.rfc1437.de/2005/12/09/groessenwahnsinnige-musikverlage/Kampfsprachehttps://www.rfc1437.de/2005/12/09/kampfsprache/Klimagipfel: USA drohen mit Vetohttps://www.rfc1437.de/2005/12/09/klimagipfel-usa-drohen-mit-veto/setting user passwords in adminhttps://www.rfc1437.de/2005/12/09/setting-user-passwords-in-admin/Sony fällt schon wieder aufhttps://www.rfc1437.de/2005/12/09/sony-faellt-schon-wieder-auf/SystemExit und exception handlershttps://www.rfc1437.de/2005/12/09/systemexit-und-exception-handlers/Vampirehttps://www.rfc1437.de/2005/12/09/vampire/Yellow-Box für Windowshttps://www.rfc1437.de/2005/12/09/yellow-box-fuer-windows/Apple Aperture Review - oder: Beware of Version 1.0 | Die Stimme der freien Welthttps://www.rfc1437.de/2005/12/08/apple-aperture-review-oder-beware-of-version-1-0/Erschreckend ist ...https://www.rfc1437.de/2005/12/08/erschreckend-ist/Learning Seasidehttps://www.rfc1437.de/2005/12/08/learning-seaside/Umschaltung kompletthttps://www.rfc1437.de/2005/12/08/umschaltung-komplett/Ajax Sucks Most of the Time (Jakob Nielsen's Alertbox December 2005)https://www.rfc1437.de/2005/12/07/ajax-sucks-most-of-the-time-jakob-nielsen-s/Commentaryhttps://www.rfc1437.de/2005/12/07/commentary/Frankreich will Urheberrecht verschärfenhttps://www.rfc1437.de/2005/12/07/frankreich-will-urheberrecht-verschaerfen/Kriegt Sony jetzt Ärger mit Apple?https://www.rfc1437.de/2005/12/07/kriegt-sony-jetzt-aerger-mit-apple/pyinotifyhttps://www.rfc1437.de/2005/12/07/pyinotify/Seltsame Äusserungen von Condoleezza Ricehttps://www.rfc1437.de/2005/12/07/seltsame-aeusserungen-von-condoleezza-rice/Discover Music - Pandorahttps://www.rfc1437.de/2005/12/06/discover-music-pandora/Kampagne gegen freie Software in Frankreichhttps://www.rfc1437.de/2005/12/06/kampagne-gegen-freie-software-in-frankreich/Unsterblicher Briefwechselhttps://www.rfc1437.de/2005/12/06/unsterblicher-briefwechsel/Weblog-Umzughttps://www.rfc1437.de/2005/12/06/weblog-umzug/Aperture bei Ars Technicahttps://www.rfc1437.de/2005/12/05/aperture-page-1/Oh Mann, bei solchen Richtern brauchen wir keine Verbrecher mehr ...https://www.rfc1437.de/2005/12/05/oh-mann-bei-solchen-rchtrn-brchn-wr-kn-vrbrchr-mhr/Paj''s Home: Cryptography: JavaScript MD5: sha1.jshttps://www.rfc1437.de/2005/12/05/paj-s-home-cryptography-javascript-md5-sha1-js/Und wech mit den Schrankenhttps://www.rfc1437.de/2005/12/05/und-wech-mit-den-schranken/Gehts Otto Orwell endlich an den Kragen?https://www.rfc1437.de/2005/12/04/gehts-otto-orwell-endlich-an-den-kragen/Geißler (und andere) über seine (und ihre) Parteihttps://www.rfc1437.de/2005/12/04/geisler-und-andere-uber-seine-und-ihre-partei/Trolle in Kommentaren - gescheitert am Intelligenztesthttps://www.rfc1437.de/2005/12/04/trolle-in-kommentaren-gescheitert-am-intellignztst/"Bild" als Kulturproblem von Gerhard Henschelhttps://www.rfc1437.de/2005/12/03/bild-als-kulturproblem-von-gerhard-henschel/Boßdorf fällt mal wieder aufhttps://www.rfc1437.de/2005/12/03/bosdorf-fallt-mal-wieder-auf/EU will Telefondaten sechs Monate speichernhttps://www.rfc1437.de/2005/12/03/eu-will-telefondaten-sechs-monate-speichern/Muss die FDP eine Millionenstrafe zahlen?https://www.rfc1437.de/2005/12/03/muss-die-fdp-eine-millionenstrafe-zahlen/Userscripts.org - Universal Repositoryhttps://www.rfc1437.de/2005/12/03/userscripts-org-universal-repository/Wusste RWE von Mängeln bei Strommasten?https://www.rfc1437.de/2005/12/03/wusste-rwe-von-maengeln-bei-strommasten/akismet.pyhttps://www.rfc1437.de/2005/12/02/akismet-py/Daten-Nichtschutz-Erklärungen bei Versicherungenhttps://www.rfc1437.de/2005/12/02/daten-nichtschutz-erklarungen-bei-versicherungen/Development « Akismethttps://www.rfc1437.de/2005/12/02/development-akismet/Louiehttps://www.rfc1437.de/2005/12/02/louie/Neue Gesundheitssystem-Beschnittehttps://www.rfc1437.de/2005/12/02/neue-gesundheitssystem-beschnitte/Manchmal zweifelt man an Applehttps://www.rfc1437.de/2005/12/01/manchmal-zweifelt-man-an-apple/SQLAlchemy READMEhttps://www.rfc1437.de/2005/12/01/sqlalchemy-readme/Vorratsspeicherung von TK-Daten: Die großen Fraktionen knicken einhttps://www.rfc1437.de/2005/12/01/vorratsspeicherung-vn-tk-dtn-d-grsn-frktnn-knckn-n/axentric. a web designer's “tackboard”.https://www.rfc1437.de/2005/11/30/axentric-a-web-designer-s-tackboard/Gericht verhandelt Bleiberecht des "Bremer Taliban"https://www.rfc1437.de/2005/11/30/gericht-verhandelt-bleiberecht-des-bremer-taliban/Overview of new features in Apache 2.2 - Apache HTTP Serverhttps://www.rfc1437.de/2005/11/30/overview-of-new-features-in-apache-2-2-apache/Privatsender über Satellit nur noch verschlüsselt?https://www.rfc1437.de/2005/11/30/privatsender-ueber-stllt-nr-nch-vrschlsslt-tgsschd/What’s New in WordPress 2.0? · Asymptomatichttps://www.rfc1437.de/2005/11/30/what-s-new-in-wordpress-2-0-asymptomatic/Mal wieder was von der Bastelfronthttps://www.rfc1437.de/2005/11/29/mal-wieder-was-von-der-bastelfront/Google Groups : microsoft.public.windowsmedia.drmhttps://www.rfc1437.de/2005/11/28/google-groups-microsoft-public-windowsmedia-drm/Kardinalssprüche gegen iPod und Co.https://www.rfc1437.de/2005/11/28/kardinalsspruche-gegen-ipod-und-co/Merkel legt die Gleitcreme aufhttps://www.rfc1437.de/2005/11/28/merkel-legt-die-gleitcreme-auf/Nur wenige Tage im Amt, aber korrupt bis ins Mark?https://www.rfc1437.de/2005/11/28/nur-wenige-tage-im-amt-aber-korrupt-bis-ins-mark/Warum unsere Politiker keine Volksbegehren wollenhttps://www.rfc1437.de/2005/11/28/warum-unsere-politiker-keine-volksbegehren-wollen/Another OPML server...https://www.rfc1437.de/2005/11/27/another-opml-server/JobControl - Django Projects - Trachttps://www.rfc1437.de/2005/11/27/jobcontrol-django-projects-trac/Das Versagen der RWEhttps://www.rfc1437.de/2005/11/26/das-versagen-der-rwe/Eine Schneeflocke fällt ...https://www.rfc1437.de/2005/11/26/eine-schneeflocke-fallt/Erster anstehender Abgang der Regierung?https://www.rfc1437.de/2005/11/26/erster-anstehender-abgang-der-regierung/Family-Updatehttps://www.rfc1437.de/2005/11/26/family-update/AirPort Bloghttps://www.rfc1437.de/2005/11/24/airport-blog/Auf in die totale Überwachunghttps://www.rfc1437.de/2005/11/24/auf-in-die-totale-uberwachung/DOPE Squad Securityhttps://www.rfc1437.de/2005/11/24/dope-squad-security/DragAndDrop - MochiKit - Trachttps://www.rfc1437.de/2005/11/24/draganddrop-mochikit-trac/Holografische Wechselmedien mit bis zu 1,6 Terabytehttps://www.rfc1437.de/2005/11/24/holografische-wechselmedien-mit-bis-zu-16-terabyte/How Secure is WEP, Anyway?https://www.rfc1437.de/2005/11/24/how-secure-is-wep-anyway/Weird Python 2.3 Bughttps://www.rfc1437.de/2005/11/24/weird-python-23-bug/Manchmal ist OS X etwas strangehttps://www.rfc1437.de/2005/11/23/manchmal-ist-os-x-etwas-strange/Microsoft to Standardize Office Formats in ECMAhttps://www.rfc1437.de/2005/11/23/microsoft-to-standardize-office-formats-in-ecma/The Vienna Conclusion: Sponsorship+Politics=Influencehttps://www.rfc1437.de/2005/11/23/the-vienna-conclusion-sponsorshippoliticsinfluence/Vatikan-Papier: Schwule dürfen keine Priester werdenhttps://www.rfc1437.de/2005/11/23/vatikan-papier-schwule-durfen-keine-priester-werdn/Web Development Bookmarkletshttps://www.rfc1437.de/2005/11/23/web-development-bookmarklets-2/Closures python,scheme,rubyhttps://www.rfc1437.de/2005/11/22/closures-python-scheme-ruby/EU Generalanwalt gegen Datenweitergabehttps://www.rfc1437.de/2005/11/22/eu-generalanwalt-gegen-datenweitergabe/Hab ich eigentlich schon gesagt, ...https://www.rfc1437.de/2005/11/22/hab-ich-eigentlich-schon-gesagt/Light Field Photography with a Hand-Held Plenoptic Camerahttps://www.rfc1437.de/2005/11/22/light-field-photography-with-a-hand-held/Linux on an Apple Powerbook G4https://www.rfc1437.de/2005/11/22/linux-on-an-apple-powerbook-g4/Routes 1.0 Releasedhttps://www.rfc1437.de/2005/11/22/routes-1-0-released/"The Whitespace Thing" for OCamlhttps://www.rfc1437.de/2005/11/22/the-whitespace-thing-for-ocaml/Ubuntu on the PowerBook G4 (powerbook5,6)https://www.rfc1437.de/2005/11/22/ubuntu-on-the-powerbook-g4-powerbook5-6/Ubuntu und Powerbookhttps://www.rfc1437.de/2005/11/22/ubuntu-und-powerbook/Dejavu - Trachttps://www.rfc1437.de/2005/11/21/dejavu-trac/Ein Marsjahr unterwegshttps://www.rfc1437.de/2005/11/21/ein-marsjahr-unterwegs/Na endlich gehts der Dialer-Verwertungskette mal an den Kragenhttps://www.rfc1437.de/2005/11/21/na-endlich-gehts-der-dilr-vrwrtngsktt-ml-n-dn-krgn/Rechtsstreit um ARD-Wahl-Grafiken beigelegthttps://www.rfc1437.de/2005/11/21/rechtsstreit-um-ard-wahl-grafiken-beigelegt/Deutschland - Waffenschieberhttps://www.rfc1437.de/2005/11/19/deutschland-waffenschieber/Hyperthreading hurts server performance, say developershttps://www.rfc1437.de/2005/11/19/hyperthreading-hurts-server-performance-say/Richard Stallman Gets in Trouble with UN Security for Wearing a Tin-Foil Hathttps://www.rfc1437.de/2005/11/19/richard-stallman-gets-in-trouble-with-un-security/Taxi 3https://www.rfc1437.de/2005/11/19/taxi-3/Widerwärtig ...https://www.rfc1437.de/2005/11/19/widerwartig/Definition: Peinlichhttps://www.rfc1437.de/2005/11/18/definition-peinlich/Betrug am Fussballhttps://www.rfc1437.de/2005/11/17/betrug-am-fussball/Hibernate on your non-brandnew Machttps://www.rfc1437.de/2005/11/17/hibernate-on-your-non-brandnew-mac/Kritische Lücke in Content Management System Mambohttps://www.rfc1437.de/2005/11/17/kritische-lucke-in-content-management-system-mambo/Ein Millimeterhttps://www.rfc1437.de/2005/11/16/ein-millimeter/Kaktusmilbehttps://www.rfc1437.de/2005/11/16/kaktusmilbe/Kaktusmilbe Revisitedhttps://www.rfc1437.de/2005/11/16/kaktusmilbe-revisited/Kaktusstachelpolsterhttps://www.rfc1437.de/2005/11/16/kaktusstachelpolster/e-Voting: Anfechtung der Bundestagswahl wegen Wahlcomputernhttps://www.rfc1437.de/2005/11/14/e-voting-anfechtung-der-bundestgswhl-wgn-whlcmptrn/Manches ärgert mich fürchterlichhttps://www.rfc1437.de/2005/11/14/manches-aergert-mich-fuerchterlich/Und dann war da noch ...https://www.rfc1437.de/2005/11/14/und-dann-war-da-noch/Apples WebObjects mit neuen Lizenzbedingungenhttps://www.rfc1437.de/2005/11/13/apples-webobjects-mit-neuen-lizenzbedingungen/Astgewirrhttps://www.rfc1437.de/2005/11/13/astgewirr/Beim Geocaching fotografierthttps://www.rfc1437.de/2005/11/13/beim-geocaching-fotografiert/Ein paar mehr Bilder ...https://www.rfc1437.de/2005/11/13/ein-paar-mehr-bilder/Esmeraldahttps://www.rfc1437.de/2005/11/13/esmeralda/Fliessender Flusshttps://www.rfc1437.de/2005/11/13/fliessender-fluss/Gefällter Baumhttps://www.rfc1437.de/2005/11/13/gefaellter-baum/Jäger und Beutehttps://www.rfc1437.de/2005/11/13/jaeger-und-beute/L.O.V.E.https://www.rfc1437.de/2005/11/13/love-2/Moorseehttps://www.rfc1437.de/2005/11/13/moorsee/Linux-Vserver on Debian Sargehttps://www.rfc1437.de/2005/11/12/linux-vserver-on-debian-sarge/Mac-on-Linuxhttps://www.rfc1437.de/2005/11/12/mac-on-linux/Mac-on-Machttps://www.rfc1437.de/2005/11/12/mac-on-mac/Traumtänzer at Workhttps://www.rfc1437.de/2005/11/12/traumtanzer-at-work/Boykottiert Sony-BMG!https://www.rfc1437.de/2005/11/11/boykottiert-sony-bmg/Phishing: Auch die iTAN bietet keinen Schutzhttps://www.rfc1437.de/2005/11/11/phishing-auch-die-itan-bietet-keinen-schutz/Realitätsverlust bei SAP-Vorständlernhttps://www.rfc1437.de/2005/11/11/realitatsverlust-bei-sap-vorstandlern/wikiCalchttps://www.rfc1437.de/2005/11/10/wikicalc/mal wieder ne Woche Münchenhttps://www.rfc1437.de/2005/11/07/mal-wieder-ne-woche-munchen/SPD verkauft den Kündigungsschutzhttps://www.rfc1437.de/2005/11/05/spd-verkauft-den-kundigungsschutz/sql relayhttps://www.rfc1437.de/2005/11/05/sql-relay/Auf in den Polizeitstaat Deutschland!https://www.rfc1437.de/2005/11/04/auf-in-den-polizeitstaat-deutschland/Mehrwertsteuer vs. Vermögenssteuerhttps://www.rfc1437.de/2005/11/04/mehrwertsteuer-vs-vermogenssteuer/Die Feigheit der SPDhttps://www.rfc1437.de/2005/11/02/die-feigheit-der-spd/Rumsfeld verweigert Uno Zugang zu Häftlingenhttps://www.rfc1437.de/2005/11/02/rumsfeld-verweigert-uno-zugang-zu-haftlingen/coveragehttps://www.rfc1437.de/2005/11/01/coverage/Sony BMGs Kopierschutz mit Rootkit-Funktionenhttps://www.rfc1437.de/2005/11/01/sony-bmgs-kopierschutz-mit-rootkit-funktionen/Stoiber hat ausgestaubthttps://www.rfc1437.de/2005/11/01/stoiber-hat-ausgestaubt/A Test Framework for Djangohttps://www.rfc1437.de/2005/10/31/a-test-framework-for-django/Bildung und Wohlstand - aber nicht für jedenhttps://www.rfc1437.de/2005/10/31/bildung-und-wohlstand-aber-nicht-fur-jeden/Müntes Abgang?https://www.rfc1437.de/2005/10/31/muntes-abgang/Seleniumhttps://www.rfc1437.de/2005/10/31/selenium/Stoiber kneift?https://www.rfc1437.de/2005/10/31/stoiber-kneift/Case/When/Otherwise for Djangohttps://www.rfc1437.de/2005/10/30/casewhenotherwise-for-django/Hochgestapelthttps://www.rfc1437.de/2005/10/29/hochgestapelt/Spaziergang am Kanalhttps://www.rfc1437.de/2005/10/29/spaziergang-am-kanal/Zugbrückehttps://www.rfc1437.de/2005/10/29/zugbruecke/Adhoc-Organization in CM-Systemshttps://www.rfc1437.de/2005/10/28/adhoc-organization-in-cm-systems/Werbebanner in 2005https://www.rfc1437.de/2005/10/28/werbebanner-in-2005/Aperture und Performancehttps://www.rfc1437.de/2005/10/27/aperture-und-performance/Bock: meet Gärtnerhttps://www.rfc1437.de/2005/10/27/bock-meet-gartner/cucumber2https://www.rfc1437.de/2005/10/27/cucumber2/Django Projecthttps://www.rfc1437.de/2005/10/27/django-project/PostgreSQL 8.1https://www.rfc1437.de/2005/10/27/postgresql-81/Unheimliche Allianzhttps://www.rfc1437.de/2005/10/27/unheimliche-allianz/XML unter Patentschutz?https://www.rfc1437.de/2005/10/27/xml-unter-patentschutz/Akismet - zentralistischer Anti-Spam-Filterhttps://www.rfc1437.de/2005/10/26/akismet-zentralistischer-anti-spam-filter/"Fitting on" some frameworkhttps://www.rfc1437.de/2005/10/26/fitting-on-some-framework/JavaScript Interactive Interpreterhttps://www.rfc1437.de/2005/10/26/javascript-interactive-interpreter/Markdown for Djangohttps://www.rfc1437.de/2005/10/26/markdown-for-django/Scatha and Glaurunghttps://www.rfc1437.de/2005/10/26/scatha-and-glaurung/Twisted Buch ist raushttps://www.rfc1437.de/2005/10/26/twisted-buch-ist-raus/akaDAV - Lightweight WebDAV server and python modulehttps://www.rfc1437.de/2005/10/25/akadav-lightweight-webdav-server-and-python-module/Googles Web Accelerator and Damagerhttps://www.rfc1437.de/2005/10/25/googles-web-accelerator-and-damager/python webdav serverhttps://www.rfc1437.de/2005/10/25/python-webdav-server/Spam-Blockliste lief Amokhttps://www.rfc1437.de/2005/10/25/spam-blockliste-lief-amok/Launch Boxhttps://www.rfc1437.de/2005/10/24/launch-box/Linux and RAW Digital Photographyhttps://www.rfc1437.de/2005/10/24/linux-and-raw-digital-photography/Lphotohttps://www.rfc1437.de/2005/10/24/lphoto/generic search service for Djangohttps://www.rfc1437.de/2005/10/23/generic-search-service-for-django/Ubuntu Breezy Badgerhttps://www.rfc1437.de/2005/10/23/ubuntu-breezy-badger/Nanomobil fährt auf Goldhttps://www.rfc1437.de/2005/10/22/nanomobil-faehrt-auf-gold/to flock - zusammenrottenhttps://www.rfc1437.de/2005/10/22/to-flock-zusammenrotten/Version Control with SVKhttps://www.rfc1437.de/2005/10/22/version-control-with-svk/very simple view functionshttps://www.rfc1437.de/2005/10/22/very-simple-view-functions/Mannesmann Prozess diesmal ohne Victory für Ackermann?https://www.rfc1437.de/2005/10/21/mannesmann-prozess-diesmal-ohne-victory-fur-ckrmnn/Module Hacking for Djangohttps://www.rfc1437.de/2005/10/21/module-hacking-for-django/Twisted Nameshttps://www.rfc1437.de/2005/10/21/twisted-names/AgfaPhoto adehttps://www.rfc1437.de/2005/10/20/agfaphoto-ade/Aperturehttps://www.rfc1437.de/2005/10/20/aperture/Tuckesburg in Münsterhttps://www.rfc1437.de/2005/10/20/tuckesburg/Tagging with Djangohttps://www.rfc1437.de/2005/10/19/tagging-with-django/Dooh!https://www.rfc1437.de/2005/10/18/dooh/Was soll der Namehttps://www.rfc1437.de/2005/10/18/name/The Coolest DHTML / JavaScript Calendarhttps://www.rfc1437.de/2005/10/18/the-coolest-dhtml-javascript-calendar/call of the noodlehttps://www.rfc1437.de/2005/10/17/call-of-the-noodle/Using Django as a CMShttps://www.rfc1437.de/2005/10/16/using-django-as-a-cms/Demontage des angeblichen Rettershttps://www.rfc1437.de/2005/10/15/demontage-des-angeblichen-retters/Doohhttps://www.rfc1437.de/2005/10/15/dooh-2/Kirchensteuer und konfessionslose Ehepartnerhttps://www.rfc1437.de/2005/10/15/kirchensteuer-und-konfessionslose-ehepartner/Matt Mullenweg und das Geldhttps://www.rfc1437.de/2005/10/15/matt-mullenweg-und-das-geld/Sonnenscheinhttps://www.rfc1437.de/2005/10/15/sonnenschein/wofür sich Medien so einsetzenhttps://www.rfc1437.de/2005/10/15/wofur-sich-medien-so-einsetzen/Auch son Modell für die Vollversager ...https://www.rfc1437.de/2005/10/14/auch-son-modell-fur-die-vollversager/Desktruktiv?https://www.rfc1437.de/2005/10/14/desktruktiv/Geschäftsmodell von Open Source ...https://www.rfc1437.de/2005/10/14/geschaftsmodell-von-open-source/IE7 und Auswirkungen auf CSS Hackshttps://www.rfc1437.de/2005/10/14/ie7-und-auswirkungen-auf-css-hacks/Seehofer stärkt die Position der SPD ...https://www.rfc1437.de/2005/10/14/seehofer-starkt-die-position-der-spd/Spyware in World of Warcraft?https://www.rfc1437.de/2005/10/14/spyware-in-world-of-warcraft/Tailor - Versionsvermittlerhttps://www.rfc1437.de/2005/10/14/tailor-versionsvermittler/Thatcherhttps://www.rfc1437.de/2005/10/14/thatcher/Trac on Darcshttps://www.rfc1437.de/2005/10/14/trac-on-darcs/Oracle/SQL Tutorialhttps://www.rfc1437.de/2005/10/13/oracle-sql-tutorial/SVK - Subversion distributedhttps://www.rfc1437.de/2005/10/13/svk-subversion-distributed/snippetsEmuhttps://www.rfc1437.de/2005/10/12/snippetsemu/vi meets Wordhttps://www.rfc1437.de/2005/10/12/vi-meets-word/Accent-Zeichen in ihr Basiszeichen umwandelthttps://www.rfc1437.de/2005/10/11/accent-zeichen-in-ihr-basiszeichen-umwandelt/Caching Tutorial for Web Authors and Webmastershttps://www.rfc1437.de/2005/10/11/caching-tutorial-for-web-authors-and-webmasters/Django i18n statushttps://www.rfc1437.de/2005/10/11/django-i18n-status/Ein Loch ist im Kanalhttps://www.rfc1437.de/2005/10/11/ein-loch-ist-im-kanal/Getting Nix Donehttps://www.rfc1437.de/2005/10/11/getting-nix-done/Innovationskraft von Softwarepatentenhttps://www.rfc1437.de/2005/10/11/innovationskraft-von-softwarepatenten/Kreationistenpesthttps://www.rfc1437.de/2005/10/11/kreationistenpest/Cryosat stürzt ins Eishttps://www.rfc1437.de/2005/10/09/cryosat-sturzt-ins-eis/von Galen, seine Seeligkeit und sein Widerstandhttps://www.rfc1437.de/2005/10/09/von-galen-seine-seeligkeit-und-sein-widerstand/Wetterbloggenhttps://www.rfc1437.de/2005/10/09/wetterbloggen/Zabels Abschied von T-Mobilehttps://www.rfc1437.de/2005/10/09/zabels-abschied-von-t-mobile/Ajax mal andershttps://www.rfc1437.de/2005/10/08/ajax-mal-anders/Blogcounter, Schwanzlängen und andere Lügenhttps://www.rfc1437.de/2005/10/08/blogcounter-schwanzlangen-und-andere-lugen/Vatikan weiter auf Anti-Gay-Kurshttps://www.rfc1437.de/2005/10/08/vatikan-weiter-auf-anti-gay-kurs/Wenn google schon einen neuen Feedreader baut ...https://www.rfc1437.de/2005/10/08/wenn-google-schon-einen-neuen-feedreader-baut/Nessus demnächst unbrauchbarhttps://www.rfc1437.de/2005/10/07/nessus-demnachst-unbrauchbar/Pragmatic Ajaxhttps://www.rfc1437.de/2005/10/07/pragmatic-ajax/weblogs.com an Verisign verkauft?https://www.rfc1437.de/2005/10/07/weblogscom-an-verisign-verkauft/WSGI and WSGI Middleware is Easyhttps://www.rfc1437.de/2005/10/07/wsgi-and-wsgi-middleware-is-easy/Die EU-Kommission mal wiederhttps://www.rfc1437.de/2005/10/06/die-eu-kommission-mal-wieder/diese komische Umfrage ...https://www.rfc1437.de/2005/10/06/diese-komische-umfrage/RobotFlowhttps://www.rfc1437.de/2005/10/06/robotflow/Autofahren macht blödhttps://www.rfc1437.de/2005/10/05/autofahren-macht-blod/OpenMCL 1.0https://www.rfc1437.de/2005/10/05/openmcl-1-0/Python Paste Powerhttps://www.rfc1437.de/2005/10/05/python-paste-power/IRC Logger updatehttps://www.rfc1437.de/2005/10/04/irc-logger-update/Medien, Statistiken und ihre "Interpretationen"https://www.rfc1437.de/2005/10/04/medien-statistiken-und-ihre-interpretationen/Radfahren macht impotenthttps://www.rfc1437.de/2005/10/04/radfahren-macht-impotent/37signals mal wiederhttps://www.rfc1437.de/2005/10/03/37signals-mal-wieder/Googles Blogsuche strohdummhttps://www.rfc1437.de/2005/10/03/googles-blogsuche-strohdumm/Retrocomputing - MIT CADR Lisp Machineshttps://www.rfc1437.de/2005/10/03/retrocomputing-mit-cadr-lisp-machines-2/IRC logger for #djangohttps://www.rfc1437.de/2005/10/02/irc-logger-for-django/Politiker und die Realitäthttps://www.rfc1437.de/2005/10/02/politiker-und-die-realitat/Leica - D-LUX 2https://www.rfc1437.de/2005/10/01/leica-d-lux-2/Lizenz zum Gelddruckenhttps://www.rfc1437.de/2005/10/01/lizenz-zum-gelddrucken/TwistedDAVhttps://www.rfc1437.de/2005/10/01/twisteddav/Gericht stärkt alte Rechtschreibunghttps://www.rfc1437.de/2005/09/30/gericht-starkt-alte-rechtschreibung/How-to get decimal.py if I have Python 2.3.xhttps://www.rfc1437.de/2005/09/30/how-to-get-decimal-py-if-i-have-python-2-3-x/Rechtsstreit über Kartoffelsorte "Linda" geht weiterhttps://www.rfc1437.de/2005/09/30/rechtsstreit-ueber-kartoffelsorte-linda-geht/Sonnenfinsternis am Tag der deutschen Einheithttps://www.rfc1437.de/2005/09/30/sonnenfinsternis-am-tag-der-deutschen-einheit/i18n and djangohttps://www.rfc1437.de/2005/09/29/i18n-and-django/Doch kein deutscher Boxweltmeister heutehttps://www.rfc1437.de/2005/09/28/doch-kein-deutscher-boxweltmeister-heute/HH-CDU und Demokratie? Is nich.https://www.rfc1437.de/2005/09/28/hh-cdu-und-demokratie-is-nich/Open Dylanhttps://www.rfc1437.de/2005/09/28/open-dylan/EU-Parlament lehnt Plan des EU-Rates zur Vorratsdatenspeicherung endgültig abhttps://www.rfc1437.de/2005/09/27/prlmnt-lhnt-pln-ds-rts-zr-vrrtsdtnspchrng-ndgltg/Routes für Pythonhttps://www.rfc1437.de/2005/09/27/routes-fur-python/Warum ich so bei Rails meine Zweifel habehttps://www.rfc1437.de/2005/09/27/warum-ich-so-bei-rails-meine-zweifel-habe/PocketMod - Mini-Papier-Organizerhttps://www.rfc1437.de/2005/09/25/pocketmod-mini-papier-organizer/Dusseliges Frage-Spiel aktivierthttps://www.rfc1437.de/2005/09/23/dusseliges-frage-spiel-aktiviert/TC Trustcenter insolventhttps://www.rfc1437.de/2005/09/23/tc-trustcenter-insolvent/Weiterer Spam-Fallout - kein Trackback und Pingback mehr bei mirhttps://www.rfc1437.de/2005/09/23/weiterer-spam-fallot-kn-trckbck-nd-pngbck-mhr-b-mr/InformixDBhttps://www.rfc1437.de/2005/09/22/informixdb/Feigheit oder Faulheit?https://www.rfc1437.de/2005/09/21/feigheit-oder-faulheit/peinlicher Spiegelhttps://www.rfc1437.de/2005/09/20/peinlicher-spiegel/Arme, unverstandene Medienhttps://www.rfc1437.de/2005/09/19/arme-unverstandene-medien/Wahlergebnisse oder Qualergebnisse?https://www.rfc1437.de/2005/09/19/wahlergebnisse-oder-qualergebnisse/Microsoft-Schleichwerbung beim NDRhttps://www.rfc1437.de/2005/09/17/microsoft-schleichwerbung-beim-ndr/What has Trusted Computing to do with Trust?https://www.rfc1437.de/2005/09/17/what-has-trusted-computing-to-do-with-trust/wxWindows Buchhttps://www.rfc1437.de/2005/09/17/wxwindows-buch/Medienkompetenz ala CSUhttps://www.rfc1437.de/2005/09/16/medienkompetenz-ala-csu/Nachschub für Astronomie-Freakshttps://www.rfc1437.de/2005/09/16/nachschub-fur-astronomie-freaks/Noch mehr Medien-Inkompetenz - diesmal CDUhttps://www.rfc1437.de/2005/09/16/noch-mehr-medien-inkompetenz-diesmal-cdu/Peter Lustig hört auf?https://www.rfc1437.de/2005/09/16/peter-lustig-hort-auf/RFID im Reisepass kein Sicherheitsmerkmalhttps://www.rfc1437.de/2005/09/16/rfid-im-reisepass-kein-sicherheitsmerkmal/Sie machen die gleiche Scheisse wie in den USAhttps://www.rfc1437.de/2005/09/16/sie-machen-die-gleiche-scheisse-wie-in-den-usa/Und urplötzlich fühlt man sich wieder junghttps://www.rfc1437.de/2005/09/16/und-urplotzlich-fuhlt-man-sich-wieder-jung/Yep, passt.https://www.rfc1437.de/2005/09/16/yep-passt/DjangoScgi - Django Projects - Trachttps://www.rfc1437.de/2005/09/15/djangoscgi-django-projects-trac/Gaspreiskalkulationen müssen offengelegt werdenhttps://www.rfc1437.de/2005/09/15/gaspreiskalkulationen-mussen-offengelegt-werden/Security by complete Stupidityhttps://www.rfc1437.de/2005/09/15/security-by-complete-stupidity/Google Blog Searchhttps://www.rfc1437.de/2005/09/14/google-blog-search/Doppelt blöd hält besser?https://www.rfc1437.de/2005/09/13/doppelt-blod-halt-besser/Lügen-Linssen und die Finanzenhttps://www.rfc1437.de/2005/09/13/lugen-linssen-und-die-finanzen/Hirnfürzehttps://www.rfc1437.de/2005/09/12/hirnfurze/Die Träumer von der BfAhttps://www.rfc1437.de/2005/09/10/die-traumer-von-der-bfa/The iTunes 5 Announcement From the Perspective of an Anthropomorphized Brushed Metal User Interface Themehttps://www.rfc1437.de/2005/09/10/the-itunes-5-announcement-from-the-perspective-of/Common Schemehttps://www.rfc1437.de/2005/09/09/common-scheme/I want one!https://www.rfc1437.de/2005/09/09/i-want-one/Beware the Monster Chick!https://www.rfc1437.de/2005/09/08/beware-the-monster-chick/Qualitätsjournalliehttps://www.rfc1437.de/2005/09/08/qualitatsjournallie/Erster Fallout von Schwarz-Gelbhttps://www.rfc1437.de/2005/09/07/erster-fallout-von-schwarz-gelb/Alles nur geklauthttps://www.rfc1437.de/2005/09/06/alles-nur-geklaut/Django Gallery Statushttps://www.rfc1437.de/2005/09/06/django-gallery-status/Manchmal spinnen die Debianistashttps://www.rfc1437.de/2005/09/04/manchmal-spinnen-die-debianistas/Nacht der Museen in Münsterhttps://www.rfc1437.de/2005/09/04/nacht-der-museen-in-munster/Parser für Python-ähnliche Konfigfileshttps://www.rfc1437.de/2005/09/04/parser-fur-python-ahnliche-konfigfiles/Prioritätenhttps://www.rfc1437.de/2005/09/03/prioritaten/ID ist grober Unfughttps://www.rfc1437.de/2005/09/02/id-ist-grober-unfug/MochiKit Tutorial Teil 1https://www.rfc1437.de/2005/09/02/mochikit-tutorial-teil-1/Und sie laufen immer nochhttps://www.rfc1437.de/2005/09/02/und-sie-laufen-immer-noch/Wahlkampfbeitrag?https://www.rfc1437.de/2005/09/02/wahlkampfbeitrag/geocaching Statushttps://www.rfc1437.de/2005/09/01/geocaching-status/GPS Receiver Information, Software, and Hardware Reviews of Garmin, Lowrance, Magellan and other GPS Receivershttps://www.rfc1437.de/2005/08/30/gps-receiver-information-software-and-hardware/Working with Garmin Receivers - A User Manualhttps://www.rfc1437.de/2005/08/30/working-with-garmin-receivers-a-user-manual/GEMA und das Internethttps://www.rfc1437.de/2005/08/29/gema-und-das-internet/Mauscheleien vor Gerichthttps://www.rfc1437.de/2005/08/29/mauscheleien-vor-gericht/Öffentliche Dienst-Nichtleistungenhttps://www.rfc1437.de/2005/08/29/offentliche-dienst-nichtleistungen/Musiklabelchefs immer noch völlig verblödethttps://www.rfc1437.de/2005/08/28/musiklabelchefs-immer-noch-vollig-verblodet/Montgolfiade in Münsterhttps://www.rfc1437.de/2005/08/27/montgolfiade-in-munster/Montgolfiade in Münsterhttps://www.rfc1437.de/2005/08/27/montgolfiade-in-munster-2/News from the Gallery projecthttps://www.rfc1437.de/2005/08/27/news-from-the-gallery-project/iTAN-Verfahren auch nicht sicherhttps://www.rfc1437.de/2005/08/26/itan-verfahren-auch-nicht-sicher/JavaScript + CSS Box-Modell Rätselhttps://www.rfc1437.de/2005/08/25/javascript-css-box-modell-ratsel/Karlsruhe macht Weg für Neuwahlen freihttps://www.rfc1437.de/2005/08/25/karlsruhe-macht-weg-fur-neuwahlen-frei/JavaScript und die escape() Funktionhttps://www.rfc1437.de/2005/08/24/javascript-und-die-escape-funktion/MochiKit – erste Erfahrungenhttps://www.rfc1437.de/2005/08/24/mochikit-erste-erfahrungen/Armstrong EPO-gedoped bei erstem Toursieg?https://www.rfc1437.de/2005/08/23/armstrong-epo-gedoped-bei-erstem-toursieg/Aldag hört auf?https://www.rfc1437.de/2005/08/22/aldag-hort-auf/Canon EOS 5D, full-frame 12.8 megapixelhttps://www.rfc1437.de/2005/08/22/canon-eos-5d-full-frame-128-megapixel/Armer Jörg Jaksche - schon wiederhttps://www.rfc1437.de/2005/08/21/armer-jorg-jaksche-schon-wieder/PostgresPyhttps://www.rfc1437.de/2005/08/21/postgrespy/DjangoGallery - sample app with sample installationhttps://www.rfc1437.de/2005/08/20/djangogallery-sample-app-with-sample-installation/Kibothttps://www.rfc1437.de/2005/08/20/kibot/Kompetenz, Inkompetenz, Inkontinenz?https://www.rfc1437.de/2005/08/20/kompetenz-inkompetenz-inkontinenz/Posting 5000https://www.rfc1437.de/2005/08/20/posting-5000/erste Django-Anwendung lifehttps://www.rfc1437.de/2005/08/19/erste-django-anwendung-life/ObjectiveCLIPShttps://www.rfc1437.de/2005/08/19/objectiveclips/RSS 3 - gleich zweimalhttps://www.rfc1437.de/2005/08/19/rss-3-gleich-zweimal/Writing PlugInshttps://www.rfc1437.de/2005/08/19/writing-plugins/SHA-1 geht weiter den Bach runterhttps://www.rfc1437.de/2005/08/18/sha-1-geht-weiter-den-bach-runter/1&1 spinnthttps://www.rfc1437.de/2005/08/17/11-spinnt/2029 geht die Welt unterhttps://www.rfc1437.de/2005/08/17/2029-geht-die-welt-unter/anonyme Sessionshttps://www.rfc1437.de/2005/08/17/anonyme-sessions/Cooperative Linuxhttps://www.rfc1437.de/2005/08/17/cooperative-linux-2/CRUD mit Djangohttps://www.rfc1437.de/2005/08/17/crud-mit-django/London: Zweifel an Polizeiversion im Fall Menezeshttps://www.rfc1437.de/2005/08/17/london-zweifel-an-polizeiversion-im-fall-menezes/Mal was interessantes in Railshttps://www.rfc1437.de/2005/08/17/mal-was-interessantes-in-rails/A comparison of Django with Railshttps://www.rfc1437.de/2005/08/16/a-comparison-of-django-with-rails/Armer Jörg Jakschehttps://www.rfc1437.de/2005/08/16/armer-jorg-jaksche/Lebende Datenhttps://www.rfc1437.de/2005/08/16/lebende-daten/wxWindows jetzt auch für Common Lisphttps://www.rfc1437.de/2005/08/16/wxwindows-jetzt-auch-fur-common-lisp/die seltsame Neigung der PHP-Programmierer zu evalhttps://www.rfc1437.de/2005/08/15/die-seltsame-neigung-der-php-programmierer-zu-eval/lahmes Posten in WordPresshttps://www.rfc1437.de/2005/08/14/lahmes-posten-in-wordpress/Seashorehttps://www.rfc1437.de/2005/08/14/seashore/spotlight auf Wechsellaufwerk ausschaltenhttps://www.rfc1437.de/2005/08/14/spotlight-auf-wechsellaufwerk-ausschalten/trac - Softwareprojektmanagement leicht gemachthttps://www.rfc1437.de/2005/08/14/trac-softwareprojektmanagement-leicht-gemacht/kenosishttps://www.rfc1437.de/2005/08/13/kenosis/Nitrohttps://www.rfc1437.de/2005/08/13/nitro/RBL Betreiber mal wiederhttps://www.rfc1437.de/2005/08/13/rbl-betreiber-mal-wieder/awstats.plhttps://www.rfc1437.de/2005/08/12/awstats-pl/Privacy-Update unter OS Xhttps://www.rfc1437.de/2005/08/12/privacy-update-unter-os-x/Zu dem Bayern-Getösehttps://www.rfc1437.de/2005/08/12/zu-dem-bayern-getose/Mac OS X Intel hacked to run on standard PCshttps://www.rfc1437.de/2005/08/11/mac-os-x-intel-hacked-to-run-on-standard-pcs/RIP last.fmhttps://www.rfc1437.de/2005/08/11/rip-lastfm/SCO-Patent-Fallout?https://www.rfc1437.de/2005/08/11/sco-patent-fallout/XchatPythonhttps://www.rfc1437.de/2005/08/11/xchatpython/Coooool!https://www.rfc1437.de/2005/08/10/coooool/Informationen zur Canon EOS 5D aufgetauchthttps://www.rfc1437.de/2005/08/10/informationen-zur-canon-eos-5d-aufgetaucht/Oracle Cluster File System 2 für Linuxhttps://www.rfc1437.de/2005/08/10/oracle-cluster-file-system-2-fur-linux/The Hidden Boot Code of the Xboxhttps://www.rfc1437.de/2005/08/10/the-hidden-boot-code-of-the-xbox/Und nun, Herr McBride?https://www.rfc1437.de/2005/08/09/und-nun-herr-mcbride/Yep. Macht Sinn.https://www.rfc1437.de/2005/08/09/yep-macht-sinn/EU-Kommission mal wieder im Alleinganghttps://www.rfc1437.de/2005/08/08/eu-kommission-mal-wieder-im-alleingang/Man reiche Darl McBride die Frog Pillshttps://www.rfc1437.de/2005/08/08/man-reiche-darl-mcbride-die-frog-pills/Mathematische Unkenntnisshttps://www.rfc1437.de/2005/08/08/mathematische-unkenntniss/International Components for Unicodehttps://www.rfc1437.de/2005/08/07/international-components-for-unicode/PyICUhttps://www.rfc1437.de/2005/08/07/pyicu/man lernt doch nie aushttps://www.rfc1437.de/2005/08/06/man-lernt-doch-nie-aus/auf dem Weg in die Medien-Monokulturhttps://www.rfc1437.de/2005/08/05/auf-dem-weg-in-die-medien-monokultur/Connecting databases to Python with SQLObjecthttps://www.rfc1437.de/2005/08/05/connecting-databases-to-python-with-sqlobject/Umwelt-Ausverkauf in D-Dorfhttps://www.rfc1437.de/2005/08/05/umwelt-ausverkauf-in-d-dorf/Unicode HOWTOhttps://www.rfc1437.de/2005/08/05/unicode-howto/Crypt::PasswdMD5https://www.rfc1437.de/2005/08/04/crypt-passwdmd5/md5crypt.pyhttps://www.rfc1437.de/2005/08/04/md5crypt-py/Passwörter als Hashes speichern - sicher?https://www.rfc1437.de/2005/08/04/passworter-als-hashes-speichern-sicher/Shoot-to-Kill Direktiven - und die Welt wird ein Egoshooterhttps://www.rfc1437.de/2005/08/04/shoot-to-kill-direktiven-und-die-welt-wird-n-gshtr/Treeviewhttps://www.rfc1437.de/2005/08/04/treeview/Ciscos Kundenpasswörter sind weghttps://www.rfc1437.de/2005/08/03/ciscos-kundenpasswoerter-sind-weg/Django, Apache and FCGIhttps://www.rfc1437.de/2005/08/03/django-apache-and-fcgi/EU-Hirnriss zu Urheberrechtsverletzungenhttps://www.rfc1437.de/2005/08/03/eu-hirnriss-zu-urheberrechtsverletzungen/Geocaching im Münsterlandhttps://www.rfc1437.de/2005/08/03/geocaching-im-munsterland/Mal wieder neues bei Djangohttps://www.rfc1437.de/2005/08/03/mal-wieder-neues-bei-django/Soziale Netzwerkereihttps://www.rfc1437.de/2005/08/03/soziale-netzwerkerei/was bei SQLObject derzeit passierthttps://www.rfc1437.de/2005/08/03/was-bei-sqlobject-derzeit-passiert/Aber Patente sind ja sooo toll ...https://www.rfc1437.de/2005/08/02/aber-patente-sind-ja-sooo-toll/Automatically mount dm-crypt encrypted home with pam_mounthttps://www.rfc1437.de/2005/08/02/automatically-mount-dm-crypt-encrypted-home-with/Coroutinen für Pythonhttps://www.rfc1437.de/2005/08/02/coroutinen-fur-python/ejabberdhttps://www.rfc1437.de/2005/08/02/ejabberd/Hell freezes over - a second timehttps://www.rfc1437.de/2005/08/02/hell-freezes-over-a-second-time/Linux-auf-Mac Storyhttps://www.rfc1437.de/2005/08/02/linux-auf-mac-story/Linux on an Apple Powerbook HOWTOhttps://www.rfc1437.de/2005/08/02/linux-on-an-apple-powerbook-howto/The Illusive setdefaultencodinghttps://www.rfc1437.de/2005/08/02/the-illusive-setdefaultencoding/(Un)trusted platform Apple?https://www.rfc1437.de/2005/08/02/untrusted-platform-apple/Wohin Abmahnwahn und vorauseilender Gehorsam führen könnenhttps://www.rfc1437.de/2005/08/02/wohin-abmahnwahn-und-vorauseilendr-ghrsm-fhrn-knnn/Auswirkungen von Gen-Raps und Co.https://www.rfc1437.de/2005/08/01/auswirkungen-von-gen-raps-und-co/Daves neuer OPML Editor mit Bloghttps://www.rfc1437.de/2005/07/31/daves-neuer-opml-editor-mit-blog/HEW Cyclassics 2005https://www.rfc1437.de/2005/07/31/hew-cyclassics-2005/Merkelnix krampft auchhttps://www.rfc1437.de/2005/07/31/merkelnix-krampft-auch/Softwarepatente - Kommentar bei der NY Timeshttps://www.rfc1437.de/2005/07/31/softwarepatente-kommentar-bei-der-ny-times/Wahlkampf, Wahlkrampf ...https://www.rfc1437.de/2005/07/31/wahlkampf-wahlkrampf/Writing a Simple Filesystem Browser with Djangohttps://www.rfc1437.de/2005/07/31/writing-a-simple-filesystem-browser-with-django/Zerospanhttps://www.rfc1437.de/2005/07/31/zerospan/Ausbildung als Billiglohnschienehttps://www.rfc1437.de/2005/07/30/ausbildung-als-billiglohnschiene/Beckstein on the Rollhttps://www.rfc1437.de/2005/07/30/beckstein-on-the-roll/Novell will SCO an den Kragenhttps://www.rfc1437.de/2005/07/30/novell-will-sco-an-den-kragen/Pluto raus oder ein Neuer rein?https://www.rfc1437.de/2005/07/30/pluto-raus-oder-ein-neuer-rein/PostgreSQL Extension for Frontierhttps://www.rfc1437.de/2005/07/30/postgresql-extension-for-frontier/Vom Umgang mit Securityhttps://www.rfc1437.de/2005/07/30/vom-umgang-mit-security/International standard date and time notationhttps://www.rfc1437.de/2005/07/29/international-standard-date-and-time-notation/Leichen im Kellerhttps://www.rfc1437.de/2005/07/29/leichen-im-keller/Linkhaftung nach dem Heise-Urteilhttps://www.rfc1437.de/2005/07/29/linkhaftung-nach-dem-heise-urteil/PysqliteFactorieshttps://www.rfc1437.de/2005/07/29/pysqlitefactories/Sysadmins Dayhttps://www.rfc1437.de/2005/07/29/sysadmins-day/Abridged guide to HTTP Cachinghttps://www.rfc1437.de/2005/07/28/abridged-guide-to-http-caching/JSANhttps://www.rfc1437.de/2005/07/28/jsan/Linux-VServerhttps://www.rfc1437.de/2005/07/28/linux-vserver/Tor Network Statushttps://www.rfc1437.de/2005/07/28/tor-network-status/typohttps://www.rfc1437.de/2005/07/28/typo/Und die Erde ist doch eine Scheibehttps://www.rfc1437.de/2005/07/28/und-die-erde-ist-doch-eine-scheibe/Django, lighttpd and FCGI, second takehttps://www.rfc1437.de/2005/07/27/django-lighttpd-and-fcgi-second-take/Eunuchshttps://www.rfc1437.de/2005/07/27/eunuchs/Noch son Fragebogenhttps://www.rfc1437.de/2005/07/27/noch-son-fragebogen/präventive Telefonüberwachung is nichhttps://www.rfc1437.de/2005/07/27/praventive-telefonuberwachung-is-nich/es gibt Tage da hasst mein Computer michhttps://www.rfc1437.de/2005/07/26/es-gibt-tage-da-hasst-mein-computer-mich/Higher-Order Perlhttps://www.rfc1437.de/2005/07/26/higher-order-perl/Running Django with FCGI and lighttpdhttps://www.rfc1437.de/2005/07/26/running-django-with-fcgi-and-lighttpd/flup: random Python WSGI stuffhttps://www.rfc1437.de/2005/07/24/flup-random-python-wsgi-stuff/Idiotische Patente die elfundelfzigstehttps://www.rfc1437.de/2005/07/24/idiotische-patente-die-elfundelfzigste/Leonardohttps://www.rfc1437.de/2005/07/24/leonardo/Python Pastehttps://www.rfc1437.de/2005/07/24/python-paste/Scotland Yard erschiesst Unschuldigenhttps://www.rfc1437.de/2005/07/24/scotland-yard-erschiesst-unschuldigen/Seasidehttps://www.rfc1437.de/2005/07/24/seaside/verpflichtetes Versicherungssponsoring durch den Staat?https://www.rfc1437.de/2005/07/24/verpflichtetes-versicherungssponsoring-drch-dn-stt/Verrückter Vinokourov ...https://www.rfc1437.de/2005/07/24/verruckter-vinokourov/Da wird Otto wieder schäumenhttps://www.rfc1437.de/2005/07/23/da-wird-otto-wieder-schaumen/GNU Modula-2https://www.rfc1437.de/2005/07/23/gnu-modula-2/MochiKithttps://www.rfc1437.de/2005/07/23/mochikit/Spitzenköche kämpfen für Lindahttps://www.rfc1437.de/2005/07/23/spitzenkoeche-kaempfen-fuer-linda/Von Pechvögeln und Favoritenhttps://www.rfc1437.de/2005/07/23/von-pechvogeln-und-favoriten/Und wieder mal Djangohttps://www.rfc1437.de/2005/07/22/und-wieder-mal-django/Internet-Pranger der US-Strafverfolgungsbehördenhttps://www.rfc1437.de/2005/07/21/internet-pranger-der-us-strafverfolgungsbehorden/Grosser Lauschangriff auch in Sachsen Verfassungswidrighttps://www.rfc1437.de/2005/07/21/sachsns-vrfgrssr-lschngrff-ch-n-schsn-vrfssngswdrg/Apache modauthtkthttps://www.rfc1437.de/2005/07/20/apache-modauthtkt/Doohan alias Scotty gestorbenhttps://www.rfc1437.de/2005/07/20/doohan-alias-scotty-gestorben/Wie die BWLer unter Bertelsmann in die Bildungspolitik einziehenhttps://www.rfc1437.de/2005/07/20/wie-die-bwler-unter-bertelsmnn-n-d-bldngspltk-nzhn/EU-Haftbefehl verfassungswidrighttps://www.rfc1437.de/2005/07/18/eu-haftbefehl-verfassungswidrig/Jython 2.2 in der Machehttps://www.rfc1437.de/2005/07/18/jython-22-in-der-mache/Erste Django Tutorials onlinehttps://www.rfc1437.de/2005/07/17/erste-django-tutorials-online/Erster Etappensieg für Gerolsteiner in der Tourhttps://www.rfc1437.de/2005/07/16/erster-etappensieg-fur-gerolsteiner-in-der-tour/Foundations of Python Network Programminghttps://www.rfc1437.de/2005/07/16/foundations-of-python-network-programming/HsShellScripthttps://www.rfc1437.de/2005/07/16/hsshellscript/mod_haskellhttps://www.rfc1437.de/2005/07/16/mod-haskell/PerlPadhttps://www.rfc1437.de/2005/07/16/perlpad/Regular Expressions in Haskellhttps://www.rfc1437.de/2005/07/16/regular-expressions-in-haskell/Web Authoring System Haskell (WASH)https://www.rfc1437.de/2005/07/16/web-authoring-system-haskell-wash-2/Django - neues Webframework für Pythonhttps://www.rfc1437.de/2005/07/15/django-neues-webframework-fur-python/SCO stolpert über die eigenen Füssehttps://www.rfc1437.de/2005/07/15/sco-stolpert-uber-die-eigenen-fusse/Patentierte Menschenhttps://www.rfc1437.de/2005/07/14/patentierte-menschen/Integrationssicherung oder Fremdenfeindlichkeit?https://www.rfc1437.de/2005/07/13/integrationssicherung-oder-fremdenfeindlichkeit/robots.txt als angeblicher Kopierschutzhttps://www.rfc1437.de/2005/07/13/robotstxt-als-angeblicher-kopierschutz/Tour trotz Armstrong spannendhttps://www.rfc1437.de/2005/07/13/tour-trotz-armstrong-spannend/Der Berg rufthttps://www.rfc1437.de/2005/07/12/der-berg-ruft/Kaum mit sauberen Mittelnhttps://www.rfc1437.de/2005/07/12/kaum-mit-sauberen-mitteln/Microsoft liebt SpyWarehttps://www.rfc1437.de/2005/07/11/microsoft-liebt-spyware/Strafverfolger fordern Zugang zu Whois-Datenhttps://www.rfc1437.de/2005/07/11/strafverfolger-fordern-zugang-zu-whois-daten/FineTuneshttps://www.rfc1437.de/2005/07/10/finetunes/JavaScript-Aktionen über CSS Selektoren zuordnenhttps://www.rfc1437.de/2005/07/10/javascript-aktionen-uber-css-selektoren-zuordnen/Jens Voigt in Gelbhttps://www.rfc1437.de/2005/07/10/jens-voigt-in-gelb/Juttahttps://www.rfc1437.de/2005/07/10/jutta/macminicolo Mac Mini colocationhttps://www.rfc1437.de/2005/07/10/macminicolo-mac-mini-colocation/Plash: the Principle of Least Authority shellhttps://www.rfc1437.de/2005/07/10/plash-the-principle-of-least-authority-shell/S5https://www.rfc1437.de/2005/07/10/s5/Schockwellenreiterhttps://www.rfc1437.de/2005/07/10/schockwellenreiter/Boot KNOPPIX from an USB Memory Stickhttps://www.rfc1437.de/2005/07/09/boot-knoppix-from-an-usb-memory-stick/Die katholische Kirche und die Evolutionhttps://www.rfc1437.de/2005/07/09/die-katholische-kirche-und-die-evolution/Keith Devens - Weblog: I hate PHP - August 13, 2003https://www.rfc1437.de/2005/07/09/keith-devens-weblog-i-hate-php-august-13-2003/Kidhttps://www.rfc1437.de/2005/07/09/kid/n3dst4.com: PHP Annoyanceshttps://www.rfc1437.de/2005/07/09/n3dst4-com-php-annoyances/SPB-Linuxhttps://www.rfc1437.de/2005/07/09/spb-linux/Spycehttps://www.rfc1437.de/2005/07/09/spyce/Spyced: Why PHP suckshttps://www.rfc1437.de/2005/07/09/spyced-why-php-sucks/Why PHP suckshttps://www.rfc1437.de/2005/07/09/why-php-sucks/deutschsprachigen Haskell Kurshttps://www.rfc1437.de/2005/07/08/deutschsprachigen-haskell-kurs/grössere Haskell-Sourcenhttps://www.rfc1437.de/2005/07/08/grossere-haskell-sourcen/Helium - Haskell-Lehr-Systemhttps://www.rfc1437.de/2005/07/08/helium-haskell-lehr-system/Manchmal treibt mich DarwinPorts zur Verzweiflunghttps://www.rfc1437.de/2005/07/08/manchmal-treibt-mich-darwinports-zur-verzweiflung/Monadshttps://www.rfc1437.de/2005/07/08/monads/Bombenserie in Londonhttps://www.rfc1437.de/2005/07/07/bombenserie-in-london/Shiira - alternativer WebKit Browserhttps://www.rfc1437.de/2005/07/07/shiira-alternativer-webkit-browser/SSL-VPN mit Browsersteuerunghttps://www.rfc1437.de/2005/07/07/ssl-vpn-mit-browsersteuerung/Hardened-PHP projecthttps://www.rfc1437.de/2005/07/06/hardened-php-project/Musikindustrie will Allofmp3.com tabuisierenhttps://www.rfc1437.de/2005/07/06/musikindustrie-will-allofmp3com-tabuisieren/Softwarepatente erstmal aufgehaltenhttps://www.rfc1437.de/2005/07/06/softwarepatente-erstmal-aufgehalten/Sozialabzocke verschärfthttps://www.rfc1437.de/2005/07/06/sozialabzocke-verscharft/Mexikos Besiedlung älter als bisher angenommenhttps://www.rfc1437.de/2005/07/05/mexikos-besiedlung-alter-als-bisher-angenommen/PHP-Serialize für Pythonhttps://www.rfc1437.de/2005/07/05/php-serialize-fur-python/Quengelköppe und Open Sourcehttps://www.rfc1437.de/2005/07/05/quengelkoppe-und-open-source/Sodann will in den Bundestaghttps://www.rfc1437.de/2005/07/05/sodann-will-in-den-bundestag/Softwarepatent-Richtlinie vor dem Aus?https://www.rfc1437.de/2005/07/05/softwarepatent-richtlinie-vor-dem-aus/Verstrickungen des Märzhasen?https://www.rfc1437.de/2005/07/05/verstrickungen-des-marzhasen/Treffer, versenkthttps://www.rfc1437.de/2005/07/04/treffer-versenkt/Every smile you fake ...https://www.rfc1437.de/2005/07/03/every-smile-you-fake/Objekte und Funktionen mit JavaScripthttps://www.rfc1437.de/2005/07/03/objekte-und-funktionen-mit-javascript/Open-Source-Dummschwätzerhttps://www.rfc1437.de/2005/07/03/open-source-dummschwatzer/Shit hits Fanhttps://www.rfc1437.de/2005/07/03/shit-hits-fan/T-Mobile ist dämlichhttps://www.rfc1437.de/2005/07/03/t-mobile-ist-damlich/Weitere Demontage des Rechtes auf Bildunghttps://www.rfc1437.de/2005/07/03/weitere-demontage-des-rechtes-auf-bildung/Auch so ein Stück aus dem Tollhaushttps://www.rfc1437.de/2005/07/01/auch-so-ein-stuck-aus-dem-tollhaus/GEMA im Grössenwahnhttps://www.rfc1437.de/2005/07/01/gema-im-grossenwahn/Kais Horrortools Flashbackhttps://www.rfc1437.de/2005/07/01/kais-horrortools-flashback/Nimm das, Otto!https://www.rfc1437.de/2005/07/01/nimm-das-otto/Zum heutigen Scharadenspielhttps://www.rfc1437.de/2005/07/01/zum-heutigen-scharadenspiel/Die Herberge zur verlorenen Freiheithttps://www.rfc1437.de/2005/06/30/die-herberge-zur-verlorenen-freiheit/Dänische Regierung für gravierende Änderungen an der Softwarepatent-Richtliniehttps://www.rfc1437.de/2005/06/30/dnsch-rgrng-fr-grvrnd-ndrngn-n-dr-sftwrptnt-rchtln/Heuschrecken am Wasserhahnhttps://www.rfc1437.de/2005/06/30/heuschrecken-am-wasserhahn/Microsoft lernts niehttps://www.rfc1437.de/2005/06/30/microsoft-lernts-nie/Pass-Chips und deren möglicher Missbrauchhttps://www.rfc1437.de/2005/06/30/pass-chips-und-deren-moglicher-missbrauch/Wenn Webdesigner ein Schimpfword isthttps://www.rfc1437.de/2005/06/30/wenn-webdesigner-ein-schimpfword-ist/Banalpatent mal wiederhttps://www.rfc1437.de/2005/06/29/banalpatent-mal-wieder/Immer noch komische Finder-Geschichtenhttps://www.rfc1437.de/2005/06/29/immer-noch-komische-finder-geschichten/Schily hält Datenschutz für Angstmachereihttps://www.rfc1437.de/2005/06/29/schily-halt-datenschutz-fur-angstmacherei/Wer mal wieder lachen will ...https://www.rfc1437.de/2005/06/29/wer-mal-wieder-lachen-will/WordPress 1.5.1.3https://www.rfc1437.de/2005/06/29/wordpress-1513/Amerikaner und Logikhttps://www.rfc1437.de/2005/06/28/amerikaner-und-logik/iTunes Podcasting nicht mit alten iPods?https://www.rfc1437.de/2005/06/28/itunes-podcasting-nicht-mit-alten-ipods/Pfahl ist geständighttps://www.rfc1437.de/2005/06/28/pfahl-ist-gestandig/Strucki hat wohl doch Schäden vom Schlaganfallhttps://www.rfc1437.de/2005/06/28/strucki-hat-wohl-doch-schaden-vom-schlaganfall/Unternehmer gegen Softwarepatentehttps://www.rfc1437.de/2005/06/28/unternehmer-gegen-softwarepatente/vcXMLRPChttps://www.rfc1437.de/2005/06/28/vcxmlrpc/Beruhigende Prioritätenhttps://www.rfc1437.de/2005/06/27/beruhigende-prioritaten/Kulturloser Landtag?https://www.rfc1437.de/2005/06/27/kulturloser-landtag/New Scientist SPACE - Breaking News - Hubble spies lord of the stellar ringshttps://www.rfc1437.de/2005/06/27/nw-scntst-spc-brkng-nws-hbbl-sps-lrd-f-th-stllr-rn/Seltsame Gerichtsentscheidungen sind Internationalhttps://www.rfc1437.de/2005/06/27/seltsame-gerichtsentscheidungen-sind-international/PEP 342 -- Coroutines via Enhanced Generatorshttps://www.rfc1437.de/2005/06/26/pep-342-coroutines-via-enhanced-generators/Satellitenfoto von Münsterhttps://www.rfc1437.de/2005/06/26/satellitenfoto-von-munster/Scatman Eddy als Aussenbeppelhttps://www.rfc1437.de/2005/06/26/scatman-eddy-als-aussenbeppel/Da geht er hin, der Datenschutzhttps://www.rfc1437.de/2005/06/25/da-geht-er-hin-der-datenschutz/John Cleese speakinghttps://www.rfc1437.de/2005/06/25/john-cleese-speaking/LinuxTag vorgestellthttps://www.rfc1437.de/2005/06/25/linuxtag-vorgestellt/LiveSearch mit WordPress klappthttps://www.rfc1437.de/2005/06/25/livesearch-mit-wordpress-klappt/Microsoft und RSShttps://www.rfc1437.de/2005/06/25/microsoft-und-rss/Safari und der Rabenhorsthttps://www.rfc1437.de/2005/06/25/safari-und-der-rabenhorst/Merkelmaulkorbhttps://www.rfc1437.de/2005/06/24/merkelmaulkorb/Umweltschützer kritisieren Walfangkommissionhttps://www.rfc1437.de/2005/06/24/umweltschutzer-kritisieren-walfangkommission/WebObjects 5.3 und Linux?https://www.rfc1437.de/2005/06/24/webobjects-53-und-linux/CardSystems Exposes 40 Million Identitieshttps://www.rfc1437.de/2005/06/23/cardsystems-exposes-40-million-identities/Frauen sind in der US-IT-Branche weiterhin unterrepräsentierthttps://www.rfc1437.de/2005/06/23/frauen-sind-in-der-us-it-branche-weiterhin/Microsofts Allmachtsphantasienhttps://www.rfc1437.de/2005/06/23/microsofts-allmachtsphantasien/OXlook - Open-XChange verbindet sich mit Outlookhttps://www.rfc1437.de/2005/06/23/oxlook-open-xchange-verbindet-sich-mit-outlook/Suchmaschinen haften nicht für gespeicherte Thumbnailshttps://www.rfc1437.de/2005/06/23/suchmaschinen-haften-nicht-fur-gespeichert-thmbnls/SwissBit Victorinox retroALOX 1GBhttps://www.rfc1437.de/2005/06/23/swissbit-victorinox-retroalox-1gb/The diaries of Franz Kafka, 1910-1923https://www.rfc1437.de/2005/06/23/the-diaries-of-franz-kafka-1910-1923/The Hitch Hiker's Guide to the Smalltalk Compilerhttps://www.rfc1437.de/2005/06/23/the-hitch-hiker-s-guide-to-the-smalltalk-compiler/Über Moleskines ...https://www.rfc1437.de/2005/06/23/uber-moleskines/Verlogene Heuchlerhttps://www.rfc1437.de/2005/06/23/verlogene-heuchler/Webspammer mit neuen Tricks?https://www.rfc1437.de/2005/06/23/webspammer-mit-neuen-tricks/NeoOffice/J 1.1 Final ist raushttps://www.rfc1437.de/2005/06/22/neoofficej-11-final-ist-raus/Altfühl-Surfinghttps://www.rfc1437.de/2005/06/21/altfuhl-surfing/Apple sued over iTunes interfacehttps://www.rfc1437.de/2005/06/21/apple-sued-over-itunes-interface/Der Horror von Sony DRMhttps://www.rfc1437.de/2005/06/21/der-horror-von-sony-drm/Der Staat sieht alleshttps://www.rfc1437.de/2005/06/21/der-staat-sieht-alles/Google Sitemap Generator for WordPresshttps://www.rfc1437.de/2005/06/21/google-sitemap-generator-for-wordpress/del.icio.us mal Wiki = Code Snippetshttps://www.rfc1437.de/2005/06/20/delicious-mal-wiki-code-snippets/Der Grundrechtereport 2005https://www.rfc1437.de/2005/06/20/der-grundrechtereport-2005/EU-Abgeordnete kippt bei Softwarepatentenhttps://www.rfc1437.de/2005/06/20/eu-abgeordnete-kippt-bei-softwarepatenten/Finn- und Buckelwale sollen wieder gejagt werden?https://www.rfc1437.de/2005/06/20/finn-und-buckelwale-sollen-wieder-gejagt-werden/Staats-GmbH für Steuersoftware wird aufgelösthttps://www.rfc1437.de/2005/06/20/staats-gmbh-fuer-steuersoftware-wird-aufgeloest/Studiengebühren in NRWhttps://www.rfc1437.de/2005/06/20/studiengebuhren-in-nrw/Uuuuups!!https://www.rfc1437.de/2005/06/20/uuuuups/Handwerk will Krankheitstage mit Urlaub verrechnenhttps://www.rfc1437.de/2005/06/19/handwerk-will-krankheitstag-mt-rlb-vrrchnn-tgsschd/Kassen: Streit um Verwendung des Sonderbeitragshttps://www.rfc1437.de/2005/06/19/kassen-streit-um-verwendung-des-sonderbeitrags/Softwarebeschreibung von metaowl.dehttps://www.rfc1437.de/2005/06/19/softwarebeschreibung-von-metaowlde/Ausgerechnet NRW ...https://www.rfc1437.de/2005/06/18/ausgerechnet-nrw/Mal ne Frage an die Mac-Spezishttps://www.rfc1437.de/2005/06/18/mal-ne-frage-an-die-mac-spezis/Über die Sicherheit von Kreditkarten ...https://www.rfc1437.de/2005/06/18/uber-die-sicherheit-von-kreditkarten/Veränderungen bei der Metaeulehttps://www.rfc1437.de/2005/06/18/veranderungen-bei-der-metaeule/wp-cache-2 und PHP Acceleratorhttps://www.rfc1437.de/2005/06/18/wp-cache-2-und-php-accelerator/Ego-Surfinghttps://www.rfc1437.de/2005/06/17/ego-surfing-2/Foren-Betreiber dürfen demnächst keinen Urlaub mehr machenhttps://www.rfc1437.de/2005/06/17/foren-betreiber-durfen-demnachst-kenn-rlb-mhr-mchn/Schily kämpft immer noch mit der Demokratiehttps://www.rfc1437.de/2005/06/17/schily-kampft-immer-noch-mit-der-demokratie/Sogenannte Experten ...https://www.rfc1437.de/2005/06/17/sogenannte-experten/US-Einreisebeamte sind demnächst Spannerhttps://www.rfc1437.de/2005/06/17/us-einreisebeamte-sind-demnachst-spanner/Die Überwachung ausweiten ist das Zielhttps://www.rfc1437.de/2005/06/16/die-uberwachung-ausweiten-ist-das-ziel/Mail.App Filter mit Tastencodes aufrufenhttps://www.rfc1437.de/2005/06/16/mailapp-filter-mit-tastencodes-aufrufen/Metaowl ist life!https://www.rfc1437.de/2005/06/16/metaowl-ist-life/Popularity Contesthttps://www.rfc1437.de/2005/06/16/popularity-contest/Vermutlich bald ein Platz in der Regierung freihttps://www.rfc1437.de/2005/06/16/vermutlich-bald-ein-platz-in-der-regierung-frei/Zabel nicht zur Tourhttps://www.rfc1437.de/2005/06/16/zabel-nicht-zur-tour/Auch mal ein gutes Urteil zu verkündenhttps://www.rfc1437.de/2005/06/15/auch-mal-ein-gutes-urteil-zu-verkunden/Mittagspause mit Makrohttps://www.rfc1437.de/2005/06/14/mittagspause-mit-makro/Mittagspause mit Makrohttps://www.rfc1437.de/2005/06/14/mittagspause-mit-makro-2/Wieder eine gefärbte Studie von Microsofthttps://www.rfc1437.de/2005/06/14/wieder-eine-gefarbte-studie-von-microsoft/Älteste Zivilisationsspuren in Sachsen gefundenhttps://www.rfc1437.de/2005/06/13/aelteste-zivilisationsspuren-in-sachsen-gefunden/Der Kampf gegen die freie Meinunghttps://www.rfc1437.de/2005/06/13/der-kampf-gegen-die-freie-meinung/RSS Language und WordPresshttps://www.rfc1437.de/2005/06/13/rss-language-und-wordpress/Triple XXXhttps://www.rfc1437.de/2005/06/13/triple-xxx/Tunnelblick - GUI for OpenVPN on the Machttps://www.rfc1437.de/2005/06/13/tunnelblick-gui-for-openvpn-on-the-mac/Audio-Timeshift-Recorder und mehrhttps://www.rfc1437.de/2005/06/12/audio-timeshift-recorder-und-mehr/Heute in Bloglandhttps://www.rfc1437.de/2005/06/12/heute-in-blogland/OWL Contenthttps://www.rfc1437.de/2005/06/12/owl-content/Markenrecht jetzt auch noch auf Benutzernamenhttps://www.rfc1437.de/2005/06/11/markenrecht-jetzt-auch-noch-auf-benutzernamen/Canon Optikenhttps://www.rfc1437.de/2005/06/10/canon-optiken/Dem ist nichts hinzuzufügenhttps://www.rfc1437.de/2005/06/10/dem-ist-nichts-hinzuzufugen/Schöner WordPressenhttps://www.rfc1437.de/2005/06/10/schoner-wordpressen/Schwarz-Gelb bricht Wahlversprechen schon vor der Regierungsbildunghttps://www.rfc1437.de/2005/06/10/schwrz-glb-brcht-whlvrsprchn-schn-vr-dr-rgrngsbldn/Vermutlich glauben sie sich selber sogar ...https://www.rfc1437.de/2005/06/10/vermutlich-glauben-sie-sich-selber-sogar/An Dreistigkeit kaum noch zu überbietenhttps://www.rfc1437.de/2005/06/09/an-dreistigkeit-kaum-noch-zu-uberbieten/BBC - Radio 3 - Beethoven Experiencehttps://www.rfc1437.de/2005/06/09/bbc-radio-3-beethoven-experience/Irgendwann in Mexikohttps://www.rfc1437.de/2005/06/09/irgendwann-in-mexiko/Kritik an Köhlerhttps://www.rfc1437.de/2005/06/09/kritik-an-kohler/Vinokurow in Form für die Tourhttps://www.rfc1437.de/2005/06/09/vinokurow-in-form-fur-die-tour/Zum Abschuss freigegebenhttps://www.rfc1437.de/2005/06/09/zum-abschuss-freigegeben/Auf in den Polizeistaathttps://www.rfc1437.de/2005/06/08/auf-in-den-polizeistaat/Enclosures im Bilderbloghttps://www.rfc1437.de/2005/06/08/enclosures-im-bilderblog/Grosse Brücke-Ausstellung in Berlinhttps://www.rfc1437.de/2005/06/08/grosse-brucke-ausstellung-in-berlin/Hula Girl - Dashboard - Musichttps://www.rfc1437.de/2005/06/08/hula-girl-dashboard-music/ICANN als Erfüllungsgehilfe für VeriSign-Monopolansprüchehttps://www.rfc1437.de/2005/06/08/icann-als-erfullungsgehilfe-fur-verisgn-mnplnsprch/VS Vertraulich nfD und Outlook?https://www.rfc1437.de/2005/06/08/vs-vertraulich-nfd-und-outlook/Was von Versprechungen der Wirtschaft zu halten isthttps://www.rfc1437.de/2005/06/08/was-von-versprechungen-der-wirtschaft-zu-halten-st/Clement will ALG-II-Empfänger schärfer kontrollierenhttps://www.rfc1437.de/2005/06/07/clement-will-alg-ii-empfanger-scharfer-kontrollirn/PodCasts und der Gouvernatorhttps://www.rfc1437.de/2005/06/07/podcasts-und-der-gouvernator/Supreme Court makes supreme blunderhttps://www.rfc1437.de/2005/06/07/supreme-court-makes-supreme-blunder/Systemupgrade auf simon.bofh.mshttps://www.rfc1437.de/2005/06/07/systemupgrade-auf-simonbofhms/Systemupgrade simon.bofh.ms Part 2https://www.rfc1437.de/2005/06/07/systemupgrade-simonbofhms-part-2/The Transporterhttps://www.rfc1437.de/2005/06/07/the-transporter/WebKit, WebCore und JavaScripCore - Open Sourcehttps://www.rfc1437.de/2005/06/07/webkit-webcore-und-javascripcore-open-source/WebObjects Bestandteil von XCode 2.1https://www.rfc1437.de/2005/06/07/webobjects-bestandteil-von-xcode-21/Debian GNU/Linux 3.1 releasedhttps://www.rfc1437.de/2005/06/06/debian-gnu-linux-3-1-released/Mac mit Intelhttps://www.rfc1437.de/2005/06/06/mac-mit-intel/Wie uns unsere Regierung mal wieder belügthttps://www.rfc1437.de/2005/06/06/wie-uns-unsere-regierung-mal-wieder-belugt/Emacs on the metalhttps://www.rfc1437.de/2005/06/05/emacs-on-the-metal/Mail.app unter 10.4 und self-signed certificateshttps://www.rfc1437.de/2005/06/05/mailapp-unter-104-und-self-signed-certificates/Verfassungsschutz will PDS weiter beobachtenhttps://www.rfc1437.de/2005/06/05/verfassungsschutz-will-pds-weiter-beobachten/Anacron for Mac OS v10.4 (Tiger)https://www.rfc1437.de/2005/06/04/anacron-for-mac-os-v104-tiger/Keine Anwaltsgebühren für Abmahnungen bei Mehrfachvertretunghttps://www.rfc1437.de/2005/06/04/keine-anwaltsgebuehren-fuer-abmahnungen-bei/Österreichische Gesundheitskarte verletzt den Datenschutz von Arbeitslosenhttps://www.rfc1437.de/2005/06/04/oesterreichische-gesundheitskarte-verletzt-den/SuperDuper! and FileVaulthttps://www.rfc1437.de/2005/06/04/superduper-and-filevault/Wie funktioniert FileVaulthttps://www.rfc1437.de/2005/06/04/wie-funktioniert-filevault/Brummselhttps://www.rfc1437.de/2005/06/02/brummsel/Schneckig ...https://www.rfc1437.de/2005/06/02/crw-0925crw/PGP Corporation stört PGP Freeware Mirrorhttps://www.rfc1437.de/2005/06/02/pgp-corporation-stort-pgp-freeware-mirror/Photon iPhoto Pluginhttps://www.rfc1437.de/2005/06/02/photon-iphoto-plugin/Anwalt als Serien-Bankräuberhttps://www.rfc1437.de/2005/06/01/anwalt-als-serien-bankraeuber/Neues Objektiv für meine Canonhttps://www.rfc1437.de/2005/06/01/neues-objektiv-fur-meine-canon/Schockwellenreiterhttps://www.rfc1437.de/2005/06/01/schockwellenreiter-2/Experten plädieren für Mehrwertsteuer-Erhöhunghttps://www.rfc1437.de/2005/05/31/experten-pladieren-fur-mehrwertsteuer-erhohung/FDP will Offenlegung von Managerbezügen blockierenhttps://www.rfc1437.de/2005/05/31/fdp-will-offenlegung-von-managerbezuegen/Im Namen der Sicherheit ergeht folgender Unfughttps://www.rfc1437.de/2005/05/31/im-namen-der-sicherheit-ergeht-folgender-unfug/Kodak confirm SLR/n and SLR/c discontinuedhttps://www.rfc1437.de/2005/05/31/kodak-confirm-slr-n-and-slr-c-discontinued/Neuer unsinniger Pseudo-Kopierschutzhttps://www.rfc1437.de/2005/05/31/neuer-unsinniger-pseudo-kopierschutz/PC-Systeme auf dem Machttps://www.rfc1437.de/2005/05/31/pc-systeme-auf-dem-mac/The CHICKEN Scheme Compilerhttps://www.rfc1437.de/2005/05/31/the-chicken-scheme-compiler/Typisch Mac-User ist ...https://www.rfc1437.de/2005/05/31/typisch-mac-user-ist/Upgrade auf WordPress 1.5.1.2https://www.rfc1437.de/2005/05/31/upgrade-auf-wordpress-1512/Gleis 22 zum besten Musikclub Deutschlands gewählthttps://www.rfc1437.de/2005/05/30/gleis-22-zum-besten-musikclub-deutschlands-gewahlt/Licht und Schattenhttps://www.rfc1437.de/2005/05/30/licht-und-schatten/Licht und Schattenhttps://www.rfc1437.de/2005/05/30/licht-und-schatten-2/Schröder und Fischer bedauern Frankreichs Votumhttps://www.rfc1437.de/2005/05/30/schroder-und-fischer-bedauern-frankreichs-votum/Aber Atomkraft ist ja soooo sicherhttps://www.rfc1437.de/2005/05/29/aber-atomkraft-ist-ja-soooo-sicher/PageRank ist seit ein paar Tagen nicht mehr verfügbarhttps://www.rfc1437.de/2005/05/29/pagerank-ist-seit-ein-paar-tagen-nicht-mehr-vrfgbr/Unsere Computer gehören uns - nochhttps://www.rfc1437.de/2005/05/29/unsere-computer-gehoren-uns-noch/Algol 68 Genie - An Algol 68 interpreterhttps://www.rfc1437.de/2005/05/28/algol-68-genie-an-algol-68-interpreter/Giro in verdammt spannendhttps://www.rfc1437.de/2005/05/28/giro-in-verdammt-spannend/PDF Browser Pluginhttps://www.rfc1437.de/2005/05/28/pdf-browser-plugin/PithHelmethttps://www.rfc1437.de/2005/05/28/pithhelmet/Safari WebDevAdditionshttps://www.rfc1437.de/2005/05/28/safari-webdevadditions/safthttps://www.rfc1437.de/2005/05/28/saft/Scharping kandidiert nicht mehr für Bundestaghttps://www.rfc1437.de/2005/05/28/scharping-kandidiert-nicht-mehr-fuer-bundestag/Agfa-Photo GmbH geht in Insolvenzhttps://www.rfc1437.de/2005/05/27/agfa-photo-gmbh-geht-in-insolvenz/Basso again!https://www.rfc1437.de/2005/05/27/basso-again/Bitte nicht rubbelnhttps://www.rfc1437.de/2005/05/27/bitte-nicht-rubbeln/Blechtrommeln machen Lärmhttps://www.rfc1437.de/2005/05/27/blechtrommeln-machen-laerm/Digibux - Digitale Bibliothek setzt auf Open Sourcehttps://www.rfc1437.de/2005/05/27/digibux-digitale-bibliothek-setzt-auf-open-source/LispWorks Personal 4.4.5https://www.rfc1437.de/2005/05/27/lispworks-personal-445/Prozessorlüfter beim Powerbook 12"https://www.rfc1437.de/2005/05/27/prozessorlufter-beim-powerbook-12/X.4 Dashboard (Quarter Life Crisis)https://www.rfc1437.de/2005/05/27/x-4-dashboard-quarter-life-crisis/Apple ist auch manchmal strange ...https://www.rfc1437.de/2005/05/26/apple-ist-auch-manchmal-strange/Delicious Libraryhttps://www.rfc1437.de/2005/05/26/delicious-library/Einstweilige Verfügung gegen Googles Mail-Diensthttps://www.rfc1437.de/2005/05/26/einstweilige-verfugung-gegen-googles-mail-dienst/Kranke Software ...https://www.rfc1437.de/2005/05/26/kranke-software/Lauter kleine Otto Orwellshttps://www.rfc1437.de/2005/05/26/lauter-kleine-otto-orwells/Niedersächsische Regierung schwächt Einfluss des Datenschutzbeauftragtenhttps://www.rfc1437.de/2005/05/26/nidrschssch-rgrng-schwcht-nflss-ds-dtnschtzbftrgtn/Noch ein Tiger-Verlust?https://www.rfc1437.de/2005/05/26/noch-ein-tiger-verlust/Noch was zu Spotlighthttps://www.rfc1437.de/2005/05/26/noch-was-zu-spotlight/Performance vom Tigerhttps://www.rfc1437.de/2005/05/26/performance-vom-tiger/Shoeboxhttps://www.rfc1437.de/2005/05/26/shoebox/Spotlight support in VoodooPadhttps://www.rfc1437.de/2005/05/26/spotlight-support-in-voodoopad/DRM ist und bleibt Scheissehttps://www.rfc1437.de/2005/05/25/drm-ist-und-bleibt-scheisse/TBNL - A Toolkit for Dynamic Lisp Websiteshttps://www.rfc1437.de/2005/05/25/tbnl-a-toolkit-for-dynamic-lisp-websites/Tigerattackehttps://www.rfc1437.de/2005/05/25/tigerattacke/Voyager erreicht die Grenze des Sonnensystemshttps://www.rfc1437.de/2005/05/25/voyager-erreicht-die-grenze-des-sonnensystems/Bulgarian twin spammershttps://www.rfc1437.de/2005/05/24/bulgarian-twin-spammers/Nofollow revisitedhttps://www.rfc1437.de/2005/05/24/nofollow-revisited/Und die Abzocke geht weiterhttps://www.rfc1437.de/2005/05/23/und-die-abzocke-geht-weiter/US-Justizministerium stellt landesweites Sexualstraftäter-Register ins Netzhttps://www.rfc1437.de/2005/05/23/us-justizministerium-stellt-landesweites/Wahlen in NRWhttps://www.rfc1437.de/2005/05/22/wahlen-in-nrw/Kassenbeiträge werden wieder nicht sinkenhttps://www.rfc1437.de/2005/05/21/kassenbeitrage-werden-wieder-nicht-sinken/Blogbücher schreiben, aber RSS nicht kapierenhttps://www.rfc1437.de/2005/05/20/blogbucher-schreiben-aber-rss-nicht-kapieren/Dive Into Greasemonkeyhttps://www.rfc1437.de/2005/05/20/dive-into-greasemonkey-2/FramerDhttps://www.rfc1437.de/2005/05/20/framerd/Tim Pritlovehttps://www.rfc1437.de/2005/05/20/tim-pritlove/Jubel-Äum oder sohttps://www.rfc1437.de/2005/05/19/jubel-aum-oder-so/Paypal verschickt Phishing-Mailshttps://www.rfc1437.de/2005/05/19/paypal-verschickt-phishing-mails/Ackermann zur Kapitalismusdebattehttps://www.rfc1437.de/2005/05/18/ackermann-zur-kapitalismusdebatte/Das Keyboard - UberGeeks Onlyhttps://www.rfc1437.de/2005/05/18/das-keyboard-ubergeeks-only/Feuerwehr zerschneidet falsches Autohttps://www.rfc1437.de/2005/05/18/feuerwehr-zerschneidet-falsches-auto/CamlServhttps://www.rfc1437.de/2005/05/17/camlserv/Quartus Forth 2.0.0https://www.rfc1437.de/2005/05/17/quartus-forth-2-0-0/yadis: yet another distributed identity systemhttps://www.rfc1437.de/2005/05/17/yadis-yet-another-distributed-identity-system/Ende einer Kartoffel-Sorte: bald keine Linda mehrhttps://www.rfc1437.de/2005/05/16/ende-einer-kartoffel-sorte-bald-keine-linda-mehr/Free Pascal 2.0 ist raushttps://www.rfc1437.de/2005/05/16/free-pascal-20-ist-raus/Softwarepatente in realer Anwendunghttps://www.rfc1437.de/2005/05/16/softwarepatente-in-realer-anwendung/apropos Hirnfürzehttps://www.rfc1437.de/2005/05/15/apropos-hirnfurze/Unwahrscheinlich positivhttps://www.rfc1437.de/2005/05/15/unwahrscheinlich-positiv/OpenCOBOL - a COBOL compilerhttps://www.rfc1437.de/2005/05/14/opencobol-a-cobol-compiler/Schlüsselklau auf Hyperthreading-Systemenhttps://www.rfc1437.de/2005/05/14/schluesselklau-auf-hyperthreading-systemen/Bill Gates Hirnfürzehttps://www.rfc1437.de/2005/05/12/bill-gates-hirnfurze/Ping TopicExchange von WordPresshttps://www.rfc1437.de/2005/05/12/ping-topicexchange-von-wordpress/XDS Modula-2 / Oberon-2 Compilerhttps://www.rfc1437.de/2005/05/12/xds-modula-2-oberon-2-compiler/Polizeitstaat Hessenhttps://www.rfc1437.de/2005/05/10/polizeitstaat-hessen/Probleme mit dem Newsfeed bei WordPresshttps://www.rfc1437.de/2005/05/09/probleme-mit-dem-newsfeed-bei-wordpress/Back in Townhttps://www.rfc1437.de/2005/05/08/back-in-town/Bilder aus Flensburghttps://www.rfc1437.de/2005/05/08/bilder-aus-flensburg/Schily will Anti-Terror-Gesetze unbegrenzt verlängernhttps://www.rfc1437.de/2005/05/08/schily-will-anti-terror-gesetze-unbegrenzt-vrlngrn/Sparkline PHP Graphing Libraryhttps://www.rfc1437.de/2005/05/02/sparkline-php-graphing-library/Urlaub!https://www.rfc1437.de/2005/05/02/urlaub/Hitchhikers Guide als Filmhttps://www.rfc1437.de/2005/05/01/hitchhikers-guide-als-film/Zabel gewinnt Henninger Turmhttps://www.rfc1437.de/2005/05/01/zabel-gewinnt-henninger-turm/Ex-Bush-Ministerin Veneman wird Unicef-Chefinhttps://www.rfc1437.de/2005/04/30/ex-bush-ministerin-veneman-wird-unicef-chefin/RBL-Betreiber entweder Soziopathen oder inkompetenthttps://www.rfc1437.de/2005/04/30/rbl-betreiber-entweder-soziopathen-oder-inkompetnt/Apple-Nutzer in Parlamenten beklagen Diskriminierunghttps://www.rfc1437.de/2005/04/29/apple-nutzer-in-parlamenten-beklagen/Firefox erhält SVG-Unterstützunghttps://www.rfc1437.de/2005/04/29/firefox-erhaelt-svg-unterstuetzung/Gentechnik - es geht nicht nur um die Wursthttps://www.rfc1437.de/2005/04/29/gentechnik-es-geht-nicht-nur-um-die-wurst/KDE-Entwickler verärgert über Applehttps://www.rfc1437.de/2005/04/29/kde-entwickler-veraergert-ueber-apple/Neues Leica Objektivhttps://www.rfc1437.de/2005/04/29/neues-leica-objektiv/Da Vinci Crockhttps://www.rfc1437.de/2005/04/27/da-vinci-crock/Diplom Bürokaufmannhttps://www.rfc1437.de/2005/04/27/diplom-burokaufmann/Rechts von der Union ist die Unionhttps://www.rfc1437.de/2005/04/27/rechts-von-der-union-ist-die-union/Microsoft: alles nur geklauthttps://www.rfc1437.de/2005/04/26/microsoft-alles-nur-geklaut/Spielerei mit neuen Themehttps://www.rfc1437.de/2005/04/26/spielerei-mit-neuen-theme/Degradiert ...https://www.rfc1437.de/2005/04/25/degradiert/Erster Trojaner für Mac OS X gesichtethttps://www.rfc1437.de/2005/04/25/erster-trojaner-fuer-mac-os-x-gesichtet/OpenRAW - Digital Image Preservation Through Open Documentationhttps://www.rfc1437.de/2005/04/25/openraw-digital-image-preservatin-thrgh-pn-dcmnttn/Softwarepatente: Industrielobbying mit gezinkten Karten?https://www.rfc1437.de/2005/04/25/softwarepatente-industrielobbying-mit-gezinkten/AquaMacshttps://www.rfc1437.de/2005/04/24/aquamacs/.emacs Filehttps://www.rfc1437.de/2005/04/24/emacs-file/PostgreSQLXhttps://www.rfc1437.de/2005/04/24/postgresqlx/SPE-OSXhttps://www.rfc1437.de/2005/04/24/spe-osx/sproutlinerhttps://www.rfc1437.de/2005/04/24/sproutliner/Auch das ist Münsterhttps://www.rfc1437.de/2005/04/23/auch-das-ist-munster/Borland open sources JBuilderhttps://www.rfc1437.de/2005/04/23/borland-open-sources-jbuilder/Nikon respond to RAW WB concernshttps://www.rfc1437.de/2005/04/23/nikon-respond-to-raw-wb-concerns/Streifenkalender für WordPresshttps://www.rfc1437.de/2005/04/23/streifenkalender-fur-wordpress/virtuelle Hosts mit WordPresshttps://www.rfc1437.de/2005/04/23/virtuelle-hosts-mit-wordpress/WordPress Versioning Pluginhttps://www.rfc1437.de/2005/04/23/wordpress-versioning-plugin/Barroso mehrfach auf Yacht zu Gasthttps://www.rfc1437.de/2005/04/22/barroso-mehrfach-auf-yacht-zu-gast/NASA Is Said to Loosen Risk Standards for Shuttlehttps://www.rfc1437.de/2005/04/22/nasa-is-said-to-loosen-risk-standards-for-shuttle/Hinterhältige Ameisenhttps://www.rfc1437.de/2005/04/21/hinterhaeltige-ameisen/Practical Common Lisphttps://www.rfc1437.de/2005/04/21/practical-common-lisp/Schily und die Demokratiehttps://www.rfc1437.de/2005/04/20/schily-und-die-demokratie/Contax – RIP or Resurrectionhttps://www.rfc1437.de/2005/04/19/contax-rip-or-resurrection/Nikon Encrypts D2X and D2Hs White Balance Datahttps://www.rfc1437.de/2005/04/19/nikon-encrypts-d2x-and-d2hs-white-balance-data/Parlament in Kuwait stimmt Frauenwahlrecht zuhttps://www.rfc1437.de/2005/04/19/parlament-in-kuwait-stimmt-frauenwahlrecht-zu/Spam unter Strafe stellen?https://www.rfc1437.de/2005/04/19/spam-unter-strafe-stellen/Urteil gegen Kantherhttps://www.rfc1437.de/2005/04/19/urteil-gegen-kanther/Vorbereitende Fragehttps://www.rfc1437.de/2005/04/19/vorbereitende-frage/Was von der BZÖ zu erwarten isthttps://www.rfc1437.de/2005/04/19/was-von-der-bzo-zu-erwarten-ist/Adobe übernimmt Macromedia für 3,4 Milliarden Dollarhttps://www.rfc1437.de/2005/04/18/adobe-uebernimmt-macromedia-fuer-3-4-milliarden/Ging mir gerade durch den Kopf ...https://www.rfc1437.de/2005/04/18/ging-mir-gerade-durch-den-kopf/typochttps://www.rfc1437.de/2005/04/18/typoc/Bistro Introhttps://www.rfc1437.de/2005/04/17/bistro-intro/Seashorehttps://www.rfc1437.de/2005/04/17/seashore-2/Westerwelle will nicht mehr Kanzler werdenhttps://www.rfc1437.de/2005/04/17/westerwelle-will-nicht-mehr-kanzler-werden/''Cool it, Linus'' - Bruce Perenshttps://www.rfc1437.de/2005/04/16/cool-it-linus-bruce-perens/Grüne geben Widerstand gegen Raketenabwehrsystem aufhttps://www.rfc1437.de/2005/04/16/grune-geben-widerstand-ggn-rktnbwhrsystm-f-tgsschd/Servernamenhttps://www.rfc1437.de/2005/04/16/servernamen/Lafontaine steht offenbar vor Austritt aus der SPDhttps://www.rfc1437.de/2005/04/15/lafontaine-steht-offenbar-vor-austritt-aus-der-spd/Widerstand unter Kardinälen gegen Ratzinger wächsthttps://www.rfc1437.de/2005/04/15/widerstand-unter-kardinaelen-gegen-ratzinger/"Auch Hondos B-Proben positiv "https://www.rfc1437.de/2005/04/14/auch-hondos-b-proben-positiv/Eröffnung des Hauses der Photographie in Hamburghttps://www.rfc1437.de/2005/04/14/eroeffnung-des-hauses-der-photographie-in-hamburg/Selbstgemachtes System als BitKeeper-Ersatzhttps://www.rfc1437.de/2005/04/14/selbstgemachtes-system-als-bitkeeper-ersatz/Visa-Missbrauch schon im Kohl-Kabinett ein Thema?https://www.rfc1437.de/2005/04/14/visa-missbrauch-schon-im-kohl-kabinett-ein-thema/Goldhamsterstorieshttps://www.rfc1437.de/2005/04/13/abteilung-offentlichkeitsarbeit-mlu-halle-wittnbrg/Achja, der Wahlkampf hat angefangen ...https://www.rfc1437.de/2005/04/13/achja-der-wahlkampf-hat-angefangen/Es gibt so Tage ...https://www.rfc1437.de/2005/04/13/es-gibt-so-tage/Nur so als Hinweis ...https://www.rfc1437.de/2005/04/13/nur-so-als-hinweis/Contax brand comes to an endhttps://www.rfc1437.de/2005/04/12/contax-brand-comes-to-an-end/dvddisasterhttps://www.rfc1437.de/2005/04/12/dvddisaster/Geeignet ab 6 Jahrehttps://www.rfc1437.de/2005/04/12/geeignet-ab-6-jahre/PostgreSQL 8.0.2 released with patent fixhttps://www.rfc1437.de/2005/04/12/postgresql-802-released-with-patent-fix/Dauerthema SORBShttps://www.rfc1437.de/2005/04/11/dauerthema-sorbs//IE7/https://www.rfc1437.de/2005/04/11/ie7/Netzbuchhttps://www.rfc1437.de/2005/04/11/netzbuch/Simulation von :before mit content: in IE6https://www.rfc1437.de/2005/04/11/simulation-von-before-mit-content-in-ie6/delicious:dayshttps://www.rfc1437.de/2005/04/10/delicious-days/Lickr: Flickr, without the Flashhttps://www.rfc1437.de/2005/04/10/lickr-flickr-without-the-flash/Meine Firefox-Erweiterungenhttps://www.rfc1437.de/2005/04/10/meine-firefox-erweiterungen/Multimap - nettes Spielzeughttps://www.rfc1437.de/2005/04/10/multimap-nettes-spielzeug/SISC - Second Interpreter of Scheme Codehttps://www.rfc1437.de/2005/04/10/sisc-second-interpreter-of-scheme-code/Studs MVC Frameworkhttps://www.rfc1437.de/2005/04/10/studs-mvc-framework/Tags aus Termshttps://www.rfc1437.de/2005/04/10/tags-aus-terms/Aus für Berliner Symphonikerhttps://www.rfc1437.de/2005/04/09/aus-fuer-berliner-symphoniker/Resizeable Textareahttps://www.rfc1437.de/2005/04/09/resizeable-textarea/SLR-Objektive an der Leica M benutzenhttps://www.rfc1437.de/2005/04/09/slr-objektive-an-der-leica-m-benutzen/XFN Graphhttps://www.rfc1437.de/2005/04/09/xfn-graph/Schily will Sprayer mit Hubschraubern verfolgenhttps://www.rfc1437.de/2005/04/08/schily-will-sprayer-mit-hubschraubern-verfolgen/VIA legt EPIA-Treiber offenhttps://www.rfc1437.de/2005/04/08/via-legt-epia-treiber-offen/Datenschützer: Anonymität im Netz ein gesetzlich verbrieftes Rechthttps://www.rfc1437.de/2005/04/07/datenschutzer-annymtt-m-ntz-n-gstzlch-vrbrfts-rcht/FeedWordPresshttps://www.rfc1437.de/2005/04/07/feedwordpress/Jamba vor Problemen in den USA?https://www.rfc1437.de/2005/04/07/jamba-vor-problemen-in-den-usa/Die Seite fuer Ural und Dnepr Fahrerhttps://www.rfc1437.de/2005/04/06/die-seite-fuer-ural-und-dnepr-fahrer/Polizei fürchtet Anonymität und Kryptographie im Netzhttps://www.rfc1437.de/2005/04/06/polizei-furchtet-anonymitat-und-kryptographi-m-ntz/Source-Verwaltungssystem BitKeeper nur noch kommerziellhttps://www.rfc1437.de/2005/04/06/source-verwaltungssystem-bitkeeper-nur-noch/Sun bemäkelt die GPLhttps://www.rfc1437.de/2005/04/06/sun-bemakelt-die-gpl/TheMonadReaderhttps://www.rfc1437.de/2005/04/06/themonadreader/Ego-Surfinghttps://www.rfc1437.de/2005/04/05/ego-surfing/Öffentlich Rechtlicher Unfughttps://www.rfc1437.de/2005/04/05/offentlich-rechtlicher-unfug/Onlinemagazine und journalistische Ehrlichkeithttps://www.rfc1437.de/2005/04/05/onlinemagazine-und-journalistische-ehrlichkeit/Pugs - pugscodehttps://www.rfc1437.de/2005/04/05/pugs-pugscode/Urteil in Sachen Musikindustrie gegen heise onlinehttps://www.rfc1437.de/2005/04/05/urteil-in-sachen-musikindustrie-gegen-heise-online/Zeugen Jehovas: Bald Kirche in NRW?https://www.rfc1437.de/2005/04/05/zeugen-jehovas-bald-kirche-in-nrw/Okay, We Give Up -- We feel so ashamedhttps://www.rfc1437.de/2005/04/04/okay-we-give-up-we-feel-so-ashamed/Papst-Pontifikat: Kritik aus Politik und Kirchehttps://www.rfc1437.de/2005/04/04/papst-pontifikat-kritik-aus-politik-und-kirche/Regierungsstudie warnt vor Blockade durch Softwarepatentehttps://www.rfc1437.de/2005/04/04/regierungsstudie-warnt-vor-blockade-drch-sftwrptnt/Systemhaus BOG stellt Insolvenzantraghttps://www.rfc1437.de/2005/04/04/systemhaus-bog-stellt-insolvenzantrag/Ist eigentlich schon mal jemandem aufgefallen ...https://www.rfc1437.de/2005/04/03/ist-eigentlich-schon-mal-jemandem-aufgefallen/Javascript Windowshttps://www.rfc1437.de/2005/04/03/javascript-windows/Von Biometrie, Vorratsdatenspeicherung, Wissenschaft und Zensurhttps://www.rfc1437.de/2005/04/03/vn-bmtr-vrrtsdtnspchrng-wssnschft-nd-znsr-bntrlch/Epson R-D1 Reviewhttps://www.rfc1437.de/2005/04/02/epson-r-d1-review/HP Photosmart 8750 Photo Printerhttps://www.rfc1437.de/2005/04/02/hp-photosmart-8750-photo-printer/A Response to the Noisehttps://www.rfc1437.de/2005/04/01/a-response-to-the-noise/Danilo Hondo positiv auf Doping getestet?https://www.rfc1437.de/2005/04/01/danilo-hondo-positiv-auf-doping-getestet/Html Validator for Firefox and Mozillahttps://www.rfc1437.de/2005/04/01/html-validator-for-firefox-and-mozilla/Jubiläumsangebote der Lufthansa bringen Webserver zum Stillstandhttps://www.rfc1437.de/2005/04/01/jubilaeumsangebote-der-lufthansa-bringen/RFC4041: Requirements for Morality Sections in Routing Area Drafts. A....https://www.rfc1437.de/2005/04/01/rfc4041-requirements-for-morality-sections-in/Sicherheitsrisiko Passwortschutz bei Festplattenhttps://www.rfc1437.de/2005/04/01/sicherheitsrisiko-passwortschutz-bei-festplatten/upcoming change in PLT Scheme v300https://www.rfc1437.de/2005/04/01/upcoming-change-in-plt-scheme-v300/America: Where A Bumper Sticker Gets You Bannedhttps://www.rfc1437.de/2005/03/31/america-where-a-bumper-sticker-gets-you-banned/Brüssel steuert auf Eklat bei der Vorratsdatenspeicherung zuhttps://www.rfc1437.de/2005/03/31/bruessel-steuert-auf-eklat-bei-der/Ruf nach strikter Regelung bei Organspendenhttps://www.rfc1437.de/2005/03/31/ruf-nach-strikter-regelung-be-rgnspndn-wdrd-gsndht/Stollwerck schließt Schoko-Produktionhttps://www.rfc1437.de/2005/03/31/stollwerck-schliesst-schoko-produktion/Wordpress Website's Search Engine Spamhttps://www.rfc1437.de/2005/03/31/wordpress-websites-search-engine-spam/class.jabber.phphttps://www.rfc1437.de/2005/03/30/class-jabber-php/Preserve Code Formattinghttps://www.rfc1437.de/2005/03/30/preserve-code-formatting/Schröder: Waffenlieferungen an China auch gegen Willen des Bundestagshttps://www.rfc1437.de/2005/03/30/schroder-waffenlfrngn-n-chn-ch-ggn-wlln-ds-bndstgs/Antwort vom BMWA auf mein Faxhttps://www.rfc1437.de/2005/03/29/antwort-vom-bmwa-auf-mein-fax/deNic bei .net-Bewerbung draussen?https://www.rfc1437.de/2005/03/29/denic-bei-net-bewerbung-draussen/Freitag 08.09.2000: Tröpfe und -innen - Die drei Protokollisten heben sich den Zynismus für die Fortsetzungsgeschichte aufhttps://www.rfc1437.de/2005/03/29/freitag-08-09-2000-troepfe-und-innen-die-drei/Leichter Zugriff der Geheimdienste auf Konten und Reisedaten geforderthttps://www.rfc1437.de/2005/03/29/leichter-zugriff-der-geheimdienste-auf-konten-und/Studie bescheinigt Windows bessere Sicherheit als Linuxhttps://www.rfc1437.de/2005/03/29/studie-bescheinigt-windows-bessere-sicherht-ls-lnx/The SimCam: Film and Digital Camera Simulatorhttps://www.rfc1437.de/2005/03/29/the-simcam-film-and-digital-camera-simulator/Vertragsbedingungen für Sperr-Rufnummer publizierthttps://www.rfc1437.de/2005/03/29/vertragsbedingungen-fuer-sperr-rufnummer/Yahoo 360 Gradhttps://www.rfc1437.de/2005/03/29/yahoo-360-grad/BBEdit 8.1 brings Subversion supporthttps://www.rfc1437.de/2005/03/28/bbedit-8-1-brings-subversion-support/Cat2Tag Pluginhttps://www.rfc1437.de/2005/03/28/cat2tag-plugin/Pheed RSS Specificationhttps://www.rfc1437.de/2005/03/28/pheed-rss-specification/Rund um Köln ...https://www.rfc1437.de/2005/03/28/rund-um-koln/SCO Uses Legal Documents from Groklaw and Tuxrockshttps://www.rfc1437.de/2005/03/28/sco-uses-legal-documents-from-groklaw-and-tuxrocks/APLX Version 2: The exciting cross-platform APLhttps://www.rfc1437.de/2005/03/27/aplx-version-2-the-exciting-cross-platform-apl/PowerBook macht Zickenhttps://www.rfc1437.de/2005/03/27/powerbook-macht-zicken/Time Zone (WP Plugin)https://www.rfc1437.de/2005/03/27/time-zone-wp-plugin/Alicehttps://www.rfc1437.de/2005/03/26/alice/DrScheme 300er Seriehttps://www.rfc1437.de/2005/03/26/drscheme-300er-serie/Grundlagen Wellenausbreitung und Antennenbauhttps://www.rfc1437.de/2005/03/26/grundlagen-wellenausbreitung-und-antennenbau/Revanche des Karteikastenshttps://www.rfc1437.de/2005/03/26/revanche-des-karteikastens/Mac Mini auf der Arbeit angekommenhttps://www.rfc1437.de/2005/03/24/mac-mini-auf-der-arbeit-angekommen/Mein neues Fotoblog - und der erste Marienkäferhttps://www.rfc1437.de/2005/03/24/mein-neues-fotoblog-und-der-erste-marienkafer/Mein neues Fotoblog - und der erste Marienkäferhttps://www.rfc1437.de/2005/03/24/mein-neues-fotoblog-und-der-erste-marienkafer-2/Microsoft auf Patentraubzughttps://www.rfc1437.de/2005/03/24/microsoft-auf-patentraubzug/Hackers re-enable PyMusique access to iTMShttps://www.rfc1437.de/2005/03/23/hackers-re-enable-pymusique-access-to-itms/Journalism is a jokehttps://www.rfc1437.de/2005/03/23/journalism-is-a-joke/PythonEggshttps://www.rfc1437.de/2005/03/23/pythoneggs/Sybase stoppt Veröffentlichung von Details zu Sicherheitslückenhttps://www.rfc1437.de/2005/03/23/sybase-stoppt-veroeffentlichung-von-details-zu/Ajaxing the Railshttps://www.rfc1437.de/2005/03/22/ajaxing-the-rails/All Complex Ecosystems Have Parasiteshttps://www.rfc1437.de/2005/03/22/all-complex-ecosystems-have-parasites/Antwort des BMJ zu Softwarepatentenhttps://www.rfc1437.de/2005/03/22/antwort-des-bmj-zu-softwarepatenten/TidBITS: What You Get Is What You CSS, With Style Master 4.0https://www.rfc1437.de/2005/03/22/tidbits-what-you-get-is-what-you-css-with-style/Advanced Bash-Scripting Guidehttps://www.rfc1437.de/2005/03/21/advanced-bash-scripting-guide/BFI-Banker zu fast sechs Jahren Haft verurteilthttps://www.rfc1437.de/2005/03/21/bfi-banker-zu-fast-sechs-jahren-haft-verurteilt/Der Fall Schiavo - Trauerspiel zwischen Leben und Tod | tagesschau.dehttps://www.rfc1437.de/2005/03/21/der-fall-schiavo-traurspl-zwschn-lbn-nd-td-tgsschd/Hastymailhttps://www.rfc1437.de/2005/03/21/hastymail/Know your Enemy: Tracking Botnetshttps://www.rfc1437.de/2005/03/21/know-your-enemy-tracking-botnets/photomatthttps://www.rfc1437.de/2005/03/21/photomatt/Strafbefehl gegen Stefan Raabhttps://www.rfc1437.de/2005/03/21/strafbefehl-gegen-stefan-raab/Was ich pervers finde ...https://www.rfc1437.de/2005/03/21/was-ich-pervers-finde/Yahoo kauft wirklich Flickrhttps://www.rfc1437.de/2005/03/21/yahoo-kauft-wirklich-flickr/Schwarzes Loch im Laborhttps://www.rfc1437.de/2005/03/20/schwarzes-loch-im-labor/Stolpe empfiehlt: Autobahnen für den Aufschwunghttps://www.rfc1437.de/2005/03/20/stolpe-empfiehlt-autobahnen-fur-den-aufschwung/The Man in Blue > Experiments > widgEditorhttps://www.rfc1437.de/2005/03/20/the-man-in-blue-experiments-widgeditor/Hondo ist Zweiter bei Mailand - San Remohttps://www.rfc1437.de/2005/03/19/hondo-ist-zweiter-bei-mailand-san-remo/ARD-Anstalten contra jWhttps://www.rfc1437.de/2005/03/18/ard-anstalten-contra-jw/Bildbeschneidung mit DHTMLhttps://www.rfc1437.de/2005/03/18/bildbeschneidung-mit-dhtml/Metasuchmaschinen-Betreiber muss für ehrverletzende Einträge einstehenhttps://www.rfc1437.de/2005/03/18/metasuchmaschinn-btrbr-mss-fr-hrvrltznd-ntrg-nsthn/Agata Reporthttps://www.rfc1437.de/2005/03/17/agata-report/Contax rausverkaufhttps://www.rfc1437.de/2005/03/17/contax-rausverkauf/Der Industriekanzler und die Konzeptlosigkeithttps://www.rfc1437.de/2005/03/17/der-industriekanzler-und-die-konzeptlosigkeit/Ein Grundrecht ohne Grund und Bodenhttps://www.rfc1437.de/2005/03/17/ein-grundrecht-ohne-grund-und-boden/FUD Kampagne gegen Linuxhttps://www.rfc1437.de/2005/03/17/fud-kampagne-gegen-linux/Gmail-Einladungen: Erste einstweilige Verfügunghttps://www.rfc1437.de/2005/03/17/gmail-einladungen-erste-einstweilige-verfuegung/ihr albernes Trikothttps://www.rfc1437.de/2005/03/17/ihr-albernes-trikot/Kurztripp nach Kölnhttps://www.rfc1437.de/2005/03/17/kurztripp-nach-koln/Kurztripp nach Kölnhttps://www.rfc1437.de/2005/03/17/kurztripp-nach-koln-2/Nach dem Job-Gipfel: Hirnlosigkeithttps://www.rfc1437.de/2005/03/17/nach-dem-job-gipfel-hirnlosigkeit/Onlinesysteme ohne Useabilityhttps://www.rfc1437.de/2005/03/17/onlinesysteme-ohne-useability/The horror of software patentshttps://www.rfc1437.de/2005/03/17/the-horror-of-software-patents/Unverständnis und Kritik nach Wolfowitz-Nominierunghttps://www.rfc1437.de/2005/03/17/unverstandnis-und-kritik-nach-wolfowitz-nominierng/US-Senat segnet Ölbohrungen in Alaska abhttps://www.rfc1437.de/2005/03/17/us-senat-segnet-oelbohrungen-in-alaska-ab/Wahldebakel in Kielhttps://www.rfc1437.de/2005/03/17/wahldebakel-in-kiel/Aktionsbündnis gegen Spamhttps://www.rfc1437.de/2005/03/16/aktionsbundnis-gegen-spam/Bayerns Blinde sollen gefälligst zu Hause bleibenhttps://www.rfc1437.de/2005/03/16/bayerns-blinde-sollen-gefaelligst-zu-hause-bleiben/Clement kapiert Demokratie nichthttps://www.rfc1437.de/2005/03/16/clement-kapiert-demokratie-nicht/CLiki : cl-ajaxhttps://www.rfc1437.de/2005/03/16/cliki-cl-ajax/ein Java Applet eine Signatur hathttps://www.rfc1437.de/2005/03/16/ein-java-applet-eine-signatur-hat/Google mit eigenen Waffen schlagenhttps://www.rfc1437.de/2005/03/16/google-mit-eigenen-waffen-schlagen/Naked Objectshttps://www.rfc1437.de/2005/03/16/naked-objects/O2 mahnt Sauerstoff-Abfüller abhttps://www.rfc1437.de/2005/03/16/o2-mahnt-sauerstoff-abfueller-ab/SAJAX - Simple Ajax Toolkit by ModernMethod - XMLHTTPRequest Toolkit for PHPhttps://www.rfc1437.de/2005/03/16/sajax-simple-ajax-toolkit-by-modernmethod/SCO OpenServer 6 mit viel Open Sourcehttps://www.rfc1437.de/2005/03/16/sco-openserver-6-mit-viel-open-source/Usable XMLHttpRequest in Practicehttps://www.rfc1437.de/2005/03/16/usable-xmlhttprequest-in-practice/iTunes 4.7.1 quietly brings sharing restrictionshttps://www.rfc1437.de/2005/03/15/itunes-4-7-1-quietly-brings-sharing-restrictions/ParenScripthttps://www.rfc1437.de/2005/03/15/parenscript/Arbeitgeber legen Sofortprogramm vorhttps://www.rfc1437.de/2005/03/14/arbeitgeber-legen-sofortprogramm-vor/CherryFlow - Continuations in Pythonhttps://www.rfc1437.de/2005/03/14/cherryflow-continuations-in-python/Debian plant Verringerung der Architekturanzahlhttps://www.rfc1437.de/2005/03/14/debian-plant-verringerung-der-architekturanzahl/Firefox Help: Tips & Trickshttps://www.rfc1437.de/2005/03/14/firefox-help-tips-tricks/Absprachen über Vorratsdatenspeicherung lösen Empörung aushttps://www.rfc1437.de/2005/03/14/heise-onlin-bsprchn-br-vrrtsdtnspchrng-lsn-mprng-s/Markenname "Milka" siegt gegen Frau Milkahttps://www.rfc1437.de/2005/03/14/markenname-milka-siegt-gegen-frau-milka/Schräger Ottohttps://www.rfc1437.de/2005/03/14/schrager-otto/Urlaub für Mai gebucht ...https://www.rfc1437.de/2005/03/14/urlaub-fur-mai-gebucht/Was man so auf Dächern findet ...https://www.rfc1437.de/2005/03/14/was-man-so-auf-dachern-findet/Wird Zeit iChat rauszuwerfenhttps://www.rfc1437.de/2005/03/14/wird-zeit-ichat-rauszuwerfen/Orwell mit Verspätunghttps://www.rfc1437.de/2005/03/13/orwell-mit-verspatung/Zypries will DNA-Tests ausweitenhttps://www.rfc1437.de/2005/03/13/zypries-will-dna-tests-ausweiten/Poly/ML Home Pagehttps://www.rfc1437.de/2005/03/11/polyml-home-page/Ruby stuff for Macshttps://www.rfc1437.de/2005/03/11/ruby-stuff-for-macs/The fate of reduce() in Python 3000https://www.rfc1437.de/2005/03/11/the-fate-of-reduce-in-python-3000/UnCommon Web Tutorialhttps://www.rfc1437.de/2005/03/11/uncommon-web-tutorial/WP: Gravatar Signup [ Tempus Fugit | TxFx.net ]https://www.rfc1437.de/2005/03/11/wp-gravatar-signup-tempus-fugit-txfx-net/Abzockstar Laurenz Meyerhttps://www.rfc1437.de/2005/03/10/abzockstar-laurenz-meyer/Borderline Chaoshttps://www.rfc1437.de/2005/03/10/borderline-chaos/CherryOS verletzt die GPLhttps://www.rfc1437.de/2005/03/10/cherryos-verletzt-die-gpl/Iridient Digital - RAW Developerhttps://www.rfc1437.de/2005/03/10/iridient-digital-raw-developer/Perverse Geschmacksverirrungenhttps://www.rfc1437.de/2005/03/10/perverse-geschmacksverirrungen/Schmidt droht Kassen wegen hoher Beitragssätzehttps://www.rfc1437.de/2005/03/10/schmidt-droht-kassen-wegen-hoher-beitragssaetze/Musikindustrie und ihr angebliches Interesse für Musikerrechtehttps://www.rfc1437.de/2005/03/09/musikindustrie-und-ihr-angeblchs-ntrss-fr-mskrrcht/Was die Harvard Business School unter Hacking verstehthttps://www.rfc1437.de/2005/03/09/was-die-harvard-business-school-unter-hckng-vrstht/Armut ist weiblichhttps://www.rfc1437.de/2005/03/08/armut-ist-weiblich/Hedgehoghttps://www.rfc1437.de/2005/03/08/hedgehog-2/Rechte auf dem Weg in die Mittehttps://www.rfc1437.de/2005/03/08/rechte-auf-dem-weg-in-die-mitte/Social Software und un-Social Behaviourhttps://www.rfc1437.de/2005/03/08/social-software-und-un-social-behaviour/Uralter LAND-Angriff funktioniert wieder im aktuellen Windowshttps://www.rfc1437.de/2005/03/08/uralter-land-angriff-funktioniert-wieder-im/Weiterer Fehler in Linux-Sicherheitserweiterung grsecurityhttps://www.rfc1437.de/2005/03/08/weiterer-fehler-in-linux-sicherheitserweiterung/Wladimir Kaminer über Einreise nach Deutschlandhttps://www.rfc1437.de/2005/03/08/wladimir-kaminer-uber-einreise-nach-deutschland/Authentication Plugins Patchhttps://www.rfc1437.de/2005/03/07/authentication-plugins-patch/EU-Ministerrat für Kompromiss zu Software-Patentenhttps://www.rfc1437.de/2005/03/07/eu-ministerrat-fur-kompromiss-zu-software-patenten/Münchner Landgericht verbietet Link auf Kopiersoftware-Herstellerhttps://www.rfc1437.de/2005/03/07/munchner-landgericht-verbtt-lnk-f-kprsftwr-hrstllr/OSERhttps://www.rfc1437.de/2005/03/07/oser/Top Level Domain .at hat keinen zwingenden Bezug zu Österreichhttps://www.rfc1437.de/2005/03/07/top-level-domain-at-hat-keinn-zwngndn-bzg-z-strrch/Umstrittene Kfz-Kennzeichen-Patent ist für nichtig erklärthttps://www.rfc1437.de/2005/03/07/umstrittene-kfz-kennzeichen-patent-ist-fuer/cyrusharmon.org: More GCC-XML (new and improved -- now with pr0n!)https://www.rfc1437.de/2005/03/06/cyrusharmon-org-more-gcc-xml-new-and-improved-now/Graffiti und Kunsthttps://www.rfc1437.de/2005/03/06/graffiti-und-kunst/Graffiti und Kunst - 2https://www.rfc1437.de/2005/03/06/graffiti-und-kunst-2/Graffiti und Kunst - 3https://www.rfc1437.de/2005/03/06/graffiti-und-kunst-3/Graffiti und Kunst - 1https://www.rfc1437.de/2005/03/06/graffiti-und-kunst-4/Keine Bananenunion Europahttps://www.rfc1437.de/2005/03/06/keine-bananenunion-europa-keine-softwarepatente/Schneeblumenhttps://www.rfc1437.de/2005/03/06/schneeblumen/Schneeblumen - 1https://www.rfc1437.de/2005/03/06/schneeblumen-2/Schneeblumen - 2https://www.rfc1437.de/2005/03/06/schneeblumen-2-2/Strandguthütte am Kanal?https://www.rfc1437.de/2005/03/06/strandguthutte-am-kanal/was wir aufgrund der schwarzen Liste gegen Korruption in NRWhttps://www.rfc1437.de/2005/03/06/was-wir-aufgrund-der-schwarzen-liste-gegen/grsecurity installierenhttps://www.rfc1437.de/2005/03/05/grsecurity-installieren/Münsterlandeshttps://www.rfc1437.de/2005/03/05/muensterlandes/WordPress Theme: Gilahttps://www.rfc1437.de/2005/03/05/wordpress-theme-gila/Empörung über Aussage von JuLi-Vorsitzendemhttps://www.rfc1437.de/2005/03/04/empoerung-ueber-aussage-von-juli-vorsitzendem/How to setup WebObjects 5.1 on Linuxhttps://www.rfc1437.de/2005/03/04/how-to-setup-webobjects-51-on-linux/OpenACShttps://www.rfc1437.de/2005/03/04/openacs/Softwarepatente: Die Zeichen stehen auf Neuverhandlung im EU-Rathttps://www.rfc1437.de/2005/03/04/softwarepatente-die-zeichen-sthn-f-nvrhndlng-m-rt/Tabakindustrie bestach Wissenschaftlerhttps://www.rfc1437.de/2005/03/04/tabakindustrie-bestach-wissenschaftler/Backup mit halben Daten?https://www.rfc1437.de/2005/03/03/backup-mit-halben-daten/Ekelerregendhttps://www.rfc1437.de/2005/03/03/ekelerregend/Forscher erzeugen unterschiedliche X.509-Zertifikate mit gleichem MD5-Hashhttps://www.rfc1437.de/2005/03/03/forscher-erzeugen-unterschiedliche-x-509/Kyocera to end camera productionhttps://www.rfc1437.de/2005/03/03/kyocera-to-end-camera-production/man kann diese mit einem simplen Magneten knackenhttps://www.rfc1437.de/2005/03/03/man-kann-diese-mit-einem-simplen-magneten-knacken/Nr. 1737 und ein Vetohttps://www.rfc1437.de/2005/03/03/nr-1737-und-ein-veto/Offiziell genehmigtes Datamining einer Geheimdienst-Mailinglistehttps://www.rfc1437.de/2005/03/03/offiziell-genehmigtes-datamining-einer/SCO vs. Linux: SCO verlangt Einsicht in IBMs Konstruktionsplänehttps://www.rfc1437.de/2005/03/03/sco-vs-linux-sco-verlangt-einsicht-in-ibms/SKYRiX Object Publishing Environmenthttps://www.rfc1437.de/2005/03/03/skyrix-object-publishing-environment/SOS-Kinderdörfer warten auf Spende von Laurenz Meyerhttps://www.rfc1437.de/2005/03/03/sos-kinderdoerfer-warten-auf-spende-von-laurenz/Stu Nicholls Cutting Edge CSS An amazing CSS puzzlehttps://www.rfc1437.de/2005/03/03/stu-nicholls-cutting-edge-css-an-amazing-css/TB Quickmove und QuickFilehttps://www.rfc1437.de/2005/03/03/tb-quickmove-und-quickfile/Aranha server monitorhttps://www.rfc1437.de/2005/03/02/aranha-server-monitor/blo.gs: for salehttps://www.rfc1437.de/2005/03/02/blo-gs-for-sale/BlogFox: alles nur geklauthttps://www.rfc1437.de/2005/03/02/blogfox-alles-nur-geklaut/Gericht bestätigt Störerhaftung des Admin-Chttps://www.rfc1437.de/2005/03/02/gericht-bestatigt-storerhaftung-des-admin-c/Kyocera Hamburg am Ende?https://www.rfc1437.de/2005/03/02/kyocera-hamburg-am-ende/Microsoft setzt bei «Longhorn» auf Marketinghttps://www.rfc1437.de/2005/03/02/microsoft-setzt-bei-longhorn-auf-marketing/PIXELPOST - Small Photoblog Softwarehttps://www.rfc1437.de/2005/03/02/pixelpost-small-photoblog-software/SmartEiffel The GNU Eiffel Compilerhttps://www.rfc1437.de/2005/03/02/smarteiffel-the-gnu-eiffel-compiler/Abrechnung via IP?https://www.rfc1437.de/2005/03/01/abrechnung-via-ip/Back to the Future: The Story of Squeakhttps://www.rfc1437.de/2005/03/01/back-to-the-future-the-story-of-squeak/concord.antville.orghttps://www.rfc1437.de/2005/03/01/concord-antville-org/erinnert sich noch jemand an SoftRAM95https://www.rfc1437.de/2005/03/01/erinnert-sich-noch-jemand-an-softram95/Frostküttelhttps://www.rfc1437.de/2005/03/01/frostkuttel/Gigantische Erdzeichnungen in Peru entdeckthttps://www.rfc1437.de/2005/03/01/gigantische-erdzeichnungen-in-peru-entdeckt/Gut isoliert.https://www.rfc1437.de/2005/03/01/gut-isoliert/Leer: Freilandforschung mit Knüppeltötunghttps://www.rfc1437.de/2005/03/01/leer-freilandforschung-mit-knuppeltotung/Rolling Stonehttps://www.rfc1437.de/2005/03/01/rolling-stone/Sind Überstunden Pflicht?https://www.rfc1437.de/2005/03/01/sind-uberstunden-pflicht/Skidoo Too : Ruthsarian Layoutshttps://www.rfc1437.de/2005/03/01/skidoo-too-ruthsarian-layouts/SPD: "Kein Steuernachlass für ausländische Spitzenverdiener"https://www.rfc1437.de/2005/03/01/spd-kein-steuernachlass-fuer-auslaendische/Wir werden alle entlassen werdenhttps://www.rfc1437.de/2005/03/01/wir-werden-alle-entlassen-werden/Blogs! Warum Verisign bzw. Jamba Six Apart und Livejournal kaufen wirdhttps://www.rfc1437.de/2005/02/28/blogs-warum-verisign-bzw-jamba-six-apart-und/Böötchen vs. Bötchenhttps://www.rfc1437.de/2005/02/28/bootchen-vs-botchen/GeoURL (2.0)https://www.rfc1437.de/2005/02/28/geourl-2-0/JustBlogIt with a simple right-click.https://www.rfc1437.de/2005/02/28/justblogit-with-a-simple-right-click/Kentucky Student Charged with Felony Thoughtcrimehttps://www.rfc1437.de/2005/02/28/kentucky-student-charged-with-felony-thoughtcrime/NZZ Folio: DIN A4https://www.rfc1437.de/2005/02/28/nzz-folio-din-a4/Plattenfirmen erwägen Preiserhöhung für Musik-Downloadshttps://www.rfc1437.de/2005/02/28/plattenfirmen-erwaegen-preiserhoehung-fuer-musik/Softwarepatente: EU-Kommission weist Richtlinienneustart offiziell zurückhttps://www.rfc1437.de/2005/02/28/softwarepatente-eu-kommission-weist/speed up WordPress l10nhttps://www.rfc1437.de/2005/02/28/speed-up-wordpress-l10n/Staatliche Gen-Kontrolleure werben für Gen-Maishttps://www.rfc1437.de/2005/02/28/staatliche-gen-kontrolleure-werben-fur-gen-mais/Verkaufsplan: Bahn will Pannen-ICEs gen Österreich abschiebenhttps://www.rfc1437.de/2005/02/28/verkaufsplan-bahn-will-pannen-ices-gen/ARD-Hörfunk schaltet ARI-Verkehrsfunksystem abhttps://www.rfc1437.de/2005/02/27/ard-hoerfunk-schaltet-ari-verkehrsfunksystem-ab/Die Union und ihre angebliche Moralhttps://www.rfc1437.de/2005/02/27/die-union-und-ihre-angebliche-moral/IBM to drop Itanium supporthttps://www.rfc1437.de/2005/02/27/ibm-to-drop-itanium-support/Kommunen zocken den Bund bei Hartz IV abhttps://www.rfc1437.de/2005/02/27/kommunen-zocken-den-bund-bei-hartz-iv-ab/PL/I for GCChttps://www.rfc1437.de/2005/02/27/pl-i-for-gcc/Söder? Allerunterster politischer Bodensatz.https://www.rfc1437.de/2005/02/27/soder-allerunterster-politischer-bodensatz/Trackbacks generell moderierenhttps://www.rfc1437.de/2005/02/27/trackbacks-generell-moderieren/Koch kapiert mal wieder Demokratie nichthttps://www.rfc1437.de/2005/02/26/koch-kapiert-mal-wieder-demokratie-nicht/LetterHead Themehttps://www.rfc1437.de/2005/02/26/letterhead-theme/UNMÖGLICH - von wegen ...https://www.rfc1437.de/2005/02/26/unmoglich-von-wegen/Computerteile Rücksendungen dokumentierthttps://www.rfc1437.de/2005/02/25/computerteile-rucksendungen-dokumentiert/Disclaimerwahnsinn ...https://www.rfc1437.de/2005/02/25/disclaimerwahnsinn/Holocaust-Leugner Zündel wird ausgelieferthttps://www.rfc1437.de/2005/02/25/holocaust-leugner-zuendel-wird-ausgeliefert/Künast: Nächsten Montag geht die Richtlinie durch den Rathttps://www.rfc1437.de/2005/02/25/kunast-nachsten-montag-geht-die-richtln-drch-dn-rt/Microsoft schränkt Windows-XP-Aktivierung per Internet einhttps://www.rfc1437.de/2005/02/25/microsoft-schraenkt-windows-xp-aktivierung-per/R-Archiv - Diskussionsforen Abmahnunghttps://www.rfc1437.de/2005/02/25/r-archiv-diskussionsforen-abmahnung/Was man so in seinen Kommentaren findet ...https://www.rfc1437.de/2005/02/25/was-man-so-in-seinen-kommentaren-findet/WordPress IP to Country Pluginhttps://www.rfc1437.de/2005/02/25/wordpress-ip-to-country-plugin/BA soll Accenture bei Online-Jobbörse begünstigt habenhttps://www.rfc1437.de/2005/02/24/ba-soll-accenture-bei-online-jobborse-begnstgt-hbn/Der Elefant der Maus wird 30https://www.rfc1437.de/2005/02/24/der-elefant-der-maus-wird-30/Energiedrink für RWE - auf unsere Kostenhttps://www.rfc1437.de/2005/02/24/energiedrink-fur-rwe-auf-unsere-kosten/Künstler der Brücke in Essenhttps://www.rfc1437.de/2005/02/24/kuenstler-der-bruecke-in-essen/US-Ministerium beruft Adware-Hersteller als Datenschutz-Beraterhttps://www.rfc1437.de/2005/02/24/us-ministerium-beruft-adware-hersteller-als/Virtualisierte Server unter Linuxhttps://www.rfc1437.de/2005/02/24/virtualisierte-server-unter-linux/Vorsicht bei kostenlosen SSL-Zertifikatenhttps://www.rfc1437.de/2005/02/24/vorsicht-bei-kostenlosen-ssl-zertifikaten/A Call to Action in OASIShttps://www.rfc1437.de/2005/02/23/a-call-to-action-in-oasis/Abmahnungen für Gmail-Einladungenhttps://www.rfc1437.de/2005/02/23/abmahnungen-fur-gmail-einladungen/BA will Betreuung älterer ostdeutscher Arbeitsloser abgebenhttps://www.rfc1437.de/2005/02/23/ba-will-betreuung-aelterer-ostdeutscher/Bush in Mainzhttps://www.rfc1437.de/2005/02/23/bush-in-mainz/Dialerwahn - die nächste Phasehttps://www.rfc1437.de/2005/02/23/dialerwahn-die-nachste-phase/EU-Parlament beschließt Aus für Papierführerscheinehttps://www.rfc1437.de/2005/02/23/eu-parlament-beschliesst-aus-fuer/Freier multidimensionaler OLAP-Server für Linux angekündigthttps://www.rfc1437.de/2005/02/23/freier-multidimensionaler-olap-server-fuer-linux/Neue iPod-Modelle zu günstigeren Preisenhttps://www.rfc1437.de/2005/02/23/neue-ipod-modelle-zu-guenstigeren-preisen/Ole von Beust für einen Nordstaathttps://www.rfc1437.de/2005/02/23/ole-von-beust-fur-einen-nordstaat/Optic Nerve Cameras for the Blindhttps://www.rfc1437.de/2005/02/23/optic-nerve-cameras-for-the-blind/Plugin API for WordPresshttps://www.rfc1437.de/2005/02/23/plugin-api-for-wordpress/Spruchband zum 23.2.2005https://www.rfc1437.de/2005/02/23/spruchband-zum-2322005/T-Online die angebliche Marktführerschaft von Musicload ableitethttps://www.rfc1437.de/2005/02/23/t-online-die-angebliche-marktfuehrerschaft-von/Apache2, php5-fcgi, php4-fcgi, mod_fastcgi HowTohttps://www.rfc1437.de/2005/02/22/apache2-php5-fcgi-php4-fcgi-mod-fastcgi-howto/Apehttps://www.rfc1437.de/2005/02/22/ape/Die Schill-Partei in Hamburg löst sich aufhttps://www.rfc1437.de/2005/02/22/die-schill-partei-in-hamburg-loest-sich-auf/Fairsharing Unterschriftensammlunghttps://www.rfc1437.de/2005/02/22/fairsharing-unterschriftensammlung/FileSystemView vs. LocalFShttps://www.rfc1437.de/2005/02/22/filesystemview-vs-localfs/Leica in financial crisishttps://www.rfc1437.de/2005/02/22/leica-in-financial-crisis/Microsoft will Ungleich-Befehl für Basic erfunden habenhttps://www.rfc1437.de/2005/02/22/microsoft-will-ungleich-befehl-fuer-basic/mod_fastcgi und mod_rewritehttps://www.rfc1437.de/2005/02/22/mod-fastcgi-und-mod-rewrite/Put Your Money Where Your Mouth is ...https://www.rfc1437.de/2005/02/22/put-your-money-where-your-mouth-is/Sony steigt komplett aus dem PDA-Geschäft aushttps://www.rfc1437.de/2005/02/22/sony-steigt-komplett-aus-dem-pda-geschaeft-aus/Von Firefox wieder auf Camino ...https://www.rfc1437.de/2005/02/22/von-firefox-wieder-auf-camino/Zukünftiges Badeparadies Mars?https://www.rfc1437.de/2005/02/22/zukunftiges-badeparadies-mars/750 Stimmen ...https://www.rfc1437.de/2005/02/21/750-stimmen/Batch Categories 0.9https://www.rfc1437.de/2005/02/21/batch-categories-0-9/Brüderle droht mit antidänischen Ressentimentshttps://www.rfc1437.de/2005/02/21/bruderle-droht-mit-antidanischen-ressentiments/Entwarnung: Mozilla schaltet Umlaut-Domains nicht abhttps://www.rfc1437.de/2005/02/21/entwarnung-mozilla-schaltet-umlaut-domains-nicht/Hack a Bike - keep on hacking in a free world!https://www.rfc1437.de/2005/02/21/hack-a-bike-keep-on-hacking-in-a-free-world/Image Headlines Plugin for WordPress 1.5https://www.rfc1437.de/2005/02/21/image-headlines-plugin-for-wordpress-1-5/Knüppel zwischen die Beine geworfen bekommenhttps://www.rfc1437.de/2005/02/21/knuppel-zwischen-die-beine-geworfen-bekommen/OpenPGPComment für WordPresshttps://www.rfc1437.de/2005/02/21/openpgpcomment-fur-wordpress/Paranoia, fortgeschrittenehttps://www.rfc1437.de/2005/02/21/paranoia-fortgeschrittene/rdiff-backup und duplicityhttps://www.rfc1437.de/2005/02/21/rdiff-backup-und-duplicity/Spammer sind wirklich ziemlich blöd ...https://www.rfc1437.de/2005/02/21/spammer-sind-wirklich-ziemlich-blod/Tollwut (Rabies, Lyssa)https://www.rfc1437.de/2005/02/21/tollwut-rabies-lyssa/Apache Rivethttps://www.rfc1437.de/2005/02/20/apache-rivet/Die Wahlen in S.-H.https://www.rfc1437.de/2005/02/20/die-wahlen-in-s-h/Google-Whack: gemölter möllemannhttps://www.rfc1437.de/2005/02/20/google-whack-gemolter-mollemann/mod_dosevasivehttps://www.rfc1437.de/2005/02/20/mod-dosevasive/Red Alt - Kubrickrhttps://www.rfc1437.de/2005/02/20/red-alt-kubrickr/Terragen - Landschaftsgeneratorhttps://www.rfc1437.de/2005/02/20/terragen-landschaftsgenerator/Terragen - Landschaftsgenerator - 1https://www.rfc1437.de/2005/02/20/terragen-landschaftsgenerator-2/Terragen - Landschaftsgenerator - 2https://www.rfc1437.de/2005/02/20/terragen-landschaftsgenerator-2-2/Bei Nebenwirkungen schlagen Sie Ihren Softwarehersteller ...https://www.rfc1437.de/2005/02/19/bei-nebenwirkungen-schlagen-sie-ihren-sftwrhrstllr/Bernd das Brot als GDM Themehttps://www.rfc1437.de/2005/02/19/bernd-das-brot-als-gdm-theme/Ethical Hacking and Computer Forensics: Secret Service hacker, how did he do it?https://www.rfc1437.de/2005/02/19/ethical-hacking-and-computer-forensics-secret/Google pagerank extension for firefox and mozillahttps://www.rfc1437.de/2005/02/19/google-pagerank-extension-for-firefox-and-mozilla/HP Photosmart 8750 Printer Announcedhttps://www.rfc1437.de/2005/02/19/hp-photosmart-8750-printer-announced/heise Security - Know-how - Konsequenzen der erfolgreichen Angriffe auf SHA-1https://www.rfc1437.de/2005/02/18/heise-security-know-how-konsequenzen-der/Papst vergleicht Abtreibung mit Holocausthttps://www.rfc1437.de/2005/02/18/papst-vergleicht-abtreibung-mit-holocaust/Alternative Rewrite Ruleshttps://www.rfc1437.de/2005/02/17/alternative-rewrite-rules/Canon EF-S 60 mm F2.8 macro lenshttps://www.rfc1437.de/2005/02/17/canon-ef-s-60-mm-f2-8-macro-lens/Der Heuchler des Abends?https://www.rfc1437.de/2005/02/17/der-heuchler-des-abends/heise online - Wenn Computer-Oldies nicht mehr wollen [Update]https://www.rfc1437.de/2005/02/17/heise-online-wenn-computer-oldies-nicht-mehr/Introducing sIFR: The Healthy Alternative to Browser Texthttps://www.rfc1437.de/2005/02/17/introducing-sifr-the-healthy-alternatv-t-brwsr-txt/Technorati Plugin Betahttps://www.rfc1437.de/2005/02/17/technorati-plugin-beta/BAStats Pre-Release für WordPress 1.5https://www.rfc1437.de/2005/02/16/bastats-pre-release-fur-wordpress-15/Commodore 64 als Anzeigetafelcontrollerhttps://www.rfc1437.de/2005/02/16/commodore-64-als-anzeigetafelcontroller/Kryptoverfahren SHA-1 geknackthttps://www.rfc1437.de/2005/02/16/kryptoverfahren-sha-1-geknackt/Neues Spiel, neues Glück: b2evolutionhttps://www.rfc1437.de/2005/02/16/neues-spiel-neues-gluck-b2evolution/Nikon Face-Priority AFhttps://www.rfc1437.de/2005/02/16/nikon-face-priority-af/Positivliste soll Marketing-Mails an Spam-Filtern vorbeischleusenhttps://www.rfc1437.de/2005/02/16/positivliste-soll-marketing-mails-an-spam-filtern/sohu-search ist ein seltsamer Bothttps://www.rfc1437.de/2005/02/16/sohu-search-ist-ein-seltsamer-bot/Studie: Vioxx verdoppelte das Herzinfarkt-Risikohttps://www.rfc1437.de/2005/02/16/studie-vioxx-verdoppelte-das-herzinfarkt-risiko/Workaround for IDN Spoofing Issuehttps://www.rfc1437.de/2005/02/16/workaround-for-idn-spoofing-issue/APOD: 2005 January 21 - Metal on the Plains of Marshttps://www.rfc1437.de/2005/02/15/apod-2005-january-21-metal-on-the-plains-of-mars/Bill Gates versucht Dänemark zu erpressenhttps://www.rfc1437.de/2005/02/15/bill-gates-versucht-danemark-zu-erpressen/Brandora, R/C X-UFOhttps://www.rfc1437.de/2005/02/15/brandora-r-c-x-ufo/Die Ausbildung wird verstaatlichthttps://www.rfc1437.de/2005/02/15/die-ausbildung-wird-verstaatlicht/Fischer wird NRW-Wahlkampfthemahttps://www.rfc1437.de/2005/02/15/fischer-wird-nrw-wahlkampfthema/::: heimstatt jochen wegner - BAUER POPPE UND DIE GOOGLEISIERUNGhttps://www.rfc1437.de/2005/02/15/heimstatt-jochen-wegner-bauer-poppe-und-die/Internet Explorer 7 beta due out this summerhttps://www.rfc1437.de/2005/02/15/internet-explorer-7-beta-due-out-this-summer/junge welt vom 15.02.2005 - Hungerlohn für Nachhilfehttps://www.rfc1437.de/2005/02/15/junge-welt-vom-15-02-2005-hungerlohn-fuer/Mozilla entfernt Unterstützung für Umlaut-Domainshttps://www.rfc1437.de/2005/02/15/mozilla-entfernt-unterstutzung-fur-umlaut-domains/Neohapsis Archives - Full Disclosure List - #0258 - [Full-Disclosure] Advisory: Awstats official workaround flawhttps://www.rfc1437.de/2005/02/15/neohapsis-archives-full-disclosure-list-0258-full/News.Individual.DE ab 1.4. nicht mehr kostenloshttps://www.rfc1437.de/2005/02/15/newsindividualde-ab-14-nicht-mehr-kostenlos/PageRank Echtheit prüfenhttps://www.rfc1437.de/2005/02/15/pagerank-echtheit-prufen/phpOpenTrackerhttps://www.rfc1437.de/2005/02/15/phpopentracker/Weniger Politik für mehr GEZ-Gebühren [raben.horst]https://www.rfc1437.de/2005/02/15/weniger-politik-fur-mehr-gez-gebuhren-rabenhorst/WordPress 1.5 ist raushttps://www.rfc1437.de/2005/02/15/wordpress-15-ist-raus/Canon EOS 20Da, Japan Onlyhttps://www.rfc1437.de/2005/02/14/canon-eos-20da-japan-only/Cooperative Linuxhttps://www.rfc1437.de/2005/02/14/cooperative-linux-3/Des oanzige was zählt auf dera Welthttps://www.rfc1437.de/2005/02/14/des-oanzige-was-zahlt-auf-dera-welt/Es wirkt ein wenig wie Fluchthttps://www.rfc1437.de/2005/02/14/es-wirkt-ein-wenig-wie-flucht/Etomite Content Management Systemhttps://www.rfc1437.de/2005/02/14/etomite-content-management-system/Filter soll Internet-Filmtausch stoppenhttps://www.rfc1437.de/2005/02/14/filter-soll-internet-filmtausch-stoppen/Freitag 06 - Die Plünderer kommenhttps://www.rfc1437.de/2005/02/14/freitag-06-die-plunderer-kommen/Howstuffworks "How Van de Graaff Generators Work"https://www.rfc1437.de/2005/02/14/howstuffworks-how-van-de-graaff-generators-work/javascript:xmlhttprequest [JPSPAN]https://www.rfc1437.de/2005/02/14/javascript-xmlhttprequest-jpspan/Norweger kriminalisieren jetzt Musikbesitzerhttps://www.rfc1437.de/2005/02/14/norweger-kriminalisieren-jetzt-musikbesitzer/Sigma: 30-mm-Objektiv mit F1.4 für Digitalkamerashttps://www.rfc1437.de/2005/02/14/sigma-30-mm-objektiv-mit-f1-4-fuer-digitalkameras/Vytorin Self-Stirring Mughttps://www.rfc1437.de/2005/02/14/vytorin-self-stirring-mug/Wacom Cintiq 21UX Touch Screen Flat-Panelhttps://www.rfc1437.de/2005/02/14/wacom-cintiq-21ux-touch-screen-flat-panel/aus einer dynamischen IP-Adresse ermittelthttps://www.rfc1437.de/2005/02/13/aus-einer-dynamischen-ip-adresse-ermittelt/Aus gegebenem Anlass ...https://www.rfc1437.de/2005/02/13/aus-gegebenem-anlass/CSS und IE und Safari 1.0https://www.rfc1437.de/2005/02/13/css-und-ie-und-safari-10/Gravatars in den Kommentarenhttps://www.rfc1437.de/2005/02/13/gravatars-in-den-kommentaren/Jens Voigt räumt bei der Mittelmeer-Rundfahrt abhttps://www.rfc1437.de/2005/02/13/jens-voigt-raeumt-bei-der-mittelmeer-rundfahrt-ab/mozdev.org - conkerorhttps://www.rfc1437.de/2005/02/13/mozdevorg-conkeror/Suchmaschinenpromoter nix findenhttps://www.rfc1437.de/2005/02/13/suchmaschinenpromoter-nix-finden/Und nochmal Logfileshttps://www.rfc1437.de/2005/02/13/und-nochmal-logfiles/vermutlich verkleideter Bot in den Logshttps://www.rfc1437.de/2005/02/13/vermutlich-verkleideter-bot-in-den-logs/Was guckst du?https://www.rfc1437.de/2005/02/13/was-guckst-du/Weblog Tools Collection leidet unter Referer Spam DoShttps://www.rfc1437.de/2005/02/13/weblog-tools-collection-leidet-unter-referer-spam/CSS DropShadows erzeugthttps://www.rfc1437.de/2005/02/12/css-dropshadows-erzeugt/DGB-Chef akzeptiert Umbau des Sozialstaatshttps://www.rfc1437.de/2005/02/12/dgb-chef-akzeptiert-umbau-des-sozialstaats/Neue Polaroid 600 SEhttps://www.rfc1437.de/2005/02/12/neue-polaroid-600-se/Nicht über den Inhalt meines Weblogs wundern ...https://www.rfc1437.de/2005/02/12/nicht-uber-den-inhalt-meines-weblogs-wundern/wenn man MySQL 4.0 auf 4.1 aktualisierthttps://www.rfc1437.de/2005/02/12/wenn-man-mysql-4-0-auf-4-1-aktualisiert/WordPress Localizationhttps://www.rfc1437.de/2005/02/12/wordpress-localization/Anrufbeantworter nehmen R-Gespräche anhttps://www.rfc1437.de/2005/02/11/anrufbeantworter-nehmen-r-gespraeche-an/Microsoft Interoperabilityhttps://www.rfc1437.de/2005/02/11/microsoft-interoperability/Schilys neue Initiative für Flüchtlingslager in Afrikahttps://www.rfc1437.de/2005/02/11/schilys-neue-initiative-fur-fluchtlingslager-n-frk/Schwere Zeiten für Kofi Annanhttps://www.rfc1437.de/2005/02/11/schwere-zeiten-fuer-kofi-annan/Deep Links finden in Logfileshttps://www.rfc1437.de/2005/02/10/deep-links-finden-in-logfiles/Mach mir den Ackermannhttps://www.rfc1437.de/2005/02/10/haut-den-josef/Podcasts? Nö.https://www.rfc1437.de/2005/02/10/podcasts-no/Weiteres zu Drupalhttps://www.rfc1437.de/2005/02/10/weiteres-zu-drupal/Wordpress Dateien und Ladereihenfolgehttps://www.rfc1437.de/2005/02/10/wordpress-dateien-und-ladereihenfolge/Wordpress to Drupal Migration Scripthttps://www.rfc1437.de/2005/02/10/wordpress-to-drupal-migration-script/wp-style-switcherhttps://www.rfc1437.de/2005/02/10/wp-style-switcher/Arbeitgeber wollen neue Studienfinanzierunghttps://www.rfc1437.de/2005/02/09/arbeitgeber-wollen-neue-studienfinanzierung/Buffer Overflow in zahlreichen Produkten von Symantechttps://www.rfc1437.de/2005/02/09/buffer-overflow-in-zahlreichen-produkten-von/China: Hinrichtungen für den sozialen Frieden?https://www.rfc1437.de/2005/02/09/china-hinrichtungen-fuer-den-sozialen-frieden/Google-Suche: gemölterhttps://www.rfc1437.de/2005/02/09/google-suche-gemolter/HP-Chefin tritt überraschend zurückhttps://www.rfc1437.de/2005/02/09/hp-chefin-tritt-ueberraschend-zurueck/In Parton wurde ein Mini-Loch-Ness-Monsterhttps://www.rfc1437.de/2005/02/09/in-parton-wurde-ein-mini-loch-ness-monster/liquid design auf em/ex Basishttps://www.rfc1437.de/2005/02/09/liquid-design-auf-emex-basis/Wer hat Schuld am braunen Mann?https://www.rfc1437.de/2005/02/09/wer-hat-schuld-am-braunen-mann/Chefvolkswirt Walter liest Deutschen die Levitenhttps://www.rfc1437.de/2005/02/08/chefvolkswirt-walter-liest-deutschen-die-leviten/Die arme Filmindustrie und die Bagetellgrenzehttps://www.rfc1437.de/2005/02/08/die-arme-filmindustrie-und-die-bagetellgrenze/Don't reset existing password on request, prevent DoS password reset abuse | drupal.orghttps://www.rfc1437.de/2005/02/08/dnt-rst-xstng-psswrd-n-rqst-prvnt-ds-psswrd-rst-bs/Firefox - IDN - 0 Info - 0 Transparenzhttps://www.rfc1437.de/2005/02/08/firefox-idn-0-info-0-transparenz/Gen-Pflanzen Forschung in Münsterhttps://www.rfc1437.de/2005/02/08/gen-pflanzen-forschung-in-munster/Jupp, Drupal will mich in den Wahnsinn treibenhttps://www.rfc1437.de/2005/02/08/jupp-drupal-will-mich-in-den-wahnsinn-treiben/Manche Projekte wollen mich in den Wahnsinn treibenhttps://www.rfc1437.de/2005/02/08/manche-projekte-wollen-mich-in-den-wahnsinn-treibn/Rat der EU ignoriert Forderung des Parlamentshttps://www.rfc1437.de/2005/02/08/rat-der-eu-ignoriert-forderung-des-parlaments/Spreeblick: Sweety Recordshttps://www.rfc1437.de/2005/02/08/spreeblick-sweety-records/"Von der GPL"https://www.rfc1437.de/2005/02/08/von-der-gpl/Hartz-IV-Urban-Legendhttps://www.rfc1437.de/2005/02/07/hartz-iv-urban-legend/Microsoft erhält Patent auf Koordinaten in URLshttps://www.rfc1437.de/2005/02/07/microsoft-erhaelt-patent-auf-koordinaten-in-urls/Neuer Phishing-Angriff in vielen Web-Browsern möglichhttps://www.rfc1437.de/2005/02/07/neuer-phishing-angriff-in-vielen-web-browsrn-mglch/Smog könnte Allergien fördernhttps://www.rfc1437.de/2005/02/07/smog-koennte-allergien-foerdern/The MBROLA PROJECT HOMEPAGEhttps://www.rfc1437.de/2005/02/07/the-mbrola-project-homepage/Clement für Anhebung des Rentenaltershttps://www.rfc1437.de/2005/02/06/clement-fur-anhebung-des-rentenalters/Doing the GNUstep two-stephttps://www.rfc1437.de/2005/02/06/doing-the-gnustep-two-step/dotproject - Open Source Project and Task Management Softwarehttps://www.rfc1437.de/2005/02/06/dotproject-open-source-project-and-task/GeoURL ist wieder dahttps://www.rfc1437.de/2005/02/06/geourl-ist-wieder-da/Optimization Surpriseshttps://www.rfc1437.de/2005/02/06/optimization-surprises/Oralux: Linux für Blindehttps://www.rfc1437.de/2005/02/06/oralux-linux-fur-blinde/Spongebob promoted Schwulsein?https://www.rfc1437.de/2005/02/06/spongebob-promoted-schwulsein/Bloglines an Ask Jeeves verkaufthttps://www.rfc1437.de/2005/02/05/bloglines-an-ask-jeeves-verkauft/Bookmarklets und FireFoxhttps://www.rfc1437.de/2005/02/05/bookmarklets-und-firefox/Pentagon-"News"-Webseitenhttps://www.rfc1437.de/2005/02/05/pentagon-news-webseiten/Spammer in Vorbereitunghttps://www.rfc1437.de/2005/02/05/spammer-in-vorbereitung/Stoiber: Rot/Grün schuld am NPD-Erfolghttps://www.rfc1437.de/2005/02/05/stoiber-rotgrun-schuld-am-npd-erfolg/Tagging bei blogg.dehttps://www.rfc1437.de/2005/02/05/tagging-bei-bloggde/Und wieder mal Markenwahnsinnhttps://www.rfc1437.de/2005/02/05/und-wieder-mal-markenwahnsinn/US-Musikindustrie hat Verstorbene des Dateitauschs bezichtigthttps://www.rfc1437.de/2005/02/05/us-musikindustrie-hat-verstorbn-ds-dttschs-bzchtgt/Weiterer Todesfall in georgischer Regierunghttps://www.rfc1437.de/2005/02/05/weiterer-todesfall-in-georgischer-regierung/Bill Gates bekennt sich zur Interoperabilitäthttps://www.rfc1437.de/2005/02/04/bill-gates-bekennt-sich-zur-interoperabilitaet/Empörung über Deutsche Bankhttps://www.rfc1437.de/2005/02/04/emporung-uber-deutsche-bank/Kosmischer Streifschuss in 24 Jahrenhttps://www.rfc1437.de/2005/02/04/kosmischer-streifschuss-in-24-jahren/NZZ Online-Archiv nicht mehr frei verfügbarhttps://www.rfc1437.de/2005/02/04/nzz-online-archiv-nicht-mehr-frei-verfuegbar/Trackback Thinkinghttps://www.rfc1437.de/2005/02/04/trackback-thinking/unzureichende Zahl von Sunniten getötethttps://www.rfc1437.de/2005/02/04/unzureichende-zahl-von-sunniten-getoetet/Erster Fallout von rel="nofollow"https://www.rfc1437.de/2005/02/03/erster-fallout-von-relnofollow/fallback-reboothttps://www.rfc1437.de/2005/02/03/fallback-reboot/Gigablasthttps://www.rfc1437.de/2005/02/03/gigablast/Plötzlich und unerwartet: 25 Minuten mit Bushhttps://www.rfc1437.de/2005/02/03/ploetzlich-und-unerwartet-25-minuten-mit-bush/Softwarepatentrichtlinie: EU-Parlament verlangt Neustart des Verfahrenshttps://www.rfc1437.de/2005/02/03/softwarepatentrichtlinie-eu-parlament-verlangt/Vereinsnamen verpfänden?https://www.rfc1437.de/2005/02/03/vereinsnamen-verpfanden/Voll bekloppt: der Sherry-Einlaufhttps://www.rfc1437.de/2005/02/03/voll-bekloppt-der-sherry-einlauf/Zope.org - FileStorageBackuphttps://www.rfc1437.de/2005/02/03/zope-org-filestoragebackup/AOL aims to secure surfing with new Netscape browserhttps://www.rfc1437.de/2005/02/02/aol-aims-to-secure-surfing-with-new-netscape-brwsr/Mannesmann Prozess: Der Freispruch muss reichenhttps://www.rfc1437.de/2005/02/02/mannesmann-prozess-der-freispruch-muss-reichen/Microsoft: Fehler in Buffer-Overflow-Schutz ist keine Schwachstellehttps://www.rfc1437.de/2005/02/02/microsoft-fehler-in-buffer-overflow-schutz-ist/Nur ein Test für Anführungszeichenhttps://www.rfc1437.de/2005/02/02/nur-ein-test-fur-anfuhrungszeichen/Scharping als BDR-Präsident bewirbthttps://www.rfc1437.de/2005/02/02/scharping-als-bdr-praesident-bewirbt/schnelle kleine Webserverhttps://www.rfc1437.de/2005/02/02/schnelle-kleine-webserver/Seltsame Business-Ideen bei Providernhttps://www.rfc1437.de/2005/02/02/seltsame-business-ideen-bei-providern/Auch Affen zahlen für schöne Frauenhttps://www.rfc1437.de/2005/02/01/auch-affen-zahlen-fuer-schoene-frauen/Die Allmachtsphantastereien der Innenmisterhttps://www.rfc1437.de/2005/02/01/die-allmachtsphantastereien-der-innenmister/eAcceleratorhttps://www.rfc1437.de/2005/02/01/eaccelerator/Esser will 200.000 Euro von NRWhttps://www.rfc1437.de/2005/02/01/esser-will-200-000-euro-von-nrw/Gizmodo : Epson HX-20 Portable Computerhttps://www.rfc1437.de/2005/02/01/gizmodo-epson-hx-20-portable-computer/Heise.de wegen DDOS untenhttps://www.rfc1437.de/2005/02/01/heisede-wegen-ddos-unten/Huch? Mediazahlen im Januar ...https://www.rfc1437.de/2005/02/01/huch-mediazahlen-im-januar/IBM zieht Intel in den SCO-Fall mit reinhttps://www.rfc1437.de/2005/02/01/ibm-zieht-intel-in-den-sco-fall-mit-rein/Kanther droht Strafehttps://www.rfc1437.de/2005/02/01/kanther-droht-strafe/Kostenlose Rechtsberatung für Open-Source-Entwicklerhttps://www.rfc1437.de/2005/02/01/kostenlose-rechtsberatung-fuer-open-source/Microsoft und Macrovision wollen die "analoge Lücke" schließenhttps://www.rfc1437.de/2005/02/01/microsoft-und-macrovision-wollen-die-analoge/Nuclear Elephant: DSPAMhttps://www.rfc1437.de/2005/02/01/nuclear-elephant-dspam/Schneier on Securityhttps://www.rfc1437.de/2005/02/01/schneier-on-security/Solaris 10 steht ab sofort kostenlos zum Download bereithttps://www.rfc1437.de/2005/02/01/solaris-10-steht-ab-sofort-kostenlos-zum-download/Weg mit Trackbackhttps://www.rfc1437.de/2005/02/01/weg-mit-trackback/Interview with a link spammer | The Registerhttps://www.rfc1437.de/2005/01/31/interview-with-a-link-spammer-the-register/IT Manager's Journal | Bitter struggle to control SCO Group parent companyhttps://www.rfc1437.de/2005/01/31/it-manager-s-journal-bitter-struggle-to-control/law blog » GELD ZURÜCK VON JAMBA & CO.https://www.rfc1437.de/2005/01/31/law-blog-geld-zurueck-von-jamba-co/Orange Data Mininghttps://www.rfc1437.de/2005/01/31/orange-data-mining/phil ringnalda dot com: How do you stand it?https://www.rfc1437.de/2005/01/31/phil-ringnalda-dot-com-how-do-you-stand-it/Reihe kleiner netter Freewaretoolshttps://www.rfc1437.de/2005/01/31/reihe-kleiner-netter-freewaretools/SSH auf dem Handyhttps://www.rfc1437.de/2005/01/31/ssh-auf-dem-handy/US-Gericht: Guantanamo-Tribunale sind unrechtmäßig | tagesschau.dehttps://www.rfc1437.de/2005/01/31/us-gericht-guantanamo-tribunale-sind/WordPress Related Entries pluginhttps://www.rfc1437.de/2005/01/31/wordpress-related-entries-plugin/Bill Gates will das Internet sicherer machenhttps://www.rfc1437.de/2005/01/29/bill-gates-will-das-internet-sicherer-machen/Camera Bellows and Hoodshttps://www.rfc1437.de/2005/01/29/camera-bellows-and-hoods/Camera Bellows Restoration Trickhttps://www.rfc1437.de/2005/01/29/camera-bellows-restoration-trick/darcs - Distributed Versioninghttps://www.rfc1437.de/2005/01/29/darcs-distributed-versioning/Reprinted Repair Manualshttps://www.rfc1437.de/2005/01/29/reprinted-repair-manuals/Schüler muss wegen Computerwurms für anderthalb Jahre ins Gefängnishttps://www.rfc1437.de/2005/01/29/schueler-muss-wegen-computerwurms-fuer-anderthalb/8 Stück Winterhttps://www.rfc1437.de/2005/01/28/8-stuck-winter/8 Stück Winter - 2https://www.rfc1437.de/2005/01/28/8-stuck-winter-2/8 Stück Winter - 3https://www.rfc1437.de/2005/01/28/8-stuck-winter-3/8 Stück Winter - 4https://www.rfc1437.de/2005/01/28/8-stuck-winter-4/8 Stück Winter - 5https://www.rfc1437.de/2005/01/28/8-stuck-winter-5/8 Stück Winter - 6https://www.rfc1437.de/2005/01/28/8-stuck-winter-6/8 Stück Winter - 7https://www.rfc1437.de/2005/01/28/8-stuck-winter-7/8 Stück Winter - 8https://www.rfc1437.de/2005/01/28/8-stuck-winter-8/8 Stück Winter - 1https://www.rfc1437.de/2005/01/28/8-stuck-winter-9/"Bild" verletzt Menschenwürdehttps://www.rfc1437.de/2005/01/28/bild-verletzt-menschenwurde/fjf's (Cocoa) AbiWord for Mac (MacOSX)https://www.rfc1437.de/2005/01/28/fjf-s-cocoa-abiword-for-mac-macosx/Musikindustrie mahnt heise online wegen Bericht über Kopiersoftware abhttps://www.rfc1437.de/2005/01/28/musikindustrie-mhnt-hs-nln-wgn-brcht-br-kprsftwr-b/Tempus Fugit TxFx.net WordPress Hack: Notify Users of Moderationhttps://www.rfc1437.de/2005/01/28/tempus-fugit-txfx-net-wordpress-hack-notify-users/Blöder Spambot am Werkehttps://www.rfc1437.de/2005/01/27/bloder-spambot-am-werke/DNA-Analyse im Bundestaghttps://www.rfc1437.de/2005/01/27/dna-analyse-im-bundestag/Using the .Mac SDKhttps://www.rfc1437.de/2005/01/27/using-the-mac-sdk/Copyscape - Website Plagiarism Search - Web Site Content Copyright Protectionhttps://www.rfc1437.de/2005/01/26/copyscape-website-plagiarism-search-web-site/Keinen direkten Zugriff auf Newsgroups mehr bei AOLhttps://www.rfc1437.de/2005/01/26/keinen-direkten-zugriff-auf-newsgroups-mehr-bei/Rechtsausschuss des Bundestags stimmt gegen Softwarepatentehttps://www.rfc1437.de/2005/01/26/rechtsausschuss-des-bundestags-stmmt-ggn-sftwrptnt/SCO vs. Linux: SCO findet IBMs Code-Forderungen unzumutbarhttps://www.rfc1437.de/2005/01/26/sco-vs-linux-sco-findet-ibms-code-forderngn-nzmtbr/Verfassungsgericht hebt Verbot für Studiengebühren aufhttps://www.rfc1437.de/2005/01/26/verfassungsgericht-hebt-verbot-fur-studiengebhrn-f/WP-Questionnaire Pluginhttps://www.rfc1437.de/2005/01/26/wp-questionnaire-plugin/Zitate von Karl Valentin in Vorlesungsskripten unter Auflagen erlaubthttps://www.rfc1437.de/2005/01/26/zitate-von-karl-valentin-in-vorlesungsskripten/Aus meinen Suchmaschinenreferrernhttps://www.rfc1437.de/2005/01/25/aus-meinen-suchmaschinenreferrern/Die Abzockhilfe der Politik für die Stromerzeugerhttps://www.rfc1437.de/2005/01/25/die-abzockhilfe-der-politik-fur-die-stromerzeuger/Ein Plätzchen im Grünen?https://www.rfc1437.de/2005/01/25/ein-platzchen-im-grunen/Einstand als CDU-General - und durchgefallenhttps://www.rfc1437.de/2005/01/25/einstand-als-cdu-general-und-durchgefallen/Eric''s Archived Thoughts: WP-Gatekeeperhttps://www.rfc1437.de/2005/01/25/erics-archived-thoughts-wp-gatekeeper/FDP-Vorstellung zur Bildungspolitikhttps://www.rfc1437.de/2005/01/25/fdp-vorstellung-zur-bildungspolitik/freshmeat.net: Project details for JRubyhttps://www.rfc1437.de/2005/01/25/freshmeat-net-project-details-for-jruby/heute.de - Die ungleichen Brüderhttps://www.rfc1437.de/2005/01/25/heute-de-die-ungleichen-brueder/Internet Explorer nach Patch immer noch verwundbarhttps://www.rfc1437.de/2005/01/25/internet-explorer-nach-patch-immer-noch-verwundbar/Introducing JSONhttps://www.rfc1437.de/2005/01/25/introducing-json/JSch for J2MEhttps://www.rfc1437.de/2005/01/25/jsch-for-j2me/.: json-rpc.org :.https://www.rfc1437.de/2005/01/25/json-rpc-org/Junge Union lädt Ex-CDU-Politiker Hohmann einhttps://www.rfc1437.de/2005/01/25/junge-union-ladt-ex-cdu-politiker-hohmann-ein/Klingelton-Hitparade ab Aprilhttps://www.rfc1437.de/2005/01/25/klingelton-hitparade-ab-april/MIDI Bagpipe Rounduphttps://www.rfc1437.de/2005/01/25/midi-bagpipe-roundup/mit dem Link-Kondomhttps://www.rfc1437.de/2005/01/25/mit-dem-link-kondom/ModSecurity - Web Intrusion Detection And Prevention / mod_securityhttps://www.rfc1437.de/2005/01/25/modsecurity-web-intrusion-detection-and/MT-Blacklist -> Hijacked comments.cgihttps://www.rfc1437.de/2005/01/25/mt-blacklist-hijacked-commentscgi/Wühlmaus-Monogamiehttps://www.rfc1437.de/2005/01/25/wuhlmaus-monogamie/Asymptomatic » New “Secret” Projecthttps://www.rfc1437.de/2005/01/24/asymptomatic-new-secret-project/DNA-Debatte: Müntefering stellt sich hinter Schilyhttps://www.rfc1437.de/2005/01/24/dna-debatte-muntefering-stellt-sich-hinter-schily/Erste Winterbilderhttps://www.rfc1437.de/2005/01/24/erste-winterbilder/Erste Winterbilder - 2https://www.rfc1437.de/2005/01/24/erste-winterbilder-2/Erste Winterbilder - 1https://www.rfc1437.de/2005/01/24/erste-winterbilder-3/IT&W rekonstruiert Mac-Videohttps://www.rfc1437.de/2005/01/24/itw-rekonstruiert-mac-video/RSS 1.1 und Postals Lawhttps://www.rfc1437.de/2005/01/24/rss-11-und-postals-law/Staatsanwaltschaft wird nicht gegen NPD ermittelnhttps://www.rfc1437.de/2005/01/24/staatsanwaltschaft-wird-nicht-gegen-npd-ermitteln/Thinking Forthhttps://www.rfc1437.de/2005/01/24/thinking-forth/Audioscrobbler :: Development - Last.fm Streaming APIhttps://www.rfc1437.de/2005/01/23/audioscrobbler-development-last-fm-streaming-api/Build me money making website pleasehttps://www.rfc1437.de/2005/01/23/build-me-money-making-website-please/Python Beispiel in Frontierhttps://www.rfc1437.de/2005/01/23/python-beispiel-in-frontier/die NPD-Tiraden in Sachsenhttps://www.rfc1437.de/2005/01/22/die-npd-tiraden-in-sachsen/heise online - Hohe Geldstrafe für Studentenvertretung wegen Hyperlinkshttps://www.rfc1437.de/2005/01/22/heise-nln-hh-gldstrf-fr-stdntnvrtrtng-wgn-hyprlnks/Subwayhttps://www.rfc1437.de/2005/01/22/subway/WordPress und rel="nofollow"https://www.rfc1437.de/2005/01/22/wordpress-und-relnofollow/Die ct und das trojanische Pferdhttps://www.rfc1437.de/2005/01/21/die-ct-und-das-trojanische-pferd/MDR.DE: NPD verweigert NS- und Kriegsopfern Gedenkminutehttps://www.rfc1437.de/2005/01/21/mdrde-npd-verweigert-ns-und-kriegsopfern-gedenkmnt/Microsoft entlässt Windows-Testerhttps://www.rfc1437.de/2005/01/21/microsoft-entlaesst-windows-tester/nofollow no dohttps://www.rfc1437.de/2005/01/21/nofollow-no-do/Red Alt - WordPress Index Builderhttps://www.rfc1437.de/2005/01/21/red-alt-wordpress-index-builder/Struck will Milliarden für Rüstungsprojekte ausgebenhttps://www.rfc1437.de/2005/01/21/struck-will-milliarden-fuer-ruestungsprojekte/Virtualisierung für Desktop-Prozessorenhttps://www.rfc1437.de/2005/01/21/virtualisierung-fuer-desktop-prozessoren/Weil Gier ist Geil ...https://www.rfc1437.de/2005/01/21/weil-gier-ist-geil/WordPress : Tackling Comment Spamhttps://www.rfc1437.de/2005/01/21/wordpress-tackling-comment-spam/Der Papst und die Gummitütchenhttps://www.rfc1437.de/2005/01/20/der-papst-und-die-gummitutchen/heise online - EU-Rat will weiteren Anlauf bei Softwarepatenten wagenhttps://www.rfc1437.de/2005/01/20/heise-online-eu-rat-will-wtrn-nlf-b-sftwrptntn-wgn/Menschenverachtende Idee des Tageshttps://www.rfc1437.de/2005/01/20/menschenverachtende-idee-des-tages/Outlook zusammen mit Hotmail-Zugang zur Mietehttps://www.rfc1437.de/2005/01/20/outlook-zusammen-mit-hotmail-zugang-zur-miete/SCO vs. Linux: SCO bekommt weiteres Materialhttps://www.rfc1437.de/2005/01/20/sco-vs-linux-sco-bekommt-weiteres-material/Seltsame Haltung von Planetopiahttps://www.rfc1437.de/2005/01/20/seltsame-haltung-von-planetopia/Staatsakt für die Flutopfer im Bundestaghttps://www.rfc1437.de/2005/01/20/staatsakt-fuer-die-flutopfer-im-bundestag/Versicherungen wollen Einblick in Gentestergebnissehttps://www.rfc1437.de/2005/01/20/versicherungen-wollen-einblick-in-gentestergebniss/Beitrag 4000https://www.rfc1437.de/2005/01/19/beitrag-4000/bigempty.comhttps://www.rfc1437.de/2005/01/19/bigempty-com/Bundesgrenzschutz heißt bald Bundespolizeihttps://www.rfc1437.de/2005/01/19/bundesgrenzschutz-heisst-bald-bundespolizei/Fotos folternder Soldaten im Irak schockieren die Britenhttps://www.rfc1437.de/2005/01/19/fotos-folternder-soldaten-im-irak-schockieren-die/Got New Spam Tactic Figuredhttps://www.rfc1437.de/2005/01/19/got-new-spam-tactic-figured/Offenbar härtere Strafen für Drängler geplanthttps://www.rfc1437.de/2005/01/19/offenbar-haertere-strafen-fuer-draengler-geplant/RSS 1.1: RDF Site Summary (DRAFT)https://www.rfc1437.de/2005/01/19/rss-11-rdf-site-summary-draft/Schwarzenegger lehnt Gnadengesuch abhttps://www.rfc1437.de/2005/01/19/schwarzenegger-lehnt-gnadengesuch-ab/Sicher und anonym im Internet mit Proxyshttps://www.rfc1437.de/2005/01/19/sicher-und-anonym-im-internet-mit-proxys/Subtraction: New, Improved Original Flavor!https://www.rfc1437.de/2005/01/19/subtraction-new-improved-original-flavor/WordPress NoFollow Pluginhttps://www.rfc1437.de/2005/01/19/wordpress-nofollow-plugin/Zope Hosting and Performance - English Versionhttps://www.rfc1437.de/2005/01/19/zope-hosting-and-performance-english-version/DNA-Analysen: Bayern startet Bundesratsinitiativehttps://www.rfc1437.de/2005/01/18/dna-analysen-bayern-startet-bundesratsinitiative/Grafediahttps://www.rfc1437.de/2005/01/18/grafedia/LynuxWorks Introduces First User-Mode Linux Software for Apple PowerPC G5 Based on the Linux 2.6 Kernelhttps://www.rfc1437.de/2005/01/18/lynuxworks-introduces-first-user-mode-linux/MathWorld News: The Mathematics of Tsunamishttps://www.rfc1437.de/2005/01/18/mathworld-news-the-mathematics-of-tsunamis/Organizer Overloadhttps://www.rfc1437.de/2005/01/18/organizer-overload/QuickSilver: Act Without Doinghttps://www.rfc1437.de/2005/01/18/quicksilver-act-without-doing/Save Think Secret's Nicholas Ciarelli Petitionhttps://www.rfc1437.de/2005/01/18/save-think-secrets-nicholas-ciarelli-petition/The Temboz RSS aggregatorhttps://www.rfc1437.de/2005/01/18/the-temboz-rss-aggregator/Tötet Schnappihttps://www.rfc1437.de/2005/01/18/totet-schnappi/Working with Automatorhttps://www.rfc1437.de/2005/01/18/working-with-automator/Zope Hosting und Performancehttps://www.rfc1437.de/2005/01/18/zope-hosting-und-performance/Zyklische Dependencieshttps://www.rfc1437.de/2005/01/18/zyklische-dependencies/D Programming Languagehttps://www.rfc1437.de/2005/01/17/d-programming-language/E-Mails dürfen nicht gefiltert werdenhttps://www.rfc1437.de/2005/01/17/e-mails-durfen-nicht-gefiltert-werden/ein Code39 Barcode Generatorhttps://www.rfc1437.de/2005/01/17/ein-code39-barcode-generator/Entwicklung der Aqua-Variante von OpenOffice für Macintosh eingestellthttps://www.rfc1437.de/2005/01/17/entwicklung-der-aqua-variante-von-openoffice-fuer/Das Unwort 2004https://www.rfc1437.de/2005/01/17/ihr-unwort-2004/Nach Fahndungserfolg im Fall Moshammer: Ruf nach Ausweitung der DNA-Analyse - wdr.de - Panoramahttps://www.rfc1437.de/2005/01/17/nach-fahndungserfolg-im-fall-moshammer-ruf-nach/Planteopia - Wissenverbiegungsmagazinhttps://www.rfc1437.de/2005/01/17/planteopia-wissenverbiegungsmagazin/ChapterZero » IllustRenderhttps://www.rfc1437.de/2005/01/16/chapterzero-illustrender/Clark Dalton gestorben?https://www.rfc1437.de/2005/01/16/das-weblog-von-textlab/Kallisys | Newton | Einstein Projecthttps://www.rfc1437.de/2005/01/16/kallisys-newton-einstein-project/Loch gegen Raab: Konto gesperrt, Gerichtsvollzieher bestellthttps://www.rfc1437.de/2005/01/16/loch-gegen-raab-konto-gesperrt-gerichtsvollzieher/Longhandhttps://www.rfc1437.de/2005/01/16/longhand/MonkeyTyping - The PEAK Developers' Centerhttps://www.rfc1437.de/2005/01/16/monkeytyping-the-peak-developers-center/TextWrangler jetzt frei wie Freibierhttps://www.rfc1437.de/2005/01/16/textwrangler-jetzt-frei-wie-freibier/Using LaTeX in WordPress » LatexRender as a pluginhttps://www.rfc1437.de/2005/01/16/using-latex-in-wordpress-latexrender-as-a-plugin/Die Achse der Frommen: Lebt denn d''r alte Darwin noch?https://www.rfc1437.de/2005/01/15/die-achse-der-frommen-lebt-denn-dr-alte-darwin-nch/heise online - Huygens Countdown: The day afterhttps://www.rfc1437.de/2005/01/15/heise-online-huygens-countdown-the-day-after/Martin Schwimmer vom Trademark Blog Bloglineshttps://www.rfc1437.de/2005/01/15/martin-schwimmer-vom-trademark-blog-bloglines/Morganically Grown » MiniPosts Plugin for WordPresshttps://www.rfc1437.de/2005/01/15/morganically-grown-miniposts-plugin-for-wordpress/no status quo » RunPHP WordPress Pluginhttps://www.rfc1437.de/2005/01/15/no-status-quo-runphp-wordpress-plugin/PHP Markdownhttps://www.rfc1437.de/2005/01/15/php-markdown/argh!https://www.rfc1437.de/2005/01/14/argh/Blogs - die neue Geldmaschine?https://www.rfc1437.de/2005/01/14/blugs-d-ie-neue-geldmaschine/DNS Stuff: DNS tools, WHOIS, tracert, ping, and other network tools.https://www.rfc1437.de/2005/01/14/dns-stuff-dns-tools-whs-trcrt-png-nd-thr-ntwrk-tls/ESA - Cassini-Huygens - First image from Titanhttps://www.rfc1437.de/2005/01/14/esa-cassini-huygens-first-image-from-titan/FBI versenkt 170 Mio Dollar Software Projekthttps://www.rfc1437.de/2005/01/14/fbi-versenkt-170-mio-dollar-software-projekt/Gericht stoppt Anzeigenkampagne von Krebsarzt Rathhttps://www.rfc1437.de/2005/01/14/gericht-stoppt-anzeigenkampagne-von-krebsarzt-rath/Google bekommt Patent auf Suchbegriffhervorhebunghttps://www.rfc1437.de/2005/01/14/google-bekommt-patent-auf-suchbegriffhervorhebung/heise online - Huygens-Countdown +8h: Doch ein paar Wermutstropfenhttps://www.rfc1437.de/2005/01/14/heise-online-huygens-countdown-8h-doch-ein-paar/heise online - Neue Zürcher Zeitung digitalisiert alle Jahrgänge seit 1780https://www.rfc1437.de/2005/01/14/heise-online-neue-zuercher-zeitung-digitalisiert/Mordermittlungen: Modemacher Moshammer ist tot | tagesschau.dehttps://www.rfc1437.de/2005/01/14/mordermittlungen-modemacher-moshammer-ist-tot/PECL :: Package :: APChttps://www.rfc1437.de/2005/01/14/pecl-package-apc/Raumsonde «Huygens» sendet Datenhttps://www.rfc1437.de/2005/01/14/raumsonde-huygens-sendet-daten/Suchbegriffs Zeitgeist ist wieder dahttps://www.rfc1437.de/2005/01/14/suchbegriffs-zeitgeist-ist-wieder-da/SURBL -- Spam URI Realtime Blocklistshttps://www.rfc1437.de/2005/01/14/surbl-spam-uri-realtime-blocklists/VW-Zahlungen: Bundestagsabgeordneter tritt zurückhttps://www.rfc1437.de/2005/01/14/vw-zahlungen-bundestagsabgeordneter-tritt-zuruck/Caching für PHP Systemehttps://www.rfc1437.de/2005/01/13/caching-fur-php-systeme/Vesper gegen Ausbau von FMOhttps://www.rfc1437.de/2005/01/13/vesper-gegen-ausb-vn-flghfn-mnstrsnbrck-wdrd-vrkhr/Apple - iLifehttps://www.rfc1437.de/2005/01/12/apple-ilife/böse heimliche Vaterschaftstestshttps://www.rfc1437.de/2005/01/12/ba-bose-heimliche-vaterschaftstests/das er auch nichts von heimlichen Vaterschaftstests hälthttps://www.rfc1437.de/2005/01/12/das-er-auch-nichts-von-heimlichen/Geheime VW-Richtlinie für Zahlungen an Politiker?https://www.rfc1437.de/2005/01/12/geheime-vw-richtlinie-fur-zahlungen-an-politiker/Glossary für WordPresshttps://www.rfc1437.de/2005/01/12/glossary-fur-wordpress/heise Security - News - Aufgedeckt und angeklagthttps://www.rfc1437.de/2005/01/12/heise-security-news-aufgedeckt-und-angeklagt/Kommentarspamhttps://www.rfc1437.de/2005/01/12/kommentarspam/Noch ein sinnvolles Urteilhttps://www.rfc1437.de/2005/01/12/noch-ein-sinnvolles-urteil/Rund und gesund: Jan Ullrich auf Mallorcahttps://www.rfc1437.de/2005/01/12/rund-und-gesund-jan-ullrich-auf-mallorca/Second p0st: cElementTreehttps://www.rfc1437.de/2005/01/12/second-p0st-celementtree/symbolics.com ist die älteste noch registrierte Domainhttps://www.rfc1437.de/2005/01/12/symbolics-com-ist-die-aelteste-noch-registrierte/Und mal wieder Handy-Krampfhttps://www.rfc1437.de/2005/01/12/und-mal-wieder-handy-krampf/Wired News: Verizon''s E-Mail Embargo Enrageshttps://www.rfc1437.de/2005/01/12/wired-news-verizons-e-mail-embargo-enrages/Andere Apple-Neuigkeitenhttps://www.rfc1437.de/2005/01/11/andere-apple-neuigkeiten/Apple - Mac minihttps://www.rfc1437.de/2005/01/11/apple-mac-mini/dirtSimple.org: CLOS-style Method Combination for Generic Functionshttps://www.rfc1437.de/2005/01/11/dirtsimpleorg-clos-styl-mthd-cmbntn-fr-gnrc-fnctns/IBM on Software Patentshttps://www.rfc1437.de/2005/01/11/ibm-on-software-patents/Creative Communistshttps://www.rfc1437.de/2005/01/10/creative-communists/Friendly Fuedalism - The Tibet Mythhttps://www.rfc1437.de/2005/01/10/friendly-fuedalism-the-tibet-myth/Liste von Domainregistries für verschiedene Topleveldomainshttps://www.rfc1437.de/2005/01/10/liste-von-domainregistries-fuer-verschiedene/Mile-high Konto [zeitwissen:log]https://www.rfc1437.de/2005/01/10/mile-high-konto-zeitwissenlog/:: t e k t o n i c a ::https://www.rfc1437.de/2005/01/10/t-e-k-t-o-n-i-c-a-2/Canned !! -- my Atropine » iG:Syntax Hiliterhttps://www.rfc1437.de/2005/01/09/canned-my-atropine-ig-syntax-hiliter/. clare fader & the vaudevillains . cabaret for the 21st century .https://www.rfc1437.de/2005/01/09/clare-fader-the-vaudevillans-cbrt-fr-th-21st-cntry/doom3.jpg (JPEG Image, 800x600 pixels)https://www.rfc1437.de/2005/01/09/doom3jpg-jpeg-image-800x600-pixels/GeSHi - Generic Syntax Highlighter :: Homehttps://www.rfc1437.de/2005/01/09/geshi-generic-syntax-highlighter-home/hobix&you!! feel yeah!!https://www.rfc1437.de/2005/01/09/hobixyou-feel-yeah/kasia in a nutshell: Spam breeds more spamhttps://www.rfc1437.de/2005/01/09/kasia-in-a-nutshell-spam-breeds-more-spam/Linux: Tuning The Kernel With A Genetic Algorithmhttps://www.rfc1437.de/2005/01/09/linux-tuning-the-kernel-with-a-genetic-algorithm/N Korea wages war on long hairhttps://www.rfc1437.de/2005/01/09/n-korea-wages-war-on-long-hair/sYp » Syntax Highlighting with Enscript in WordPresshttps://www.rfc1437.de/2005/01/09/syp-syntax-highlighting-with-enscript-in-wordpress/Test für das Syntax-Highlightinghttps://www.rfc1437.de/2005/01/09/test-fur-das-syntax-highlighting/Validierung von Wordpress Postings und Kommentarehttps://www.rfc1437.de/2005/01/09/validierung-von-wordpress-postings-und-kommentare/Wonkohttps://www.rfc1437.de/2005/01/09/wonko/Clement rechnet mit 20 Prozent weniger Arbeitslosenhttps://www.rfc1437.de/2005/01/08/clement-rechnet-mit-20-prozent-weniger-arbeitslosn/Plugins/Staticize « WordPress Codexhttps://www.rfc1437.de/2005/01/08/plugins-staticize-wordpress-codex/Steves Digicams - Konica Minolta MAXXUM 7D - User Reviewhttps://www.rfc1437.de/2005/01/08/steves-digicams-konica-minolta-maxxum-7d-user-revw/Was ist denn hier passiert?https://www.rfc1437.de/2005/01/08/was-ist-denn-hier-passiert/Grüne gegen Verbot heimlicher Vaterschaftstestshttps://www.rfc1437.de/2005/01/07/gruene-gegen-verbot-heimlicher-vaterschaftstests/Heftige Kritik an Meisners Vergleichhttps://www.rfc1437.de/2005/01/07/heftige-kritik-an-meisners-vergleich/Optional Static Typing -- Stop the Flames!https://www.rfc1437.de/2005/01/07/optional-static-typing-stop-the-flames/Probleme mit Firefox und Thunderbird auf OS X 10.2https://www.rfc1437.de/2005/01/07/probleme-mit-firefox-und-thunderbird-auf-os-x-102/QEMU CPU Emulatorhttps://www.rfc1437.de/2005/01/07/qemu-cpu-emulator/RBL Prüfungsseiten für viele RBLs auf einmalhttps://www.rfc1437.de/2005/01/07/rbl-pruefungsseiten-fuer-viele-rbls-auf-einmal/The Implementation of Functional Programming Languageshttps://www.rfc1437.de/2005/01/07/the-implementation-of-functional-programming-lnggs/Flying Meat: VoodooPadhttps://www.rfc1437.de/2005/01/06/flying-meat-voodoopad/Gaspreise steigen wohl noch weiterhttps://www.rfc1437.de/2005/01/06/gaspreise-steigen-wohl-noch-weiter/Kayak mit Walhttps://www.rfc1437.de/2005/01/06/kayak-mit-wal/KODAK EASYSHARE-ONE Zoom Digital Camerahttps://www.rfc1437.de/2005/01/06/kodak-easyshare-one-zoom-digital-camera/NPD-Funktionäre bei Gewalttaten gefilmthttps://www.rfc1437.de/2005/01/06/npd-funktionaere-bei-gewalttaten-gefilmt/Staatsanwalt: Dominik starb an Krebshttps://www.rfc1437.de/2005/01/06/staatsanwalt-dominik-starb-an-krebs/First Animation of the World Found In Burnt Cityhttps://www.rfc1437.de/2005/01/05/first-animation-of-the-world-found-in-burnt-city/LXer: RANT_MODE=1: Current generation shells -- Will Microsoft Ever Fill The Needs of the Enter ...https://www.rfc1437.de/2005/01/05/lxr-rnt-md1-crrnt-gnrtn-shlls-wll-mcrsft-vr-fll-th/Modal Web Server Example Part 1https://www.rfc1437.de/2005/01/05/modal-web-server-example-part-1/Shutting Down the GPS Networkhttps://www.rfc1437.de/2005/01/05/shutting-down-the-gps-network/Ukraine: Janukowitsch klagt erneut gegen Wahlergebnishttps://www.rfc1437.de/2005/01/05/ukraine-janukowitsch-klagt-erneut-gegen-wahlergbns/Aquariumhttps://www.rfc1437.de/2005/01/04/aquarium/Borges Homehttps://www.rfc1437.de/2005/01/04/borges-home/BottomFeeder - Cross-platform RSS/Atom News Aggregatorhttps://www.rfc1437.de/2005/01/04/bottomfeeder-cross-platform-rss-atom-news/Continuations mit Pythonhttps://www.rfc1437.de/2005/01/04/continuations-mit-python/Glorp.orghttps://www.rfc1437.de/2005/01/04/glorp-org/smart stuffhttps://www.rfc1437.de/2005/01/04/smart-stuff/appscripthttps://www.rfc1437.de/2005/01/03/appscript-2/Corgis lassen Queen sanft fallenhttps://www.rfc1437.de/2005/01/03/corgis-lassen-queen-sanft-fallen/Easy-to-Remember PINshttps://www.rfc1437.de/2005/01/03/easy-to-remember-pins/Lebenslange Haft für Terrorverdächtige?https://www.rfc1437.de/2005/01/03/lebenslange-haft-fuer-terrorverdaechtige/pikabellechu: Yes I am a PikaHolic and Proud of It...https://www.rfc1437.de/2005/01/03/pikabellechu-yes-i-am-a-pikaholic-and-proud-of-it/Sicherheitrisiken in 2005https://www.rfc1437.de/2005/01/03/sicherheitrisiken-in-2005/Springer hetzt (mal wieder)https://www.rfc1437.de/2005/01/03/springer-hetzt-mal-wieder/CincomSmalltalkWiki: Seaside Tutorialhttps://www.rfc1437.de/2005/01/02/cincomsmalltalkwiki-seaside-tutorial/Impostorhttps://www.rfc1437.de/2005/01/02/impostor/Lisa Appshttps://www.rfc1437.de/2005/01/02/lisa-apps/Lisa wird Zweiundzwanzighttps://www.rfc1437.de/2005/01/02/lisa-wird-zweiundzwanzig/Revision 8033: /user/arigo/greenlethttps://www.rfc1437.de/2005/01/02/revision-8033-user-arigo-greenlet/VisualWorks: StORE for PostgreSQL Documentationhttps://www.rfc1437.de/2005/01/02/visualworks-store-for-postgresql-documentation/PNGCRUSHhttps://www.rfc1437.de/2005/01/01/pngcrush/ASPN : Python Cookbook : A meta-class that provides class behavior like Rubyhttps://www.rfc1437.de/2004/12/31/aspn-python-cookbook-a-meta-class-that-provides/Gus Mueller's Websitehttps://www.rfc1437.de/2004/12/31/gus-mueller-s-website/recondite: You don''t tug on Superman''s cape...https://www.rfc1437.de/2004/12/31/recondite-you-don-t-tug-on-superman-s-cape/Ukraine: Janukowitsch gibt aufhttps://www.rfc1437.de/2004/12/31/ukraine-janukowitsch-gibt-auf/Wem gehört der Bundestag?https://www.rfc1437.de/2004/12/31/wem-gehoert-der-bundestag/Hartz IV: GAU bei der Arbeitslosengeld-II-Zahlung [Update]https://www.rfc1437.de/2004/12/30/hartz-iv-gau-bei-der-arbeitslosengeld-ii-zhlng-pdt/Hilfsmaßnahmen: Es droht Streit zwischen Uno und USAhttps://www.rfc1437.de/2004/12/30/hilfsmassnahmen-es-droht-streit-zwischen-uno-und-s/Seebeben verschob die Erdachsehttps://www.rfc1437.de/2004/12/30/seebeben-verschob-die-erdachse/Kyocera Discontinues Some 35mm Film Productshttps://www.rfc1437.de/2004/12/29/kyocera-discontinues-some-35mm-film-products/Logilab.org - Aspects documentationhttps://www.rfc1437.de/2004/12/28/logilab-org-aspects-documentation/TVO: The Vim Outlinerhttps://www.rfc1437.de/2004/12/28/tvo-the-vim-outliner/Alice - funktionale Sprache und Umgebunghttps://www.rfc1437.de/2004/12/27/alice-funktionale-sprache-und-umgebung/Codewalker für Pytonhttps://www.rfc1437.de/2004/12/27/codewalker-fuer-pyton/dirtSimple.org: More forward-chaining twistshttps://www.rfc1437.de/2004/12/27/dirtsimpleorg-more-forward-chaining-twists/Südasienhttps://www.rfc1437.de/2004/12/27/suedasien/The Graphing Calculator Storyhttps://www.rfc1437.de/2004/12/27/the-graphing-calculator-story/Xoltar Python Pagehttps://www.rfc1437.de/2004/12/27/xoltar-python-page-2/Python is a weakly typed language, which as any experienced Python programmer knows has both good and bad pointshttps://www.rfc1437.de/2004/12/26/python-is-a-weakly-typed-language-which-as-any/Seebeben tötet tausende Menschen in Südostasienhttps://www.rfc1437.de/2004/12/26/seebeben-toetet-tausende-menschen-in-suedostasien/Snurf: a Python-based Blogging Systemhttps://www.rfc1437.de/2004/12/26/snurf-a-python-based-blogging-system/Verzögerte Ausführung mit Pythonhttps://www.rfc1437.de/2004/12/26/story-verzoegerte-ausfuehrung-mit-python/Verzögerte Ausführung mit Pythonhttps://www.rfc1437.de/2004/12/26/verzoegerte-ausfuehrung-mit-python/Brian Mastenbrook: Forth pornhttps://www.rfc1437.de/2004/12/25/brian-mastenbrook-forth-porn/Erfolgreiche Trennung von Cassini und Huygenshttps://www.rfc1437.de/2004/12/25/erfolgreiche-trennung-von-cassini-und-huygens/Charming Python: Implementing "weightless threads" with Python generatorshttps://www.rfc1437.de/2004/12/24/charming-python-implementing-weightless-threads/Contracts for Pythonhttps://www.rfc1437.de/2004/12/24/contracts-for-python/Fotos erhärten Misshandlungen bei der Bundeswehrhttps://www.rfc1437.de/2004/12/24/fotos-erhaerten-misshandlungen-bei-der-bundeswehr/Microsoft attempts to patent object persistencehttps://www.rfc1437.de/2004/12/24/microsoft-attempts-to-patent-object-persistence/Adding Optional Static Typing to Pythonhttps://www.rfc1437.de/2004/12/23/adding-optional-static-typing-to-python/Asteroid in unmittelbarer Erdnähe entdeckthttps://www.rfc1437.de/2004/12/23/asteroid-in-unmittelbarer-erdnaehe-entdeckt/Der »Danke Polen!«-Briefhttps://www.rfc1437.de/2004/12/23/der-danke-polen-brief/eBay konnte Passwortklau nicht verhindernhttps://www.rfc1437.de/2004/12/23/ebay-konnte-passwortklau-nicht-verhindern/Siemens-Chef kündigt schmerzhafte Einschnitte in Kommunikationssparte anhttps://www.rfc1437.de/2004/12/23/simns-chf-kndgt-schmrzhft-nschntt-n-kmmnktnssprt-n/Why's (Poignant) Guide to Rubyhttps://www.rfc1437.de/2004/12/23/whys-poignant-guide-to-ruby/Alles neu für OS/2https://www.rfc1437.de/2004/12/22/alles-neu-fuer-os2/Bellhop 1.0.1b4https://www.rfc1437.de/2004/12/22/bellhop-101b4/Cadmium-Akkus künftig (teilweise) verbotenhttps://www.rfc1437.de/2004/12/22/cadmium-akkus-kuenftig-teilweise-verboten/Deutsche WordPress Communityhttps://www.rfc1437.de/2004/12/22/deutsche-wordpress-community/EFF & TORhttps://www.rfc1437.de/2004/12/22/eff-tor/EU-Gerichtspräsident bestätigt Sanktionen gegen Microsoft [Update]https://www.rfc1437.de/2004/12/22/eu-gerichtspraesident-bsttgt-snktnn-ggn-mcrsft-pdt/IRC, identd und Privacyhttps://www.rfc1437.de/2004/12/22/irc-identd-und-privacy/Kartellamt leitet Untersuchung gegen Gasversorger einhttps://www.rfc1437.de/2004/12/22/kartellamt-leitet-untersuchung-gegen-gasversorgr-n/Kein Ende bei Kopierschutz-Abmahnwelle in Sichthttps://www.rfc1437.de/2004/12/22/kein-ende-bei-kopierschutz-abmahnwelle-in-sicht/Larry Hagman über ein hysterisches Landhttps://www.rfc1437.de/2004/12/22/larry-hagman-ueber-ein-hysterisches-land/Laurenz Meyer tritt zurückhttps://www.rfc1437.de/2004/12/22/laurenz-meyer-tritt-zurueck/NeolithicOffice/J: OpenOffice deriavative for OS Xhttps://www.rfc1437.de/2004/12/22/neolithicofficej-openoffice-deriavative-for-os-x/Paolo Amoroso: McCLIM works with CLISPhttps://www.rfc1437.de/2004/12/22/paolo-amoroso-mcclim-works-with-clisp/Pornobilder auf Polizeicomputernhttps://www.rfc1437.de/2004/12/22/pornobilder-auf-polizeicomputern/SCO vs. Linux: Die Achterbahn ist ein schlechtes Geschäfthttps://www.rfc1437.de/2004/12/22/sco-vs-linux-die-achterbahn-ist-en-schlchts-gschft/Ann: Revival of the BytecodeHackshttps://www.rfc1437.de/2004/12/21/ann-revival-of-the-bytecodehacks/...raus aus den Kartoffeln: Softwarepatente vertagthttps://www.rfc1437.de/2004/12/21/raus-aus-den-kartoffeln-softwarepatente-vertagt/Enzensberger stellt seine "Andere Bibliothek" einhttps://www.rfc1437.de/2004/12/20/enzensberger-stellt-seine-andere-bibliothek-ein/LG Hamburg: Top Level Domain .at ohne Bezug zu Österreichhttps://www.rfc1437.de/2004/12/20/lg-hamburg-top-level-domain-at-ohne-bezug-z-strrch/SnakeSQL -- Pure Python SQL database supporting NULLs and Joinshttps://www.rfc1437.de/2004/12/20/snakesql-pure-python-sql-datbs-spprtng-nlls-nd-jns/Brian Mastenbrook: Old Newshttps://www.rfc1437.de/2004/12/19/brian-mastenbrook-old-news/No Software Patentshttps://www.rfc1437.de/2004/12/19/no-software-patents/ReportLab - PyRXPhttps://www.rfc1437.de/2004/12/19/reportlab-pyrxp/GNU Development Tools for the Renesas H8/300[HS] Serieshttps://www.rfc1437.de/2004/12/18/gnu-development-tools-for-the-renesas-h8-300-hs/Lego-Mindstorms Simulatorhttps://www.rfc1437.de/2004/12/18/lego-mindstorms-simulator/Noch ein Update: wie man rcxcomm auch mit OS X 10.2 zum Laufen kriegthttps://www.rfc1437.de/2004/12/18/noch-ein-pdt-w-mn-rcxcmm-ch-mt-s-x-102-zm-lfn-krgt/The leJOS Tutorialhttps://www.rfc1437.de/2004/12/18/the-lejos-tutorial/Update zur Mindstorms-System-Übersichthttps://www.rfc1437.de/2004/12/18/update-zur-mindstorms-system-uebersicht/XS: Lisp on Lego MindStormshttps://www.rfc1437.de/2004/12/18/xs-lisp-on-lego-mindstorms/Spitzenjuristen unter Meineidsverdachthttps://www.rfc1437.de/2004/12/17/spitzenjuristen-unter-meineidsverdacht/Datenschützer: Sicherheitslücken bei Steuersoftwarehttps://www.rfc1437.de/2004/12/16/datenschuetzer-sicherheitsluecken-bei-steuersoftwr/Deutsche Musik: Rot-Grün setzt sich für Radioquote ein - Kultur - SPIEGEL ONLINEhttps://www.rfc1437.de/2004/12/16/detsch-msk-rt-grn-stzt-sch-fr-rdqt-n-kltr-spgl-nln/Energiekonzerne verteidigen Erdgaspreisehttps://www.rfc1437.de/2004/12/16/energiekonzerne-verteidigen-erdgaspreise/GadflyB5: SQL Relational Database in Pythonhttps://www.rfc1437.de/2004/12/16/gadflyb5-sql-relational-database-in-python/Hessen dehnt Polizeibefugnisse deutlich aushttps://www.rfc1437.de/2004/12/16/hessen-dehnt-polizeibefugnisse-deutlich-aus/Signal auf Grün für Softwarepatentrichtlinie des EU-Rateshttps://www.rfc1437.de/2004/12/16/signal-auf-gruen-fuer-softwarepatentrchtln-ds-rts/Rot-Grün macht Ernst mit dem Akteneinsichtsrechthttps://www.rfc1437.de/2004/12/15/rot-gruen-macht-ernst-mit-dem-akteneinsichtsrecht/Al Qaida, Ku-Klux-Klan - und PDShttps://www.rfc1437.de/2004/12/14/al-qaida-ku-klux-klan-und-pds/Barebones pure-Python PostgreSQL clienthttps://www.rfc1437.de/2004/12/14/barebones-pure-python-postgresql-client/Captchahttps://www.rfc1437.de/2004/12/14/captcha/Hamsterfrage? Höhn hat eine Antworthttps://www.rfc1437.de/2004/12/14/hamsterfrage-hoehn-hat-eine-antwort/Pirates Response to DreamWorkshttps://www.rfc1437.de/2004/12/14/pirates-response-to-dreamworks/REgurgitatehttps://www.rfc1437.de/2004/12/14/regurgitate/StupidSheethttps://www.rfc1437.de/2004/12/14/stupidsheet/The Daily Whim: MT Plus Comment Spam Equals Dead Sitehttps://www.rfc1437.de/2004/12/14/the-daily-whim-mt-plus-comment-spam-equals-dead-st/US-Filmindustrie will gegen BitTorrent vorgehenhttps://www.rfc1437.de/2004/12/14/us-filmindustrie-will-gegen-bittorrent-vorgehen/Who says safe computing must remain a pipe dream?https://www.rfc1437.de/2004/12/14/who-says-safe-computing-must-remain-a-pipe-dream/Duales System wechselt Besitzerhttps://www.rfc1437.de/2004/12/13/duales-system-wechselt-besitzer/BBC NEWS | Europe | Ukraine candidate 'was poisoned'https://www.rfc1437.de/2004/12/12/bbc-news-europe-ukraine-candidate-was-poisoned/Dive Into Accessibilityhttps://www.rfc1437.de/2004/12/12/dive-into-accessibility/gb - CIAhttps://www.rfc1437.de/2004/12/12/gb-cia/Languages for the Java VMhttps://www.rfc1437.de/2004/12/12/languages-for-the-java-vm/PyX - Python graphics packagehttps://www.rfc1437.de/2004/12/12/pyx-python-graphics-package/SLAVEGROOVEhttps://www.rfc1437.de/2004/12/12/slavegroove/Bill Clementson: LispWorks 4.4 releasedhttps://www.rfc1437.de/2004/12/10/bill-clementson-lispworks-44-released/Durushttps://www.rfc1437.de/2004/12/10/durus/Statement coverage for Pythonhttps://www.rfc1437.de/2004/12/10/statement-coverage-for-python/Australien: Umstrittenes Hilfsprogramm für Aborigineshttps://www.rfc1437.de/2004/12/09/australien-umstrittenes-hilfsprogramm-fuer-aborgns/Bundeswehr: Struck meldet neue Misshandlungsfällehttps://www.rfc1437.de/2004/12/09/bundeswehr-struck-meldet-neue-misshandlungsfaelle/Folter-Androhung: Staatsanwalt fordert Geldstrafe für Daschnerhttps://www.rfc1437.de/2004/12/09/folter-androhung-statsnwlt-frdrt-gldstrf-fr-dschnr/Galaktisches Baby vor unserer kosmischen Haustürhttps://www.rfc1437.de/2004/12/09/galaktisches-baby-vor-unserer-kosmischen-haustuer/IPython - An enhanced Interactive Pythonhttps://www.rfc1437.de/2004/12/09/ipython-an-enhanced-interactive-python/Logix Homehttps://www.rfc1437.de/2004/12/09/logix-home/Pakete und Päckchen werden teurerhttps://www.rfc1437.de/2004/12/09/pakete-und-paeckchen-werden-teurer/Sensation in Münster: Säugetier entdeckthttps://www.rfc1437.de/2004/12/09/sensation-in-muenster-saeugetier-entdeckt/Vermittlungsausschuss: Stiegler droht mit Alleinganghttps://www.rfc1437.de/2004/12/09/vermittlungsausschuss-stiegler-droht-mit-alleingng/xmltramp: Make XML documents easily accessible.https://www.rfc1437.de/2004/12/09/xmltramp-make-xml-documents-easily-accessible/RDFLib 2.0.4 Readmehttps://www.rfc1437.de/2004/12/08/rdflib-2-0-4-readme/Ein Lisp-Comic der Makros erklärthttps://www.rfc1437.de/2004/12/07/ein-lisp-comic-der-makros-erklaert/TP: Wahlbetrug in Florida?https://www.rfc1437.de/2004/12/07/tp-wahlbetrug-in-florida/CDU-Parteitag billigt Gesundheitskompromisshttps://www.rfc1437.de/2004/12/06/cdu-parteitag-billigt-gesundheitskompromiss/Knuth: Open Letter to Condolezza Ricehttps://www.rfc1437.de/2004/12/06/knuth-open-letter-to-condolezza-rice/Mal was entgegen dem XML-Hypehttps://www.rfc1437.de/2004/12/06/mal-was-entgegen-dem-xml-hype/Nur 88,41 Prozent für Merkelhttps://www.rfc1437.de/2004/12/06/nur-8841-prozent-fuer-merkel/Language-Independent Types for YAMLhttps://www.rfc1437.de/2004/12/05/language-independent-types-for-yaml/Pixeloghttps://www.rfc1437.de/2004/12/05/pixelog/ASPN : Python Cookbook : Spreadsheethttps://www.rfc1437.de/2004/12/04/aspn-python-cookbook-spreadsheet/E.ON und RWE wollen Strompreise erhöhenhttps://www.rfc1437.de/2004/12/04/eon-und-rwe-wollen-strompreise-erhoehen/Bundesgerichtshof spricht Urteil zu Domain-Grabbinghttps://www.rfc1437.de/2004/12/03/bundesgerichtshof-spricht-urteil-zu-domain-grabbng/Living Codehttps://www.rfc1437.de/2004/12/03/living-code/M-Audio Ozonic Keyboard and FireWire Interfacehttps://www.rfc1437.de/2004/12/03/m-audio-ozonic-keyboard-and-firewire-interface/Renaissancehttps://www.rfc1437.de/2004/12/03/renaissance/SCO vs. Linux: Eine journalistische Offenbarunghttps://www.rfc1437.de/2004/12/03/sco-vs-linux-eine-journalistische-offenbarung/Pyco - Tiny Python Distributionshttps://www.rfc1437.de/2004/12/02/pyco-tiny-python-distributions/Lasso - Soukhttps://www.rfc1437.de/2004/12/01/lasso-souk/Filmstiftung ehrt Künstler und Kinoshttps://www.rfc1437.de/2004/11/30/filmstiftung-ehrt-kuenstler-und-kinos/Module Pycamlhttps://www.rfc1437.de/2004/11/30/module-pycaml/Python 2.4https://www.rfc1437.de/2004/11/30/python-24/Auf Saturnmond Titan zielen und ... loslassenhttps://www.rfc1437.de/2004/11/29/auf-saturnmond-titan-zielen-und-loslassen/Ooopshttps://www.rfc1437.de/2004/11/29/ooops/Pro-Linux News: Daffodil Replicator wird freie Softwarehttps://www.rfc1437.de/2004/11/29/pro-linux-news-daffodil-replicator-wird-freie/Python Packages Index: pyDB2 0.996ahttps://www.rfc1437.de/2004/11/29/python-packages-index-pydb2-0-996a/Debatte über Integration neu entfachthttps://www.rfc1437.de/2004/11/28/debatte-ueber-integration-neu-entfacht/Fangs: The Firefox Screen Reader Emulator Extension - Standards-schmandardshttps://www.rfc1437.de/2004/11/28/fngs-th-frfx-scrn-rdr-mltr-xtnsn-stndrds-schmndrds/tsearch-v2-introhttps://www.rfc1437.de/2004/11/28/tsearch-v2-intro/Tsearch2 - full text extension for PostgreSQLhttps://www.rfc1437.de/2004/11/28/tsearch2-full-text-extension-for-postgresql/Aldipod bei Heisehttps://www.rfc1437.de/2004/11/27/aldipod-bei-heise/Luminous Landscape field test the R-D1https://www.rfc1437.de/2004/11/27/luminous-landscape-field-test-the-r-d1/Noch son Projekt in Pythonhttps://www.rfc1437.de/2004/11/27/noch-son-projekt-in-python/Toolserver Framework for Python - Folienhttps://www.rfc1437.de/2004/11/27/toolserver-framework-for-python-folien/Eine halbe Million Euro Strafe für Prinz Ernst Augusthttps://www.rfc1437.de/2004/11/26/eine-halbe-million-euro-strafe-fuer-prinz-rnst-gst/Großer Lauschangriff auf den Internet Relay Chathttps://www.rfc1437.de/2004/11/26/grosser-lauschangriff-auf-den-internet-relay-chat/Kritik an Vorschlägen der ITU zur Netzverwaltunghttps://www.rfc1437.de/2004/11/26/kritik-an-vorschlaegen-der-itu-zur-netzverwaltung/NRW-FDP: Der Pleite-Generalhttps://www.rfc1437.de/2004/11/25/nrw-fdp-der-pleite-general/SimpleTALhttps://www.rfc1437.de/2004/11/25/simpletal-2/Bankomat als Spielkonsole!https://www.rfc1437.de/2004/11/23/bankomat-als-spielkonsole/Infinity-to-the-Power-of-Infinityhttps://www.rfc1437.de/2004/11/23/infinity-to-the-power-of-infinity/Lücke in Suns Java Plug-ins gewährt Zugriff auf das Systemhttps://www.rfc1437.de/2004/11/23/luecke-in-suns-java-plug-ns-gwhrt-zgrff-f-ds-systm/VW zahlt wohl wieder keine Gewerbesteuerhttps://www.rfc1437.de/2004/11/23/vw-zahlt-wohl-wieder-keine-gewerbesteuer/ADAC warnt vor Leichtmobilenhttps://www.rfc1437.de/2004/11/22/adac-warnt-vor-leichtmobilen/Digital Lumber, Inc.https://www.rfc1437.de/2004/11/22/digital-lumber-inc/Patents Should Meet BASIC Tests of Reasonhttps://www.rfc1437.de/2004/11/22/patents-should-meet-basic-tests-of-reason/pyeBay - Use the eBay API from Pythonhttps://www.rfc1437.de/2004/11/22/pyebay-use-the-ebay-api-from-python/Python IAQ: Infrequently Answered Questionshttps://www.rfc1437.de/2004/11/22/python-iaq-infrequently-answered-questions/Schrempps Luxus-Mercedes gestohlenhttps://www.rfc1437.de/2004/11/22/schrempps-luxus-mercedes-gestohlen/Seehofer tritt als Fraktionsvize zurückhttps://www.rfc1437.de/2004/11/22/seehofer-tritt-als-fraktionsvize-zurueck/Slate Language Websitehttps://www.rfc1437.de/2004/11/22/slate-language-website-2/Solar Powered iPod Backuphttps://www.rfc1437.de/2004/11/22/solar-powered-ipod-backup/The Curl Projecthttps://www.rfc1437.de/2004/11/22/the-curl-project/Water -- Waterlanguage.orghttps://www.rfc1437.de/2004/11/22/water-waterlanguageorg/Welcome to read4me project pagehttps://www.rfc1437.de/2004/11/22/welcome-to-read4me-project-page/wxPython and wxGlade Tutorialhttps://www.rfc1437.de/2004/11/22/wxpython-and-wxglade-tutorial/2Entwine | FotoBuzz Viewlethttps://www.rfc1437.de/2004/11/21/2entwine-fotobuzz-viewlet/Arachne GPL 1.73 WWW Browser (glennmcc)https://www.rfc1437.de/2004/11/21/arachne-gpl-1-73-www-browser-glennmcc/Bundeswehr-Rekruten angeblich mit Stromstößen gequälthttps://www.rfc1437.de/2004/11/21/bundeswehr-rekruten-angeblich-mit-stromstossn-gqlt/"DOS Solutions"https://www.rfc1437.de/2004/11/21/dos-solutions/Download Actahttps://www.rfc1437.de/2004/11/21/download-acta/ONLamp.com: Introducing Slonyhttps://www.rfc1437.de/2004/11/21/onlamp-com-introducing-slony/Reader-Submitted: Are You an Internet Porn Addict? Congress to Your Rescue!https://www.rfc1437.de/2004/11/21/reader-sbmttd-r-y-n-ntrnt-prn-ddct-cngrss-t-yr-rsc/Microsoft: Angeblicher Soundforge-Crack ein "Platzhalter"https://www.rfc1437.de/2004/11/19/microsoft-angeblicher-soundforge-crack-en-pltzhltr/Siemens-Chef: Euro-Hoch ist ein Problemhttps://www.rfc1437.de/2004/11/19/siemens-chef-euro-hoch-ist-ein-problem/Vorschlag zur Gütehttps://www.rfc1437.de/2004/11/19/vorschlag-zur-guumlte/What's New in Python 2.4https://www.rfc1437.de/2004/11/19/whats-new-in-python-24/CSU: Seehofer bleibt Vize in Partei und Fraktionhttps://www.rfc1437.de/2004/11/18/csu-seehofer-bleibt-vize-in-partei-und-fraktion/Gopher: offlineimaphttps://www.rfc1437.de/2004/11/18/gopher-offlineimap/Microsoft-Chef warnt asiatische Regierungen vor dem Einsatz von Linuxhttps://www.rfc1437.de/2004/11/18/microsoft-chef-wrnt-stsch-rgrngn-vr-dm-nstz-vn-lnx/Webserviceshttps://www.rfc1437.de/2004/11/18/webservices/Frontier Scriptinghttps://www.rfc1437.de/2004/11/17/frontier-scripting/Frontier Tutorialshttps://www.rfc1437.de/2004/11/17/frontier-tutorials/Linde verliert medizinisch wichtiges Patenthttps://www.rfc1437.de/2004/11/17/linde-verliert-medizinisch-wichtiges-patent/Russland will neue Atomwaffe entwickelnhttps://www.rfc1437.de/2004/11/17/russland-will-neue-atomwaffe-entwickeln/Serious First Steps In UserTalk Scriptinghttps://www.rfc1437.de/2004/11/17/serious-first-steps-in-usertalk-scripting/Table of Contents for Matt's Frontier Bookhttps://www.rfc1437.de/2004/11/17/table-of-contents-for-matt-s-frontier-book/Up and Running with Frontier Web Site Managementhttps://www.rfc1437.de/2004/11/17/up-and-running-with-frontier-web-site-management/Hartz IV und die Folgenhttps://www.rfc1437.de/2004/11/16/hartz-iv-und-die-folgen/In der Matrixhttps://www.rfc1437.de/2004/11/16/in-der-matrix/Ludwigshafen: Festakt für Kohl abgeblasenhttps://www.rfc1437.de/2004/11/16/ludwigshafen-festakt-fuer-kohl-abgeblasen/Rechnungshof: Scharfe Kritik an Eichels Politikhttps://www.rfc1437.de/2004/11/16/rechnungshof-scharfe-kritik-an-eichels-politik/Y2K Probleme bei Lotus Agenda und Think Tankhttps://www.rfc1437.de/2004/11/16/y2k-probleme-bei-lotus-agenda-und-think-tank/686 Black cross stud tool belt - hats belts - extremepie.comhttps://www.rfc1437.de/2004/11/15/686-black-cross-stud-tool-belt-hats-belts-extrmpcm/Firefox 1.0https://www.rfc1437.de/2004/11/15/firefox-10/HPLX.NET FAQs: THE FAQhttps://www.rfc1437.de/2004/11/15/hplx-net-faqs-the-faq/Microsoft im Lizenzrauschhttps://www.rfc1437.de/2004/11/15/microsoft-im-lizenzrausch/Mikel Evins: RAD Skaterhttps://www.rfc1437.de/2004/11/15/mikel-evins-rad-skater/Pro-Linux: DNS entschlackthttps://www.rfc1437.de/2004/11/15/pro-linux-dns-entschlackt/Dauphin DTR-1 Fileshttps://www.rfc1437.de/2004/11/14/dauphin-dtr-1-files/HP 100LX/200LX Technical Informationhttps://www.rfc1437.de/2004/11/14/hp-100lx-200lx-technical-information/ITU will Regulierung übernehmenhttps://www.rfc1437.de/2004/11/14/itu-will-regulierung-uebernehmen/Lohnsenkungsdebatte: Raucherpausen sollen künftig vom Lohn abgezogen werden - Wirtschaft - SPI ...https://www.rfc1437.de/2004/11/14/lhnsnkngsdbtt-rchrpsn-slln-knftg-vm-lhn-bgzgn-wrdn/Lotus Agenda lauffähig für den HP 200 LXhttps://www.rfc1437.de/2004/11/14/lotus-agenda-lauffaehig-fuer-den-hp-200-lx/MAXDOShttps://www.rfc1437.de/2004/11/14/maxdos/NEWSBLITZ: drahtloses iPod-Mediensystem patentierthttps://www.rfc1437.de/2004/11/14/newsblitz-drahtloses-ipod-mediensystem-patentiert/OmniGo Softwarehttps://www.rfc1437.de/2004/11/14/omnigo-software/Palmtop Info Central News Serverhttps://www.rfc1437.de/2004/11/14/palmtop-info-central-news-server/Palmtop LED lighthttps://www.rfc1437.de/2004/11/14/palmtop-led-light/Revision 7229: /user/arigo/greenlethttps://www.rfc1437.de/2004/11/14/revision-7229-user-arigo-greenlet/S.U.P.E.R. - The Largest 200LX Software Archivehttps://www.rfc1437.de/2004/11/14/s-u-p-e-r-the-largest-200lx-software-archive/the Degree Confluence Projecthttps://www.rfc1437.de/2004/11/14/the-degree-confluence-project/WWW/LX - the Internet Solution in Your Pocket!https://www.rfc1437.de/2004/11/14/www-lx-the-internet-solution-in-your-pocket/CDU-Politiker wollen Partei nach "rechts" öffnenhttps://www.rfc1437.de/2004/11/13/cdu-politiker-wollen-partei-nach-rechts-oeffnen/CSU will Kündigungsschutz offenbar stark einschränkenhttps://www.rfc1437.de/2004/11/13/csu-will-kuendigungsschutz-offenbar-stark-nschrnkn/dirtSimple.org: Using 2.4 decorators with 2.2 and 2.3https://www.rfc1437.de/2004/11/13/dirtsimple-org-using-2-4-decorators-with-2-2-and/Schnüffeldienst warnt Firmen bei Erwähnung in Weblogshttps://www.rfc1437.de/2004/11/13/schnueffeldienst-warnt-firmen-bei-erwahnng-n-wblgs/Staatsanwältin fordert acht Jahre für Berlusconihttps://www.rfc1437.de/2004/11/13/staatsanwaeltin-fordert-acht-jahre-fuer-berlusconi/Deutscher Internetpreis verliehenhttps://www.rfc1437.de/2004/11/12/deutscher-internetpreis-verliehen/Die Wut des Heiner Geisslerhttps://www.rfc1437.de/2004/11/12/die-wut-des-heiner-geissler/Gratis-Tabletten für AKW-Anwohnerhttps://www.rfc1437.de/2004/11/12/gratis-tabletten-fuer-akw-anwohner/Japan startet Walfangaktionhttps://www.rfc1437.de/2004/11/12/japan-startet-walfangaktion/Microsoft: Internet Explorer so sicher und komfortabel wie alle anderen Browserhttps://www.rfc1437.de/2004/11/12/mcrsft-ntrnt-xplrr-s-schr-nd-kmfrtbl-w-ll-ndrn-brw/Rechnungshof kritisiert Toll Collecthttps://www.rfc1437.de/2004/11/12/rechnungshof-kritisiert-toll-collect/Studie: Betrug kostet Gesundheitssektor Milliardenhttps://www.rfc1437.de/2004/11/12/studie-betrug-kostet-gesundheitssektor-milliarden/Condor Project Homepagehttps://www.rfc1437.de/2004/11/11/condor-project-homepage/dirtSimple.org: Generic Functions have Landedhttps://www.rfc1437.de/2004/11/11/dirtsimple-org-generic-functions-have-landed/Shibazuke Serializationhttps://www.rfc1437.de/2004/11/11/shibazuke-serialization/Tanks greet protesters in Americahttps://www.rfc1437.de/2004/11/11/tanks-greet-protesters-in-america/The More Things Change...https://www.rfc1437.de/2004/11/11/the-more-things-change/SCO vs. Linux: Novell präsentiert weitere Beweisehttps://www.rfc1437.de/2004/11/10/sco-vs-linux-novell-praesentiert-weitere-beweise/US-Bundesrichter stoppt Guantanamo-Tribunalhttps://www.rfc1437.de/2004/11/10/us-bundesrichter-stoppt-guantanamo-tribunal/Die Anweisung "Vorsichtige Fahrt" wurde nicht gegebenhttps://www.rfc1437.de/2004/11/09/die-anweisung-vorsichtige-fahrt-wurde-nicht-gegebn/iListen - hat jemand damit Erfahrung?https://www.rfc1437.de/2004/11/09/ilisten-hat-jemand-damit-erfahrung/Mal wieder ein neuer GPG Keyhttps://www.rfc1437.de/2004/11/09/mal-wieder-ein-neuer-gpg-key/Stolpert Open Source in der Verwaltung übers Vergaberecht?https://www.rfc1437.de/2004/11/09/stolpert-open-source-in-der-verwaltng-brs-vrgbrcht/Alle (!) EU-Rechtsdokumente in einer Internet-Datenbankhttps://www.rfc1437.de/2004/11/08/alle-eu-rechtsdokumente-in-einer-internet-datenbnk/ASPN : Python Cookbook : Language detection using character trigramshttps://www.rfc1437.de/2004/11/08/aspn-python-cookbook-language-detection-using/Confidential! - Confidential?https://www.rfc1437.de/2004/11/08/confidential-confidential/Das Klima der Angsthttps://www.rfc1437.de/2004/11/08/das-klima-der-angst/Debatte um längere Arbeitszeit hält anhttps://www.rfc1437.de/2004/11/08/debatte-um-laengere-arbeitszeit-haelt-an/Erste teilprivatisierte Haftanstalt in Deutschlandhttps://www.rfc1437.de/2004/11/08/erste-teilprivatisierte-haftanstalt-in-deutschland/Frontier Kernelhttps://www.rfc1437.de/2004/11/08/frontier-kernel/PyLog -- A first order logic library in Pythonhttps://www.rfc1437.de/2004/11/08/pylog-a-first-order-logic-library-in-python-2/Zope.org - ZopeX3-3.0.0https://www.rfc1437.de/2004/11/08/zopeorg-zopex3-300/Atomkraftgegner bei Unfall mit Castor-Zug getötethttps://www.rfc1437.de/2004/11/07/atomkraftgegner-bei-unfall-mit-castor-zug-getoetet/Factor programming languagehttps://www.rfc1437.de/2004/11/07/factor-programming-language/Medienexperte: Journalisten vertrauen zu oft auf Internet-Recherchehttps://www.rfc1437.de/2004/11/07/medienexperte-journalstn-vrtrn-z-ft-f-ntrnt-rchrch/Python Object Sharing (POSH)https://www.rfc1437.de/2004/11/07/python-object-sharing-posh/Auf welchen Feiertag könnten Sie verzichten?https://www.rfc1437.de/2004/11/06/auf-welchen-feiertag-koennten-sie-verzichten/Debatte über Wehrpflicht neu entbrannthttps://www.rfc1437.de/2004/11/06/debatte-ueber-wehrpflicht-neu-entbrannt/do you remember this?https://www.rfc1437.de/2004/11/06/do-you-remember-this/Gesunde Kindersnacks?https://www.rfc1437.de/2004/11/06/gesunde-kindersnacks/Ohio isn't over yet.https://www.rfc1437.de/2004/11/06/ohio-isnt-over-yet/Python Memory Managementhttps://www.rfc1437.de/2004/11/06/python-memory-management/Religion - the Tragedy of Mankindhttps://www.rfc1437.de/2004/11/06/religion-the-tragedy-of-mankind/Verpflichtung zur E-Mail-Überwachung trifft die Providerbranche harthttps://www.rfc1437.de/2004/11/06/verpflichtng-zr-ml-brwchng-trfft-d-prvdrbrnch-hrt/Crystal VST Instrumenthttps://www.rfc1437.de/2004/11/05/crystal-vst-instrument/Erfahrungen mit pycryptohttps://www.rfc1437.de/2004/11/05/erfahrungen-mit-pycrypto/MidiKeyshttps://www.rfc1437.de/2004/11/05/midikeys-2/Seekbot Seitentesthttps://www.rfc1437.de/2004/11/05/seekbot-seitentest/Sprachloshttps://www.rfc1437.de/2004/11/05/sprachlos/Arafats Zustand dramatisch verschlechterthttps://www.rfc1437.de/2004/11/04/arafats-zustand-dramatisch-verschlechtert/Current Electoral Vote Predictor 2004https://www.rfc1437.de/2004/11/04/current-electoral-vote-predictor-2004/Dowserhttps://www.rfc1437.de/2004/11/04/dowser/M2Crypto Installer for Python 2.3 - Installer for M2Crypto - an open source Python crypto &amp; SSL toolkit. - python, cryptography, SSL, S/MIME, ZServerSSL, ZSmime, PKI, Zopehttps://www.rfc1437.de/2004/11/04/m2crypto-installer-for-python-2-3-installer-for/Python Cryptography Toolkithttps://www.rfc1437.de/2004/11/04/python-cryptography-toolkit/TLS Litehttps://www.rfc1437.de/2004/11/04/tls-lite-2/Vergangenheitsbewältigung mit der Abrißbirnehttps://www.rfc1437.de/2004/11/04/vergangenheitsbewaeltigung-mit-der-abrissbirne/Bei der Auftragsvergabe für die Online-Jobbörse der BA wurden nicht bestochenhttps://www.rfc1437.de/2004/11/03/b-dr-ftrgsvrgb-fr-d-nln-jbbrs-dr-b-wrdn-ncht-bstch/Bush sieht sich als Sieger | Politik | Deutsche Welle |https://www.rfc1437.de/2004/11/03/bush-sieht-sich-als-sieger-politik-deutsche-welle/CRN | Breaking News | Shadows Loom Over Sun's Open Source Planshttps://www.rfc1437.de/2004/11/03/crn-breaking-news-shadows-loom-ovr-sns-pn-src-plns/IRCnet.org Webchat Loginhttps://www.rfc1437.de/2004/11/03/ircnet-org-webchat-login/Jubiläum - zwei Jahre Hugos House of Weblog Horrorhttps://www.rfc1437.de/2004/11/03/jubilaeum-zwei-jahre-hugos-house-of-weblog-horror/Käufer bei Ebay genießen Widerrufsrechthttps://www.rfc1437.de/2004/11/03/kaeufer-bei-ebay-geniessen-widerrufsrecht/Lücke im Internet Explorer ermöglicht vollen Systemzugriffhttps://www.rfc1437.de/2004/11/03/luecke-im-internet-explorr-rmglcht-vlln-systmzgrff/Schröder und Eichel wollen Tag der Einheit kippenhttps://www.rfc1437.de/2004/11/03/schroeder-und-eichel-wollen-tag-der-einheit-kippen/Update: Das Weiße Haus erklärt Bush zum Wahlsiegerhttps://www.rfc1437.de/2004/11/03/update-das-weisse-haus-erklaert-bush-zum-wahlsiegr/Useful VIM featureshttps://www.rfc1437.de/2004/11/03/useful-vim-features/Airspeed - Trachttps://www.rfc1437.de/2004/11/02/airspeed-trac/ECL v0.9d releasedhttps://www.rfc1437.de/2004/11/02/ecl-v09d-released/Planet Planet!https://www.rfc1437.de/2004/11/02/planet-planet/Python ipqueuehttps://www.rfc1437.de/2004/11/02/python-ipqueue/Shrek IIhttps://www.rfc1437.de/2004/11/02/shrek-ii/taz 3.11.04 Akte X in der Elbmarschhttps://www.rfc1437.de/2004/11/02/taz-31104-akte-x-in-der-elbmarsch/Datenschleuder - Hacking biometric systemshttps://www.rfc1437.de/2004/11/01/datenschleuder-hacking-biometric-systems/freshmeat.net: Project details for Kernel TCP Virtual Serverhttps://www.rfc1437.de/2004/11/01/freshmeat-net-project-details-for-kernel-tcp/freshmeat.net: Project details for ProxSMTPhttps://www.rfc1437.de/2004/11/01/freshmeat-net-project-details-for-proxsmtp/Ich© liebe" Dich®https://www.rfc1437.de/2004/11/01/ichcopy-liebe-dichreg/Kreaturenhttps://www.rfc1437.de/2004/11/01/kreaturen/Linux: In Kernel GUIhttps://www.rfc1437.de/2004/11/01/linux-in-kernel-gui/Pasta: text pasting service for del.icio.ushttps://www.rfc1437.de/2004/11/01/pasta-text-pasting-service-for-del-icio-us/Polareis schmilzt schneller als erwartethttps://www.rfc1437.de/2004/11/01/polareis-schmilzt-schneller-als-erwartet/#python discussion of how to implement the Halting Problemhttps://www.rfc1437.de/2004/11/01/python-discussion-of-how-to-implmnt-th-hltng-prblm/Abmahnung des Kefk Network durch die Kanzlei Waldorfhttps://www.rfc1437.de/2004/10/31/abmahnung-des-kefk-network-durch-die-kanzlei-wldrf/Holocore / Mac OS X Software / OnDeckhttps://www.rfc1437.de/2004/10/31/holocore-mac-os-x-software-ondeck/OkayRpcProtocol - YAML Implementors Sitehttps://www.rfc1437.de/2004/10/31/okayrpcprotocol-yaml-implementors-site/PyYaml - Trachttps://www.rfc1437.de/2004/10/31/pyyaml-trac/SLiP &lt;&lt; Projects &lt;&lt; very simple website for Scott Sweeneyhttps://www.rfc1437.de/2004/10/31/slip-lt-lt-projects-lt-lt-very-simple-website-for/( Syck ): YAML for Ruby, Python, PHP and OCamlhttps://www.rfc1437.de/2004/10/31/syck-yaml-for-ruby-python-php-and-ocaml/Winterzeitumstellunghttps://www.rfc1437.de/2004/10/31/winterzeitumstellung/YAML Ain't Markup Languagehttps://www.rfc1437.de/2004/10/31/yaml-ain-t-markup-language/Backbone - a GNUstep-based desktop environmenthttps://www.rfc1437.de/2004/10/30/backbone-a-gnustep-based-desktop-environment/Index of /data/gnustep/https://www.rfc1437.de/2004/10/30/index-of-data-gnustep/Initiative Neue Soziale Marktwirtschafthttps://www.rfc1437.de/2004/10/30/initiative-neue-soziale-marktwirtschaft/Paar ließ sich kaum trennenhttps://www.rfc1437.de/2004/10/30/paar-liess-sich-kaum-trennen/BSA-Chef: Software-Piraten geht es verstärkt an den Kragenhttps://www.rfc1437.de/2004/10/29/bsa-chef-software-piraten-geht-s-vrstrkt-n-dn-krgn/Fuji Discontinues Medium Format Camerashttps://www.rfc1437.de/2004/10/29/fuji-discontinues-medium-format-cameras/Gibson droht: «Arnold, ich warte!»https://www.rfc1437.de/2004/10/29/gibson-droht-arnold-ich-warte/Links werden kriminalisierthttps://www.rfc1437.de/2004/10/29/links-werden-kriminalisiert/Musikindustrie gegen Radiomitschnitthttps://www.rfc1437.de/2004/10/29/musikindustrie-gegen-radiomitschnitt/"Nicht genug Soldaten da? Na und \x96 wo ist der Photoshop?"https://www.rfc1437.de/2004/10/29/nicht-genug-soldaten-da-na-und-wo-ist-der-photoshp/projekt: darkwavehttps://www.rfc1437.de/2004/10/29/projekt-darkwave/SanDisk's budget 2GB Secure Digital cardhttps://www.rfc1437.de/2004/10/29/sandisks-budget-2gb-secure-digital-card/SLIME: The Superior Lisp Interaction Mode for Emacshttps://www.rfc1437.de/2004/10/29/slime-the-superior-lisp-interaction-mode-for-emacs/The Security of Checks and Balanceshttps://www.rfc1437.de/2004/10/29/the-security-of-checks-and-balances/58.000 Wahlzettel in Florida verschwundenhttps://www.rfc1437.de/2004/10/28/58000-wahlzettel-in-florida-verschwunden/iDrum - The Drum Machine for Mac OS Xhttps://www.rfc1437.de/2004/10/28/idrum-the-drum-machine-for-mac-os-x/Opel-Krise: Konkurrenz mit Schweden um den Vectrahttps://www.rfc1437.de/2004/10/28/opel-krise-konkurrenz-mit-schweden-um-den-vectra/TuneFinder Xhttps://www.rfc1437.de/2004/10/28/tunefinder-x/Vermittlungsausschuss: Versandkunden sollen Rücksendekosten tragenhttps://www.rfc1437.de/2004/10/28/vermittlungsasschss-vrsndkndn-slln-rcksndkstn-trgn/Website-Betreiber wegen Hardware-Meldung abgemahnthttps://www.rfc1437.de/2004/10/28/website-betreiber-wegen-hardware-meldung-abgemahnt/Barroso will Kommission umbildenhttps://www.rfc1437.de/2004/10/27/barroso-will-kommission-umbilden/iDive 1.1https://www.rfc1437.de/2004/10/27/idive-1-1/OpenPsion - Linux for Psion Computershttps://www.rfc1437.de/2004/10/27/openpsion-linux-for-psion-computers/OpenZaurus 3.5.1 is released! :: OpenZaurus ::https://www.rfc1437.de/2004/10/27/openzaurus-351-is-released-openzaurus/PhpWiki - Open Zaurus Collie Install Guidehttps://www.rfc1437.de/2004/10/27/phpwiki-open-zaurus-collie-install-guide/S5: A Simple Standards-Based Slide Show Systemhttps://www.rfc1437.de/2004/10/27/s5-a-simple-standards-based-slide-show-system/Bill Clementson: Allegro CL 7.0 releasedhttps://www.rfc1437.de/2004/10/26/bill-clementson-allegro-cl-70-released/Bundesregierung befürchtet Imageverlusthttps://www.rfc1437.de/2004/10/26/bundesregierung-befuerchtet-imageverlust/Das E-Business Weblog: Die Nervensägehttps://www.rfc1437.de/2004/10/26/das-e-business-weblog-die-nervensaege/Double Your Data Volume with the PROshift+ Adapterhttps://www.rfc1437.de/2004/10/26/double-your-data-volume-with-the-proshift-adapter/iPod Photo, doesn''t rock?https://www.rfc1437.de/2004/10/26/ipod-photo-doesnt-rock/Auf der Lauer Ihttps://www.rfc1437.de/2004/10/26/pic-auf-der-lauer-i/Auf der Lauer IIhttps://www.rfc1437.de/2004/10/26/pic-auf-der-lauer-ii/Herbstbilder Ihttps://www.rfc1437.de/2004/10/26/pic-herbstbilder-i/Herbstbilder IIhttps://www.rfc1437.de/2004/10/26/pic-herbstbilder-ii/Herbstbilder IIIhttps://www.rfc1437.de/2004/10/26/pic-herbstbilder-iii/Herbstbilder IVhttps://www.rfc1437.de/2004/10/26/pic-herbstbilder-iv/Herbstbilder Vhttps://www.rfc1437.de/2004/10/26/pic-herbstbilder-v/Herbstbilder VIhttps://www.rfc1437.de/2004/10/26/pic-herbstbilder-vi/Herbstbilder VIIhttps://www.rfc1437.de/2004/10/26/pic-herbstbilder-vii/Sonde Cassini näherte sich Saturn-Mond Titanhttps://www.rfc1437.de/2004/10/26/sonde-cassini-naeherte-sich-saturn-mond-titan/"Eine Partei, in der jeder alles werden kann"https://www.rfc1437.de/2004/10/25/eine-partei-in-der-jeder-alles-werden-kann/Fred Miranda Releases Velvia Vision Plug-inhttps://www.rfc1437.de/2004/10/25/fred-miranda-releases-velvia-vision-plug-in/James Tauber : Cleesehttps://www.rfc1437.de/2004/10/25/james-tauber-cleese/Stuttgart: Staatsminister ohrfeigt Parteikollegenhttps://www.rfc1437.de/2004/10/25/stuttgart-staatsminister-ohrfeigt-parteikollegen/Sarah McLachlan - World On Firehttps://www.rfc1437.de/2004/10/24/sarah-mclachlan-world-on-fire/Blöde Userhttps://www.rfc1437.de/2004/10/23/bloede-user/ETOS Compilerhttps://www.rfc1437.de/2004/10/23/etos-compiler-2/EU-Kommissarin will Castro sterben sehenhttps://www.rfc1437.de/2004/10/23/eu-kommissarin-will-castro-sterben-sehen/Gambit Scheme 4.0 beta 10 released!https://www.rfc1437.de/2004/10/23/gambit-scheme-40-beta-10-released/Gambit Scheme Systemhttps://www.rfc1437.de/2004/10/23/gambit-scheme-system/iMovie FAQ - Homehttps://www.rfc1437.de/2004/10/23/imovie-faq-home/Retrocomputing - MIT CADR Lisp Machineshttps://www.rfc1437.de/2004/10/23/retrocomputing-mit-cadr-lisp-machines/Genscher unterschrieb irrtümlich CSU-Mitgliedsantraghttps://www.rfc1437.de/2004/10/22/genscher-unterschrieb-irrtuemlich-csu-mitglidsntrg/Java-Vorläufer hat Geburtstag: 30 Jahre p-Systemhttps://www.rfc1437.de/2004/10/22/java-vorlaeufer-hat-geburtstag-30-jahre-p-system/Ken Iverson ist gestorbenhttps://www.rfc1437.de/2004/10/22/ken-iverson-ist-gestorben/Send in Münsterhttps://www.rfc1437.de/2004/10/22/pic-send-in-muenster/Retrocomputing - Symbolics Lisp Machine Emulationhttps://www.rfc1437.de/2004/10/22/retrocomputing-symbolics-lisp-machine-emulation/XShelf 1.1.2 for MacOS Xhttps://www.rfc1437.de/2004/10/22/xshelf-1-1-2-for-macos-x/Akupunktur bald Kassenleistung?https://www.rfc1437.de/2004/10/21/akupunktur-bald-kassenleistung/Die Suggestivfrage des Betriebsratshttps://www.rfc1437.de/2004/10/21/die-suggestivfrage-des-betriebsrats/lispmeister: A booting CADR emulatorhttps://www.rfc1437.de/2004/10/21/lispmeister-a-booting-cadr-emulator/Allerletzte Blumenhttps://www.rfc1437.de/2004/10/21/pic-allerletzte-blumen/Herbstfarbenhttps://www.rfc1437.de/2004/10/21/pic-herbstfarben/Raupehttps://www.rfc1437.de/2004/10/21/pic-raupe/Trauerweidehttps://www.rfc1437.de/2004/10/21/pic-trauerweide/TAOhttps://www.rfc1437.de/2004/10/21/tao/Münster ist weltweit lebenswerteste Stadthttps://www.rfc1437.de/2004/10/20/muenster-ist-weltweit-lebenswerteste-stadt/Opel-Abstimmung mit Trickshttps://www.rfc1437.de/2004/10/20/opel-abstimmung-mit-tricks/Pyro - Abouthttps://www.rfc1437.de/2004/10/20/pyro-about/Studie: Weniger Kündigungsschutz schafft keine neuen Jobshttps://www.rfc1437.de/2004/10/20/studie-weniger-kuendigungsschutz-schafft-kn-nn-jbs/Sharp Kills US Zaurus Linehttps://www.rfc1437.de/2004/10/19/sharp-kills-us-zaurus-line/Slashdot | IP Tunneling Through Nameservershttps://www.rfc1437.de/2004/10/19/slashdot-ip-tunneling-through-nameservers/Ändert die Brennweite die Perspektive?https://www.rfc1437.de/2004/10/18/aendert-die-brennweite-die-perspektive/Psychehttps://www.rfc1437.de/2004/10/18/psyche/schemonhttps://www.rfc1437.de/2004/10/18/schemon/STUDY WHAT WE DOhttps://www.rfc1437.de/2004/10/18/study-what-we-do/Was ist "Perspektive"? (2)https://www.rfc1437.de/2004/10/18/was-ist-perspektive-2/A Logging System for Pythonhttps://www.rfc1437.de/2004/10/17/a-logging-system-for-python/Animal Planet :: Corwin''s Carnival of Creatureshttps://www.rfc1437.de/2004/10/17/animal-planet-corwins-carnival-of-creatures/Path ... where is my application's home dir?https://www.rfc1437.de/2004/10/17/path-where-is-my-application-s-home-dir/syslog.pyhttps://www.rfc1437.de/2004/10/17/syslog-py/[Web-SIG] Draft of server/gateway base class now availablehttps://www.rfc1437.de/2004/10/17/web-sig-draft-of-server-gateway-base-class-now/Bibble Labs - Professional Photo-Manipulation Softwarehttps://www.rfc1437.de/2004/10/16/bibble-labs-professional-photo-manipulation-softwr/F#, a functional language for .Nethttps://www.rfc1437.de/2004/10/16/f-a-functional-language-for-net/Photo Matt - Bizarre Windows Behaviorhttps://www.rfc1437.de/2004/10/16/photo-matt-bizarre-windows-behavior/10.000 Stellen werden gestrichenhttps://www.rfc1437.de/2004/10/15/10000-stellen-werden-gestrichen/EU-Energiekommisar durchgefallenhttps://www.rfc1437.de/2004/10/15/eu-energiekommisar-durchgefallen/Journalisten und Blogger sind keine Konkurrenzhttps://www.rfc1437.de/2004/10/15/journalisten-und-blogger-sind-keine-konkurrenz/Kanzlei Heyms & Dr. Bahr: OLG Hamm: Kein Urheberrecht an Webseiten?https://www.rfc1437.de/2004/10/15/kanzlei-heyms-dr-bahr-olg-hamm-kn-rhbrrcht-n-wbstn/Merz: Rückzug ist endgültighttps://www.rfc1437.de/2004/10/15/merz-rueckzug-ist-endgueltig/Rel: an open source implementation of Date & Darwen''s Tutorial Dhttps://www.rfc1437.de/2004/10/15/rel-an-open-source-implementatin-f-dt-drwns-ttrl-d/SCO vs. Linux: Bild dir eine Meinunghttps://www.rfc1437.de/2004/10/15/sco-vs-linux-bild-dir-eine-meinung/ffmpegX a VCD, SVCD, CVD, VOB, DivX, XviD encoder for Mac OSXhttps://www.rfc1437.de/2004/10/11/ffmpegx-a-vcd-svcd-cvd-vob-divx-xvid-encoder-for/Gericht genehmigt Atom-Transporte nach NRWhttps://www.rfc1437.de/2004/10/11/gericht-genehmigt-atom-transporte-nach-nrw/Münster: Tillmann bleibt Oberbürgermeisterhttps://www.rfc1437.de/2004/10/11/muenster-tillmann-bleibt-oberbuergermeister/Parlamentsausschuss lehnt EU-Justizkommissar abhttps://www.rfc1437.de/2004/10/11/parlamentsausschuss-lehnt-eu-justizkommissar-ab/Provider haftet für Domain-Verlusthttps://www.rfc1437.de/2004/10/11/provider-haftet-fuer-domain-verlust/"Schlag ins Gesicht der T-Online-Aktionäre"https://www.rfc1437.de/2004/10/11/schlag-ins-gesicht-der-t-online-aktionaere/wxAcceleratorTablehttps://www.rfc1437.de/2004/10/11/wxacceleratortable/wxValidator overviewhttps://www.rfc1437.de/2004/10/11/wxvalidator-overview/Copy and Paste Urteil fuer Webseitenhttps://www.rfc1437.de/2004/10/10/copy-and-paste-urteil-fuer-webseiten/FTD - Ifo-Chef will Sozialhilfe um 30 Prozent kürzenhttps://www.rfc1437.de/2004/10/10/ftd-ifo-chef-will-sozialhilfe-um-30-prozent-kuerzn/Daniel Barlow: Araneida 0.9 releasedhttps://www.rfc1437.de/2004/10/09/daniel-barlow-araneida-09-released/GEZ-Gebühr für Internet-PCs kommthttps://www.rfc1437.de/2004/10/09/gez-gebuehr-fuer-internet-pcs-kommt/awaretek.com :: Python Tutorialshttps://www.rfc1437.de/2004/10/08/awaretek-com-python-tutorials/gmail atom feedhttps://www.rfc1437.de/2004/10/08/gmail-atom-feed/Laszlo - Productshttps://www.rfc1437.de/2004/10/08/laszlo-products/SQLite 3.0.7https://www.rfc1437.de/2004/10/08/sqlite-307/Und noch eine kleine Änderung am RSS Feedhttps://www.rfc1437.de/2004/10/08/und-noch-eine-kleine-aenderung-am-rss-feed/Abschied vom Gewerbegebiethttps://www.rfc1437.de/2004/10/07/abschied-vom-gewerbegebiet/CIA-Bericht: Der Irak besaß keine ABC-Waffenhttps://www.rfc1437.de/2004/10/07/cia-bericht-der-irak-besass-keine-abc-waffen/Debakel der Schach-Großmeister gegen die Schach-Maschinenhttps://www.rfc1437.de/2004/10/07/debakel-der-schach-grossmeister-ggn-d-schch-mschnn/Kunde haftet bei PIN-Missbrauchhttps://www.rfc1437.de/2004/10/07/kunde-haftet-bei-pin-missbrauch/Microsoft-Chef: Auf iPods landet hauptsächlich gestohlene Musikhttps://www.rfc1437.de/2004/10/07/microsoft-chef-auf-ipods-lndt-hptschlch-gsthln-msk/Netzaktivist wegen Hyperlinks zu Geldstrafe verurteilthttps://www.rfc1437.de/2004/10/07/netzaktivist-wegen-hyperlinks-zu-geldstrafe-vrrtlt/NRW-Gefängnisse testen Teilprivatisierunghttps://www.rfc1437.de/2004/10/07/nrw-gefaengnisse-testen-teilprivatisierung/Rollei Announces Rolleiflex MiniDigihttps://www.rfc1437.de/2004/10/07/rollei-announces-rolleiflex-minidigi/Saisonaus für Zabelhttps://www.rfc1437.de/2004/10/07/saisonaus-fuer-zabel/Schreckliche Echse im Federkleidhttps://www.rfc1437.de/2004/10/07/schreckliche-echse-im-federkleid/SCO vs. Linux: Anträge abgelehnt, Frist verlängerthttps://www.rfc1437.de/2004/10/07/sco-vs-linux-antraege-abgelehnt-frist-verlaengert/Wirtschaftsspitzen fordern schnelle Steuerreformhttps://www.rfc1437.de/2004/10/07/wirtschaftsspitzen-fordern-schnelle-steuerreform/Zensur in Deutschlandhttps://www.rfc1437.de/2004/10/07/zensur-in-deutschland/eines der Landshuter Wahrzeichenhttps://www.rfc1437.de/2004/10/05/eines-der-landshuter-wahrzeichen/Das Ende der Welthttps://www.rfc1437.de/2004/10/04/das-ende-der-welt/Das Hotel am Ende der Welthttps://www.rfc1437.de/2004/10/04/das-hotel-am-ende-der-welt/Die ungewollten Stimmenhttps://www.rfc1437.de/2004/10/03/die-ungewollten-stimmen/Erik Zabel ist Vizeweltmeister im Strassenrennenhttps://www.rfc1437.de/2004/10/03/erik-zabel-ist-vizeweltmeister-im-strassenrennen/iPod Information Center - the ultimative site @ http://www.cilly.dyndns.org/iPod/https://www.rfc1437.de/2004/10/03/ipod-information-center-the-ultimative-site-http/Mal wieder Münchenhttps://www.rfc1437.de/2004/10/03/mal-wieder-muenchen/Papst spricht letzten Habsburg-Kaiser selighttps://www.rfc1437.de/2004/10/03/papst-spricht-letzten-habsburg-kaiser-selig/Warez-Razzia: Die Story um FTPWelthttps://www.rfc1437.de/2004/10/03/warez-razzia-die-story-um-ftpwelt/Judith Arndt Weltmeisterin: "Großer Tag"https://www.rfc1437.de/2004/10/02/judith-arndt-weltmeisterin-grosser-tag/Leica - a la cartehttps://www.rfc1437.de/2004/10/02/leica-a-la-carte/Blumenhttps://www.rfc1437.de/2004/10/02/pic-blumen/Distelhttps://www.rfc1437.de/2004/10/02/pic-distel/Herbst - Zeit der Früchte und Samenhttps://www.rfc1437.de/2004/10/02/pic-herbst-zeit-der-fruechte-und-samen/Pilzehttps://www.rfc1437.de/2004/10/02/pic-pilze/Richtungsweisendhttps://www.rfc1437.de/2004/10/02/pic-richtungsweisend/Schräglagehttps://www.rfc1437.de/2004/10/02/pic-schraeglage/Spidermanhttps://www.rfc1437.de/2004/10/02/pic-spiderman/und immer wieder Regenhttps://www.rfc1437.de/2004/10/02/pic-und-immer-wieder-regen/US-Regierung zeigt kaum Interesse für Computersicherheithttps://www.rfc1437.de/2004/10/02/us-regierung-zeigt-kaum-interesse-fuer-cmptrschrht/"Argentinier" Rebellin darf nicht bei WM startenhttps://www.rfc1437.de/2004/10/01/argentinier-rebellin-darf-nicht-bei-wm-starten/Instikihttps://www.rfc1437.de/2004/10/01/instiki/Java Runtime Properties for Mac OS Xhttps://www.rfc1437.de/2004/10/01/java-runtime-properties-for-mac-os-x/Merck ruft Medikament zurück - Aktie eingebrochenhttps://www.rfc1437.de/2004/10/01/merck-ruft-medikament-zurueck-aktie-eingebrochen/PythonCard Home Pagehttps://www.rfc1437.de/2004/10/01/pythoncard-home-page/Red Robin - Jythonhttps://www.rfc1437.de/2004/10/01/red-robin-jython/Schmerz-Patientin darf kein Cannabis anbauenhttps://www.rfc1437.de/2004/10/01/schmerz-patientin-darf-kein-cannabis-anbauen/SPE - Stani's Python Editorhttps://www.rfc1437.de/2004/10/01/spe-stani-s-python-editor/Sportarzt Ferrari zu Bewährungsstrafe verurteilthttps://www.rfc1437.de/2004/10/01/sportarzt-ferrari-zu-bewaehrungsstrafe-verurteilt/TvBrowser und Mac OS Xhttps://www.rfc1437.de/2004/10/01/tvbrowser-und-mac-os-x/US-Ministerium wird jeden zweiten Tag gehackthttps://www.rfc1437.de/2004/10/01/us-ministerium-wird-jeden-zweiten-tag-gehackt/wxGlade: a GUI builder for wxWidgets/wxPythonhttps://www.rfc1437.de/2004/10/01/wxglade-a-gui-builder-for-wxwidgets-wxpython/3 ZEOhttps://www.rfc1437.de/2004/09/30/3-zeo/Arachnids and Pachydermshttps://www.rfc1437.de/2004/09/30/arachnids-and-pachyderms/Blogmarks mit im Weblog RSS Feedhttps://www.rfc1437.de/2004/09/30/blogmarks-mit-im-weblog-rss-feed/Anthroposophen: "Der Weltenplan vollzieht sich unerbittlich" - Archiv - SPIEGEL ONLINEhttps://www.rfc1437.de/2004/09/30/nthrpsphn-dr-wltnpln-vllzht-sch-nrbttlch-rchv-spgl/About Dabohttps://www.rfc1437.de/2004/09/29/about-dabo/Angriff auf freie Netzstrukturenhttps://www.rfc1437.de/2004/09/29/angriff-auf-freie-netzstrukturen/BGH prüft Widerrufsmöglichkeit bei ebay-Auktionenhttps://www.rfc1437.de/2004/09/29/bgh-prueft-widerrufsmoeglichkeit-bei-ebay-auktionn/CLiki : Araneidahttps://www.rfc1437.de/2004/09/29/cliki-araneida/Commodore 32 - Standalone Z-Machinehttps://www.rfc1437.de/2004/09/29/commodore-32-standalone-z-machine/CSU will Lernmittelfreiheit doch nicht abschaffenhttps://www.rfc1437.de/2004/09/29/csu-will-lernmittelfreiheit-doch-nicht-abschaffen/Frontier Open Source ist dahttps://www.rfc1437.de/2004/09/29/frontier-open-source-ist-da/Gibt ja manchmal doch noch positives ...https://www.rfc1437.de/2004/09/29/gibt-ja-manchmal-doch-noch-positives/Hasselblad to Distribute New Zeiss Ikon Camera Systemhttps://www.rfc1437.de/2004/09/29/hasselblad-to-distribute-new-zeiss-ikon-camr-systm/Mamiya ZD and digital backhttps://www.rfc1437.de/2004/09/29/mamiya-zd-and-digital-back/Mamiya ZD Datenblatt bei digitalkamera.dehttps://www.rfc1437.de/2004/09/29/mamiya-zd-datenblatt-bei-digitalkamerade/Mehr Platz für .Machttps://www.rfc1437.de/2004/09/29/mehr-platz-fuer-mac/Schiefer Turm von Kölnhttps://www.rfc1437.de/2004/09/29/schiefer-turm-von-koeln/Schiefer Turm von Köln: Ermittlungenhttps://www.rfc1437.de/2004/09/29/schiefer-turm-von-koeln-ermittlungen/Anwalt bestreitet Kenntnis von den Handlungen der FTPWelt-Betreiberhttps://www.rfc1437.de/2004/09/28/anwalt-bstrtt-knntns-vn-dn-hndlngn-dr-ftpwlt-btrbr/Bundesamt für Strahlenschutz: Vorsicht beim Umgang mit Handyshttps://www.rfc1437.de/2004/09/28/bundesamt-fuer-strhlnschtz-vrscht-bm-mgng-mt-hndys/CDU plant Abbau von Arbeitnehmerrechtenhttps://www.rfc1437.de/2004/09/28/cdu-plant-abbau-von-arbeitnehmerrechten/Contax i4Rhttps://www.rfc1437.de/2004/09/28/contax-i4r/Rollei runderneuerthttps://www.rfc1437.de/2004/09/28/rollei-runderneuert/Adobe will einheitliches Format für Digitalkamera-Rohdaten etablierenhttps://www.rfc1437.de/2004/09/27/adobe-will-einheitlchs-frmt-fr-dgtlkmr-rhdtn-tblrn/Four-Thirds-Nachwuchs: Olympus E-300https://www.rfc1437.de/2004/09/27/four-thirds-nachwuchs-olympus-e-300/Gewaltiger Asteroid fliegt nahe an der Erde vorbeihttps://www.rfc1437.de/2004/09/27/gewaltiger-asteroid-fliegt-nahe-an-der-erde-vorbei/Janus Softwarehttps://www.rfc1437.de/2004/09/27/janus-software/pcphttps://www.rfc1437.de/2004/09/27/pcp/SFTP Chroot Howtohttps://www.rfc1437.de/2004/09/27/sftp-chroot-howto/Sicherheitslücke war eBay lange bekannthttps://www.rfc1437.de/2004/09/27/sicherheitsluecke-war-ebay-lange-bekannt/Süße Überraschung im Gas- und Staubnebelhttps://www.rfc1437.de/2004/09/27/suesse-ueberraschung-im-gas-und-staubnebel/Ullrich withdraws from world's TThttps://www.rfc1437.de/2004/09/27/ullrich-withdraws-from-worlds-tt/BetterHTMLExporthttps://www.rfc1437.de/2004/09/26/betterhtmlexport/Embedding Gallery Into An Existing Communityhttps://www.rfc1437.de/2004/09/26/embedding-gallery-into-an-existing-community/Gallery :: your photos on your websitehttps://www.rfc1437.de/2004/09/26/gallery-your-photos-on-your-website/iPhotoToGalleryhttps://www.rfc1437.de/2004/09/26/iphototogallery/Kommunalwahlen Münsterhttps://www.rfc1437.de/2004/09/26/kommunalwahlen-muenster/Myriad: Galleriehttps://www.rfc1437.de/2004/09/26/myriad-gallerie/PHP/SWF Chartshttps://www.rfc1437.de/2004/09/26/php-swf-charts/T-Mobile mit neuer Führung ab 2006https://www.rfc1437.de/2004/09/26/t-mobile-mit-neuer-fuehrung-ab-2006/Big tours pull from ProTourhttps://www.rfc1437.de/2004/09/25/big-tours-pull-from-protour/Chapter 2. Building OpenMCL from its Source Codehttps://www.rfc1437.de/2004/09/25/chapter-2-building-openmcl-from-its-source-code/Gravierende Sicherheitslücke bei Ebayhttps://www.rfc1437.de/2004/09/25/gravierende-sicherheitsluecke-bei-ebay/mel-basehttps://www.rfc1437.de/2004/09/25/mel-base/Schily: Mehr Macht beim Bund im Anti-Terror-Kampfhttps://www.rfc1437.de/2004/09/25/schily-mehr-macht-beim-bund-im-anti-terror-kampf/Bayescl -- cvs-prereleasehttps://www.rfc1437.de/2004/09/24/bayescl-cvs-prerelease/BDR-Präsidentin Sylvia Schenk tritt zurückhttps://www.rfc1437.de/2004/09/24/bdr-praesidentin-sylvia-schenk-tritt-zurueck/Chronik Massenkarambolage im Allhttps://www.rfc1437.de/2004/09/24/chronik-massenkarambolage-im-all/CL-PREVALENCEhttps://www.rfc1437.de/2004/09/24/cl-prevalence/GROKLAW - SCO hat nie die aktuellen Sourcen verglichenhttps://www.rfc1437.de/2004/09/24/groklaw-sco-hat-nie-die-aktuellen-sourcen-verglchn/heise online - Anti-Spam-Arbeitsgruppe MARID der IETF streicht die Segelhttps://www.rfc1437.de/2004/09/24/heise-onlin-nt-spm-rbtsgrpp-mrd-dr-tf-strcht-d-sgl/Intel gegen «Inside»-Websiteshttps://www.rfc1437.de/2004/09/24/intel-gegen-inside-websites/Lispix Table of Contentshttps://www.rfc1437.de/2004/09/24/lispix-table-of-contents/MetaOCaml Homepagehttps://www.rfc1437.de/2004/09/24/metaocaml-homepage/Persistent Lisp OBjectshttps://www.rfc1437.de/2004/09/24/persistent-lisp-objects/Pg: a Common Lisp interface to PostgreSQLhttps://www.rfc1437.de/2004/09/24/pg-a-common-lisp-interface-to-postgresql/Projects at Common-Lisp.nethttps://www.rfc1437.de/2004/09/24/projects-at-common-lisp-net/py2app builds its first .apphttps://www.rfc1437.de/2004/09/24/py2app-builds-its-first-app/Sam Ruby: Copy and Pastehttps://www.rfc1437.de/2004/09/24/sam-ruby-copy-and-paste/SZOn - "Sammlung Cremer" geht nach Münsterhttps://www.rfc1437.de/2004/09/24/szon-sammlung-cremer-geht-nach-muenster/VIPS image processing library home pagehttps://www.rfc1437.de/2004/09/24/vips-image-processing-library-home-page/AllegroServe - a Web Application Serverhttps://www.rfc1437.de/2004/09/23/allegroserve-a-web-application-server/Bayern schafft Lernmittelfreiheit abhttps://www.rfc1437.de/2004/09/23/bayern-schafft-lernmittelfreiheit-ab/Clean Corpushttps://www.rfc1437.de/2004/09/23/clean-corpus/Common Lisp Hypermedia Server (CL-HTTP)https://www.rfc1437.de/2004/09/23/common-lisp-hypermedia-server-cl-http/Common Lisp Opensource Centerhttps://www.rfc1437.de/2004/09/23/common-lisp-opensource-center/Fall Hamilton: Vuelta-B-Probe positivhttps://www.rfc1437.de/2004/09/23/fall-hamilton-vuelta-b-probe-positiv/Jenoptik Announces 22 Megapixel Eyelike eMotion²² Digital Backhttps://www.rfc1437.de/2004/09/23/jenoptik-announces-22-megapixel-eyelk-mtn-dgtl-bck/Lisp news von Rainer Joswighttps://www.rfc1437.de/2004/09/23/lisp-news-von-rainer-joswig/lisp tools for xmlhttps://www.rfc1437.de/2004/09/23/lisp-tools-for-xml/LyX WikiWiki - LyX.Machttps://www.rfc1437.de/2004/09/23/lyx-wikiwiki-lyxmac/OpenMCL-McCLIM-beagle-backend.jpghttps://www.rfc1437.de/2004/09/23/openmcl-mcclim-beagle-backendjpg/Portable AllegroServehttps://www.rfc1437.de/2004/09/23/portable-allegroserve/S-XMLhttps://www.rfc1437.de/2004/09/23/s-xml/S-XML-RPChttps://www.rfc1437.de/2004/09/23/s-xml-rpc/Statistical programming with Rhttps://www.rfc1437.de/2004/09/23/statistical-programming-with-r/Suchmaschinen-Eintrag &amp; Optimierunghttps://www.rfc1437.de/2004/09/23/suchmaschinen-eintrag-amp-optimierung/TeX on Mac OS Xhttps://www.rfc1437.de/2004/09/23/tex-on-mac-os-x/woodshed productions: Dialog zwischen Webdesigner und Suchmaschinen-Robothttps://www.rfc1437.de/2004/09/23/wodshd-prdctns-dlg-zwschn-wbdsgnr-nd-schmschnn-rbt/woodshed productions: Beratung: Suchmaschinen-Optimierunghttps://www.rfc1437.de/2004/09/23/woodshed-productions-beratung-suchmaschinen/XML/HTML parsershttps://www.rfc1437.de/2004/09/23/xml-html-parsers/Zum Kotzen ...https://www.rfc1437.de/2004/09/23/zum-kotzen/Bürofrusthttps://www.rfc1437.de/2004/09/22/buerofrust/datt is der Joerschhttps://www.rfc1437.de/2004/09/22/datt-is-der-joersch/ImageWellhttps://www.rfc1437.de/2004/09/22/imagewell/Inventory: you have no teahttps://www.rfc1437.de/2004/09/22/inventory-you-have-no-tea/lispmeister: Assembler Guru: Randall Hydehttps://www.rfc1437.de/2004/09/22/lispmeister-assembler-guru-randall-hyde/Make hard drives in to speakershttps://www.rfc1437.de/2004/09/22/make-hard-drives-in-to-speakers/Microsoft announces MTP protocolhttps://www.rfc1437.de/2004/09/22/microsoft-announces-mtp-protocol/Der Stift ist stärkerhttps://www.rfc1437.de/2004/09/22/pic-der-stift-ist-staerker/Fahrradparkhaus Münsterhttps://www.rfc1437.de/2004/09/22/pic-fahrradparkhaus-muenster/Krimskramshttps://www.rfc1437.de/2004/09/22/pic-krimskrams/Licht und Schattenhttps://www.rfc1437.de/2004/09/22/pic-licht-und-schatten/Tarnfarbenhttps://www.rfc1437.de/2004/09/22/pic-tarnfarben/Wuschel Seggehttps://www.rfc1437.de/2004/09/22/pic-wuschel-segge/:: radiant data ::https://www.rfc1437.de/2004/09/22/radiant-data/Bosco HOWTOhttps://www.rfc1437.de/2004/09/21/bosco-howto-2/Hamilton der Blut-Transfusion überführthttps://www.rfc1437.de/2004/09/21/hamilton-der-blut-transfusion-ueberfuehrt/Hessen-CDU finanzierte sich zeitweise aus Schwarzgeldhttps://www.rfc1437.de/2004/09/21/hessen-cdu-finanzierte-sich-zeitweise-as-schwrzgld/Microsoft: Keine Lizenz - keine Flickenhttps://www.rfc1437.de/2004/09/21/microsoft-keine-lizenz-keine-flicken/NASA vergibt Großauftrag zum Bau des Atom-Raumschiffs JIMOhttps://www.rfc1437.de/2004/09/21/nasa-vergibt-grossauftrag-zum-ba-ds-tm-rmschffs-jm/Neue Version des PDA-Systems OpenZaurus fertig gestellthttps://www.rfc1437.de/2004/09/21/neue-version-des-pda-systems-openzaurs-frtg-gstllt/Rechte Websites hacken? Hacken?https://www.rfc1437.de/2004/09/21/rechte-websites-hacken-hacken/Voigtlander Bessa R2A R3Ahttps://www.rfc1437.de/2004/09/21/voigtlander-bessa-r2a-r3a/Der Nacktmull: www.kultvieh.de.vuhttps://www.rfc1437.de/2004/09/20/der-nacktmull-wwwkultviehdevu/Digitale Rückwand für Leica-Kamerashttps://www.rfc1437.de/2004/09/20/digitale-rueckwand-fuer-leica-kameras/Flickr Serviceshttps://www.rfc1437.de/2004/09/20/flickr-services/Fortran: 50 Jahre go tohttps://www.rfc1437.de/2004/09/20/fortran-50-jahre-go-to/ITMS Link Makerhttps://www.rfc1437.de/2004/09/20/itms-link-maker/LISA - Intelligent Software Agents for Common Lisphttps://www.rfc1437.de/2004/09/20/lisa-intelligent-software-agents-for-common-lisp/Logilab.org - Constrainthttps://www.rfc1437.de/2004/09/20/logilab-org-constraint/pirate (python on parrot)https://www.rfc1437.de/2004/09/20/pirate-python-on-parrot/PyLog -- A first order logic library in Pythonhttps://www.rfc1437.de/2004/09/20/pylog-a-first-order-logic-library-in-python/Vorwurf des Code-Diebstahls an Mambo-Projekthttps://www.rfc1437.de/2004/09/20/vorwurf-des-code-diebstahls-an-mambo-projekt/Edgewall | Trachttps://www.rfc1437.de/2004/09/19/edgewall-trac/Ian Bickings Wikihttps://www.rfc1437.de/2004/09/19/ian-bickings-wiki/Neuer Hochstrom-Akku von Hamahttps://www.rfc1437.de/2004/09/19/neuer-hochstrom-akku-von-hama/Playboys Open Source Mirrorhttps://www.rfc1437.de/2004/09/19/playboys-open-source-mirror/Sergei Mikhailovich Prokudin-Gorskiihttps://www.rfc1437.de/2004/09/19/sergei-mikhailovich-prokudin-gorskii/Wahlen in Brandenburg und Sachsenhttps://www.rfc1437.de/2004/09/19/wahlen-in-brandenburg-und-sachsen/isnoop.net gmail invite spoolerhttps://www.rfc1437.de/2004/09/18/isnoopnet-gmail-invite-spooler/Microsofts Patent bedroht weiterhin möglichen Anti-Spam-Standardhttps://www.rfc1437.de/2004/09/18/microsofts-patent-bdrht-wtrhn-mglchn-nt-spm-stndrd/osxAudio.comhttps://www.rfc1437.de/2004/09/18/osxaudio-com/Des Kanzlers neue Ideenhttps://www.rfc1437.de/2004/09/17/des-kanzlers-neue-ideen/Factor Beispielserverhttps://www.rfc1437.de/2004/09/17/factor-beispielserver/IO auf Symbian Nokia Handyshttps://www.rfc1437.de/2004/09/17/io-auf-symbian-nokia-handys/Schily: Verfassungsgericht ist schuld am NPD-Erfolghttps://www.rfc1437.de/2004/09/17/schily-verfassungsgericht-ist-schuld-am-npd-erfolg/The GBBopen Projecthttps://www.rfc1437.de/2004/09/17/the-gbbopen-project/Warez-Razzia: FTPWelt-Nutzer müssen mit Strafverfahren rechnenhttps://www.rfc1437.de/2004/09/17/warez-razzia-ftpwelt-ntzr-mssn-mt-strfvrfhrn-rchnn/Zeiss Ikon Kamera mit M Bajonett von Cosina?https://www.rfc1437.de/2004/09/17/zeiss-ikon-kamera-mit-m-bajonett-von-cosina/Bernhard Syndikus in Haft?https://www.rfc1437.de/2004/09/16/bernhard-syndikus-in-haft/Britisches Unterhaus verbietet Fuchsjagdhttps://www.rfc1437.de/2004/09/16/britisches-unterhaus-verbietet-fuchsjagd/GOOhttps://www.rfc1437.de/2004/09/16/goo/TNPI - Homemade (Do It Yourself) .mac using mod_dav and Apachehttps://www.rfc1437.de/2004/09/16/tnpi-homemade-do-it-yourself-mac-using-mod-dav/Aktuelle Gesetzehttps://www.rfc1437.de/2004/09/15/aktuelle-gesetze/Aquariumhttps://www.rfc1437.de/2004/09/15/aquarium-2/Digitaler Vergrößerer für Fotopapierhttps://www.rfc1437.de/2004/09/15/digitaler-vergroesserer-fuer-fotopapier/::jamesoff:: » Check RBL for WordPress 0.1https://www.rfc1437.de/2004/09/15/jamesoff-check-rbl-for-wordpress-0-1/Juristen fordern kostenlose Gesetze für allehttps://www.rfc1437.de/2004/09/15/juristen-fordern-kostenlose-gesetze-fuer-alle/Kodak 35 Rangefinderhttps://www.rfc1437.de/2004/09/15/kodak-35-rangefinder/Konica Minolta Announces Dynax 7D DSLRhttps://www.rfc1437.de/2004/09/15/konica-minolta-announces-dynax-7d-dslr/Kryptonite Evolution 2000 U- Lock hacked by a Bic penhttps://www.rfc1437.de/2004/09/15/kryptonite-evolution-2000-u-lock-hacked-by-a-bc-pn/lemonodor: Lisp for the Mindstormhttps://www.rfc1437.de/2004/09/15/lemonodor-lisp-for-the-mindstorm/MrEd Designerhttps://www.rfc1437.de/2004/09/15/mred-designer/The Robinson House | RSS and Delta Encodinghttps://www.rfc1437.de/2004/09/15/the-robinson-house-rss-and-delta-encoding/Carbon Cannibal: Breaking it down for the hard drivehttps://www.rfc1437.de/2004/09/14/carbon-cannibal-breaking-it-down-for-the-hard-driv/Cayman Updatehttps://www.rfc1437.de/2004/09/14/cayman-update/elephanthttps://www.rfc1437.de/2004/09/14/elephant/newLisp: A better Lisp/Scheme Fusion...https://www.rfc1437.de/2004/09/14/newlisp-a-better-lispscheme-fusion/paranoidfish.org/projects/webkit2pnghttps://www.rfc1437.de/2004/09/14/paranoidfish-org-projects-webkit2png/Schwächen im MIME-Standardhttps://www.rfc1437.de/2004/09/14/schwaechen-im-mime-standard/SCO vs. Linux: Mehr Zeit und mehr Zeilen für SCOhttps://www.rfc1437.de/2004/09/14/sco-vs-linux-mehr-zeit-und-mehr-zeilen-fuer-sco/Streit um Privatkopie und Auskunftsansprüche spitzt sich zuhttps://www.rfc1437.de/2004/09/14/streit-um-privatkopie-und-sknftsnsprch-sptzt-sch-z/USA: Angriffswaffen ab heute wieder legalhttps://www.rfc1437.de/2004/09/14/usa-angriffswaffen-ab-heute-wieder-legal/Wer besticht, kommt auf die Listehttps://www.rfc1437.de/2004/09/14/wer-besticht-kommt-auf-die-liste/2 GB Daten hochgeladenhttps://www.rfc1437.de/2004/09/13/2-gb-daten-hochgeladen/BBC Radio Playerhttps://www.rfc1437.de/2004/09/13/bbc-radio-player/Collations and Linguistic Sortinghttps://www.rfc1437.de/2004/09/13/collations-and-linguistic-sorting/Der letzte Weißwal Europas ist ausgewanderthttps://www.rfc1437.de/2004/09/13/der-letzte-weisswal-europas-ist-ausgewandert/Die Leica und ihre Geschichte - Leica IIIghttps://www.rfc1437.de/2004/09/13/die-leica-und-ihre-geschichte-leica-iiig/Emacs on Aquahttps://www.rfc1437.de/2004/09/13/emacs-on-aqua/Kuchenvernichtung ...https://www.rfc1437.de/2004/09/13/kuchenvernichtung/Mal wieder RSS Bandbreitehttps://www.rfc1437.de/2004/09/13/mal-wieder-rss-bandbreite/mindlube software / developer / revclipshttps://www.rfc1437.de/2004/09/13/mindlube-software-developer-revclips-2/mindlube software / developer / revzeroconfhttps://www.rfc1437.de/2004/09/13/mindlube-software-developer-revzeroconf/mindlube software / emacs for os xhttps://www.rfc1437.de/2004/09/13/mindlube-software-emacs-for-os-x/Kuchenvernichtung ...https://www.rfc1437.de/2004/09/13/pic-kuchenvernichtung/Porkrind Dot Org: Carbon Emacs Porthttps://www.rfc1437.de/2004/09/13/porkrind-dot-org-carbon-emacs-port/Schwarze Katze, Weisser Katerhttps://www.rfc1437.de/2004/09/13/schwarze-katze-weisser-kater-2/Shelltools aus alten Tagenhttps://www.rfc1437.de/2004/09/13/shelltools-aus-alten-tagen/Vim (Vi IMproved) for Mac OSXhttps://www.rfc1437.de/2004/09/13/vim-vi-improved-for-mac-osx/Voigtlander 35/1.2https://www.rfc1437.de/2004/09/13/voigtlander-3512/Moblogging Testhttps://www.rfc1437.de/2004/09/12/moblogging-test/OzTeXhttps://www.rfc1437.de/2004/09/12/oztex/9-11https://www.rfc1437.de/2004/09/11/9-11/RFC 2229https://www.rfc1437.de/2004/09/11/rfc-2229/Squawks of the Parrot: Suboptimal optimizinghttps://www.rfc1437.de/2004/09/11/squawks-of-the-parrot-suboptimal-optimizing/Das Web ist kleinhttps://www.rfc1437.de/2004/09/10/das-web-ist-klein/Kölner Stollwerck-Fabrik wird geschlossenhttps://www.rfc1437.de/2004/09/10/koelner-stollwerck-fabrik-wird-geschlossen/More on Nokia's 9300 Communicatorhttps://www.rfc1437.de/2004/09/10/more-on-nokias-9300-communicator/Rolleiflex Thttps://www.rfc1437.de/2004/09/10/rolleiflex-t/Sony hat doofe Ohrenhttps://www.rfc1437.de/2004/09/10/sony-hat-doofe-ohren/Back ...https://www.rfc1437.de/2004/09/09/back/Nasa-Raumsonde Genesis stürzthttps://www.rfc1437.de/2004/09/09/nasa-raumsonde-genesis-stuerzt/Bloglaub bis Donnerstag Nachthttps://www.rfc1437.de/2004/09/04/bloglaub-bis-donnerstag-nacht/HyperPAD - Application Development Software published by Brightbill-Roberts and IQ Technologies.https://www.rfc1437.de/2004/09/04/hyprpd-pplctn-dvlpmnt-sftwr-pblshd-by-brghtbll-rbr/Perversion, diesmal öffentlich-rechtlichhttps://www.rfc1437.de/2004/09/03/perversion-diesmal-oeffentlich-rechtlich/Streit um Microsofts Patentansprüche lässt Anti-Spam-Standard wackelnhttps://www.rfc1437.de/2004/09/03/strt-m-mcrsfts-ptntnsprch-lsst-nt-spm-stndrd-wckln/Was für einen Scheiss man auf eBay alles finden kannhttps://www.rfc1437.de/2004/09/03/was-fuer-einen-scheiss-man-auf-ebay-alles-fndn-knn/Leica - OBE - Prototyp 2https://www.rfc1437.de/2004/09/02/leica-obe-prototyp-2/Milosevic darf sich nicht mehr selbst verteidigenhttps://www.rfc1437.de/2004/09/02/milosevic-darf-sich-nicht-mehr-selbst-verteidigen/Aufruf zum Trackbackinghttps://www.rfc1437.de/2004/09/01/aufruf-zum-trackbacking/Dialerseite tippt "OK" im Dialer ein [Update]https://www.rfc1437.de/2004/09/01/dialerseite-tippt-ok-im-dialer-ein-update/Dreamcard offers Hypercard-like environmenthttps://www.rfc1437.de/2004/09/01/dreamcard-offers-hypercard-like-environment/Morons in the News: Diebold Machines Appear to Have Built-in Code for Fraudhttps://www.rfc1437.de/2004/09/01/morns-n-th-nws-dbld-mchns-ppr-t-hv-blt-n-cd-fr-frd/Rebellin wird Argentinier: Mit neuem Pass zur WMhttps://www.rfc1437.de/2004/09/01/rebellin-wird-argentinier-mit-neuem-pass-zur-wm/Smalltalk/X - das vergessene Smalltalkhttps://www.rfc1437.de/2004/09/01/smalltalkx-das-vergessene-smalltalk/WebHome - Cookbook - s c h e m a t i c s : c o o k b o o khttps://www.rfc1437.de/2004/09/01/webhome-cookbook-s-c-h-e-m-a-t-i-c-s-c-o-o-k-b-o/Zweifel an der Zuverlässigkeit von eBays Sicherheitskonzepthttps://www.rfc1437.de/2004/09/01/zweifel-an-der-zuverlaessigket-vn-bys-schrhtsknzpt/Apache 2.0 module mod_macrohttps://www.rfc1437.de/2004/08/31/apache-2-0-module-mod-macro/Carvware Softwarehttps://www.rfc1437.de/2004/08/31/carvware-software/eBay.de: Domain-Kapern leicht gemachthttps://www.rfc1437.de/2004/08/31/ebayde-domain-kapern-leicht-gemacht/Google-Mail-Invites-Invasionhttps://www.rfc1437.de/2004/08/31/google-mail-invites-invasion/Hamburger Senat im Law-and-Order-Wahnhttps://www.rfc1437.de/2004/08/31/hamburger-senat-im-law-and-order-wahn/Handys bald mit atomgenauer Uhrzeithttps://www.rfc1437.de/2004/08/31/handys-bald-mit-atomgenauer-uhrzeit/lemonodor: PlaneThttps://www.rfc1437.de/2004/08/31/lemonodor-planet/Project Schematicshttps://www.rfc1437.de/2004/08/31/project-schematics/Shitcannedhttps://www.rfc1437.de/2004/08/31/shitcanned/Skype - Download Skype for Mac OS Xhttps://www.rfc1437.de/2004/08/31/skype-download-skype-for-mac-os-x/spgsqlhttps://www.rfc1437.de/2004/08/31/spgsql/Zach Beanehttps://www.rfc1437.de/2004/08/31/zach-beane/Berlinerin klagt in Karlsruhe gegen Hartzhttps://www.rfc1437.de/2004/08/30/berlinerin-klagt-in-karlsruhe-gegen-hartz/Iohttps://www.rfc1437.de/2004/08/30/io/Powerbook: 1, God: 0https://www.rfc1437.de/2004/08/30/powerbook-1-god-0/Raser unter sichhttps://www.rfc1437.de/2004/08/30/raser-unter-sich/Sony Announces 7 Megapixel Cyber-shot DSC-V3https://www.rfc1437.de/2004/08/30/sony-announces-7-megapixel-cyber-shot-dsc-v3/Visual Studio Magazine - Guest Opinion - Save the Hobbyist Programmerhttps://www.rfc1437.de/2004/08/30/visual-studio-magazin-gst-pnn-sv-th-hbbyst-prgrmmr/Why Most Landscapes Suckhttps://www.rfc1437.de/2004/08/30/why-most-landscapes-suck/Zitat des Tageshttps://www.rfc1437.de/2004/08/30/zitat-des-tages/eBay wird von einem Haufen Idioten betriebenhttps://www.rfc1437.de/2004/08/29/ebay-wird-von-einem-haufen-idioten-betrieben/GmailFS - Gmail Filesystemhttps://www.rfc1437.de/2004/08/29/gmailfs-gmail-filesystem/vnc2swf - Screen Recorderhttps://www.rfc1437.de/2004/08/29/vnc2swf-screen-recorder/Der neue Duden ist dahttps://www.rfc1437.de/2004/08/28/der-neue-duden-ist-da/Ihr wißt es sowieso schon allehttps://www.rfc1437.de/2004/08/28/ihr-wisst-es-sowieso-schon-alle/Leica Announces CM ZOOM Film Camerahttps://www.rfc1437.de/2004/08/28/leica-announces-cm-zoom-film-camera/Maut gegen die Wand fahrenhttps://www.rfc1437.de/2004/08/28/maut-gegen-die-wand-fahren/USB-Cams: Der K(r)ampf mit der GPLhttps://www.rfc1437.de/2004/08/28/usb-cams-der-krampf-mit-der-gpl/Kieferknochen aus Rückenmuskel verpflanzthttps://www.rfc1437.de/2004/08/27/kieferknochen-aus-rueckenmuskel-verpflanzt/librephttps://www.rfc1437.de/2004/08/27/librep/Lush: Lisp Universal SHellhttps://www.rfc1437.de/2004/08/27/lush-lisp-universal-shell/mod_rephttps://www.rfc1437.de/2004/08/27/mod-rep/Rhizomehttps://www.rfc1437.de/2004/08/27/rhizome/SourceForge.net: Project Info - Common Lisp JPEG Libraryhttps://www.rfc1437.de/2004/08/27/sourceforge-net-project-info-common-lisp-jpeg/thunk webserverhttps://www.rfc1437.de/2004/08/27/thunk-webserver/Bigloo homepagehttps://www.rfc1437.de/2004/08/26/bigloo-homepage/Entwickler und ihr Unverständnis von Open Sourcehttps://www.rfc1437.de/2004/08/26/entwickler-und-ihr-unverstaendnis-von-open-source/Linda and Service Oriented Architectureshttps://www.rfc1437.de/2004/08/26/linda-and-service-oriented-architectures/Optimal syntax for Python decoratorshttps://www.rfc1437.de/2004/08/26/optimal-syntax-for-python-decorators/Psychehttps://www.rfc1437.de/2004/08/26/psyche-2/QSchemehttps://www.rfc1437.de/2004/08/26/qscheme/Schemixhttps://www.rfc1437.de/2004/08/26/schemix/Welcome to Myghty!https://www.rfc1437.de/2004/08/26/welcome-to-myghty/A Conversation with Manfrend von Thunhttps://www.rfc1437.de/2004/08/25/a-conversation-with-manfrend-von-thun/Candygramhttps://www.rfc1437.de/2004/08/25/candygram/Debian Backportshttps://www.rfc1437.de/2004/08/25/debian-backports/Google Mail Invites verfügbarhttps://www.rfc1437.de/2004/08/25/google-mail-invites-verfuegbar/Main page for the programming language JOYhttps://www.rfc1437.de/2004/08/25/main-page-for-the-programming-language-joy/The Pentax OptioXhttps://www.rfc1437.de/2004/08/25/the-pentax-optiox/Ilford Goes Into Administrationhttps://www.rfc1437.de/2004/08/24/ilford-goes-into-administration/Microsoft bekommt "sudo-Patent" zugeteilthttps://www.rfc1437.de/2004/08/23/microsoft-bekommt-sudo-patent-zugeteilt/News: Ärger um cdrecordhttps://www.rfc1437.de/2004/08/23/news-aerger-um-cdrecord/SourceForge.net: Project Info - DoXFS Document Management Systemhttps://www.rfc1437.de/2004/08/23/sourceforge-net-project-info-doxfs-document/vnunet.com - Micro Focus lifts and shifts Cobol to Linuxhttps://www.rfc1437.de/2004/08/23/vnunetcom-micro-focus-lifts-and-shifts-cobol-t-lnx/Das Wort zum Montaghttps://www.rfc1437.de/2004/08/22/das-wort-zum-montag/Flambierter Saphirhttps://www.rfc1437.de/2004/08/22/flambierter-saphir/Paolo Amoroso: Update on McCLIM''s Beagle backendhttps://www.rfc1437.de/2004/08/22/paolo-amoroso-update-on-mcclims-beagle-backend/Zukünftige EU-Kommissarin machte Bill Gates zum Ehrendoktorhttps://www.rfc1437.de/2004/08/22/zukuenftige-eu-kommissarin-mcht-bll-gts-zm-hrndktr/Deutschland verliert zwei Goldmedaillen - olympia.ARD.dehttps://www.rfc1437.de/2004/08/21/deutschland-verliert-zwei-goldmedaillen-olympiardd/Form submission and the ENTER key?https://www.rfc1437.de/2004/08/20/form-submission-and-the-enter-key/Hacker-Anriff auf Forschungsstation am Südpolhttps://www.rfc1437.de/2004/08/20/hacker-anriff-auf-forschungsstation-am-suedpol/Internet-Telefonie nicht mit beliebiger Vorwahlhttps://www.rfc1437.de/2004/08/20/internet-telefonie-nicht-mit-beliebiger-vorwahl/PmWiki - sehr weit ausgebautes Wikihttps://www.rfc1437.de/2004/08/20/pmwiki-sehr-weit-ausgebautes-wiki/Zeitung: Behörden können ab 2005 Bankkonten einsehenhttps://www.rfc1437.de/2004/08/20/zeitung-behoerden-koennen-ab-2005-bankkonten-enshn/Agfa knipst Fotogeschäft aushttps://www.rfc1437.de/2004/08/19/agfa-knipst-fotogeschaeft-aus/"Coffee and Cigarettes" - der neue Film von Jim Jarmuschhttps://www.rfc1437.de/2004/08/19/coffee-and-cigarettes-der-neue-film-von-jim-jrmsch/details about the shebang mechanismhttps://www.rfc1437.de/2004/08/19/details-about-the-shebang-mechanism/Infektion durch Fehler im Internet Explorer trotz Service Pack 2https://www.rfc1437.de/2004/08/19/infektion-durch-fhlr-m-ntrnt-xplrr-trtz-srvc-pck-2/Modeling Object-Relational Bridge for pythonhttps://www.rfc1437.de/2004/08/19/modeling-object-relational-bridge-for-python/SCO vs. Linux: IBM schlägt zurückhttps://www.rfc1437.de/2004/08/19/sco-vs-linux-ibm-schlaegt-zurueck/Debakel im Kampf gegen die Uhr - olympia.ARD.dehttps://www.rfc1437.de/2004/08/18/debakel-im-kampf-gegen-die-uhr-olympiaardde/"Ein-Euro-Job" - was ist das?https://www.rfc1437.de/2004/08/18/ein-euro-job-was-ist-das/NewsForge |https://www.rfc1437.de/2004/08/18/newsforge/Olympische Spiele: Leontien Van Moorsels glanzvoller Abschiedhttps://www.rfc1437.de/2004/08/18/olympische-spiele-leontien-vn-mrsls-glnzvllr-bschd/Things to make you go "Ow, stop, my head hurts!"https://www.rfc1437.de/2004/08/18/things-to-make-you-go-ow-stop-my-head-hurts/@https://www.rfc1437.de/2004/08/17/2/Arbeitgeber wollen Beamtenpensionen kürzenhttps://www.rfc1437.de/2004/08/17/arbeitgeber-wollen-beamtenpensionen-kuerzen/FastMail: Fast free or paid IMAP webmail with SMTP, POP & IMAP accesshttps://www.rfc1437.de/2004/08/17/fastmail-fast-fre-r-pd-mp-wbml-wth-smtp-pp-mp-ccss/Google-Suche: Georg Bauerhttps://www.rfc1437.de/2004/08/17/google-suche-georg-bauer/Kinder von Straftätern sollen vom Kindergartenalter ab erfasst und überwacht werdenhttps://www.rfc1437.de/2004/08/17/kndr-vn-strfttrn-slln-vm-kndrgrtnltr-b-rfsst-nd-br/Kanther vor Gericht: "Linke Speerspitze stumpf gemacht" - Politik - SPIEGEL ONLINEhttps://www.rfc1437.de/2004/08/17/knthr-vr-grcht-lnk-sprsptz-stmpf-gmcht-pltk-spgl-n/NPD im Sächsischen Landtag?https://www.rfc1437.de/2004/08/17/npd-im-saechsischen-landtag/Patent auf Verzögerung bei User-Registrierunghttps://www.rfc1437.de/2004/08/17/patent-auf-verzoegerung-bei-user-registrierung/Perl.com: The Evolution of Perl Email Handlinghttps://www.rfc1437.de/2004/08/17/perlcom-the-evolution-of-perl-email-handling/Prozess gegen Kanther beginnthttps://www.rfc1437.de/2004/08/17/prozess-gegen-kanther-beginnt/Schmu bei Steinzeit-Schädeln | stern.de | Wissenschaft&Gesundheit | Menschhttps://www.rfc1437.de/2004/08/17/schmu-bei-stnzt-schdln-strnd-wssnschftgsndht-mnsch/Tauschgeschäftehttps://www.rfc1437.de/2004/08/17/tauschgeschaefte/USA erkennen Sieg von Chavez nicht anhttps://www.rfc1437.de/2004/08/17/usa-erkennen-sieg-von-chavez-nicht-an/Wirbel um Verbraucherschutz-Forum Snakecityhttps://www.rfc1437.de/2004/08/17/wirbel-um-verbraucherschutz-forum-snakecity/Google Search: blogtimes.pnghttps://www.rfc1437.de/2004/08/16/google-search-blogtimespng/GROKLAW zum Businessweek-Artikel über GPLhttps://www.rfc1437.de/2004/08/16/groklaw-zum-businessweek-artikel-ueber-gpl/Index of /pub/sun3arc/BootTapes/3.5https://www.rfc1437.de/2004/08/16/index-of-pub-sun3arc-boottapes-3-5/Index of /pub/sun3arc/BootTapes/Sun3https://www.rfc1437.de/2004/08/16/index-of-pub-sun3arc-boottapes-sun3/Internationale Domains und Wordpresshttps://www.rfc1437.de/2004/08/16/internationale-domains-und-wordpress/Lorem Ipsum - The Motherlodehttps://www.rfc1437.de/2004/08/16/lorem-ipsum-the-motherlode/Metropolitan vor dem Aus?https://www.rfc1437.de/2004/08/16/metropolitan-vor-dem-aus/P2P als Update-Hilfe für Windows unerwünschthttps://www.rfc1437.de/2004/08/16/p2p-als-update-hilfe-fuer-windows-unerwuenscht/The rescue Archiveshttps://www.rfc1437.de/2004/08/16/the-rescue-archives/Zijlaard-van Moorsel still questionable for TThttps://www.rfc1437.de/2004/08/16/zijlaard-van-moorsel-still-questionable-for-tt/brickOS at SourceForgehttps://www.rfc1437.de/2004/08/15/brickos-at-sourceforge/DVD RW/ R/-R[W] for Linuxhttps://www.rfc1437.de/2004/08/15/dvd-rw-r-r-w-for-linux/Erste Eindrücke von Textpatternhttps://www.rfc1437.de/2004/08/15/erste-eindruecke-von-textpattern/mySTEP - aktuelle Version 1.7https://www.rfc1437.de/2004/08/15/mystep-aktuelle-version-17/Olympisches Strassenrennen der Frauenhttps://www.rfc1437.de/2004/08/15/olympisches-strassenrennen-der-frauen/Textpattern und punycodehttps://www.rfc1437.de/2004/08/15/textpattern-und-punycode/Tie-a-Tie.net | Learn How to Tie a Tiehttps://www.rfc1437.de/2004/08/15/tie-a-tie-net-learn-how-to-tie-a-tie/Writing DVDs under Debian GNU/LINUXhttps://www.rfc1437.de/2004/08/15/writing-dvds-under-debian-gnu-linux/Der Mensch als kommerzielle Markehttps://www.rfc1437.de/2004/08/14/der-mensch-als-kommerzielle-marke/Dogma (1999)https://www.rfc1437.de/2004/08/14/dogma-1999/Geschichten aus dem orthografischen Märchenwaldhttps://www.rfc1437.de/2004/08/14/geschichten-aus-dem-orthografischen-maerchenwald/Treble - Ramagananahttps://www.rfc1437.de/2004/08/14/treble-ramaganana/From Python to PLT Schemehttps://www.rfc1437.de/2004/08/13/from-python-to-plt-scheme/Genmanipulation macht Affen zu Workaholicshttps://www.rfc1437.de/2004/08/13/genmanipulation-macht-affen-zu-workaholics/Hasselblad and Imacon Mergehttps://www.rfc1437.de/2004/08/13/hasselblad-and-imacon-merge/"Ich bin für diesen Job nicht qualifiziert"https://www.rfc1437.de/2004/08/13/ich-bin-fuer-diesen-job-nicht-qualifiziert/SCO vs. Linux: Analyse der Analystenhttps://www.rfc1437.de/2004/08/13/sco-vs-linux-analyse-der-analysten/Systemupgrades und ihre Freudenhttps://www.rfc1437.de/2004/08/13/systemupgrades-und-ihre-freuden/The Python Paradoxhttps://www.rfc1437.de/2004/08/13/the-python-paradox/Add-on lenses for your cameraphonehttps://www.rfc1437.de/2004/08/12/add-on-lenses-for-your-cameraphone/Databases and Scshhttps://www.rfc1437.de/2004/08/12/databases-and-scsh/Ein schwarzer Tag für die Menschenrechte in Großbritannienhttps://www.rfc1437.de/2004/08/12/ein-schwarzer-tag-fuer-die-mnschnrcht-n-grssbrtnnn/iPod vs. The Cassettehttps://www.rfc1437.de/2004/08/12/ipod-vs-the-cassette/Scheme Underground Network Packagehttps://www.rfc1437.de/2004/08/12/scheme-underground-network-package/Serverumzug erfolgthttps://www.rfc1437.de/2004/08/12/serverumzug-erfolgt/Stu Nicholls | Cutting Edge CSS | A CSS fonthttps://www.rfc1437.de/2004/08/12/stu-nicholls-cutting-edge-css-a-css-font/The IE weblog makes me laughhttps://www.rfc1437.de/2004/08/12/the-ie-weblog-makes-me-laugh/Tsearch2 - full text extension for PostgreSQLhttps://www.rfc1437.de/2004/08/12/tsearch2-full-text-extension-for-postgresql-2/Bill Clementson: Mandelbrot Set ASCII arthttps://www.rfc1437.de/2004/08/11/bill-clementson-mandelbrot-set-ascii-art/Two terabyte memory cardhttps://www.rfc1437.de/2004/08/11/two-terabyte-memory-card/CLiki : Armed Bear Lisphttps://www.rfc1437.de/2004/08/10/cliki-armed-bear-lisp/MzTake - a Scriptable Debuggerhttps://www.rfc1437.de/2004/08/10/mztake-a-scriptable-debugger/Python on Smalltalk VM?https://www.rfc1437.de/2004/08/10/python-on-smalltalk-vm/Schon gegen Heuschnupfen geimpft?https://www.rfc1437.de/2004/08/10/schon-gegen-heuschnupfen-geimpft/blog: bknr-develhttps://www.rfc1437.de/2004/08/09/blog-bknr-devel/Bluetooth-Attacken auf Handys aus fast 2 km Entfernung - Golem.dehttps://www.rfc1437.de/2004/08/09/bluetooth-attacken-f-hndys-s-fst-2-km-ntfrnng-glmd/Mikel Evins: Clotho statushttps://www.rfc1437.de/2004/08/09/mikel-evins-clotho-status/phil ringnalda dot com: First look at MSN blogshttps://www.rfc1437.de/2004/08/09/phil-ringnalda-dot-com-first-look-at-msn-blogs/Unwetter fluten Teile von NRWhttps://www.rfc1437.de/2004/08/08/unwetter-fluten-teile-von-nrw/Beckstein begrüßt geplante Flüchtlingslager in Afrikahttps://www.rfc1437.de/2004/08/07/beckstein-begruesst-geplante-fluechtlingslgr-n-frk/Lafontaine droht mit Engagement bei Linksparteihttps://www.rfc1437.de/2004/08/07/lafontaine-droht-mit-engagement-bei-linkspartei/NETZEITUNG MUSIC: Pink Floyds «The Wall» wird Musicalhttps://www.rfc1437.de/2004/08/07/netzeitung-music-pink-floyds-the-wall-wird-musical/NETZEITUNG SPORT: Voigt weiter im Gelben Trikothttps://www.rfc1437.de/2004/08/07/netzeitung-sport-voigt-weiter-im-gelben-trikot/Serverumzug verzögert sich etwashttps://www.rfc1437.de/2004/08/07/serverumzug-verzoegert-sich-etwas/Zehntausenden Versicherten wird Rechtsschutz gekündigthttps://www.rfc1437.de/2004/08/07/zehntausenden-versicherten-wird-rechtsschtz-gkndgt/Zur Lage der "Nation Blog" [blogosfear.org]https://www.rfc1437.de/2004/08/07/zur-lage-der-nation-blog-blogosfearorg/Capitol Hill Blue: Dubya Does It Again!https://www.rfc1437.de/2004/08/06/capitol-hill-blue-dubya-does-it-again/SCO vs. Linux: Nach dem Code kommen die Lizenzenhttps://www.rfc1437.de/2004/08/06/sco-vs-linux-nach-dem-code-kommen-die-lizenzen/Simulators: Virtual Machines of the Past (and Future)https://www.rfc1437.de/2004/08/06/simulators-virtual-machines-of-the-past-and-future/Spiegel und Springer: Schreiben wie früherhttps://www.rfc1437.de/2004/08/06/spiegel-und-springer-schreiben-wie-frueher/Strato-Rechenzentren vom TÜV zertifizierthttps://www.rfc1437.de/2004/08/06/strato-rechenzentren-vom-tuev-zertifiziert/T-Systems öffnet Spam-Schleusehttps://www.rfc1437.de/2004/08/06/t-systems-oeffnet-spam-schleuse/Warmhttps://www.rfc1437.de/2004/08/06/warm/Benneter: Anti-Schröder-Brief ist unverschämthttps://www.rfc1437.de/2004/08/05/benneter-anti-schroeder-brief-ist-unverschaemt/Cyclonehttps://www.rfc1437.de/2004/08/04/cyclone/dude, where''s my python?https://www.rfc1437.de/2004/08/04/dude-wheres-my-python/Henri Cartier-Bresson ist tothttps://www.rfc1437.de/2004/08/04/henri-cartier-bresson-ist-tot/iMovie entfernt Kopierschutz von Apples Kaufmusikhttps://www.rfc1437.de/2004/08/04/imovie-entfernt-kopierschutz-von-apples-kaufmusik/News: München legt LiMux aufs Eishttps://www.rfc1437.de/2004/08/04/news-muenchen-legt-limux-aufs-eis/Sicherheitsleck erlaubt Lesen des Linux-Kernel-Speichershttps://www.rfc1437.de/2004/08/04/sicherheitsleck-erlaubt-lesen-des-linx-krnl-spchrs/ALG II: Auch Kinder-Sparbücher werden überprüfthttps://www.rfc1437.de/2004/08/03/alg-ii-auch-kinder-sparbuecher-werden-ueberprueft/Amigo-Vorwürfe gegen Hohlmeiers Bürohttps://www.rfc1437.de/2004/08/03/amigo-vorwuerfe-gegen-hohlmeiers-buero/c't - Artikel-Recherchehttps://www.rfc1437.de/2004/08/03/ct-artikel-recherche/Gmail Full!https://www.rfc1437.de/2004/08/03/gmail-full/Jugendmedienschutz: Alterskontrolle per PostIdent reicht nichthttps://www.rfc1437.de/2004/08/03/jugendmedienschutz-altrskntrll-pr-pstdnt-rcht-ncht/Kabeljau stirbt langsam aushttps://www.rfc1437.de/2004/08/03/kabeljau-stirbt-langsam-aus/Panasonic R3 Reviewhttps://www.rfc1437.de/2004/08/03/panasonic-r3-review/Protesters Once More Arrested for Protesting Bushhttps://www.rfc1437.de/2004/08/03/protesters-once-more-arrested-for-protesting-bush/Bahn will hunderte Ticketschalter schließenhttps://www.rfc1437.de/2004/08/02/bahn-will-hunderte-ticketschalter-schliessen/"Im Zweifelsfall gegen den Angeklagten"https://www.rfc1437.de/2004/08/02/im-zweifelsfall-gegen-den-angeklagten/Klöden zögert mit Vertragsverlängerunghttps://www.rfc1437.de/2004/08/02/kloeden-zoegert-mit-vertragsverlaengerung/Serverarbeiten an meinem Serverhttps://www.rfc1437.de/2004/08/02/serverarbeiten-an-meinem-server/USES AND APPLICATIONS OF 35mm LENSEShttps://www.rfc1437.de/2004/08/01/uses-and-applications-of-35mm-lenses/Ambrai Smalltalkhttps://www.rfc1437.de/2004/07/31/ambrai-smalltalk/Keine Piraten auf dem (T)Raumschiffhttps://www.rfc1437.de/2004/07/31/keine-piraten-auf-dem-traumschiff/Kritik an Vatikan-Brief zu Feminismushttps://www.rfc1437.de/2004/07/31/kritik-an-vatikan-brief-zu-feminismus/Paarzeitfahren in Bühl: Sieg an CSC-Duo Voigt und Julichhttps://www.rfc1437.de/2004/07/31/paarzeitfahren-in-buehl-sieg-an-csc-du-vgt-nd-jlch/Ein Hoch auf die Systemadministratoren ...https://www.rfc1437.de/2004/07/30/ein-hoch-auf-die-systemadministratoren/Finanzdaten online -- unerreichbarhttps://www.rfc1437.de/2004/07/30/finanzdaten-online-unerreichbar/Hightech-Konzerne wollen "JPEG-Patent" kippenhttps://www.rfc1437.de/2004/07/30/hightech-konzerne-wollen-jpeg-patent-kippen/Musikgruppe Rammstein lässt Rammsteinfan.de schließenhttps://www.rfc1437.de/2004/07/30/musikgruppe-rammstein-laesst-rammsteinfand-schlssn/That Gunk on Your Carhttps://www.rfc1437.de/2004/07/30/that-gunk-on-your-car/Bosco HOWTOhttps://www.rfc1437.de/2004/07/29/bosco-howto/IronPython - A fast Python implementation for .NET and Monohttps://www.rfc1437.de/2004/07/29/ironpython-a-fast-python-implementatin-fr-nt-nd-mn/Jake Ludington's Digital Lifestyle - Using the tools that make computing fun.https://www.rfc1437.de/2004/07/29/jk-ldngtns-dgtl-lfstyl-sng-th-tls-tht-mk-cmptng-fn/Last.FM - Your personal music network - Personalised online radio stationhttps://www.rfc1437.de/2004/07/29/lastfm-your-personal-msc-ntwrk-prsnlsd-nln-rd-sttn/safeurl.dehttps://www.rfc1437.de/2004/07/29/safeurlde/Siemens überrascht mit Gewinnsprunghttps://www.rfc1437.de/2004/07/29/siemens-ueberrascht-mit-gewinnsprung/Kommunen klagen über Pflicht zu barrierefreien Internetseitenhttps://www.rfc1437.de/2004/07/28/kommunen-klagen-ueber-pflicht-zu-barrrfrn-ntrntstn/Castro attackiert Bush: Kuba kein Ziel für Sextouristenhttps://www.rfc1437.de/2004/07/27/castro-attackiert-bush-kuba-kein-ziel-fuer-sxtrstn/Current Books about Iconhttps://www.rfc1437.de/2004/07/27/current-books-about-icon/Hagen Boßdorf und das journalistische Selbstverständnishttps://www.rfc1437.de/2004/07/27/hagen-bossdorf-und-das-journalistsch-slbstvrstndns/Österreichische Außenministerin wird EU-Kommissarinhttps://www.rfc1437.de/2004/07/27/oesterreichische-aussenministerin-wird-eu-kommssrn/Statistisches Bundesamt: Euro kein Teurohttps://www.rfc1437.de/2004/07/27/statistisches-bundesamt-euro-kein-teuro/Streit bei T-Mobile spitzt sich zuhttps://www.rfc1437.de/2004/07/27/streit-bei-t-mobile-spitzt-sich-zu/Unicon.org - the Unicon Programming Language Home Pagehttps://www.rfc1437.de/2004/07/27/uniconorg-the-unicon-programming-language-home-pag/Debatte über Arbeitsrecht wird schärferhttps://www.rfc1437.de/2004/07/26/debatte-ueber-arbeitsrecht-wird-schaerfer/Geoffroy-Klammeraffehttps://www.rfc1437.de/2004/07/26/geoffroy-klammeraffe/Re: Sender-ID and free softwarehttps://www.rfc1437.de/2004/07/26/re-sender-id-and-free-software/Schwerwiegende Sicherheitsmängel bei T-Comhttps://www.rfc1437.de/2004/07/26/schwerwiegende-sicherheitsmaengel-bei-t-com/The Piri Reis Maphttps://www.rfc1437.de/2004/07/26/the-piri-reis-map/Big Lebowski, The (1998)https://www.rfc1437.de/2004/07/25/big-lebowski-the-1998/Going all loopy about loupeshttps://www.rfc1437.de/2004/07/25/going-all-loopy-about-loupes/Tja, Tour 2004 zuendehttps://www.rfc1437.de/2004/07/25/tja-tour-2004-zuende/Guantanamo-Feeling: Die falschen Stempel im Passhttps://www.rfc1437.de/2004/07/24/guantanamo-feeling-die-falschen-stempel-im-pass/Phishing ist ja nix neues ...https://www.rfc1437.de/2004/07/24/phishing-ist-ja-nix-neues/Salmonellen-Keim in Putenfleisch entdeckthttps://www.rfc1437.de/2004/07/24/salmonellen-keim-in-putenfleisch-entdeckt/SCO vs. Linux: BayStar will Klage einreichenhttps://www.rfc1437.de/2004/07/24/sco-vs-linux-baystar-will-klage-einreichen/The Cyborg Name Generator: HUGOhttps://www.rfc1437.de/2004/07/24/the-cyborg-name-generator-hugo/Deutsches Gericht bestätigt Wirksamkeit der GPLhttps://www.rfc1437.de/2004/07/23/deutsches-gericht-bestaetigt-wirksamkeit-der-gpl/"Judas" Voigt: "Ich hätte heulen können"https://www.rfc1437.de/2004/07/22/judas-voigt-ich-haette-heulen-koennen/Monitor gucken macht depressivhttps://www.rfc1437.de/2004/07/22/monitor-gucken-macht-depressiv/Nach Freispruch bleiben moralische Zweifelhttps://www.rfc1437.de/2004/07/22/nach-freispruch-bleiben-moralische-zweifel/Run, baby, run - Armstrong-Freundin Sheryl Crow bei der Tourhttps://www.rfc1437.de/2004/07/22/run-baby-run-armstrong-freundin-sheryl-crw-b-dr-tr/Spammer ignoriere ich ja üblicherweise ...https://www.rfc1437.de/2004/07/22/spammer-ignoriere-ich-ja-ueblicherweise/Blog-Dienst 20six übernimmt myBlog.dehttps://www.rfc1437.de/2004/07/21/blog-dienst-20six-uebernimmt-myblogde/Den "Radsportfans" ins Stammbuchhttps://www.rfc1437.de/2004/07/21/den-radsportfans-ins-stammbuch/SCO Claims Linux Lifted ELF (LinuxWorld)https://www.rfc1437.de/2004/07/21/sco-claims-linux-lifted-elf-linuxworld/Web-Loch beim Sat.1-Internetexpertenhttps://www.rfc1437.de/2004/07/21/web-loch-beim-sat1-internetexperten/Alles meckert über Armstrong ...https://www.rfc1437.de/2004/07/20/alles-meckert-ueber-armstrong/Japan droht mit Austritt aus Walfangkommissionhttps://www.rfc1437.de/2004/07/20/japan-droht-mit-austritt-aus-walfangkommission/Nur mal so am Randehttps://www.rfc1437.de/2004/07/20/nur-mal-so-am-rande/Urteil zu AG-Domains verschärfthttps://www.rfc1437.de/2004/07/20/urteil-zu-ag-domains-verschaerft/Wenn die rosa Rennwurst platzthttps://www.rfc1437.de/2004/07/20/wenn-die-rosa-rennwurst-platzt/Wo ich gerade bei Verlogenheit binhttps://www.rfc1437.de/2004/07/20/wo-ich-gerade-bei-verlogenheit-bin/Derek''s Rantings and Musings: Those Little Oval Stickers on Carshttps://www.rfc1437.de/2004/07/19/dereks-rantings-and-msngs-ths-lttl-vl-stckrs-n-crs/Emotionale Entscheidunghttps://www.rfc1437.de/2004/07/19/emotionale-entscheidung/Firefox - Switchhttps://www.rfc1437.de/2004/07/19/firefox-switch/Publizieren im Internet lohnt sichhttps://www.rfc1437.de/2004/07/19/publizieren-im-internet-lohnt-sich/Stehradlerhttps://www.rfc1437.de/2004/07/19/stehradler/Ein nationaler Held der USA wird festgenommenhttps://www.rfc1437.de/2004/07/18/ein-nationaler-held-der-usa-wird-festgenommen/English or nothttps://www.rfc1437.de/2004/07/18/english-or-not/Gott spricht durch Bush?https://www.rfc1437.de/2004/07/18/gott-spricht-durch-bush/"She''s lost control"https://www.rfc1437.de/2004/07/18/shes-lost-control/Bundesagentur für Arbeit: Ungereimtheiten um Millionen-Auftraghttps://www.rfc1437.de/2004/07/17/bundesagentur-fuer-arbeit-ungeremthtn-m-mllnn-ftrg/Erster Virus für Windows Mobile/Pocket PChttps://www.rfc1437.de/2004/07/17/erster-virus-fuer-windows-mobilepocket-pc/Marsroboter "Spirit" und "Opportunity" weiterhin einsatzfähighttps://www.rfc1437.de/2004/07/17/marsroboter-spirit-und-opportunity-weitrhn-nstzfhg/Sheriff Kochs und Deputy Bouffiers Possehttps://www.rfc1437.de/2004/07/17/sheriff-kochs-und-deputy-bouffiers-posse/Voeckler und Voigt - zwei klasse Kämpferhttps://www.rfc1437.de/2004/07/17/voeckler-und-voigt-zwei-klasse-kaempfer/Boo - Homehttps://www.rfc1437.de/2004/07/16/boo-home/Deutsche Bank warnt vor Softwarepatentenhttps://www.rfc1437.de/2004/07/16/deutsche-bank-warnt-vor-softwarepatenten/Mal wieder nur Ticker, aber ...https://www.rfc1437.de/2004/07/16/mal-wieder-nur-ticker-aber/Die Zeiten werden wohl sehr hart ...https://www.rfc1437.de/2004/07/15/die-zeiten-werden-wohl-sehr-hart/Schwangerenberatung auch ohne Schein förderwürdighttps://www.rfc1437.de/2004/07/15/schwangerenberatung-auch-ohne-schein-foerderwuerdg/Leider nur Ticker, aber die Etappe war wohl Klassehttps://www.rfc1437.de/2004/07/14/leider-nur-ticker-aber-die-etappe-war-wohl-klasse/Patentstreithttps://www.rfc1437.de/2004/07/14/patentstreit/Qualitätsjournalismus de Luxehttps://www.rfc1437.de/2004/07/14/qualitaetsjournalismus-de-luxe/The Discovery of Umamihttps://www.rfc1437.de/2004/07/14/the-discovery-of-umami/The Long Now Foundation: Feynman und die Connection Machinehttps://www.rfc1437.de/2004/07/14/the-long-now-foundation-feynman-und-di-cnnctn-mchn/classic camerahttps://www.rfc1437.de/2004/07/13/classic-camera/gmail ist seltsamhttps://www.rfc1437.de/2004/07/13/gmail-ist-seltsam/McEwen mag ich den Sieg heute nicht gönnenhttps://www.rfc1437.de/2004/07/13/mcewen-mag-ich-den-sieg-heute-nicht-goennen/Syd Barretthttps://www.rfc1437.de/2004/07/13/syd-barrett/Wegmanns Tour-Premiere: "Da hatte ich einen kleinen Schock "https://www.rfc1437.de/2004/07/13/wegmanns-tour-premiere-da-hatte-ich-enn-klnn-schck/Windows XP sicherer als Linux und Mac OSX!https://www.rfc1437.de/2004/07/13/windows-xp-sicherer-als-linux-und-mac-osx/Aids-Konferenz streitet über Kondomehttps://www.rfc1437.de/2004/07/12/aids-konferenz-streitet-ueber-kondome/Bush will »notfalls« US-Wahlen verschiebenhttps://www.rfc1437.de/2004/07/12/bush-will-notfalls-us-wahlen-verschieben/DaimlerChrysler droht mit Produktionsverlagerunghttps://www.rfc1437.de/2004/07/12/daimlerchrysler-droht-mit-produktionsverlagerung/FCKeditor - The text editor for Internethttps://www.rfc1437.de/2004/07/12/fckeditor-the-text-editor-for-internet/gppl's nesthttps://www.rfc1437.de/2004/07/12/gppl-s-nest/gut getroffenhttps://www.rfc1437.de/2004/07/12/gut-getroffen/Gwydion Dylan: Overviewhttps://www.rfc1437.de/2004/07/12/gwydion-dylan-overview/ICANN bleibt beim Sitefinder harthttps://www.rfc1437.de/2004/07/12/icann-bleibt-beim-sitefinder-hart/LWN: Oracle patents content management systemshttps://www.rfc1437.de/2004/07/12/lwn-oracle-patents-content-management-systems/Marlais Sourceforge Projecthttps://www.rfc1437.de/2004/07/12/marlais-sourceforge-project/Missbrauchsskandal an österreichischem Priesterseminarhttps://www.rfc1437.de/2004/07/12/missbrauchsskandal-an-oesterreichischem-pristrsmnr/Rent A Coder - Automated Form Fillerhttps://www.rfc1437.de/2004/07/12/rent-a-coder-automated-form-filler/Sinnkrisen bei Bloggern?https://www.rfc1437.de/2004/07/12/sinnkrisen-bei-bloggern/%u2018Building Accessible Websites%u2019 serializationhttps://www.rfc1437.de/2004/07/12/u2018building-accessible-websites-u2019/Wer ruft denn da an?https://www.rfc1437.de/2004/07/12/wer-ruft-denn-da-an/Coriolis Systems :: Products :: iPartitionhttps://www.rfc1437.de/2004/07/11/coriolis-systems-products-ipartition/SubrosaSoft.com - Product Informationhttps://www.rfc1437.de/2004/07/11/subrosasoft-com-product-information/Arbeitgeber kritisieren Vorschläge zur Urlaubskürzunghttps://www.rfc1437.de/2004/07/10/arbeitgeber-kritisieren-vorschlaege-zur-urlbskrzng/Haselbacher: Gebrochener Lenker Sturzursachehttps://www.rfc1437.de/2004/07/10/haselbacher-gebrochener-lenker-sturzursache/Sensor Brushhttps://www.rfc1437.de/2004/07/10/sensor-brush/Fast Ego-Blogginghttps://www.rfc1437.de/2004/07/09/fast-ego-blogging/Hamilton erlitt schwere Prellungenhttps://www.rfc1437.de/2004/07/09/hamilton-erlitt-schwere-prellungen/Haselbacher: Kein Becken- oder Beinbruchhttps://www.rfc1437.de/2004/07/09/haselbacher-kein-becken-oder-beinbruch/Indien und Bangladesch streiten um Elefanten im Grenzgebiethttps://www.rfc1437.de/2004/07/09/indien-und-bangladesch-streiten-um-lfntn-m-grnzgbt/Klage gegen Adobe wegen Patentverletzung durch Acrobathttps://www.rfc1437.de/2004/07/09/klage-gegen-adobe-wegen-patentverletzung-drch-crbt/Man Accused of AltaVista Theft Working on MSN Search?https://www.rfc1437.de/2004/07/09/man-accused-of-altavista-theft-working-on-msn-srch/Petacchi and Cipollini both leave Tourhttps://www.rfc1437.de/2004/07/09/petacchi-and-cipollini-both-leave-tour/Professoren wegen Online-Betrug vor Gerichthttps://www.rfc1437.de/2004/07/09/professoren-wegen-online-betrug-vor-gericht/SCO vs. Linux: SCO fordert ungehinderten Zugang zu den Beweisenhttps://www.rfc1437.de/2004/07/09/sco-vs-linux-sco-fordert-ungehndrtn-zgng-z-dn-bwsn/Urteil: Besitz kleiner Cannabis-Mengen weiter strafbarhttps://www.rfc1437.de/2004/07/09/urteil-besitz-kleiner-cannabis-mengen-weitr-strfbr/XHTML Validator to RSS : Ben Hammersleyhttps://www.rfc1437.de/2004/07/09/xhtml-validator-to-rss-ben-hammersley/Abkommen über Spam unter der Ägide der ITU?https://www.rfc1437.de/2004/07/08/abkommen-ueber-spam-unter-der-aegide-der-itu/BDI fordert eine Woche Urlaub wenigerhttps://www.rfc1437.de/2004/07/08/bdi-fordert-eine-woche-urlaub-weniger/Epson RD-1 Beispielehttps://www.rfc1437.de/2004/07/08/epson-rd-1-beispiele/Wenn sich Sprinter belauern ...https://www.rfc1437.de/2004/07/08/wenn-sich-sprinter-belauern/Zafira nach Polen wegen Rüstungsdeal?https://www.rfc1437.de/2004/07/08/zafira-nach-polen-wegen-ruestungsdeal/PyLindahttps://www.rfc1437.de/2004/07/07/pylinda/Rettung für Hamburger Filmförderunghttps://www.rfc1437.de/2004/07/07/rettung-fuer-hamburger-filmfoerderung/Tour de France: Iban Mayo erlebt sein Waterloohttps://www.rfc1437.de/2004/07/07/tour-de-france-iban-mayo-erlebt-sein-waterloo/UN: Spam-Problem in zwei Jahren lösbarhttps://www.rfc1437.de/2004/07/07/un-spam-problem-in-zwei-jahren-loesbar/Bundeskanzler: Patente stärken Innovationswillen und Investitionsbereitschafthttps://www.rfc1437.de/2004/07/06/bndsknzlr-ptnt-strkn-nnvtnswlln-nd-nvsttnsbrtschft/Dialer-Abzocke mit dem Namen c't unterbundenhttps://www.rfc1437.de/2004/07/06/dialer-abzocke-mit-dem-namen-ct-unterbunden/Ex-Kulturhauptstadtskandidat ohne Kulturdezernenten?https://www.rfc1437.de/2004/07/06/ex-kulturhauptstadtskandidat-ohne-kulturdezernentn/iPods a security risk, warns complete idiothttps://www.rfc1437.de/2004/07/06/ipods-a-security-risk-warns-complete-idiot/The internet is shithttps://www.rfc1437.de/2004/07/06/the-internet-is-shit/Weils gestern um Online-Oldies ging ...https://www.rfc1437.de/2004/07/06/weils-gestern-um-online-oldies-ging/Widerstand gegen 50-Stunden-Wochehttps://www.rfc1437.de/2004/07/06/widerstand-gegen-50-stunden-woche/Alte Säcke onlinehttps://www.rfc1437.de/2004/07/05/alte-saecke-online/Ego-Blogginghttps://www.rfc1437.de/2004/07/05/ego-blogging/MUTE: Simple, Anonymous File Sharinghttps://www.rfc1437.de/2004/07/05/mute-simple-anonymous-file-sharing/Schröder regt Entlastung der Pharmaindustrie anhttps://www.rfc1437.de/2004/07/05/schroeder-regt-entlastung-der-pharmaindustrie-an/Steffen Wesemann von Auto angefahrenhttps://www.rfc1437.de/2004/07/05/steffen-wesemann-von-auto-angefahren/Backlight-Kits für HP Handhelds | backlight4you.comhttps://www.rfc1437.de/2004/07/04/backlight-kits-fuer-hp-handhelds-backlight4you-com/Bericht: Software-Projekt für Finanzämter gescheiterthttps://www.rfc1437.de/2004/07/04/bericht-software-projekt-fuer-finanzaemter-gschtrt/Digital Research's GEM (Intel 8086 version!)https://www.rfc1437.de/2004/07/04/digital-research-s-gem-intel-8086-version/DOS Palmtopshttps://www.rfc1437.de/2004/07/04/dos-palmtops/GEM for HP200LXhttps://www.rfc1437.de/2004/07/04/gem-for-hp200lx/HP 100LX/200LX Technical Informationhttps://www.rfc1437.de/2004/07/04/hp-100lx-200lx-technical-information-2/HP 200 LXhttps://www.rfc1437.de/2004/07/04/hp-200-lx/Index of /ftp/software/lotu[...]/Magellan/2.x/mischttps://www.rfc1437.de/2004/07/04/index-of-ftp-software-lotu-magellan-2-x-misc/Index of /ftp/software/lotu[...]top/Agenda/dos/2.0https://www.rfc1437.de/2004/07/04/index-of-ftp-software-lotu-top-agenda-dos-2-0/Infrared communication with the palmtop HP 200LXhttps://www.rfc1437.de/2004/07/04/infrared-communication-with-the-palmtop-hp-200lx/MindMap/LX - MM/LXhttps://www.rfc1437.de/2004/07/04/mindmap-lx-mm-lx/Morons in the News: Conservative response to Fahrenheit 9/11: A conservative film festivalhttps://www.rfc1437.de/2004/07/04/mrns-n-th-nws-cnsrvtv-rspns-t-fhrnht-911-cnsrvtv/The S.U.P.E.R. Site by Categoryhttps://www.rfc1437.de/2004/07/04/the-s-u-p-e-r-site-by-category/WWW/LX - the Internet Solution in Your Pocket!https://www.rfc1437.de/2004/07/04/www-lx-the-internet-solution-in-your-pocket-2/Zypries plant Abgabe auf PCs und Druckerhttps://www.rfc1437.de/2004/07/04/zypries-plant-abgabe-auf-pcs-und-drucker/BSI stellt Behörden-Desktop zum Download bereithttps://www.rfc1437.de/2004/07/03/bsi-stellt-behoerden-desktop-zum-download-bereit/Gewerkschafter und SPD-Kritiker gründen Linksbündnishttps://www.rfc1437.de/2004/07/03/gewerkschafter-und-spd-kritiker-gruenden-lnksbndns/Index of /afs/cs.cmu.edu/pr[...]ng/scheme/impl/s88https://www.rfc1437.de/2004/07/03/index-of-afs-cs-cmu-edu-pr-ng-scheme-impl-s88/Index of /afs/cs.cmu.edu/pr[...]pl/pcscheme/genevahttps://www.rfc1437.de/2004/07/03/index-of-afs-cs-cmu-edu-pr-pl-pcscheme-geneva/Index of /pub/scheme-repository/imp/pcschemehttps://www.rfc1437.de/2004/07/03/index-of-pub-scheme-repository-imp-pcscheme/LX2Palmhttps://www.rfc1437.de/2004/07/03/lx2palm/Palmtop Information Centralhttps://www.rfc1437.de/2004/07/03/palmtop-information-central/SPD-Politiker kehren ver.di den Rückenhttps://www.rfc1437.de/2004/07/03/spd-politiker-kehren-verdi-den-ruecken/The HP Palmtop Paper Onlinehttps://www.rfc1437.de/2004/07/03/the-hp-palmtop-paper-online/The HP200LX TCP/IP Suite Home Pagehttps://www.rfc1437.de/2004/07/03/the-hp200lx-tcp-ip-suite-home-page/The Mysterious Web Page of Dr. Dubshttps://www.rfc1437.de/2004/07/03/the-mysterious-web-page-of-dr-dubs/The PAL Pagehttps://www.rfc1437.de/2004/07/03/the-pal-page/TuxMobil: UniX on the HP200LX Palmtophttps://www.rfc1437.de/2004/07/03/tuxmobil-unix-on-the-hp200lx-palmtop/Weniger Urlaub für mehr Jobs?https://www.rfc1437.de/2004/07/03/weniger-urlaub-fuer-mehr-jobs/Agenda Links Pagehttps://www.rfc1437.de/2004/07/02/agenda-links-page/Antrittsredehttps://www.rfc1437.de/2004/07/02/antrittsrede/Clothohttps://www.rfc1437.de/2004/07/02/clotho/Dashboard IIIhttps://www.rfc1437.de/2004/07/02/dashboard-iii/Glibc-based Debian GNU/kFreeBSDhttps://www.rfc1437.de/2004/07/02/glibc-based-debian-gnu-kfreebsd/Open Source Applications Foundationhttps://www.rfc1437.de/2004/07/02/open-source-applications-foundation/Aahattanhttps://www.rfc1437.de/2004/07/02/pic-aahattan/Blauer Wuschelhttps://www.rfc1437.de/2004/07/02/pic-blauer-wuschel/Ein nicht ganz weites Feldhttps://www.rfc1437.de/2004/07/02/pic-ein-nicht-ganz-weites-feld/Rosa Wuschelhttps://www.rfc1437.de/2004/07/02/pic-rosa-wuschel/Symbolkräftige Entscheidung gegen Softwarepatente in Den Haaghttps://www.rfc1437.de/2004/07/02/symbolkraeftige-entscheidung-ggn-sftwrptnt-n-dn-hg/Knowledge management, data mining and information mapping with Grokker.https://www.rfc1437.de/2004/07/01/knowledge-management-data-mining-and-information/Leica Announces Summilux-M f/1.4/50mm ASPH. Lenshttps://www.rfc1437.de/2004/07/01/leica-announces-summilux-m-f1450mm-asph-lens/"Lord of the Rings" hat jetzt künstlichen Trabantenhttps://www.rfc1437.de/2004/07/01/lord-of-the-rings-hat-jetzt-kuenstlichen-trabanten/Sicherheitsloch in iptables bei Linux-Kernel 2.6https://www.rfc1437.de/2004/07/01/sicherheitsloch-in-iptables-bei-linux-kernel-26/Verspielt Siemens seinen guten Ruf?https://www.rfc1437.de/2004/07/01/verspielt-siemens-seinen-guten-ruf/Xanalys LispWorks Press Releasehttps://www.rfc1437.de/2004/07/01/xanalys-lispworks-press-release/Dashboardhttps://www.rfc1437.de/2004/06/30/dashboard/Justizministerium will Online-Kopierern weitere Steine in den Weg legenhttps://www.rfc1437.de/2004/06/30/justizministerim-wll-nln-kprrn-wtr-stn-n-dn-wg-lgn/Tour-Aus für Jaksche nach Trainingsunfallhttps://www.rfc1437.de/2004/06/30/tour-aus-fuer-jaksche-nach-trainingsunfall/Bergen Linux User Grouphttps://www.rfc1437.de/2004/06/29/bergen-linux-user-group/Rechtsfreie Räume sind illegalhttps://www.rfc1437.de/2004/06/29/rechtsfreie-raeume-sind-illegal/Save the iPodhttps://www.rfc1437.de/2004/06/29/save-the-ipod/Urteil: Beamtenbesoldung nach Leistung ist rechtenshttps://www.rfc1437.de/2004/06/29/urteil-beamtenbesoldung-nach-leistung-ist-rechtens/Cupertino, start your photocopiers!https://www.rfc1437.de/2004/06/28/cupertino-start-your-photocopiers/Eingeschränkte Microdrives in Creatives MP3-Player Muvohttps://www.rfc1437.de/2004/06/28/eingeschraenkte-microdrives-in-creatvs-mp3-plyr-mv/Kate Bush Discography - Albums - This Woman's Workhttps://www.rfc1437.de/2004/06/28/kate-bush-discography-albums-this-woman-s-work/Levenshteinhttps://www.rfc1437.de/2004/06/28/levenshtein/mono » Fast Company's Linking Policyhttps://www.rfc1437.de/2004/06/28/mono-fast-companys-linking-policy/Weitere Bilder vom Taschentuchbaumhttps://www.rfc1437.de/2004/06/28/weitere-bilder-vom-taschentuchbaum/Blackbox wird Open Sourcehttps://www.rfc1437.de/2004/06/27/blackbox-wird-open-source/»Eisbär« gehört Grönemeyerhttps://www.rfc1437.de/2004/06/27/eisbaer-gehoert-groenemeyer/Ärzte laufen Sturm gegen Bürgerversicherunghttps://www.rfc1437.de/2004/06/26/aerzte-laufen-sturm-gegen-buergerversicherung/"Bernd das Brot" muss nur noch tagsüber leidenhttps://www.rfc1437.de/2004/06/26/bernd-das-brot-muss-nur-noch-tagsueber-leiden/Digital Camera with 30x Optical Zoomhttps://www.rfc1437.de/2004/06/26/digital-camera-with-30x-optical-zoom/Größte Blüten-Produktion seit Euro-Einführung entdeckthttps://www.rfc1437.de/2004/06/26/groesste-blueten-produktion-seit-eur-nfhrng-ntdckt/idw - Uni Bremen: Frühe Bausteine des Genoms im Meteoriten entdeckthttps://www.rfc1437.de/2004/06/26/idw-uni-bremen-fruehe-bastn-ds-gnms-m-mtrtn-ntdckt/LinuxTag: Global File System unter GPLhttps://www.rfc1437.de/2004/06/26/linuxtag-global-file-system-unter-gpl/Mark/Space launches The Missing Sync 4.0https://www.rfc1437.de/2004/06/26/markspace-launches-the-missing-sync-40/Mehr Arbeit, weniger Geldhttps://www.rfc1437.de/2004/06/26/mehr-arbeit-weniger-geld/Union fordert mehr Sexhttps://www.rfc1437.de/2004/06/26/union-fordert-mehr-sex/Berlusconi will Wahl nicht verloren habenhttps://www.rfc1437.de/2004/06/22/berlusconi-will-wahl-nicht-verloren-haben/OpenMCL Documentationhttps://www.rfc1437.de/2004/06/22/openmcl-documentation/PostgreSQL News 3rd Beta of Slony Master -&gt; Multi-slave replication systemhttps://www.rfc1437.de/2004/06/22/postgresql-news-3rd-beta-of-slony-master-gt-multi/Free fonts by the tons at Fontazm! M Fontshttps://www.rfc1437.de/2004/06/21/free-fonts-by-the-tons-at-fontazm-m-fonts/Image theft htaccess and online aggregators from Ben Hammersley's Dangerous Precedenthttps://www.rfc1437.de/2004/06/21/mg-thft-htccss-nd-nln-ggrgtrs-frm-bn-hmmrslys-dngr/Apple - RSS Informationhttps://www.rfc1437.de/2004/06/20/apple-rss-information/Canon EOS 10D - un-funktionales Designhttps://www.rfc1437.de/2004/06/20/canon-eos-10d-un-funktionales-design/Medication Nationhttps://www.rfc1437.de/2004/06/20/medication-nation/Ullrich gewinnt Tour de Suisse im Zeitfahrenhttps://www.rfc1437.de/2004/06/20/ullrich-gewinnt-tour-de-suisse-im-zeitfahren/XchemeRPChttps://www.rfc1437.de/2004/06/20/xchemerpc-2/Nochmal iTunes - diesmal Problemehttps://www.rfc1437.de/2004/06/18/nochmal-itunes-diesmal-probleme/Satine for Pythonhttps://www.rfc1437.de/2004/06/18/satine-for-python/Stimmungsmache für Studiengebührenhttps://www.rfc1437.de/2004/06/18/stimmungsmache-fuer-studiengebuehren/This is a "stress position"https://www.rfc1437.de/2004/06/18/this-is-a-stress-position/Tour de Suisse: Ullrich weiter im Gelben Trikothttps://www.rfc1437.de/2004/06/18/tour-de-suisse-ullrich-weiter-im-gelben-trikot/Herkulesstaude - eine brennende Gefahrhttps://www.rfc1437.de/2004/06/17/herkulesstaude-eine-brennende-gefahr/iTunes Music Store RSS Generatorhttps://www.rfc1437.de/2004/06/17/itunes-music-store-rss-generator/News: Microsoft distanziert sich von AdTI-Studiehttps://www.rfc1437.de/2004/06/17/news-microsoft-distanziert-sich-von-adti-studie/Auto Bellows PC für Contaxhttps://www.rfc1437.de/2004/06/16/auto-bellows-pc-fuer-contax/Tour de France-Aus für Vinokourovhttps://www.rfc1437.de/2004/06/16/tour-de-france-aus-fuer-vinokourov/Gravierende Sicherheitslücke im Linux-Kernel 2.4 und 2.6https://www.rfc1437.de/2004/06/15/gravierende-sicherheitsluecke-im-lnx-krnl-24-nd-26/iTunes Music Storehttps://www.rfc1437.de/2004/06/15/itunes-music-store/Secret Code: 00000000https://www.rfc1437.de/2004/06/15/secret-code-00000000/Tony's Taschenrechner-Sammlunghttps://www.rfc1437.de/2004/06/15/tonys-taschenrechner-sammlung/Just posted! Canon EOS-1D Mark II Reviewhttps://www.rfc1437.de/2004/06/14/just-posted-canon-eos-1d-mark-ii-review/Vinokourov mit Verdacht auf Brüchehttps://www.rfc1437.de/2004/06/14/vinokourov-mit-verdacht-auf-brueche/Contax RTS Macro Photography - Part Ihttps://www.rfc1437.de/2004/06/13/contax-rts-macro-photography-part-i/Contax RTS Series SLR Camera Modelshttps://www.rfc1437.de/2004/06/13/contax-rts-series-slr-camera-models/EU Wahl fast rumhttps://www.rfc1437.de/2004/06/13/eu-wahl-fast-rum/Radio UserLand: Bootstrap: How to redirect an RSS feedhttps://www.rfc1437.de/2004/06/13/radio-userland-bootstrap-how-to-redirect-an-rss/Blauer Brief für den Bundeswahlleiterhttps://www.rfc1437.de/2004/06/12/blauer-brief-fuer-den-bundeswahlleiter/Dunkler einsamer Saturnmond bekam irdischen Besuchhttps://www.rfc1437.de/2004/06/12/dunkler-einsamer-saturnmond-bekam-irdischen-besuch/Ehlert und Partnerhttps://www.rfc1437.de/2004/06/12/ehlert-und-partner/German licenses launchedhttps://www.rfc1437.de/2004/06/12/german-licenses-launched/Heute vor einem Jahrhttps://www.rfc1437.de/2004/06/12/heute-vor-einem-jahr-2/IBM erhält Patent für Statusanzeige der Feststelltaste bei PC-Tastaturenhttps://www.rfc1437.de/2004/06/12/ibm-rhlt-ptnt-fr-sttsnzg-dr-fststlltst-b-pc-tsttrn/Lupen - Lupe, Handlupen, Taschenlupen, Leuchtlupen, Messlupen, Standlupen, Einschlaglupen, Arbeitslupen, uvm. im Lupen Online Shophttps://www.rfc1437.de/2004/06/12/lupen-lupe-handlupen-taschenlupen-leuchtlupen/Radford photographer to face trial in Jan.https://www.rfc1437.de/2004/06/12/radford-photographer-to-face-trial-in-jan/UserFriendly: They took the "We" out of "Weblog"https://www.rfc1437.de/2004/06/12/userfriendly-they-took-the-we-out-of-weblog/Zurück in der Zukunfthttps://www.rfc1437.de/2004/06/12/zurueck-in-der-zukunft/ASCII - ISO 8859-1 Table with HTML Entity Nameshttps://www.rfc1437.de/2004/06/11/ascii-iso-8859-1-table-with-html-entity-names/Heute vor einem Jahrhttps://www.rfc1437.de/2004/06/11/heute-vor-einem-jahr/Katastrophe! Weltuntergang! Anarchie!https://www.rfc1437.de/2004/06/11/katastrophe-weltuntergang-anarchie/New image gallery plugin - needs testershttps://www.rfc1437.de/2004/06/11/new-image-gallery-plugin-needs-testers/Ray Charles gestorbenhttps://www.rfc1437.de/2004/06/11/ray-charles-gestorben/The 'process' Python modulehttps://www.rfc1437.de/2004/06/11/the-process-python-module/Threadframe: multithreaded stack frame extraction for Pythonhttps://www.rfc1437.de/2004/06/11/threadframe-multithreaded-stack-frame-extraction/Vino schneller als die Polizei erlaubt: Führerschein weghttps://www.rfc1437.de/2004/06/11/vino-schneller-als-die-polizei-erlaubt-fhrrschn-wg/Makroaufnahmen mal etwas andershttps://www.rfc1437.de/2004/06/10/makroaufnahmen-mal-etwas-anders/microlen.htmhttps://www.rfc1437.de/2004/06/10/microlen-htm/Naturkunde mit dem Mikroskop als Hobbyhttps://www.rfc1437.de/2004/06/10/naturkunde-mit-dem-mikroskop-als-hobby/Netzbetreiber bauen Kostenfallen ins Handy einhttps://www.rfc1437.de/2004/06/10/netzbetreiber-bauen-kostenfallen-ins-handy-ein/Stachelansatz eines Kaktushttps://www.rfc1437.de/2004/06/10/pic-stachelansatz-eines-kaktus/Schärfentiefe-, Abbildungsmaßstab und Nahlinsenrechnerhttps://www.rfc1437.de/2004/06/10/schaerfentiefe-abbildungsmassstab-und/Kaktusmilbehttps://www.rfc1437.de/2004/06/10/story-kaktusmilbe/Bus- und Bahnfahren für Behinderte teurer?https://www.rfc1437.de/2004/06/09/bus-und-bahnfahren-fuer-behinderte-teurer/Kino: Unnötige Heldenhttps://www.rfc1437.de/2004/06/09/kino-unnoetige-helden/Koch für neue Atomkraftwerke in Deutschlandhttps://www.rfc1437.de/2004/06/09/koch-fuer-neue-atomkraftwerke-in-deutschland/PyWorkhttps://www.rfc1437.de/2004/06/09/pywork/Xoltar Python Pagehttps://www.rfc1437.de/2004/06/09/xoltar-python-page/Blümchenbilderhttps://www.rfc1437.de/2004/06/08/bluemchenbilder/Europawahl - geht hin und wählt!https://www.rfc1437.de/2004/06/08/europawahl-geht-hin-und-waehlt/Angleridylle und Hochhäuserhttps://www.rfc1437.de/2004/06/08/pic-angleridylle-und-hochhaeuser/Blömkeshttps://www.rfc1437.de/2004/06/08/pic-bloemkes/Hauseingängehttps://www.rfc1437.de/2004/06/08/pic-hauseingaenge/PS/2 and MCA Historyhttps://www.rfc1437.de/2004/06/08/ps-2-and-mca-history/Rebuttal to Ken Brownhttps://www.rfc1437.de/2004/06/08/rebuttal-to-ken-brown/iSync ist Moppelkotzehttps://www.rfc1437.de/2004/06/07/isync-ist-moppelkotze/QDB: Quote #330261https://www.rfc1437.de/2004/06/07/qdb-quote-330261/Reagan und die Sowjetshttps://www.rfc1437.de/2004/06/07/reagan-und-die-sowjets/Another Awesome Algorithm Archivehttps://www.rfc1437.de/2004/06/06/another-awesome-algorithm-archive/Berlusconi will den Kalender ändernhttps://www.rfc1437.de/2004/06/06/berlusconi-will-den-kalender-aendern/Burningbird » Glory Days: The Parable of the Languageshttps://www.rfc1437.de/2004/06/06/burningbird-glory-days-the-parable-of-the-languags/Canon EOS 300D Digital Rebel Tips and Trickshttps://www.rfc1437.de/2004/06/06/canon-eos-300d-digital-rebel-tips-and-tricks/Ian's Shoelace Site - Slipping Shoelace Knots?https://www.rfc1437.de/2004/06/06/ians-shoelace-site-slipping-shoelace-knots/Merkel will AKW-Laufzeiten verlängernhttps://www.rfc1437.de/2004/06/06/merkel-will-akw-laufzeiten-verlaengern/PyPerSyst - Orbtech Wikihttps://www.rfc1437.de/2004/06/06/pypersyst-orbtech-wiki/The Spinning Cube of Potential Doomhttps://www.rfc1437.de/2004/06/06/the-spinning-cube-of-potential-doom/Upcoming Qonos Scientific PDAhttps://www.rfc1437.de/2004/06/06/upcoming-qonos-scientific-pda/Adapters: Olympus E-1https://www.rfc1437.de/2004/06/05/adapters-olympus-e-1/digitale Fine Art Prints - Barytabzug - Iris Giclee Printshttps://www.rfc1437.de/2004/06/05/digitale-fine-art-prints-barytabzug-iris-giclee/Fiskus drohen Steuerausfälle wegen Falls der Mannesmann-Aktienhttps://www.rfc1437.de/2004/06/05/fiskus-drohen-steuerausfll-wgn-flls-dr-mnnsmnn-ktn/Schwarzweiss-Magazin Wollstein 6/2003https://www.rfc1437.de/2004/06/05/schwarzweiss-magazin-wollstein-6-2003/Wahnsinnig spannende Deutschlandtour-Etappehttps://www.rfc1437.de/2004/06/05/wahnsinnig-spannende-deutschlandtour-etappe/BugMeNot.comhttps://www.rfc1437.de/2004/06/04/bugmenotcom/E-MailRelay -- SMTP proxy and store-and-forward MTAhttps://www.rfc1437.de/2004/06/04/e-mailrelay-smtp-proxy-and-store-and-forward-mta/fotoKASTEN - Digitale Fotoentwicklung im Internet - //https://www.rfc1437.de/2004/06/04/fotokasten-digitale-fotoentwicklung-im-internet/mtaproxy.py - Teergrube utuility for SpamBayeshttps://www.rfc1437.de/2004/06/04/mtaproxy-py-teergrube-utuility-for-spambayes/RoughingIT - pyblosxom 1.0 Releasehttps://www.rfc1437.de/2004/06/04/roughingit-pyblosxom-10-release/STIM - MouseSitehttps://www.rfc1437.de/2004/06/04/stim-mousesite/Stopping spam with the Anti-Spam-SMTP-Proxy (ASSP)https://www.rfc1437.de/2004/06/04/stopping-spam-with-the-anti-spam-smtp-proxy-assp-2/Toll Collect: Mauthöhe kann nicht geändert werdenhttps://www.rfc1437.de/2004/06/04/toll-collect-mauthoehe-kann-nicht-geaendert-werden/Tollef Fog Heen : tech/Debian/2004-03-14-15-55_greylistinghttps://www.rfc1437.de/2004/06/04/tollef-fog-heen-tech-debian-2004-03-14-15-55/Tollef Fog Heen : Yahoo Breaking SMTP Standardshttps://www.rfc1437.de/2004/06/04/tollef-fog-heen-yahoo-breaking-smtp-standards/Gallery :: your photos on your websitehttps://www.rfc1437.de/2004/06/03/gallery-your-photos-on-your-website-2/Girls are Evil - mathematischer Beweishttps://www.rfc1437.de/2004/06/03/girls-are-evil-mathematischer-beweis/Omikron Basic 8.0 runs natively on Mac OS Xhttps://www.rfc1437.de/2004/06/03/omikron-basic-80-runs-natively-on-mac-os-x/Photo Organizerhttps://www.rfc1437.de/2004/06/03/photo-organizer/SCO vs. Linux: Mission impossiblehttps://www.rfc1437.de/2004/06/03/sco-vs-linux-mission-impossible/Silverlab Partnerprogrammhttps://www.rfc1437.de/2004/06/03/silverlab-partnerprogramm/Symantec-Chef: Windows ist nicht unsicherer als Linuxhttps://www.rfc1437.de/2004/06/03/symantec-chef-windows-ist-nicht-unsicherer-als-lnx/United States Patent: 6,727,830https://www.rfc1437.de/2004/06/03/united-states-patent-6727830/EditThisPagePHPhttps://www.rfc1437.de/2004/06/02/editthispagephp/SCO vs. Linux: Investor Baystar steigt aushttps://www.rfc1437.de/2004/06/02/sco-vs-linux-investor-baystar-steigt-aus/SF-Autor Bradbury: "Michael Moore ist ein fürchterlicher Mensch" - Kultur - SPIEGEL ONLINEhttps://www.rfc1437.de/2004/06/02/sf-tr-brdbry-mchl-mr-st-n-frchtrlchr-mnsch-kltr-sp/Vellum: a weblogging system in Pythonhttps://www.rfc1437.de/2004/06/02/vellum-a-weblogging-system-in-python/Abenteuer Erde - Zum Geierhttps://www.rfc1437.de/2004/06/01/abenteuer-erde-zum-geier/drbs - Distributed Replicated Blob Serverhttps://www.rfc1437.de/2004/06/01/drbs-distributed-replicated-blob-server/GDL - GNU Data Languagehttps://www.rfc1437.de/2004/06/01/gdl-gnu-data-language/Maypole / Apache::MVChttps://www.rfc1437.de/2004/06/01/maypole-apache-mvc/mnot%u2019s Web log: Ubiquitious Fragment Identifiershttps://www.rfc1437.de/2004/06/01/mnot-u2019s-web-log-ubiquitious-fragment/paramiko: ssh2 protocol for pythonhttps://www.rfc1437.de/2004/06/01/paramiko-ssh2-protocol-for-python/PYSH: A Python Shellhttps://www.rfc1437.de/2004/06/01/pysh-a-python-shell/SoftPear - PC/Mac Interoperabilityhttps://www.rfc1437.de/2004/06/01/softpear-pcmac-interoperability/Sonys Clié nimmt Abschiedhttps://www.rfc1437.de/2004/06/01/sonys-cli-nimmt-abschied/Sun Insists that Red Hat Linux is Proprietaryhttps://www.rfc1437.de/2004/06/01/sun-insists-that-red-hat-linux-is-proprietary/Telekom will Kundendaten von Internetnutzern einsammelnhttps://www.rfc1437.de/2004/06/01/telekom-will-kundendaten-von-internetnutzrn-nsmmln/Acratech, Inc: Precision Machining &amp; Photographic Equipmenthttps://www.rfc1437.de/2004/05/31/acratech-inc-precision-machining-amp-photographic/Curdled (1996)https://www.rfc1437.de/2004/05/31/curdled-1996/Jan Ullrich in der Deutschlandtourhttps://www.rfc1437.de/2004/05/31/jan-ullrich-in-der-deutschlandtour/KODAK PROFESSIONAL READYLOAD Einzelblatt-Packs und Holderhttps://www.rfc1437.de/2004/05/31/kodak-professional-readyload-einzelblatt-packs/Lycos - webhostinghttps://www.rfc1437.de/2004/05/31/lycos-webhosting/Mark Lentczner's Journalhttps://www.rfc1437.de/2004/05/31/mark-lentczners-journal/Syndication-Formate Ursache fortschreitender Demenz?https://www.rfc1437.de/2004/05/31/syndication-formate-ursache-fortschreitender-demnz/Taxi (1998)https://www.rfc1437.de/2004/05/31/taxi-1998/The Contiki Operating Systemhttps://www.rfc1437.de/2004/05/31/the-contiki-operating-system/Web Development Bookmarkletshttps://www.rfc1437.de/2004/05/31/web-development-bookmarklets/79.Hainleite-Rundfahrt: Wrolich gewinnt - Ullrich Fünfterhttps://www.rfc1437.de/2004/05/30/79hainleite-rundfahrt-wrolich-gewinnt-ullrch-fnftr/Gerolsteiner verlängert Sponsoren-Vertrag bis 2008https://www.rfc1437.de/2004/05/30/gerolsteiner-verlaengert-sponsoren-vertrag-bs-2008/Kamera-Speicherkarte für 12500 Eurohttps://www.rfc1437.de/2004/05/30/kamera-speicherkarte-fuer-12500-euro/Altes Schiffshebewerk Henrichenburghttps://www.rfc1437.de/2004/05/29/altes-schiffshebewerk-henrichenburg/Dampfmaschinehttps://www.rfc1437.de/2004/05/29/pic-dampfmaschine/Papachristoshttps://www.rfc1437.de/2004/05/29/pic-papachristos/Schiffshebewerk Henrichenburghttps://www.rfc1437.de/2004/05/29/pic-schiffshebewerk-henrichenburg/0190-Betreiber mahnt Dialerschutz.de abhttps://www.rfc1437.de/2004/05/28/0190-betreiber-mahnt-dialerschutzde-ab/Allergienhttps://www.rfc1437.de/2004/05/28/allergien/Der Kalif von Kölle, der Staatsfeind Nr.1!https://www.rfc1437.de/2004/05/28/der-kalif-von-koelle-der-staatsfeind-nr1/Jim Jarmusch mal wiederhttps://www.rfc1437.de/2004/05/28/jim-jarmusch-mal-wieder/Justizministerin verteidigt Software-Patentehttps://www.rfc1437.de/2004/05/28/justizministerin-verteidigt-software-patente/Umfrage: Deutschland bei Top-Managern beliebthttps://www.rfc1437.de/2004/05/28/umfrage-deutschland-bei-top-managern-beliebt/=F6 über Debian ...https://www.rfc1437.de/2004/05/27/f6-ueber-debian/Eigentümer von ish stimmen Verkauf an Kabel Deutschland zuhttps://www.rfc1437.de/2004/05/26/eigentuemer-von-ish-stimmen-verkf-n-kbl-dtschlnd-z/Mal wieder ein paar Bilderhttps://www.rfc1437.de/2004/05/26/mal-wieder-ein-paar-bilder/Blütenstandhttps://www.rfc1437.de/2004/05/26/pic-bluetenstand/Stadthaushttps://www.rfc1437.de/2004/05/26/pic-stadthaus/Stühlehttps://www.rfc1437.de/2004/05/26/pic-stuehle/Datenbank Ingres wird Open Sourcehttps://www.rfc1437.de/2004/05/25/datenbank-ingres-wird-open-source/digitalkamera.de: DxO Optics Pro-Bildkorrektursoftware jetzt erhältlichhttps://www.rfc1437.de/2004/05/25/digitalkmrd-dx-ptcs-pr-bldkrrktrsftwr-jtzt-rhltlch/Enblendhttps://www.rfc1437.de/2004/05/25/enblend/Haeufige Augenkrankheitenhttps://www.rfc1437.de/2004/05/25/haeufige-augenkrankheiten/Little Snitchhttps://www.rfc1437.de/2004/05/25/little-snitch-2/Noise Ninja 2.0 Betahttps://www.rfc1437.de/2004/05/25/noise-ninja-2-0-beta/Skype for Mac OS X announced by developerhttps://www.rfc1437.de/2004/05/25/skype-for-mac-os-x-announced-by-developer/Xblendhttps://www.rfc1437.de/2004/05/25/xblend/Kann mal jemand das Internet reparieren?https://www.rfc1437.de/2004/05/24/kann-mal-jemand-das-internet-reparieren/Malformed Proteins Found in Sheep Musclehttps://www.rfc1437.de/2004/05/24/malformed-proteins-found-in-sheep-muscle/Prothonhttps://www.rfc1437.de/2004/05/24/prothon/randomthoughts: PyLucenehttps://www.rfc1437.de/2004/05/24/randomthoughts-pylucene/Telefon-Spamming bleibt verbotenhttps://www.rfc1437.de/2004/05/24/telefon-spamming-bleibt-verboten/Was TV-Magazine angeht...https://www.rfc1437.de/2004/05/24/was-tv-magazine-angeht/Die schlimmste aller Susenhttps://www.rfc1437.de/2004/05/23/die-schlimmste-aller-susen/Giro: Montgomery brach sich Schulterblatthttps://www.rfc1437.de/2004/05/23/giro-montgomery-brach-sich-schulterblatt/tagesschau.de: Der Triumph des Horst Köhlerhttps://www.rfc1437.de/2004/05/23/tagesschaude-der-triumph-des-horst-koehler/Eurocity Stadtfest in Münsterhttps://www.rfc1437.de/2004/05/22/eurocity-stadtfest-in-muenster/Moores "Fahrenheit 9/11" gewinnt Goldene Palmehttps://www.rfc1437.de/2004/05/22/moores-fahrenheit-911-gewinnt-goldene-palme/Eurocity Stadtfest Münsterhttps://www.rfc1437.de/2004/05/22/pic-eurocity-stadtfest-muenster/Kitschhttps://www.rfc1437.de/2004/05/22/pic-kitsch/Soundstickshttps://www.rfc1437.de/2004/05/22/pic-soundsticks/Rubicode - RCDefaultApphttps://www.rfc1437.de/2004/05/22/rubicode-rcdefaultapp/WordPress 1.2https://www.rfc1437.de/2004/05/22/wordpress-12/Canon Releases EOS Viewer Utilityhttps://www.rfc1437.de/2004/05/21/canon-releases-eos-viewer-utility/Die Geschichte der Programmiersprachenhttps://www.rfc1437.de/2004/05/21/die-geschichte-der-programmiersprachen/Kubrick für Kaninchenhttps://www.rfc1437.de/2004/05/21/kubrick-fuer-kaninchen/Last Man Standinghttps://www.rfc1437.de/2004/05/21/last-man-standing/NeuroKode Labs, LLC: remoteDhttps://www.rfc1437.de/2004/05/21/neurokode-labs-llc-remoted/Tausende Briten mit BSE-Variante infiziert?https://www.rfc1437.de/2004/05/21/tausende-briten-mit-bse-variante-infiziert/Wissenschaftler im Clinch mit Software-Anbieterhttps://www.rfc1437.de/2004/05/21/wissenschaftler-im-clinch-mit-software-anbieter/ASPN : Python Cookbook : Finding out the number of values the caller is expectinghttps://www.rfc1437.de/2004/05/20/aspn-python-cookbook-finding-out-the-number-of/Bildernachschubhttps://www.rfc1437.de/2004/05/20/bildernachschub/E-Mail-Server der Bundesregierung nahezu lahm gelegthttps://www.rfc1437.de/2004/05/20/e-mail-server-der-bundesregierung-nahezu-lahm-glgt/Köln, Essen oder Münster?https://www.rfc1437.de/2004/05/20/koeln-essen-oder-muenster/Alt und Neuhttps://www.rfc1437.de/2004/05/20/pic-alt-und-neu/Baggerarmhttps://www.rfc1437.de/2004/05/20/pic-baggerarm/Die Schraube ist nicht locker ...https://www.rfc1437.de/2004/05/20/pic-die-schraube-ist-nicht-locker/Fundushttps://www.rfc1437.de/2004/05/20/pic-fundus/Harley Davidsonhttps://www.rfc1437.de/2004/05/20/pic-harley-davidson/Holzmöbelhttps://www.rfc1437.de/2004/05/20/pic-holzmoebel/Schön am Vatertag, schaurig am Wochenendehttps://www.rfc1437.de/2004/05/20/schoen-am-vatertag-schaurig-am-wochenende/SCO vs. Linux: SCO fordert Offenlegung der FSFhttps://www.rfc1437.de/2004/05/20/sco-vs-linux-sco-fordert-offenlegung-der-fsf/Softwarepatentgegner werfen Brüssel Verlogenheit vorhttps://www.rfc1437.de/2004/05/20/softwarepatentgegner-werfen-bruessel-verlogenht-vr/"Von Null auf Linux in 6 Monaten? Nur durch kopierten Code."https://www.rfc1437.de/2004/05/20/von-null-auf-linux-in-6-monaten-nur-durch-kprtn-cd/WordPress Spielereienhttps://www.rfc1437.de/2004/05/20/wordpress-spielereien/WordPress Support %u203A Static "like" pageshttps://www.rfc1437.de/2004/05/20/wordpress-support-u203a-static-like-pages/ASPN : Python Cookbook : Transactionable Objectshttps://www.rfc1437.de/2004/05/19/aspn-python-cookbook-transactionable-objects/drupal.orghttps://www.rfc1437.de/2004/05/19/drupalorg/Python MQI Interface - pymqi. Version 0.5chttps://www.rfc1437.de/2004/05/19/python-mqi-interface-pymqi-version-0-5c/Releases | drupal.orghttps://www.rfc1437.de/2004/05/19/releases-drupal-org/Daring Fireball: Markdown Syntax Documentationhttps://www.rfc1437.de/2004/05/18/daring-fireball-markdown-syntax-documentation/Eine Ohrfeige für den Kanzlerhttps://www.rfc1437.de/2004/05/18/eine-ohrfeige-fuer-den-kanzler/EU-Staaten über Softwarepatente einig [Update]https://www.rfc1437.de/2004/05/18/eu-staaten-ueber-softwarepatente-einig-update/Hausärzte drohen Krankenkassen-Boykotthttps://www.rfc1437.de/2004/05/18/hausaerzte-drohen-krankenkassen-boykott/Nu Cardboard: Kangapy: Componentshttps://www.rfc1437.de/2004/05/18/nu-cardboard-kangapy-components/papercut.org - nntp server for the masseshttps://www.rfc1437.de/2004/05/18/papercut-org-nntp-server-for-the-masses/Rob Galbraith DPI: Digital Photo Professional, EOS Viewer Utility coming May 20https://www.rfc1437.de/2004/05/18/rb-glbrth-dp-dgtl-pht-prfssnl-s-vwr-tlty-cmng-my-2/Shrook 2 - RSS and Atom for Mac OS Xhttps://www.rfc1437.de/2004/05/18/shrook-2-rss-and-atom-for-mac-os-x/Struck: Keine Strafe für Wolffsohnhttps://www.rfc1437.de/2004/05/18/struck-keine-strafe-fuer-wolffsohn/Akte X Wiederholungenhttps://www.rfc1437.de/2004/05/17/akte-x-wiederholungen/b2evolution: Homehttps://www.rfc1437.de/2004/05/17/b2evolution-home/Computation Streaming in Pythonhttps://www.rfc1437.de/2004/05/17/computation-streaming-in-python/entrian.com - goto for Python - goto for Pythonhttps://www.rfc1437.de/2004/05/17/entrian-com-goto-for-python-goto-for-python-2/EU genehmigt Verkauf von Genmaishttps://www.rfc1437.de/2004/05/17/eu-genehmigt-verkauf-von-genmais/EU-Kommission gibt Flugpassagierdaten für USA freihttps://www.rfc1437.de/2004/05/17/eu-kommission-gibt-flugpassagierdaten-fuer-usa-fre/Exchange verliert Mailshttps://www.rfc1437.de/2004/05/17/exchange-verliert-mails/Open Source release of Frontier?https://www.rfc1437.de/2004/05/17/open-source-release-of-frontier/PyOne - one-liner helper for Pythonhttps://www.rfc1437.de/2004/05/17/pyone-one-liner-helper-for-python/SourceForge: pyawkhttps://www.rfc1437.de/2004/05/17/sourceforge-pyawk/WordPress Wiki - Comment Moderation Pluginhttps://www.rfc1437.de/2004/05/17/wordpress-wiki-comment-moderation-plugin/WordPress Wiki - WP Pluginshttps://www.rfc1437.de/2004/05/17/wordpress-wiki-wp-plugins/Der Taschentuchbaum ...https://www.rfc1437.de/2004/05/16/der-taschentuchbaum/Freedom 0 [dive into mark]https://www.rfc1437.de/2004/05/16/freedom-0-dive-into-mark/Freshly Squeezed Software - PulpFiction - Advanced News Reader/Aggregator for Mac OS Xhttps://www.rfc1437.de/2004/05/16/freshly-squeezed-software-pulpfiction-advanced/Longhorn goes to pieces | CNET News.comhttps://www.rfc1437.de/2004/05/16/longhorn-goes-to-pieces-cnet-newscom/Metakit stats/verify utilityhttps://www.rfc1437.de/2004/05/16/metakit-stats-verify-utility/Botanischer Garten Münsterhttps://www.rfc1437.de/2004/05/16/pic-botanischer-garten-muenster/Der Taschentuchbaumhttps://www.rfc1437.de/2004/05/16/pic-der-taschentuchbaum/Und noch ein paar mehr Bilder aus dem Botanischen Gartenhttps://www.rfc1437.de/2004/05/16/und-noch-ein-paar-mehr-bilder-aus-dem-btnschn-grtn/Beware Mac OS X Trojan AppleScript applethttps://www.rfc1437.de/2004/05/14/beware-mac-os-x-trojan-applescript-applet/Das geheime Hollywood-Filmstudiohttps://www.rfc1437.de/2004/05/14/das-geheime-hollywood-filmstudio/Friedensfahrt: Zabel gewinnt siebte Etappehttps://www.rfc1437.de/2004/05/14/friedensfahrt-zabel-gewinnt-siebte-etappe/Unsicheres Surfen mit Safarihttps://www.rfc1437.de/2004/05/14/unsicheres-surfen-mit-safari/Vatikan warnt vor christlich-muslimischer Ehehttps://www.rfc1437.de/2004/05/14/vatikan-warnt-vor-christlich-muslimischer-ehe/Vermisst in NRW: Knapp eine Milliarde Eurohttps://www.rfc1437.de/2004/05/14/vermisst-in-nrw-knapp-eine-milliarde-euro/Bundesregierung im Lager der Softwarepatentkritikerhttps://www.rfc1437.de/2004/05/13/bundesregierung-im-lager-der-softwarepatentkritikr/Fünf Freunde des Sasser-Autors unter Verdachthttps://www.rfc1437.de/2004/05/13/fuenf-freunde-des-sasser-autors-unter-verdacht/Googlespammer sind auch Erpresserhttps://www.rfc1437.de/2004/05/13/googlespammer-sind-auch-erpresser/Grüne fordern Rauswurf von Wolffsohnhttps://www.rfc1437.de/2004/05/13/gruene-fordern-rauswurf-von-wolffsohn/Hackers and Paintershttps://www.rfc1437.de/2004/05/13/hackers-and-painters/HTMLTemplatehttps://www.rfc1437.de/2004/05/13/htmltemplate/Jim Jarmusch ist ein Kinogotthttps://www.rfc1437.de/2004/05/13/jim-jarmusch-ist-ein-kinogott/Kfz-Kennzeichen-Abmahner zieht vor Gerichthttps://www.rfc1437.de/2004/05/13/kfz-kennzeichen-abmahner-zieht-vor-gericht/News: »Debian GNU/Linux« ist wieder dahttps://www.rfc1437.de/2004/05/13/news-debian-gnulinux-ist-wieder-da/OpenBSD-Chef de Raadt kritisiert patentierten TCP-Fixhttps://www.rfc1437.de/2004/05/13/openbsd-chef-de-raadt-kritisiert-patentirtn-tcp-fx/The Joy of Specshttps://www.rfc1437.de/2004/05/13/the-joy-of-specs/BBC develops 'alternative' codec | The Registerhttps://www.rfc1437.de/2004/05/12/bbc-develops-alternative-codec-the-register/Emu48 for Mac OS Xhttps://www.rfc1437.de/2004/05/12/emu48-for-mac-os-x/Firewalls und Komplexitäthttps://www.rfc1437.de/2004/05/12/firewalls-und-komplexitaet/IKRK: Unsere Diskretion schützt Menschenlebenhttps://www.rfc1437.de/2004/05/12/ikrk-unsere-diskretion-schuetzt-menschenleben/iSync und Tagesterminehttps://www.rfc1437.de/2004/05/12/isync-und-tagestermine/Rau mahnt Eliten: "Alle Maßstäbe verloren"https://www.rfc1437.de/2004/05/12/rau-mahnt-eliten-alle-massstaebe-verloren/Weitere Bluetooth-Handys gegen Hacker-Angriffe anfällighttps://www.rfc1437.de/2004/05/12/weitere-bluetooth-handys-gegen-hacker-angrff-nfllg/iTunes-Knacker: Neuer Name, neuer Versuchhttps://www.rfc1437.de/2004/05/11/itunes-knacker-neuer-name-neuer-versuch/Neues Handy - neue Problemehttps://www.rfc1437.de/2004/05/11/neues-handy-neue-probleme/PearPC - Abouthttps://www.rfc1437.de/2004/05/11/pearpc-about/Photographic Solutions, Inc. - New Productshttps://www.rfc1437.de/2004/05/11/photographic-solutions-inc-new-products/Der Preis ist heißhttps://www.rfc1437.de/2004/05/10/der-preis-ist-heiss/Just posted! Leica Digilux 2 reviewhttps://www.rfc1437.de/2004/05/10/just-posted-leica-digilux-2-review/Spätestens ...https://www.rfc1437.de/2004/05/10/spaetestens/PyInvokehttps://www.rfc1437.de/2004/05/09/pyinvoke/Rsync Vault Managerhttps://www.rfc1437.de/2004/05/09/rsync-vault-manager/SCO vs. Linux: Die Royal Bank of Canada will aussteigenhttps://www.rfc1437.de/2004/05/08/sco-vs-linux-die-royal-bank-of-canada-will-ausstgn/Sven J hat verschissen...https://www.rfc1437.de/2004/05/08/sven-j-hat-verschissen/TimeCopy Conduithttps://www.rfc1437.de/2004/05/08/timecopy-conduit/Schöner rechnenhttps://www.rfc1437.de/2004/05/07/schoener-rechnen/Suse Live CD offen für Angriffe übers Netzhttps://www.rfc1437.de/2004/05/07/suse-live-cd-offen-fuer-angriffe-uebers-netz/Calerga - SysQuakehttps://www.rfc1437.de/2004/05/06/calerga-sysquake/Du rückständiger Besucher unserer Homepage!https://www.rfc1437.de/2004/05/06/du-rueckstaendiger-besucher-unserer-homepage/LispMe Homepagehttps://www.rfc1437.de/2004/05/06/lispme-homepage/Schröder drängt Banken zu Fusionenhttps://www.rfc1437.de/2004/05/06/schroeder-draengt-banken-zu-fusionen/There are marks at the base of my PowerBook's display screenhttps://www.rfc1437.de/2004/05/06/there-are-marks-at-the-base-f-my-pwrbks-dsply-scrn/Wirtschaft lehnt Ausbildungspakt abhttps://www.rfc1437.de/2004/05/06/wirtschaft-lehnt-ausbildungspakt-ab/A.L.Digital : The Bunker : Presshttps://www.rfc1437.de/2004/05/05/a-l-digital-the-bunker-press/Art of B/W #005 @Digital Outback Photohttps://www.rfc1437.de/2004/05/05/art-of-bw-005-digital-outback-photo/Boyz need Toyz: Sony Clie PEG TH55https://www.rfc1437.de/2004/05/05/boyz-need-toyz-sony-clie-peg-th55/«Longhorn» nur für Super-PCshttps://www.rfc1437.de/2004/05/05/longhorn-nur-fuer-super-pcs/Security Corporation - Nokia 6310ihttps://www.rfc1437.de/2004/05/05/security-corporation-nokia-6310i/smittyware.com - upIRC - IRC Client for Palm OS®https://www.rfc1437.de/2004/05/05/smittyware-com-upirc-irc-client-for-palm-os/:: t e k t o n i c a ::https://www.rfc1437.de/2004/05/05/t-e-k-t-o-n-i-c-a/Vagablog - Blogging for Palm Deviceshttps://www.rfc1437.de/2004/05/05/vagablog-blogging-for-palm-devices/Was so aus ehemals interessanten Websites wirdhttps://www.rfc1437.de/2004/05/05/was-so-aus-ehemals-interessanten-websites-wird/Bin wieder dahttps://www.rfc1437.de/2004/05/04/bin-wieder-da/Es wird immer schlimmerhttps://www.rfc1437.de/2004/05/01/es-wird-immer-schlimmer/Hondo hatte doch nicht ganz die Beinehttps://www.rfc1437.de/2004/05/01/hondo-hatte-doch-nicht-ganz-die-beine/Dell dreht durchhttps://www.rfc1437.de/2004/04/30/dell-dreht-durch/EU-Rat nickt neue Regelungen zum Schutz geistigen Eigentums abhttps://www.rfc1437.de/2004/04/29/eu-rat-nickt-neue-regelungn-zm-schtz-gstgn-gntms-b/PyLindahttps://www.rfc1437.de/2004/04/29/pylinda-2/Rund um den Henninger Turm: Zabel will Rebellin stoppenhttps://www.rfc1437.de/2004/04/29/rund-um-den-henninger-turm-zabel-will-reblln-stppn/Accessfs: permission filesystem for linuxhttps://www.rfc1437.de/2004/04/28/accessfs-permission-filesystem-for-linux/Ear Monitors (R) brand by Future Sonics, Inc.https://www.rfc1437.de/2004/04/28/ear-monitors-r-brand-by-future-sonics-inc/Hybrid RAW Conversionhttps://www.rfc1437.de/2004/04/28/hybrid-raw-conversion/Leck in Heliumtank der Sojushttps://www.rfc1437.de/2004/04/28/leck-in-heliumtank-der-sojus/Liebesrufe aus der Tiefehttps://www.rfc1437.de/2004/04/28/liebesrufe-aus-der-tiefe/rssh - restricted shell for scp/sftphttps://www.rfc1437.de/2004/04/28/rssh-restricted-shell-for-scp-sftp/scponly homepagehttps://www.rfc1437.de/2004/04/28/scponly-homepage/Specification for Fault Code Interoperabilityhttps://www.rfc1437.de/2004/04/28/specification-for-fault-code-interoperability/Auch Opportunity ist über der Zielliniehttps://www.rfc1437.de/2004/04/27/auch-opportunity-ist-252ber-der-ziellinie/Debian: Freier, aber verspätethttps://www.rfc1437.de/2004/04/27/debian-freier-aber-verspaetet/heise Security - News - Microsoft wollte Veröffentlichung von Exploit gegen IIS verhindernhttps://www.rfc1437.de/2004/04/27/hs-scrty-nws-mcrsft-wllt-vrffntlchng-vn-xplt-ggn-s/Hugos House etwas angehübschthttps://www.rfc1437.de/2004/04/27/hugos-house-etwas-angehuebscht/[I18n-sig] Unicode surrogates: just say no!https://www.rfc1437.de/2004/04/27/i18n-sig-unicode-surrogates-just-say-no/Bibble Labs - Professional Photo-Manipulation Softwarehttps://www.rfc1437.de/2004/04/26/bibble-labs-professional-photo-manipulation/Boyz need Toyzhttps://www.rfc1437.de/2004/04/26/boyz-need-toyz/Das muss ein Fake sein.https://www.rfc1437.de/2004/04/26/das-muss-ein-fake-sein/DeDRMS knackt Apples iTunes-Kopierschutzhttps://www.rfc1437.de/2004/04/26/dedrms-knackt-apples-itunes-kopierschutz/EU will Gen-Mais zulassenhttps://www.rfc1437.de/2004/04/26/eu-will-gen-mais-zulassen/Little Snobhttps://www.rfc1437.de/2004/04/26/little-snob/Steinbrück kritisiert Schornsteinfeger-Monopolhttps://www.rfc1437.de/2004/04/26/steinbrueck-kritisiert-schornsteinfeger-monopol/The Omni Group - Applications - OmniWeb - Betahttps://www.rfc1437.de/2004/04/26/the-omni-group-applications-omniweb-beta-2/DIGITAL RADIO - DAB Empfängerhttps://www.rfc1437.de/2004/04/25/digital-radio-dab-empfaenger/DIGITAL RADIO WEST | Ihr Sendernetzbetreiber in NRWhttps://www.rfc1437.de/2004/04/25/digital-radio-west-ihr-sendernetzbetreiber-in-nrw/Heute war die Digi mal kooperativhttps://www.rfc1437.de/2004/04/25/heute-war-die-digi-mal-kooperativ/Blau-Bären?https://www.rfc1437.de/2004/04/25/pic-blau-baeren/Blütenmeerhttps://www.rfc1437.de/2004/04/25/pic-bluetenmeer/Die Farbe Rosahttps://www.rfc1437.de/2004/04/25/pic-die-farbe-rosa/Ein weites Feld ...https://www.rfc1437.de/2004/04/25/pic-ein-weites-feld/Frühlingsgrün 1https://www.rfc1437.de/2004/04/25/pic-fruehlingsgruen-1/Frühlingsgrün 2https://www.rfc1437.de/2004/04/25/pic-fruehlingsgruen-2/Noch mehr Grünhttps://www.rfc1437.de/2004/04/25/pic-noch-mehr-gruen/Ökologische Nischehttps://www.rfc1437.de/2004/04/25/pic-oekologische-nische/Pompoms wachsen auf Bäumen?https://www.rfc1437.de/2004/04/25/pic-pompoms-wachsen-auf-baeumen/Valles Parieshttps://www.rfc1437.de/2004/04/25/pic-valles-paries/Wirtschaftsanbau der Josephs-Kirchehttps://www.rfc1437.de/2004/04/25/pic-wirtschaftsanbau-der-josephs-kirche/Forgent sues 31 companies over JPEGhttps://www.rfc1437.de/2004/04/24/forgent-sues-31-companies-over-jpeg/Nikon Coolwalker MSV-01 Digital Photo Storage Viewer First Lookhttps://www.rfc1437.de/2004/04/24/nikon-coolwalker-msv-01-digtl-pht-strg-vwr-frst-lk/Wolfram's Future Mathhttps://www.rfc1437.de/2004/04/24/wolframs-future-math/Kill Bill Vol. 1 - DVDhttps://www.rfc1437.de/2004/04/23/kill-bill-vol-1-dvd/Neues von der Digi des Satanshttps://www.rfc1437.de/2004/04/23/neues-von-der-digi-des-satans/UNIX Historyhttps://www.rfc1437.de/2004/04/23/unix-history/CD-RW besser für Archivierung als CD-R?https://www.rfc1437.de/2004/04/22/cd-rw-besser-fuer-archivierung-als-cd-r/Kino:Tod im Kinderzimmerhttps://www.rfc1437.de/2004/04/22/kinotod-im-kinderzimmer/Ullrich sagt Lüttich und Henninger Turm abhttps://www.rfc1437.de/2004/04/22/ullrich-sagt-luettich-und-henninger-turm-ab/A, B, C, ... D! The Programming Language - OSNews.comhttps://www.rfc1437.de/2004/04/21/a-b-c-d-the-programming-language-osnews-com/Alan Kay to receive Turing Awardhttps://www.rfc1437.de/2004/04/21/alan-kay-to-receive-turing-award/Castor-Transporte: NRW klagt, Sachsen grollthttps://www.rfc1437.de/2004/04/21/castor-transporte-nrw-klagt-sachsen-grollt/iamphet.nm.ru - Scheme stuff (MzVim)https://www.rfc1437.de/2004/04/21/iamphet-nm-ru-scheme-stuff-mzvim/Ministerin Schmidt sieht "Bildungskatastrophe" kommenhttps://www.rfc1437.de/2004/04/21/ministerin-schmidt-sieht-bildungskatastrophe-kommn/Wallonischer Pfeil: Ullrich steigt nach 100km vom Radhttps://www.rfc1437.de/2004/04/21/wallonischer-pfeil-ullrich-steigt-nach-100km-vm-rd/dkbza - pydothttps://www.rfc1437.de/2004/04/20/dkbza-pydot/Apple Xsan: ein Überblickhttps://www.rfc1437.de/2004/04/19/apple-xsan-ein-ueberblick/Die neue Macht der Autorenhttps://www.rfc1437.de/2004/04/19/die-neue-macht-der-autoren/MS Explorer-»Patch«: entweder 14 Löcher oder kein SSLhttps://www.rfc1437.de/2004/04/19/ms-explorer-patch-entweder-14-loecher-oder-ken-ssl/Apple's jackboots step on PlayFair in India.https://www.rfc1437.de/2004/04/18/apples-jackboots-step-on-playfair-in-india/Calzonehttps://www.rfc1437.de/2004/04/18/calzone/DarwinPorts Homehttps://www.rfc1437.de/2004/04/18/darwinports-home/SCO vs. Linux: Baystar Capital will Investment in SCO beendenhttps://www.rfc1437.de/2004/04/17/sco-vs-linux-baystar-capital-wll-nvstmnt-n-sc-bndn/Deutsche Buchstabiertafelhttps://www.rfc1437.de/2004/04/15/deutsche-buchstabiertafel/Dürfen Abmahner nicht mehr absahnen?https://www.rfc1437.de/2004/04/15/duerfen-abmahner-nicht-mehr-absahnen/Etappensieg für Darwin-Gegnerhttps://www.rfc1437.de/2004/04/14/etappensieg-fuer-darwin-gegner/Schanghai: Transrapid-Trasse sinkt, kaum Fahrgästehttps://www.rfc1437.de/2004/04/14/schanghai-transrapid-trasse-sinkt-kaum-fahrgaeste/GROKLAW - Linux als Security Risiko und die Antworten draufhttps://www.rfc1437.de/2004/04/13/groklaw-linux-als-security-risiko-und-d-ntwrtn-drf/Linux 2.6 and mISDN HowTohttps://www.rfc1437.de/2004/04/13/linux-2-6-and-misdn-howto/Embedded-Systems-Entwickler: "Linux ist ein Sicherheitsrisiko"https://www.rfc1437.de/2004/04/12/embedded-systems-entwickler-linux-ist-n-schrhtsrsk/Erik Zabel gewinnt Rund um Kölnhttps://www.rfc1437.de/2004/04/12/erik-zabel-gewinnt-rund-um-koeln/Meine Digital SLR ist jetzt wohl tothttps://www.rfc1437.de/2004/04/12/meine-digital-slr-ist-jetzt-wohl-tot/Mit Steuervorteilen Kirchenaustritte stoppenhttps://www.rfc1437.de/2004/04/12/mit-steuervorteilen-kirchenaustritte-stoppen/Wiki Software bei Webwarehttps://www.rfc1437.de/2004/04/12/wiki-software-bei-webware/Zope.org - Readme file for ZopeEditManager 0.9.3https://www.rfc1437.de/2004/04/12/zope-org-readme-file-for-zopeeditmanager-0-9-3/30-Meter-Tanne für Osterfeuerhttps://www.rfc1437.de/2004/04/11/30-meter-tanne-fuer-osterfeuer/Apple schützt sich vor »Playfair«https://www.rfc1437.de/2004/04/11/apple-schuetzt-sich-vor-playfair/Für Radioprogrammiererhttps://www.rfc1437.de/2004/04/11/fuer-radioprogrammierer/Sun stellt Entwicklung von UltraSparc V einhttps://www.rfc1437.de/2004/04/11/sun-stellt-entwicklung-von-ultrasparc-v-ein/Bush wußte Wochen vor 9/11 Bescheidhttps://www.rfc1437.de/2004/04/10/bush-wusste-wochen-vor-911-bescheid/Notebook-Brennstoffzelle für zehn Stunden Laufzeithttps://www.rfc1437.de/2004/04/10/notebook-brennstoffzelle-fuer-zehn-stunden-laufzet/MacBiffhttps://www.rfc1437.de/2004/04/09/macbiff/PLT Spy - Neuigkeitenhttps://www.rfc1437.de/2004/04/09/plt-spy-neuigkeiten/Rasterfahndung führt nicht zum Erfolghttps://www.rfc1437.de/2004/04/09/rasterfahndung-fuehrt-nicht-zum-erfolg/Spyware-Hersteller will an die Börsehttps://www.rfc1437.de/2004/04/09/spyware-hersteller-will-an-die-boerse/Divmod.Org :: Home :: Projectshttps://www.rfc1437.de/2004/04/08/divmod-org-home-projects/Dnsmasq - a DNS forwarder for NAT firewalls.https://www.rfc1437.de/2004/04/08/dnsmasq-a-dns-forwarder-for-nat-firewalls/Logilab.org - Aspectshttps://www.rfc1437.de/2004/04/08/logilab-org-aspects/Schrempp trotz Aktionärsschelte bestätigthttps://www.rfc1437.de/2004/04/08/schrempp-trotz-aktionaersschelte-bestaetigt/Einführung neuer Ausweispapiere als "gigantischer Labortest"https://www.rfc1437.de/2004/04/07/einfuehrung-neuer-ausweispapier-ls-ggntschr-lbrtst/Experiences with the Krasnogorsk FT-2 Panoramic Camerahttps://www.rfc1437.de/2004/04/07/experiences-with-the-krasnogorsk-ft-2-panoramc-cmr/The Fantabulous Icon-O-Matic!https://www.rfc1437.de/2004/04/07/the-fantabulous-icon-o-matic/Aids-Medikamente für Entwicklungsländer günstigerhttps://www.rfc1437.de/2004/04/06/aids-medikamente-fuer-entwicklungslaender-guenstgr/Amadeus II - Sounds bearbeitenhttps://www.rfc1437.de/2004/04/06/amadeus-ii-sounds-bearbeiten/Drop Target for my Brainhttps://www.rfc1437.de/2004/04/06/drop-target-for-my-brain/Erstmals Gen-Weizen in Deutschland ausgesäthttps://www.rfc1437.de/2004/04/06/erstmals-gen-weizen-in-deutschland-ausgesaet/Fastpath und schnellerer Upstream für T-DSL ohne Einrichtungsgebührhttps://www.rfc1437.de/2004/04/06/fastpth-nd-schnllrr-pstrm-fr-t-dsl-hn-nrchtngsgbhr/ICANN verteidigt Verbot von VeriSigns Sitefinderhttps://www.rfc1437.de/2004/04/06/icann-verteidigt-verbot-von-verisigns-sitefinder/Wellenkraftwerk geht ans Netzhttps://www.rfc1437.de/2004/04/06/wellenkraftwerk-geht-ans-netz/Greenpeace protestiert gegen «Baby-Patent»https://www.rfc1437.de/2004/04/05/greenpeace-protestiert-gegen-baby-patent/Meine Digital SLR ist krankhttps://www.rfc1437.de/2004/04/05/meine-digital-slr-ist-krank/New utility strips DRM from iTunes Music Store trackshttps://www.rfc1437.de/2004/04/05/new-utility-strips-drm-from-itunes-music-str-trcks/Audible.com - audio that speaks to you wherever you arehttps://www.rfc1437.de/2004/04/04/audiblecom-audio-that-speaks-to-you-wherever-you-r/ICE-Katastrophe in letzter Sekunde verhinderthttps://www.rfc1437.de/2004/04/04/ice-katastrophe-in-letzter-sekunde-verhindert/iPod too hard to usehttps://www.rfc1437.de/2004/04/04/ipod-too-hard-to-use/Wenn die Wirtschaft Regie führthttps://www.rfc1437.de/2004/04/04/wenn-die-wirtschaft-regie-fuehrt/Idiotische Mailserverkonfigurationen mal wiederhttps://www.rfc1437.de/2004/04/03/idiotische-mailserverkonfigurationen-mal-wieder/Index of /~erich/bricolagehttps://www.rfc1437.de/2004/04/03/index-of-erich-bricolage/Lösung für vorheriges Problemhttps://www.rfc1437.de/2004/04/03/loesung-fuer-vorheriges-problem/Randall D. Beer - FPC-PPChttps://www.rfc1437.de/2004/04/03/randall-d-beer-fpc-ppc/The Mason Bookhttps://www.rfc1437.de/2004/04/03/the-mason-book/Autobahn 1 "Kunstharz-versiegelt"https://www.rfc1437.de/2004/04/02/autobahn-1-kunstharz-versiegelt/Bundesrat lehnt TKG-Gesetzentwurf abhttps://www.rfc1437.de/2004/04/02/bundesrat-lehnt-tkg-gesetzentwurf-ab/Ein bischen Frühlinghttps://www.rfc1437.de/2004/04/02/ein-bischen-fruehling/Festgefressene Situation ...https://www.rfc1437.de/2004/04/02/festgefressene-situation/Kabel Deutschland zahlt 2,6 Milliarden für Übernahme der Konkurrenzhttps://www.rfc1437.de/2004/04/02/kabel-detschlnd-zhlt-26-mllrdn-fr-brnhm-dr-knkrrnz/Der Frühling ...https://www.rfc1437.de/2004/04/02/pic-der-fruehling/Schraube Locker?https://www.rfc1437.de/2004/04/02/pic-schraube-locker/Unflexibelhttps://www.rfc1437.de/2004/04/02/pic-unflexibel/Unflexibelhttps://www.rfc1437.de/2004/04/02/unflexibel/Debian GNU/Linux -- apt-buildhttps://www.rfc1437.de/2004/04/01/debian-gnulinux-apt-build/Debian Sarge auf 12 CDshttps://www.rfc1437.de/2004/04/01/debian-sarge-auf-12-cds/Lego und die Kundenfreundlichkeithttps://www.rfc1437.de/2004/04/01/lego-und-die-kundenfreundlichkeit/Oetker darf noch mehr Bier brauenhttps://www.rfc1437.de/2004/04/01/oetker-darf-noch-mehr-bier-brauen/PyOXIDE - pythonmac.org wikihttps://www.rfc1437.de/2004/04/01/pyoxide-pythonmac-org-wiki/ThinkGraph: Introductionhttps://www.rfc1437.de/2004/04/01/thinkgraph-introduction/Various bits of softwarehttps://www.rfc1437.de/2004/04/01/various-bits-of-software/Wo wir doch gerade über Anfragen an Firmen ...https://www.rfc1437.de/2004/04/01/wo-wir-doch-gerade-ueber-anfragen-an-firmen/EU-Parlament protestiert gegen Flugdaten-Transfairhttps://www.rfc1437.de/2004/03/31/eu-parlament-protestiert-gegen-flugdaten-transfair/Garzweiler II: Neuer Streit um Obstwiesehttps://www.rfc1437.de/2004/03/31/garzweiler-ii-neuer-streit-um-obstwiese/MacWarriors TrailBlazerhttps://www.rfc1437.de/2004/03/31/macwarriors-trailblazer/SCO vs. Linux: IBM sieht Copyright-Verletzungen am Werkhttps://www.rfc1437.de/2004/03/31/sco-vs-linux-ibm-sieht-copyright-verletzungn-m-wrk/Teen Arrested for Sexually Abusing Herselfhttps://www.rfc1437.de/2004/03/31/teen-arrested-for-sexually-abusing-herself/TP: Windenergie hat Zukunfthttps://www.rfc1437.de/2004/03/31/tp-windenergie-hat-zukunft/Translucent Inter-Process Service Migrationhttps://www.rfc1437.de/2004/03/31/translucent-inter-process-service-migration/Wurm «Witty»: Sicherheitspatch nur gegen Geldhttps://www.rfc1437.de/2004/03/31/wurm-witty-sicherheitspatch-nur-gegen-geld/Bill Gates: In 10 Jahren sind viele wichtige IT-Probleme gelösthttps://www.rfc1437.de/2004/03/30/bill-gates-in-10-jahren-sind-vl-wchtg-t-prblm-glst/Fahrradfahrenhttps://www.rfc1437.de/2004/03/30/fahrradfahren/Musikindustrie klagt Tauschbörsen-User anhttps://www.rfc1437.de/2004/03/30/musikindustrie-klagt-tauschboersen-user-an/PyWX: Python for AOLserverhttps://www.rfc1437.de/2004/03/30/pywx-python-for-aolserver/Willkür des Justiz-Senators in Hamburghttps://www.rfc1437.de/2004/03/30/willkuer-des-justiz-senators-in-hamburg/Rüttgers fordert private Zwangsrente für allehttps://www.rfc1437.de/2004/03/29/ruettgers-fordert-private-zwangsrente-fuer-alle/Bütikofer: Clement stellt Koalition in Fragehttps://www.rfc1437.de/2004/03/28/buetikofer-clement-stellt-koalition-in-frage/Duden-Homepagehttps://www.rfc1437.de/2004/03/28/duden-homepage/Kapitalistenknechthttps://www.rfc1437.de/2004/03/28/kapitalistenknecht/Forschung gegen den Abmahnwahnhttps://www.rfc1437.de/2004/03/27/forschung-gegen-den-abmahnwahn/Google-Suche:https://www.rfc1437.de/2004/03/27/google-suche/Prothonhttps://www.rfc1437.de/2004/03/27/prothon-2/dp-now.com - News - Epson reveals digital rangefinder secretshttps://www.rfc1437.de/2004/03/26/dp-nowcom-news-epson-reveals-digital-rngfndr-scrts/Ich mag Debian ...https://www.rfc1437.de/2004/03/26/ich-mag-debian/Python Package Index Tutorialhttps://www.rfc1437.de/2004/03/26/python-package-index-tutorial/Sommerzeithttps://www.rfc1437.de/2004/03/26/sommerzeit/Am 22. April ...https://www.rfc1437.de/2004/03/25/am-22-april/Branchenverband Bitkom möchte Privatkopie abschaffenhttps://www.rfc1437.de/2004/03/25/branchenverband-bitkom-moechte-privatkopie-bschffn/Index of /~vorlon/d-i/xfshttps://www.rfc1437.de/2004/03/25/index-of-vorlon-d-i-xfs/Leben ausser Kontrollehttps://www.rfc1437.de/2004/03/25/leben-ausser-kontrolle/Nerd-Orgasmushttps://www.rfc1437.de/2004/03/25/nerd-orgasmus/Schröder mit Reformkurs zufriedenhttps://www.rfc1437.de/2004/03/25/schroeder-mit-reformkurs-zufrieden/Static Type Inference (for Python) with Starkillerhttps://www.rfc1437.de/2004/03/25/static-type-inference-for-python-with-starkiller/Telekom-Vorstand Josef Brauner tritt wegen Maut-Debakel zurückhttps://www.rfc1437.de/2004/03/25/telekom-vorstand-josef-branr-trtt-wgn-mt-dbkl-zrck/The Guardian hammers RSShttps://www.rfc1437.de/2004/03/25/the-guardian-hammers-rss/Warnung vor totalem Überwachungsstaathttps://www.rfc1437.de/2004/03/25/warnung-vor-totalem-ueberwachungsstaat/Der Herr der Gridshttps://www.rfc1437.de/2004/03/24/der-herr-der-grids/Microsoft: Entscheidung der EU-Kommission nicht im Sinne der Verbraucherhttps://www.rfc1437.de/2004/03/24/microsft-ntschdng-dr-kmmssn-ncht-m-snn-dr-vrbrchr/Neun Krankenkassen senken die Beitragssätzehttps://www.rfc1437.de/2004/03/24/neun-krankenkassen-senken-die-beitragssaetze/RealNetworks CEO pushes Apple to open iPodhttps://www.rfc1437.de/2004/03/24/realnetworks-ceo-pushes-apple-to-open-ipod/Ron Sommer und die Wahltaktikhttps://www.rfc1437.de/2004/03/24/ron-sommer-und-die-wahltaktik/Telekom senkt Wochenarbeitszeit auf 34 Stundenhttps://www.rfc1437.de/2004/03/24/telekom-senkt-wochenarbeitszeit-auf-34-stunden/Fahrkartenschalter bald nur noch in Städten?https://www.rfc1437.de/2004/03/23/fahrkartenschalter-bald-nur-noch-in-staedten/Freibier macht Bürgermeisterwahl ungültighttps://www.rfc1437.de/2004/03/23/freibier-macht-buergermeisterwahl-ungueltig/loafhttps://www.rfc1437.de/2004/03/23/loaf/XMLmind XML Editor: XMLmind XML Editorhttps://www.rfc1437.de/2004/03/23/xmlmind-xml-editor-xmlmind-xml-editor/Beleidigte Dünnbrettbohrerhttps://www.rfc1437.de/2004/03/22/beleidigte-duennbrettbohrer/Der 11. September hätte verhindert werden können.https://www.rfc1437.de/2004/03/22/der-11-september-haette-verhindert-werden-koennen/EU fordert Rekordstrafe von Microsofthttps://www.rfc1437.de/2004/03/22/eu-fordert-rekordstrafe-von-microsoft/Israel tötet Hamas-Führer Jassinhttps://www.rfc1437.de/2004/03/22/israel-toetet-hamas-fuehrer-jassin/Kopfbälle machen blödhttps://www.rfc1437.de/2004/03/22/kopfbaelle-machen-bloed/MovableType wie Windowshttps://www.rfc1437.de/2004/03/22/movabletype-wie-windows/Spamassassin Custom Rule Emporiumhttps://www.rfc1437.de/2004/03/22/spamassassin-custom-rule-emporium/SPD plant Anti-Spam-Gesetzhttps://www.rfc1437.de/2004/03/22/spd-plant-anti-spam-gesetz/TP: "Matsushita ist eine Sch...firma"https://www.rfc1437.de/2004/03/22/tp-matsushita-ist-eine-schfirma/Digital Camera Battery - Manufacturers of the most powerfull professional camera battery on the markethttps://www.rfc1437.de/2004/03/21/digital-camera-battery-manufacturers-of-the-most/DIHK-Chef rät zur Produktion im Auslandhttps://www.rfc1437.de/2004/03/21/dihk-chef-raet-zur-produktion-im-ausland/Eisbär, Der (1998)https://www.rfc1437.de/2004/03/21/eisbaer-der-1998/Mehr Überwachung gewünschthttps://www.rfc1437.de/2004/03/21/mehr-ueberwachung-gewuenscht/Peeron: Robotics Invention System 2.0 (#3804-1)https://www.rfc1437.de/2004/03/21/peeron-robotics-invention-system-2-0-3804-1/Schröder: "Wir halten Kurs"https://www.rfc1437.de/2004/03/21/schroeder-wir-halten-kurs/Tuple Spacehttps://www.rfc1437.de/2004/03/21/tuple-space/Kleinkarierte Kritik - Rechtliche Inkompetenz - Ebay und das neue EU-Rechthttps://www.rfc1437.de/2004/03/20/kleinkarierte-kritik-rechtliche-inkompetenz-ebay/BBC NEWS | Science/Nature | UFO streaks through Martian skyhttps://www.rfc1437.de/2004/03/19/bbc-news-sciencenature-ufo-streaks-throgh-mrtn-sky/Deutsche Zope User Grouphttps://www.rfc1437.de/2004/03/19/deutsche-zope-user-group/Erste Open-Source-Lizenz made for Germanyhttps://www.rfc1437.de/2004/03/19/erste-open-source-lizenz-made-for-germany/Little Snitchhttps://www.rfc1437.de/2004/03/19/little-snitch/placenamehere.com projects pnhtoolbarhttps://www.rfc1437.de/2004/03/19/placenamehere-com-projects-pnhtoolbar/10 aus 1350https://www.rfc1437.de/2004/03/18/10-aus-1350/Verschlusssachehttps://www.rfc1437.de/2004/03/18/pic-verschlusssache/Zweisamkeithttps://www.rfc1437.de/2004/03/18/pic-zweisamkeit/Verschlusssachehttps://www.rfc1437.de/2004/03/18/verschlusssache/Zweisamkeithttps://www.rfc1437.de/2004/03/18/zweisamkeit/Apple stellt »Spoken Interface« vorhttps://www.rfc1437.de/2004/03/17/apple-stellt-spoken-interface-vor/Nochmal zu SORBShttps://www.rfc1437.de/2004/03/17/nochmal-zu-sorbs/Amiga Inc ohne AmigaOShttps://www.rfc1437.de/2004/03/16/amiga-inc-ohne-amigaos/Der Erlrouterhttps://www.rfc1437.de/2004/03/16/der-erlrouter/Leica Digilux 2 Review. Part Twohttps://www.rfc1437.de/2004/03/16/leica-digilux-2-review-part-two/Astronomen entdecken Planet «Sedna»https://www.rfc1437.de/2004/03/15/astronomen-entdecken-planet-sedna/Chinesen enttäuscht: Große Mauer ganz kleinhttps://www.rfc1437.de/2004/03/15/chinesen-enttaeuscht-grosse-mauer-ganz-klein/Freenet AG: Abmahnungen statt Websperrenhttps://www.rfc1437.de/2004/03/15/freenet-ag-abmahnungen-statt-websperren/GraphicConverter 5.0 delivers dozens of new featureshttps://www.rfc1437.de/2004/03/15/graphicconverter-50-delivers-dozens-of-new-featurs/Korruptionsverdacht bei der Bahnhttps://www.rfc1437.de/2004/03/15/korruptionsverdacht-bei-der-bahn/Machtwechsel in Spanienhttps://www.rfc1437.de/2004/03/15/machtwechsel-in-spanien/MySQL und die Lizenzenhttps://www.rfc1437.de/2004/03/15/mysql-und-die-lizenzen/PyProtocolshttps://www.rfc1437.de/2004/03/15/pyprotocols/Vitamine gegen Krebs: Anzeige erstattethttps://www.rfc1437.de/2004/03/15/vitamine-gegen-krebs-anzeige-erstattet/Frühling bahnt sich an ...https://www.rfc1437.de/2004/03/14/fruehling-bahnt-sich-an/IsaViz Overviewhttps://www.rfc1437.de/2004/03/14/isaviz-overview/Is jetzt Frühling, oder was?https://www.rfc1437.de/2004/03/14/pic-is-jetzt-fruehling-oder-was/Unruhe in Union nach Köhler-Äußerungenhttps://www.rfc1437.de/2004/03/14/unruhe-in-union-nach-koehler-aeusserungen/Vino' wins another as Jaksche wraps up Paris-Nicehttps://www.rfc1437.de/2004/03/14/vino-wins-another-as-jaksche-wraps-up-paris-nice/Flüge in die USA nur noch als gläserner Passagierhttps://www.rfc1437.de/2004/03/13/fluege-in-die-usa-nur-noch-als-glaeserner-passagir/myelin: Feed Normalizerhttps://www.rfc1437.de/2004/03/13/myelin-feed-normalizer/Französin wird Außenministerin Georgienshttps://www.rfc1437.de/2004/03/12/franzoesin-wird-aussenministerin-georgiens/SPD verliert Zustimmung in NRWhttps://www.rfc1437.de/2004/03/12/spd-verliert-zustimmung-in-nrw/Ziel erreichthttps://www.rfc1437.de/2004/03/12/ziel-erreicht/11.03 - 18:17: Impressumhttps://www.rfc1437.de/2004/03/11/1103-1817-impressum/A Busy Developers Guide to WSDL 1.1https://www.rfc1437.de/2004/03/11/a-busy-developers-guide-to-wsdl-1-1/Affrus 1.0https://www.rfc1437.de/2004/03/11/affrus-10/Eizell-Dogma widerlegthttps://www.rfc1437.de/2004/03/11/eizell-dogma-widerlegt/Epson R-D1 Digital Rangefinder Camerahttps://www.rfc1437.de/2004/03/11/epson-r-d1-digital-rangefinder-camera/Eudora Spywarehttps://www.rfc1437.de/2004/03/11/eudora-spyware/Generic SOAP Clienthttps://www.rfc1437.de/2004/03/11/generic-soap-client/Hakenwürmer gegen Allergienhttps://www.rfc1437.de/2004/03/11/hakenwuermer-gegen-allergien/lython - lisp for pythonhttps://www.rfc1437.de/2004/03/11/lython-lisp-for-python-2/Microsoft stuft Outlook-Loch als kritisch einhttps://www.rfc1437.de/2004/03/11/microsoft-stuft-outlook-loch-als-kritisch-ein/Neue Großspende Möllemanns aufgetauchthttps://www.rfc1437.de/2004/03/11/neue-grossspende-moellemanns-aufgetaucht/Paul Nevai's PaulComputing (www.paulcomputing.com)https://www.rfc1437.de/2004/03/11/paul-nevai-s-paulcomputing-www-paulcomputing-com/RUS-CERT warnt vor Mozillahttps://www.rfc1437.de/2004/03/11/rus-cert-warnt-vor-mozilla/Was ich so an Tools benutzehttps://www.rfc1437.de/2004/03/11/was-ich-so-an-tools-benutze/Ab 2005: Abi nach zwölf Jahrenhttps://www.rfc1437.de/2004/03/10/ab-2005-abi-nach-zwoelf-jahren/Die Dialer-Abzocker machen weiterhttps://www.rfc1437.de/2004/03/10/die-dialer-abzocker-machen-weiter/Oracle ...https://www.rfc1437.de/2004/03/10/oracle/Telekom-Chef Ricke: Personal wird weiter abgebauthttps://www.rfc1437.de/2004/03/10/telekom-chef-ricke-personal-wird-weiter-abgebaut/Textil-Kette Boecker ist pleitehttps://www.rfc1437.de/2004/03/10/textil-kette-boecker-ist-pleite/Divmod.Org :: Home :: Projects :: Quotienthttps://www.rfc1437.de/2004/03/09/divmod-org-home-projects-quotient/Digilux 2 Review - Part 1https://www.rfc1437.de/2004/03/08/digilux-2-review-part-1/Emmanuel Renieris's Software Pagehttps://www.rfc1437.de/2004/03/08/emmanuel-renieris-s-software-page/Falschmünzer im wilden Domain-Westenhttps://www.rfc1437.de/2004/03/08/falschmuenzer-im-wilden-domain-westen/FDP muss Europaparteitag neu abhaltenhttps://www.rfc1437.de/2004/03/08/fdp-muss-europaparteitag-neu-abhalten/gnutellavision: introhttps://www.rfc1437.de/2004/03/08/gnutellavision-intro/Graphvizhttps://www.rfc1437.de/2004/03/08/graphviz/MacNQChttps://www.rfc1437.de/2004/03/08/macnqc/mfGraph Library Homepagehttps://www.rfc1437.de/2004/03/08/mfgraph-library-homepage/My blogging space - eine Memehttps://www.rfc1437.de/2004/03/08/my-blogging-space-eine-meme/Parser-SIG - SIG on Parser Generation for Pythonhttps://www.rfc1437.de/2004/03/08/parser-sig-sig-on-parser-generation-for-python/Hamburg Hauptbahnhof Nord, U2https://www.rfc1437.de/2004/03/08/pic-hamburg-hauptbahnhof-nord-u2/My Bloggingspacehttps://www.rfc1437.de/2004/03/08/pic-my-bloggingspace/pyparsing -- a class library for text processing in Pythonhttps://www.rfc1437.de/2004/03/08/pyparsing-a-class-library-for-text-processing-in/Scalable Vector Graphics (SVG) 1.1 Specificationhttps://www.rfc1437.de/2004/03/08/scalable-vector-graphics-svg-1-1-specification/TAMS Home Pagehttps://www.rfc1437.de/2004/03/08/tams-home-page/WAVE 3.0 - Web Accessibility Versatile Evaluatorhttps://www.rfc1437.de/2004/03/08/wave-3-0-web-accessibility-versatile-evaluator/Worms wechselt von Sendmail zu Microsoft Exchangehttps://www.rfc1437.de/2004/03/08/worms-wechselt-von-sendmail-zu-microsoft-exchange/Bahnbrechendes Urteil: BGH beendet den Dialer-Wahnsinn - Netzwelt - SPIEGEL ONLINEhttps://www.rfc1437.de/2004/03/06/bhnbrchnds-rtl-bgh-bndt-dn-dlr-whnsnn-ntzwlt-spgl/heute.t-online.de - Union will offenbar Tarif- und Arbeitsrecht lockernhttps://www.rfc1437.de/2004/03/06/heutet-onlinede-nn-wll-ffnbr-trf-nd-rbtsrcht-lckrn/Linux-Magazin - CUPShttps://www.rfc1437.de/2004/03/06/linux-magazin-cups/LWN: The GPL Is a License, not a Contracthttps://www.rfc1437.de/2004/03/06/lwn-the-gpl-is-a-license-not-a-contract/Rollei MiniDigi TLR Digicamhttps://www.rfc1437.de/2004/03/06/rollei-minidigi-tlr-digicam/Jaguar langsam beim Kontextmenühttps://www.rfc1437.de/2004/03/05/jaguar-langsam-beim-kontextmenue/Open Source Initiative OSI - Doc10:Halloween Documentshttps://www.rfc1437.de/2004/03/05/open-source-initiative-osi-doc10halloween-documnts/Python: module inspecthttps://www.rfc1437.de/2004/03/05/python-module-inspect/Was die Bild-Zeitung kann, das können wir auch!https://www.rfc1437.de/2004/03/05/was-die-bild-zeitung-kann-das-koennen-wir-auch/Canto - Digital Asset Management with Cumulus - Products & Serviceshttps://www.rfc1437.de/2004/03/04/canto-digital-asset-managmnt-wth-cmls-prdcts-srvcs/Delirium, das die Zeilen füllthttps://www.rfc1437.de/2004/03/04/delirium-das-die-zeilen-fuellt/Extensis Portfolio - Digital Asset Managementhttps://www.rfc1437.de/2004/03/04/extensis-portfolio-digital-asset-management/GROKLAW - Deadline für SCOhttps://www.rfc1437.de/2004/03/04/groklaw-deadline-fuer-sco/IHMC CmapTools - Concept Mapping Software Toolkithttps://www.rfc1437.de/2004/03/04/ihmc-cmaptools-concept-mapping-software-toolkit/Kein XXL mehr bei McDonaldshttps://www.rfc1437.de/2004/03/04/kein-xxl-mehr-bei-mcdonalds/Mod-pubsub bloghttps://www.rfc1437.de/2004/03/04/mod-pubsub-blog/Philips Fluid Lenseshttps://www.rfc1437.de/2004/03/04/philips-fluid-lenses/Peinliches Geständnis: Coca-Cola verkauft Leitungswasser - Wirtschaft - SPIEGEL ONLINEhttps://www.rfc1437.de/2004/03/04/pnlchs-gstndns-cc-cl-vrkft-ltngswssr-wrtschft-spgl/PyTable RDBMS Middlewarehttps://www.rfc1437.de/2004/03/04/pytable-rdbms-middleware/RFC: Subscriptions harmonizerhttps://www.rfc1437.de/2004/03/04/rfc-subscriptions-harmonizer/Sehr geehrter Herr Bundesstaatsanwalthttps://www.rfc1437.de/2004/03/04/sehr-geehrter-herr-bundesstaatsanwalt/SORBS - mal wieder eine dumme Implementation von RBLhttps://www.rfc1437.de/2004/03/04/sorbs-mal-wieder-eine-dumme-implementation-von-rbl/Vulkanausbruch auf Montserrathttps://www.rfc1437.de/2004/03/04/vulkanausbruch-auf-montserrat/Welcome Pagehttps://www.rfc1437.de/2004/03/04/welcome-page/Cacheability Enginehttps://www.rfc1437.de/2004/03/03/cacheability-engine/c''t aktuell-Lauschangriff vermasselt: Teilsieg für die Bürgerrechtehttps://www.rfc1437.de/2004/03/03/ct-aktuell-lauschangrff-vrmsslt-tlsg-fr-d-brgrrcht/Großer Lauschangriff verfassungswidrighttps://www.rfc1437.de/2004/03/03/grosser-lauschangriff-verfassungswidrig/iPhoto Mailer Patcherhttps://www.rfc1437.de/2004/03/03/iphoto-mailer-patcher/iView | Media Management Made Easyhttps://www.rfc1437.de/2004/03/03/iview-media-management-made-easy/Schröder redet nicht mehr mit der "Bild"https://www.rfc1437.de/2004/03/03/schroeder-redet-nicht-mehr-mit-der-bild/SCO vs. Linux: SCO verklagt Autoteile-Händler wegen Linux-Nutzunghttps://www.rfc1437.de/2004/03/03/sco-vs-linux-sco-verklagt-attl-hndlr-wgn-lnx-ntzng/Writing PlugInshttps://www.rfc1437.de/2004/03/03/writing-plugins-2/Auf dem Mars soll es Wasser gegeben habenhttps://www.rfc1437.de/2004/03/02/auf-dem-mars-soll-es-wasser-gegeben-haben/Browser oder binärer Schrotthaufen ...https://www.rfc1437.de/2004/03/02/browser-oder-binaerer-schrotthaufen/Kein Interesse an kritischen Verbrauchernhttps://www.rfc1437.de/2004/03/02/kein-interesse-an-kritischen-verbrauchern/Track or Backhttps://www.rfc1437.de/2004/03/02/track-or-back/Was man so in Logfiles findet ...https://www.rfc1437.de/2004/03/02/was-man-so-in-logfiles-findet/elspy: Exim local_scan()with Pythonhttps://www.rfc1437.de/2004/03/01/elspy-exim-local-scan-with-python/Gentium Linuxhttps://www.rfc1437.de/2004/03/01/gentium-linux/Neuer Netsky-Wurm verbreitet sich schnellhttps://www.rfc1437.de/2004/03/01/neuer-netsky-wurm-verbreitet-sich-schnell/Online-Jobbörse: BA-Chef Weise soll von Kostenexplosion gewusst haben | COMPUTERWOCHE Onlinehttps://www.rfc1437.de/2004/03/01/nln-jbbrs-b-chf-ws-sll-vn-kstnxplsn-gwsst-hbn-cmpt/Scan incoming mail with Pythonhttps://www.rfc1437.de/2004/03/01/scan-incoming-mail-with-python/Die japanischen Schriftzeichenhttps://www.rfc1437.de/2004/02/29/die-japanischen-schriftzeichen/Die Welt der Sprache - Die Sprachen der Welthttps://www.rfc1437.de/2004/02/29/die-welt-der-sprache-die-sprachen-der-welt/Exotische Schriften lernen - leicht gemachthttps://www.rfc1437.de/2004/02/29/exotische-schriften-lernen-leicht-gemacht/iBeeZz.com - Homehttps://www.rfc1437.de/2004/02/29/ibeezz-com-home/Ihr Weg zu uns...erer Abmahnunghttps://www.rfc1437.de/2004/02/29/ihr-weg-zu-unserer-abmahnung/Isolierte Sprachenhttps://www.rfc1437.de/2004/02/29/isolierte-sprachen/Teurer Spaßhttps://www.rfc1437.de/2004/02/29/teurer-spass/Geschichten aus dem Leben von Bild-Autorenhttps://www.rfc1437.de/2004/02/27/geschichten-aus-dem-leben-von-bild-autoren/GROKLAW - Eben Moglens Antwort auf McBrides Rede in Harvardhttps://www.rfc1437.de/2004/02/27/groklaw-eben-moglens-antwort-auf-mcbrds-rd-n-hrvrd/heise online: Adorno online, Reemtsma und der Haftbefehlhttps://www.rfc1437.de/2004/02/27/heise-online-adorno-online-reemtsma-und-dr-hftbfhl/Argumente für den Atheismushttps://www.rfc1437.de/2004/02/26/argumente-fuer-den-atheismus/Dickes Ding ...https://www.rfc1437.de/2004/02/26/dickes-ding/Ex-CDU-Schatzmeisterin packt aushttps://www.rfc1437.de/2004/02/26/ex-cdu-schatzmeisterin-packt-aus/HIV - natürlicher Abwehrstoff entdeckt?https://www.rfc1437.de/2004/02/26/hiv-natuerlicher-abwehrstoff-entdeckt/iPod Volume Booster (German)https://www.rfc1437.de/2004/02/26/ipod-volume-booster-german/News: Microsoft will »Pager« patentierenhttps://www.rfc1437.de/2004/02/26/news-microsoft-will-pager-patentieren/Panorama: US-Soldaten schossen auf Verwundetehttps://www.rfc1437.de/2004/02/26/panorama-us-soldaten-schossen-auf-verwundete/SCO vs. Linux: Boykott der Meinungsfreiheit?https://www.rfc1437.de/2004/02/26/sco-vs-linux-boykott-der-meinungsfreiheit/T-Com beschleunigt T-DSLhttps://www.rfc1437.de/2004/02/26/t-com-beschleunigt-t-dsl/Microsofts Alleingang im Anti-Spam-Kampfhttps://www.rfc1437.de/2004/02/25/microsofts-alleingang-im-anti-spam-kampf/PocketMac iPod | Call Toll Free 1-866-POCK-MAChttps://www.rfc1437.de/2004/02/25/pocketmac-ipod-call-toll-free-1-866-pock-mac/Safari Extender by Ricardo Batistahttps://www.rfc1437.de/2004/02/25/safari-extender-by-ricardo-batista/Version Control with Subversionhttps://www.rfc1437.de/2004/02/25/version-control-with-subversion/Apple - RSS Informationhttps://www.rfc1437.de/2004/02/24/apple-rss-information-2/EU-Kommissar Bolkestein setzt sich im Kartellverfahren für Microsoft einhttps://www.rfc1437.de/2004/02/24/e-kmmssr-blkstn-stzt-sch-m-krtllvrfhrn-fr-mcrsft-n/Briefmarke für E-Mailshttps://www.rfc1437.de/2004/02/23/briefmarke-fuer-e-mails/EU-Rat macht sich für grenzenlose Softwarepatente starkhttps://www.rfc1437.de/2004/02/23/eu-rat-macht-sich-fuer-grenzenlose-softwrptnt-strk/iPoding | What's that in your pocket?https://www.rfc1437.de/2004/02/23/ipoding-whats-that-in-your-pocket/Lügen, grosse Lügen und Statistikenhttps://www.rfc1437.de/2004/02/23/luegen-grosse-luegen-und-statistiken/Omniorb Python Bindingshttps://www.rfc1437.de/2004/02/23/omniorb-python-bindings/Postkunden in Hamburg vor verschlossenen Türenhttps://www.rfc1437.de/2004/02/23/postkunden-in-hamburg-vor-verschlossenen-tueren/ai.planet - Weltsimulation unter Windowshttps://www.rfc1437.de/2004/02/22/aiplanet-weltsimulation-unter-windows/ARD und ZDF kündigen Vertrag mit Kabel Deutschlandhttps://www.rfc1437.de/2004/02/22/ard-und-zdf-kuendigen-vertrag-mit-kabel-deutschlnd/Eine Weltmacht, nicht ganz von dieser Welthttps://www.rfc1437.de/2004/02/22/eine-weltmacht-nicht-ganz-von-dieser-welt/Folklore.org: Macintosh Stories: Hungarianhttps://www.rfc1437.de/2004/02/22/folkloreorg-macintosh-stories-hungarian/Hartbleihttps://www.rfc1437.de/2004/02/22/hartblei/Steve Roy, Software Design : Action Helperhttps://www.rfc1437.de/2004/02/22/steve-roy-software-design-action-helper/Schwarzenegger will Homo-Hochzeiten stoppenhttps://www.rfc1437.de/2004/02/21/schwarzenegger-will-homo-hochzeiten-stoppen/asynchttp - Asynconronous HTTP Clienthttps://www.rfc1437.de/2004/02/20/asynchttp-asynconronous-http-client/hOp - Haskell Micro-Kernelhttps://www.rfc1437.de/2004/02/20/hop-haskell-micro-kernel/Smileys ...https://www.rfc1437.de/2004/02/20/smileys/Using the iPod Hold switch to prolong battery lifehttps://www.rfc1437.de/2004/02/20/using-the-ipod-hold-switch-to-prolong-battery-life/GROKLAW - RedHat steigt auch einhttps://www.rfc1437.de/2004/02/19/groklaw-redhat-steigt-auch-ein/ModelingObject-Relational Bridge for pythonhttps://www.rfc1437.de/2004/02/19/modelingobject-relational-bridge-for-python/Interview: "Die Gier hat den Verstand vernebelt"https://www.rfc1437.de/2004/02/17/interview-die-gier-hat-den-verstand-vernebelt/Toll Collect muss gehen - Stolpe nichthttps://www.rfc1437.de/2004/02/17/toll-collect-muss-gehen-stolpe-nicht/Verpflichtung zur Zensur?https://www.rfc1437.de/2004/02/17/verpflichtung-zur-zensur/3.3 weakref -- Weak referenceshttps://www.rfc1437.de/2004/02/16/3-3-weakref-weak-references/dp-now.com - News - Epson shows retro-style Leica rangefinder-compatible digicams at PMAhttps://www.rfc1437.de/2004/02/16/dp-nwcm-nws-psn-shws-rtr-styl-lc-rngfndr-cmptbl-dg/my-zope - LocalFS-1-1-0.tgzhttps://www.rfc1437.de/2004/02/16/my-zope-localfs-1-1-0-tgz/Python Dispatch Packagehttps://www.rfc1437.de/2004/02/16/python-dispatch-package/XML-RPC Client/Server Protocol Referencehttps://www.rfc1437.de/2004/02/16/xml-rpc-client-server-protocol-reference/BBC - OneMusic Sample Bank - Drumshttps://www.rfc1437.de/2004/02/15/bbc-onemusic-sample-bank-drums/Dent du Midi - MIDI File Converter for GarageBandhttps://www.rfc1437.de/2004/02/15/dent-du-midi-midi-file-converter-for-garageband/Der Apfelbaumhttps://www.rfc1437.de/2004/02/15/der-apfelbaum/Elfenkönige und Hubschrauber -- zum 70. Geburtstag von Niklaus Wirthhttps://www.rfc1437.de/2004/02/15/elfenkoenig-nd-hbschrbr-zm-70-gbrtstg-vn-nkls-wrth/Langzeitarbeitslose sollen Zivildienst leistenhttps://www.rfc1437.de/2004/02/15/langzeitarbeitslose-sollen-zivildienst-leisten/myelin: Feed Normalizerhttps://www.rfc1437.de/2004/02/15/myelin-feed-normalizer-2/Pantani found dead in Italian hotelhttps://www.rfc1437.de/2004/02/15/pantani-found-dead-in-italian-hotel/"Sunday Times": BBC soll zerschlagen werdenhttps://www.rfc1437.de/2004/02/15/sunday-times-bbc-soll-zerschlagen-werden/Violin loops,Fiddle loops,violin sampleshttps://www.rfc1437.de/2004/02/15/violin-loops-fiddle-loops-violin-samples/Das Geheimherz der Lügenfabrikhttps://www.rfc1437.de/2004/02/14/das-geheimherz-der-luegenfabrik/del.icio.us API documentationhttps://www.rfc1437.de/2004/02/14/del-icio-us-api-documentation/macosxhints - More info about remote wake and sleephttps://www.rfc1437.de/2004/02/14/macosxhints-more-info-about-remote-wake-and-sleep/macosxhints - Wake a sleeping Mac from the networkhttps://www.rfc1437.de/2004/02/14/macosxhints-wake-a-sleeping-mac-from-the-network/The Common Lisp Cookbookhttps://www.rfc1437.de/2004/02/14/the-common-lisp-cookbook/Von den "Opfern einer weltweiten Religion"https://www.rfc1437.de/2004/02/14/von-den-opfern-einer-weltweiten-religion/Wake550 Helphttps://www.rfc1437.de/2004/02/14/wake550-help/GROKLAW - Novell setzt nachhttps://www.rfc1437.de/2004/02/13/groklaw-novell-setzt-nach/ITmedia PCUPdate: Epson, worldwide first "range finder type digital camera"https://www.rfc1437.de/2004/02/13/itmedi-pcpdt-psn-wrldwd-frst-rng-fndr-typ-dgtl-cmr/"Mit Polizeikanonen auf Alternativspatzen geschossen"https://www.rfc1437.de/2004/02/13/mit-polizeikanonen-auf-alternativspatzen-geschossn/Wofür manche Anwälte so im Netz ihren Namen hergebenhttps://www.rfc1437.de/2004/02/13/wofuer-manche-anwaelte-so-im-netz-ihren-namn-hrgbn/«Domain-Kidnapping» kommt wiederhttps://www.rfc1437.de/2004/02/12/domain-kidnapping-kommt-wieder/Fernsehen:Denn sie wissen nicht, was sie tunhttps://www.rfc1437.de/2004/02/12/fernsehendenn-sie-wissen-nicht-was-sie-tun/Firefox ist ja ganz nett, aber ...https://www.rfc1437.de/2004/02/12/firefox-ist-ja-ganz-nett-aber/Gravenreuth-Kanzlei mahnt P2P-Portal emule.de abhttps://www.rfc1437.de/2004/02/12/gravenreuth-kanzlei-mahnt-p2p-portal-emulede-ab/Konica Minolta Maxxum 7 Digitalhttps://www.rfc1437.de/2004/02/12/konica-minolta-maxxum-7-digital/Mars Express schickt neue Fotoshttps://www.rfc1437.de/2004/02/12/mars-express-schickt-neue-fotos/PalmSource dropping Mac supporthttps://www.rfc1437.de/2004/02/12/palmsource-dropping-mac-support/Polaroid bringt neues Polaroid Material raushttps://www.rfc1437.de/2004/02/12/polaroid-bringt-neues-polaroid-material-raus/The Omni Group - Applications - OmniWeb - Betahttps://www.rfc1437.de/2004/02/12/the-omni-group-applications-omniweb-beta/Behavior Engineering - BE - AiShttps://www.rfc1437.de/2004/02/11/behavior-engineering-be-ais/Der Feind der ganzen Welthttps://www.rfc1437.de/2004/02/11/der-feind-der-ganzen-welt/GROKLAW - Novell mischt immer noch mithttps://www.rfc1437.de/2004/02/11/groklaw-novell-mischt-immer-noch-mit/Kabinett ebnet Weg für Gen-Foodhttps://www.rfc1437.de/2004/02/11/kabinett-ebnet-weg-fuer-gen-food/Kulturhauptstadt 2010: "Münster macht''s"https://www.rfc1437.de/2004/02/11/kulturhauptstadt-2010-muenster-macht039s/OpenMCL 0.14.1 - jetzt mit Cocoa-Bridge!https://www.rfc1437.de/2004/02/11/openmcl-0141-jetzt-mit-cocoa-bridge/Workbench: Tuesday, February 10, 2004https://www.rfc1437.de/2004/02/11/workbench-tuesday-february-10-2004/CLORB - a Common Lisp ORBhttps://www.rfc1437.de/2004/02/10/clorb-a-common-lisp-orb/Development Of Leica's Digital 'M' To Take About 2 Yearshttps://www.rfc1437.de/2004/02/10/development-of-leicas-digital-m-to-take-abot-2-yrs/Die Macht sind wirhttps://www.rfc1437.de/2004/02/10/die-macht-sind-wir/Katholiken finden die BBC gar nicht lustighttps://www.rfc1437.de/2004/02/10/katholiken-finden-die-bbc-gar-nicht-lustig/NETZEITUNG WELTRAUM: ISS-Besatzung sichtet Ufohttps://www.rfc1437.de/2004/02/10/netzeitung-weltraum-iss-besatzung-sichtet-ufo/Palm OS in zwei Versionenhttps://www.rfc1437.de/2004/02/10/palm-os-in-zwei-versionen/PycURL Home Pagehttps://www.rfc1437.de/2004/02/10/pycurl-home-page/shwebyhshandler.pyhttps://www.rfc1437.de/2004/02/10/shwebyhshandler-py/Sorglos-Paket für iPod-Upgraderhttps://www.rfc1437.de/2004/02/10/sorglos-paket-fuer-ipod-upgrader/Leica To Develop Digital "M" Camera - Sourcehttps://www.rfc1437.de/2004/02/09/leica-to-develop-digital-m-camera-source/RFC 1864 (rfc1864) - The Content-MD5 Header Fieldhttps://www.rfc1437.de/2004/02/09/rfc-1864-rfc1864-the-content-md5-header-field/Was schämenhttps://www.rfc1437.de/2004/02/09/was-schaemen/GROKLAW - SCO gegen IBM, 0:1?https://www.rfc1437.de/2004/02/08/groklaw-sco-gegen-ibm-01/PLT Spy - Python in Schemehttps://www.rfc1437.de/2004/02/08/plt-spy-python-in-scheme/0700-Rufnummern im Impressum abgemahnthttps://www.rfc1437.de/2004/02/06/0700-rufnummern-im-impressum-abgemahnt/Music industry raids Kazaahttps://www.rfc1437.de/2004/02/06/music-industry-raids-kazaa/Opposition sieht Regierung am Endehttps://www.rfc1437.de/2004/02/06/opposition-sieht-regierung-am-ende/RFC 2445 - vCalendarhttps://www.rfc1437.de/2004/02/06/rfc-2445-vcalendar/Schröder tritt als SPD-Vorsitzender abhttps://www.rfc1437.de/2004/02/06/schroeder-tritt-als-spd-vorsitzender-ab/SCO vs. Linux: Copyright-Klage gegen IBMhttps://www.rfc1437.de/2004/02/06/sco-vs-linux-copyright-klage-gegen-ibm/Toolserver Framework for Pythonhttps://www.rfc1437.de/2004/02/06/toolserver-framework-for-python/booklooker.de - gebrauchte Bücher kaufen und verkaufen. Riesenauswahl &amp; viele Schnäppchen!https://www.rfc1437.de/2004/02/05/booklooker-de-gebrauchte-buecher-kaufen-und/DevChannel | The Affero GPL: Closing the Distribution Loopholehttps://www.rfc1437.de/2004/02/05/devchannel-the-affero-gpl-closing-the/.:index deutsch:.https://www.rfc1437.de/2004/02/05/index-deutsch/OS X Options Now Include CMUCLhttps://www.rfc1437.de/2004/02/05/os-x-options-now-include-cmucl/PEP 324 -- popen5 - New POSIX process modulehttps://www.rfc1437.de/2004/02/05/pep-324-popen5-new-posix-process-module/Weise soll neuer BA-Chef werdenhttps://www.rfc1437.de/2004/02/05/weise-soll-neuer-ba-chef-werden/Dont Try This at Home Kids...https://www.rfc1437.de/2004/02/04/dont-try-this-at-home-kids/Eidetic Document Management Systemhttps://www.rfc1437.de/2004/02/04/eidetic-document-management-system/Leo's Home Pagehttps://www.rfc1437.de/2004/02/04/leo-s-home-page/ATPM 10.02 - ATPO: Outliner User Interfaceshttps://www.rfc1437.de/2004/02/03/atpm-1002-atpo-outliner-user-interfaces/GraphPath Languagehttps://www.rfc1437.de/2004/02/03/graphpath-language/RSS Feeds für Apple Knowledgebasehttps://www.rfc1437.de/2004/02/03/rss-feeds-fuer-apple-knowledgebase/SecurityFocus HOME Columnists: A Visit from the FBIhttps://www.rfc1437.de/2004/02/03/securityfocus-home-columnists-a-visit-from-the-fbi/Why your Movable Type blog must diehttps://www.rfc1437.de/2004/02/03/why-your-movable-type-blog-must-die/A Retrospective on PAIPhttps://www.rfc1437.de/2004/02/02/a-retrospective-on-paip/André Simon - Startseitehttps://www.rfc1437.de/2004/02/02/andr-simon-startseite/Astronauten sollten notfalls auch ihr Leben opfernhttps://www.rfc1437.de/2004/02/02/astronauten-sollten-notfalls-auch-ihr-leben-opfern/Ausbeutung genetischer Ressourcen in der Antarktishttps://www.rfc1437.de/2004/02/02/ausbeutung-genetischer-ressourcen-in-der-antarktis/Continuations Made Simple and Illustratedhttps://www.rfc1437.de/2004/02/02/continuations-made-simple-and-illustrated/Keine Zuzahlungserleichterung für Heimwohnerhttps://www.rfc1437.de/2004/02/02/keine-zuzahlungserleichterung-fuer-heimwohner/PEP 327 -- Decimal Data Typehttps://www.rfc1437.de/2004/02/02/pep-327-decimal-data-type/Python for Lisp Programmershttps://www.rfc1437.de/2004/02/02/python-for-lisp-programmers/pyXLWriterhttps://www.rfc1437.de/2004/02/02/pyxlwriter/SourceForge.net: Project Info - bytecodehackshttps://www.rfc1437.de/2004/02/02/sourceforge-net-project-info-bytecodehacks/WADhttps://www.rfc1437.de/2004/02/02/wad/Benutzerhandbuch für Radio Userland 8.0.8https://www.rfc1437.de/2004/02/01/benutzerhandbuch-fuer-radio-userland-8-0-8/camlFloathttps://www.rfc1437.de/2004/02/01/camlfloat/Freie Software zwischen Privat- und Gemeineigentumhttps://www.rfc1437.de/2004/02/01/freie-software-zwischen-privat-und-gemeineigentum/Geschichten aus dem Service ...https://www.rfc1437.de/2004/02/01/geschichten-aus-dem-service/Kästner ./. Schluhttps://www.rfc1437.de/2004/02/01/kaestner-schlu/Minolta DiMAGE A2, Z2 and XG Rumouredhttps://www.rfc1437.de/2004/02/01/minolta-dimage-a2-z2-and-xg-rumoured/MozPythonhttps://www.rfc1437.de/2004/02/01/mozpython/Pod2Gohttps://www.rfc1437.de/2004/02/01/pod2go/tagesschau.de : Fata Morgana in Eis und Schneehttps://www.rfc1437.de/2004/02/01/tagesschaude-fata-morgana-in-eis-und-schnee/www. is deprecated.https://www.rfc1437.de/2004/02/01/www-is-deprecated/cmp blog: Announcing SCPlugin | Goin'' to the chapel...https://www.rfc1437.de/2004/01/31/cmp-blog-announcing-scplugin-goin-to-the-chapel/CSU bestreitet Finanzproblemehttps://www.rfc1437.de/2004/01/31/csu-bestreitet-finanzprobleme/DP Essentials #05 - Improving "Presence" in Digital Imageshttps://www.rfc1437.de/2004/01/31/dp-essentials-05-improving-presence-in-digital-mgs/German Keyboard Layouthttps://www.rfc1437.de/2004/01/31/german-keyboard-layout/Kampfroboterhttps://www.rfc1437.de/2004/01/31/kampfroboter/Nur mal so gesagt haben wollen ...https://www.rfc1437.de/2004/01/31/nur-mal-so-gesagt-haben-wollen/Rainer Brockerhoff :: USInternationalhttps://www.rfc1437.de/2004/01/31/rainer-brockerhoff-usinternational/Splasm Software - Brightness Controlhttps://www.rfc1437.de/2004/01/31/splasm-software-brightness-control/XPde desktop environmenthttps://www.rfc1437.de/2004/01/31/xpde-desktop-environment/BA-Interimschef verhinderte Entlastung Gerstershttps://www.rfc1437.de/2004/01/30/ba-interimschef-verhinderte-entlastung-gersters/Hüter des verlorenen Satzes - sueddeutsche.de - Kulturhttps://www.rfc1437.de/2004/01/30/hueter-des-verlorenen-satzes-sueddeutschede-kultur/NASA will Entscheidung über Hubble-Aufgabe überdenkenhttps://www.rfc1437.de/2004/01/30/nasa-will-entscheidung-252ber-hubble-fgb-252brdnkn/News: Wird XFree86 GPL inkompatibel?https://www.rfc1437.de/2004/01/30/news-wird-xfree86-gpl-inkompatibel/Python Apocryphahttps://www.rfc1437.de/2004/01/30/python-apocrypha/Wegwerf-DVD entpuppt sich als Ladenhüterhttps://www.rfc1437.de/2004/01/30/wegwerf-dvd-entpuppt-sich-als-ladenhueter/Yahoo! News - Decomposing Whale Explodes on Streethttps://www.rfc1437.de/2004/01/30/yahoo-news-decomposing-whale-explodes-on-street/833786 - Schritte, die helfen können, gefälschte ("Spoof"-) Websites und böswillige Hyperlin ...https://www.rfc1437.de/2004/01/29/833786-schrtt-d-hlfn-knnn-gflscht-spf-wbsts-nd-bsw/Chuzpe - das Blog zur Sendunghttps://www.rfc1437.de/2004/01/29/chuzpe-das-blog-zur-sendung/Dirk Olbertz :: Blog: Umgang mit öffentlicher Kritikhttps://www.rfc1437.de/2004/01/29/dirk-olbertz-blog-umgang-mit-oeffentlicher-kritik/FAQTs - Knowledge Base - View Entry - Is there a way I can use staticmethod and classmethod in Python 2.1?https://www.rfc1437.de/2004/01/29/faqts-knowledge-base-view-entry-is-there-a-way-i/NeoOffice/J Homehttps://www.rfc1437.de/2004/01/29/neooffice-j-home/T-DSL soll schneller werdenhttps://www.rfc1437.de/2004/01/29/t-dsl-soll-schneller-werden/EU-Rat drängt auf Kriminalisierung leichter Urheberrechtsverstößehttps://www.rfc1437.de/2004/01/27/eu-rat-draengt-auf-krmnlsrng-lchtr-rhbrrchtsvrstss/MultiSync - A Synchronization Toolhttps://www.rfc1437.de/2004/01/27/multisync-a-synchronization-tool/NETZEITUNG PEOPLE: Ex-Mitglied von Jethro Tull ist jetzt eine Frauhttps://www.rfc1437.de/2004/01/27/netzeitung-people-x-mtgld-vn-jthr-tll-st-jtzt-n-fr/Nochmal zum IE Bughttps://www.rfc1437.de/2004/01/27/nochmal-zum-ie-bug/Public Image Unlimitedhttps://www.rfc1437.de/2004/01/27/public-image-unlimited/Rätsel um IE-Problem wohl gelösthttps://www.rfc1437.de/2004/01/27/raetsel-um-ie-problem-wohl-geloest/Steuerreform: Union zweifelt an den eigenen Möglichkeitenhttps://www.rfc1437.de/2004/01/27/steuerreform-union-zweifelt-an-den-eigenn-mglchktn/Abgeordnete kriegen 1.950 Euro mehrhttps://www.rfc1437.de/2004/01/26/abgeordnete-kriegen-1950-euro-mehr/ASPN : Python Cookbook : Syntax-highlighted code blocks for docutilshttps://www.rfc1437.de/2004/01/26/aspn-python-cookbook-syntax-highlighted-code/Bill Gates prophezeit erfolgreichen Kampf gegen Spamhttps://www.rfc1437.de/2004/01/26/bill-gates-prophezeit-erfolgreichen-kampf-gegn-spm/Color managementhttps://www.rfc1437.de/2004/01/26/color-management/Dunkle Schokolade mit überraschender Nebenwirkunghttps://www.rfc1437.de/2004/01/26/dunkle-schokolade-mit-ueberraschender-nebenwirkung/Ende des Managementshttps://www.rfc1437.de/2004/01/26/ende-des-managements/Fast-Food-Experimenthttps://www.rfc1437.de/2004/01/26/fast-food-experiment/Französischer Kulturminister fordert Gesetze gegen illegalen Musiktauschhttps://www.rfc1437.de/2004/01/26/franzosschr-kltrmnstr-frdrt-gstz-ggn-llgln-msktsch/Gerster sieht sich als Opfer einer Kampagnehttps://www.rfc1437.de/2004/01/26/gerster-sieht-sich-als-opfer-einer-kampagne/Ich brauch mal einen CSS Experten mit IE 6 Win Erfahrungenhttps://www.rfc1437.de/2004/01/26/ich-brauch-mal-einen-css-experten-mt-6-wn-rfhrngn/Linux-Kernel auf Windowshttps://www.rfc1437.de/2004/01/26/linux-kernel-auf-windows/01.24.04 - Spirit Condition Upgraded As Twin Rover Nears Marshttps://www.rfc1437.de/2004/01/25/012404-spirit-condition-upgraded-s-twn-rvr-nrs-mrs/Contax N Digital Reviewhttps://www.rfc1437.de/2004/01/25/contax-n-digital-review/John McCarthyhttps://www.rfc1437.de/2004/01/25/john-mccarthy/Oswald Metzger hat es geschafft!https://www.rfc1437.de/2004/01/25/oswald-metzger-hat-es-geschafft/path Python modulehttps://www.rfc1437.de/2004/01/25/path-python-module/Post vom Versuchslaborhttps://www.rfc1437.de/2004/01/25/post-vom-versuchslabor/At first I thought I was going mad.https://www.rfc1437.de/2004/01/24/at-first-i-thought-i-was-going-mad/Cheney: "Ideologien der Gewalt bei Wurzel packen"https://www.rfc1437.de/2004/01/24/cheney-ideologien-der-gewalt-bei-wurzel-packen/Genug Wasser für eine bemannte Mars-Missionhttps://www.rfc1437.de/2004/01/24/genug-wasser-fuer-eine-bemannte-mars-mission/Krankenkassen nehmen Abschied von 13,6 Prozenthttps://www.rfc1437.de/2004/01/24/krankenkassen-nehmen-abschied-von-136-prozent/MDR.DE: Starfotograf Helmut Newton bei Autounfall getötethttps://www.rfc1437.de/2004/01/24/mdrde-starfotograf-helmut-newton-bei-autonfll-gttt/Mein erster Mac....https://www.rfc1437.de/2004/01/24/mein-erster-mac/Plastinator wusste von Hinrichtungsopfernhttps://www.rfc1437.de/2004/01/24/plastinator-wusste-von-hinrichtungsopfern/Ranchero Software: Big Cat Scripts Pluginhttps://www.rfc1437.de/2004/01/24/ranchero-software-big-cat-scripts-plugin/SPD-Politiker: Erhöhung des Soli-Zuschlags möglichhttps://www.rfc1437.de/2004/01/24/spd-politiker-erhoehung-des-soli-zuschlags-moeglch/Bahnfahren wird teurer - erstmals Höchstpreishttps://www.rfc1437.de/2004/01/23/bahnfahren-wird-teurer-erstmals-hoechstpreis/Cardinal says gays are perverts but brothels are OKhttps://www.rfc1437.de/2004/01/23/cardinal-says-gays-are-perverts-but-brothels-are-k/DVD-Industrie macht Rückzieher im DeCSS-Rechtsstreithttps://www.rfc1437.de/2004/01/23/dvd-industrie-macht-rueckzieher-im-decss-rchtsstrt/ESA - Mars Express - Mars Express sees its first waterhttps://www.rfc1437.de/2004/01/23/esa-mars-express-mars-express-sees-its-first-water/Gerolsteiner will vor allem Top-Team bleibenhttps://www.rfc1437.de/2004/01/23/gerolsteiner-will-vor-allem-top-team-bleiben/Gerster offenbar weitgehend entlastethttps://www.rfc1437.de/2004/01/23/gerster-offenbar-weitgehend-entlastet/Halliburton gibt Bestechung bei Irak-Aufträgen zuhttps://www.rfc1437.de/2004/01/23/halliburton-gibt-bestechung-bei-irak-auftraegen-zu/Imaging Resource: Kanguru FC-RWhttps://www.rfc1437.de/2004/01/23/imaging-resource-kanguru-fc-rw/Markenrechts-Anwalt soll von dubiosen Internetseiten profitierenhttps://www.rfc1437.de/2004/01/23/markenrechts-anwalt-soll-von-dubsn-ntrntstn-prftrn/Neue Farbenhttps://www.rfc1437.de/2004/01/23/neue-farben/Novell sagt adieu zu United Linuxhttps://www.rfc1437.de/2004/01/23/novell-sagt-adieu-zu-united-linux/Regulierungsbehörde schaltet Standortdatenbank zu Funkanlagen freihttps://www.rfc1437.de/2004/01/23/regulierungsbehrd-schltt-stndrtdtnbnk-z-fnknlgn-fr/Reindeer Graphics, Inc. - Productshttps://www.rfc1437.de/2004/01/23/reindeer-graphics-inc-products/RSS-Newsfeed: Immer wissen, was es Neues gibt - Der Tag - SPIEGEL ONLINEhttps://www.rfc1437.de/2004/01/23/rss-newsfeed-immer-wssn-ws-s-ns-gbt-dr-tg-spgl-nln/Simple Python Aggregatorhttps://www.rfc1437.de/2004/01/23/simple-python-aggregator/XML.com: Lightweight XML Search Servers [Jan. 21, 2004]https://www.rfc1437.de/2004/01/23/xml-com-lightweight-xml-search-servers-jan-21-2004/Adobe Photoshop: Plugins for Adobe Photoshophttps://www.rfc1437.de/2004/01/22/adobe-photoshop-plugins-for-adobe-photoshop/Beamter unbemerkt verstorbenhttps://www.rfc1437.de/2004/01/22/beamter-unbemerkt-verstorben/CIA Bot - CIAhttps://www.rfc1437.de/2004/01/22/cia-bot-cia/d2r: comment spam filtering - it''s all about the IPshttps://www.rfc1437.de/2004/01/22/d2r-comment-spam-filtering-it-s-all-about-the-ips/heise online: Bluetooth zum Telefonieren und Surfenhttps://www.rfc1437.de/2004/01/22/heise-online-bluetooth-zum-telefonieren-und-surfen/IBM won''t indemnify, plans to win suithttps://www.rfc1437.de/2004/01/22/ibm-wont-indemnify-plans-to-win-suit/Mars-Rover "Spirit" meldet sich nichthttps://www.rfc1437.de/2004/01/22/mars-rover-spirit-meldet-sich-nicht/Photoshop plugins for professional photo retouchinghttps://www.rfc1437.de/2004/01/22/photoshop-plugins-for-professional-photo/PyChecker: a python source code checking toolhttps://www.rfc1437.de/2004/01/22/pychecker-a-python-source-code-checking-tool/RAW vs JPG © 2004 KenRockwell.comhttps://www.rfc1437.de/2004/01/22/raw-vs-jpg-2004-kenrockwellcom/Test des iX-Spamfilters per E-Mailhttps://www.rfc1437.de/2004/01/22/test-des-ix-spamfilters-per-e-mail/Wegen Gerster: CDU sieht einen Fall Clementhttps://www.rfc1437.de/2004/01/22/wegen-gerster-cdu-sieht-einen-fall-clement/DGB will längere Lebensarbeitszeit zulassenhttps://www.rfc1437.de/2004/01/21/dgb-will-laengere-lebensarbeitszeit-zulassen/dp-now.com - Features - Printer reviews - HP Photosmart 7960https://www.rfc1437.de/2004/01/21/dp-now-com-features-printer-reviews-hp-photosmart/LaTeX Equation Editorhttps://www.rfc1437.de/2004/01/21/latex-equation-editor/McKinsey: Schlecht beraten - manager-magazin.dehttps://www.rfc1437.de/2004/01/21/mckinsey-schlecht-beraten-manager-magazinde/News: SCO verklagt Novellhttps://www.rfc1437.de/2004/01/21/news-sco-verklagt-novell/Nopastehttps://www.rfc1437.de/2004/01/21/nopaste/Patentstreit um Musik-Download in Europa beigelegthttps://www.rfc1437.de/2004/01/21/patentstreit-um-musik-download-in-europa-beigelegt/Rau-Nachfolge: Kanzler ärgert Unionhttps://www.rfc1437.de/2004/01/21/rau-nachfolge-kanzler-aergert-union/xgpatsf.gthttps://www.rfc1437.de/2004/01/21/xgpatsf-gt/Bundesagentur für Arbeit: Beweise offenbar manipulierthttps://www.rfc1437.de/2004/01/20/bundesagentur-fuer-arbeit-beweise-offenbar-manplrt/CSU will Abtreibung auf Staatskosten stoppenhttps://www.rfc1437.de/2004/01/20/csu-will-abtreibung-auf-staatskosten-stoppen/Essentielle Killer-Tips für GarageBandhttps://www.rfc1437.de/2004/01/20/essentielle-killer-tips-fuer-garageband/Kodak Discontinues DCS Pro Backshttps://www.rfc1437.de/2004/01/20/kodak-discontinues-dcs-pro-backs/Lob für den Opa bringt Merz in die Bredouillehttps://www.rfc1437.de/2004/01/20/lob-fuer-den-opa-bringt-merz-in-die-bredouille/Massachusetts Senator Gets Lift for the Race in New Hampshirehttps://www.rfc1437.de/2004/01/20/massachusetts-senator-gts-lft-fr-th-rc-n-nw-hmpshr/Rückendeckung für Gersterhttps://www.rfc1437.de/2004/01/20/rueckendeckung-fuer-gerster/Sun will Hardware für Windows zertifizieren lassen [Update]https://www.rfc1437.de/2004/01/20/sun-will-hardware-fuer-windows-zertifizrn-lssn-pdt/The Game Is Overhttps://www.rfc1437.de/2004/01/20/the-game-is-over/Betrug leicht gemacht: Sicherheits-Lücke bei Ebayhttps://www.rfc1437.de/2004/01/19/betrug-leicht-gemacht-sicherheits-luecke-bei-ebay/BottomFeeder - Cross-platform RSS/Atom News Aggregatorhttps://www.rfc1437.de/2004/01/19/bottomfeeder-cross-platform-rss-atom-news-2/Domain-Recht: Wenn zwei sich streiten, bekommt keiner was...https://www.rfc1437.de/2004/01/19/domain-recht-wenn-zwei-sich-streiten-bekmmt-knr-ws/ESA - Mars Expresshttps://www.rfc1437.de/2004/01/19/esa-mars-express/GTK OSXhttps://www.rfc1437.de/2004/01/19/gtk-osx/NSI nimmt Strato-Kundendomains aus dem DNShttps://www.rfc1437.de/2004/01/19/nsi-nimmt-strato-kundendomains-aus-dem-dns/Strafanzeige gegen Ulla Schmidt nach Tod eines Nierenkrankenhttps://www.rfc1437.de/2004/01/19/strafanzeige-gegen-ulla-schmidt-nch-td-ns-nrnkrnkn/Tapestry - Your Favourite Comics by RSS | dwlt.nethttps://www.rfc1437.de/2004/01/19/tapestry-your-favourite-comics-by-rss-dwlt-net/VisualWorks: VisualWorks TypeLess IRC Clienthttps://www.rfc1437.de/2004/01/19/visualworks-visualworks-typeless-irc-client/Trittin wirft Energieversorger "Abzockerei" vorhttps://www.rfc1437.de/2004/01/18/trittin-wirft-energieversorger-abzockerei-vor/Bilder aus der Kodak DCS 520https://www.rfc1437.de/2004/01/17/bilder-aus-der-kodak-dcs-520/Digital Secrets: How Spirit Makes Great Photoshttps://www.rfc1437.de/2004/01/17/digital-secrets-how-spirit-makes-great-photos/Network Solutions und Register.com wegen Patentverletzung verklagthttps://www.rfc1437.de/2004/01/17/network-solutins-nd-rgstrcm-wgn-ptntvrltzng-vrklgt/Speno's Pythonic Avocado 16.1.2004https://www.rfc1437.de/2004/01/17/speno-s-pythonic-avocado-16-1-2004/Von Sorben und Helmenhttps://www.rfc1437.de/2004/01/17/von-sorben-und-helmen/Berichte: Gerster schloss weiteren Beratervertrag abhttps://www.rfc1437.de/2004/01/16/berichte-gerster-schloss-weiteren-beratervertrag-b/Digital Camera batterieshttps://www.rfc1437.de/2004/01/16/digital-camera-batteries/Europas PR-Crash auf dem Marshttps://www.rfc1437.de/2004/01/16/europas-pr-crash-auf-dem-mars/FavIcon Generatorhttps://www.rfc1437.de/2004/01/16/favicon-generator/GROKLAW - Kommentare zu den "Beweisen" von SCOhttps://www.rfc1437.de/2004/01/16/groklaw-kommentare-zu-den-beweisen-von-sco/iPod Battery FAQhttps://www.rfc1437.de/2004/01/16/ipod-battery-faq/Krebs durch Kunstlichthttps://www.rfc1437.de/2004/01/16/krebs-durch-kunstlicht/Simon Willison: This could be the most ludicrous tech patent yethttps://www.rfc1437.de/2004/01/16/simon-willison-this-cld-b-th-mst-ldcrs-tch-ptnt-yt/Tear Your iPod mini Open To Get The 4GB Hard Drive?https://www.rfc1437.de/2004/01/16/tear-your-ipod-mini-open-to-get-the-4gb-hard-drive/The New Pythonhttps://www.rfc1437.de/2004/01/16/the-new-python/Unifying types and classes in Python 2.2https://www.rfc1437.de/2004/01/16/unifying-types-and-classes-in-python-2-2/Voigtlander Bessa R2S R2Chttps://www.rfc1437.de/2004/01/16/voigtlander-bessa-r2s-r2c/Bayern will Unterrichtsstoff um 60 Prozent verringernhttps://www.rfc1437.de/2004/01/15/bayern-will-unterrichtsstoff-um-60-prozent-vrrngrn/Canon 100mm Macro USM vs Tamron 90mm Macrohttps://www.rfc1437.de/2004/01/15/canon-100mm-macro-usm-vs-tamron-90mm-macro/Canon UK - EF 50mm f/2.5 Macrohttps://www.rfc1437.de/2004/01/15/canon-uk-ef-50mm-f-2-5-macro/debtakeover - Konvertierung nach Debianhttps://www.rfc1437.de/2004/01/15/debtakeover-konvertierung-nach-debian/FingerWorks - Product Overview - Portable, Programmable, USB Touchpads and Keyboardshttps://www.rfc1437.de/2004/01/15/fingerworks-product-overview-portable/FM Softwarehttps://www.rfc1437.de/2004/01/15/fm-software/Objektiv-Testübersichthttps://www.rfc1437.de/2004/01/15/objektiv-testuebersicht/Registrierungsdaten per Bookmarklethttps://www.rfc1437.de/2004/01/15/registrierungsdaten-per-bookmarklet/Uff. Mindstorms wird es weiterhin geben.https://www.rfc1437.de/2004/01/15/uff-mindstorms-wird-es-weiterhin-geben/Anti-counterfeit software: implications for Open Sourcehttps://www.rfc1437.de/2004/01/14/anti-counterfeit-software-implications-for-opn-src/CDU-Politiker: Feiertage mit Urlaub verrechnenhttps://www.rfc1437.de/2004/01/14/cdu-politiker-feiertage-mit-urlaub-verrechnen/Deutsche Bahn AG: Das Sorgenkind feiert Jubiläumhttps://www.rfc1437.de/2004/01/14/deutsche-bahn-ag-das-sorgenkind-feiert-jubilaeum/Deutsche Wirtschaft hofft doch noch auf Irak-Aufträgehttps://www.rfc1437.de/2004/01/14/deutsche-wirtschaft-hofft-doch-noch-auf-irak-aftrg/Digital Black and Whitehttps://www.rfc1437.de/2004/01/14/digital-black-and-white/Eichel macht weniger Schulden als befürchtethttps://www.rfc1437.de/2004/01/14/eichel-macht-weniger-schulden-als-befuerchtet/Hanau: Verfahren gegen Ex-Oberbürgermeisterin eingestellthttps://www.rfc1437.de/2004/01/14/hanau-verfahren-gegen-ex-oberbuergermestrn-ngstllt/Jaap Weel's Homepagehttps://www.rfc1437.de/2004/01/14/jaap-weel-s-homepage/PanoTools plug-inshttps://www.rfc1437.de/2004/01/14/panotools-plug-ins/SCO vs. Linux: ... und dann kam der Weihnachtsmannhttps://www.rfc1437.de/2004/01/14/sco-vs-linux-und-dann-kam-der-weihnachtsmann/Grinsekatzen forever?https://www.rfc1437.de/2004/01/13/grinsekatzen-forever/Immunität für Berlusconi aufgehobenhttps://www.rfc1437.de/2004/01/13/immunitaet-fuer-berlusconi-aufgehoben/Kanther, Sain-Wittgenstein und Weyrauch kommen vor Gerichthttps://www.rfc1437.de/2004/01/13/kanther-sain-wittgenstein-und-weyrch-kmmn-vr-grcht/Klasse, Jörg Schönenbornhttps://www.rfc1437.de/2004/01/13/klasse-joerg-schoenenborn/MySQL 5 kennt Stored Procedureshttps://www.rfc1437.de/2004/01/13/mysql-5-kennt-stored-procedures/News: Red Hat überträgt eCos-Urheberrechte an FSFhttps://www.rfc1437.de/2004/01/13/news-red-hat-uebertraegt-ecos-urheberrechte-an-fsf/PROGRAMMATIC INTERFACEShttps://www.rfc1437.de/2004/01/13/programmatic-interfaces/SubrosaSoft.com Ltd - Product Informationhttps://www.rfc1437.de/2004/01/13/subrosasoft-com-ltd-product-information/TV-Nostalgie: "Die Waltons" sind zurückhttps://www.rfc1437.de/2004/01/13/tv-nostalgie-die-waltons-sind-zurueck/Ben Bucksch - Projects - Various - TV Movie als XMLTVhttps://www.rfc1437.de/2004/01/12/ben-bucksch-projects-various-tv-movie-als-xmltv/DVD-Player-Hersteller KiSS wehrt sich gegen Vorwürfe von MPlayer-Entwicklernhttps://www.rfc1437.de/2004/01/12/dvd-plyr-hrstllr-kss-whrt-sch-ggn-vrwrf-vn-mplyr-n/Genveränderter Mais bald in Supermarkt-Regalenhttps://www.rfc1437.de/2004/01/12/genveraenderter-mais-bald-in-supermarkt-regalen/Html sucks completely - Manualhttps://www.rfc1437.de/2004/01/12/html-sucks-completely-manual/Intel contributes to anti-SCO Linux fundhttps://www.rfc1437.de/2004/01/12/intel-contributes-to-anti-sco-linux-fund/LizardTech, Inc - Genuine Fractalshttps://www.rfc1437.de/2004/01/12/lizardtech-inc-genuine-fractals/Localfeeds: Münster(50)https://www.rfc1437.de/2004/01/12/localfeeds-muenster50/Nachlese zum Ablauf der Verisign-Zertifikatehttps://www.rfc1437.de/2004/01/12/nachlese-zum-ablauf-der-verisign-zertifikate/News: Nochmal Silvester für Unix-Benutzerhttps://www.rfc1437.de/2004/01/12/news-nochmal-silvester-fuer-unix-benutzer/Rob Galbraith DPI: Photo transmission from Kodak cameras nearing releasehttps://www.rfc1437.de/2004/01/12/rob-galbraith-dpi-photo-transmission-from-kodak/Rob Galbraith DPI: Resuscitating Kodak DCS NiMH batterieshttps://www.rfc1437.de/2004/01/12/rob-galbraith-dpi-resuscitating-kodak-dcs-nimh/The E3 Projecthttps://www.rfc1437.de/2004/01/12/the-e3-project/The E3 Projecthttps://www.rfc1437.de/2004/01/12/the-e3-project-2/US-Bomber wirft versehentlich Bombe über Großbritannien abhttps://www.rfc1437.de/2004/01/12/us-bomber-wirft-versehentlich-bomb-br-grssbrtnnn-b/VPWiki Spec 0.1https://www.rfc1437.de/2004/01/12/vpwiki-spec-0-1/Vorsitzender der Innenminister-Konferenz fordert mehr genetische Fingerabdrückehttps://www.rfc1437.de/2004/01/12/vrstzndr-dr-nnnmnstr-knfrnz-frdrt-mhr-gntsch-fngrb/"Wir werden gezwungen, Gentechnik zu unterstützen"https://www.rfc1437.de/2004/01/12/wir-werden-gezwungen-gentechnik-zu-unterstuetzen/FDP-Politiker für Abschaffung von Feiertagenhttps://www.rfc1437.de/2004/01/11/fdp-politiker-fuer-abschaffung-von-feiertagen/Lego baut wieder auf Steinehttps://www.rfc1437.de/2004/01/11/lego-baut-wieder-auf-steine/LinkTagMeaning - Atom Wikihttps://www.rfc1437.de/2004/01/11/linktagmeaning-atom-wiki/Praxisgebühr: Mitgehangen, mitgefangenhttps://www.rfc1437.de/2004/01/11/praxisgebuehr-mitgehangen-mitgefangen/Schleswig Holsteins Innenminister will Polizei-Zugriff auf Internet-Kundendatenhttps://www.rfc1437.de/2004/01/11/schlswg-hlstns-nnnmnstr-wll-plz-zgrff-f-ntrnt-kndn/Traffic-Kosten bei grösseren Hostingprojektenhttps://www.rfc1437.de/2004/01/11/traffic-kosten-bei-groesseren-hostingprojekten/Befürchtungen zum Europäischen Haftbefehl werden übertroffenhttps://www.rfc1437.de/2004/01/10/befuerchtungen-zum-europaschn-hftbfhl-wrdn-brtrffn/Der HP-iPodhttps://www.rfc1437.de/2004/01/10/der-hp-ipod/Die Decke fällt uns auf den Kopf ...https://www.rfc1437.de/2004/01/10/die-decke-faellt-uns-auf-den-kopf/Elmo - The Electronic Mail Operatorhttps://www.rfc1437.de/2004/01/10/elmo-the-electronic-mail-operator/Project info for Jellybeanhttps://www.rfc1437.de/2004/01/10/project-info-for-jellybean/Rapid Application development using PyQt and Eric3 ... in realtime!https://www.rfc1437.de/2004/01/10/rapid-application-development-using-pyqt-and/Blogger APIhttps://www.rfc1437.de/2004/01/09/blogger-api/chaotic intransient prose bursts: ecto is here!https://www.rfc1437.de/2004/01/09/chaotic-intransient-prose-bursts-ecto-is-here/Hochdruck: Wenn der Pinguin mal musshttps://www.rfc1437.de/2004/01/09/hochdruck-wenn-der-pinguin-mal-muss/Kinder-DNA-Datei für "Klau-Kids"https://www.rfc1437.de/2004/01/09/kinder-dna-datei-fuer-klau-kids/quickSubhttps://www.rfc1437.de/2004/01/09/quicksub/RFC: MetaWeblog APIhttps://www.rfc1437.de/2004/01/09/rfc-metaweblog-api/RFC: Really Simple Discoverability 1.0https://www.rfc1437.de/2004/01/09/rfc-really-simple-discoverability-1-0/Auf Lügen programmierthttps://www.rfc1437.de/2004/01/08/auf-luegen-programmiert/Esa schreibt "Beagle 2" abhttps://www.rfc1437.de/2004/01/08/esa-schreibt-beagle-2-ab/Keyspan launches USB Device Serverhttps://www.rfc1437.de/2004/01/08/keyspan-launches-usb-device-server/KODAK: Cleaning Imager Coverglass and Filtershttps://www.rfc1437.de/2004/01/08/kodak-cleaning-imager-coverglass-and-filters/Kodak DCS 520https://www.rfc1437.de/2004/01/08/kodak-dcs-520/Mehrheit der Deutschen hält Politiker für korrupthttps://www.rfc1437.de/2004/01/08/mehrheit-der-deutschen-haelt-politiker-fuer-korrpt/NRW droht Grippewellehttps://www.rfc1437.de/2004/01/08/nrw-droht-grippewelle/Photoshop: keine Lizenz zum Gelddruckenhttps://www.rfc1437.de/2004/01/08/photoshop-keine-lizenz-zum-gelddrucken/Rau-Nachfolge: "Der Schäuble, der kann''s"https://www.rfc1437.de/2004/01/08/rau-nachfolge-der-schaeuble-der-kanns/Vorabversion von Gimp 2.0 verfügbarhttps://www.rfc1437.de/2004/01/08/vorabversion-von-gimp-20-verfuegbar/ACEROLA Fruit Factshttps://www.rfc1437.de/2004/01/07/acerola-fruit-facts/Adunahttps://www.rfc1437.de/2004/01/07/aduna/AsciiDoc Home Pagehttps://www.rfc1437.de/2004/01/07/asciidoc-home-page/Bizarrer Zwilling enthüllt sein Geheimnishttps://www.rfc1437.de/2004/01/07/bizarrer-zwilling-enthuellt-sein-geheimnis/blogroll visualizedhttps://www.rfc1437.de/2004/01/07/blogroll-visualized/CL-SDL: Common Lisp bindings for SDLhttps://www.rfc1437.de/2004/01/07/cl-sdl-common-lisp-bindings-for-sdl/DrPythonhttps://www.rfc1437.de/2004/01/07/drpython/Hören und Sehen nur noch für Betuchte?https://www.rfc1437.de/2004/01/07/hoeren-und-sehen-nur-noch-fuer-betuchte/HP-12C für Mac OS Xhttps://www.rfc1437.de/2004/01/07/hp-12c-fuer-mac-os-x/Mambo at the Yardhttps://www.rfc1437.de/2004/01/07/mambo-at-the-yard/Movitz: A Common Lisp OS development platformhttps://www.rfc1437.de/2004/01/07/movitz-a-common-lisp-os-development-platform/OpenVPN - An Open Source VPN Solution by James Yonanhttps://www.rfc1437.de/2004/01/07/openvpn-an-open-source-vpn-solution-by-james-yonan/Photo.net Reviews HP Photosmart 7960https://www.rfc1437.de/2004/01/07/photonet-reviews-hp-photosmart-7960/What is Mac OS X?https://www.rfc1437.de/2004/01/07/what-is-mac-os-x/Advanced Bash-Scripting Guidehttps://www.rfc1437.de/2004/01/06/advanced-bash-scripting-guide-2/Ein Zehntel der Praxisgebühr für Bürokratiehttps://www.rfc1437.de/2004/01/06/ein-zehntel-der-praxisgebuehr-fuer-buerokratie/Mambo Open Sourcehttps://www.rfc1437.de/2004/01/06/mambo-open-source/MamboOS Documentation : Home Pagehttps://www.rfc1437.de/2004/01/06/mamboos-documentation-home-page/Mamboportal.com - Mambo Open Source CMS Portalhttps://www.rfc1437.de/2004/01/06/mamboportal-com-mambo-open-source-cms-portal/MOShttps://www.rfc1437.de/2004/01/06/mos/mt-daapd - Home Pagehttps://www.rfc1437.de/2004/01/06/mt-daapd-home-page/NASA: Die ISS hat möglicherweise ein Leckhttps://www.rfc1437.de/2004/01/06/nasa-die-iss-hat-moeglicherweise-ein-leck/Registrar Network Solutions verunsichert Strato-Kundenhttps://www.rfc1437.de/2004/01/06/registrar-network-solutions-verunsichert-strt-kndn/RWE bittet Privatkunden zur Kassehttps://www.rfc1437.de/2004/01/06/rwe-bittet-privatkunden-zur-kasse/SCG / Stéphane Ducasse / Free Bookshttps://www.rfc1437.de/2004/01/06/scg-st-phane-ducasse-free-books/Schützt Kaffee vor Diabetes?https://www.rfc1437.de/2004/01/06/schuetzt-kaffee-vor-diabetes/UADE - Unix Amiga Delitracker Emulator - an amiga music file player for unixhttps://www.rfc1437.de/2004/01/06/uade-unix-amiga-delitracker-emulator-an-amiga/Webgreshttps://www.rfc1437.de/2004/01/06/webgres/WhatOS: Free Real-time Operating System (RTOS) Solutionhttps://www.rfc1437.de/2004/01/06/whatos-free-real-time-operating-system-rtos/yops.de ::: what are you waiting for?https://www.rfc1437.de/2004/01/06/yops-de-what-are-you-waiting-for/Commerzbank kündigt Betriebsrentenhttps://www.rfc1437.de/2004/01/05/commerzbank-kuendigt-betriebsrenten/CVS Module for Apachehttps://www.rfc1437.de/2004/01/05/cvs-module-for-apache/Daten aus der Steckdose - Müll im Funkhttps://www.rfc1437.de/2004/01/05/daten-aus-der-steckdose-muell-im-funk/Die unerträgliche Leichtigkeit des Steins, Teil 2https://www.rfc1437.de/2004/01/05/die-unertraegliche-leichtigkeit-des-steins-teil-2/mailman-discard homehttps://www.rfc1437.de/2004/01/05/mailman-discard-home/NeoOffice/J Homehttps://www.rfc1437.de/2004/01/05/neooffice-j-home-2/News: Verletzung der GPL durch KISS-Technologyhttps://www.rfc1437.de/2004/01/05/news-verletzung-der-gpl-durch-kiss-technology/Seven See Offending SCO Code (LinuxWorld Feedback)https://www.rfc1437.de/2004/01/05/seven-see-offending-sco-code-linuxworld-feedback/The Best Page In The Universe.https://www.rfc1437.de/2004/01/05/the-best-page-in-the-universe/www.alscher.ch &gt; podboardhttps://www.rfc1437.de/2004/01/05/www-alscher-ch-gt-podboard/Canonware Onyxhttps://www.rfc1437.de/2004/01/04/canonware-onyx/Cooperating Systems HelloWorld Overviewhttps://www.rfc1437.de/2004/01/04/cooperating-systems-helloworld-overview/[Gd-hackers] XCode and Dylanhttps://www.rfc1437.de/2004/01/04/gd-hackers-xcode-and-dylan/Gesund dank Schokoladehttps://www.rfc1437.de/2004/01/04/gesund-dank-schokolade/Hausarrest für alle Kinder unter 14 Jahrenhttps://www.rfc1437.de/2004/01/04/hausarrest-fuer-alle-kinder-unter-14-jahren/OmniWeb 5 Previewhttps://www.rfc1437.de/2004/01/04/omniweb-5-preview/Originalanleitung Yashica FX 103 Programmhttps://www.rfc1437.de/2004/01/04/originalanleitung-yashica-fx-103-programm/Snakelets - simple Python web app serverhttps://www.rfc1437.de/2004/01/04/snakelets-simple-python-web-app-server/Adapters: Leica R or Nikon F to EOS&nbsp;https://www.rfc1437.de/2004/01/03/adapters-leica-r-or-nikon-f-to-eos-nbsp/Die Deutschen sollen länger schuftenhttps://www.rfc1437.de/2004/01/03/die-deutschen-sollen-laenger-schuften/fauxidenthttps://www.rfc1437.de/2004/01/03/fauxident/Hosting at Common-Lisp.nethttps://www.rfc1437.de/2004/01/03/hosting-at-common-lisp-net/Panoramafreiheit mit Lücken?https://www.rfc1437.de/2004/01/03/panoramafreiheit-mit-luecken/Rollei 6008i Camera Reviewhttps://www.rfc1437.de/2004/01/03/rollei-6008i-camera-review/T-Mobile Teamhttps://www.rfc1437.de/2004/01/03/t-mobile-team/THE BASTARD OPERATOR FROM HELL OFFICIAL ARCHIVEhttps://www.rfc1437.de/2004/01/03/the-bastard-operator-from-hell-official-archive/Übergang von Telekom zu T-Mobile mit Pannenhttps://www.rfc1437.de/2004/01/03/uebergang-von-telekom-zu-t-mobile-mit-pannen/Ari Paparo Dot Com: Big List of Blog Search Engineshttps://www.rfc1437.de/2004/01/02/ari-paparo-dot-com-big-list-of-blog-search-engines/Augenuntersuchung kostet nicht extrahttps://www.rfc1437.de/2004/01/02/augenuntersuchung-kostet-nicht-extra/Bahntarifdschungelhttps://www.rfc1437.de/2004/01/02/bahntarifdschungel/Bis zu zehn Prozent der Milchstraße bewohnbarhttps://www.rfc1437.de/2004/01/02/bis-zu-zehn-prozent-der-milchstrasse-bewohnbar/CLISP - an ANSI Common Lisphttps://www.rfc1437.de/2004/01/02/clisp-an-ansi-common-lisp/Der Wankelmotor und sein Erfinder, Felix Wankelhttps://www.rfc1437.de/2004/01/02/der-wankelmotor-und-sein-erfinder-felix-wankel/GNUnethttps://www.rfc1437.de/2004/01/02/gnunet/GROKLAW - ein bischen Hintergrund zu der ABI Behauptung von SCOhttps://www.rfc1437.de/2004/01/02/groklaw-ein-bischen-hintergrnd-z-dr-b-bhptng-vn-sc/Homonym-Alarmhttps://www.rfc1437.de/2004/01/02/homonym-alarm/IPython - An enhanced Interactive Pythonhttps://www.rfc1437.de/2004/01/02/ipython-an-enhanced-interactive-python-2/Kabissa - Browse the World Wide Web by Email!https://www.rfc1437.de/2004/01/02/kabissa-browse-the-world-wide-web-by-email/LinuxWorld | Linux's other file sharing softwarehttps://www.rfc1437.de/2004/01/02/linuxworld-linuxs-other-file-sharing-software/SPD-Politiker Maas stachelt Kopftuchstreit anhttps://www.rfc1437.de/2004/01/02/spd-politiker-maas-stachelt-kopftuchstreit-an/Substanz im Rotwein wirkt gegen Krebshttps://www.rfc1437.de/2004/01/02/substanz-im-rotwein-wirkt-gegen-krebs/URL · Python software · LivingLogic AGhttps://www.rfc1437.de/2004/01/02/url-python-software-livinglogic-ag/Adobe Photoshop 7: Sketch Effecthttps://www.rfc1437.de/2004/01/01/adobe-photoshop-7-sketch-effect/Das A und O der Terrorsuchehttps://www.rfc1437.de/2004/01/01/das-a-und-o-der-terrorsuche/Feed Parser [dive into mark]https://www.rfc1437.de/2004/01/01/feed-parser-dive-into-mark/Fighting to Save Hubble Telescope From Fiery Deathhttps://www.rfc1437.de/2004/01/01/fighting-to-save-hubble-telescope-from-fiery-death/Forbes.com: Linux''s Hit Menhttps://www.rfc1437.de/2004/01/01/forbescom-linuxs-hit-men/Nyetwork Wiki: MiniWikihttps://www.rfc1437.de/2004/01/01/nyetwork-wiki-miniwiki/Perl Monks - The Monastery Gateshttps://www.rfc1437.de/2004/01/01/perl-monks-the-monastery-gates/Core Team von XFree86 löst sich aufhttps://www.rfc1437.de/2003/12/31/core-team-von-xfree86-loest-sich-auf/Ein überdimensionales Fanbuch frisst die Ärzte aufhttps://www.rfc1437.de/2003/12/31/ein-ueberdimensionales-fanbuch-frisst-die-aerzte-f/mindlube software / developer / revclipshttps://www.rfc1437.de/2003/12/31/mindlube-software-developer-revclips/Ritterschlag für Web-Erfinder Tim Berners-Leehttps://www.rfc1437.de/2003/12/31/ritterschlag-fuer-web-erfinder-tim-berners-lee/Runtime Revolution - User-Centric Software Developmenthttps://www.rfc1437.de/2003/12/31/runtime-revolution-user-centric-software/lython - lisp for pythonhttps://www.rfc1437.de/2003/12/30/lython-lisp-for-python/Berlusconis merkwürdige Definition eines Triumphshttps://www.rfc1437.de/2003/12/29/berlusconis-merkwuerdige-definition-eines-triumphs/Linux-Magazin - sshhttps://www.rfc1437.de/2003/12/29/linux-magazin-ssh/Rules for Bookmarkletshttps://www.rfc1437.de/2003/12/29/rules-for-bookmarklets/Bundespräsident Rau redet Klartexthttps://www.rfc1437.de/2003/12/28/bundespraesident-rau-redet-klartext/Ricke Brothers: Matrix XPhttps://www.rfc1437.de/2003/12/28/ricke-brothers-matrix-xp/Studienportal Bachelor Kulturwissenschaften - FernUniversität Hagen - Fachbereich Kultur- und Sozialwissenschaftenhttps://www.rfc1437.de/2003/12/28/studienportal-bachelor-kulturwissenschaften/AWM - Abfallwirtschaftsbetriebe Münsterhttps://www.rfc1437.de/2003/12/27/awm-abfallwirtschaftsbetriebe-muenster/Bundesrechnungshof rügt Finanzierung der Steuerreformhttps://www.rfc1437.de/2003/12/27/bundesrechnungshof-ruegt-finanzierung-der-sterrfrm/Clement: Noch 18.000 ohne Lehrstellehttps://www.rfc1437.de/2003/12/27/clement-noch-18000-ohne-lehrstelle/fabFORCE.nethttps://www.rfc1437.de/2003/12/27/fabforce-net/Land der Häuptlingehttps://www.rfc1437.de/2003/12/27/land-der-haeuptlinge/macosxhints - Share an internet connection with a Bluetooth devicehttps://www.rfc1437.de/2003/12/27/macosxhints-share-an-internet-connection-with-a/Nussknackerhttps://www.rfc1437.de/2003/12/27/nussknacker/Reiskugeln in Mangosaucehttps://www.rfc1437.de/2003/12/27/reiskugeln-in-mangosauce/*{TechnoHappyMeal}: Sharing Your Mac''s Internet Connection via Bluetoothhttps://www.rfc1437.de/2003/12/27/technohappymeal-sharing-your-mac-s-internet/Vorwärts, dem Vergessen entgegen!https://www.rfc1437.de/2003/12/27/vorwaerts-dem-vergessen-entgegen/Ein religiöses Gefängnishttps://www.rfc1437.de/2003/12/26/ein-religioeses-gefaengnis/Lachen wirkt wie Kokainhttps://www.rfc1437.de/2003/12/26/lachen-wirkt-wie-kokain/Mars-Mission: ESA zittert um den "Beagle"https://www.rfc1437.de/2003/12/26/mars-mission-esa-zittert-um-den-beagle/Toothpasteworld - World's Largest Toothpaste Collectionhttps://www.rfc1437.de/2003/12/26/toothpasteworld-world-s-largest-toothpaste/Bah, Humbug!https://www.rfc1437.de/2003/12/25/bah-humbug/GSI-Lizenzen: Schöne Bescherung für Fassa Bortolohttps://www.rfc1437.de/2003/12/25/gsi-lizenzen-schoene-bescherung-fuer-fassa-bortolo/Open Source Open Genera?https://www.rfc1437.de/2003/12/25/open-source-open-genera/Way Out of the Boxhttps://www.rfc1437.de/2003/12/25/way-out-of-the-box/Welcome to ERights.Orghttps://www.rfc1437.de/2003/12/25/welcome-to-erights-org/The MGR Window System HOWTOhttps://www.rfc1437.de/2003/12/24/the-mgr-window-system-howto/WindowShade Xhttps://www.rfc1437.de/2003/12/24/windowshade-x/Anke Engelke wird der neue Harald Schmidthttps://www.rfc1437.de/2003/12/23/anke-engelke-wird-der-neue-harald-schmidt/CMake Cross Platform Makehttps://www.rfc1437.de/2003/12/23/cmake-cross-platform-make/Divmod Lupy Overviewhttps://www.rfc1437.de/2003/12/23/divmod-lupy-overview/DocIndexerhttps://www.rfc1437.de/2003/12/23/docindexer/GROKLAW - Linus Kommentare zu angeblichen SCO-Fileshttps://www.rfc1437.de/2003/12/23/groklaw-linus-kommentare-zu-angeblichen-sco-files/LWN: SCO''s copyright letterhttps://www.rfc1437.de/2003/12/23/lwn-scos-copyright-letter/MBS: Temperature Monitorhttps://www.rfc1437.de/2003/12/23/mbs-temperature-monitor/moviemistakes.com - welcome!https://www.rfc1437.de/2003/12/23/moviemistakes-com-welcome/Novell Registers Unix Copyrightshttps://www.rfc1437.de/2003/12/23/novell-registers-unix-copyrights/NSF - OLPA - PR 03-147: RESEARCHERS DEVELOP NANOSCALE FIBERS THAT ARE THINNER THAN THE WAVELENG ...https://www.rfc1437.de/2003/12/23/nsf-lp-pr-03-147-rsrchrs-dvlp-nnscl-fbrs-tht-r-thn/Powerbook-Lüfter und Safari-Tabshttps://www.rfc1437.de/2003/12/23/powerbook-luefter-und-safari-tabs/PreFab UI Browserhttps://www.rfc1437.de/2003/12/23/prefab-ui-browser/Taco Software - Freeware for Mac OS Xhttps://www.rfc1437.de/2003/12/23/taco-software-freeware-for-mac-os-x/Unreliable Guide To Lockinghttps://www.rfc1437.de/2003/12/23/unreliable-guide-to-locking/D. Souflis - TinyScheme Download sitehttps://www.rfc1437.de/2003/12/22/d-souflis-tinyscheme-download-site/Lego schließt 2003 wieder mit Minus abhttps://www.rfc1437.de/2003/12/22/lego-schliesst-2003-wieder-mit-minus-ab/SCO vs. Linux: Loyale Kundenhttps://www.rfc1437.de/2003/12/22/sco-vs-linux-loyale-kunden/ARD-Buffet - Teledoktor: Speichelsteinehttps://www.rfc1437.de/2003/12/21/ard-buffet-teledoktor-speichelsteine/Blogging and Publicityhttps://www.rfc1437.de/2003/12/21/blogging-and-publicity/Correcting myths from Bjørn Lomborghttps://www.rfc1437.de/2003/12/21/correcting-myths-from-bjrn-lomborg/hobbythek - Düfte des Orients: Weihrauch und Myrrhehttps://www.rfc1437.de/2003/12/21/hobbythek-duefte-des-orients-weihrauch-und-myrrhe/IGM - Mac OS Flight Sim Resourcehttps://www.rfc1437.de/2003/12/21/igm-mac-os-flight-sim-resource/Medicine-Worldwide: Speicheldrüsen-Entzündung, Speichelsteinhttps://www.rfc1437.de/2003/12/21/medicine-worldwide-speicheldruesen-entzuendung/OpenMCLhttps://www.rfc1437.de/2003/12/21/openmcl/Polaroid Dust &amp; Scratch Removalhttps://www.rfc1437.de/2003/12/21/polaroid-dust-amp-scratch-removal/Scientific American: A Response to Lomborg''s Rebuttalhttps://www.rfc1437.de/2003/12/21/scientific-american-a-response-to-lomborgs-rebuttl/Speichelsteinehttps://www.rfc1437.de/2003/12/21/speichelsteine/Speichelsteinehttps://www.rfc1437.de/2003/12/21/speichelsteine-2/Stereo-Photographie im Mittelformathttps://www.rfc1437.de/2003/12/21/stereo-photographie-im-mittelformat/Weihnachtsmützenhandel ...https://www.rfc1437.de/2003/12/21/weihnachtsmuetzenhandel/X-Planehttps://www.rfc1437.de/2003/12/21/x-plane/Aus alt mach neu und teurerhttps://www.rfc1437.de/2003/12/20/aus-alt-mach-neu-und-teurer/Musizierenhttps://www.rfc1437.de/2003/12/20/musizieren/freshmeat.net: Project details for PostgreSQL Log Analyzerhttps://www.rfc1437.de/2003/12/19/freshmeat-net-project-details-for-postgresql-log/Fujifilm''s 20 megapixels, at a price: Digital Photography Reviewhttps://www.rfc1437.de/2003/12/19/fujifilms-20-megapixels-at-a-prc-dgtl-phtgrphy-rvw/Lost Highwayhttps://www.rfc1437.de/2003/12/19/lost-highway/News: USA verbieten Export von Linux in den Irakhttps://www.rfc1437.de/2003/12/19/news-usa-verbieten-export-von-linux-in-den-irak/search.cpan.org: Richard Clamp / perl-1.0_16https://www.rfc1437.de/2003/12/19/searchcpanorg-richard-clamp-perl-10-16/Ticker: Mars Express - wdr.de - Forschunghttps://www.rfc1437.de/2003/12/19/ticker-mars-express-wdrde-forschung/welcome to macscripter.net | applescript and script resourcehttps://www.rfc1437.de/2003/12/19/welcome-to-macscripter-net-applescript-and-script/Apple releases Battery Update 1.1 for portableshttps://www.rfc1437.de/2003/12/18/apple-releases-battery-update-11-for-portables/Concurrent Versions Librarianhttps://www.rfc1437.de/2003/12/18/concurrent-versions-librarian/Errico Malatestahttps://www.rfc1437.de/2003/12/18/errico-malatesta/Examples of Complex Renderinghttps://www.rfc1437.de/2003/12/18/examples-of-complex-rendering/HyperNext Homehttps://www.rfc1437.de/2003/12/18/hypernext-home/MacOS X Smalltalkhttps://www.rfc1437.de/2003/12/18/macos-x-smalltalk/ASPN : Python Cookbook : Complex Boolean Regular Expression Classhttps://www.rfc1437.de/2003/12/17/aspn-python-cookbook-complex-boolean-regular/ASPN : Python Cookbook : Length-limited O(1) LRU Cache implementationhttps://www.rfc1437.de/2003/12/17/aspn-python-cookbook-length-limited-o-1-lru-cache/Der Euro ist ein Teurohttps://www.rfc1437.de/2003/12/17/der-euro-ist-ein-teuro/freshmeat.net: freshmeat - freshmeat XML-RPC API availablehttps://www.rfc1437.de/2003/12/17/freshmeat-net-freshmeat-freshmeat-xml-rpc-api/Ich-Ag:Leben auf eigene Rechnunghttps://www.rfc1437.de/2003/12/17/ich-agleben-auf-eigene-rechnung/LaunchBar for Mac OS Xhttps://www.rfc1437.de/2003/12/17/launchbar-for-mac-os-x/NdisWrapperhttps://www.rfc1437.de/2003/12/17/ndiswrapper/Schill aus eigener Partei geflogenhttps://www.rfc1437.de/2003/12/17/schill-aus-eigener-partei-geflogen/D-Link Deutschland GmbH - DBT-900APhttps://www.rfc1437.de/2003/12/16/d-link-deutschland-gmbh-dbt-900ap/Eastgate Tinderbox: the tool for noteshttps://www.rfc1437.de/2003/12/16/eastgate-tinderbox-the-tool-for-notes/Endgültiger Rauswurf von Schill?https://www.rfc1437.de/2003/12/16/endgueltiger-rauswurf-von-schill/Entzauberung der Open Source Entwickler Mythenhttps://www.rfc1437.de/2003/12/16/entzauberung-der-open-source-entwickler-mythen/Get the scoop on.. Scoop! :: Open Source Directory :: OSDir.com :: Open Source Software, Reviews &amp; Newshttps://www.rfc1437.de/2003/12/16/get-the-scoop-on-scoop-open-source-directory/Hugs 98https://www.rfc1437.de/2003/12/16/hugs-98/Kästner raus aus den Schulen?https://www.rfc1437.de/2003/12/16/kaestner-raus-aus-den-schulen/PyObjC - Homehttps://www.rfc1437.de/2003/12/16/pyobjc-home/The HarvestMan WebCrawler Robothttps://www.rfc1437.de/2003/12/16/the-harvestman-webcrawler-robot/Armstrong: Heißer Flirt mit Sheryl Crowhttps://www.rfc1437.de/2003/12/15/armstrong-heisser-flirt-mit-sheryl-crow/Fotografie: Willem Wernsen - Webloghttps://www.rfc1437.de/2003/12/15/fotografie-willem-wernsen-weblog/GROKLAW - Dokumentation eines weiteren SCO-Linux-Hackershttps://www.rfc1437.de/2003/12/15/groklaw-dokumentation-eines-weiteren-sco-lnx-hckrs/mDNkit installation guidehttps://www.rfc1437.de/2003/12/15/mdnkit-installation-guide/Medienrevolution oder Tagebücherhttps://www.rfc1437.de/2003/12/15/medienrevolution-oder-tagebuecher/RFC 3492 - Punicodehttps://www.rfc1437.de/2003/12/15/rfc-3492-punicode/SuperDrivehttps://www.rfc1437.de/2003/12/15/superdrive/Hooray for Hewlett-Packard!https://www.rfc1437.de/2003/12/14/hooray-for-hewlett-packard/[Inkjet-list] HP Inkjet Linux Driver 1.5 Releasehttps://www.rfc1437.de/2003/12/14/inkjet-list-hp-inkjet-linux-driver-1-5-release/Lucky Strike Originals - Tivoli Model Three.https://www.rfc1437.de/2003/12/14/lucky-strike-originals-tivoli-model-three/Macht PowerPoint blöd?https://www.rfc1437.de/2003/12/14/macht-powerpoint-bloed/Radio Dayshttps://www.rfc1437.de/2003/12/14/radio-days/Second p0st: Repairing MetaKit databaseshttps://www.rfc1437.de/2003/12/14/second-p0st-repairing-metakit-databases/The Museum of HP Calculatorshttps://www.rfc1437.de/2003/12/14/the-museum-of-hp-calculators/Wiki Calculators - Main.HomePagehttps://www.rfc1437.de/2003/12/14/wiki-calculators-main-homepage/Saubere Entsorgung: Bazillus hat Hunger auf Atommüll - Wissenschaft - SPIEGEL ONLINEhttps://www.rfc1437.de/2003/12/13/saubere-entsorgung-bazillus-hat-hunger-auf/Die Zeit 30 / 2003 - (c) DIE ZEIT : Artikeltitel der ZEIT in Ihrer Websitehttps://www.rfc1437.de/2003/12/12/die-zeit-30-2003-c-die-zeit-artikeltitel-der-zeit/"Die Zeit" mit RSShttps://www.rfc1437.de/2003/12/12/die-zeit-mit-rss/GROKLAW - die Mitschrift des Gerichtsterminshttps://www.rfc1437.de/2003/12/12/groklaw-die-mitschrift-des-gerichtstermins/iPodhead.comhttps://www.rfc1437.de/2003/12/12/ipodhead-com/Leica Digilux 2 - the bigger picture: Digital Photography Reviewhttps://www.rfc1437.de/2003/12/12/leica-digilux-2-the-bigger-picture-digital/Minolta Digital SLR next year and morehttps://www.rfc1437.de/2003/12/12/minolta-digital-slr-next-year-and-more/Put the curser automatically in a forms fieldhttps://www.rfc1437.de/2003/12/12/put-the-curser-automatically-in-a-forms-field/Schill-Fraktion ohne Schillhttps://www.rfc1437.de/2003/12/12/schill-fraktion-ohne-schill/Supybothttps://www.rfc1437.de/2003/12/12/supybot/The Onion | CEO's Marital Duties Outsourced To Mexican Groundskeeperhttps://www.rfc1437.de/2003/12/12/the-onion-ceo-s-marital-duties-outsourced-to/xsdb html indexhttps://www.rfc1437.de/2003/12/12/xsdb-html-index/A garbage collector for C and C++https://www.rfc1437.de/2003/12/11/a-garbage-collector-for-c-and-c/"AppleScript: The Definitive Guide" releasedhttps://www.rfc1437.de/2003/12/11/applescript-the-definitive-guide-released/Atom-Raumschiff soll Leben findenhttps://www.rfc1437.de/2003/12/11/atom-raumschiff-soll-leben-finden/FocusFixer by FixerLabshttps://www.rfc1437.de/2003/12/11/focusfixer-by-fixerlabs/GROKLAW über SCOs angebliche Opferrolle eines DDOS Angriffshttps://www.rfc1437.de/2003/12/11/groklaw-ueber-scos-angebliche-pfrrll-ns-dds-ngrffs/JSch -- Java Secure Channelhttps://www.rfc1437.de/2003/12/11/jsch-java-secure-channel/look, Ma: I didnt make it one more timehttps://www.rfc1437.de/2003/12/11/look-ma-i-didnt-make-it-one-more-time/LUFS-Pythonhttps://www.rfc1437.de/2003/12/11/lufs-python/NETZEITUNG IRAK: Fotograf Nachtwey bei Angriff in Irak verletzthttps://www.rfc1437.de/2003/12/11/netzeitung-irak-fotogrf-nchtwy-b-ngrff-n-rk-vrltzt/Neues Feature: Blogmarkshttps://www.rfc1437.de/2003/12/11/neues-feature-blogmarks/Perthon -- Python to Perl Language Translationhttps://www.rfc1437.de/2003/12/11/perthon-python-to-perl-language-translation/ScummVMhttps://www.rfc1437.de/2003/12/11/scummvm/Smile von Satimage-softwarehttps://www.rfc1437.de/2003/12/11/smile-von-satimage-software/TrueBlur by FixerLabshttps://www.rfc1437.de/2003/12/11/trueblur-by-fixerlabs/Tucholsky hat eben immer noch Rechthttps://www.rfc1437.de/2003/12/11/tucholsky-hat-eben-immer-noch-recht/Gefälschte URLs im Internet Explorerhttps://www.rfc1437.de/2003/12/10/gefaelschte-urls-im-internet-explorer/Harald Schmidt hört auf - na und?https://www.rfc1437.de/2003/12/10/harald-schmidt-hoert-auf-na-und/IronPython Benchmarkshttps://www.rfc1437.de/2003/12/10/ironpython-benchmarks/News: Microsoft der Motor - Linux die Bremse?https://www.rfc1437.de/2003/12/10/news-microsoft-der-motor-linux-die-bremse/Verwirrung um Microsoft-Patcheshttps://www.rfc1437.de/2003/12/10/verwirrung-um-microsoft-patches/GROKLAW erklärt was genau SCO alles IBM vorlegen musshttps://www.rfc1437.de/2003/12/09/groklaw-erklaert-was-genau-sco-alles-ibm-vrlgn-mss/Insekten-Aktion: Rettet den Baumhummer! - Wissenschaft - SPIEGEL ONLINEhttps://www.rfc1437.de/2003/12/09/insekten-aktion-rettt-dn-bmhmmr-wssnschft-spgl-nln/Medley Lisphttps://www.rfc1437.de/2003/12/09/medley-lisp/Neuwahlen in Hamburghttps://www.rfc1437.de/2003/12/09/neuwahlen-in-hamburg/Pädophilie: Ab jetzt sind die Opfer schuld!https://www.rfc1437.de/2003/12/09/paedophilie-ab-jetzt-sind-die-opfer-schuld/Slate Language Websitehttps://www.rfc1437.de/2003/12/09/slate-language-website/ATPM 9.12 - ATPO: Outliner Use Patternshttps://www.rfc1437.de/2003/12/08/atpm-912-atpo-outliner-use-patterns/Aus der Traum vom Brötchenservice im Zughttps://www.rfc1437.de/2003/12/08/aus-der-traum-vom-broetchenservice-im-zug/RSA-576 geknackthttps://www.rfc1437.de/2003/12/08/rsa-576-geknackt/Schill ignoriert Entmachtunghttps://www.rfc1437.de/2003/12/08/schill-ignoriert-entmachtung/SCO releases draconian NDAhttps://www.rfc1437.de/2003/12/08/sco-releases-draconian-nda/Britische Gefangene sollen in Guantánamo bleibenhttps://www.rfc1437.de/2003/12/07/britische-gefangene-sollen-in-guantnamo-bleiben/Niedrigfrequenzhttps://www.rfc1437.de/2003/12/07/niedrigfrequenz/SCO verschiebt Bilanzkonferenz zum dritten Quartalhttps://www.rfc1437.de/2003/12/07/sco-verschiebt-bilanzkonferenz-zum-dritten-quartal/Cruel and Tender: Fotografie und das Wirklichehttps://www.rfc1437.de/2003/12/06/cruel-and-tender-fotografie-und-das-wirkliche/Schill entmachtet Schillhttps://www.rfc1437.de/2003/12/06/schill-entmachtet-schill/Schwarze Löcher im Miniformathttps://www.rfc1437.de/2003/12/06/schwarze-loecher-im-miniformat/Security? What security?https://www.rfc1437.de/2003/12/05/security-what-security/Software-Aktualisierung wird aktualisierthttps://www.rfc1437.de/2003/12/05/software-aktualisierung-wird-aktualisiert/Deutsche Schule: sechs, setzenhttps://www.rfc1437.de/2003/12/04/deutsche-schule-sechs-setzen/Microsoft's FAT chargeshttps://www.rfc1437.de/2003/12/04/microsofts-fat-charges/rsync übers Netz verwundbarhttps://www.rfc1437.de/2003/12/04/rsync-uebers-netz-verwundbar/What The Copywright Law Really Says (Score:0)https://www.rfc1437.de/2003/12/04/what-the-copywright-law-really-says-score0/Der amerikanische Dissidenthttps://www.rfc1437.de/2003/12/03/der-amerikanische-dissident/Deutschland sucht das Superblog - ohne michhttps://www.rfc1437.de/2003/12/03/deutschland-sucht-das-superblog-ohne-mich/GROKLAW - SCOs eigene Beteiligung an den angeblichen Lizenzverstössenhttps://www.rfc1437.de/2003/12/03/groklaw-scos-eigen-btlgng-n-dn-ngblchn-lznzvrstssn/Kuhl: Spenden kamen von Möllemannhttps://www.rfc1437.de/2003/12/03/kuhl-spenden-kamen-von-moellemann/Marca: Heras will zu Libertyhttps://www.rfc1437.de/2003/12/03/marca-heras-will-zu-liberty/USA drohen "Schurkenstaaten" mit Konsequenzenhttps://www.rfc1437.de/2003/12/03/usa-drohen-schurkenstaaten-mit-konsequenzen/Bug im Linux-Kernel ermöglichte Einbruch in Debian-Serverhttps://www.rfc1437.de/2003/12/02/bug-im-linux-kernel-ermoeglichte-enbrch-n-dbn-srvr/Delfinblut taucht das Meer in tiefes Rothttps://www.rfc1437.de/2003/12/02/delfinblut-taucht-das-meer-in-tiefes-rot/Kfz-Kennzeichen-Abmahner zieht Forderungen gegen Domain-Inhaber zurückhttps://www.rfc1437.de/2003/12/02/kfz-kennzeichn-bmhnr-zht-frdrngn-ggn-dmn-nhbr-zrck/Pharma-Unternehmen wird Hauptsponsor des BDRhttps://www.rfc1437.de/2003/12/02/pharma-unternehmen-wird-hauptsponsor-des-bdr/Apache: mod_auth_remotehttps://www.rfc1437.de/2003/12/01/apache-mod-auth-remote/Leica Digilux 2https://www.rfc1437.de/2003/12/01/leica-digilux-2/Schufte und verzichte - für das deutsche Vaterlandhttps://www.rfc1437.de/2003/12/01/schufte-und-verzichte-fuer-das-deutsche-vaterland/SPD-Arbeitskreis: "Filmindustrie zeigt menschenverachtendes Weltbild"https://www.rfc1437.de/2003/12/01/spd-arbeitskres-flmndstr-zgt-mnschnvrchtnds-wltbld/Bill Kearney: MacOS doesn''t cut it in the Enterprisehttps://www.rfc1437.de/2003/11/30/bill-kearney-macos-doesnt-cut-it-in-the-enterprise/MkSQL - SQL für Metakit in Pythonhttps://www.rfc1437.de/2003/11/30/mksql-sql-fuer-metakit-in-python/What the heck is: A typehttps://www.rfc1437.de/2003/11/30/what-the-heck-is-a-type/Der Beste kommt aus NRWhttps://www.rfc1437.de/2003/11/29/der-beste-kommt-aus-nrw/Entwickler von File-Sharing-Software verhaftethttps://www.rfc1437.de/2003/11/29/entwickler-von-file-sharing-software-verhaftet/Just posted! Olympus E-1 full reviewhttps://www.rfc1437.de/2003/11/29/just-posted-olympus-e-1-full-review/Anwalt gegen Anwalt - holt schon mal Cola und Popcornhttps://www.rfc1437.de/2003/11/28/anwalt-gegen-anwalt-holt-schon-mal-cola-und-popcrn/Das E-Business Weblog: Das Ende des Bloggens?https://www.rfc1437.de/2003/11/28/das-e-business-weblog-das-ende-des-bloggens/Europa gibt auf - Galileo wird abhängig von den USAhttps://www.rfc1437.de/2003/11/28/europa-gibt-auf-galileo-wird-abhaengig-von-den-usa/GROKLAW - der Brief von SCO an IBM aus dem Maihttps://www.rfc1437.de/2003/11/28/groklaw-der-brief-von-sco-an-ibm-aus-dem-mai/Interview mit Danilo Hondo: "Ich denke ans Grüne Trikot"https://www.rfc1437.de/2003/11/28/interview-mit-danilo-hondo-ich-denke-ans-grun-trkt/iPod - Akku - Spiegelhttps://www.rfc1437.de/2003/11/28/ipod-akku-spiegel/Konflikt zwischen Blog und Arbeitgeberhttps://www.rfc1437.de/2003/11/28/konflikt-zwischen-blog-und-arbeitgeber/The Early History of Smalltalkhttps://www.rfc1437.de/2003/11/28/the-early-history-of-smalltalk/Urteil gegen Domains mit Städtenamen rechtskräftighttps://www.rfc1437.de/2003/11/28/urteil-gegen-domains-mit-staedtenamen-rechtskraftg/Contax SL300R T* Announcedhttps://www.rfc1437.de/2003/11/27/contax-sl300r-t-announced/Das Ergebnis des Untersuchungsausschusses zum Wahlbetrughttps://www.rfc1437.de/2003/11/27/das-ergebnis-des-untersuchungsausschsss-zm-whlbtrg/Interview mit Friedhelm Hengsbachhttps://www.rfc1437.de/2003/11/27/interview-mit-friedhelm-hengsbach/Patienten prozessieren wegen Roboter-Pfuschhttps://www.rfc1437.de/2003/11/27/patienten-prozessieren-wegen-roboter-pfusch/Polizeiübergriffe auf linke Medien in Hamburg?https://www.rfc1437.de/2003/11/27/polizeiuebergriffe-auf-linke-medien-in-hamburg/Schwerwiegender Fehler in Verschlüsselungs-Software GnuPGhttps://www.rfc1437.de/2003/11/27/schwerwiegender-fehler-in-verschlsslngs-sftwr-gnpg/Staatsministerin: Illegales Kopieren ist wie eine böse Krankheithttps://www.rfc1437.de/2003/11/27/staatsministerin-illegales-kopirn-st-w-n-bs-krnkht/Wysiwyg-Pionier Simonyi will das Programmieren revolutionierenhttps://www.rfc1437.de/2003/11/27/wysiwyg-pionier-simonyi-will-das-progrmmrn-rvltnrn/Personal Firewall verursacht DNS-Störunghttps://www.rfc1437.de/2003/11/26/personal-firewall-verursacht-dns-stoerung/Sicherheitsloch in Moveable Typehttps://www.rfc1437.de/2003/11/26/sicherheitsloch-in-moveable-type/Weblog spam [dive into mark]https://www.rfc1437.de/2003/11/26/weblog-spam-dive-into-mark/AROS: Amiga® Research Operating Systemhttps://www.rfc1437.de/2003/11/25/aros-amiga-research-operating-system/Genetische Information soll nicht patentierbar seinhttps://www.rfc1437.de/2003/11/25/genetische-information-soll-nicht-patentierbar-sen/Hamster grub älteste Speisekammer der Welthttps://www.rfc1437.de/2003/11/25/hamster-grub-aelteste-speisekammer-der-welt/Hier kommt der Graus!https://www.rfc1437.de/2003/11/25/hier-kommt-der-graus/Internet Explorer wieder verwundbarhttps://www.rfc1437.de/2003/11/25/internet-explorer-wieder-verwundbar/Kritik an Webserver-Statistikhttps://www.rfc1437.de/2003/11/25/kritik-an-webserver-statistik/McBride intimates code cleanup in Linux nigh impossiblehttps://www.rfc1437.de/2003/11/25/mcbride-intimates-code-cleanup-in-linux-ngh-mpssbl/Steuerparadies Rotlichtmilieuhttps://www.rfc1437.de/2003/11/25/steuerparadies-rotlichtmilieu/Burg Vischering in Lüdinghausenhttps://www.rfc1437.de/2003/11/24/burg-vischering-in-luedinghausen/Negativrekord bei Ausbildungsplätzenhttps://www.rfc1437.de/2003/11/24/negativrekord-bei-ausbildungsplaetzen/Scharon: "Kollektiver Antisemitismus" in Europahttps://www.rfc1437.de/2003/11/24/scharon-kollektiver-antisemitismus-in-europa/"...sehe ich mich gezwungen, rechtliche Schritte einzuleiten"https://www.rfc1437.de/2003/11/24/sehe-ich-mich-gezwungen-rechtliche-schritte-enzltn/Which side of the road do they drive on?https://www.rfc1437.de/2003/11/24/which-side-of-the-road-do-they-drive-on/Wirbel um Gerster-Behördehttps://www.rfc1437.de/2003/11/24/wirbel-um-gerster-behoerde/i d l y . o r g :: Porn Sites Hiding Behind Blogshttps://www.rfc1437.de/2003/11/23/i-d-l-y-o-r-g-porn-sites-hiding-behind-blogs/Metro-Konzern weiterhin im Abmahn-Fieberhttps://www.rfc1437.de/2003/11/23/metro-konzern-weiterhin-im-abmahn-fieber/"Not amused": Bush-Besuch hinterlässt Spurenhttps://www.rfc1437.de/2003/11/23/not-amused-bush-besuch-hinterlaesst-spuren/Rondayview: Da Funk and Da Noisehttps://www.rfc1437.de/2003/11/23/rondayview-da-funk-and-da-noise/Inhaftierte Globalisierungskritiker im Hungerstreikhttps://www.rfc1437.de/2003/11/22/inhaftierte-globalisierungskritiker-im-hungerstrek/LEICA DIGILUX 2 - mehr Details zum Kandidatenhttps://www.rfc1437.de/2003/11/22/leica-digilux-2-mehr-details-zum-kandidaten/Namensstreit mit Red Hat um Fedorahttps://www.rfc1437.de/2003/11/22/namensstreit-mit-red-hat-um-fedora/Rechtsextremismusverdacht beim Bund der Selbstständigenhttps://www.rfc1437.de/2003/11/22/rechtsextremismusverdacht-beim-bund-dr-slbststndgn/Wirbel um TV-Dopingbeichte in Italienhttps://www.rfc1437.de/2003/11/22/wirbel-um-tv-dopingbeichte-in-italien/AT&T verklagt eBay und PayPalhttps://www.rfc1437.de/2003/11/21/att-verklagt-ebay-und-paypal/debian.org gehackt [Update]https://www.rfc1437.de/2003/11/21/debianorg-gehackt-update/Deutschland, die verspätete Nationhttps://www.rfc1437.de/2003/11/21/deutschland-die-verspaetete-nation/Die Legende vom Salzstockhttps://www.rfc1437.de/2003/11/21/die-legende-vom-salzstock/New LUMIX camera DMC-LC1 scheduled for spring 2004https://www.rfc1437.de/2003/11/21/new-lumix-camera-dmc-lc1-scheduled-for-spring-2004/Zoff bei den GNUshttps://www.rfc1437.de/2003/11/21/zoff-bei-den-gnus/Computerpanne und schlechte Ausbildung führten zu US-Blackouthttps://www.rfc1437.de/2003/11/20/computerpanne-und-schlechte-sbldng-fhrtn-z-s-blckt/Open Content und verwandte Lizenzenhttps://www.rfc1437.de/2003/11/20/open-content-und-verwandte-lizenzen/Die ARD auf Geisterjagdhttps://www.rfc1437.de/2003/11/19/die-ard-auf-geisterjagd/Hochhäuser bringen Schanghai zum Sinkenhttps://www.rfc1437.de/2003/11/19/hochhaeuser-bringen-schanghai-zum-sinken/Kanzler über Vorstandswahl-Ergebnisse verärgert: "Sauerei"https://www.rfc1437.de/2003/11/19/kanzler-ueber-vorstandswahl-ergebnisse-verargrt-sr/Kopierschutzdebakel möglicherweise auch bei Video-DVDshttps://www.rfc1437.de/2003/11/19/kopierschutzdebakel-moeglicherweise-auch-b-vd-dvds/Lizenzgebühren für jede einzelne Bohnehttps://www.rfc1437.de/2003/11/19/lizenzgebuehren-fuer-jede-einzelne-bohne/SCO-Chef: Diese Welt braucht proprietäre Systemehttps://www.rfc1437.de/2003/11/19/sco-chef-diese-welt-braucht-proprietaere-systeme/SCO claims world software market under threathttps://www.rfc1437.de/2003/11/19/sco-claims-world-software-market-under-threat/SCO Hints at *BSD Lawsuits Next Year, And Morehttps://www.rfc1437.de/2003/11/19/sco-hints-at-bsd-lawsuits-next-year-and-more/They found Nemo ...https://www.rfc1437.de/2003/11/19/they-found-nemo/InfoWorld: SCO CEO: Novell-SuSE breaks SCO contract: November 18, 2003: By : Platformshttps://www.rfc1437.de/2003/11/18/nfwrld-sc-c-nvll-ss-brks-sc-cntrct-nvmbr-18-2003-b/Python und AppleScripthttps://www.rfc1437.de/2003/11/18/python-und-applescript/SCO erweitert Zusammenarbeit mit seinen Anwältenhttps://www.rfc1437.de/2003/11/18/sco-erweitert-zusammenarbeit-mit-seinen-anwaelten/SPD bangt um Nordrhein-Westfalenhttps://www.rfc1437.de/2003/11/18/spd-bangt-um-nordrhein-westfalen/Heise News-Ticker: PostgreSQL in Version 7.4 veröffentlichthttps://www.rfc1437.de/2003/11/17/heise-news-ticker-postgresql-in-vrsn-74-vrffntlcht/Serious Mac OS X file-save bug could delete fileshttps://www.rfc1437.de/2003/11/17/serious-mac-os-x-file-save-bug-could-delete-files/Union hält die Regierung des Wahlbetrugs für schuldighttps://www.rfc1437.de/2003/11/17/union-haelt-die-regierung-des-wahlbetrgs-fr-schldg/Verfassungsbeschwerde gegen 0190-Gesetzhttps://www.rfc1437.de/2003/11/16/verfassungsbeschwerde-gegen-0190-gesetz/20 Jahre c''t: Geschichte mit Häkchenhttps://www.rfc1437.de/2003/11/15/20-jahre-ct-geschichte-mit-haekchen/Ex-Geheimdienstchefs Israels kritisieren Scharonhttps://www.rfc1437.de/2003/11/14/ex-geheimdienstchefs-israels-kritisieren-scharon/GROKLAW - warum IBM vielleicht Analysten ins Verfahren zitierthttps://www.rfc1437.de/2003/11/14/groklaw-warum-ibm-vielleicht-nlystn-ns-vrfhrn-ztrt/Phonak will es wissen: Mit neun Neuen zur Tourhttps://www.rfc1437.de/2003/11/14/phonak-will-es-wissen-mit-neun-neuen-zur-tour/BBEdit 7.1 raushttps://www.rfc1437.de/2003/11/13/bbedit-71-raus/Panorama über Hohmann und den rechten Rand der CDUhttps://www.rfc1437.de/2003/11/13/panorama-ueber-hohmann-und-den-rechten-rand-der-cd/Stimme der Mehrheit?https://www.rfc1437.de/2003/11/13/stimme-der-mehrheit/High Performance Computing for Mac OS Xhttps://www.rfc1437.de/2003/11/12/high-performance-computing-for-mac-os-x/InfoWorld: Microsoft prepares security assault on Linux: November 11, 2003: By Kieren McCarthy, ...https://www.rfc1437.de/2003/11/12/nfwrld-mcrsft-prprs-scrty-sslt-n-lnx-nvmbr-11-2003/Steinbrück: Bürger müssen mehr für Alter und Pflege ausgebenhttps://www.rfc1437.de/2003/11/12/steinbrueck-buerger-muessn-mhr-fr-ltr-nd-pflg-sgbn/Union und FDP wollen Kündigungsschutz weiter aufweichenhttps://www.rfc1437.de/2003/11/12/union-und-fdp-wollen-kuendigungsschutz-weitr-fwchn/Zerstörung der Öffentlich-Rechtlichen?https://www.rfc1437.de/2003/11/12/zerstoerung-der-oeffentlich-rechtlichen/Apple bringt Update auf Mac OS X 10.3.1https://www.rfc1437.de/2003/11/11/apple-bringt-update-auf-mac-os-x-1031/Kill Billhttps://www.rfc1437.de/2003/11/11/kill-bill/Schnelles Ende im neuen Kimble-Prozesshttps://www.rfc1437.de/2003/11/11/schnelles-ende-im-neuen-kimble-prozess/You call that a Monad? This HEREs a Monad.... And a Shell.https://www.rfc1437.de/2003/11/11/you-call-that-a-monad-this-heres-a-monad-and-shll/Hohmann vielleicht doch vor die Tür?https://www.rfc1437.de/2003/11/10/hohmann-vielleicht-doch-vor-die-tuer/Koch und Merkel einig: Hohmann vor Rauswurfhttps://www.rfc1437.de/2003/11/10/koch-und-merkel-einig-hohmann-vor-rauswurf/Mac OS X 10.3: Zip-Funktion des Finder nicht kompatibelhttps://www.rfc1437.de/2003/11/10/mac-os-x-103-zip-funktion-des-finder-nicht-komptbl/Rebel With A Causehttps://www.rfc1437.de/2003/11/10/rebel-with-a-cause/Simoni challenges Armstrong to Giro-Tour duelhttps://www.rfc1437.de/2003/11/10/simoni-challenges-armstrong-to-giro-tour-duel/Security Focus hat RSS Feedshttps://www.rfc1437.de/2003/11/09/security-focus-hat-rss-feeds/CSU plant Basisrente für Kinderlosehttps://www.rfc1437.de/2003/11/08/csu-plant-basisrente-fuer-kinderlose/"Gier hinter der Maske des Wohltäters"https://www.rfc1437.de/2003/11/08/gier-hinter-der-maske-des-wohltaeters/Grüne lehnen Kryptoverbot weiterhin abhttps://www.rfc1437.de/2003/11/08/gruene-lehnen-kryptoverbot-weiterhin-ab/Harry Potter macht doofhttps://www.rfc1437.de/2003/11/08/harry-potter-macht-doof/It had to start sometime...https://www.rfc1437.de/2003/11/08/it-had-to-start-sometime/SCO versus Linux: All your code are belong to ushttps://www.rfc1437.de/2003/11/08/sco-versus-linux-all-your-code-are-belong-to-us/Spammed by your routerhttps://www.rfc1437.de/2003/11/08/spammed-by-your-router/Stoiber droht Hohmann mit Rauswurfhttps://www.rfc1437.de/2003/11/08/stoiber-droht-hohmann-mit-rauswurf/Test des Einflusses von Googlespamming auf Bloghosting-Nutzerhttps://www.rfc1437.de/2003/11/08/test-des-einflusses-von-goglspmmng-f-blghstng-ntzr/de.indymedia.org | USA: Wählerbetrug und Unterlassungsklagenhttps://www.rfc1437.de/2003/11/07/deindymediaorg-usa-waehlerbetrug-und-ntrlssngsklgn/110 rechtsextreme Vorfälle in der Bundeswehr in zehn Monatenhttps://www.rfc1437.de/2003/11/06/110-rechtsextreme-vorfaell-n-dr-bndswhr-n-zhn-mntn/Die Zeit 46 / 2003 - M.Moore: "Nicht ganz Amerika ist verrückt"https://www.rfc1437.de/2003/11/06/die-zeit-46-2003-mmoore-nicht-ganz-amerk-st-vrrckt/fashion victims paradise - abmahnwahn, auweia!: abmahnwahn jetzt auch vor deiner haustuer...https://www.rfc1437.de/2003/11/06/fshn-vctms-prds-bmhnwhn-w-bmhnwhn-jtzt-ch-vr-dnr-h/Großer Hund von Milchstraße zerrissenhttps://www.rfc1437.de/2003/11/06/grosser-hund-von-milchstrasse-zerrissen/Merkel lehnt weitere Sanktionen gegen Hohmann abhttps://www.rfc1437.de/2003/11/06/merkel-lehnt-weitere-sanktionen-gegen-hohmann-ab/Panther *könnte* auf Intel laufenhttps://www.rfc1437.de/2003/11/06/panther-koennte-auf-intel-laufen/Saddam wollte Frieden in letzter Minutehttps://www.rfc1437.de/2003/11/06/saddam-wollte-frieden-in-letzter-minute/NRW-Landesverwaltung stellt auf Microsofts Office 2003 umhttps://www.rfc1437.de/2003/11/05/nrw-landesverwaltung-stellt-auf-mcrsfts-ffc-2003-m/Google Indexing IRC?https://www.rfc1437.de/2003/11/04/google-indexing-irc/Netzwerkspezialist Novell kauft Linux-Distributor SuSE [Update]https://www.rfc1437.de/2003/11/04/netzwerkspezialist-novell-kauft-lnx-dstrbtr-ss-pdt/Thierse: Themen wie "Florida-Rolf" bedrohen Demokratiehttps://www.rfc1437.de/2003/11/04/thierse-themen-wie-florida-rolf-bedrohen-demokrati/Von Generälen und Abgeordnetenhttps://www.rfc1437.de/2003/11/04/von-generaelen-und-abgeordneten/Warum lassen Fische Luft aus dem After blubbern?https://www.rfc1437.de/2003/11/04/warum-lassen-fische-luft-aus-dem-after-blubbern/Es geht los...https://www.rfc1437.de/2003/11/03/es-geht-los/GROKLAW - diesmal verstösst SCO gegen die GPLhttps://www.rfc1437.de/2003/11/03/groklaw-diesmal-verstoesst-sco-gegen-die-gpl/Home of the 4tH compilerhttps://www.rfc1437.de/2003/11/03/home-of-the-4th-compiler/Immer lustigerhttps://www.rfc1437.de/2003/11/03/immer-lustiger/Jubiläum - ein Jahr Hugos House of Weblog Horrorhttps://www.rfc1437.de/2003/11/03/jubilaeum-ein-jahr-hugos-house-of-weblog-horror/Kommunen steht das Wasser bis zum Halshttps://www.rfc1437.de/2003/11/03/kommunen-steht-das-wasser-bis-zum-hals/Laubbläser ...https://www.rfc1437.de/2003/11/03/laubblaeser/Wired News: Anti-Copy Bill Slams Codershttps://www.rfc1437.de/2003/11/03/wired-news-anti-copy-bill-slams-coders/Das Gift der "Inquisition light"https://www.rfc1437.de/2003/11/02/das-gift-der-inquisition-light/Gestatten, Hohmann, Volksvertreter!https://www.rfc1437.de/2003/11/01/gestatten-hohmann-volksvertreter/Ronald Schill will Bundespolitik aufmischenhttps://www.rfc1437.de/2003/11/01/ronald-schill-will-bundespolitik-aufmischen/Heise News-Ticker: DNS-Verwirrung durch neuen Ländercodehttps://www.rfc1437.de/2003/10/31/heise-news-ticker-dns-verwirrung-durch-neun-lndrcd/Linux ist für DATEV keine Alternativehttps://www.rfc1437.de/2003/10/31/linux-ist-fuer-datev-keine-alternative/SCO bietet Unix-Lizenz für Linux-Nutzerhttps://www.rfc1437.de/2003/10/31/sco-bietet-unix-lizenz-fuer-linux-nutzer/CDU-Abgeordneter nennt Juden "Tätervolk"https://www.rfc1437.de/2003/10/30/cdu-abgeordneter-nennt-juden-taetervolk/GROKLAW - erste Reaktionen auf die letzten SCO-Textehttps://www.rfc1437.de/2003/10/30/groklaw-erste-reaktionen-auf-die-letzten-sco-texte/Probleme mit Java unter Mac OS X 10.3https://www.rfc1437.de/2003/10/30/probleme-mit-java-unter-mac-os-x-103/US-Forscher züchten tödliche Pockenvirenhttps://www.rfc1437.de/2003/10/30/us-forscher-zuechten-toedliche-pockenviren/Starker geomagnetischer Sturm trifft die Erde [Update]https://www.rfc1437.de/2003/10/29/starker-geomagnetischer-sturm-trifft-die-erde-updt/GROKLAW - die nächste Runde an Dokumentenhttps://www.rfc1437.de/2003/10/28/groklaw-die-naechste-runde-an-dokumenten/Paulus tritt Middelhoff nachträglich in die Eierhttps://www.rfc1437.de/2003/10/28/paulus-tritt-middelhoff-nachtraeglich-in-die-eier/Telekom verlangt Einkommensverzicht für geringeren Personalabbauhttps://www.rfc1437.de/2003/10/28/telekom-verlangt-einkommnsvrzcht-fr-grngrn-prsnlbb/Bald ist das Verzeichnis vollhttps://www.rfc1437.de/2003/10/27/bald-ist-das-verzeichnis-voll/Cannabis-Affäre: Pieper wettert gegen Kubickihttps://www.rfc1437.de/2003/10/27/cannabis-affaere-pieper-wettert-gegen-kubicki/GROKLAW zerlegt SCOs neueste Verbaltänzehttps://www.rfc1437.de/2003/10/27/groklaw-zerlegt-scos-neueste-verbaltaenze/Internet Explorer gefährdet Windowshttps://www.rfc1437.de/2003/10/27/internet-explorer-gefaehrdet-windows/Nochmal KFZ-Abmahnungenhttps://www.rfc1437.de/2003/10/27/nochmal-kfz-abmahnungen/Regulierungsbehörde räumt bei 0190er-Nummern aufhttps://www.rfc1437.de/2003/10/27/regulierungsbehoerde-raeumt-bei-0190er-nummern-auf/Steinzeitsiedlung in der Ostsee entdeckthttps://www.rfc1437.de/2003/10/27/steinzeitsiedlung-in-der-ostsee-entdeckt/Kfz-Kennzeichen-Abmahnungen: "Betrugsverdacht absolut haltlos"https://www.rfc1437.de/2003/10/26/kfz-kennzeichen-abmahnungen-btrgsvrdcht-bslt-hltls/MC Hawking's Cribhttps://www.rfc1437.de/2003/10/26/mc-hawkings-crib/Paket in IC gefundenhttps://www.rfc1437.de/2003/10/26/paket-in-ic-gefunden/Baustopp am Holocaust-Mahnmalhttps://www.rfc1437.de/2003/10/25/baustopp-am-holocaust-mahnmal/Zwei Millionen Dollar Strafe für Spammerhttps://www.rfc1437.de/2003/10/25/zwei-millionen-dollar-strafe-fuer-spammer/Beware of the duckhttps://www.rfc1437.de/2003/10/24/beware-of-the-duck/Es wird Ernst mit den Jugendschutzbestimmungen im Internethttps://www.rfc1437.de/2003/10/24/es-wird-ernst-mit-den-jugendschutzbstmmngn-m-ntrnt/"Juroren ohne Kompetenz"https://www.rfc1437.de/2003/10/24/juroren-ohne-kompetenz/Neue Privilegien: Otto Schily darf betrunken in London randalierenhttps://www.rfc1437.de/2003/10/24/neue-privilegien-tt-schly-drf-btrnkn-n-lndn-rndlrn/Polizei sucht im Haus von FDP-Generalsekretärin Pieper nach Haschhttps://www.rfc1437.de/2003/10/24/polizei-sucht-im-hs-vn-fdp-gnrlskrtrn-ppr-nch-hsch/Schools Sell Curriculum to RIAAhttps://www.rfc1437.de/2003/10/24/schools-sell-curriculum-to-riaa/Wenn Arbeit knapp wird...https://www.rfc1437.de/2003/10/24/wenn-arbeit-knapp-wird/Bericht: Regierung erwägt Erhöhung der Mehrwertsteuerhttps://www.rfc1437.de/2003/10/23/bericht-regierung-erwaegt-erhoehung-der-mehrwrtstr/CSU- und FDP-Schatzmeister sollen illegale Spende akzeptiert habenhttps://www.rfc1437.de/2003/10/23/csu-und-fdp-schatzmeistr-slln-llgl-spnd-kzptrt-hbn/Gator will sich nicht Spyware-Hersteller nennen lassenhttps://www.rfc1437.de/2003/10/23/gator-will-sich-nicht-spyware-hersteller-nnnn-lssn/Gerolsteiner: Bölts wird Sportlicher Leiterhttps://www.rfc1437.de/2003/10/23/gerolsteiner-boelts-wird-sportlicher-leiter/Größte indische Lebensversicherung wechselt von SCO zu Linuxhttps://www.rfc1437.de/2003/10/23/groesste-indische-lebnsvrschrng-wchslt-vn-sc-z-lnx/Israels Armee: "Arafat tot oder lebendig"https://www.rfc1437.de/2003/10/23/israels-armee-arafat-tot-oder-lebendig/Massives Sicherheitsproblem auf der ISShttps://www.rfc1437.de/2003/10/23/massives-sicherheitsproblem-auf-der-iss/Rot-Grün bessert bei Rentenplänen minimal nachhttps://www.rfc1437.de/2003/10/23/rot-gruen-bessert-bei-rentenplaenen-minimal-nach/Rot-grüner Streit um Gentechnik-Gesetzhttps://www.rfc1437.de/2003/10/23/rot-gruener-streit-um-gentechnik-gesetz/Uni Paderborn bietet Golf als Hauptfach anhttps://www.rfc1437.de/2003/10/23/uni-paderborn-bietet-golf-als-hauptfach-an/Unsignierte Java-Applets brechen aus Sandbox aus[Update]https://www.rfc1437.de/2003/10/23/unsignierte-java-applets-brechen-aus-sandbox-aspdt/Die Baby Boomer in Deutschlandhttps://www.rfc1437.de/2003/10/22/die-baby-boomer-in-deutschland/EU-Leitfaden für den Umstieg auf Open Sourcehttps://www.rfc1437.de/2003/10/22/eu-leitfaden-fuer-den-umstieg-auf-open-source/Gefunden: Kodex für Suchmaschinenhttps://www.rfc1437.de/2003/10/22/gefunden-kodex-fuer-suchmaschinen/Saban fordert Werbeverbot für ARD und ZDFhttps://www.rfc1437.de/2003/10/22/saban-fordert-werbeverbot-fuer-ard-und-zdf/Softwarepatente: IT-Verband ruft EU auf den "rechten Weg" zurückhttps://www.rfc1437.de/2003/10/22/softwarepatente-it-verband-rft-f-dn-rchtn-wg-zrck/Trojanisches Pferd der Atomkriegehttps://www.rfc1437.de/2003/10/22/trojanisches-pferd-der-atomkriege/US-Patent auf Systemverwaltung per Internethttps://www.rfc1437.de/2003/10/22/us-patent-auf-systemverwaltung-per-internet/Windows kollidiert mit Urheberrechthttps://www.rfc1437.de/2003/10/22/windows-kollidiert-mit-urheberrecht/Zensur in Düsseldorfhttps://www.rfc1437.de/2003/10/22/zensur-in-duesseldorf/Ende der Unschuld?https://www.rfc1437.de/2003/10/21/ende-der-unschuld/Kampagne für Genfoodhttps://www.rfc1437.de/2003/10/21/kampagne-fuer-genfood/Kinderlose sollen mehr für Pflegeversicherung zahlenhttps://www.rfc1437.de/2003/10/21/kinderlose-sollen-mehr-fuer-pflegeversicherng-zhln/Kontroverse um Fußfesseln für Schulschwänzerhttps://www.rfc1437.de/2003/10/21/kontroverse-um-fussfesseln-fuer-schulschwaenzer/Steuerzahlerbund: Pensionen von Politikern kürzenhttps://www.rfc1437.de/2003/10/21/steuerzahlerbund-pensionen-von-politikern-kuerzen/Unions-Nachwuchs will radikale Reformenhttps://www.rfc1437.de/2003/10/21/unions-nachwuchs-will-radikale-reformen/Zu viel Kaffee schuld an Blairs Herzrasen?https://www.rfc1437.de/2003/10/21/zu-viel-kaffee-schuld-an-blairs-herzrasen/AppleInsider - IBM introduced its POWER5https://www.rfc1437.de/2003/10/20/appleinsider-ibm-introduced-its-power5/CDU-Linie: Merkel setzt sich gegen Koch durchhttps://www.rfc1437.de/2003/10/20/cdu-linie-merkel-setzt-sich-gegen-koch-durch/Domain-Namen und KFZ-Kennzeichen: Gegenwelle gegen Abmahnungenhttps://www.rfc1437.de/2003/10/20/domain-namen-und-kfz-kennzeichn-ggnwll-ggn-bmhnngn/Online-Backup für kleine und mittlere Unternehmenhttps://www.rfc1437.de/2003/10/20/online-backup-fuer-kleine-und-mittlere-unternehmen/SPD setzt auf Verwaltungssoftware auf Basis von Microsoft Business Solutionshttps://www.rfc1437.de/2003/10/20/spd-stzt-f-vrwltngssftwr-f-bss-vn-mcrsft-bsnss-slt/Bericht: Online-Banking geknackthttps://www.rfc1437.de/2003/10/19/bericht-online-banking-geknackt/Bundestagswahl: Westerwelle ruft sich zum Spitzenkandidaten aushttps://www.rfc1437.de/2003/10/19/bundestagswahl-westerwell-rft-sch-zm-sptznknddtn-s/Leiden 28 Millionen US-Bürger unter Blähungen?https://www.rfc1437.de/2003/10/19/leiden-28-millionen-us-buerger-unter-blaehungen/Porno-Anbieter protestieren gegen Jugendschutz im Webhttps://www.rfc1437.de/2003/10/19/porno-anbieter-protestieren-gegen-jugendschtz-m-wb/Studie: Jeder dritte Schulschwänzer wird kriminellhttps://www.rfc1437.de/2003/10/19/studie-jeder-dritte-schulschwaenzer-wird-kriminell/Urheberrecht gegen Kritikerhttps://www.rfc1437.de/2003/10/19/urheberrecht-gegen-kritiker/Zur Seligsprechung von Agnes Gonxha Bojaxhiu, alias Mutter Teresahttps://www.rfc1437.de/2003/10/19/zur-seligsprechung-von-agnes-gnxh-bjxh-ls-mttr-trs/PowerBook-Käufer klagen über Display-Fehlerhttps://www.rfc1437.de/2003/10/18/powerbook-kaeufer-klagen-ueber-display-fehler/SCO vs. Linux: Kriegskasse aufgefüllthttps://www.rfc1437.de/2003/10/18/sco-vs-linux-kriegskasse-aufgefuellt/Abmahnungen wegen Kfz-Kennzeichen in Domain-Namenhttps://www.rfc1437.de/2003/10/17/abmahnungen-wegen-kfz-kennzeichen-in-domain-namen/Atom APIhttps://www.rfc1437.de/2003/10/17/atom-api/BND-Mitarbeiter wegen Spionage verhaftethttps://www.rfc1437.de/2003/10/17/bnd-mitarbeiter-wegen-spionage-verhaftet/Bush erkennt Parallelen zu "Arnie"https://www.rfc1437.de/2003/10/17/bush-erkennt-parallelen-zu-arnie/Das Beeindruckende am heutigen Tag ...https://www.rfc1437.de/2003/10/17/das-beeindruckende-am-heutigen-tag/First Look: Belkin Media Reader For iPodhttps://www.rfc1437.de/2003/10/17/first-look-belkin-media-reader-for-ipod/Krieg gegen Terror Kampf mit dem Satanhttps://www.rfc1437.de/2003/10/17/krieg-gegen-terror-kampf-mit-dem-satan/LKW-Maut: Vertrag wird offen gelegthttps://www.rfc1437.de/2003/10/17/lkw-maut-vertrag-wird-offen-gelegt/Microsoft erhält Patent für Cookieshttps://www.rfc1437.de/2003/10/17/microsoft-erhaelt-patent-fuer-cookies/Rollup-Pack für Windows XP läutet neue Update-Politik von Microsoft einhttps://www.rfc1437.de/2003/10/17/rollup-pack-fr-wndws-xp-ltt-n-pdt-pltk-vn-mcrsft-n/Staatsanwalt droht Netzaktivist mit Berufsverbothttps://www.rfc1437.de/2003/10/17/staatsanwalt-droht-netzaktivist-mit-berufsverbot/Telekom beklagt massive Entwertung des Fernmeldegeheimnisseshttps://www.rfc1437.de/2003/10/17/telekom-beklagt-massive-entwertng-ds-frnmldghmnsss/Mautkorb für den Bundestaghttps://www.rfc1437.de/2003/10/16/mautkorb-fuer-den-bundestag/Phonak: Sevilla wird rechte Hand von Hamiltonhttps://www.rfc1437.de/2003/10/16/phonak-sevilla-wird-rechte-hand-von-hamilton/Saban dirigiert Streichkonzert bei N24https://www.rfc1437.de/2003/10/16/saban-dirigiert-streichkonzert-bei-n24/Schwachstellen in Exchange Serverhttps://www.rfc1437.de/2003/10/16/schwachstellen-in-exchange-server/Stopping Spamhttps://www.rfc1437.de/2003/10/16/stopping-spam/The Resurrection of SimplyGNUstep - OSNews.comhttps://www.rfc1437.de/2003/10/16/the-resurrection-of-simplygnustep-osnewscom/Abmahner und Absahner: Anwälte packen aushttps://www.rfc1437.de/2003/10/15/abmahner-und-absahner-anwaelte-packen-aus/Karlsruhe weist Klage gegen Tischgebet im Kindergarten abhttps://www.rfc1437.de/2003/10/15/karlsruhe-weist-klage-gegen-tischgebt-m-kndrgrtn-b/Mobbing wegen missliebiger Internetseitehttps://www.rfc1437.de/2003/10/15/mobbing-wegen-missliebiger-internetseite/Offener Brief an Martin Walserhttps://www.rfc1437.de/2003/10/15/offener-brief-an-martin-walser/Samba 3 schneller als Windows 2003 Serverhttps://www.rfc1437.de/2003/10/15/samba-3-schneller-als-windows-2003-server/US-Justizministerium geht gegen Greenpeace vorhttps://www.rfc1437.de/2003/10/15/us-justizministerium-geht-gegen-greenpeace-vor/US-Marine schränkt Sonar-Gebrauch einhttps://www.rfc1437.de/2003/10/15/us-marine-schraenkt-sonar-gebrauch-ein/USA verhindern Resolution gegen Israel durch Vetohttps://www.rfc1437.de/2003/10/15/usa-verhindern-resolution-gegen-israel-durch-veto/W3C verabschiedet neue Web-Formularehttps://www.rfc1437.de/2003/10/15/w3c-verabschiedet-neue-web-formulare/Wie man den ODEM-Gründer mundtot machen willhttps://www.rfc1437.de/2003/10/15/wie-man-den-odem-gruender-mundtot-machen-will/Andrew Grumet's Kommtar zu Kommentarspamhttps://www.rfc1437.de/2003/10/14/andrew-grumets-kommtar-zu-kommentarspam/Deutschland wieder Exportweltmeisterhttps://www.rfc1437.de/2003/10/14/deutschland-wieder-exportweltmeister/E-Data strengt Prozess wegen Patentrechtsverletzung anhttps://www.rfc1437.de/2003/10/14/e-data-strengt-prozess-wegen-patentrechtsvrltzng-n/Kölner CDU räumt Spendenvergehen einhttps://www.rfc1437.de/2003/10/14/koelner-cdu-raeumt-spendenvergehen-ein/Reichmann in the Rockieshttps://www.rfc1437.de/2003/10/14/reichmann-in-the-rockies/Guter Apple, böser PChttps://www.rfc1437.de/2003/10/13/guter-apple-boeser-pc/Loadbalancer in Pythonhttps://www.rfc1437.de/2003/10/13/loadbalancer-in-python/Nicht "vorsorglich" aufs Klohttps://www.rfc1437.de/2003/10/13/nicht-vorsorglich-aufs-klo/Twiki APIhttps://www.rfc1437.de/2003/10/13/twiki-api/Ödnis in Ödenfeldhttps://www.rfc1437.de/2003/10/12/oednis-in-oedenfeld/Zur Rechristianisierung des Westenshttps://www.rfc1437.de/2003/10/12/zur-rechristianisierung-des-westens/Israel hat aus Deutschland stammende U-Boote mit Atombomben ausgestattethttps://www.rfc1437.de/2003/10/11/israel-hat-s-dtschlnd-stmmnd-bt-mt-tmbmbn-sgstttt/Kopierschutz-Anbieter zieht Klagedrohung zurückhttps://www.rfc1437.de/2003/10/11/kopierschutz-anbieter-zieht-klagedrohung-zurueck/Zabel gereizt nach Ullrich-Rückkehr: Kein Pausen-Clownhttps://www.rfc1437.de/2003/10/11/zabel-gereizt-nach-ullrich-rueckkehr-kein-psn-clwn/Kopierschutzhersteller will Doktorand verklagenhttps://www.rfc1437.de/2003/10/10/kopierschutzhersteller-will-doktorand-verklagen/Militärsonar ließ Wale strandenhttps://www.rfc1437.de/2003/10/10/militaersonar-liess-wale-stranden/No Napster 2.0 for the iPodhttps://www.rfc1437.de/2003/10/10/no-napster-20-for-the-ipod/Radsport-WM: Bronze im Zeitfahren für Peschelhttps://www.rfc1437.de/2003/10/10/radsport-wm-bronze-im-zeitfahren-fuer-peschel/Spaß mit der Nigeria-Connectionhttps://www.rfc1437.de/2003/10/10/spaszlig-mit-der-nigeria-connection/Religion ist Kokain für's Volkhttps://www.rfc1437.de/2003/10/09/religion-ist-kokain-fuumlrs-volk/Schnellweg zum Warenkorbhttps://www.rfc1437.de/2003/10/09/schnellweg-zum-warenkorb/Sculley: Apple should have used Intel chipshttps://www.rfc1437.de/2003/10/09/sculley-apple-should-have-used-intel-chips/Bill Bondhttps://www.rfc1437.de/2003/10/08/bill-bond/Building a Balancing Scooterhttps://www.rfc1437.de/2003/10/08/building-a-balancing-scooter/07.10 - 05:03: Farbenblindhttps://www.rfc1437.de/2003/10/07/0710-0503-farbenblind/Microsoft ändert Internet Explorer wegen Eolas-Patentenhttps://www.rfc1437.de/2003/10/07/microsoft-aendert-internet-explorer-wegen-ls-ptntn/Neuer Schachzug gegen Urheberrecht und für Kopierprogrammehttps://www.rfc1437.de/2003/10/07/neuer-schachzug-gegen-urheberrecht-nd-fr-kprprgrmm/Technische Inkompetenz oder Wunschdenken?https://www.rfc1437.de/2003/10/07/technische-inkompetenz-oder-wunschdenken/VeriSign verteidigt Sitefinderhttps://www.rfc1437.de/2003/10/07/verisign-verteidigt-sitefinder/Weltrangliste: Zabel wieder vor Bettinihttps://www.rfc1437.de/2003/10/07/weltrangliste-zabel-wieder-vor-bettini/Asteroid verfehlte die Erde nur knapphttps://www.rfc1437.de/2003/10/06/asteroid-verfehlte-die-erde-nur-knapp/Das nenn ich Case-Modding!https://www.rfc1437.de/2003/10/06/das-nenn-ich-case-modding/Die VeriSign-Sondersitzung nahthttps://www.rfc1437.de/2003/10/06/die-verisign-sondersitzung-naht/Europäischer iTMS im Mai 2004?https://www.rfc1437.de/2003/10/06/europaeischer-itms-im-mai-2004/Gute Fragehttps://www.rfc1437.de/2003/10/06/gute-frage/Multithreaded Python für DOShttps://www.rfc1437.de/2003/10/06/multithreaded-python-fuer-dos/Schöner codenhttps://www.rfc1437.de/2003/10/06/schoumlner-coden/System der Info-Bildschirme in Hamburger U-Bahnen geknackthttps://www.rfc1437.de/2003/10/06/system-der-info-bildschirme-in-hmbrgr-bhnn-gknckt/Unerhört falsche Annahmenhttps://www.rfc1437.de/2003/10/06/unerhoert-falsche-annahmen/Warum ich Microsoft hasse ...https://www.rfc1437.de/2003/10/06/warum-ich-microsoft-hasse/ES5-Entwickler entfernen Hintertürhttps://www.rfc1437.de/2003/10/05/es5-entwickler-entfernen-hintertuer/Grafmatic Sheet Film Holderhttps://www.rfc1437.de/2003/10/05/grafmatic-sheet-film-holder/Kampf gegen Windmühle[...]e>Schornsteinfegerhttps://www.rfc1437.de/2003/10/05/kampf-gegen-strikewindmuehlenstrikeschornsteinfegr/Kill Bill - neuer Tarantino im Kinohttps://www.rfc1437.de/2003/10/04/kill-bill-neuer-tarantino-im-kino/Quellcode geklauthttps://www.rfc1437.de/2003/10/04/quellcode-geklaut/Scientologist's Treatments Lure Firefightershttps://www.rfc1437.de/2003/10/04/scientologists-treatments-lure-firefighters/SPD-Abweichlern mit Abwahl gedrohthttps://www.rfc1437.de/2003/10/04/spd-abweichlern-mit-abwahl-gedroht/Systemabstürze durch defekte Elkoshttps://www.rfc1437.de/2003/10/04/systemabstuerze-durch-defekte-elkos/Ullrich angeblich doch mit Telekom einighttps://www.rfc1437.de/2003/10/04/ullrich-angeblich-doch-mit-telekom-einig/VeriSign nimmt Site Finder vom Netzhttps://www.rfc1437.de/2003/10/04/verisign-nimmt-site-finder-vom-netz/Versenkbares 90mm Objektiv für Leica Mhttps://www.rfc1437.de/2003/10/04/versenkbares-90mm-objektiv-fuer-leica-m/Größtmögliche Gemeinheithttps://www.rfc1437.de/2003/10/03/groesstmoegliche-gemeinheit/Iwanow: Russischer Erstschlag nicht ausgeschlossenhttps://www.rfc1437.de/2003/10/03/iwanow-russischer-erstschlag-nicht-ausgeschlossen/Microsoft hält Patent auf Fehlerreportshttps://www.rfc1437.de/2003/10/03/microsoft-haelt-patent-auf-fehlerreports/Panasonic Lumix DMC-LC1 at CEATEChttps://www.rfc1437.de/2003/10/03/panasonic-lumix-dmc-lc1-at-ceatec/Signs of Intelligence: ICANN Demands Verisign Kill SiteFinderhttps://www.rfc1437.de/2003/10/03/signs-of-intelligence-icann-dmnds-vrsgn-kll-stfndr/Auch mal Statistikhttps://www.rfc1437.de/2003/10/02/auch-mal-statistik/Ermittlungen wegen Kanzleramtsakten eingestellthttps://www.rfc1437.de/2003/10/02/ermittlungen-wegen-kanzleramtsakten-eingestellt/Panasonic Lumix DMC-FZ10https://www.rfc1437.de/2003/10/02/panasonic-lumix-dmc-fz10/PyDS 0.6.0 ist raushttps://www.rfc1437.de/2003/10/02/pyds-060-ist-raus/Replikation für PostgreSQLhttps://www.rfc1437.de/2003/10/02/replikation-fuer-postgresql/Security? Oder Feature?https://www.rfc1437.de/2003/10/02/security-oder-feature/TIBCO threatens developers over Rendezvoushttps://www.rfc1437.de/2003/10/02/tibco-threatens-developers-over-rendezvous/Trojaner leitet Browser auf falsche Seitenhttps://www.rfc1437.de/2003/10/02/trojaner-leitet-browser-auf-falsche-seiten/VIA Boards und Chips für kleine, stromsparende Systemehttps://www.rfc1437.de/2003/10/02/via-boards-und-chips-fuer-kleine-stromsparnd-systm/Abteilung seltsame Versionsnummernhttps://www.rfc1437.de/2003/10/01/abteilung-seltsame-versionsnummern/grafisches Betriebssystem mit TCP/IP Stack für C64https://www.rfc1437.de/2003/10/01/grafisches-betriebssystem-mit-tcpip-stack-fuer-c64/Haben will ...https://www.rfc1437.de/2003/10/01/haben-will/"Öko-Test": Hohe Strahlung bei WLAN-Netzwerkenhttps://www.rfc1437.de/2003/10/01/oeko-test-hohe-strahlung-bei-wlan-netzwerken/Ransom Love über SCOs Aktivitätenhttps://www.rfc1437.de/2003/10/01/ransom-love-ueber-scos-aktivitaeten/RegTP statt DENIC? Feedback!https://www.rfc1437.de/2003/10/01/regtp-statt-denic-feedback/ssh für Hires-Palms (Tungsten, Clie)https://www.rfc1437.de/2003/10/01/ssh-fuer-hires-palms-tungsten-clie/SSH2 Implementation in Pythonhttps://www.rfc1437.de/2003/10/01/ssh2-implementation-in-python/Using the Patriot Act to Get Reporters' Recordshttps://www.rfc1437.de/2003/10/01/using-the-patriot-act-to-get-reporters-records/Wie man mit Software-Fehlern Geld machen kann ...https://www.rfc1437.de/2003/10/01/wie-man-mit-software-fehlern-geld-machen-kann/Wiki zum Buch "Quicksilver" von Neal Stephensonhttps://www.rfc1437.de/2003/10/01/wiki-zum-buch-quicksilver-von-neal-stephenson/Die Verblödung schreitet voranhttps://www.rfc1437.de/2003/09/30/die-verbloedung-schreitet-voran/DrawBot: Python, PyObjC, and Cocoa based 2D drawing environmenthttps://www.rfc1437.de/2003/09/30/drawbot-python-pyobjc-and-coc-bsd-2d-drwng-nvrnmnt/Eigenverantwortung fördern ...https://www.rfc1437.de/2003/09/30/eigenverantwortung-foerdern/File Extension Details Databasehttps://www.rfc1437.de/2003/09/30/file-extension-details-database/Linux auf dem iPodhttps://www.rfc1437.de/2003/09/30/linux-auf-dem-ipod/SCO vs. Linux: Schutz unter dem Baldachinhttps://www.rfc1437.de/2003/09/30/sco-vs-linux-schutz-unter-dem-baldachin/Japanische Massenorgie erzürnt Chinahttps://www.rfc1437.de/2003/09/29/japanische-massenorgie-erzuernt-china/Besier und Scientology - sueddeutsche.de - Feuilletonhttps://www.rfc1437.de/2003/09/28/besier-und-scientology-sueddeutschede-feuilleton/DAX-Firmen übernehmen weniger Azubishttps://www.rfc1437.de/2003/09/28/dax-firmen-uebernehmen-weniger-azubis/Droht eine Verweiblichung des Schulbetriebs?https://www.rfc1437.de/2003/09/28/droht-eine-verweiblichung-des-schulbetriebs/Nümber 1 Förmüla for Mën!https://www.rfc1437.de/2003/09/28/nuember-1-foermuela-for-mn/quiz-zeithttps://www.rfc1437.de/2003/09/28/quiz-zeit/Robot Controller 1.7b2https://www.rfc1437.de/2003/09/28/robot-controller-17b2/Ein kleiner Schritt vom Whisky zur Chemiewaffehttps://www.rfc1437.de/2003/09/27/ein-kleiner-schritt-vom-whisky-zur-chemiewaffe/Freiheit der Software wird von der UNO als schuetzenswert anerkannthttps://www.rfc1437.de/2003/09/27/freiheit-dr-sftwr-wrd-vn-dr-n-ls-schtznswrt-nrknnt/Heras inches closer to Nozal with uphill ITT loominghttps://www.rfc1437.de/2003/09/27/heras-inches-closer-to-nozal-with-uphill-itt-lomng/Heras schlüpft bei Spanien-Rundfahrt ins Goldtrikothttps://www.rfc1437.de/2003/09/27/heras-schluepft-bei-spanien-rundfahrt-ins-goldtrkt/IBM reicht neue Klage gegen SCO einhttps://www.rfc1437.de/2003/09/27/ibm-reicht-neue-klage-gegen-sco-ein/Morons in the News: Banned Book Week: Food for Thoughthttps://www.rfc1437.de/2003/09/27/morons-in-the-news-banned-book-week-food-for-thght/Reader-Submitted: CWA decides that homosexuals are terroristshttps://www.rfc1437.de/2003/09/27/reader-submitted-cwa-decides-that-hmsxls-r-trrrsts/SPD-Abweichler müssen sich verantwortenhttps://www.rfc1437.de/2003/09/27/spd-abweichler-muessen-sich-verantworten/Unionspolitiker für Schäuble als Rau-Nachfolgerhttps://www.rfc1437.de/2003/09/27/unionspolitiker-fuer-schaeuble-als-rau-nachfolger/Wortfeld: ICANN und die Weltfernmeldeunion ITUhttps://www.rfc1437.de/2003/09/27/wortfeld-icann-und-die-weltfernmeldeunion-itu/Arm von Amts wegenhttps://www.rfc1437.de/2003/09/26/arm-von-amts-wegen/Bossi: Christdemokraten gehörten erschossenhttps://www.rfc1437.de/2003/09/26/bossi-christdemokraten-gehoerten-erschossen/Herzog-Kommission: Rente nach 45 Jahrenhttps://www.rfc1437.de/2003/09/26/herzog-kommission-rente-nach-45-jahren/Imaginary Python books that I would like to readhttps://www.rfc1437.de/2003/09/26/imaginary-python-books-that-i-would-like-to-read/Motorola trennt sich von Chipsätzen für PowerPCshttps://www.rfc1437.de/2003/09/26/motorola-trennt-sich-von-chipsaetzen-fuer-powerpcs/Storever Online Backuphttps://www.rfc1437.de/2003/09/26/storever-online-backup/Umfrage: SPD weiter im Sinkflughttps://www.rfc1437.de/2003/09/26/umfrage-spd-weiter-im-sinkflug/apt für RPMshttps://www.rfc1437.de/2003/09/25/apt-fuer-rpms/Israel: Kampfpiloten-Rebellion löst politisches "Erdbeben" aushttps://www.rfc1437.de/2003/09/25/israel-kampfpiloten-rebellion-lost-pltschs-rdbbn-s/Israelische Piloten verweigern Angriffehttps://www.rfc1437.de/2003/09/25/israelische-piloten-verweigern-angriffe/Passwort-Klau durch Lücke im Internet Explorerhttps://www.rfc1437.de/2003/09/25/passwort-klau-durch-luecke-im-internet-explorer/Unions-Fraktion für Studiengebührenhttps://www.rfc1437.de/2003/09/25/unions-fraktion-fuer-studiengebuehren/Berlusconi als Kämpfer gegen den Antisemitismus geehrthttps://www.rfc1437.de/2003/09/24/berlusconi-als-kaempfer-gegen-den-antisemtsms-ghrt/FTP-Server ProFTPD verwundbarhttps://www.rfc1437.de/2003/09/24/ftp-server-proftpd-verwundbar/Klammerschlußgesetzhttps://www.rfc1437.de/2003/09/24/klammerschluszliggesetz/Richtlinie zu Software-Patenten verabschiedethttps://www.rfc1437.de/2003/09/24/richtlinie-zu-software-patenten-verabschiedet/Sophos kauft ActiveStatehttps://www.rfc1437.de/2003/09/24/sophos-kauft-activestate/In sechs Wochen vom Helfer zum Vueltasiegerhttps://www.rfc1437.de/2003/09/23/in-sechs-wochen-vom-helfer-zum-vueltasieger/Mac OS X 10.2.8 causes problems for somehttps://www.rfc1437.de/2003/09/23/mac-os-x-1028-causes-problems-for-some/Rainer Joswig's Homehttps://www.rfc1437.de/2003/09/23/rainer-joswigs-home/Ermittlungsverfahren gegen Altkanzler Kohlhttps://www.rfc1437.de/2003/09/22/ermittlungsverfahren-gegen-altkanzler-kohl/Gesundheitskompromiss: Merz läuft Amokhttps://www.rfc1437.de/2003/09/22/gesundheitskompromiss-merz-laeuft-amok/SPD: "Gewaltiger Mitgliederschwund" in NRWhttps://www.rfc1437.de/2003/09/22/spd-gewaltiger-mitgliederschwund-in-nrw/Owner of Dewey Decimal System Sues New York's Library Hotel - from Tampa Bay Onlinehttps://www.rfc1437.de/2003/09/21/wnr-f-dwy-dcml-systm-ss-nw-yrks-lbrry-htl-frm-tmp/AppleScript Studio Tutorialhttps://www.rfc1437.de/2003/09/20/applescript-studio-tutorial/Faszinierend ...https://www.rfc1437.de/2003/09/20/faszinierend/Hightech-Heroinhttps://www.rfc1437.de/2003/09/20/hightech-heroin/Pursuing the 17th-Century Origins of the Hacker's Grailhttps://www.rfc1437.de/2003/09/20/pursuing-the-17th-century-origins-of-the-hckrs-grl/taz 20.9.03 Stoiber erringt klaren Sieghttps://www.rfc1437.de/2003/09/20/taz-20903-stoiber-erringt-klaren-sieg/Casemodding der ganz besonderen Arthttps://www.rfc1437.de/2003/09/19/casemodding-der-ganz-besonderen-art/Computer makers sued over hard-drive size claimshttps://www.rfc1437.de/2003/09/19/computer-makers-sued-over-hard-drive-size-claims/Die Zukunft für Hessens Frauen ist gesicherthttps://www.rfc1437.de/2003/09/19/die-zukunft-fuer-hessens-frauen-ist-gesichert/Doch nur ein Braunbärhttps://www.rfc1437.de/2003/09/19/doch-nur-ein-braunbaer/Dosenfleisch ///https://www.rfc1437.de/2003/09/19/dosenfleisch/Effektive Massnahmen gegen Comment-Spamhttps://www.rfc1437.de/2003/09/19/effektive-massnahmen-gegen-comment-spam/200 Dollar Note mit Bush-Bildhttps://www.rfc1437.de/2003/09/18/200-dollar-note-mit-bush-bild/eBay Happy to Give Away All Personal Infohttps://www.rfc1437.de/2003/09/18/ebay-happy-to-give-away-all-personal-info/Falsche Kriminalstatistik in Hamburghttps://www.rfc1437.de/2003/09/18/falsche-kriminalstatistik-in-hamburg/Integration von Mailsmith mit POPFilehttps://www.rfc1437.de/2003/09/18/integration-von-mailsmith-mit-popfile/Mit Linux auf Verbrecherjagdhttps://www.rfc1437.de/2003/09/18/mit-linux-auf-verbrecherjagd/Schloss Nordkirchenhttps://www.rfc1437.de/2003/09/18/pic-schloss-nordkirchen/RTL steigt im Poker um Tour-Rechte aushttps://www.rfc1437.de/2003/09/18/rtl-steigt-im-poker-um-tour-rechte-aus/Schloss Nordkirchenhttps://www.rfc1437.de/2003/09/18/schloss-nordkirchen/wouthit a porbelm huh?https://www.rfc1437.de/2003/09/18/wouthit-a-porbelm-huh/All your .com are belong to us :: hebig.org/bloghttps://www.rfc1437.de/2003/09/17/all-your-com-are-belong-to-us-hebigorgblog/Apple Expo: Radio mit Timeshifthttps://www.rfc1437.de/2003/09/17/apple-expo-radio-mit-timeshift/CEO Performance Pollhttps://www.rfc1437.de/2003/09/17/ceo-performance-poll/Interview mit Udo Böltshttps://www.rfc1437.de/2003/09/17/interview-mit-udo-boelts/OpenSSH 3.7 schließt Sicherheitsloch [2. update]https://www.rfc1437.de/2003/09/17/openssh-37-schliesst-sicherheitsloch-2-update/RegTP statt DENIC? Aktiv werden!https://www.rfc1437.de/2003/09/17/regtp-statt-denic-aktiv-werden/Turn Your Radio Onhttps://www.rfc1437.de/2003/09/17/turn-your-radio-on/VeriSign fischt Traffic abhttps://www.rfc1437.de/2003/09/17/verisign-fischt-traffic-ab/Karl Klammer fürs Netzhttps://www.rfc1437.de/2003/09/16/karl-klammer-fuers-netz/Kommentare zu den neuen Apple-Spielzeugenhttps://www.rfc1437.de/2003/09/16/kommentare-zu-den-neuen-apple-spielzeugen/Kris Delmhorsthttps://www.rfc1437.de/2003/09/16/kris-delmhorst/Münsterland-Tour der Junioren ab Freitaghttps://www.rfc1437.de/2003/09/16/muensterland-tour-der-junioren-ab-freitag/[ nickijaine.com ]https://www.rfc1437.de/2003/09/16/nickijainecom/Beitrag ohne Titelhttps://www.rfc1437.de/2003/09/16/p1241/Lampen an der Stadtbüchereihttps://www.rfc1437.de/2003/09/16/pic-lampen-an-der-stadtbuecherei/Stadtbücherei Münster, Haupteinganghttps://www.rfc1437.de/2003/09/16/pic-stadtbuecherei-muenster-haupteingang/Stadtbücherei Münster, Nebenganghttps://www.rfc1437.de/2003/09/16/pic-stadtbuecherei-muenster-nebengang/Shared Space 2.0https://www.rfc1437.de/2003/09/16/shared-space-20/VeriSign hat einen Wildcard-A-Record auf *.net eingetragenhttps://www.rfc1437.de/2003/09/16/verisign-hat-einen-wildcard-a-record-auf-nt-ngtrgn/Wenn helles Licht in die Nase gehthttps://www.rfc1437.de/2003/09/16/wenn-helles-licht-in-die-nase-geht/Whole Wheat Radio - Homehttps://www.rfc1437.de/2003/09/16/whole-wheat-radio-home/schwarze katze weisser katerhttps://www.rfc1437.de/2003/09/15/schwarze-katze-weisser-kater/SenderBasehttps://www.rfc1437.de/2003/09/15/senderbase/Vuelta: Virenque disqualifizierthttps://www.rfc1437.de/2003/09/15/vuelta-virenque-disqualifiziert/Zülle gibt Vuelta auf: "Nie mehr große Rundfahrt"https://www.rfc1437.de/2003/09/15/zuelle-gibt-vuelta-auf-nie-mehr-grosse-rundfahrt/Attentat auf Arafat "legitime" Option für Israelhttps://www.rfc1437.de/2003/09/14/attentat-auf-arafat-legitime-option-fuer-israel/Barockes Quecksilberhttps://www.rfc1437.de/2003/09/14/barockes-quecksilber/eBay diskriminiert Nicht-Windows-User!https://www.rfc1437.de/2003/09/14/ebay-diskriminiert-nicht-windows-user/Fussel im Bauchnabelhttps://www.rfc1437.de/2003/09/14/fussel-im-bauchnabel/Möglicher Kreditkartenmissbrauchhttps://www.rfc1437.de/2003/09/14/moeglicher-kreditkartenmissbrauch/Hundt will maximal zwölf Monate Arbeitslosengeldhttps://www.rfc1437.de/2003/09/13/hundt-will-maximal-zwoelf-monate-arbeitslosengeld/le monde de marcohttps://www.rfc1437.de/2003/09/13/le-monde-de-marco/PHOKU | webserverhttps://www.rfc1437.de/2003/09/13/phoku-webserver/Scheissjob?https://www.rfc1437.de/2003/09/13/scheissjob/Star Trek Dimension - Investigating Trekhttps://www.rfc1437.de/2003/09/13/star-trek-dimension-investigating-trek/Berlusconi: Mussolini war ''''gutartig''''https://www.rfc1437.de/2003/09/11/berlusconi-mussolini-war-gutartig/Schwarzes Loch hämmert Bässe ins Allhttps://www.rfc1437.de/2003/09/11/schwarzes-loch-haemmert-baesse-ins-all/Wie man sich eine Farbe zu eigen machthttps://www.rfc1437.de/2003/09/11/wie-man-sich-eine-farbe-zu-eigen-macht/Wieder da ...https://www.rfc1437.de/2003/09/11/wieder-da/Updated Medusa Releasehttps://www.rfc1437.de/2003/09/08/updated-medusa-release/Open Firmware: Password Not Recognized When It Contains the Letter "U"https://www.rfc1437.de/2003/09/07/open-firmwar-psswrd-nt-rcgnzd-whn-t-cntns-th-lttr/Politiker entdecken Sozialhilfe als radikales Einsparpotenzialhttps://www.rfc1437.de/2003/09/07/politiker-entdecken-sozialhilfe-ls-rdkls-nsprptnzl/Schäuble will offenbar Rau nachfolgenhttps://www.rfc1437.de/2003/09/07/schaeuble-will-offenbar-rau-nachfolgen/16.000 Grippetote in Deutschlandhttps://www.rfc1437.de/2003/09/06/16000-grippetote-in-deutschland/LG Hamburg: .de nur noch für Deppen!https://www.rfc1437.de/2003/09/06/lg-hamburg-de-nur-noch-fuer-deppen/Doping-Lieferung an belgische Radprofis gestandenhttps://www.rfc1437.de/2003/09/05/doping-lieferung-an-belgische-radprofis-gestanden/LWL - Westf. Industriemuseum - Schiffshebewerk Henrichenburg - Altes Schiffshebewerk Henrichenburghttps://www.rfc1437.de/2003/09/05/lwl-wstf-ndstrmsm-schffshbwrk-hnrchnbrg-lts-schffs/Merkel: Mehr arbeiten für mehr Arbeitsplätzehttps://www.rfc1437.de/2003/09/05/merkel-mehr-arbeiten-fuer-mehr-arbeitsplaetze/Möllemann-Affäre: Spender-Namen auf den Tischhttps://www.rfc1437.de/2003/09/05/moellemann-affaere-spender-namen-auf-den-tisch/Bei Bianchi rumort eshttps://www.rfc1437.de/2003/09/04/bei-bianchi-rumort-es/Berlusconi: Richter sind "geistesgestört"https://www.rfc1437.de/2003/09/04/berlusconi-richter-sind-geistesgestoert/Rechtsstreit Obelix vs. MobiliX endgültig beendethttps://www.rfc1437.de/2003/09/04/rechtsstreit-obelix-vs-mobilix-endgueltig-beendet/Übermenschen für das Pentagonhttps://www.rfc1437.de/2003/09/04/uebermenschen-fuer-das-pentagon/Digital Outback Photo Reviews Photokit Sharpenerhttps://www.rfc1437.de/2003/09/03/digital-outback-photo-reviews-photokit-sharpener/FaceSpan 4.0 Public Betahttps://www.rfc1437.de/2003/09/03/facespan-40-public-beta/Florida-Rolf und die rechte Hirnhälfte der Sozialministerin Schmidthttps://www.rfc1437.de/2003/09/03/florida-rolf-nd-d-rcht-hrnhlft-dr-szlmnstrn-schmdt/Tobit feiert Radio-MP3-Software ClipInc als wichtigste IFA-Neuheithttps://www.rfc1437.de/2003/09/03/tobit-feiert-radi-mp3-sftwr-clpnc-ls-wchtgst-f-nht/20 Jahre BTXhttps://www.rfc1437.de/2003/09/02/20-jahre-btx/AppleScript to open POPFile links from Entourage Xhttps://www.rfc1437.de/2003/09/02/applescript-to-open-popfile-links-from-entourage-x/Dramatische Haushaltslagen in NRW und Berlinhttps://www.rfc1437.de/2003/09/02/dramatische-haushaltslagen-in-nrw-und-berlin/SCO muss Ordnungsgeld zahlenhttps://www.rfc1437.de/2003/09/02/sco-muss-ordnungsgeld-zahlen/Tom Waits, Blood Money ...https://www.rfc1437.de/2003/09/02/tom-waits-blood-money/Ullrich: Vergiftete Infusion Schuld am Tour-Fieberhttps://www.rfc1437.de/2003/09/02/ullrich-vergiftete-infusion-schuld-am-tour-fieber/Vuelta: Zabel führt Telekom anhttps://www.rfc1437.de/2003/09/02/vuelta-zabel-fuehrt-telekom-an/Der große Jackpothttps://www.rfc1437.de/2003/09/01/der-grosse-jackpot/Gewonnen hat: Die Pharmaindustriehttps://www.rfc1437.de/2003/09/01/gewonnen-hat-die-pharmaindustrie/Ullrich: Bei Toursieg hätte ich Karriere beendethttps://www.rfc1437.de/2003/09/01/ullrich-bei-toursieg-haette-ich-karriere-beendet/Punkt und Komma im Gehirnhttps://www.rfc1437.de/2003/08/31/punkt-und-komma-im-gehirn/Digglerhttps://www.rfc1437.de/2003/08/30/diggler/Fraktion über Schill: "Der braucht Hilfe"https://www.rfc1437.de/2003/08/30/fraktion-ueber-schill-der-braucht-hilfe/Hardware ist doofhttps://www.rfc1437.de/2003/08/30/hardware-ist-doof/Informationsfreiheit ab 2004?https://www.rfc1437.de/2003/08/30/informationsfreiheit-ab-2004/Merkel: Bei Wahlsieg raus aus dem Atomausstieghttps://www.rfc1437.de/2003/08/30/merkel-bei-wahlsieg-raus-aus-dem-atomausstieg/Gerolsteiner hat Interesse an Belokihttps://www.rfc1437.de/2003/08/29/gerolsteiner-hat-interesse-an-beloki/Strato und MTUhttps://www.rfc1437.de/2003/08/29/strato-und-mtu/W3C sieht Gefahr für Internet-Standardshttps://www.rfc1437.de/2003/08/28/w3c-sieht-gefahr-fuer-internet-standards/Auch Robert ist seinen Job bei der Telekom loshttps://www.rfc1437.de/2003/08/27/auch-robert-ist-seinen-job-bei-der-telekom-los/Banken-Dienstleister GAD schließt vier Standortehttps://www.rfc1437.de/2003/08/27/banken-dienstleister-gad-schliesst-vier-standorte/Bayern plant "Integrationsobergrenze"https://www.rfc1437.de/2003/08/27/bayern-plant-integrationsobergrenze/Das totale Knipsenhttps://www.rfc1437.de/2003/08/27/das-totale-knipsen/12:38:30: Frauen sind wie Webserverhttps://www.rfc1437.de/2003/08/26/123830-frauen-sind-wie-webserver/bash is new default terminal shell in Pantherhttps://www.rfc1437.de/2003/08/26/bash-is-new-default-terminal-shell-in-panther/Christiania soll normaler werdenhttps://www.rfc1437.de/2003/08/26/christiania-soll-normaler-werden/Müller will Eltern bei Rente bevorzugenhttps://www.rfc1437.de/2003/08/26/mueller-will-eltern-bei-rente-bevorzugen/Wie Wikis wachsen und gedeihenhttps://www.rfc1437.de/2003/08/26/wie-wikis-wachsen-und-gedeihen/Microsoft blockiert internationale Konferenz zu Open Sourcehttps://www.rfc1437.de/2003/08/25/microsoft-blockiert-internationale-knfrnz-z-pn-src/PHP unter anderen Userrechten im Apachehttps://www.rfc1437.de/2003/08/25/php-unter-anderen-userrechten-im-apache/Postscript mit Python produzierenhttps://www.rfc1437.de/2003/08/25/postscript-mit-python-produzieren/Spam-Filter für IMAP-Mailboxenhttps://www.rfc1437.de/2003/08/25/spam-filter-fuer-imap-mailboxen/Und mal wieder ein bischen was zur SCO-Farcehttps://www.rfc1437.de/2003/08/25/und-mal-wieder-ein-bischen-was-zur-sco-farce/Warum gibt es in Windows Funktionen wie BEAR, BUNNY und PIGLET?https://www.rfc1437.de/2003/08/25/warum-gibt-es-in-windows-funktnn-w-br-bnny-nd-pglt/Backupsoftware für Mac OS X und DVD-R Writerhttps://www.rfc1437.de/2003/08/24/backupsoftware-fuer-mac-os-x-und-dvd-r-writer/Der böse Computerfresser hat mal wieder zugeschlagenhttps://www.rfc1437.de/2003/08/24/der-boese-computerfresser-hat-mal-wieder-zugschlgn/MacOSX::File and psynchttps://www.rfc1437.de/2003/08/24/macosxfile-and-psync/OpenOffice für Mac OS X ohne X11 lässt auf sich wartenhttps://www.rfc1437.de/2003/08/23/openoffice-fuer-mac-os-x-ohne-x11-lasst-f-sch-wrtn/Schill drohte wohl mit Outing zur Prime Timehttps://www.rfc1437.de/2003/08/23/schill-drohte-wohl-mit-outing-zur-prime-time/SCO vs. Linux: Die Zeit der Verschwörungstheorienhttps://www.rfc1437.de/2003/08/23/sco-vs-linux-die-zeit-der-verschwoerungstheorien/Venusblumenkörbchen als Lichtwellenleiterhttps://www.rfc1437.de/2003/08/23/venusblumenkoerbchen-als-lichtwellenleiter/Beust schmeisst Schill raushttps://www.rfc1437.de/2003/08/21/beust-schmeisst-schill-raus/Buckelwal sprang auf Segelboothttps://www.rfc1437.de/2003/08/21/buckelwal-sprang-auf-segelboot/Canon EOS-300D / Digital Rebelhttps://www.rfc1437.de/2003/08/21/canon-eos-300d-digital-rebel/Erik Zabel kann doch noch gewinnenhttps://www.rfc1437.de/2003/08/21/erik-zabel-kann-doch-noch-gewinnen/Hessische Steuerfahnder ausgebremst?https://www.rfc1437.de/2003/08/21/hessische-steuerfahnder-ausgebremst/Hamburger Regierungskrise: Schlammschlacht um Beusts Sexualität - Politik - SPIEGEL ONLINEhttps://www.rfc1437.de/2003/08/21/hmbrgr-rgrngskrs-schlmmschlcht-m-bsts-sxltt-pltk-s/"Ich bin alter Nationalsozialist"https://www.rfc1437.de/2003/08/21/ich-bin-alter-nationalsozialist/SCO: Der "Beweis"https://www.rfc1437.de/2003/08/21/sco-der-beweis/Da könnte ja jeder kommenhttps://www.rfc1437.de/2003/08/18/da-koennte-ja-jeder-kommen/iPod - wirklich ein nettes Spielzeughttps://www.rfc1437.de/2003/08/18/ipod-wirklich-ein-nettes-spielzeug/PowerBooks kommenhttps://www.rfc1437.de/2003/08/18/powerbooks-kommen/Vatikan und Missbrauchsfälle: Bericht über Vertuschungs-Anordnunghttps://www.rfc1437.de/2003/08/18/vatikan-und-missbrchsfll-brcht-br-vrtschngs-nrdnng/SQL-Slammer beeinträchtigte US-Kraftwerksteuerunghttps://www.rfc1437.de/2003/08/17/sql-slammer-beeintraechtigte-us-kraftwerksteuerung/Microsoft lässt Wurmangriff ins Leere laufenhttps://www.rfc1437.de/2003/08/16/microsoft-laesst-wurmangriff-ins-leere-laufen/Doch ein Zusammenhang zwischen Blackout und Windows-Wurm?https://www.rfc1437.de/2003/08/15/doch-ein-zusammenhang-zwischen-blackt-nd-wndws-wrm/mySTEP 1.1https://www.rfc1437.de/2003/08/15/mystep-11/Neue Sony: F-828https://www.rfc1437.de/2003/08/15/neue-sony-f-828/RSS - wo steht der Link auf einen Artikel?https://www.rfc1437.de/2003/08/15/rss-wo-steht-der-link-auf-einen-artikel/SCO Lizenzen auch für SCO Linux fällig ...https://www.rfc1437.de/2003/08/15/sco-lizenzen-auch-fuer-sco-linux-faellig/Amerikaner werfen U-Bahnen ins Meerhttps://www.rfc1437.de/2003/08/14/amerikaner-werfen-u-bahnen-ins-meer/FTP-Server des GNU-Projekts gehackthttps://www.rfc1437.de/2003/08/14/ftp-server-des-gnu-projekts-gehackt/Reader-Submitted: Fox "News" claims sole use of "fair and balanced"https://www.rfc1437.de/2003/08/14/reader-submitted-fox-news-clams-sl-s-f-fr-nd-blncd/SCO erklärt die GPL für ungültighttps://www.rfc1437.de/2003/08/14/sco-erklaert-die-gpl-fuer-ungueltig/Stromausfall im amerikanischen Nordostenhttps://www.rfc1437.de/2003/08/14/stromausfall-im-amerikanischen-nordosten/WyPy - Wiki in Pythonhttps://www.rfc1437.de/2003/08/14/wypy-wiki-in-python/10 Python pitfallshttps://www.rfc1437.de/2003/08/13/10-python-pitfalls/blogg.de: XML-RPC Interfacehttps://www.rfc1437.de/2003/08/13/bloggde-xml-rpc-interface/Ralle the Switcherhttps://www.rfc1437.de/2003/08/13/ralle-the-switcher/FaceSpan 4.0https://www.rfc1437.de/2003/08/12/facespan-40/Aldag gewinnt "Giro" in Bochumhttps://www.rfc1437.de/2003/08/11/aldag-gewinnt-giro-in-bochum/eDings.de Artikel: Lieber Herr Burg, werte Mitlesende: Urheberrecht und Quellenangaben zum Zweitenhttps://www.rfc1437.de/2003/08/11/dngsd-rtkl-lbr-hrr-brg-wrt-mtlsnd-rhbrrcht-nd-qlln/Notebook da ...https://www.rfc1437.de/2003/08/11/notebook-da/Skript kiddies?https://www.rfc1437.de/2003/08/11/skript-kiddies/Saban kritisiert Nahost-Berichterstattunghttps://www.rfc1437.de/2003/08/10/saban-kritisiert-nahost-berichterstattung/Steinbrück streicht Urlaubsgeld und Subventionenhttps://www.rfc1437.de/2003/08/10/steinbrueck-streicht-urlaubsgeld-und-subventionen/Hitzeschaden ...https://www.rfc1437.de/2003/08/08/hitzeschaden/Ich hasse das Wetter ...https://www.rfc1437.de/2003/08/08/ich-hasse-das-wetter/Immunität für amerikanische Ölkonzerne im Irakhttps://www.rfc1437.de/2003/08/08/immunitaet-fuer-amerikanische-oelkonzerne-im-irak/Jaksche vor Wechsel zu Gerolsteinerhttps://www.rfc1437.de/2003/08/08/jaksche-vor-wechsel-zu-gerolsteiner/USA warfen im Irak-Krieg Brandbombenhttps://www.rfc1437.de/2003/08/08/usa-warfen-im-irak-krieg-brandbomben/Heise News-Ticker: Red Hat verklagt SCOhttps://www.rfc1437.de/2003/08/05/heise-news-ticker-red-hat-verklagt-sco/ONCE beendet Radsport-Engagement nach 15 Jahrenhttps://www.rfc1437.de/2003/08/05/once-beendet-radsport-engagement-nach-15-jahren/Dialog durch Kunst?https://www.rfc1437.de/2003/08/04/dialog-durch-kunst/Ein Drittel aller Beschäftigten im Niedriglohnbereichhttps://www.rfc1437.de/2003/08/04/ein-drittel-aller-beschaeftigten-im-niedriglhnbrch/How to install Windows XP in 5 hours or less [dive into mark]https://www.rfc1437.de/2003/08/04/how-to-install-windows-xp-in-5-hrs-r-lss-dv-nt-mrk/Schwarze Liste für Anti-Kriegs-Aktivisten an US-Flughäfenhttps://www.rfc1437.de/2003/08/04/schwarze-liste-fuer-anti-kriegs-aktvstn-n-s-flghfn/10 Jahre Apple Newton: Dem ersten PDA zur Erinnerunghttps://www.rfc1437.de/2003/08/02/10-jahre-apple-newton-dem-ersten-pda-zur-erinnerng/Joblose müssen fast jedes Angebot annehmenhttps://www.rfc1437.de/2003/08/02/joblose-muessen-fast-jedes-angebot-annehmen/ONCE-Rennstall droht das Aus am Saisonendehttps://www.rfc1437.de/2003/08/02/once-rennstall-droht-das-aus-am-saisonende/SBCL for OS Xhttps://www.rfc1437.de/2003/08/02/sbcl-for-os-x/Stereo Images - Time for Spacehttps://www.rfc1437.de/2003/08/02/stereo-images-time-for-space/Traue keiner Statistik, die du nicht selbst gefälscht hasthttps://www.rfc1437.de/2003/08/02/traue-keiner-statistik-di-d-ncht-slbst-gflscht-hst/Chinesenisches Seeungeheuerhttps://www.rfc1437.de/2003/08/01/chinesenisches-seeungeheuer/Sun-Chef McNealy: Finger weg von Open Sourcehttps://www.rfc1437.de/2003/08/01/sun-chef-mcnealy-finger-weg-von-open-source/Windows-User machen Internet kaputthttps://www.rfc1437.de/2003/08/01/windows-user-machen-internet-kaputt/Entwurf für Gentechnik-Gesetz vorgelegthttps://www.rfc1437.de/2003/07/31/entwurf-fuer-gentechnik-gesetz-vorgelegt/Gesetz trennt israelisch-palästinensische Ehepaarehttps://www.rfc1437.de/2003/07/31/gesetz-trennt-israelisch-palaestinensische-ehepaar/Panorama rules ...https://www.rfc1437.de/2003/07/31/panorama-rules/Vatikan mobilisiert gegen Homo-Ehehttps://www.rfc1437.de/2003/07/31/vatikan-mobilisiert-gegen-homo-ehe/Hamburg: Kindern droht Abschiebunghttps://www.rfc1437.de/2003/07/30/hamburg-kindern-droht-abschiebung/Peschel aus Krankenhaus entlassenhttps://www.rfc1437.de/2003/07/30/peschel-aus-krankenhaus-entlassen/What's New in Python 2.3https://www.rfc1437.de/2003/07/30/whats-new-in-python-23/ActiveDeveloper 2.14https://www.rfc1437.de/2003/07/29/activedeveloper-214/IBM kontert im Rechtsstreit gegen SCOhttps://www.rfc1437.de/2003/07/29/ibm-kontert-im-rechtsstreit-gegen-sco/TP: Email-Klau über den Weg des Domainklaus ist legalhttps://www.rfc1437.de/2003/07/29/tp-email-klau-ueber-den-weg-des-domainklaus-st-lgl/Cog 0.5https://www.rfc1437.de/2003/07/28/cog-05/Es gibt kein Monster im Loch Nesshttps://www.rfc1437.de/2003/07/28/es-gibt-kein-monster-im-loch-ness/Stoibers Taktieren ist kein Problem des Föderalismus, sondern der CDU/CSUhttps://www.rfc1437.de/2003/07/28/stoibrs-tktrn-st-kn-prblm-ds-fdrlsms-sndrn-dr-cdcs/Bill Gates: Linux enthält auch Microsoft-Codehttps://www.rfc1437.de/2003/07/27/bill-gates-linux-enthaelt-auch-microsoft-code/Guter Bildschirmhintergrundhttps://www.rfc1437.de/2003/07/27/guter-bildschirmhintergrund/Ostfriesland wächsthttps://www.rfc1437.de/2003/07/27/ostfriesland-waechst/Tja, das war sie die Tour 2003 ...https://www.rfc1437.de/2003/07/27/tja-das-war-sie-die-tour-2003/Wasser und Plutonium bergen explosive Gefahrhttps://www.rfc1437.de/2003/07/27/wasser-und-plutonium-bergen-explosive-gefahr/Zehn Jahre Windows NThttps://www.rfc1437.de/2003/07/27/zehn-jahre-windows-nt/Apple, DRM and mehttps://www.rfc1437.de/2003/07/26/apple-drm-and-me/E-Mail-Archive als Zeitvernichterhttps://www.rfc1437.de/2003/07/26/e-mail-archive-als-zeitvernichter/Saugefährlich dieses Zeitfahren ...https://www.rfc1437.de/2003/07/26/saugefaehrlich-dieses-zeitfahren/Übersicht über Pings für den Ping-Cacherhttps://www.rfc1437.de/2003/07/26/uebersicht-ueber-pings-fuer-den-ping-cacher/Uwe Peschel gestürzt und mit schweren Verletzungenhttps://www.rfc1437.de/2003/07/26/uwe-peschel-gestuerzt-und-mit-schweren-verletzungn/Walter Zapp gestorbenhttps://www.rfc1437.de/2003/07/26/walter-zapp-gestorben/Weblogs.com Ping Cacher in PHP (from Reinvented Inc.)https://www.rfc1437.de/2003/07/26/weblogscom-ping-cacher-in-php-from-reinvented-inc/Erneuter Fehler in Windows-RPC-Schnittstellehttps://www.rfc1437.de/2003/07/25/erneuter-fehler-in-windows-rpc-schnittstelle/Heise News-Ticker: (Auslands-)Frust mit Apples Online-Musikladenhttps://www.rfc1437.de/2003/07/25/heise-news-ticker-auslands-frst-mt-ppls-nln-mskldn/CD-Linux Knoppix kommt auf den Machttps://www.rfc1437.de/2003/07/24/cd-linux-knoppix-kommt-auf-den-mac/Gates-Stiftung spendiert New Yorker Schulen Palm-PDAshttps://www.rfc1437.de/2003/07/24/gates-stiftung-spendiert-new-yorker-schuln-plm-pds/Lobpreist die Systemadministratoren!https://www.rfc1437.de/2003/07/24/lobpreist-die-systemadministratoren/Heute die Tour mal nur im Ticker ...https://www.rfc1437.de/2003/07/23/heute-die-tour-mal-nur-im-ticker/Italiens Parlament stärkt Berlusconis Medienmachthttps://www.rfc1437.de/2003/07/23/italiens-parlament-staerkt-berlusconis-medienmacht/Stage 16: Tyler Freaking Hamilton takes Stage 16!https://www.rfc1437.de/2003/07/23/stage-16-tyler-freaking-hamilton-takes-stage-16/Hondo vor Wechsel zu Gerolsteinerhttps://www.rfc1437.de/2003/07/22/hondo-vor-wechsel-zu-gerolsteiner/Neuer Mail-Server in X.3 Server?https://www.rfc1437.de/2003/07/22/neuer-mail-server-in-x3-server/SCO vs. Linux: Linux-Steuer oder Sicherheit [Update]https://www.rfc1437.de/2003/07/22/sco-vs-linux-linux-steuer-oder-sicherheit-update/"Antidot-Lizenz" von SCOhttps://www.rfc1437.de/2003/07/21/antidot-lizenz-von-sco/Atom-Minen sollten Deutschland verwüstenhttps://www.rfc1437.de/2003/07/21/atom-minen-sollten-deutschland-verwuesten/Die Eckpunkte des Gesundheitskompromisseshttps://www.rfc1437.de/2003/07/21/die-eckpunkte-des-gesundheitskompromisses/Die Tour war schon hart heute ...https://www.rfc1437.de/2003/07/21/die-tour-war-schon-hart-heute/Radsport-News.comhttps://www.rfc1437.de/2003/07/21/radsport-newscom/Wolfowitz "Leave Iraq alone"https://www.rfc1437.de/2003/07/21/wolfowitz-leave-iraq-alone/Bild von Joseba Beloki nach dem bösen Crash und der OPhttps://www.rfc1437.de/2003/07/20/bild-von-joseba-beloki-nach-dem-boesn-crsh-nd-dr-p/Der Tag von Vinokourov war das heute ...https://www.rfc1437.de/2003/07/20/der-tag-von-vinokourov-war-das-heute/Neotonic ClearSilverhttps://www.rfc1437.de/2003/07/20/neotonic-clearsilver/Umstrittenes öffentliches Gelöbnis in Berlinhttps://www.rfc1437.de/2003/07/20/umstrittenes-oeffentliches-geloebnis-in-berlin/Unusual Product Names #2https://www.rfc1437.de/2003/07/20/unusual-product-names-2/Amazon wegen Kaufempfehlungen verklagthttps://www.rfc1437.de/2003/07/19/amazon-wegen-kaufempfehlungen-verklagt/Bushs Aschenputtel-Testhttps://www.rfc1437.de/2003/07/19/bushs-aschenputtel-test/Diese Tour ist viel zu spannend für mich ...https://www.rfc1437.de/2003/07/19/diese-tour-ist-viel-zu-spannend-fuer-mich/Politech: John Gilmore: I was ejected from a plane for wearing "Suspected Terrorihttps://www.rfc1437.de/2003/07/19/pltch-jhn-glmr-ws-jctd-frm-pln-fr-wrng-sspctd-tr/SCO plant Linux-Lizenzen für Anwenderhttps://www.rfc1437.de/2003/07/19/sco-plant-linux-lizenzen-fuer-anwender/Zeitung: Mehr Kosten für Patientenhttps://www.rfc1437.de/2003/07/19/zeitung-mehr-kosten-fuer-patienten/BGH: Funktion der Hyperlinks steht über kommerziellen Interessenhttps://www.rfc1437.de/2003/07/18/bgh-funktion-der-hyperlnks-stht-br-kmmrzlln-ntrssn/Filesharing soll ein Verbrechen werdenhttps://www.rfc1437.de/2003/07/18/filesharing-soll-ein-verbrechen-werden/MTV.com - News - Metallica Sue Canadian Band over E, F Chordshttps://www.rfc1437.de/2003/07/18/mtvcom-news-metallica-sue-canadian-bnd-vr-f-chrds/Software-Verband nutzt Rechtsstudie zu Open Source fürs Lobbyinghttps://www.rfc1437.de/2003/07/18/software-verband-ntzt-rchtsstd-z-pn-src-frs-lbbyng/TinderWikihttps://www.rfc1437.de/2003/07/18/tinderwiki/To Ping Or Not To Ping?https://www.rfc1437.de/2003/07/18/to-ping-or-not-to-ping/Zeitfahren kann doch spannend sein ...https://www.rfc1437.de/2003/07/18/zeitfahren-kann-doch-spannend-sein/BGH prüft Rechtmäßigkeit des Deep Linkinghttps://www.rfc1437.de/2003/07/17/bgh-prueft-rechtmaessigkeit-des-deep-linking/Ehemaliger FreeBSD-Entwickler startet eigenes Betriebssystemhttps://www.rfc1437.de/2003/07/17/ehemaliger-freebsd-entwickler-strtt-gns-btrbssystm/RSShttps://www.rfc1437.de/2003/07/17/rss/Wer im Web gefunden werden will, muss im Web sein!https://www.rfc1437.de/2003/07/17/wer-im-web-gefunden-werden-will-muss-im-web-sein/Zuwanderer halten Einwohnerzahl stabilhttps://www.rfc1437.de/2003/07/17/zuwanderer-halten-einwohnerzahl-stabil/frankfurt.blogplan.dehttps://www.rfc1437.de/2003/07/16/frankfurtblogplande/Gut zu wissen!https://www.rfc1437.de/2003/07/16/gut-zu-wissen/It's hard to fight for a liarhttps://www.rfc1437.de/2003/07/16/its-hard-to-fight-for-a-liar/Jeffrey Zeldman Presents: The Daily Reporthttps://www.rfc1437.de/2003/07/16/jeffrey-zeldman-presents-the-daily-report/Kindermann: Keiner präsentiert mehr seine Visionenhttps://www.rfc1437.de/2003/07/16/kindermann-keiner-praesentiert-mehr-seine-visionen/Shooting Nekkid Women... for Funhttps://www.rfc1437.de/2003/07/16/shooting-nekkid-women-for-fun/Some continue to resist iTunes Muisc Storehttps://www.rfc1437.de/2003/07/16/some-continue-to-resist-itunes-muisc-store/Walross-Dame ''Antje'' liegt im Sterbenhttps://www.rfc1437.de/2003/07/16/walross-dame-antje-liegt-im-sterben/PDF hat doofe Ohrenhttps://www.rfc1437.de/2003/07/15/pdf-hat-doofe-ohren/"T" vor Gerichthttps://www.rfc1437.de/2003/07/15/t-vor-gericht/There is no spoon...https://www.rfc1437.de/2003/07/15/there-is-no-spoon/Allwetterzoo Münster - Nachwuchshttps://www.rfc1437.de/2003/07/14/allwetterzoo-muenster-nachwuchs/Oben und Unten liegen so eng beieinander ...https://www.rfc1437.de/2003/07/14/oben-und-unten-liegen-so-eng-beieinander/Tour de France: Beloki muss nach Sturz aufgebenhttps://www.rfc1437.de/2003/07/14/tour-de-france-beloki-muss-nach-sturz-aufgeben/Linux on a Saturday Nighthttps://www.rfc1437.de/2003/07/13/linux-on-a-saturday-night/More WebCore Fixeshttps://www.rfc1437.de/2003/07/13/more-webcore-fixes/Top-Fahrer der Tour heute für mich: Tyler Hamiltonhttps://www.rfc1437.de/2003/07/13/top-fahrer-der-tour-heute-fuer-mich-tyler-hamilton/Aldag ist einfach beeindruckendhttps://www.rfc1437.de/2003/07/12/aldag-ist-einfach-beeindruckend/Design-Komplettrechner von Sonyhttps://www.rfc1437.de/2003/07/12/design-komplettrechner-von-sony/Land in Sicht für Quietsche-Entchenhttps://www.rfc1437.de/2003/07/12/land-in-sicht-fuer-quietsche-entchen/Stoiber für längere Wochenarbeitszeithttps://www.rfc1437.de/2003/07/12/stoiber-fuer-laengere-wochenarbeitszeit/The Home Page of Squeak for SL Series Zaurus (ZauChu) and Qtopia/iPAQhttps://www.rfc1437.de/2003/07/12/the-home-page-of-squeak-fr-sl-srs-zrs-zch-nd-qtppq/Affen können Programmierenhttps://www.rfc1437.de/2003/07/11/affen-koennen-programmieren/Freenet und AOL mahnen Tauschbörsen-Nutzer abhttps://www.rfc1437.de/2003/07/11/freenet-und-aol-mahnen-tauschboersen-nutzer-ab/Hubble sieht ältesten Planetenhttps://www.rfc1437.de/2003/07/11/hubble-sieht-aumlltesten-planeten/Dritter Etappensieg für Petacchihttps://www.rfc1437.de/2003/07/10/dritter-etappensieg-fuer-petacchi/Monitor - Gentechnikbeitraghttps://www.rfc1437.de/2003/07/10/monitor-gentechnikbeitrag/Preis für Drehtabak bald auf Rekordniveau?https://www.rfc1437.de/2003/07/10/preis-fuer-drehtabak-bald-auf-rekordniveau/Teleinfo erklärt sich zu Spam-Vorwürfenhttps://www.rfc1437.de/2003/07/10/teleinfo-erklaert-sich-zu-spam-vorwuerfen/Hubble entdeckt sensationellen extrasolaren Planetenhttps://www.rfc1437.de/2003/07/09/hubble-entdeckt-sensationellen-extrasolaren-plantn/Yahoo! News - ONLINE DIARIES CAN CAUSE TEEN FRIENDSHIPS TO SUFFERhttps://www.rfc1437.de/2003/07/09/yahoo-news-online-diaries-cn-cs-tn-frndshps-t-sffr/Sex, Lügen und Videoüberwachunghttps://www.rfc1437.de/2003/07/07/sex-luegen-und-videoueberwachung/Sharp lässt den Zaurus in Deutschland sterbenhttps://www.rfc1437.de/2003/07/07/sharp-laesst-den-zaurus-in-deutschland-sterben/target="_blank"https://www.rfc1437.de/2003/07/07/target-blank/The Observer | Politics | Confess or die, US tells jailed Britonshttps://www.rfc1437.de/2003/07/07/the-observer-politics-confess-r-d-s-tlls-jld-brtns/Bei 55 km/h ein Massensturzhttps://www.rfc1437.de/2003/07/06/bei-55-kmh-ein-massensturz/Du weisst das eine Tour-Etappe gerade nicht so richtig spannend ist ...https://www.rfc1437.de/2003/07/06/du-weisst-das-en-tr-tpp-grd-ncht-s-rchtg-spnnnd-st/Merkel will im Steuerstreit Machtwort sprechenhttps://www.rfc1437.de/2003/07/06/merkel-will-im-steuerstreit-machtwort-sprechen/The internet is shithttps://www.rfc1437.de/2003/07/06/the-internet-is-shit-2/User-Feedback bei Blogshttps://www.rfc1437.de/2003/07/06/user-feedback-bei-blogs/AOL blogs!https://www.rfc1437.de/2003/07/05/aol-blogs/Die Curtahttps://www.rfc1437.de/2003/07/05/die-curta/Saturday 5 July Pg : also works with SBCL, OpenMCL and Lispworkshttps://www.rfc1437.de/2003/07/05/saturdy-5-jly-pg-ls-wrks-wth-sbcl-pnmcl-nd-lspwrks/Angeblicher Millionen-Kauf bei eBay entpuppt sich als übler Scherzhttps://www.rfc1437.de/2003/07/04/angeblicher-millnn-kf-b-by-ntpppt-sch-ls-blr-schrz/Berlusconi will sich nicht entschuldigt habenhttps://www.rfc1437.de/2003/07/04/berlusconi-will-sich-nicht-entschuldigt-haben/Peinliches Irak-Dossier im Word-Formathttps://www.rfc1437.de/2003/07/04/peinliches-irak-dossier-im-word-format/Sport im ungraden Sommerhttps://www.rfc1437.de/2003/07/04/sport-im-ungraden-sommer/taz 4.7.03 Der Traum des Domestikenhttps://www.rfc1437.de/2003/07/04/taz-4703-der-traum-des-domestiken/WebDesktophttps://www.rfc1437.de/2003/07/04/webdesktop/Deutsche Regierung erschwert auch weiterhin Kampf gegen AIDShttps://www.rfc1437.de/2003/07/03/deutsche-regierung-erschwert-ach-wtrhn-kmpf-ggn-ds/Kinderrechte: keine Frage des Mitgefühlshttps://www.rfc1437.de/2003/07/03/kinderrechte-keine-frage-des-mitgefuehls/Lispworks 4.3 OS X Screenshotshttps://www.rfc1437.de/2003/07/03/lispworks-43-os-x-screenshots/The Omni Group - Applications - OmniOutlinerhttps://www.rfc1437.de/2003/07/03/the-omni-group-applications-omnioutliner/UK's Straw Admits Iraq Dossier Was 'Embarrassing'https://www.rfc1437.de/2003/07/03/uks-straw-admits-iraq-dossier-was-embarrassing/Berlusconi als EU-Ratspräsidenthttps://www.rfc1437.de/2003/07/02/berlusconi-als-eu-ratspraesident/I Love Me, vol. Ihttps://www.rfc1437.de/2003/07/02/i-love-me-vol-i/Microsoft Word bytes Tony Blair in the butthttps://www.rfc1437.de/2003/07/02/microsoft-word-bytes-tony-blair-in-the-butt/Nazi-Witze im EU-Parlamenthttps://www.rfc1437.de/2003/07/02/nazi-witze-im-eu-parlament/Ringel neuer Vorstandschef der WestLBhttps://www.rfc1437.de/2003/07/02/ringel-neuer-vorstandschef-der-westlb/Secret Santa terrorismhttps://www.rfc1437.de/2003/07/02/secret-santa-terrorism/SpamBayes Outlook Addinhttps://www.rfc1437.de/2003/07/02/spambayes-outlook-addin/c't eröffnet Portal für IT-Sicherheithttps://www.rfc1437.de/2003/07/01/ct-eroeffnet-portal-fuer-it-sicherheit/Fwd: [infowar.de] Medien im Krieg: Wegen Kritik entlassenhttps://www.rfc1437.de/2003/07/01/fwd-infowarde-medien-im-krieg-wegen-kritik-entlssn/im Julihttps://www.rfc1437.de/2003/07/01/im-juli/Lispworks 4.3 for OS Xhttps://www.rfc1437.de/2003/07/01/lispworks-43-for-os-x/Microsoft kriegt nichtmal ein HR Tag richtig hin ...https://www.rfc1437.de/2003/07/01/microsoft-kriegt-nichtmal-ein-hr-tag-richtig-hin/MulleNewz - RSS Reader Docklinghttps://www.rfc1437.de/2003/07/01/mullenewz-rss-reader-dockling/T-Online startet Flatrate für DSL-1500https://www.rfc1437.de/2003/07/01/t-online-startet-flatrate-fuer-dsl-1500/"Frankenstein Food" - die Neuauflagehttps://www.rfc1437.de/2003/06/30/frankenstein-food-die-neuauflage/google mit thumbshttps://www.rfc1437.de/2003/06/30/google-mit-thumbs/Tom Waits Textsammlunghttps://www.rfc1437.de/2003/06/30/tom-waits-textsammlung/Zabel deutscher Strassenmeisterhttps://www.rfc1437.de/2003/06/30/zabel-deutscher-strassenmeister/Friends defend photographer as he is arraigned on sex chargeshttps://www.rfc1437.de/2003/06/29/friends-defend-photographer-s-h-s-rrgnd-n-sx-chrgs/Comeback der alten Bahncard?https://www.rfc1437.de/2003/06/28/comeback-der-alten-bahncard/Freeware verletzt Apples geistiges Eigentumhttps://www.rfc1437.de/2003/06/28/freeware-verletzt-apples-geistiges-eigentum/Bad MSNBOT. Bad.https://www.rfc1437.de/2003/06/27/bad-msnbot-bad/if SCO isn''t right, someone else will behttps://www.rfc1437.de/2003/06/27/if-sco-isnt-right-someone-else-will-be/Steinbrück geht in die Offensivehttps://www.rfc1437.de/2003/06/27/steinbrueck-geht-in-die-offensive/Bill Gates: IT schafft Sicherheithttps://www.rfc1437.de/2003/06/26/bill-gates-it-schafft-sicherheit/Stoiber sauer über Treffen Merkel-Schröderhttps://www.rfc1437.de/2003/06/26/stoiber-sauer-ueber-treffen-merkel-schroeder/Leica Digital Modul for the R8 & R9https://www.rfc1437.de/2003/06/25/leica-digital-modul-for-the-r8-r9/Standartintegralehttps://www.rfc1437.de/2003/06/25/standartintegrale/Verbraucherzentralen überraschen mit 0190-Servicenummernhttps://www.rfc1437.de/2003/06/25/verbraucherzentralen-ueberraschn-mt-0190-srvcnmmrn/Winokurow gewinnt Tour de Suissehttps://www.rfc1437.de/2003/06/25/winokurow-gewinnt-tour-de-suisse/Wolfowitz to be in Charge of Military Tribunalshttps://www.rfc1437.de/2003/06/25/wolfowitz-to-be-in-charge-of-military-tribunals/COW - Programming for Bovineshttps://www.rfc1437.de/2003/06/24/cow-programming-for-bovines/Genfood auf europäischen Tisch?https://www.rfc1437.de/2003/06/24/genfood-auf-europaeischen-tisch/Androhung von Zwangsgeldern wegen fehlender Website-Sperrungen in NRWhttps://www.rfc1437.de/2003/06/24/ndrhng-vn-zwngsgldrn-wgn-fhlndr-wbst-sprrngn-n-nrw/Neues Bundesamt für Bevölkerungsschutzhttps://www.rfc1437.de/2003/06/24/neues-bundesamt-fuer-bevoelkerungsschutz/Olympus E-1 Digital SLRhttps://www.rfc1437.de/2003/06/24/olympus-e-1-digital-slr/Syndicationhttps://www.rfc1437.de/2003/06/24/syndication/Charming Python: Using combinatorial functions in the itertools modulehttps://www.rfc1437.de/2003/06/23/charming-python-usng-cmbntrl-fnctns-n-th-trtls-mdl/Couchblog: Abgebenhttps://www.rfc1437.de/2003/06/23/couchblog-abgeben/Ein ungeheures Lächeln - "Dalai Lama - Fall eines Gottkönigs" von Colin Goldnerhttps://www.rfc1437.de/2003/06/23/ein-unghrs-lchln-dl-lm-fll-ns-gttkngs-vn-cln-gldnr/MacOSX Packages for Mozart 1.2.5https://www.rfc1437.de/2003/06/23/macosx-packages-for-mozart-125/Try Before You Sellhttps://www.rfc1437.de/2003/06/23/try-before-you-sell/Vim 6: A Great Linux Outlinerhttps://www.rfc1437.de/2003/06/23/vim-6-a-great-linux-outliner/Wer heute noch liest, hat selber Schuldhttps://www.rfc1437.de/2003/06/23/wer-heute-noch-liest-hat-selber-schuld/Belgien ändert erneut Kriegsverbrechergesetzhttps://www.rfc1437.de/2003/06/22/belgien-aendert-erneut-kriegsverbrechergesetz/The Hercules System/370, ESA/390, and z/Architecture Emulatorhttps://www.rfc1437.de/2003/06/22/the-hercules-system370-esa390-and-zarchitectr-mltr/ABCNEWS.com : Women Have Surgery to ''Restore'' Virginityhttps://www.rfc1437.de/2003/06/21/abcnewscom-women-have-surgery-to-restore-virginity/Ehemaliger Coast-Sportdirektor nimmt Rechtsanwalthttps://www.rfc1437.de/2003/06/21/ehemaliger-coast-sportdirektor-nimmt-rechtsanwalt/My Visit to SCOhttps://www.rfc1437.de/2003/06/21/my-visit-to-sco/OS X Oberfläche für Spicehttps://www.rfc1437.de/2003/06/21/os-x-oberflaeche-fuer-spice/Schleuser-Ermittlungen auch im Bundestaghttps://www.rfc1437.de/2003/06/21/schleuser-ermittlungen-auch-im-bundestag/Thunderbird für OS Xhttps://www.rfc1437.de/2003/06/21/thunderbird-fuer-os-x/EU-Bischöfe verlangen "Christliche Europaverfassung"https://www.rfc1437.de/2003/06/20/eu-bischoefe-verlangen-christliche-europaverfassng/Hundt will Insolvenzgeld kürzenhttps://www.rfc1437.de/2003/06/20/hundt-will-insolvenzgeld-kuerzen/Partei der Schwarzen Kassenhttps://www.rfc1437.de/2003/06/20/partei-der-schwarzen-kassen/Perle: Saddam war keine unmittelbare Gefahrhttps://www.rfc1437.de/2003/06/20/perle-saddam-war-keine-unmittelbare-gefahr/Swindle - CLOS und mehr für DrSchemehttps://www.rfc1437.de/2003/06/20/swindle-clos-und-mehr-fuer-drscheme/XchemeRPChttps://www.rfc1437.de/2003/06/20/xchemerpc/101 three sixty fivehttps://www.rfc1437.de/2003/06/19/101-three-sixty-five/Dieter Bohlen - Vorbild für Deutschland?https://www.rfc1437.de/2003/06/19/dieter-bohlen-vorbild-fuer-deutschland/DrSchemehttps://www.rfc1437.de/2003/06/19/drscheme/Looking to do web stuff with Python?https://www.rfc1437.de/2003/06/19/looking-to-do-web-stuff-with-python/Mikrofotografiehttps://www.rfc1437.de/2003/06/19/mikrofotografie/***Plonk***https://www.rfc1437.de/2003/06/19/plonk/Sad day... GIF patent dead at 20https://www.rfc1437.de/2003/06/19/sad-day-gif-patent-dead-at-20/Textsatzsysteme wie man sie nicht machen sollte?https://www.rfc1437.de/2003/06/19/textsatzsysteme-wie-man-sie-nicht-machen-sollte/Egon, Du hast die URL vergessen!https://www.rfc1437.de/2003/06/18/egon-du-hast-die-url-vergessen/Europäische Softwarepatente rücken näherhttps://www.rfc1437.de/2003/06/18/europaeische-softwarepatente-ruecken-naeher/Mark Pilgrim an einen Robot-Schreiberlinghttps://www.rfc1437.de/2003/06/18/mark-pilgrim-an-einen-robot-schreiberling/Orrin Hatch: clueless and malevolenthttps://www.rfc1437.de/2003/06/18/orrin-hatch-clueless-and-malevolent/SCO vs. IBM: Suns McNealy preist Vorzüge von Solarishttps://www.rfc1437.de/2003/06/18/sco-vs-ibm-suns-mcnealy-preist-vorzuege-von-solars/Clement: Deutsche sollten mehr arbeitenhttps://www.rfc1437.de/2003/06/17/clement-deutsche-sollten-mehr-arbeiten/Wenns richtig wild werden soll: Paketdienstehttps://www.rfc1437.de/2003/06/17/wenns-richtig-wild-werden-soll-paketdienste/Auf Wiedersehen und Danke für den Fisch ...https://www.rfc1437.de/2003/06/16/auf-wiedersehen-und-danke-fuer-den-fisch/Checkpointed Object Databasehttps://www.rfc1437.de/2003/06/16/checkpointed-object-database/Das Ende des WWWhttps://www.rfc1437.de/2003/06/16/das-ende-des-www/FDP verlangt Ende der Kohle-Subventionhttps://www.rfc1437.de/2003/06/16/fdp-verlangt-ende-der-kohle-subvention/Firebird unter OS Xhttps://www.rfc1437.de/2003/06/16/firebird-unter-os-x/Koks ist so doof, das müsste es eigentlich bei Aldi geben.https://www.rfc1437.de/2003/06/16/koks-ist-so-doof-das-muesste-es-eigentlch-b-ld-gbn/Nochmal zum Validatorhttps://www.rfc1437.de/2003/06/16/nochmal-zum-validator/SCO erweitert Klage gegen IBMhttps://www.rfc1437.de/2003/06/16/sco-erweitert-klage-gegen-ibm/Union will Zahnbehandlung privatisierenhttps://www.rfc1437.de/2003/06/16/union-will-zahnbehandlung-privatisieren/Domain-Schacherhttps://www.rfc1437.de/2003/06/15/domain-schacher/iCab hat auch doofe Ohrenhttps://www.rfc1437.de/2003/06/15/icab-hat-auch-doofe-ohren/Sandbox für Pythonhttps://www.rfc1437.de/2003/06/15/sandbox-fuer-python/Seehofer will gesetzliche Krankenkasse für allehttps://www.rfc1437.de/2003/06/15/seehofer-will-gesetzliche-krankenkasse-fuer-alle/W3-Validator sehr seltsamhttps://www.rfc1437.de/2003/06/15/w3-validator-sehr-seltsam/Microsoft gibt Internet Explorer für Mac aufhttps://www.rfc1437.de/2003/06/14/microsoft-gibt-internet-explorer-fuer-mac-auf/40.000 Bahn-Jobs auf dem Prüfstandhttps://www.rfc1437.de/2003/06/13/40000-bahn-jobs-auf-dem-pruefstand/Schily für mehr Kameras auf Bahnhöfenhttps://www.rfc1437.de/2003/06/13/schily-fuer-mehr-kameras-auf-bahnhoefen/Antiviren-Zukauf von Microsoft sorgt für Wirbelhttps://www.rfc1437.de/2003/06/12/antiviren-zukauf-von-microsoft-sorgt-fuer-wirbel/Die CSU mag keine Pinguinehttps://www.rfc1437.de/2003/06/12/die-csu-mag-keine-pinguine/Homeland Security jagt Politikerhttps://www.rfc1437.de/2003/06/12/homeland-security-jagt-politiker/IP addresses sold on the black markethttps://www.rfc1437.de/2003/06/12/ip-addresses-sold-on-the-black-market/Sun: Linux-Nutzer wollen in Wirklichkeit kein Linuxhttps://www.rfc1437.de/2003/06/12/sun-linux-nutzer-wollen-in-wirklichkeit-kein-linux/Washington setzt Immunität für US-Soldaten durchhttps://www.rfc1437.de/2003/06/12/washington-setzt-immunitaet-fuer-us-soldaten-durch/Blix: "Ich hatte meine Verleumder in Washington"https://www.rfc1437.de/2003/06/11/blix-ich-hatte-meine-verleumder-in-washington/Koch muss zahlenhttps://www.rfc1437.de/2003/06/11/koch-muss-zahlen/Untersuchungsausschuss wegen Möllemann?https://www.rfc1437.de/2003/06/11/untersuchungsausschuss-wegen-moellemann/Visible Human Serverhttps://www.rfc1437.de/2003/06/11/visible-human-server/Another Smalltalk?https://www.rfc1437.de/2003/06/10/another-smalltalk/Gabriel: Aus von Modern Talking "lange überfällig"https://www.rfc1437.de/2003/06/10/gabriel-aus-von-modern-talking-lange-ueberfaellig/NASA-Techniker gelingt Reparatur aus 800 Millionen...https://www.rfc1437.de/2003/06/10/nasa-techniker-gelingt-reparatur-aus-800-millionen/Das Maß ist voll - killt IE 6!https://www.rfc1437.de/2003/06/09/das-mass-ist-voll-killt-ie-6/Gizmodo 1983https://www.rfc1437.de/2003/06/09/gizmodo-1983/Noch so eine angebliche Vertretung des Bürgerwillens ...https://www.rfc1437.de/2003/06/09/noch-so-eine-angebliche-vertretung-des-buergrwllns/Waste: verschlüsseltes File Sharinghttps://www.rfc1437.de/2003/06/09/waste-verschluesseltes-file-sharing/PEAK / PyProtocolshttps://www.rfc1437.de/2003/06/08/peak-pyprotocols/Shift-Gehäuse-Deckelhttps://www.rfc1437.de/2003/06/08/shift-gehaeuse-deckel/Unwetterwarnung für NRWhttps://www.rfc1437.de/2003/06/08/unwetterwarnung-fuer-nrw/Python und curses - und eine Python-Implementation von readlinehttps://www.rfc1437.de/2003/06/07/python-und-curses-und-eine-python-mplmnttn-vn-rdln/Zutritt verboten!https://www.rfc1437.de/2003/06/07/zutritt-verboten/Blooglehttps://www.rfc1437.de/2003/06/06/bloogle/Contax N Digital SLR Discontinuedhttps://www.rfc1437.de/2003/06/06/contax-n-digital-slr-discontinued/iComic - absolut coolhttps://www.rfc1437.de/2003/06/06/icomic-absolut-cool/Möllemann, der Waffenschieberhttps://www.rfc1437.de/2003/06/06/moellemann-der-waffenschieber/Private Konkurrenz für die Bahnhttps://www.rfc1437.de/2003/06/06/private-konkurrenz-fuer-die-bahn/Clement will weniger Bürokratie in Berufenhttps://www.rfc1437.de/2003/06/05/clement-will-weniger-buerokratie-in-berufen/Ein virtuelles Kernobst als potenzieller Zankapfelhttps://www.rfc1437.de/2003/06/05/ein-virtuelles-kernobst-als-potenzieller-zankapfel/Jürgen W. Möllemann ist tothttps://www.rfc1437.de/2003/06/05/juergen-w-moellemann-ist-tot/Microsoft lässt sich Interactive Entertainment System patentierenhttps://www.rfc1437.de/2003/06/05/microsoft-laesst-sich-ntrctv-ntrtnmnt-systm-ptntrn/Pantani zu Bianchi?https://www.rfc1437.de/2003/06/05/pantani-zu-bianchi/Pendlerpauschale auf dem Prüfstandhttps://www.rfc1437.de/2003/06/05/pendlerpauschale-auf-dem-pruefstand/Steve Ballmer fühlt sich durch Linux bedrohthttps://www.rfc1437.de/2003/06/05/steve-ballmer-fuehlt-sich-durch-linux-bedroht/Web-Crawler sucht nach Steuersündernhttps://www.rfc1437.de/2003/06/05/web-crawler-sucht-nach-steuersuendern/Wieder Streit um Entwurf zur Veröffentlichung von Sicherheitslückenhttps://www.rfc1437.de/2003/06/05/wieder-stret-m-ntwrf-zr-vrffntlchng-vn-schrhtslckn/430 Millionen Euro für Eschede-Opfer geforderthttps://www.rfc1437.de/2003/06/04/430-millionen-euro-fuer-eschede-opfer-gefordert/Auch Sendmail schützt jetzt vor Spamhttps://www.rfc1437.de/2003/06/04/auch-sendmail-schuetzt-jetzt-vor-spam/Aus für Einwegverpackungen?https://www.rfc1437.de/2003/06/04/aus-fuer-einwegverpackungen/Deutsche Bürokratie bewegt sich nichthttps://www.rfc1437.de/2003/06/04/deutsche-buerokratie-bewegt-sich-nicht/Netzzensor Büssow tritt aus gegen Kritikerhttps://www.rfc1437.de/2003/06/04/netzzensor-buessow-tritt-aus-gegen-kritiker/Biste alt? Biste arm? Kannste sterben ...https://www.rfc1437.de/2003/06/03/biste-alt-biste-arm-kannste-sterben/Dynamically Scoped Variableshttps://www.rfc1437.de/2003/06/03/dynamically-scoped-variables/This is just cool - ST-80in VW 7https://www.rfc1437.de/2003/06/03/this-is-just-cool-st-80in-vw-7/Blei in den Regalenhttps://www.rfc1437.de/2003/06/02/blei-in-den-regalen/Die Open-Content-Lizenz wird europäischhttps://www.rfc1437.de/2003/06/02/die-open-content-lizenz-wird-europaeisch/Das Monty-Hall Problemhttps://www.rfc1437.de/2003/06/01/das-monty-hall-problem/Ein Maulkorb für SCOhttps://www.rfc1437.de/2003/06/01/ein-maulkorb-fuer-sco/Objektivverzeichnung korrigierenhttps://www.rfc1437.de/2003/06/01/objektivverzeichnung-korrigieren/Photokit - analoge Bildeffekte für Photoshophttps://www.rfc1437.de/2003/06/01/photokit-analoge-bildeffekte-fuer-photoshop/Siggy Pophttps://www.rfc1437.de/2003/06/01/siggy-pop/Übersicht über die Geschichte der Linhof Technikahttps://www.rfc1437.de/2003/06/01/uebersicht-ueber-die-geschichte-der-linhof-technik/US-Regulierungsbehörde unter Korruptionsverdachthttps://www.rfc1437.de/2003/06/01/us-regulierungsbehoerde-unter-korruptionsverdacht/20 years of Smalltalk-80https://www.rfc1437.de/2003/05/31/20-years-of-smalltalk-80/Polaroid 195 wird wieder neu aufgelegthttps://www.rfc1437.de/2003/05/31/polaroid-195-wird-wieder-neu-aufgelegt/Das Rungholt Projekthttps://www.rfc1437.de/2003/05/30/das-rungholt-projekt/Wolfowitz lässt Maske fallenhttps://www.rfc1437.de/2003/05/30/wolfowitz-laesst-maske-fallen/Mal wieder Gerüchte um Digiback für Leica R8 oder 9https://www.rfc1437.de/2003/05/29/mal-wieder-geruechte-um-digiback-fuer-leic-r8-dr-9/Neues iTunes unterbindet Musik-Sharing über das Internethttps://www.rfc1437.de/2003/05/28/neues-itunes-unterbindet-musik-sharing-br-ds-ntrnt/Novell reklamiert eigene Unix-Rechte im Streit um Linuxhttps://www.rfc1437.de/2003/05/28/novell-reklamiert-eigene-unix-rechte-im-strt-m-lnx/USA erneuern Vorwürfe gegen Iranhttps://www.rfc1437.de/2003/05/28/usa-erneuern-vorwuerfe-gegen-iran/Wer nichts wird, wird Werberhttps://www.rfc1437.de/2003/05/28/wer-nichts-wird-wird-werber/GMX landete auf Open-Relay-Blacklisthttps://www.rfc1437.de/2003/05/27/gmx-landete-auf-open-relay-blacklist/Microsoft fordert neue Ausschreibung in München [Update]https://www.rfc1437.de/2003/05/27/microsoft-fordert-neue-ausschreibung-in-munchn-pdt/Oh Gott! (3)https://www.rfc1437.de/2003/05/27/oh-gott-3/A land without consequenceshttps://www.rfc1437.de/2003/05/26/a-land-without-consequences/LinuxTag mahnt SCO abhttps://www.rfc1437.de/2003/05/26/linuxtag-mahnt-sco-ab/Milliarden-Forderung an die Bahnhttps://www.rfc1437.de/2003/05/26/milliarden-forderung-an-die-bahn/Münchener Rathaus-SPD entscheidet sich für Linuxhttps://www.rfc1437.de/2003/05/26/muenchener-rathaus-spd-entscheidet-sich-fuer-linux/Steinbrück: Fortsetzung der Koalition offenhttps://www.rfc1437.de/2003/05/26/steinbrueck-fortsetzung-der-koalition-offen/Scientists Find Animal Link for SARS Virushttps://www.rfc1437.de/2003/05/24/scientists-find-animal-link-for-sars-virus/Bush attackiert "Old Europe"https://www.rfc1437.de/2003/05/23/bush-attackiert-old-europe/Eigentor von SCOhttps://www.rfc1437.de/2003/05/23/eigentor-von-sco/SAP setzt auf MySQLhttps://www.rfc1437.de/2003/05/23/sap-setzt-auf-mysql/spam filter from heckhttps://www.rfc1437.de/2003/05/23/spam-filter-from-heck/Ullrich wird bei Tour startenhttps://www.rfc1437.de/2003/05/23/ullrich-wird-bei-tour-starten/Bruce Perens on SCO v. Linuxhttps://www.rfc1437.de/2003/05/22/bruce-perens-on-sco-v-linux/CIA muss eigene Irak-Berichte durchforstenhttps://www.rfc1437.de/2003/05/22/cia-muss-eigene-irak-berichte-durchforsten/Eiffel releases beta of EiffelStudio for OS Xhttps://www.rfc1437.de/2003/05/22/eiffel-releases-beta-of-eiffelstudio-for-os-x/Köln am Abgrundhttps://www.rfc1437.de/2003/05/22/koeln-am-abgrund/Schimpansen sind auch nur Menschenhttps://www.rfc1437.de/2003/05/22/schimpansen-sind-auch-nur-menschen/Tabubruch für die eigene Sicherheithttps://www.rfc1437.de/2003/05/22/tabubruch-fuer-die-eigene-sicherheit/Weltrekord: Eine Titanenhafte Blütehttps://www.rfc1437.de/2003/05/22/weltrekord-eine-titanenhafte-bluete/Ablösesumme für Ullrich?https://www.rfc1437.de/2003/05/21/abloesesumme-fuer-ullrich/Boyz need Toyzhttps://www.rfc1437.de/2003/05/21/boyz-need-toyz-2/Kamera-Handys werden auch von Spannern genutzthttps://www.rfc1437.de/2003/05/21/kamera-handys-werden-auch-von-spannern-genutzt/Lenin strahlthttps://www.rfc1437.de/2003/05/21/lenin-strahlt/Bahn-Manager fliegenhttps://www.rfc1437.de/2003/05/20/bahn-manager-fliegen/Neues Preissystem: Bahn feuert zwei Managerhttps://www.rfc1437.de/2003/05/20/neues-preissystem-bahn-feuert-zwei-manager/Ahnungslose und zynische Politikerhttps://www.rfc1437.de/2003/05/19/ahnungslose-und-zynische-politiker/Matrix Reloaded features nmaphttps://www.rfc1437.de/2003/05/18/matrix-reloaded-features-nmap/Eine Trauerweidehttps://www.rfc1437.de/2003/05/18/pic-eine-trauerweide/Promenade im Frühlinghttps://www.rfc1437.de/2003/05/18/pic-promenade-im-fruehling/Wer da wohl sitzt?https://www.rfc1437.de/2003/05/18/pic-wer-da-wohl-sitzt/dot.comischeshttps://www.rfc1437.de/2003/05/17/dotcomisches/Gericht verbietet Domains mit Städtenamenhttps://www.rfc1437.de/2003/05/17/gericht-verbietet-domains-mit-staedtenamen/Marvin Minsky: Künstliche Intelligenz ist gehirntothttps://www.rfc1437.de/2003/05/17/marvin-minsky-kuenstliche-intelligenz-ist-gehirntt/Script Kiddieshttps://www.rfc1437.de/2003/05/17/script-kiddies/Texas bill: enviro = terroristhttps://www.rfc1437.de/2003/05/17/texas-bill-enviro-terrorist/Bahn-Fernverkehr bricht offenbar weiter einhttps://www.rfc1437.de/2003/05/16/bahn-fernverkehr-bricht-offenbar-weiter-ein/Bianchi-Team erhält die Coast-Lizenzhttps://www.rfc1437.de/2003/05/16/bianchi-team-erhaelt-die-coast-lizenz/Die anonymen Anpackerhttps://www.rfc1437.de/2003/05/16/die-anonymen-anpacker/Dosenfleisch iihttps://www.rfc1437.de/2003/05/16/dosenfleisch-ii/Gericht präzisiert Haftung für Betreiber von Internet-Forenhttps://www.rfc1437.de/2003/05/16/gericht-praezisiert-haftung-fur-btrbr-vn-ntrnt-frn/Metablogginghttps://www.rfc1437.de/2003/05/16/metablogging/Microsofts Protokoll-Peepshowhttps://www.rfc1437.de/2003/05/16/microsofts-protokoll-peepshow/Routing-Tabellen unter Linux anfällig für Denial-of-Service-Attackenhttps://www.rfc1437.de/2003/05/16/routing-tabellen-ntr-lnx-nfllg-fr-dnl-f-srvc-ttckn/Polizei nimmt .NET-Fahndungssystem in Betriebhttps://www.rfc1437.de/2003/05/15/polizei-nimmt-net-fahndungssystem-in-betrieb/SCO declares total war on GNU/Linuxhttps://www.rfc1437.de/2003/05/15/sco-declares-total-war-on-gnulinux/T-Mobile stoppt Windows-Handy [Update]https://www.rfc1437.de/2003/05/15/t-mobile-stoppt-windows-handy-update/BMWi stoppt OpenSoure-Projektehttps://www.rfc1437.de/2003/05/14/bmwi-stoppt-opensoure-projekte/On Lisp Reprinthttps://www.rfc1437.de/2003/05/14/on-lisp-reprint/Python-Panik rund um Jülich?https://www.rfc1437.de/2003/05/14/python-panik-rund-um-juelich/Ullrich trennt sich von Coasthttps://www.rfc1437.de/2003/05/14/ullrich-trennt-sich-von-coast/Velvia 100 due in Augusthttps://www.rfc1437.de/2003/05/14/velvia-100-due-in-august/Inquiry Shows British Scientists Took Brains Without Families' Consenthttps://www.rfc1437.de/2003/05/13/inquiry-shws-brtsh-scntsts-tk-brns-wtht-fmls-cnsnt/Orchideen sind auch nur Spargelhttps://www.rfc1437.de/2003/05/13/orchideen-sind-auch-nur-spargel/Experte: Mehrwertsteuer muss raufhttps://www.rfc1437.de/2003/05/12/experte-mehrwertsteuer-muss-rauf/Dem Schockwellenreiter sein Kantel wird 50!https://www.rfc1437.de/2003/05/11/dem-schockwellenreiter-sein-kantel-wird-50/NRW-Nameserver umgeht Sperrungsverfügunghttps://www.rfc1437.de/2003/05/11/nrw-nameserver-umgeht-sperrungsverfuegung/Oberbürgermeisterin von Hanau abgewählthttps://www.rfc1437.de/2003/05/11/oberbuergermeisterin-von-hanau-abgewaehlt/Donald E. Knuth über signifikanten Whitespacehttps://www.rfc1437.de/2003/05/10/donald-e-knuth-ueber-signifikanten-whitespace/Great Barrier Riffhttps://www.rfc1437.de/2003/05/10/great-barrier-riff/Microsoft droht Billionenstrafehttps://www.rfc1437.de/2003/05/10/microsoft-droht-billionenstrafe/My leg is a security holehttps://www.rfc1437.de/2003/05/10/my-leg-is-a-security-hole/Ullrich zurück zu Telekom?https://www.rfc1437.de/2003/05/10/ullrich-zurueck-zu-telekom/Web-Browser Safari schlampt bei SSL-Zertifikatenhttps://www.rfc1437.de/2003/05/10/web-browser-safari-schlampt-bei-ssl-zertifikaten/Jan Ullrich vor dem Absprunghttps://www.rfc1437.de/2003/05/09/jan-ullrich-vor-dem-absprung/Juice reductionhttps://www.rfc1437.de/2003/05/09/juice-reduction/(re)StructuredTexthttps://www.rfc1437.de/2003/05/09/restructuredtext/Will Google die Weblogs aussperren?https://www.rfc1437.de/2003/05/09/will-google-die-weblogs-aussperren/Bush & Blair für Nobelpreis nominierthttps://www.rfc1437.de/2003/05/08/bush-blair-fuer-nobelpreis-nominiert/Gut 100 Millionen für Opfer des 11. Septemberhttps://www.rfc1437.de/2003/05/08/gut-100-millionen-fuer-opfer-des-11-september/Patentstreit um Spam-Schutzhttps://www.rfc1437.de/2003/05/08/patentstreit-um-spam-schutz/Schwachstelle in Microsofts Passporthttps://www.rfc1437.de/2003/05/08/schwachstelle-in-microsofts-passport/Spam in Zukunft "unzumutbare Belästigung"https://www.rfc1437.de/2003/05/08/spam-in-zukunft-unzumutbare-belaestigung/Team von Jan Ullrich erneut ohne Lizenzhttps://www.rfc1437.de/2003/05/08/team-von-jan-ullrich-erneut-ohne-lizenz/AOL Weblogs?https://www.rfc1437.de/2003/05/07/aol-weblogs/In den Fußstapfen von Micro$oft?https://www.rfc1437.de/2003/05/07/in-den-fuszligstapfen-von-microoft/Mehdorn, friß Schienenhttps://www.rfc1437.de/2003/05/07/mehdorn-friszlig-schienen/Rice wirft Berlin und Paris Geiselnahme vorhttps://www.rfc1437.de/2003/05/07/rice-wirft-berlin-und-paris-geiselnahme-vor/Fischer warnt Grüne vor Verlust der Regierungsmachthttps://www.rfc1437.de/2003/05/06/fischer-warnt-gruene-vor-verlust-der-regierngsmcht/Lafontaine auf SPD-Jubiläumsfeier unerwünschthttps://www.rfc1437.de/2003/05/06/lafontaine-auf-spd-jubilaeumsfeier-unerwuenscht/Michael Arndthttps://www.rfc1437.de/2003/05/06/michael-arndt/US-Staaten verbieten Fernseher und Telefonehttps://www.rfc1437.de/2003/05/06/us-staaten-verbieten-fernseher-und-telefone/Verwechslunghttps://www.rfc1437.de/2003/05/06/verwechslung/Hackers and paintershttps://www.rfc1437.de/2003/05/05/hackers-and-painters-2/Schleswig-Holstein kippt umstrittene Diätenerhöhunghttps://www.rfc1437.de/2003/05/05/schleswig-holstein-kippt-umstrittene-diaetenerhhng/Schröder: Zeiten des Überflusses sind vorbei ...https://www.rfc1437.de/2003/05/05/schroeder-zeiten-des-ueberflusses-sind-vorbei/Berlusconi unterstellt Richtern "Putschversuch"https://www.rfc1437.de/2003/05/04/berlusconi-unterstellt-richtern-putschversuch/Linux: Keine Chance für Buffer Overflowshttps://www.rfc1437.de/2003/05/04/linux-keine-chance-fuer-buffer-overflows/Sonderparteitag zur PDS-Führungskrisehttps://www.rfc1437.de/2003/05/04/sonderparteitag-zur-pds-fuehrungskrise/Sorge über ein Ende von Rot-Grünhttps://www.rfc1437.de/2003/05/04/sorge-ueber-ein-ende-von-rot-gruen/Union streitet um Renteneintrittsalterhttps://www.rfc1437.de/2003/05/04/union-streitet-um-renteneintrittsalter/Sendepausehttps://www.rfc1437.de/2003/05/01/sendepause/80x86 ASM for ASP.NEThttps://www.rfc1437.de/2003/04/30/80x86-asm-for-aspnet/Geheime Dienste.https://www.rfc1437.de/2003/04/30/geheime-dienste/Und welcher Feind der Christlichen Kirche bist du?https://www.rfc1437.de/2003/04/30/und-welcher-feind-der-christlichen-kirche-bist-du/Waldmäuse orientieren sich wie "Hänsel und Gretel"https://www.rfc1437.de/2003/04/30/waldmaeuse-orientieren-sich-wie-haensel-und-gretel/Merz: Sozialhilfe im Extremfall ganz streichenhttps://www.rfc1437.de/2003/04/29/merz-sozialhilfe-im-extremfall-ganz-streichen/SCO: Als nächstes sind Red Hat und SuSE dranhttps://www.rfc1437.de/2003/04/29/sco-als-naechstes-sind-red-hat-und-suse-dran/Bericht: Neue linke Terrorgruppe entstehthttps://www.rfc1437.de/2003/04/28/bericht-neue-linke-terrorgruppe-entsteht/Blair für alleinige Vormachtstellung der USAhttps://www.rfc1437.de/2003/04/28/blair-fuer-alleinige-vormachtstellung-der-usa/Der Patriot Act und seine Auswirkungen in den USAhttps://www.rfc1437.de/2003/04/28/der-patriot-act-und-seine-auswirkungen-in-den-usa/Schemix - A Scheme In The Linux Kernelhttps://www.rfc1437.de/2003/04/28/schemix-a-scheme-in-the-linux-kernel/Studie: Jeder Zweite akzeptiert kostenpflichtige Internetangebotehttps://www.rfc1437.de/2003/04/28/studie-jeder-zweite-akzeptrt-kstnpflchtg-ntrntngbt/More on the Mini-PChttps://www.rfc1437.de/2003/04/27/more-on-the-mini-pc/Nackte Tatsachenhttps://www.rfc1437.de/2003/04/27/nackte-tatsachen/Pharma-Großhändler und Ärzte unter Betrugsverdachthttps://www.rfc1437.de/2003/04/27/pharma-grosshaendler-und-aerzte-unter-betrgsvrdcht/Spammer ziehen Anti-Spam-Aktivisten vor den Kadihttps://www.rfc1437.de/2003/04/27/spammer-ziehen-anti-spam-aktivisten-vor-den-kadi/Terry Jones über Tony Blair.https://www.rfc1437.de/2003/04/27/terry-jones-ueber-tony-blair/Chicken McSpamhttps://www.rfc1437.de/2003/04/26/chicken-mcspam/Kohl betrieb als Kanzler Lobbyarbeithttps://www.rfc1437.de/2003/04/26/kohl-betrieb-als-kanzler-lobbyarbeit/py-xmlrpc 0.8.8.3https://www.rfc1437.de/2003/04/26/py-xmlrpc-0883/Pyro 3.2https://www.rfc1437.de/2003/04/26/pyro-32/Behrens warnt vor intellektuellen Nazishttps://www.rfc1437.de/2003/04/25/behrens-warnt-vor-intellektuellen-nazis/GSM/GPRS on an SD cardhttps://www.rfc1437.de/2003/04/25/gsmgprs-on-an-sd-card/Kos on Bushs Iraq Lieshttps://www.rfc1437.de/2003/04/25/kos-on-bushs-iraq-lies/Grosse Pointe Blank - guter Film, aber von Kameras keine Ahnunghttps://www.rfc1437.de/2003/04/24/grosse-pointe-blank-guter-film-abr-vn-kmrs-kn-hnng/Heise goes east, aber bitte schön ohne Mitarbeiterhttps://www.rfc1437.de/2003/04/24/heise-goes-east-aber-bitte-schoen-ohne-mitarbeiter/Luminous Landscape Reviews Fuji S2 Prohttps://www.rfc1437.de/2003/04/24/luminous-landscape-reviews-fuji-s2-pro/Neustart der US-Atomwaffen-Produktionhttps://www.rfc1437.de/2003/04/24/neustart-der-us-atomwaffen-produktion/The world as a bloghttps://www.rfc1437.de/2003/04/24/the-world-as-a-blog/Weißes Haus schweigt zu Schwulen-Attackenhttps://www.rfc1437.de/2003/04/24/weisses-haus-schweigt-zu-schwulen-attacken/Nur mal wieder ein bischen Eigenwerbunghttps://www.rfc1437.de/2003/04/23/nur-mal-wieder-ein-bischen-eigenwerbung/OpenBSD in Ungnadehttps://www.rfc1437.de/2003/04/23/openbsd-in-ungnade/Roland Koch: Gleicher Lohn bei mehr Arbeithttps://www.rfc1437.de/2003/04/23/roland-koch-gleicher-lohn-bei-mehr-arbeit/Weblog-Hostinghttps://www.rfc1437.de/2003/04/23/weblog-hosting/Grüne: Urabstimmung soll alten Zopf abschneidenhttps://www.rfc1437.de/2003/04/22/gruene-urabstimmung-soll-alten-zopf-abschneiden/Politik mit Opferzahlen?https://www.rfc1437.de/2003/04/22/politik-mit-opferzahlen/Spanien will massiv gegen Anti-Kriegs-Proteste vorgehenhttps://www.rfc1437.de/2003/04/22/spanien-will-massiv-gegen-anti-kriegs-protst-vrghn/Children Taken from Couple Over Breast-Feeding Photohttps://www.rfc1437.de/2003/04/21/children-taken-from-couple-over-breast-feeding-pht/Jan Ullrich gewinnt rund um Kölnhttps://www.rfc1437.de/2003/04/21/jan-ullrich-gewinnt-rund-um-koeln/Jazz-Sängerin Nina Simone ist tothttps://www.rfc1437.de/2003/04/21/jazz-saengerin-nina-simone-ist-tot/Der Gravenreuth-Reporthttps://www.rfc1437.de/2003/04/20/der-gravenreuth-report/Die Un-CD und die Positionierung der Wirtschafthttps://www.rfc1437.de/2003/04/20/die-un-cd-und-die-positionierung-der-wirtschaft/Jutta Dithfurts Serie über die Grünenhttps://www.rfc1437.de/2003/04/20/jutta-dithfurts-serie-uumlber-die-gruumlnen/No Sex!https://www.rfc1437.de/2003/04/20/no-sex/Fagan droht der Bahn mit Milliardenforderunghttps://www.rfc1437.de/2003/04/19/fagan-droht-der-bahn-mit-milliardenforderung/Forscher entdecken uralte DNShttps://www.rfc1437.de/2003/04/19/forscher-entdecken-uralte-dns/Mac OS X und Darwinportshttps://www.rfc1437.de/2003/04/19/mac-os-x-und-darwinports/Spam zurückschicken?https://www.rfc1437.de/2003/04/19/spam-zurueckschicken/Stoiber lobt Schröderhttps://www.rfc1437.de/2003/04/19/stoiber-lobt-schroeder/Aus der Traum: Keine US-Gelder für OpenBSDhttps://www.rfc1437.de/2003/04/18/aus-der-traum-keine-us-gelder-fuer-openbsd/Biblis A wegen Sicherheitsproblemen abgeschaltethttps://www.rfc1437.de/2003/04/18/biblis-a-wegen-sicherheitsproblemen-abgeschaltet/Der Rollberg ...https://www.rfc1437.de/2003/04/18/der-rollberg/Unbezahlte Werbung durch Verlinkung oder "Wie bringe ich einen kommerziellen Weblogserver erfol ...https://www.rfc1437.de/2003/04/18/nbzhlt-wrbng-drch-vrlnkng-dr-w-brng-ch-nn-kmmrzlln/Öl oder Kulturhttps://www.rfc1437.de/2003/04/18/oel-oder-kultur/Technisches vom Rollberghttps://www.rfc1437.de/2003/04/18/technisches-vom-rollberg/US-Experten sollen Massenvernichtungswaffen suchenhttps://www.rfc1437.de/2003/04/18/us-experten-sollen-massenvernichtungswaffen-suchen/Zahnarzt entwickelt Bohrer für Mars-Sondehttps://www.rfc1437.de/2003/04/18/zahnarzt-entwickelt-bohrer-fuumlr-mars-sonde/Heise gewinnt gegen Spammerhttps://www.rfc1437.de/2003/04/17/heise-gewinnt-gegen-spammer/Interessante Programmiersprache: Goohttps://www.rfc1437.de/2003/04/17/interessante-programmiersprache-goo/SPD-Linke warnt vor Scheitern der Regierunghttps://www.rfc1437.de/2003/04/17/spd-linke-warnt-vor-scheitern-der-regierung/Umzug muensterland.org auf eine neue Maschinehttps://www.rfc1437.de/2003/04/17/umzug-muensterlandorg-auf-eine-neue-maschine/Mann starb bei Waldbrand in Nottulnhttps://www.rfc1437.de/2003/04/16/mann-starb-bei-waldbrand-in-nottuln/CNN mogelt bei der Moore-Oscar-Rede?https://www.rfc1437.de/2003/04/15/cnn-mogelt-bei-der-moore-oscar-rede/Ist Freenet das AOL der Weblogs?https://www.rfc1437.de/2003/04/15/ist-freenet-das-aol-der-weblogs/Niedersachsen will Justiz privatisierenhttps://www.rfc1437.de/2003/04/15/niedersachsen-will-justiz-privatisieren/Damit die Affen erkannt werden?https://www.rfc1437.de/2003/04/14/damit-die-affen-erkannt-werden/Explosionsartiger Anstieg von Birkenpollenhttps://www.rfc1437.de/2003/04/14/explosionsartiger-anstieg-von-birkenpollen/Reformpaket: Schröder droht mit Rücktritthttps://www.rfc1437.de/2003/04/14/reformpaket-schroeder-droht-mit-ruecktritt/Safari Public Beta 2 ist dahttps://www.rfc1437.de/2003/04/14/safari-public-beta-2-ist-da/Thierse: Lafontaine ist nicht mehrheitsfähighttps://www.rfc1437.de/2003/04/14/thierse-lafontaine-ist-nicht-mehrheitsfaehig/BDI will Arbeitnehmer-Vertreter entmachtenhttps://www.rfc1437.de/2003/04/13/bdi-will-arbeitnehmer-vertreter-entmachten/''No Question'' Some Senior Iraqis Fled to Syria, Rumsfeld Sayshttps://www.rfc1437.de/2003/04/13/no-question-some-senior-iraqs-fld-t-syr-rmsfld-sys/Altkanzler Kohl war Berater bei Kirchhttps://www.rfc1437.de/2003/04/12/altkanzler-kohl-war-berater-bei-kirch/Bilder mit dem 2.8/180 an der RTS IIIhttps://www.rfc1437.de/2003/04/12/bilder-mit-dem-28180-an-der-rts-iii/Cooles Tier der Woche: Hasenmaulfledermaushttps://www.rfc1437.de/2003/04/12/cooles-tier-der-woche-hasenmaulfledermaus/Das Genfer Abkommen über den Schutz von Zivilpersonen in Kriegszeitenhttps://www.rfc1437.de/2003/04/12/das-genfer-bkmmn-br-dn-schtz-vn-zvlprsnn-n-krgsztn/FDP verlangt von Journalisten Eintrittsgeld bei Parteitaghttps://www.rfc1437.de/2003/04/12/fdp-verlangt-von-journalisten-eintrittsgld-b-prttg/Frauenhandel und Tempelprostitution in Südasienhttps://www.rfc1437.de/2003/04/12/frauenhandel-und-tempelprostitution-in-suedasien/Mehr, mehr!https://www.rfc1437.de/2003/04/12/mehr-mehr/Beitrag ohne Titelhttps://www.rfc1437.de/2003/04/12/p665/Pik-As Husseinhttps://www.rfc1437.de/2003/04/12/pik-as-hussein/Schokolade kann Schmerzen lindernhttps://www.rfc1437.de/2003/04/12/schokolade-kann-schmerzen-lindern/TopicExchange Channel für deutsche Blogshttps://www.rfc1437.de/2003/04/12/topicexchange-channel-fuer-deutsche-blogs/Was hat Trackback mit dem historischen Web zu tun?https://www.rfc1437.de/2003/04/12/was-hat-trackback-mit-dem-historischen-web-zu-tun/Currywurst kann Mäuse süchtig machenhttps://www.rfc1437.de/2003/04/11/currywurst-kann-maeuse-suechtig-machen/Home is where CVSROOT is...https://www.rfc1437.de/2003/04/11/home-is-where-cvsroot-is/The Save Farscape Library Projecthttps://www.rfc1437.de/2003/04/11/the-save-farscape-library-project/Büro-Software zum Nulltarifhttps://www.rfc1437.de/2003/04/10/buero-software-zum-nulltarif/Christliche Fundamentalisten auf dem Vormarschhttps://www.rfc1437.de/2003/04/10/christliche-fundamentalisten-auf-dem-vormarsch/Jan Ullrich gut in Formhttps://www.rfc1437.de/2003/04/10/jan-ullrich-gut-in-form/Neue Risikobewertung erforderlichhttps://www.rfc1437.de/2003/04/10/neue-risikobewertung-erforderlich/Paul Graham spekuliert über Programmiersprachen in 100 Jahrenhttps://www.rfc1437.de/2003/04/10/paul-graham-spekuliert-br-prgrmmrsprchn-n-100-jhrn/Frühling - das ich nicht lachehttps://www.rfc1437.de/2003/04/10/pic-fruehling-das-ich-nicht-lache/Ok, das hat mich aber wieder versöhnt ...https://www.rfc1437.de/2003/04/10/pic-ok-das-hat-mich-aber-wieder-versoehnt/Seehofer wirft Unionsspitze Missmanagement vorhttps://www.rfc1437.de/2003/04/09/seehofer-wirft-unionsspitze-missmanagement-vor/Weltgrößte Digitalkamera liefert erste Bilderhttps://www.rfc1437.de/2003/04/09/weltgroesste-digitalkamera-liefert-erste-bilder/Weltweit dümmste Sicherheitsmaßnahmen "geehrt"https://www.rfc1437.de/2003/04/09/weltweit-duemmste-sicherheitsmassnahmen-geehrt/ARD-Team beweist Einsatz von uranhaltiger Munitionhttps://www.rfc1437.de/2003/04/08/ard-team-beweist-einsatz-von-uranhaltiger-munition/Contax Tvs Review at Steve's Digicamshttps://www.rfc1437.de/2003/04/08/contax-tvs-review-at-steves-digicams/Island will wieder Wale jagenhttps://www.rfc1437.de/2003/04/08/island-will-wieder-wale-jagen/John C. Dvorak is a blithering idiothttps://www.rfc1437.de/2003/04/08/john-c-dvorak-is-a-blithering-idiot/Leerer Palasthttps://www.rfc1437.de/2003/04/08/leerer-palast/Medien-Hotel getroffen, mehrere Journalisten verletzthttps://www.rfc1437.de/2003/04/08/medien-hotel-getroffen-mehrere-journalisten-vrltzt/Microsofts Leitfaden gegen Linuxhttps://www.rfc1437.de/2003/04/08/microsofts-leitfaden-gegen-linux/Minolta Announce Dimage Scan Elite 5400https://www.rfc1437.de/2003/04/08/minolta-announce-dimage-scan-elite-5400/Sensationsfund: Steinzeitdolch am Bodensee ausgegrabenhttps://www.rfc1437.de/2003/04/08/sensationsfund-steinzeitdolch-am-bodensee-ausggrbn/US-Verteidigungsministerium unterstützt OpenBSDhttps://www.rfc1437.de/2003/04/08/us-verteidigungsministerium-unterstuetzt-openbsd/BBC: US-Bomben auf eigene Truppenhttps://www.rfc1437.de/2003/04/06/bbc-us-bomben-auf-eigene-truppen/Merkel: Einen Monat kein Geld für Arbeitslosehttps://www.rfc1437.de/2003/04/06/merkel-einen-monat-kein-geld-fuer-arbeitslose/OpenXP: From Shareware to Free Softwarehttps://www.rfc1437.de/2003/04/06/openxp-from-shareware-to-free-software/Schlägt dem Gorilla bald die letzte Stunde?https://www.rfc1437.de/2003/04/06/schlaegt-dem-gorilla-bald-die-letzte-stunde/72 Prozent für Rüttgershttps://www.rfc1437.de/2003/04/05/72-prozent-fuer-ruettgers/Georg W. Bushs Morgenlektürehttps://www.rfc1437.de/2003/04/05/georg-w-bushs-morgenlektuere/George Lakoff: Metaphor and War, Againhttps://www.rfc1437.de/2003/04/05/george-lakoff-metaphor-and-war-again/Politikersprache in Kriegszeitenhttps://www.rfc1437.de/2003/04/05/politikersprache-in-kriegszeiten/Anti-war slogan coined, repurposed and Googlewashed... in 42 dayshttps://www.rfc1437.de/2003/04/04/anti-war-slogan-coined-reprpsd-nd-gglwshd-n-42-dys/Riesiger Kalmar vor der Antarktis gefangenhttps://www.rfc1437.de/2003/04/04/riesiger-kalmar-vor-der-antarktis-gefangen/Ähhhh....https://www.rfc1437.de/2003/04/03/aehhhh/Elefanten können ganz schön rennenhttps://www.rfc1437.de/2003/04/03/elefanten-koennen-ganz-schoen-rennen/Microsoft patent on "probabilistic classiffiers"https://www.rfc1437.de/2003/04/03/microsoft-patent-on-probabilistic-classiffiers/Olympus Stylus 400/300 Digital Reviewshttps://www.rfc1437.de/2003/04/03/olympus-stylus-400300-digital-reviews/Peter Arnett and treason.https://www.rfc1437.de/2003/04/03/peter-arnett-and-treason/Photoshop im Krieghttps://www.rfc1437.de/2003/04/03/photoshop-im-krieg/Belgien entschärft Völkermord-Gesetzhttps://www.rfc1437.de/2003/04/02/belgien-entschaerft-voelkermord-gesetz/Betriebe sollen leichter ausbilden könnenhttps://www.rfc1437.de/2003/04/02/betriebe-sollen-leichter-ausbilden-koennen/Kieler Landtag erhöht Diäten um fast 50 Prozenthttps://www.rfc1437.de/2003/04/02/kieler-landtag-erhoeht-diaeten-um-fast-50-prozent/Möllemann: Bush gehört vor ein Tribunalhttps://www.rfc1437.de/2003/04/02/moellemann-bush-gehoert-vor-ein-tribunal/Rot-Grün einigt sich auf neuen Terroristenparagrafenhttps://www.rfc1437.de/2003/04/02/rot-gruen-einigt-sich-auf-neuen-terroristenpargrfn/Sony ordered to pay $25m in patent claimhttps://www.rfc1437.de/2003/04/02/sony-ordered-to-pay-25m-in-patent-claim/Hat Merkel was mit "merken" zu tun?https://www.rfc1437.de/2003/04/01/hat-merkel-was-mit-merken-zu-tun/Neue QuickTime-Versionhttps://www.rfc1437.de/2003/04/01/neue-quicktime-version/NewCode, a secure PLhttps://www.rfc1437.de/2003/04/01/newcode-a-secure-pl/Polaroid 600 SE komplettierthttps://www.rfc1437.de/2003/04/01/polaroid-600-se-komplettiert/Serienproduktion für IBMs "Universal Business Adapter"https://www.rfc1437.de/2003/04/01/serienproduktion-fuer-ibms-universal-business-dptr/US-Sonderberater schmiedet Nachkriegsplänehttps://www.rfc1437.de/2003/04/01/us-sonderberater-schmiedet-nachkriegsplaene/USA rügen Behandlung religiöser Minderheiten in Deutschlandhttps://www.rfc1437.de/2003/04/01/usa-ruegen-behandlung-religiosr-mndrhtn-n-dtschlnd/Whitespacehttps://www.rfc1437.de/2003/04/01/whitespace/Yahoo! Store Switches Back to Lisphttps://www.rfc1437.de/2003/04/01/yahoo-store-switches-back-to-lisp/Die US-Armee und die Pressehttps://www.rfc1437.de/2003/03/31/die-us-armee-und-die-presse/Maher (Mike) Hawashhttps://www.rfc1437.de/2003/03/31/maher-mike-hawash/Peter Arnett fällt in Ungnadehttps://www.rfc1437.de/2003/03/31/peter-arnett-faellt-in-ungnade/Was man nicht mit Debian-Linux machen sollte ...https://www.rfc1437.de/2003/03/31/was-man-nicht-mit-debian-linux-machen-sollte/Kritik an Rumsfeld aus eigenen Reihenhttps://www.rfc1437.de/2003/03/30/kritik-an-rumsfeld-aus-eigenen-reihen/Explosion, Said to Be From Missile, Empty Mall in Kuwaithttps://www.rfc1437.de/2003/03/29/explosion-said-to-be-from-missile-empty-mall-n-kwt/http://www.tacitus[...]chives/000572.htmlhttps://www.rfc1437.de/2003/03/29/httpwwwtacitusorgarchives000572html/Möllemann erneut vor Gerichthttps://www.rfc1437.de/2003/03/29/moellemann-erneut-vor-gericht/Robb on the Bush Doctrinehttps://www.rfc1437.de/2003/03/29/robb-on-the-bush-doctrine/USA werfen Syrien Unterstützung des Irak vorhttps://www.rfc1437.de/2003/03/29/usa-werfen-syrien-unterstuetzung-des-irak-vor/Wegen Irak-Krieg: Arzt behandelt keine Amerikanerhttps://www.rfc1437.de/2003/03/29/wegen-irak-krieg-arzt-behandelt-keine-amerikaner/Alles ist relativhttps://www.rfc1437.de/2003/03/28/alles-ist-relativ/Java, oder wie es dazu kamhttps://www.rfc1437.de/2003/03/28/java-oder-wie-es-dazu-kam/Krankenkasse schwärzt Ärzte bei Firmen anhttps://www.rfc1437.de/2003/03/28/krankenkasse-schwaerzt-aerzte-bei-firmen-an/Merkel will Kinderlosen die Rente kürzenhttps://www.rfc1437.de/2003/03/28/merkel-will-kinderlosen-die-rente-kuerzen/Meteorit schlug in Haus einhttps://www.rfc1437.de/2003/03/28/meteorit-schlug-in-haus-ein/Patriotische Idioten unterbrechen Museum Security Mailinglisthttps://www.rfc1437.de/2003/03/28/patriotische-idioten-unterbrechn-msm-scrty-mlnglst/Rau: Nicht auf US-Linie eingehenhttps://www.rfc1437.de/2003/03/28/rau-nicht-auf-us-linie-eingehen/Schlangenfraßhttps://www.rfc1437.de/2003/03/28/schlangenfraszlig/Stop(ped) making sensehttps://www.rfc1437.de/2003/03/28/stopped-making-sense/US-Parlament fordert Gebetstag für die Nationhttps://www.rfc1437.de/2003/03/28/us-parlament-fordert-gebetstag-fuer-die-nation/EU: Schweröl nicht mehr in Einhüllentankernhttps://www.rfc1437.de/2003/03/27/eu-schweroel-nicht-mehr-in-einhuellentankern/France boycott to extend to cellphone standards?https://www.rfc1437.de/2003/03/27/france-boycott-to-extend-to-cellphone-standards/Kein Patch für RPC-Sicherheitsloch bei Windows NThttps://www.rfc1437.de/2003/03/27/kein-patch-fuer-rpc-sicherheitsloch-bei-windows-nt/Lispworks Beta for OS Xhttps://www.rfc1437.de/2003/03/27/lispworks-beta-for-os-x/Mal wieder was in eigener Sache: Trackbackhttps://www.rfc1437.de/2003/03/27/mal-wieder-was-in-eigener-sache-trackback/Panorama ruleshttps://www.rfc1437.de/2003/03/27/panorama-rules-2/To cool for secure codehttps://www.rfc1437.de/2003/03/27/to-cool-for-secure-code/Wirbel um Website von Al Jazeerahttps://www.rfc1437.de/2003/03/27/wirbel-um-website-von-al-jazeera/Esser kann auf Schmerzensgeld hoffenhttps://www.rfc1437.de/2003/03/26/esser-kann-auf-schmerzensgeld-hoffen/Klauen Klauen Klauenhttps://www.rfc1437.de/2003/03/26/klauen-klauen-klauen/McDonald's-Rubbellos ist sittenwidrighttps://www.rfc1437.de/2003/03/26/mcdonalds-rubbellos-ist-sittenwidrig/Perl, pythonhttps://www.rfc1437.de/2003/03/26/perl-python/Schröder will Bundeswehr stärkenhttps://www.rfc1437.de/2003/03/26/schroeder-will-bundeswehr-staerken/Seilschaftenhttps://www.rfc1437.de/2003/03/26/seilschaften/soksoksoksokhttps://www.rfc1437.de/2003/03/26/soksoksoksok/Britische Sender verbannen düstere Songshttps://www.rfc1437.de/2003/03/25/britische-sender-verbannen-duestere-songs/Das letzte Lied der Sirenenhttps://www.rfc1437.de/2003/03/25/das-letzte-lied-der-sirenen/Kritik an Polizeieinsatz gegen Schülerdemohttps://www.rfc1437.de/2003/03/25/kritik-an-polizeieinsatz-gegen-schuelerdemo/Neue Käferfamiliehttps://www.rfc1437.de/2003/03/25/neue-kaeferfamilie/Artifactinghttps://www.rfc1437.de/2003/03/24/artifacting/CDU vermeidet eindeutige Position zu Irak-Krieghttps://www.rfc1437.de/2003/03/24/cdu-vermeidet-eindeutige-position-zu-irak-krieg/"Dank sei Gott für den Tod der UN"https://www.rfc1437.de/2003/03/24/dank-sei-gott-fuer-den-tod-der-un/Finally! FULL review of Kodak DCS Pro 14nhttps://www.rfc1437.de/2003/03/24/finally-full-review-of-kodak-dcs-pro-14n/It''s Krieg, Babyhttps://www.rfc1437.de/2003/03/24/its-krieg-baby/Monday 24 March XML-RPC : Add a pointer to XML-RPC for OpenMCLhttps://www.rfc1437.de/2003/03/24/monday-24-mrch-xml-rpc-dd-pntr-t-xml-rpc-fr-pnmcl/Moore blasts Bushhttps://www.rfc1437.de/2003/03/24/moore-blasts-bush/Britische Reporter-Legende vermutlich von US-Marines erschossenhttps://www.rfc1437.de/2003/03/23/britische-reporter-legnd-vrmtlch-vn-s-mrns-rschssn/Die Vertreibung der Tiere aus dem Himmelreichhttps://www.rfc1437.de/2003/03/23/die-vertreibung-der-tiere-aus-dem-himmelreich/Intelligente Bomben?https://www.rfc1437.de/2003/03/23/intelligente-bomben/Kommentar: Der erste gefährliche Linux-Virus kommthttps://www.rfc1437.de/2003/03/23/kommentar-der-erste-gefaehrliche-linux-virus-kommt/Die Tuckesburghttps://www.rfc1437.de/2003/03/23/pic-die-tuckesburg/The Future Of XFree86https://www.rfc1437.de/2003/03/23/the-future-of-xfree86/Zweierlei Masshttps://www.rfc1437.de/2003/03/23/zweierlei-mass/Bruhaha!https://www.rfc1437.de/2003/03/22/bruhaha/CSU-Vorstand einig über Sozialrefomenhttps://www.rfc1437.de/2003/03/22/csu-vorstand-einig-ueber-sozialrefomen/Leben ohne Micro$oft ///https://www.rfc1437.de/2003/03/22/leben-ohne-microoft/Luminous Landscape hat einen kurzen Vergleichstest Canon 1Ds gegen Kodak DCS 14nhttps://www.rfc1437.de/2003/03/22/lmns-lndscp-ht-nn-krzn-vrglchstst-cnn-1ds-ggn-kdk/Siebenmeilenstiefel mit Verbrennungsmotorhttps://www.rfc1437.de/2003/03/22/siebenmeilenstiefel-mit-verbrennungsmotor/Un-CDs, nein danke!https://www.rfc1437.de/2003/03/22/un-cds-nein-danke/Weblog-Artikelhttps://www.rfc1437.de/2003/03/22/weblog-artikel/Comparing Bush to Hitlerhttps://www.rfc1437.de/2003/03/21/comparing-bush-to-hitler/Kulturschätze im Irak bedrohthttps://www.rfc1437.de/2003/03/21/kulturschaetze-im-irak-bedroht/Mitschweigen für den Friedenhttps://www.rfc1437.de/2003/03/21/mitschweigen-fuer-den-frieden/Brief von Moore an Bushhttps://www.rfc1437.de/2003/03/20/brief-von-moore-an-bush/Byrd: I Weep for My Countryhttps://www.rfc1437.de/2003/03/20/byrd-i-weep-for-my-country/Herta for Präsidenthttps://www.rfc1437.de/2003/03/20/herta-for-praesident/Schülerdemos - mit Nachsitzen?https://www.rfc1437.de/2003/03/20/schuelerdemos-mit-nachsitzen/Streit um Überflugrechte für US-Streitkräftehttps://www.rfc1437.de/2003/03/20/streit-um-ueberflugrechte-fuer-us-streitkraefte/Und gleich noch ein Gedicht.https://www.rfc1437.de/2003/03/20/und-gleich-noch-ein-gedicht/Und schon wieder ...https://www.rfc1437.de/2003/03/20/und-schon-wieder/Behaarte Alpenrose mit Froschgenhttps://www.rfc1437.de/2003/03/19/behaarte-alpenrose-mit-froschgen/Juristische Schlappe für 0190-Inkasso der Telekomhttps://www.rfc1437.de/2003/03/19/juristische-schlappe-fuer-0190-inkasso-der-telekom/Lauschangriff auf EU-Büroshttps://www.rfc1437.de/2003/03/19/lauschangriff-auf-eu-bueros/Python Desktop Server 0.4.17https://www.rfc1437.de/2003/03/19/python-desktop-server-0417/Seehofer droht im Unionsstreit mit Rücktritthttps://www.rfc1437.de/2003/03/19/seehofer-droht-im-unionsstreit-mit-ruecktritt/Clement plant drakonische Strafen für Arbeitslosehttps://www.rfc1437.de/2003/03/18/clement-plant-drakonische-strafen-fuer-arbeitslose/Landgericht: Spam nicht unbedingt rechtswidrighttps://www.rfc1437.de/2003/03/18/landgericht-spam-nicht-unbedingt-rechtswidrig/Mac User Against Warhttps://www.rfc1437.de/2003/03/18/mac-user-against-war/NPD-Verbot gescheiterthttps://www.rfc1437.de/2003/03/18/npd-verbot-gescheitert/Rücktrittsrede von Cookhttps://www.rfc1437.de/2003/03/18/ruecktrittsrede-von-cook/Screamerhttps://www.rfc1437.de/2003/03/18/screamer/Trusted Debian 0.9https://www.rfc1437.de/2003/03/18/trusted-debian-09/Web-Demonstration gegen den Krieghttps://www.rfc1437.de/2003/03/18/web-demonstration-gegen-den-krieg/May the best team losehttps://www.rfc1437.de/2003/03/17/may-the-best-team-lose/Meyer rüffelt Stoiberhttps://www.rfc1437.de/2003/03/17/meyer-rueffelt-stoiber/Möllemann gibt Parteibuch zurückhttps://www.rfc1437.de/2003/03/17/moellemann-gibt-parteibuch-zurueck/"Virtuelle" Sternwarte entdeckt Braunen Zwerghttps://www.rfc1437.de/2003/03/16/virtuelle-sternwarte-entdeckt-braunen-zwerg/Falschmeldunghttps://www.rfc1437.de/2003/03/15/falschmeldung/Krieg dem Krieghttps://www.rfc1437.de/2003/03/15/krieg-dem-krieg/Beitrag ohne Titelhttps://www.rfc1437.de/2003/03/15/p511/Schröders Rede - ein gut getarnter Offenbarungseidhttps://www.rfc1437.de/2003/03/15/schroeders-rede-ein-gut-getarnter-offenbarungseid/Tatsuya Satohttps://www.rfc1437.de/2003/03/15/tatsuya-sato/Wenn kommerzielle Spambekämpfer spammen um Spamschutz zu verspammenkaufen.https://www.rfc1437.de/2003/03/15/wnn-kmmrzll-spmbkmpfr-spmmn-m-spmschtz-z-vrsspmmns/5. Etappe geht an Team Telekomhttps://www.rfc1437.de/2003/03/14/5-etappe-geht-an-team-telekom/Bilder vom Frühlinghttps://www.rfc1437.de/2003/03/14/bilder-vom-fruehling/miniSDhttps://www.rfc1437.de/2003/03/14/minisd/"Morgenandacht" auf der CeBIT: "Go a-head, go a-head, Te-le-kom"https://www.rfc1437.de/2003/03/14/morgenandacht-auf-der-cebit-go-a-head-g-hd-t-l-km/Überbleibsel aus dem Herbsthttps://www.rfc1437.de/2003/03/14/pic-ueberbleibsel-aus-dem-herbst/Und ein letzteshttps://www.rfc1437.de/2003/03/14/pic-und-ein-letztes/Und noch ein paarhttps://www.rfc1437.de/2003/03/14/pic-und-noch-ein-paar/Und noch mehr ...https://www.rfc1437.de/2003/03/14/pic-und-noch-mehr/Weidenkätzchenhttps://www.rfc1437.de/2003/03/14/pic-weidenkaetzchen/Wir in Hessenhttps://www.rfc1437.de/2003/03/14/wir-in-hessen/America the gulliblehttps://www.rfc1437.de/2003/03/13/america-the-gullible/Apple X11 anpassen 1https://www.rfc1437.de/2003/03/13/apple-x11-anpassen-1/Möllemann will in der FDP bleibenhttps://www.rfc1437.de/2003/03/13/moellemann-will-in-der-fdp-bleiben/Monitorbericht über amerikanische Diplomatiehttps://www.rfc1437.de/2003/03/13/monitorbericht-ueber-amerikanische-emdiplomatieem/Der Domhttps://www.rfc1437.de/2003/03/13/pic-der-dom/Erste Frühlingszeichenhttps://www.rfc1437.de/2003/03/13/pic-erste-fruehlingszeichen/Josefskirche, Kirchturmhttps://www.rfc1437.de/2003/03/13/pic-josefskirche-kirchturm/Noch mehr Kirchehttps://www.rfc1437.de/2003/03/13/pic-noch-mehr-kirche/Clutterhttps://www.rfc1437.de/2003/03/12/clutter/Gedenkfahrt für gestorbenen Radprofi Kiwilewhttps://www.rfc1437.de/2003/03/12/gedenkfahrt-fuer-gestorbenen-radprofi-kiwilew/Java 1.4.1https://www.rfc1437.de/2003/03/12/java-141/Königin Beatrix droht Strafanzeigehttps://www.rfc1437.de/2003/03/12/koenigin-beatrix-droht-strafanzeige/Pommeshttps://www.rfc1437.de/2003/03/12/pommes/Ausschnitt aus einem Kommentar von Bush Sr. an Bush Jr.https://www.rfc1437.de/2003/03/11/ausschnitt-aus-einem-kommentar-von-bsh-sr-n-bsh-jr/Friedensappelle zu Irak verbotenhttps://www.rfc1437.de/2003/03/11/friedensappelle-zu-irak-verboten/Kein Krieg in unserem Namen!https://www.rfc1437.de/2003/03/11/kein-krieg-in-unserem-namen/Neues Ausschlussverfahren gegen Möllemannhttps://www.rfc1437.de/2003/03/11/neues-ausschlussverfahren-gegen-moellemann/Nigeria-Connectionhttps://www.rfc1437.de/2003/03/11/nigeria-connection/Schiefhttps://www.rfc1437.de/2003/03/11/pic-schief/Weide am Teichhttps://www.rfc1437.de/2003/03/11/pic-weide-am-teich/PyDBC 0.2https://www.rfc1437.de/2003/03/11/pydbc-02/Weltgericht nimmt Arbeit aufhttps://www.rfc1437.de/2003/03/11/weltgericht-nimmt-arbeit-auf/Anleitung um einen anonymen CVS Server mit Debian zu bauenhttps://www.rfc1437.de/2003/03/10/anleitung-um-einen-anonymen-cvs-server-mt-dbn-z-bn/Ari Fleischer admits Bush called from a prepared list of reportershttps://www.rfc1437.de/2003/03/10/ari-fleischr-dmts-bsh-clld-frm-prprd-lst-f-rprtrs/Bush und die Wahrheit ...https://www.rfc1437.de/2003/03/10/bush-und-die-wahrheit/Möllemann will doch im Bundestag bleibenhttps://www.rfc1437.de/2003/03/10/moellemann-will-doch-im-bundestag-bleiben/All Crazy on the Western Front:https://www.rfc1437.de/2003/03/09/all-crazy-on-the-western-front/Britische Regierung vor der Zerreißprobehttps://www.rfc1437.de/2003/03/09/britische-regierung-vor-der-zerreissprobe/juwr-20030309-011.jpghttps://www.rfc1437.de/2003/03/09/juwr-20030309-011jpg/Happy-Hour für Fachhändlerhttps://www.rfc1437.de/2003/03/08/happy-hour-fuer-fachhaendler/Roogle - RSS Feed Suchmaschinehttps://www.rfc1437.de/2003/03/08/roogle-rss-feed-suchmaschine/Eric Raymond zur Klage von SCO gegen IBMhttps://www.rfc1437.de/2003/03/07/eric-raymond-zur-klage-von-sco-gegen-ibm/Erster Saisonerfolg für Erik Zabelhttps://www.rfc1437.de/2003/03/07/erster-saisonerfolg-fuer-erik-zabel/Make no mistakehttps://www.rfc1437.de/2003/03/07/make-no-mistake/Online-Datenbank informiert über kontaktallergenes Potenzial von Chemikalienhttps://www.rfc1437.de/2003/03/07/onlin-dtnbnk-nfrmrt-br-kntktllrgns-ptnzl-vn-chmkln/Kulthttps://www.rfc1437.de/2003/03/07/pic-kult/Ranchero releases XML-RPC client for MacOShttps://www.rfc1437.de/2003/03/07/ranchero-releases-xml-rpc-client-for-macos/Westerwelles Raketenhttps://www.rfc1437.de/2003/03/07/westerwelles-raketen/Möllemann kehrt zurück - in Bayernhttps://www.rfc1437.de/2003/03/06/moellemann-kehrt-zurueck-in-bayern/Und schon wieder Moosbuschelhttps://www.rfc1437.de/2003/03/06/pic-und-schon-wieder-moosbuschel/Terry Jones on the Warhttps://www.rfc1437.de/2003/03/06/terry-jones-on-the-war/Adobe verscherbelt lllustrator 10https://www.rfc1437.de/2003/03/05/adobe-verscherbelt-lllustrator-10/Gericht untersagt den Versand von SMS-Spamhttps://www.rfc1437.de/2003/03/05/gericht-untersagt-den-versand-von-sms-spam/Jäger bedrohen die letzten Luchsehttps://www.rfc1437.de/2003/03/05/jaeger-bedrohen-die-letzten-luchse/OpenOffice.org unter Mac OS X 10.2 installierenhttps://www.rfc1437.de/2003/03/05/openofficeorg-unter-mac-os-x-102-installieren/Zabel Zweiter bei Murcia-Rundfahrthttps://www.rfc1437.de/2003/03/05/zabel-zweiter-bei-murcia-rundfahrt/Caffeine Software Suspends Operationshttps://www.rfc1437.de/2003/03/04/caffeine-software-suspends-operations/Der erste Frühlinghttps://www.rfc1437.de/2003/03/04/der-erste-fruehling/Kleine grafische Linux-Workstation auf alter Hardwarehttps://www.rfc1437.de/2003/03/04/kleine-grafische-linux-workstation-auf-alter-hrdwr/Möllemann verstrickt in "Kirch-Affäre"?https://www.rfc1437.de/2003/03/04/moellemann-verstrickt-in-kirch-affaere/Olympus E System from the show floorhttps://www.rfc1437.de/2003/03/04/olympus-e-system-from-the-show-floor/Beitrag ohne Titelhttps://www.rfc1437.de/2003/03/04/p461/Und der erste Frühling ...https://www.rfc1437.de/2003/03/04/pic-und-der-erste-fruehling/Und wieder mal ein Moosbuschel ...https://www.rfc1437.de/2003/03/04/pic-und-wieder-mal-ein-moosbuschel/Protesthttps://www.rfc1437.de/2003/03/04/protest/Immer noch beim neu Einrichten der Plattehttps://www.rfc1437.de/2003/03/03/immer-noch-beim-neu-einrichten-der-platte/Glub Gola-Gefühlehttps://www.rfc1437.de/2003/03/02/glub-gola-gefuehle/Minolta DiMAGE Xthttps://www.rfc1437.de/2003/03/02/minolta-dimage-xt/OS X 10.2 upgrade - all software suckshttps://www.rfc1437.de/2003/03/02/os-x-102-upgrade-all-software-sucks/OS X Upgrades machen Spass - Not!https://www.rfc1437.de/2003/03/02/os-x-upgrades-machen-spass-not/secret documenthttps://www.rfc1437.de/2003/03/02/secret-document/Entwicklungsumgebunghttps://www.rfc1437.de/2003/03/01/entwicklungsumgebung/Gewerkschaftsstreit: Westerwelle legt nachhttps://www.rfc1437.de/2003/03/01/gewerkschaftsstreit-westerwelle-legt-nach/Is This Thing On?https://www.rfc1437.de/2003/03/01/is-this-thing-on/Leica mit neuer alter Kamerahttps://www.rfc1437.de/2003/03/01/leica-mit-neuer-alter-kamera/Microsoft: We Have No Plans To Remove Linux Support From Virtual PC For Machttps://www.rfc1437.de/2003/03/01/mcrsft-w-hv-n-plns-t-rmv-lnx-spprt-frm-vrtl-pc-fr/Neue Nisus Writer OS X Version unterwegshttps://www.rfc1437.de/2003/03/01/neue-nisus-writer-os-x-version-unterwegs/Scheissfrühlinghttps://www.rfc1437.de/2003/03/01/scheissfruehling/Ari Fleischer Laughed Out of White House Press Briefinghttps://www.rfc1437.de/2003/02/28/ari-fleischer-laughed-out-of-white-hous-prss-brfng/Bill Gates wettert in Japan gegen Open Sourcehttps://www.rfc1437.de/2003/02/28/bill-gates-wettert-in-japan-gegen-open-source/Buchstabensalathttps://www.rfc1437.de/2003/02/28/buchstabensalat/OpenOffice verwirrt die BSAhttps://www.rfc1437.de/2003/02/28/openoffice-verwirrt-die-bsa/Amazon No!https://www.rfc1437.de/2003/02/27/amazon-no/Bibliothek, die niemals schließthttps://www.rfc1437.de/2003/02/27/bibliothek-die-niemals-schliesst/Clean Now Available under LGPL Licensehttps://www.rfc1437.de/2003/02/27/clean-now-available-under-lgpl-license/Einstellung von NPD-Verbotverfahren erwartethttps://www.rfc1437.de/2003/02/27/einstellung-von-npd-verbotverfahren-erwartet/Google erhält Patent für Ranking-Technikhttps://www.rfc1437.de/2003/02/27/google-erhaelt-patent-fuer-ranking-technik/Now there's a USB hot cup?https://www.rfc1437.de/2003/02/27/now-theres-a-usb-hot-cup/Pentax *ist Dhttps://www.rfc1437.de/2003/02/27/pentax-ist-d/Brücken schlagen ...https://www.rfc1437.de/2003/02/27/pic-bruecken-schlagen/Noch ist er vereist.https://www.rfc1437.de/2003/02/27/pic-noch-ist-er-vereist/Tierbabys ...https://www.rfc1437.de/2003/02/27/pic-tierbabys/Wilder Wald.https://www.rfc1437.de/2003/02/27/pic-wilder-wald/Schlechte Zeiten für künftige Azubishttps://www.rfc1437.de/2003/02/27/schlechte-zeiten-fuer-kuenftige-azubis/US-Justiz besetzt Domain-Namenhttps://www.rfc1437.de/2003/02/27/us-justiz-besetzt-domain-namen/Weltraum-Veteran "Pioneer 10" ist verstummthttps://www.rfc1437.de/2003/02/27/weltraum-veteran-pioneer-10-ist-verstummt/Zuwachs bei der Kamerasammlunghttps://www.rfc1437.de/2003/02/27/zuwachs-bei-der-kamerasammlung/Ultranationalisten in israelischer Regierunghttps://www.rfc1437.de/2003/02/26/ultranationalisten-in-israelischer-regierung/Canon's new digital SLRhttps://www.rfc1437.de/2003/02/25/canons-new-digital-slr/Union fordert Nationalgardehttps://www.rfc1437.de/2003/02/25/union-fordert-nationalgarde/Yahoo schreibt Lisp-Code um in C++https://www.rfc1437.de/2003/02/25/yahoo-schreibt-lisp-code-um-in-c/Zurück ins Mittelalterhttps://www.rfc1437.de/2003/02/25/zurueck-ins-mittelalter/Akte-X - das Endehttps://www.rfc1437.de/2003/02/24/akte-x-das-ende/Deutsche Bank ist Kreditrisiken leidhttps://www.rfc1437.de/2003/02/24/deutsche-bank-ist-kreditrisiken-leid/First Ogg Vorbis playerhttps://www.rfc1437.de/2003/02/24/first-ogg-vorbis-player/Bank will keine Diskussion über Sicherheitssystemhttps://www.rfc1437.de/2003/02/23/bank-will-keine-diskussion-ueber-sicherheitssystem/Der Mann, der die Zeit anhielthttps://www.rfc1437.de/2003/02/23/der-mann-der-die-zeit-anhielt/Neue IO Versionhttps://www.rfc1437.de/2003/02/23/neue-io-version/02.22.03, 20:22 Uhr - Wetten dass ... (II)https://www.rfc1437.de/2003/02/22/022203-2022-uhr-wetten-dass-ii/Bastelkurs für Mac-Anwenderhttps://www.rfc1437.de/2003/02/22/bastelkurs-fuer-mac-anwender/Legodayhttps://www.rfc1437.de/2003/02/22/legoday/Script Identifier 0.0.1https://www.rfc1437.de/2003/02/22/script-identifier-001/Gericht macht "Körperwelten" den Weg freihttps://www.rfc1437.de/2003/02/21/gericht-macht-koerperwelten-den-weg-frei/How many parents call their baby "it?"https://www.rfc1437.de/2003/02/21/how-many-parents-call-their-baby-it/MobiliX heißt jetzt TuxMobilhttps://www.rfc1437.de/2003/02/21/mobilix-heisst-jetzt-tuxmobil/Sample FinePix F700 Images at DPReviewhttps://www.rfc1437.de/2003/02/21/sample-finepix-f700-images-at-dpreview/20.02.2003 - 20:28: TV-Tipphttps://www.rfc1437.de/2003/02/20/20022003-2028-tv-tipp/Banks attempt to cover up worst PIN vulnerability yethttps://www.rfc1437.de/2003/02/20/banks-attempt-to-cover-up-worst-pin-vulnerablty-yt/Diskussion um Folter-Drohungen entbrannthttps://www.rfc1437.de/2003/02/20/diskussion-um-folter-drohungen-entbrannt/History of (Personal-) Computinghttps://www.rfc1437.de/2003/02/20/history-of-personal-computing/Weniger Belege bei elektronischer Steuererklärunghttps://www.rfc1437.de/2003/02/20/weniger-belege-bei-elektronischer-steuererklaerung/A Windows Flashbackhttps://www.rfc1437.de/2003/02/19/a-windows-flashback/Grüne kratzen am Kündigungsschutzhttps://www.rfc1437.de/2003/02/19/gruene-kratzen-am-kuendigungsschutz/Hacker knacken Millionen Kreditkarten-Kontenhttps://www.rfc1437.de/2003/02/19/hacker-knacken-millionen-kreditkarten-konten/Is Microsoft engaging in a little domain name squatting?https://www.rfc1437.de/2003/02/19/is-microsoft-engaging-in-a-little-domain-nm-sqttng/USA: Irak soll Wiederaufbau "selbst schultern"https://www.rfc1437.de/2003/02/19/usa-irak-soll-wiederaufbau-selbst-schultern/Desktop Crayhttps://www.rfc1437.de/2003/02/18/desktop-cray/Nikon Coolpix SQ - Quick Previewhttps://www.rfc1437.de/2003/02/18/nikon-coolpix-sq-quick-preview/Noch mehr Wasser unter der Marsoberflächehttps://www.rfc1437.de/2003/02/18/noch-mehr-wasser-unter-der-marsoberflaumlche/Und noch mal, weils so schön isthttps://www.rfc1437.de/2003/02/18/pic-und-noch-mal-weils-so-schoen-ist/Wenn am Abend im Hafen ...https://www.rfc1437.de/2003/02/18/pic-wenn-am-abend-im-hafen/TV-Tiphttps://www.rfc1437.de/2003/02/18/tv-tip/02.17.03, 18:14 Uhr - Das ist der Herr Buschhttps://www.rfc1437.de/2003/02/17/021703-1814-uhr-das-ist-der-herr-busch/Fotospaziergang am Dortmund-Ems-Kanalhttps://www.rfc1437.de/2003/02/17/fotospaziergang-am-dortmund-ems-kanal/iPhoto hat doofe Ohrenhttps://www.rfc1437.de/2003/02/17/iphoto-hat-doofe-ohren/Keine Lotto-Million mit "Strickmuster-Tipp"https://www.rfc1437.de/2003/02/17/keine-lotto-million-mit-strickmuster-tipp/Kleinster gemeinsamer Nennerhttps://www.rfc1437.de/2003/02/17/kleinster-gemeinsamer-nenner/Microsoft in Second Deal to Sell Phone Softwarehttps://www.rfc1437.de/2003/02/17/microsoft-in-second-deal-to-sell-phone-software/Der war wirklich so kitschig!https://www.rfc1437.de/2003/02/17/pic-der-war-wirklich-so-kitschig/Grün wärs ja schöner ...https://www.rfc1437.de/2003/02/17/pic-gruen-waers-ja-schoener/Man könnte fast Fernweh kriegen ...https://www.rfc1437.de/2003/02/17/pic-man-koennte-fast-fernweh-kriegen/Ok, noch ein paar Farbtupferhttps://www.rfc1437.de/2003/02/17/pic-ok-noch-ein-paar-farbtupfer/Wenn der einzige Farbtupfer ...https://www.rfc1437.de/2003/02/17/pic-wenn-der-einzige-farbtupfer/Wetterphänomene hautnahhttps://www.rfc1437.de/2003/02/17/pic-wetterphaenomene-hautnah/Apple's global pricing policy. Utter cobblershttps://www.rfc1437.de/2003/02/16/apples-global-pricing-policy-utter-cobblers/Gaelic is dyinghttps://www.rfc1437.de/2003/02/16/gaelic-is-dying/Ring Around the Earthhttps://www.rfc1437.de/2003/02/16/ring-around-the-earth/Spielerei am Sonntaghttps://www.rfc1437.de/2003/02/16/spielerei-am-sonntag/Weatherhttps://www.rfc1437.de/2003/02/16/weather/Die Rede des US Senators Robert Byrd vor dem Senathttps://www.rfc1437.de/2003/02/15/die-rede-des-us-senators-robert-byrd-vor-dem-senat/Kate Bush - All albumshttps://www.rfc1437.de/2003/02/15/kate-bush-all-albums/Mehrere Millionen Menschen demonstrieren in Spanien gegen den Krieghttps://www.rfc1437.de/2003/02/15/mehrere-millionn-mnschn-dmnstrrn-n-spnn-ggn-dn-krg/Moosbuschelhttps://www.rfc1437.de/2003/02/15/pic-moosbuschel/Designing Reusable Classes (PDF)https://www.rfc1437.de/2003/02/14/designing-reusable-classes-pdf/Geistervertreibunghttps://www.rfc1437.de/2003/02/14/geistervertreibung/Google, google, noch einmalhttps://www.rfc1437.de/2003/02/14/google-google-noch-einmal/Keith Haring-Ausstellung in Hamburg eröffnethttps://www.rfc1437.de/2003/02/14/keith-haring-ausstellung-in-hamburg-eroeffnet/Frühling? Frost!https://www.rfc1437.de/2003/02/14/pic-fruehling-frost/Bilderblog als Ergänzung zum Fotobloghttps://www.rfc1437.de/2003/02/13/bilderblog-als-ergaenzung-zum-fotoblog/Chimera needs a new namehttps://www.rfc1437.de/2003/02/13/chimera-needs-a-new-name/Beitrag ohne Titelhttps://www.rfc1437.de/2003/02/13/p376/Fernweh ...https://www.rfc1437.de/2003/02/13/pic-fernweh/Schon wieder die Wertschöpfungskettehttps://www.rfc1437.de/2003/02/13/schon-wieder-die-wertschoepfungskette/Apache vs. Yawshttps://www.rfc1437.de/2003/02/12/apache-vs-yaws/Ist Stonehenge ein "Steinhenge"?https://www.rfc1437.de/2003/02/12/ist-stonehenge-ein-steinhenge/FDP-Fraktion schmeißt Möllemann raushttps://www.rfc1437.de/2003/02/11/fdp-fraktion-schmeisst-moellemann-raus/PerlPad 0.1https://www.rfc1437.de/2003/02/11/perlpad-01/Erster Nachteil von OpenZaurushttps://www.rfc1437.de/2003/02/10/erster-nachteil-von-openzaurus/Montag, 10.02.2003: Ich mach jetzt auch mit! :)https://www.rfc1437.de/2003/02/10/montag-10022003-ich-mach-jetzt-auch-mit/neunzehn!https://www.rfc1437.de/2003/02/10/neunzehn/Otan?https://www.rfc1437.de/2003/02/10/otan/Why Sun is right that Java suckshttps://www.rfc1437.de/2003/02/10/why-sun-is-right-that-java-sucks/Zahnärzte bohren nur noch auf Rechnunghttps://www.rfc1437.de/2003/02/10/zahnaerzte-bohren-nur-noch-auf-rechnung/Nikon Uncoveredhttps://www.rfc1437.de/2003/02/09/nikon-uncovered/Tangled Up in Spamhttps://www.rfc1437.de/2003/02/09/tangled-up-in-spam/Zaurus auf OpenZaurus umstellenhttps://www.rfc1437.de/2003/02/09/zaurus-auf-openzaurus-umstellen/Constructing an efficient prime number detectorhttps://www.rfc1437.de/2003/02/08/constructing-an-efficient-prime-number-detector/In der Nachbarschafthttps://www.rfc1437.de/2003/02/08/in-der-nachbarschaft/Müntefering stellt sich beim Thema Kündigungsschutz querhttps://www.rfc1437.de/2003/02/08/muentefering-stellt-sich-beim-them-kndgngsschtz-qr/OpenSource-Compiler für C/C++ und Fortran freigegebenhttps://www.rfc1437.de/2003/02/08/opensource-compiler-fuer-cc-und-fortran-freigegebn/Zoll bietet indizierte DVD anhttps://www.rfc1437.de/2003/02/08/zoll-bietet-indizierte-dvd-an/8.0 alreadyhttps://www.rfc1437.de/2003/02/07/80-already/Gut unterrichtete Kreisehttps://www.rfc1437.de/2003/02/07/gut-unterrichtete-kreise/Letters to the Editorhttps://www.rfc1437.de/2003/02/07/letters-to-the-editor/Mal ein wirklich sinnloses Feature des Community Servershttps://www.rfc1437.de/2003/02/07/mal-ein-wirklich-sinnloses-feature-ds-cmmnty-srvrs/Neue Enthüllungen zum Ärztebetrug mit Totenhttps://www.rfc1437.de/2003/02/07/neue-enthuellungen-zum-aerztebetrug-mit-toten/Sie haben Posthttps://www.rfc1437.de/2003/02/07/sie-haben-post/Weblogsoftware bei anderenhttps://www.rfc1437.de/2003/02/07/weblogsoftware-bei-anderen/Aufruf zum Krieg ohne substanziell Neueshttps://www.rfc1437.de/2003/02/06/aufruf-zum-krieg-ohne-substanziell-neues/Beamte wollen sparen helfenhttps://www.rfc1437.de/2003/02/06/beamte-wollen-sparen-helfen/Blogging in der Sinnkrise?https://www.rfc1437.de/2003/02/06/blogging-in-der-sinnkrise/Dell verzichtet auf Diskettenlaufwerkehttps://www.rfc1437.de/2003/02/06/dell-verzichtet-auf-diskettenlaufwerke/GSM-Handys schädigen Nervenzellenhttps://www.rfc1437.de/2003/02/06/gsm-handys-schaedigen-nervenzellen/Mac OSX USB Beta drivershttps://www.rfc1437.de/2003/02/06/mac-osx-usb-beta-drivers/Wetterberichthttps://www.rfc1437.de/2003/02/06/wetterbericht/You really should try thishttps://www.rfc1437.de/2003/02/06/you-really-should-try-this/DSL-Treiber cFos jetzt mit Traffic-Shapinghttps://www.rfc1437.de/2003/02/05/dsl-treiber-cfos-jetzt-mit-traffic-shaping/Rechtsvertretung für Autoren freier Softwarehttps://www.rfc1437.de/2003/02/05/rechtsvertretung-fuer-autoren-freier-software/Nasa entließ angeblich kritische Beraterhttps://www.rfc1437.de/2003/02/04/nasa-entliess-angeblich-kritische-berater/Neues Spielzeug an Bordhttps://www.rfc1437.de/2003/02/04/neues-spielzeug-an-bord/NRW-FDP: Möllemann soll Mandat abgebenhttps://www.rfc1437.de/2003/02/04/nrw-fdp-moellemann-soll-mandat-abgeben/Schröder eiert weiterhttps://www.rfc1437.de/2003/02/04/schroeder-eiert-weiter/Totgesagthttps://www.rfc1437.de/2003/02/04/totgesagt/AppleScript iihttps://www.rfc1437.de/2003/02/03/applescript-ii/Die Stadtwerke haben doofe Ohrenhttps://www.rfc1437.de/2003/02/03/die-stadtwerke-haben-doofe-ohren/Einsamer Schütze ...https://www.rfc1437.de/2003/02/03/einsamer-schuetze/Endlichhttps://www.rfc1437.de/2003/02/03/endlich/Lange Risse am Shuttle-Flügel?https://www.rfc1437.de/2003/02/03/lange-risse-am-shuttle-fluegel/Tuesday 28 January Lisp as a shell : added "lush" and "scsh"https://www.rfc1437.de/2003/02/03/tuesday-28-january-lisp-as-a-shell-ddd-lsh-nd-scsh/"Columbia": Warnungen wurden ignorierthttps://www.rfc1437.de/2003/02/02/columbia-warnungen-wurden-ignoriert/Wahlen in Niedersachsen und Hessenhttps://www.rfc1437.de/2003/02/02/wahlen-in-niedersachsen-und-hessen/Aktuell auf Eins Livehttps://www.rfc1437.de/2003/02/01/aktuell-auf-eins-live/Beim Schockwellenreiter ist heute alles Bananehttps://www.rfc1437.de/2003/02/01/beim-schockwellenreiter-ist-heute-alles-banane/Beispielmakros für PyDShttps://www.rfc1437.de/2003/02/01/beispielmakros-fuer-pyds/Blitze produzieren auch Röntgenstrahlunghttps://www.rfc1437.de/2003/02/01/blitze-produzieren-auch-roentgenstrahlung/Deutliche Kürzung der Arbeitslosenhilfe und Jobpflicht für Jugendlichehttps://www.rfc1437.de/2003/02/01/deutlch-krzng-dr-rbtslsnhlf-nd-jbpflcht-fr-jgndlch/Lizenz zum Schröpfenhttps://www.rfc1437.de/2003/02/01/lizenz-zum-schroepfen/Musikindustrie zockt Kindergärten abhttps://www.rfc1437.de/2003/02/01/musikindustrie-zockt-kindergaerten-ab/PyObjC @ OReillyhttps://www.rfc1437.de/2003/02/01/pyobjc-oreilly/Blix widerspricht Bushhttps://www.rfc1437.de/2003/01/31/blix-widerspricht-bush/Deutsche dienen als Versuchskaninchenhttps://www.rfc1437.de/2003/01/31/deutsche-dienen-als-versuchskaninchen/Erster Fall von e-Thrombosehttps://www.rfc1437.de/2003/01/30/erster-fall-von-e-thrombose/Language-Mumps-1.07https://www.rfc1437.de/2003/01/30/language-mumps-107/Obelix siegt über MobiliXhttps://www.rfc1437.de/2003/01/30/obelix-siegt-ueber-mobilix/Physicists Teleport Quantum Bits Over Long Distancehttps://www.rfc1437.de/2003/01/30/physicists-teleport-quantum-bits-over-long-distanc/Radio Userland-Clonehttps://www.rfc1437.de/2003/01/30/radio-userland-clone/Interessante Interviews mit Guido van Rossumhttps://www.rfc1437.de/2003/01/29/interessante-interviews-mit-guido-van-rossum/München verbietet "Körperwelten"https://www.rfc1437.de/2003/01/29/muenchen-verbietet-koerperwelten/Opera Mac development likely to ceasehttps://www.rfc1437.de/2003/01/29/opera-mac-development-likely-to-cease/Team Telekom: Sechs Neulingehttps://www.rfc1437.de/2003/01/29/team-telekom-sechs-neulinge/Beitrag ohne Titelhttps://www.rfc1437.de/2003/01/27/p305/Forscher suchen den Sinn des Sexhttps://www.rfc1437.de/2003/01/26/forscher-suchen-den-sinn-des-sex/Gabriel attackiert rot-grünehttps://www.rfc1437.de/2003/01/26/gabriel-attackiert-rot-gruene/HTML Sucks Completely 0.928https://www.rfc1437.de/2003/01/26/html-sucks-completely-0928/Internet stundenlang lahmgelegthttps://www.rfc1437.de/2003/01/26/internet-stundenlang-lahmgelegt/Mal was in eigener Sachehttps://www.rfc1437.de/2003/01/26/mal-was-in-eigener-sache/NASA's Visible Earthhttps://www.rfc1437.de/2003/01/26/nasas-visible-earth/PyPI now has a browsing featurehttps://www.rfc1437.de/2003/01/26/pypi-now-has-a-browsing-feature/Python/XML 0.8.2https://www.rfc1437.de/2003/01/26/pythonxml-082/Satellitenbilder von den Buschbränden in Südostaustralienhttps://www.rfc1437.de/2003/01/26/satellitenbilder-von-den-buschbraenden-n-sdststrln/SPD-Spitze: Niemand wartet auf Lafontainehttps://www.rfc1437.de/2003/01/26/spd-spitze-niemand-wartet-auf-lafontaine/StepTalk 0.7.0pre1https://www.rfc1437.de/2003/01/26/steptalk-070pre1/TINC hopelessly borken?https://www.rfc1437.de/2003/01/26/tinc-hopelessly-borken/Umstieg auf PyDShttps://www.rfc1437.de/2003/01/26/umstieg-auf-pyds/U.S. prepares for possible use of nukeshttps://www.rfc1437.de/2003/01/26/us-prepares-for-possible-use-of-nukes/Visual Works Smalltalk für Mac OS X!https://www.rfc1437.de/2003/01/26/visual-works-smalltalk-fuer-mac-os-x/Brainfuck Debugger 0.2https://www.rfc1437.de/2003/01/25/brainfuck-debugger-02/SBCL Ascendenthttps://www.rfc1437.de/2003/01/25/sbcl-ascendent/Schmidt regt TÜV für Ärzte anhttps://www.rfc1437.de/2003/01/25/schmidt-regt-tuev-fuer-aerzte-an/tasten kapotthttps://www.rfc1437.de/2003/01/25/tasten-kapott/Oracle v SQL Server, Part 7https://www.rfc1437.de/2003/01/24/oracle-v-sql-server-part-7/PyObjC news (and Unit Tests Rock!)https://www.rfc1437.de/2003/01/24/pyobjc-news-and-unit-tests-rock/Network Solutions verschickt Zehntausende von Kunden-Adressenhttps://www.rfc1437.de/2003/01/23/network-solutions-verschickt-zhntsnd-vn-kndn-drssn/Staranwalt soll für SCO Unix-Urheberrechte prüfenhttps://www.rfc1437.de/2003/01/23/staranwalt-soll-fuer-sco-unix-urheberrechte-pruefn/US-Gericht verbietet Unternehmen das Versenden von Spamhttps://www.rfc1437.de/2003/01/23/us-gericht-verbietet-unternehmen-das-vrsndn-vn-spm/15 Jahre Nigeria-Connectionhttps://www.rfc1437.de/2003/01/22/15-jahre-nigeria-connection/AO(hel)l für (fast) alle - und zwar umsonst!https://www.rfc1437.de/2003/01/22/aohell-fuer-fast-alle-und-zwar-umsonst/Ärzte machenhttps://www.rfc1437.de/2003/01/21/aerzte-machen/Installation von PopFile unter OS Xhttps://www.rfc1437.de/2003/01/21/installation-von-popfile-unter-os-x/Möllemann-Befragung ohne Ergebnissehttps://www.rfc1437.de/2003/01/21/moellemann-befragung-ohne-ergebnisse/OpenMCL 0.13.3https://www.rfc1437.de/2003/01/21/openmcl-0133/PythonCard 0.7https://www.rfc1437.de/2003/01/21/pythoncard-07/SimpleTALhttps://www.rfc1437.de/2003/01/21/simpletal/SMTP-Relay-Server von T-Online künftig kostenpflichtighttps://www.rfc1437.de/2003/01/21/smtp-relay-server-von-t-online-kuenftg-kstnpflchtg/Werden gute Mailfilter Spam auf Dauer verhindern?https://www.rfc1437.de/2003/01/21/werden-gute-mailfilter-spam-auf-dauer-verhindern/Schockwellenreiter bastelthttps://www.rfc1437.de/2003/01/20/schockwellenreiter-bastelt/Trackback in the saddle againhttps://www.rfc1437.de/2003/01/20/trackback-in-the-saddle-again/Mein nächstes Nachbarbloghttps://www.rfc1437.de/2003/01/19/mein-naechstes-nachbarblog/Politiker wollen Bundesländer zusammenlegenhttps://www.rfc1437.de/2003/01/19/politiker-wollen-bundeslaender-zusammenlegen/Wissenschaft auf dem Holzweghttps://www.rfc1437.de/2003/01/19/wissenschaft-auf-dem-holzweg/Beitrag ohne Titelhttps://www.rfc1437.de/2003/01/18/p265/Die dümmsten Bauern oder lernt die bayerische Staatsregierung nie dazu?https://www.rfc1437.de/2003/01/17/die-duemmsten-barn-dr-lrnt-d-byrsch-sttsrgrng-n-dz/FBI warnt vor angeblich zunehmenden Cyberattacken pro-irakischer oder irakischer Hackerhttps://www.rfc1437.de/2003/01/17/fb-wrnt-vr-ngblch-znhmndn-cybrttckn-pr-rkschr-dr-r/Just posted! Olympus C-5050 Zoom reviewhttps://www.rfc1437.de/2003/01/17/just-posted-olympus-c-5050-zoom-review/LISP 1.5 Programmer's Manualhttps://www.rfc1437.de/2003/01/17/lisp-15-programmers-manual/Che Guevara - der Revolutionär als Fotografhttps://www.rfc1437.de/2003/01/16/che-guevara-der-revolutionaer-als-fotograf/Esoteric computer languageshttps://www.rfc1437.de/2003/01/16/esoteric-computer-languages/Gebrauchte Festplatten als Fundgrube für Hacker und Crackerhttps://www.rfc1437.de/2003/01/16/gebrauchte-festplatten-als-fndgrb-fr-hckr-nd-crckr/Migration durchgeführthttps://www.rfc1437.de/2003/01/16/migration-durchgefuehrt/Random: Don''t Forget Your Instuments!https://www.rfc1437.de/2003/01/16/random-dont-forget-your-instuments/Python Community Serverhttps://www.rfc1437.de/2003/01/16/story-python-community-server/Markus Kniebeshttps://www.rfc1437.de/2003/01/15/p252/Ullrich fährt für Coasthttps://www.rfc1437.de/2003/01/15/p253/Entscheidung über Möllemann vertagthttps://www.rfc1437.de/2003/01/14/p249/Mark Pilgrim schimpft über XHTML 1.1https://www.rfc1437.de/2003/01/14/p250/Beitrag ohne Titelhttps://www.rfc1437.de/2003/01/14/p251/Beitrag ohne Titelhttps://www.rfc1437.de/2003/01/13/p245/Steve Case wird endgültig 'gecased'https://www.rfc1437.de/2003/01/13/p246/Beitrag ohne Titelhttps://www.rfc1437.de/2003/01/13/p247/Beitrag ohne Titelhttps://www.rfc1437.de/2003/01/13/p248/Sonys neues Organizer-Flaggschiffhttps://www.rfc1437.de/2003/01/12/p242/Alle Todeskandidaten in Illinois begnadigthttps://www.rfc1437.de/2003/01/12/p243/Colani präsentiert blaue Polizei-Uniformenhttps://www.rfc1437.de/2003/01/12/p244/CDU setzt Klausurtagung forthttps://www.rfc1437.de/2003/01/11/p240/Virtueller Vogel kann echt singenhttps://www.rfc1437.de/2003/01/11/p241/Beitrag ohne Titelhttps://www.rfc1437.de/2003/01/10/p238/Beitrag ohne Titelhttps://www.rfc1437.de/2003/01/10/p239/CSU strotzt vor Selbstbewusstseinhttps://www.rfc1437.de/2003/01/09/p236/Scharon verliert bei den Wählernhttps://www.rfc1437.de/2003/01/09/p237/Beitrag ohne Titelhttps://www.rfc1437.de/2003/01/08/p233/Beitrag ohne Titelhttps://www.rfc1437.de/2003/01/08/p234/Möllemann ist wieder dahttps://www.rfc1437.de/2003/01/08/p235/Ärzte wollen mittwochs dicht machenhttps://www.rfc1437.de/2003/01/07/p224/Konica und Minolta fusionierenhttps://www.rfc1437.de/2003/01/07/p225/OpenOffice für Mac OS Xhttps://www.rfc1437.de/2003/01/07/p226/Verteiltes Rechnen soll Xbox Public Key knacken [Update]https://www.rfc1437.de/2003/01/07/p227/bzero 0.14 availablehttps://www.rfc1437.de/2003/01/07/p228/Beitrag ohne Titelhttps://www.rfc1437.de/2003/01/07/p229/LLGPL Implementation eines XML-RPC Server and Client für OpenMCLhttps://www.rfc1437.de/2003/01/07/p230/"Monster von Aramberri": Erste Knochen in Karlsruhehttps://www.rfc1437.de/2003/01/07/p231/X11 für Mac OS X von Applehttps://www.rfc1437.de/2003/01/07/p232/Designierter EZB-Chef vor Gerichthttps://www.rfc1437.de/2003/01/06/p219/Clement will Richtungswechsel in Wirtschaftspolitikhttps://www.rfc1437.de/2003/01/06/p220/Microdrive gets a major capacity boosthttps://www.rfc1437.de/2003/01/06/p221/Package metadata repository for Pythonhttps://www.rfc1437.de/2003/01/06/p222/Donut im All entdeckthttps://www.rfc1437.de/2003/01/06/p223/Polaroid Dust and Scratch removalhttps://www.rfc1437.de/2003/01/05/p216/Beitrag ohne Titelhttps://www.rfc1437.de/2003/01/05/p217/Beitrag ohne Titelhttps://www.rfc1437.de/2003/01/05/p218/New rdflib releasehttps://www.rfc1437.de/2003/01/04/p213/OpenMCL Now LLGPLedhttps://www.rfc1437.de/2003/01/04/p214/Onanierende Orang-Utanshttps://www.rfc1437.de/2003/01/04/p215/Easy Things Should Be Easyhttps://www.rfc1437.de/2003/01/03/p205/Friday 3 January AllegroServe : 3 editshttps://www.rfc1437.de/2003/01/03/p206/Stille Posthttps://www.rfc1437.de/2003/01/03/p207/Bahn zieht gegen Pro Bahn vor Gerichthttps://www.rfc1437.de/2003/01/03/p208/20 Jahre mausgesteuerter Computer: "Lisa" hat Geburtstaghttps://www.rfc1437.de/2003/01/03/p209/MacBird Open Source Releasehttps://www.rfc1437.de/2003/01/03/p210/The Cultured Orangutanhttps://www.rfc1437.de/2003/01/03/p211/home photoblog linkdump license flag [E] skip over the calendar12/2002 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 2/2003 3. Jan. 2003 [ ][0] [ ][1] Zwei Katzenbilder (gescanned von alten Negativen) von The Witch - Juttas Fotoalben Gefunden bei The Witch - Juttas Fotoalben. tags: Fotografie © 2002-2010 Georg "hugo" Bauer.https://www.rfc1437.de/2003/01/03/p212/Beitrag ohne Titelhttps://www.rfc1437.de/2003/01/02/p198/Beitrag ohne Titelhttps://www.rfc1437.de/2003/01/02/p199/Beitrag ohne Titelhttps://www.rfc1437.de/2003/01/02/p200/Porno- oder Webradiopatent?https://www.rfc1437.de/2003/01/02/p201/Beitrag ohne Titelhttps://www.rfc1437.de/2003/01/02/p202/Flat-panel iMac production to be terminated?https://www.rfc1437.de/2003/01/02/p203/Rürup ruft zur Ordnunghttps://www.rfc1437.de/2003/01/02/p204/Den Songhttps://www.rfc1437.de/2003/01/01/p196/Rürup-Kommission: Mit 900 Euro sind Sie dabei!https://www.rfc1437.de/2003/01/01/p197/Botanischer Gartenhttps://www.rfc1437.de/2002/12/31/p193/Lost...https://www.rfc1437.de/2002/12/31/p194/"There's one thing I'm certain of: Return I will To old Brazil ": Kate Bush, from the greatest ...https://www.rfc1437.de/2002/12/31/p195/Pevenage verlässt Team Telekomhttps://www.rfc1437.de/2002/12/30/p186/19C3: Der Linux-Xbox-Hack und die Zukunft von Palladiumhttps://www.rfc1437.de/2002/12/30/p187/Prominente .de-Domains: Nicht bezahlt und gesperrthttps://www.rfc1437.de/2002/12/30/p188/Die Raelianerhttps://www.rfc1437.de/2002/12/30/p189/Schröder kündigt harten Kurs anhttps://www.rfc1437.de/2002/12/30/p190/Schröder oder Stoiber: Wer hat die beste Website?https://www.rfc1437.de/2002/12/30/p191/Beitrag ohne Titelhttps://www.rfc1437.de/2002/12/30/p192/Kritik an Fischer aus eigenen Reihenhttps://www.rfc1437.de/2002/12/29/p177/Mehdorn droht mit Schönwetter-Verkehrhttps://www.rfc1437.de/2002/12/29/p178/Fotoalben auf dem OUT e.V. Serverhttps://www.rfc1437.de/2002/12/29/p179/home photoblog linkdump license flag [E] skip over the calendar11/2002 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 1/2003 29. Dec. 2002 [ ][0] Katze im Sprung - etwas dunkel, aber trotzdem ein nettes Bild von The Witch - Juttas Fotoalben. Technik kann man am Lichtbogen im Hintergrund erkennen, sie hat wohl mitgezogen. Garnicht so einfach sowas mit einer Manuellfokus-Kamera zu machen. Gefunden bei The Witch - Juttas Fotoalben. tags: Fotografie © 2002-2010 Georg "hugo" Bauer.https://www.rfc1437.de/2002/12/29/p180/home photoblog linkdump license flag [E] skip over the calendar11/2002 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 1/2003 29. Dec. 2002 [ ][0] Eines meiner Bilder aus Seile und Rollen. Ich mag das Album irgendwie, auch wenn die Bilder selber wenig Aussage transportieren, sondern mehr der Präsentation der Form und der Lichtspiele dienen. Nicht jedes Bild muss eine Aussage transportieren ... Gefunden bei Leicaesk - Leicaesk. tags: Fotografie © 2002-2010 Georg "hugo" Bauer.https://www.rfc1437.de/2002/12/29/p181/Beitrag ohne Titelhttps://www.rfc1437.de/2002/12/29/p182/Ook!!!https://www.rfc1437.de/2002/12/29/p183/Tales for the 1337https://www.rfc1437.de/2002/12/29/p184/BloQhttps://www.rfc1437.de/2002/12/29/p185/Günter Grass trommelt gegen Bushhttps://www.rfc1437.de/2002/12/28/p176/Beitrag ohne Titelhttps://www.rfc1437.de/2002/12/27/p172/Bahn weist Kritik an Krisenmanagement zurückhttps://www.rfc1437.de/2002/12/27/p173/Immer mehr Spam - und vielleicht auch Stresshttps://www.rfc1437.de/2002/12/27/p174/Beitrag ohne Titelhttps://www.rfc1437.de/2002/12/27/p175/Mac Essentialshttps://www.rfc1437.de/2002/12/26/p171/Beitrag ohne Titelhttps://www.rfc1437.de/2002/12/25/p169/Eisregen sorgt für Verkehrschaos im Nordenhttps://www.rfc1437.de/2002/12/25/p170/Jacob Nielsens Top-Ten Fehlerliste im Webdesign 2002https://www.rfc1437.de/2002/12/24/p167/Beitrag ohne Titelhttps://www.rfc1437.de/2002/12/24/p168/Gretag vor der Insolvenz?https://www.rfc1437.de/2002/12/23/p165/Ex-Bundesminister Krause muss ins Gefängnishttps://www.rfc1437.de/2002/12/23/p166/Süssmuth ruft Union zu Kompromiss aufhttps://www.rfc1437.de/2002/12/22/p160/Dieter Thomas Heck plant neue "ZDF-Hitparade"https://www.rfc1437.de/2002/12/22/p161/Beitrag ohne Titelhttps://www.rfc1437.de/2002/12/22/p162/Beitrag ohne Titelhttps://www.rfc1437.de/2002/12/22/p163/Ingo Rammer: "Exchange Server 2000 rocks. Within a couple of hours, I've been able to render my ...https://www.rfc1437.de/2002/12/22/p164/2005 Dank TCPA: Der entmannte Computerhttps://www.rfc1437.de/2002/12/21/p156/Chimera 0.6 browser gets more featureshttps://www.rfc1437.de/2002/12/21/p157/Wolken auf Titanhttps://www.rfc1437.de/2002/12/21/p158/Lob und Tadel für Strategiepapierhttps://www.rfc1437.de/2002/12/21/p159/Beitrag ohne Titelhttps://www.rfc1437.de/2002/12/20/p149/Das Gefühl trügt offenbar: Euro ist kein Teurohttps://www.rfc1437.de/2002/12/20/p150/Gericht: Internetcafés brauchen Spielhallen-Erlaubnishttps://www.rfc1437.de/2002/12/20/p151/Kein Schmerzensgeld für Schoko-Fanhttps://www.rfc1437.de/2002/12/20/p152/Bundessicherheitsbehörde vertreibt CD mit Instant-Linuxhttps://www.rfc1437.de/2002/12/20/p153/Polyhedra Polymathhttps://www.rfc1437.de/2002/12/20/p154/MS licensinghttps://www.rfc1437.de/2002/12/20/p155/What is RSS?https://www.rfc1437.de/2002/12/19/p145/Happy Birthday Perlhttps://www.rfc1437.de/2002/12/19/p146/Beitrag ohne Titelhttps://www.rfc1437.de/2002/12/19/p147/Beitrag ohne Titelhttps://www.rfc1437.de/2002/12/19/p148/should we patent air too?https://www.rfc1437.de/2002/12/18/p142/Bundestag verabschiedet sich vom Ausschuss für Netzpolitikhttps://www.rfc1437.de/2002/12/18/p143/Erleichterung bei der Union - Bedauern bei der SPDhttps://www.rfc1437.de/2002/12/18/p144/Zweifel an Eignung Gorlebens als Endlagerhttps://www.rfc1437.de/2002/12/17/p139/BinTec ist zahlungsunfähighttps://www.rfc1437.de/2002/12/17/p140/Just posted! Canon EOS-1Ds reviewhttps://www.rfc1437.de/2002/12/17/p141/Photo Quoteshttps://www.rfc1437.de/2002/12/16/p129/Pixelnhance hat eine neue Versionhttps://www.rfc1437.de/2002/12/16/p130/Galgenhumor gegen Software-Patentehttps://www.rfc1437.de/2002/12/16/p131/Pentagon denkt über Geheimprogramm zur Manipulation der öffentlichen Meinung in befre ...https://www.rfc1437.de/2002/12/16/p132/Möllemann will sich im Januar erklärenhttps://www.rfc1437.de/2002/12/16/p133/Beitrag ohne Titelhttps://www.rfc1437.de/2002/12/16/p134/Merz wettert gegen Gewerkschaftsmachthttps://www.rfc1437.de/2002/12/16/p135/Beitrag ohne Titelhttps://www.rfc1437.de/2002/12/16/p136/more viruseshttps://www.rfc1437.de/2002/12/16/p137/Unix interactive: Neue Wege zur Insolvenzhttps://www.rfc1437.de/2002/12/16/p138/Ersatzkassen sollen Urlaubsgeld streichenhttps://www.rfc1437.de/2002/12/15/p127/CIA erhält Anti-Terror-Tötungslistehttps://www.rfc1437.de/2002/12/15/p128/Merz wirft Nachfolgerin Merkel Wortbruch vorhttps://www.rfc1437.de/2002/12/14/p126/Gericht sperrt rechtsextreme Websiteshttps://www.rfc1437.de/2002/12/13/p122/Tarifeinigung im Bankgewerbehttps://www.rfc1437.de/2002/12/13/p123/Beitrag ohne Titelhttps://www.rfc1437.de/2002/12/13/p124/Beitrag ohne Titelhttps://www.rfc1437.de/2002/12/13/p125/Beitrag ohne Titelhttps://www.rfc1437.de/2002/12/12/p113/Politische Mehrheit für AWACS-Einsatzhttps://www.rfc1437.de/2002/12/12/p114/Banken wollen Zinssenkung nicht weitergebenhttps://www.rfc1437.de/2002/12/12/p115/Wirbel um Bonner Riefenstahl-Ausstellunghttps://www.rfc1437.de/2002/12/12/p116/Phillip Pearson: "Prototyping a very fast XML-RPC server."https://www.rfc1437.de/2002/12/12/p117/Koch sorgt mit Nazi-Vergleich für Skandalhttps://www.rfc1437.de/2002/12/12/p118/Schlussverkauf/2 bei IBMhttps://www.rfc1437.de/2002/12/12/p119/Schily warnt vor Streik im Öffentlichen Diensthttps://www.rfc1437.de/2002/12/12/p120/Möllemann richtete offenbar illegales Konto einhttps://www.rfc1437.de/2002/12/12/p121/Internet-Filter blockieren Aufklärungs-Websiteshttps://www.rfc1437.de/2002/12/11/p112/SPD dementiert Rücktrittsdrohung Schrödershttps://www.rfc1437.de/2002/12/10/p109/Marktforscher rechnen mit Linux-Software von Microsofthttps://www.rfc1437.de/2002/12/10/p110/NRW-FDP will Möllemann ausschließenhttps://www.rfc1437.de/2002/12/10/p111/Beitrag ohne Titelhttps://www.rfc1437.de/2002/12/09/p106/Drittes Verfahren gegen Möllemannhttps://www.rfc1437.de/2002/12/09/p107/Beitrag ohne Titelhttps://www.rfc1437.de/2002/12/09/p108/Beitrag ohne Titelhttps://www.rfc1437.de/2002/12/08/p101/Neue Hardware für Amiga- und C64-Fanshttps://www.rfc1437.de/2002/12/08/p102/Abstimmung über Nachfolger von Roth und Kuhnhttps://www.rfc1437.de/2002/12/08/p103/Theo Jansen entwickelt gehende Maschinenhttps://www.rfc1437.de/2002/12/08/p104/Beitrag ohne Titelhttps://www.rfc1437.de/2002/12/08/p105/Just posted! Canon PowerShot G3 reviewhttps://www.rfc1437.de/2002/12/06/p100/EU sperrt "Risikoschiffe" aushttps://www.rfc1437.de/2002/12/06/p96/Zaubern mit Lichthttps://www.rfc1437.de/2002/12/06/p97/Grüne wollen länger shoppenhttps://www.rfc1437.de/2002/12/06/p98/Anschlag auf McDonald's in Indonesienhttps://www.rfc1437.de/2002/12/06/p99/ElcomSoft-Prozess: Unwirksames Einbrecherwerkzeughttps://www.rfc1437.de/2002/12/05/p95/Beitrag ohne Titelhttps://www.rfc1437.de/2002/12/04/p93/Beitrag ohne Titelhttps://www.rfc1437.de/2002/12/04/p94/Möllemann will nicht gehenhttps://www.rfc1437.de/2002/12/03/p90/"Alice im Männerland"https://www.rfc1437.de/2002/12/03/p91/Keiner will mehr Möllemannhttps://www.rfc1437.de/2002/12/03/p92/FDP-Vorstand will Möllemann rauswerfenhttps://www.rfc1437.de/2002/12/02/p87/Beitrag ohne Titelhttps://www.rfc1437.de/2002/12/02/p88/Beitrag ohne Titelhttps://www.rfc1437.de/2002/12/02/p89/Beitrag ohne Titelhttps://www.rfc1437.de/2002/12/01/p85/Beitrag ohne Titelhttps://www.rfc1437.de/2002/12/01/p86/Jürgen auf der Ersatzbankhttps://www.rfc1437.de/2002/11/30/p82/Vergleich von Rollei 6008 und Hasselblad Systemhttps://www.rfc1437.de/2002/11/30/p83/Verschwörer zum Selberbastelnhttps://www.rfc1437.de/2002/11/30/p84/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/29/p79/Union bremst Hartz-Gesetze im Bundesrathttps://www.rfc1437.de/2002/11/29/p80/Pantani will zurück in den Rennsattelhttps://www.rfc1437.de/2002/11/29/p81/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/28/p74/Jürgen Möllemann Gedächtnis Bloqhttps://www.rfc1437.de/2002/11/28/p75/One of the stupidiest talks about browsershttps://www.rfc1437.de/2002/11/28/p76/Besorgnis über Neuzugang bei Microsofthttps://www.rfc1437.de/2002/11/28/p77/Doc Searlshttps://www.rfc1437.de/2002/11/28/p78/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/27/p68/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/27/p69/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/27/p70/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/27/p71/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/27/p72/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/27/p73/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/25/p67/Fotoalbum des ältesten Fotoklubs der Welt onlinehttps://www.rfc1437.de/2002/11/22/p65/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/22/p66/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/21/p63/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/21/p64/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/20/p57/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/20/p58/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/20/p59/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/20/p60/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/20/p61/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/20/p62/Ich will einehttps://www.rfc1437.de/2002/11/19/p49/Java vs. Pythonhttps://www.rfc1437.de/2002/11/19/p50/Python JIThttps://www.rfc1437.de/2002/11/19/p51/Verschwendung in Milliardenhöhehttps://www.rfc1437.de/2002/11/19/p52/Arbeitgeber beraten über Reformenhttps://www.rfc1437.de/2002/11/19/p53/Vielleicht sind wir alle schon die Insassen eines Gesamt-Irrenhauseshttps://www.rfc1437.de/2002/11/19/p54/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/19/p55/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/19/p56/Threads considered harmfullhttps://www.rfc1437.de/2002/11/18/p46/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/18/p47/3GB Compact Flashhttps://www.rfc1437.de/2002/11/18/p48/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/17/p42/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/17/p43/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/17/p44/Die Kommerzialisierung des Wissenshttps://www.rfc1437.de/2002/11/17/p45/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/16/p37/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/16/p38/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/16/p39/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/16/p40/Möllemann unter Geldwäscheverdachthttps://www.rfc1437.de/2002/11/16/p41/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/15/p32/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/15/p33/I'm doing an interesting project to backup a Radio installation into the cloud.https://www.rfc1437.de/2002/11/15/p34/Macintosh Common Lisp 5.0bhttps://www.rfc1437.de/2002/11/15/p35/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/15/p36/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/14/p29/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/14/p30/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/14/p31/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/13/p26/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/13/p27/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/13/p28/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/12/p24/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/12/p25/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/11/p22/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/11/p23/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/10/p21/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/09/p19/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/09/p20/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/08/p17/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/08/p18/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/07/p14/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/07/p15/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/07/p16/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/06/p12/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/06/p13/Chimerahttps://www.rfc1437.de/2002/11/05/p10/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/05/p11/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/05/p7/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/05/p8/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/05/p9/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/03/p2/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/03/p255/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/03/p3/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/03/p4/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/03/p5/ \ No newline at end of file diff --git a/fixtures/golden-generated-sites/rfc1437-sample/calendar.json b/fixtures/golden-generated-sites/rfc1437-sample/calendar.json index 5fea447..a4c60eb 100644 --- a/fixtures/golden-generated-sites/rfc1437-sample/calendar.json +++ b/fixtures/golden-generated-sites/rfc1437-sample/calendar.json @@ -1,3112 +1 @@ -{ - "years": { - "2002": 194, - "2003": 1640, - "2004": 2030, - "2005": 1537, - "2006": 903, - "2007": 722, - "2008": 596, - "2009": 541, - "2010": 584, - "2011": 709, - "2012": 294, - "2013": 149, - "2014": 64, - "2015": 141, - "2016": 63, - "2017": 14, - "2018": 12, - "2019": 10, - "2020": 4, - "2021": 1, - "2022": 5, - "2023": 4, - "2026": 45 - }, - "months": { - "2002-11": 83, - "2002-12": 111, - "2003-01": 120, - "2003-02": 141, - "2003-03": 172, - "2003-04": 137, - "2003-05": 102, - "2003-06": 129, - "2003-07": 134, - "2003-08": 86, - "2003-09": 134, - "2003-10": 175, - "2003-11": 130, - "2003-12": 180, - "2004-01": 281, - "2004-02": 144, - "2004-03": 174, - "2004-04": 127, - "2004-05": 165, - "2004-06": 141, - "2004-07": 180, - "2004-08": 172, - "2004-09": 199, - "2004-10": 163, - "2004-11": 165, - "2004-12": 119, - "2005-01": 228, - "2005-02": 234, - "2005-03": 174, - "2005-04": 109, - "2005-05": 83, - "2005-06": 133, - "2005-07": 117, - "2005-08": 93, - "2005-09": 56, - "2005-10": 104, - "2005-11": 86, - "2005-12": 120, - "2006-01": 137, - "2006-02": 147, - "2006-03": 80, - "2006-04": 47, - "2006-05": 45, - "2006-06": 46, - "2006-07": 51, - "2006-08": 54, - "2006-09": 53, - "2006-10": 101, - "2006-11": 96, - "2006-12": 46, - "2007-01": 86, - "2007-02": 42, - "2007-03": 53, - "2007-04": 97, - "2007-05": 112, - "2007-06": 68, - "2007-07": 88, - "2007-08": 24, - "2007-09": 33, - "2007-10": 38, - "2007-11": 37, - "2007-12": 44, - "2008-01": 73, - "2008-02": 59, - "2008-03": 40, - "2008-04": 54, - "2008-05": 53, - "2008-06": 76, - "2008-07": 47, - "2008-08": 34, - "2008-09": 48, - "2008-10": 60, - "2008-11": 38, - "2008-12": 14, - "2009-01": 32, - "2009-02": 37, - "2009-03": 45, - "2009-04": 28, - "2009-05": 23, - "2009-06": 32, - "2009-07": 41, - "2009-08": 27, - "2009-09": 57, - "2009-10": 68, - "2009-11": 53, - "2009-12": 98, - "2010-01": 114, - "2010-02": 60, - "2010-03": 16, - "2010-04": 29, - "2010-05": 40, - "2010-06": 32, - "2010-07": 33, - "2010-08": 13, - "2010-09": 41, - "2010-10": 31, - "2010-11": 92, - "2010-12": 83, - "2011-01": 48, - "2011-02": 66, - "2011-03": 62, - "2011-04": 79, - "2011-05": 102, - "2011-06": 68, - "2011-07": 91, - "2011-08": 55, - "2011-09": 40, - "2011-10": 52, - "2011-11": 25, - "2011-12": 21, - "2012-01": 6, - "2012-02": 32, - "2012-03": 38, - "2012-04": 26, - "2012-05": 40, - "2012-06": 28, - "2012-07": 35, - "2012-08": 15, - "2012-09": 20, - "2012-10": 31, - "2012-11": 10, - "2012-12": 13, - "2013-01": 20, - "2013-02": 38, - "2013-03": 21, - "2013-04": 11, - "2013-05": 5, - "2013-06": 3, - "2013-07": 9, - "2013-08": 12, - "2013-09": 16, - "2013-10": 5, - "2013-11": 2, - "2013-12": 7, - "2014-01": 16, - "2014-02": 4, - "2014-03": 3, - "2014-04": 8, - "2014-05": 7, - "2014-06": 12, - "2014-07": 5, - "2014-08": 1, - "2014-09": 1, - "2014-10": 3, - "2014-11": 3, - "2014-12": 1, - "2015-01": 37, - "2015-02": 16, - "2015-03": 18, - "2015-04": 12, - "2015-05": 9, - "2015-06": 5, - "2015-07": 10, - "2015-08": 7, - "2015-09": 8, - "2015-10": 6, - "2015-11": 9, - "2015-12": 4, - "2016-01": 11, - "2016-02": 4, - "2016-03": 6, - "2016-04": 6, - "2016-05": 5, - "2016-06": 8, - "2016-07": 8, - "2016-08": 6, - "2016-09": 3, - "2016-10": 3, - "2016-11": 3, - "2017-01": 4, - "2017-02": 1, - "2017-08": 2, - "2017-09": 1, - "2017-11": 6, - "2018-01": 1, - "2018-05": 1, - "2018-06": 4, - "2018-08": 2, - "2018-11": 4, - "2019-02": 1, - "2019-04": 1, - "2019-05": 2, - "2019-06": 2, - "2019-08": 2, - "2019-11": 2, - "2020-02": 2, - "2020-03": 2, - "2021-01": 1, - "2022-08": 1, - "2022-11": 4, - "2023-08": 4, - "2026-02": 13, - "2026-03": 31, - "2026-04": 1 - }, - "days": { - "2002-11-03": 5, - "2002-11-05": 5, - "2002-11-06": 2, - "2002-11-07": 3, - "2002-11-08": 2, - "2002-11-09": 2, - "2002-11-10": 1, - "2002-11-11": 2, - "2002-11-12": 2, - "2002-11-13": 3, - "2002-11-14": 3, - "2002-11-15": 5, - "2002-11-16": 5, - "2002-11-17": 4, - "2002-11-18": 3, - "2002-11-19": 8, - "2002-11-20": 6, - "2002-11-21": 2, - "2002-11-22": 2, - "2002-11-25": 1, - "2002-11-27": 6, - "2002-11-28": 5, - "2002-11-29": 3, - "2002-11-30": 3, - "2002-12-01": 2, - "2002-12-02": 3, - "2002-12-03": 3, - "2002-12-04": 2, - "2002-12-05": 1, - "2002-12-06": 5, - "2002-12-08": 5, - "2002-12-09": 3, - "2002-12-10": 3, - "2002-12-11": 1, - "2002-12-12": 9, - "2002-12-13": 4, - "2002-12-14": 1, - "2002-12-15": 2, - "2002-12-16": 10, - "2002-12-17": 3, - "2002-12-18": 3, - "2002-12-19": 4, - "2002-12-20": 7, - "2002-12-21": 4, - "2002-12-22": 5, - "2002-12-23": 2, - "2002-12-24": 2, - "2002-12-25": 2, - "2002-12-26": 1, - "2002-12-27": 4, - "2002-12-28": 1, - "2002-12-29": 9, - "2002-12-30": 7, - "2002-12-31": 3, - "2003-01-01": 2, - "2003-01-02": 7, - "2003-01-03": 8, - "2003-01-04": 3, - "2003-01-05": 3, - "2003-01-06": 5, - "2003-01-07": 9, - "2003-01-08": 3, - "2003-01-09": 2, - "2003-01-10": 2, - "2003-01-11": 2, - "2003-01-12": 3, - "2003-01-13": 4, - "2003-01-14": 3, - "2003-01-15": 2, - "2003-01-16": 6, - "2003-01-17": 4, - "2003-01-18": 1, - "2003-01-19": 3, - "2003-01-20": 2, - "2003-01-21": 8, - "2003-01-22": 2, - "2003-01-23": 3, - "2003-01-24": 2, - "2003-01-25": 4, - "2003-01-26": 15, - "2003-01-27": 1, - "2003-01-29": 4, - "2003-01-30": 5, - "2003-01-31": 2, - "2003-02-01": 8, - "2003-02-02": 2, - "2003-02-03": 6, - "2003-02-04": 5, - "2003-02-05": 2, - "2003-02-06": 8, - "2003-02-07": 7, - "2003-02-08": 5, - "2003-02-09": 3, - "2003-02-10": 6, - "2003-02-11": 2, - "2003-02-12": 2, - "2003-02-13": 5, - "2003-02-14": 5, - "2003-02-15": 4, - "2003-02-16": 5, - "2003-02-17": 12, - "2003-02-18": 6, - "2003-02-19": 5, - "2003-02-20": 5, - "2003-02-21": 4, - "2003-02-22": 4, - "2003-02-23": 3, - "2003-02-24": 3, - "2003-02-25": 4, - "2003-02-26": 1, - "2003-02-27": 15, - "2003-02-28": 4, - "2003-03-01": 7, - "2003-03-02": 5, - "2003-03-03": 1, - "2003-03-04": 9, - "2003-03-05": 5, - "2003-03-06": 3, - "2003-03-07": 7, - "2003-03-08": 2, - "2003-03-09": 3, - "2003-03-10": 4, - "2003-03-11": 9, - "2003-03-12": 5, - "2003-03-13": 8, - "2003-03-14": 10, - "2003-03-15": 6, - "2003-03-16": 1, - "2003-03-17": 3, - "2003-03-18": 8, - "2003-03-19": 5, - "2003-03-20": 7, - "2003-03-21": 3, - "2003-03-22": 7, - "2003-03-23": 7, - "2003-03-24": 7, - "2003-03-25": 4, - "2003-03-26": 7, - "2003-03-27": 8, - "2003-03-28": 10, - "2003-03-29": 6, - "2003-03-30": 1, - "2003-03-31": 4, - "2003-04-01": 9, - "2003-04-02": 6, - "2003-04-03": 6, - "2003-04-04": 2, - "2003-04-05": 4, - "2003-04-06": 4, - "2003-04-08": 10, - "2003-04-09": 3, - "2003-04-10": 7, - "2003-04-11": 3, - "2003-04-12": 12, - "2003-04-13": 2, - "2003-04-14": 5, - "2003-04-15": 3, - "2003-04-16": 1, - "2003-04-17": 4, - "2003-04-18": 8, - "2003-04-19": 5, - "2003-04-20": 4, - "2003-04-21": 3, - "2003-04-22": 3, - "2003-04-23": 4, - "2003-04-24": 6, - "2003-04-25": 3, - "2003-04-26": 4, - "2003-04-27": 5, - "2003-04-28": 5, - "2003-04-29": 2, - "2003-04-30": 4, - "2003-05-01": 1, - "2003-05-04": 5, - "2003-05-05": 3, - "2003-05-06": 5, - "2003-05-07": 4, - "2003-05-08": 6, - "2003-05-09": 4, - "2003-05-10": 6, - "2003-05-11": 3, - "2003-05-12": 1, - "2003-05-13": 2, - "2003-05-14": 5, - "2003-05-15": 3, - "2003-05-16": 8, - "2003-05-17": 5, - "2003-05-18": 4, - "2003-05-19": 1, - "2003-05-20": 2, - "2003-05-21": 4, - "2003-05-22": 7, - "2003-05-23": 5, - "2003-05-24": 1, - "2003-05-26": 5, - "2003-05-27": 3, - "2003-05-28": 4, - "2003-05-29": 1, - "2003-05-30": 2, - "2003-05-31": 2, - "2003-06-01": 7, - "2003-06-02": 2, - "2003-06-03": 3, - "2003-06-04": 5, - "2003-06-05": 9, - "2003-06-06": 5, - "2003-06-07": 2, - "2003-06-08": 3, - "2003-06-09": 4, - "2003-06-10": 3, - "2003-06-11": 4, - "2003-06-12": 6, - "2003-06-13": 2, - "2003-06-14": 1, - "2003-06-15": 5, - "2003-06-16": 9, - "2003-06-17": 2, - "2003-06-18": 5, - "2003-06-19": 8, - "2003-06-20": 6, - "2003-06-21": 6, - "2003-06-22": 2, - "2003-06-23": 7, - "2003-06-24": 6, - "2003-06-25": 5, - "2003-06-26": 2, - "2003-06-27": 3, - "2003-06-28": 2, - "2003-06-29": 1, - "2003-06-30": 4, - "2003-07-01": 7, - "2003-07-02": 7, - "2003-07-03": 5, - "2003-07-04": 6, - "2003-07-05": 3, - "2003-07-06": 5, - "2003-07-07": 4, - "2003-07-09": 2, - "2003-07-10": 4, - "2003-07-11": 3, - "2003-07-12": 5, - "2003-07-13": 3, - "2003-07-14": 3, - "2003-07-15": 3, - "2003-07-16": 8, - "2003-07-17": 5, - "2003-07-18": 7, - "2003-07-19": 6, - "2003-07-20": 5, - "2003-07-21": 6, - "2003-07-22": 3, - "2003-07-23": 3, - "2003-07-24": 3, - "2003-07-25": 2, - "2003-07-26": 7, - "2003-07-27": 6, - "2003-07-28": 3, - "2003-07-29": 3, - "2003-07-30": 3, - "2003-07-31": 4, - "2003-08-01": 3, - "2003-08-02": 6, - "2003-08-04": 4, - "2003-08-05": 2, - "2003-08-08": 5, - "2003-08-10": 2, - "2003-08-11": 4, - "2003-08-12": 1, - "2003-08-13": 3, - "2003-08-14": 6, - "2003-08-15": 5, - "2003-08-16": 1, - "2003-08-17": 1, - "2003-08-18": 4, - "2003-08-21": 8, - "2003-08-23": 4, - "2003-08-24": 3, - "2003-08-25": 6, - "2003-08-26": 5, - "2003-08-27": 4, - "2003-08-28": 1, - "2003-08-29": 2, - "2003-08-30": 5, - "2003-08-31": 1, - "2003-09-01": 3, - "2003-09-02": 7, - "2003-09-03": 4, - "2003-09-04": 4, - "2003-09-05": 4, - "2003-09-06": 2, - "2003-09-07": 3, - "2003-09-08": 1, - "2003-09-11": 4, - "2003-09-13": 5, - "2003-09-14": 5, - "2003-09-15": 4, - "2003-09-16": 13, - "2003-09-17": 8, - "2003-09-18": 9, - "2003-09-19": 6, - "2003-09-20": 5, - "2003-09-21": 1, - "2003-09-22": 3, - "2003-09-23": 3, - "2003-09-24": 5, - "2003-09-25": 5, - "2003-09-26": 7, - "2003-09-27": 10, - "2003-09-28": 6, - "2003-09-29": 1, - "2003-09-30": 6, - "2003-10-01": 11, - "2003-10-02": 9, - "2003-10-03": 5, - "2003-10-04": 8, - "2003-10-05": 3, - "2003-10-06": 10, - "2003-10-07": 6, - "2003-10-08": 2, - "2003-10-09": 3, - "2003-10-10": 5, - "2003-10-11": 3, - "2003-10-12": 2, - "2003-10-13": 4, - "2003-10-14": 5, - "2003-10-15": 10, - "2003-10-16": 6, - "2003-10-17": 12, - "2003-10-18": 2, - "2003-10-19": 7, - "2003-10-20": 5, - "2003-10-21": 7, - "2003-10-22": 9, - "2003-10-23": 11, - "2003-10-24": 7, - "2003-10-25": 2, - "2003-10-26": 3, - "2003-10-27": 7, - "2003-10-28": 3, - "2003-10-29": 1, - "2003-10-30": 4, - "2003-10-31": 3, - "2003-11-01": 2, - "2003-11-02": 1, - "2003-11-03": 8, - "2003-11-04": 5, - "2003-11-05": 1, - "2003-11-06": 7, - "2003-11-07": 1, - "2003-11-08": 9, - "2003-11-09": 1, - "2003-11-10": 5, - "2003-11-11": 4, - "2003-11-12": 5, - "2003-11-13": 3, - "2003-11-14": 3, - "2003-11-15": 1, - "2003-11-16": 1, - "2003-11-17": 3, - "2003-11-18": 4, - "2003-11-19": 9, - "2003-11-20": 2, - "2003-11-21": 6, - "2003-11-22": 5, - "2003-11-23": 4, - "2003-11-24": 6, - "2003-11-25": 8, - "2003-11-26": 3, - "2003-11-27": 8, - "2003-11-28": 9, - "2003-11-29": 3, - "2003-11-30": 3, - "2003-12-01": 4, - "2003-12-02": 4, - "2003-12-03": 6, - "2003-12-04": 4, - "2003-12-05": 2, - "2003-12-06": 3, - "2003-12-07": 3, - "2003-12-08": 5, - "2003-12-09": 6, - "2003-12-10": 5, - "2003-12-11": 15, - "2003-12-12": 11, - "2003-12-13": 1, - "2003-12-14": 8, - "2003-12-15": 7, - "2003-12-16": 9, - "2003-12-17": 8, - "2003-12-18": 6, - "2003-12-19": 7, - "2003-12-20": 2, - "2003-12-21": 14, - "2003-12-22": 3, - "2003-12-23": 14, - "2003-12-24": 2, - "2003-12-25": 5, - "2003-12-26": 4, - "2003-12-27": 10, - "2003-12-28": 3, - "2003-12-29": 3, - "2003-12-30": 1, - "2003-12-31": 5, - "2004-01-01": 7, - "2004-01-02": 15, - "2004-01-03": 9, - "2004-01-04": 8, - "2004-01-05": 10, - "2004-01-06": 16, - "2004-01-07": 14, - "2004-01-08": 10, - "2004-01-09": 7, - "2004-01-10": 6, - "2004-01-11": 6, - "2004-01-12": 17, - "2004-01-13": 9, - "2004-01-14": 10, - "2004-01-15": 9, - "2004-01-16": 12, - "2004-01-17": 5, - "2004-01-18": 1, - "2004-01-19": 9, - "2004-01-20": 9, - "2004-01-21": 9, - "2004-01-22": 12, - "2004-01-23": 16, - "2004-01-24": 9, - "2004-01-25": 6, - "2004-01-26": 11, - "2004-01-27": 7, - "2004-01-29": 6, - "2004-01-30": 7, - "2004-01-31": 9, - "2004-02-01": 10, - "2004-02-02": 11, - "2004-02-03": 5, - "2004-02-04": 3, - "2004-02-05": 6, - "2004-02-06": 7, - "2004-02-08": 2, - "2004-02-09": 3, - "2004-02-10": 9, - "2004-02-11": 7, - "2004-02-12": 9, - "2004-02-13": 4, - "2004-02-14": 7, - "2004-02-15": 9, - "2004-02-16": 5, - "2004-02-17": 3, - "2004-02-19": 2, - "2004-02-20": 4, - "2004-02-21": 1, - "2004-02-22": 6, - "2004-02-23": 6, - "2004-02-24": 2, - "2004-02-25": 4, - "2004-02-26": 9, - "2004-02-27": 3, - "2004-02-29": 7, - "2004-03-01": 5, - "2004-03-02": 5, - "2004-03-03": 8, - "2004-03-04": 15, - "2004-03-05": 4, - "2004-03-06": 5, - "2004-03-08": 17, - "2004-03-09": 1, - "2004-03-10": 5, - "2004-03-11": 14, - "2004-03-12": 3, - "2004-03-13": 2, - "2004-03-14": 5, - "2004-03-15": 9, - "2004-03-16": 3, - "2004-03-17": 2, - "2004-03-18": 5, - "2004-03-19": 5, - "2004-03-20": 1, - "2004-03-21": 7, - "2004-03-22": 9, - "2004-03-23": 4, - "2004-03-24": 6, - "2004-03-25": 10, - "2004-03-26": 4, - "2004-03-27": 3, - "2004-03-28": 3, - "2004-03-29": 1, - "2004-03-30": 5, - "2004-03-31": 8, - "2004-04-01": 8, - "2004-04-02": 9, - "2004-04-03": 5, - "2004-04-04": 4, - "2004-04-05": 3, - "2004-04-06": 7, - "2004-04-07": 3, - "2004-04-08": 4, - "2004-04-09": 4, - "2004-04-10": 2, - "2004-04-11": 4, - "2004-04-12": 6, - "2004-04-13": 2, - "2004-04-14": 2, - "2004-04-15": 2, - "2004-04-17": 1, - "2004-04-18": 3, - "2004-04-19": 3, - "2004-04-20": 1, - "2004-04-21": 6, - "2004-04-22": 3, - "2004-04-23": 3, - "2004-04-24": 3, - "2004-04-25": 14, - "2004-04-26": 8, - "2004-04-27": 5, - "2004-04-28": 8, - "2004-04-29": 3, - "2004-04-30": 1, - "2004-05-01": 2, - "2004-05-04": 1, - "2004-05-05": 9, - "2004-05-06": 6, - "2004-05-07": 2, - "2004-05-08": 3, - "2004-05-09": 2, - "2004-05-10": 3, - "2004-05-11": 4, - "2004-05-12": 7, - "2004-05-13": 11, - "2004-05-14": 6, - "2004-05-16": 8, - "2004-05-17": 12, - "2004-05-18": 9, - "2004-05-19": 4, - "2004-05-20": 16, - "2004-05-21": 7, - "2004-05-22": 7, - "2004-05-23": 3, - "2004-05-24": 6, - "2004-05-25": 8, - "2004-05-26": 5, - "2004-05-27": 1, - "2004-05-28": 6, - "2004-05-29": 4, - "2004-05-30": 3, - "2004-05-31": 10, - "2004-06-01": 11, - "2004-06-02": 4, - "2004-06-03": 8, - "2004-06-04": 10, - "2004-06-05": 5, - "2004-06-06": 9, - "2004-06-07": 3, - "2004-06-08": 7, - "2004-06-09": 5, - "2004-06-10": 7, - "2004-06-11": 8, - "2004-06-12": 10, - "2004-06-13": 4, - "2004-06-14": 2, - "2004-06-15": 4, - "2004-06-16": 2, - "2004-06-17": 3, - "2004-06-18": 5, - "2004-06-20": 5, - "2004-06-21": 2, - "2004-06-22": 3, - "2004-06-26": 9, - "2004-06-27": 2, - "2004-06-28": 6, - "2004-06-29": 4, - "2004-06-30": 3, - "2004-07-01": 6, - "2004-07-02": 11, - "2004-07-03": 14, - "2004-07-04": 15, - "2004-07-05": 5, - "2004-07-06": 7, - "2004-07-07": 4, - "2004-07-08": 5, - "2004-07-09": 11, - "2004-07-10": 3, - "2004-07-11": 2, - "2004-07-12": 15, - "2004-07-13": 6, - "2004-07-14": 5, - "2004-07-15": 2, - "2004-07-16": 3, - "2004-07-17": 5, - "2004-07-18": 4, - "2004-07-19": 5, - "2004-07-20": 6, - "2004-07-21": 4, - "2004-07-22": 5, - "2004-07-23": 1, - "2004-07-24": 5, - "2004-07-25": 3, - "2004-07-26": 5, - "2004-07-27": 7, - "2004-07-28": 1, - "2004-07-29": 6, - "2004-07-30": 5, - "2004-07-31": 4, - "2004-08-01": 1, - "2004-08-02": 4, - "2004-08-03": 8, - "2004-08-04": 6, - "2004-08-05": 1, - "2004-08-06": 7, - "2004-08-07": 7, - "2004-08-08": 1, - "2004-08-09": 4, - "2004-08-10": 4, - "2004-08-11": 2, - "2004-08-12": 9, - "2004-08-13": 7, - "2004-08-14": 4, - "2004-08-15": 8, - "2004-08-16": 10, - "2004-08-17": 14, - "2004-08-18": 5, - "2004-08-19": 6, - "2004-08-20": 5, - "2004-08-21": 1, - "2004-08-22": 4, - "2004-08-23": 4, - "2004-08-24": 1, - "2004-08-25": 6, - "2004-08-26": 8, - "2004-08-27": 7, - "2004-08-28": 5, - "2004-08-29": 3, - "2004-08-30": 8, - "2004-08-31": 12, - "2004-09-01": 8, - "2004-09-02": 2, - "2004-09-03": 3, - "2004-09-04": 2, - "2004-09-09": 2, - "2004-09-10": 5, - "2004-09-11": 3, - "2004-09-12": 2, - "2004-09-13": 17, - "2004-09-14": 10, - "2004-09-15": 11, - "2004-09-16": 4, - "2004-09-17": 7, - "2004-09-18": 3, - "2004-09-19": 6, - "2004-09-20": 10, - "2004-09-21": 8, - "2004-09-22": 14, - "2004-09-23": 21, - "2004-09-24": 16, - "2004-09-25": 5, - "2004-09-26": 8, - "2004-09-27": 9, - "2004-09-28": 5, - "2004-09-29": 14, - "2004-09-30": 4, - "2004-10-01": 12, - "2004-10-02": 11, - "2004-10-03": 6, - "2004-10-04": 2, - "2004-10-05": 1, - "2004-10-07": 13, - "2004-10-08": 5, - "2004-10-09": 2, - "2004-10-10": 2, - "2004-10-11": 8, - "2004-10-15": 7, - "2004-10-16": 3, - "2004-10-17": 5, - "2004-10-18": 5, - "2004-10-19": 2, - "2004-10-20": 4, - "2004-10-21": 8, - "2004-10-22": 6, - "2004-10-23": 7, - "2004-10-24": 1, - "2004-10-25": 4, - "2004-10-26": 15, - "2004-10-27": 6, - "2004-10-28": 6, - "2004-10-29": 10, - "2004-10-30": 4, - "2004-10-31": 8, - "2004-11-01": 9, - "2004-11-02": 6, - "2004-11-03": 10, - "2004-11-04": 7, - "2004-11-05": 5, - "2004-11-06": 8, - "2004-11-07": 4, - "2004-11-08": 9, - "2004-11-09": 4, - "2004-11-10": 2, - "2004-11-11": 5, - "2004-11-12": 7, - "2004-11-13": 5, - "2004-11-14": 14, - "2004-11-15": 6, - "2004-11-16": 5, - "2004-11-17": 7, - "2004-11-18": 4, - "2004-11-19": 4, - "2004-11-21": 7, - "2004-11-22": 13, - "2004-11-23": 4, - "2004-11-25": 2, - "2004-11-26": 3, - "2004-11-27": 4, - "2004-11-28": 4, - "2004-11-29": 4, - "2004-11-30": 3, - "2004-12-01": 1, - "2004-12-02": 1, - "2004-12-03": 5, - "2004-12-04": 2, - "2004-12-05": 2, - "2004-12-06": 4, - "2004-12-07": 2, - "2004-12-08": 1, - "2004-12-09": 10, - "2004-12-10": 3, - "2004-12-12": 6, - "2004-12-13": 1, - "2004-12-14": 10, - "2004-12-15": 1, - "2004-12-16": 6, - "2004-12-17": 1, - "2004-12-18": 6, - "2004-12-19": 3, - "2004-12-20": 3, - "2004-12-21": 2, - "2004-12-22": 15, - "2004-12-23": 6, - "2004-12-24": 4, - "2004-12-25": 2, - "2004-12-26": 5, - "2004-12-27": 6, - "2004-12-28": 2, - "2004-12-29": 1, - "2004-12-30": 3, - "2004-12-31": 5, - "2005-01-01": 1, - "2005-01-02": 6, - "2005-01-03": 7, - "2005-01-04": 6, - "2005-01-05": 5, - "2005-01-06": 6, - "2005-01-07": 7, - "2005-01-08": 4, - "2005-01-09": 12, - "2005-01-10": 5, - "2005-01-11": 4, - "2005-01-12": 13, - "2005-01-13": 2, - "2005-01-14": 15, - "2005-01-15": 6, - "2005-01-16": 8, - "2005-01-17": 7, - "2005-01-18": 12, - "2005-01-19": 12, - "2005-01-20": 8, - "2005-01-21": 9, - "2005-01-22": 4, - "2005-01-23": 3, - "2005-01-24": 9, - "2005-01-25": 19, - "2005-01-26": 7, - "2005-01-27": 3, - "2005-01-28": 13, - "2005-01-29": 6, - "2005-01-31": 9, - "2005-02-01": 15, - "2005-02-02": 7, - "2005-02-03": 8, - "2005-02-04": 6, - "2005-02-05": 9, - "2005-02-06": 7, - "2005-02-07": 5, - "2005-02-08": 10, - "2005-02-09": 8, - "2005-02-10": 7, - "2005-02-11": 4, - "2005-02-12": 6, - "2005-02-13": 11, - "2005-02-14": 13, - "2005-02-15": 15, - "2005-02-16": 9, - "2005-02-17": 6, - "2005-02-18": 2, - "2005-02-19": 5, - "2005-02-20": 8, - "2005-02-21": 12, - "2005-02-22": 12, - "2005-02-23": 13, - "2005-02-24": 7, - "2005-02-25": 8, - "2005-02-26": 3, - "2005-02-27": 7, - "2005-02-28": 11, - "2005-03-01": 13, - "2005-03-02": 8, - "2005-03-03": 12, - "2005-03-04": 5, - "2005-03-05": 3, - "2005-03-06": 11, - "2005-03-07": 6, - "2005-03-08": 7, - "2005-03-09": 2, - "2005-03-10": 6, - "2005-03-11": 5, - "2005-03-13": 2, - "2005-03-14": 10, - "2005-03-15": 2, - "2005-03-16": 11, - "2005-03-17": 15, - "2005-03-18": 3, - "2005-03-19": 1, - "2005-03-20": 3, - "2005-03-21": 9, - "2005-03-22": 4, - "2005-03-23": 4, - "2005-03-24": 4, - "2005-03-26": 4, - "2005-03-27": 3, - "2005-03-28": 5, - "2005-03-29": 8, - "2005-03-30": 3, - "2005-03-31": 5, - "2005-04-01": 7, - "2005-04-02": 2, - "2005-04-03": 3, - "2005-04-04": 4, - "2005-04-05": 6, - "2005-04-06": 5, - "2005-04-07": 3, - "2005-04-08": 2, - "2005-04-09": 4, - "2005-04-10": 7, - "2005-04-11": 4, - "2005-04-12": 4, - "2005-04-13": 4, - "2005-04-14": 4, - "2005-04-15": 2, - "2005-04-16": 3, - "2005-04-17": 3, - "2005-04-18": 3, - "2005-04-19": 7, - "2005-04-20": 1, - "2005-04-21": 2, - "2005-04-22": 2, - "2005-04-23": 6, - "2005-04-24": 5, - "2005-04-25": 4, - "2005-04-26": 2, - "2005-04-27": 3, - "2005-04-29": 5, - "2005-04-30": 2, - "2005-05-01": 2, - "2005-05-02": 2, - "2005-05-08": 3, - "2005-05-09": 1, - "2005-05-10": 1, - "2005-05-12": 3, - "2005-05-14": 2, - "2005-05-15": 2, - "2005-05-16": 3, - "2005-05-17": 3, - "2005-05-18": 3, - "2005-05-19": 2, - "2005-05-20": 4, - "2005-05-21": 1, - "2005-05-22": 1, - "2005-05-23": 2, - "2005-05-24": 2, - "2005-05-25": 4, - "2005-05-26": 11, - "2005-05-27": 8, - "2005-05-28": 7, - "2005-05-29": 3, - "2005-05-30": 4, - "2005-05-31": 9, - "2005-06-01": 3, - "2005-06-02": 4, - "2005-06-04": 5, - "2005-06-05": 3, - "2005-06-06": 3, - "2005-06-07": 8, - "2005-06-08": 7, - "2005-06-09": 6, - "2005-06-10": 5, - "2005-06-11": 1, - "2005-06-12": 3, - "2005-06-13": 5, - "2005-06-14": 3, - "2005-06-15": 1, - "2005-06-16": 6, - "2005-06-17": 5, - "2005-06-18": 5, - "2005-06-19": 3, - "2005-06-20": 7, - "2005-06-21": 5, - "2005-06-22": 1, - "2005-06-23": 11, - "2005-06-24": 3, - "2005-06-25": 6, - "2005-06-26": 3, - "2005-06-27": 4, - "2005-06-28": 6, - "2005-06-29": 5, - "2005-06-30": 6, - "2005-07-01": 5, - "2005-07-03": 6, - "2005-07-04": 1, - "2005-07-05": 6, - "2005-07-06": 4, - "2005-07-07": 3, - "2005-07-08": 5, - "2005-07-09": 9, - "2005-07-10": 8, - "2005-07-11": 2, - "2005-07-12": 2, - "2005-07-13": 3, - "2005-07-14": 1, - "2005-07-15": 2, - "2005-07-16": 7, - "2005-07-17": 1, - "2005-07-18": 2, - "2005-07-20": 3, - "2005-07-21": 2, - "2005-07-22": 1, - "2005-07-23": 5, - "2005-07-24": 8, - "2005-07-26": 3, - "2005-07-27": 4, - "2005-07-28": 6, - "2005-07-29": 5, - "2005-07-30": 6, - "2005-07-31": 7, - "2005-08-01": 1, - "2005-08-02": 10, - "2005-08-03": 7, - "2005-08-04": 5, - "2005-08-05": 4, - "2005-08-06": 1, - "2005-08-07": 2, - "2005-08-08": 3, - "2005-08-09": 2, - "2005-08-10": 4, - "2005-08-11": 4, - "2005-08-12": 3, - "2005-08-13": 3, - "2005-08-14": 4, - "2005-08-15": 1, - "2005-08-16": 4, - "2005-08-17": 7, - "2005-08-18": 1, - "2005-08-19": 4, - "2005-08-20": 4, - "2005-08-21": 2, - "2005-08-22": 2, - "2005-08-23": 1, - "2005-08-24": 2, - "2005-08-25": 2, - "2005-08-26": 1, - "2005-08-27": 3, - "2005-08-28": 1, - "2005-08-29": 3, - "2005-08-30": 2, - "2005-09-01": 1, - "2005-09-02": 4, - "2005-09-03": 1, - "2005-09-04": 3, - "2005-09-06": 2, - "2005-09-07": 1, - "2005-09-08": 2, - "2005-09-09": 2, - "2005-09-10": 2, - "2005-09-12": 1, - "2005-09-13": 2, - "2005-09-14": 1, - "2005-09-15": 3, - "2005-09-16": 8, - "2005-09-17": 3, - "2005-09-19": 2, - "2005-09-20": 1, - "2005-09-21": 1, - "2005-09-22": 1, - "2005-09-23": 3, - "2005-09-25": 1, - "2005-09-27": 3, - "2005-09-28": 3, - "2005-09-29": 1, - "2005-09-30": 4, - "2005-10-01": 3, - "2005-10-02": 2, - "2005-10-03": 3, - "2005-10-04": 3, - "2005-10-05": 3, - "2005-10-06": 3, - "2005-10-07": 4, - "2005-10-08": 4, - "2005-10-09": 4, - "2005-10-11": 7, - "2005-10-12": 2, - "2005-10-13": 2, - "2005-10-14": 9, - "2005-10-15": 6, - "2005-10-16": 1, - "2005-10-17": 1, - "2005-10-18": 3, - "2005-10-19": 1, - "2005-10-20": 3, - "2005-10-21": 3, - "2005-10-22": 4, - "2005-10-23": 2, - "2005-10-24": 3, - "2005-10-25": 4, - "2005-10-26": 6, - "2005-10-27": 7, - "2005-10-28": 2, - "2005-10-29": 3, - "2005-10-30": 1, - "2005-10-31": 5, - "2005-11-01": 3, - "2005-11-02": 2, - "2005-11-04": 2, - "2005-11-05": 2, - "2005-11-07": 1, - "2005-11-10": 1, - "2005-11-11": 3, - "2005-11-12": 4, - "2005-11-13": 10, - "2005-11-14": 3, - "2005-11-16": 4, - "2005-11-17": 3, - "2005-11-18": 1, - "2005-11-19": 5, - "2005-11-21": 4, - "2005-11-22": 9, - "2005-11-23": 5, - "2005-11-24": 7, - "2005-11-26": 4, - "2005-11-27": 2, - "2005-11-28": 5, - "2005-11-29": 1, - "2005-11-30": 5, - "2005-12-01": 3, - "2005-12-02": 5, - "2005-12-03": 6, - "2005-12-04": 3, - "2005-12-05": 4, - "2005-12-06": 4, - "2005-12-07": 6, - "2005-12-08": 4, - "2005-12-09": 10, - "2005-12-10": 3, - "2005-12-11": 1, - "2005-12-12": 3, - "2005-12-13": 6, - "2005-12-14": 3, - "2005-12-15": 6, - "2005-12-16": 5, - "2005-12-17": 7, - "2005-12-18": 6, - "2005-12-19": 3, - "2005-12-20": 3, - "2005-12-21": 5, - "2005-12-22": 3, - "2005-12-23": 2, - "2005-12-26": 6, - "2005-12-27": 2, - "2005-12-28": 1, - "2005-12-29": 2, - "2005-12-30": 5, - "2005-12-31": 3, - "2006-01-02": 10, - "2006-01-03": 5, - "2006-01-04": 8, - "2006-01-05": 5, - "2006-01-06": 11, - "2006-01-07": 6, - "2006-01-08": 2, - "2006-01-09": 9, - "2006-01-10": 7, - "2006-01-11": 6, - "2006-01-12": 3, - "2006-01-13": 4, - "2006-01-14": 1, - "2006-01-15": 2, - "2006-01-16": 1, - "2006-01-17": 5, - "2006-01-18": 3, - "2006-01-19": 4, - "2006-01-20": 10, - "2006-01-21": 3, - "2006-01-22": 1, - "2006-01-23": 7, - "2006-01-24": 4, - "2006-01-25": 3, - "2006-01-26": 6, - "2006-01-27": 4, - "2006-01-28": 2, - "2006-01-29": 3, - "2006-01-31": 2, - "2006-02-01": 5, - "2006-02-02": 10, - "2006-02-03": 2, - "2006-02-04": 1, - "2006-02-05": 2, - "2006-02-06": 6, - "2006-02-07": 3, - "2006-02-08": 6, - "2006-02-09": 7, - "2006-02-10": 7, - "2006-02-11": 2, - "2006-02-12": 2, - "2006-02-13": 3, - "2006-02-14": 11, - "2006-02-15": 5, - "2006-02-16": 4, - "2006-02-17": 5, - "2006-02-18": 3, - "2006-02-19": 2, - "2006-02-20": 5, - "2006-02-21": 5, - "2006-02-22": 10, - "2006-02-23": 10, - "2006-02-24": 7, - "2006-02-25": 6, - "2006-02-26": 4, - "2006-02-27": 3, - "2006-02-28": 11, - "2006-03-01": 3, - "2006-03-02": 2, - "2006-03-03": 3, - "2006-03-04": 8, - "2006-03-05": 3, - "2006-03-06": 4, - "2006-03-07": 1, - "2006-03-09": 7, - "2006-03-10": 1, - "2006-03-12": 3, - "2006-03-13": 9, - "2006-03-14": 1, - "2006-03-16": 4, - "2006-03-18": 5, - "2006-03-20": 4, - "2006-03-21": 1, - "2006-03-22": 2, - "2006-03-23": 1, - "2006-03-24": 1, - "2006-03-25": 3, - "2006-03-26": 1, - "2006-03-27": 2, - "2006-03-28": 2, - "2006-03-29": 3, - "2006-03-30": 3, - "2006-03-31": 3, - "2006-04-01": 4, - "2006-04-02": 1, - "2006-04-04": 1, - "2006-04-06": 5, - "2006-04-07": 1, - "2006-04-08": 1, - "2006-04-10": 3, - "2006-04-11": 1, - "2006-04-13": 3, - "2006-04-14": 1, - "2006-04-16": 1, - "2006-04-18": 4, - "2006-04-19": 2, - "2006-04-21": 6, - "2006-04-22": 2, - "2006-04-23": 2, - "2006-04-24": 2, - "2006-04-26": 2, - "2006-04-27": 3, - "2006-04-28": 1, - "2006-04-29": 1, - "2006-05-02": 4, - "2006-05-06": 1, - "2006-05-07": 1, - "2006-05-08": 1, - "2006-05-09": 3, - "2006-05-12": 1, - "2006-05-14": 1, - "2006-05-15": 2, - "2006-05-16": 3, - "2006-05-17": 3, - "2006-05-18": 2, - "2006-05-19": 2, - "2006-05-22": 4, - "2006-05-24": 1, - "2006-05-26": 4, - "2006-05-29": 9, - "2006-05-31": 3, - "2006-06-01": 1, - "2006-06-02": 2, - "2006-06-06": 2, - "2006-06-07": 1, - "2006-06-09": 3, - "2006-06-12": 5, - "2006-06-14": 1, - "2006-06-16": 2, - "2006-06-19": 6, - "2006-06-26": 11, - "2006-06-27": 1, - "2006-06-28": 4, - "2006-06-29": 3, - "2006-06-30": 4, - "2006-07-04": 2, - "2006-07-05": 2, - "2006-07-10": 7, - "2006-07-11": 2, - "2006-07-12": 1, - "2006-07-13": 1, - "2006-07-14": 4, - "2006-07-17": 3, - "2006-07-19": 4, - "2006-07-20": 1, - "2006-07-21": 3, - "2006-07-24": 1, - "2006-07-25": 3, - "2006-07-26": 1, - "2006-07-27": 1, - "2006-07-28": 4, - "2006-07-31": 11, - "2006-08-01": 7, - "2006-08-02": 1, - "2006-08-03": 4, - "2006-08-04": 5, - "2006-08-05": 1, - "2006-08-07": 10, - "2006-08-08": 2, - "2006-08-09": 3, - "2006-08-10": 4, - "2006-08-11": 3, - "2006-08-15": 3, - "2006-08-16": 4, - "2006-08-17": 1, - "2006-08-18": 1, - "2006-08-23": 3, - "2006-08-25": 1, - "2006-08-29": 1, - "2006-09-02": 1, - "2006-09-03": 1, - "2006-09-04": 1, - "2006-09-11": 3, - "2006-09-12": 5, - "2006-09-13": 1, - "2006-09-14": 1, - "2006-09-15": 1, - "2006-09-18": 6, - "2006-09-19": 1, - "2006-09-20": 6, - "2006-09-21": 4, - "2006-09-22": 2, - "2006-09-24": 1, - "2006-09-25": 1, - "2006-09-26": 3, - "2006-09-27": 4, - "2006-09-28": 5, - "2006-09-29": 6, - "2006-10-02": 4, - "2006-10-04": 5, - "2006-10-05": 6, - "2006-10-06": 6, - "2006-10-09": 7, - "2006-10-10": 9, - "2006-10-11": 1, - "2006-10-12": 8, - "2006-10-13": 2, - "2006-10-16": 4, - "2006-10-17": 3, - "2006-10-18": 4, - "2006-10-20": 1, - "2006-10-23": 5, - "2006-10-24": 6, - "2006-10-25": 6, - "2006-10-27": 8, - "2006-10-30": 7, - "2006-10-31": 9, - "2006-11-02": 9, - "2006-11-03": 7, - "2006-11-06": 7, - "2006-11-07": 9, - "2006-11-08": 7, - "2006-11-09": 5, - "2006-11-10": 3, - "2006-11-13": 4, - "2006-11-15": 2, - "2006-11-16": 2, - "2006-11-20": 6, - "2006-11-21": 4, - "2006-11-22": 5, - "2006-11-23": 2, - "2006-11-24": 6, - "2006-11-27": 6, - "2006-11-28": 3, - "2006-11-29": 3, - "2006-11-30": 6, - "2006-12-01": 4, - "2006-12-04": 8, - "2006-12-05": 5, - "2006-12-06": 4, - "2006-12-07": 3, - "2006-12-11": 3, - "2006-12-13": 5, - "2006-12-14": 2, - "2006-12-15": 5, - "2006-12-23": 1, - "2006-12-27": 1, - "2006-12-28": 2, - "2006-12-29": 3, - "2007-01-03": 5, - "2007-01-04": 2, - "2007-01-08": 10, - "2007-01-09": 3, - "2007-01-10": 7, - "2007-01-11": 5, - "2007-01-12": 5, - "2007-01-15": 6, - "2007-01-16": 1, - "2007-01-17": 3, - "2007-01-18": 3, - "2007-01-19": 4, - "2007-01-22": 2, - "2007-01-23": 6, - "2007-01-24": 2, - "2007-01-25": 8, - "2007-01-26": 5, - "2007-01-29": 2, - "2007-01-30": 3, - "2007-01-31": 4, - "2007-02-01": 3, - "2007-02-02": 4, - "2007-02-05": 6, - "2007-02-06": 1, - "2007-02-07": 3, - "2007-02-08": 2, - "2007-02-09": 4, - "2007-02-12": 2, - "2007-02-13": 3, - "2007-02-14": 1, - "2007-02-15": 1, - "2007-02-16": 1, - "2007-02-19": 2, - "2007-02-20": 2, - "2007-02-21": 6, - "2007-02-22": 1, - "2007-03-10": 2, - "2007-03-11": 1, - "2007-03-12": 2, - "2007-03-14": 7, - "2007-03-15": 3, - "2007-03-16": 6, - "2007-03-19": 4, - "2007-03-21": 5, - "2007-03-22": 7, - "2007-03-23": 2, - "2007-03-26": 2, - "2007-03-27": 5, - "2007-03-28": 2, - "2007-03-29": 5, - "2007-04-02": 2, - "2007-04-03": 5, - "2007-04-04": 7, - "2007-04-05": 4, - "2007-04-06": 1, - "2007-04-10": 6, - "2007-04-11": 3, - "2007-04-12": 4, - "2007-04-13": 1, - "2007-04-14": 3, - "2007-04-16": 7, - "2007-04-17": 8, - "2007-04-18": 8, - "2007-04-19": 3, - "2007-04-20": 4, - "2007-04-23": 11, - "2007-04-24": 8, - "2007-04-25": 8, - "2007-04-26": 1, - "2007-04-27": 3, - "2007-05-02": 2, - "2007-05-03": 6, - "2007-05-04": 5, - "2007-05-06": 1, - "2007-05-07": 5, - "2007-05-08": 4, - "2007-05-09": 10, - "2007-05-10": 5, - "2007-05-11": 3, - "2007-05-14": 4, - "2007-05-15": 4, - "2007-05-16": 4, - "2007-05-17": 1, - "2007-05-18": 7, - "2007-05-21": 8, - "2007-05-22": 5, - "2007-05-23": 6, - "2007-05-24": 7, - "2007-05-25": 3, - "2007-05-27": 1, - "2007-05-29": 4, - "2007-05-30": 10, - "2007-05-31": 7, - "2007-06-01": 7, - "2007-06-04": 3, - "2007-06-05": 7, - "2007-06-06": 4, - "2007-06-08": 3, - "2007-06-11": 4, - "2007-06-13": 3, - "2007-06-14": 1, - "2007-06-15": 2, - "2007-06-18": 1, - "2007-06-19": 1, - "2007-06-20": 3, - "2007-06-21": 2, - "2007-06-22": 5, - "2007-06-25": 7, - "2007-06-26": 3, - "2007-06-27": 4, - "2007-06-28": 5, - "2007-06-29": 3, - "2007-07-02": 3, - "2007-07-03": 5, - "2007-07-04": 3, - "2007-07-05": 1, - "2007-07-06": 4, - "2007-07-07": 1, - "2007-07-08": 1, - "2007-07-09": 7, - "2007-07-10": 3, - "2007-07-11": 2, - "2007-07-13": 3, - "2007-07-16": 4, - "2007-07-17": 3, - "2007-07-18": 3, - "2007-07-19": 5, - "2007-07-20": 9, - "2007-07-23": 2, - "2007-07-24": 4, - "2007-07-25": 8, - "2007-07-26": 5, - "2007-07-27": 1, - "2007-07-30": 4, - "2007-07-31": 7, - "2007-08-01": 3, - "2007-08-02": 1, - "2007-08-03": 7, - "2007-08-06": 5, - "2007-08-08": 1, - "2007-08-09": 3, - "2007-08-10": 2, - "2007-08-11": 1, - "2007-08-30": 1, - "2007-09-02": 1, - "2007-09-03": 1, - "2007-09-04": 1, - "2007-09-05": 5, - "2007-09-07": 2, - "2007-09-10": 1, - "2007-09-12": 4, - "2007-09-15": 2, - "2007-09-17": 4, - "2007-09-20": 1, - "2007-09-24": 5, - "2007-09-28": 6, - "2007-10-01": 3, - "2007-10-02": 1, - "2007-10-04": 1, - "2007-10-05": 1, - "2007-10-10": 2, - "2007-10-11": 1, - "2007-10-12": 2, - "2007-10-16": 3, - "2007-10-17": 6, - "2007-10-18": 5, - "2007-10-19": 2, - "2007-10-20": 1, - "2007-10-21": 1, - "2007-10-22": 2, - "2007-10-23": 3, - "2007-10-26": 1, - "2007-10-29": 2, - "2007-10-30": 1, - "2007-11-05": 2, - "2007-11-06": 1, - "2007-11-08": 1, - "2007-11-12": 8, - "2007-11-14": 1, - "2007-11-19": 9, - "2007-11-23": 3, - "2007-11-26": 1, - "2007-11-28": 6, - "2007-11-29": 1, - "2007-11-30": 4, - "2007-12-03": 1, - "2007-12-04": 5, - "2007-12-05": 3, - "2007-12-06": 5, - "2007-12-07": 5, - "2007-12-11": 5, - "2007-12-14": 4, - "2007-12-17": 4, - "2007-12-18": 1, - "2007-12-19": 3, - "2007-12-20": 2, - "2007-12-21": 4, - "2007-12-25": 1, - "2007-12-27": 1, - "2008-01-02": 2, - "2008-01-03": 3, - "2008-01-04": 5, - "2008-01-06": 1, - "2008-01-07": 6, - "2008-01-08": 2, - "2008-01-09": 1, - "2008-01-11": 6, - "2008-01-15": 2, - "2008-01-16": 1, - "2008-01-17": 5, - "2008-01-18": 3, - "2008-01-20": 1, - "2008-01-21": 11, - "2008-01-22": 6, - "2008-01-23": 4, - "2008-01-24": 1, - "2008-01-25": 1, - "2008-01-28": 5, - "2008-01-31": 7, - "2008-02-01": 6, - "2008-02-06": 1, - "2008-02-07": 2, - "2008-02-11": 4, - "2008-02-12": 1, - "2008-02-13": 4, - "2008-02-14": 1, - "2008-02-15": 3, - "2008-02-18": 7, - "2008-02-19": 7, - "2008-02-22": 4, - "2008-02-25": 2, - "2008-02-26": 8, - "2008-02-27": 1, - "2008-02-28": 1, - "2008-02-29": 7, - "2008-03-01": 1, - "2008-03-02": 3, - "2008-03-03": 2, - "2008-03-05": 1, - "2008-03-07": 4, - "2008-03-08": 2, - "2008-03-09": 3, - "2008-03-13": 2, - "2008-03-15": 2, - "2008-03-17": 3, - "2008-03-18": 1, - "2008-03-20": 1, - "2008-03-21": 3, - "2008-03-22": 1, - "2008-03-25": 2, - "2008-03-26": 1, - "2008-03-27": 2, - "2008-03-28": 5, - "2008-03-31": 1, - "2008-04-01": 5, - "2008-04-02": 2, - "2008-04-03": 10, - "2008-04-04": 1, - "2008-04-09": 1, - "2008-04-11": 8, - "2008-04-14": 5, - "2008-04-17": 9, - "2008-04-18": 6, - "2008-04-21": 3, - "2008-04-25": 1, - "2008-04-26": 1, - "2008-04-27": 1, - "2008-04-28": 1, - "2008-05-01": 1, - "2008-05-02": 6, - "2008-05-05": 4, - "2008-05-06": 2, - "2008-05-07": 4, - "2008-05-09": 5, - "2008-05-13": 5, - "2008-05-14": 4, - "2008-05-15": 10, - "2008-05-17": 1, - "2008-05-18": 2, - "2008-05-19": 2, - "2008-05-26": 4, - "2008-05-30": 3, - "2008-06-01": 1, - "2008-06-02": 7, - "2008-06-03": 1, - "2008-06-04": 1, - "2008-06-05": 2, - "2008-06-06": 6, - "2008-06-09": 7, - "2008-06-11": 3, - "2008-06-12": 1, - "2008-06-13": 2, - "2008-06-16": 1, - "2008-06-17": 1, - "2008-06-19": 2, - "2008-06-20": 1, - "2008-06-21": 1, - "2008-06-23": 10, - "2008-06-24": 2, - "2008-06-25": 4, - "2008-06-26": 8, - "2008-06-27": 5, - "2008-06-28": 2, - "2008-06-29": 2, - "2008-06-30": 6, - "2008-07-01": 1, - "2008-07-02": 2, - "2008-07-03": 8, - "2008-07-07": 1, - "2008-07-08": 2, - "2008-07-09": 6, - "2008-07-14": 7, - "2008-07-15": 1, - "2008-07-16": 3, - "2008-07-17": 1, - "2008-07-19": 1, - "2008-07-21": 3, - "2008-07-23": 5, - "2008-07-24": 1, - "2008-07-25": 3, - "2008-07-29": 1, - "2008-07-30": 1, - "2008-08-06": 1, - "2008-08-08": 3, - "2008-08-14": 1, - "2008-08-15": 1, - "2008-08-18": 2, - "2008-08-19": 2, - "2008-08-20": 5, - "2008-08-21": 3, - "2008-08-22": 1, - "2008-08-25": 7, - "2008-08-26": 3, - "2008-08-28": 1, - "2008-08-29": 3, - "2008-08-31": 1, - "2008-09-01": 1, - "2008-09-05": 7, - "2008-09-08": 2, - "2008-09-10": 2, - "2008-09-11": 1, - "2008-09-12": 2, - "2008-09-15": 4, - "2008-09-16": 2, - "2008-09-17": 4, - "2008-09-19": 5, - "2008-09-20": 3, - "2008-09-21": 2, - "2008-09-23": 2, - "2008-09-24": 2, - "2008-09-25": 1, - "2008-09-26": 3, - "2008-09-29": 5, - "2008-10-01": 1, - "2008-10-03": 1, - "2008-10-04": 1, - "2008-10-05": 1, - "2008-10-06": 1, - "2008-10-07": 6, - "2008-10-10": 3, - "2008-10-11": 2, - "2008-10-13": 14, - "2008-10-14": 3, - "2008-10-15": 1, - "2008-10-17": 2, - "2008-10-18": 5, - "2008-10-19": 2, - "2008-10-20": 1, - "2008-10-21": 2, - "2008-10-23": 1, - "2008-10-24": 2, - "2008-10-27": 2, - "2008-10-28": 1, - "2008-10-29": 2, - "2008-10-30": 1, - "2008-10-31": 5, - "2008-11-03": 1, - "2008-11-06": 4, - "2008-11-10": 4, - "2008-11-11": 2, - "2008-11-13": 2, - "2008-11-14": 5, - "2008-11-17": 4, - "2008-11-20": 3, - "2008-11-22": 1, - "2008-11-24": 3, - "2008-11-26": 2, - "2008-11-28": 5, - "2008-11-29": 2, - "2008-12-03": 1, - "2008-12-15": 6, - "2008-12-16": 3, - "2008-12-18": 1, - "2008-12-24": 1, - "2008-12-30": 2, - "2009-01-01": 1, - "2009-01-02": 1, - "2009-01-05": 4, - "2009-01-07": 1, - "2009-01-09": 2, - "2009-01-10": 1, - "2009-01-12": 4, - "2009-01-16": 2, - "2009-01-19": 3, - "2009-01-20": 2, - "2009-01-21": 1, - "2009-01-23": 2, - "2009-01-26": 3, - "2009-01-30": 3, - "2009-01-31": 2, - "2009-02-02": 1, - "2009-02-03": 2, - "2009-02-04": 2, - "2009-02-06": 4, - "2009-02-08": 2, - "2009-02-09": 1, - "2009-02-11": 1, - "2009-02-13": 3, - "2009-02-15": 1, - "2009-02-16": 9, - "2009-02-18": 2, - "2009-02-20": 5, - "2009-02-25": 3, - "2009-02-26": 1, - "2009-03-03": 1, - "2009-03-04": 1, - "2009-03-05": 2, - "2009-03-06": 2, - "2009-03-07": 1, - "2009-03-09": 4, - "2009-03-11": 2, - "2009-03-12": 3, - "2009-03-13": 6, - "2009-03-14": 3, - "2009-03-18": 2, - "2009-03-19": 1, - "2009-03-23": 3, - "2009-03-24": 3, - "2009-03-25": 2, - "2009-03-26": 1, - "2009-03-28": 3, - "2009-03-29": 2, - "2009-03-30": 3, - "2009-04-01": 2, - "2009-04-03": 3, - "2009-04-08": 3, - "2009-04-12": 3, - "2009-04-14": 1, - "2009-04-15": 1, - "2009-04-16": 3, - "2009-04-18": 1, - "2009-04-20": 2, - "2009-04-21": 2, - "2009-04-23": 1, - "2009-04-24": 1, - "2009-04-25": 1, - "2009-04-27": 2, - "2009-04-29": 2, - "2009-05-01": 2, - "2009-05-04": 1, - "2009-05-07": 5, - "2009-05-09": 1, - "2009-05-15": 2, - "2009-05-17": 1, - "2009-05-22": 4, - "2009-05-27": 2, - "2009-05-29": 5, - "2009-06-01": 1, - "2009-06-04": 1, - "2009-06-07": 1, - "2009-06-11": 1, - "2009-06-13": 1, - "2009-06-15": 2, - "2009-06-16": 3, - "2009-06-18": 2, - "2009-06-20": 3, - "2009-06-21": 2, - "2009-06-22": 1, - "2009-06-23": 1, - "2009-06-24": 2, - "2009-06-26": 10, - "2009-06-29": 1, - "2009-07-03": 2, - "2009-07-06": 3, - "2009-07-07": 1, - "2009-07-09": 1, - "2009-07-10": 8, - "2009-07-13": 2, - "2009-07-17": 3, - "2009-07-19": 4, - "2009-07-20": 6, - "2009-07-21": 1, - "2009-07-23": 3, - "2009-07-27": 3, - "2009-07-29": 3, - "2009-07-31": 1, - "2009-08-01": 1, - "2009-08-02": 1, - "2009-08-03": 4, - "2009-08-05": 6, - "2009-08-06": 1, - "2009-08-07": 1, - "2009-08-08": 5, - "2009-08-10": 3, - "2009-08-12": 1, - "2009-08-14": 3, - "2009-08-18": 1, - "2009-09-01": 1, - "2009-09-02": 6, - "2009-09-04": 3, - "2009-09-06": 2, - "2009-09-07": 1, - "2009-09-09": 8, - "2009-09-10": 1, - "2009-09-11": 2, - "2009-09-13": 1, - "2009-09-16": 1, - "2009-09-18": 3, - "2009-09-19": 2, - "2009-09-20": 2, - "2009-09-21": 1, - "2009-09-23": 2, - "2009-09-24": 1, - "2009-09-25": 3, - "2009-09-26": 4, - "2009-09-27": 1, - "2009-09-28": 4, - "2009-09-29": 3, - "2009-09-30": 5, - "2009-10-01": 2, - "2009-10-02": 1, - "2009-10-03": 1, - "2009-10-04": 4, - "2009-10-05": 1, - "2009-10-06": 1, - "2009-10-07": 6, - "2009-10-08": 1, - "2009-10-09": 4, - "2009-10-10": 1, - "2009-10-11": 2, - "2009-10-12": 3, - "2009-10-13": 5, - "2009-10-14": 3, - "2009-10-15": 2, - "2009-10-17": 3, - "2009-10-18": 1, - "2009-10-19": 1, - "2009-10-21": 1, - "2009-10-22": 1, - "2009-10-23": 7, - "2009-10-24": 1, - "2009-10-25": 2, - "2009-10-26": 2, - "2009-10-27": 1, - "2009-10-29": 4, - "2009-10-30": 1, - "2009-10-31": 6, - "2009-11-01": 1, - "2009-11-03": 4, - "2009-11-04": 8, - "2009-11-06": 1, - "2009-11-08": 2, - "2009-11-09": 3, - "2009-11-10": 2, - "2009-11-11": 2, - "2009-11-12": 4, - "2009-11-13": 1, - "2009-11-14": 4, - "2009-11-15": 1, - "2009-11-18": 7, - "2009-11-20": 3, - "2009-11-21": 1, - "2009-11-22": 1, - "2009-11-23": 2, - "2009-11-24": 4, - "2009-11-25": 1, - "2009-11-26": 1, - "2009-12-03": 3, - "2009-12-04": 1, - "2009-12-05": 2, - "2009-12-06": 1, - "2009-12-07": 4, - "2009-12-08": 4, - "2009-12-10": 3, - "2009-12-11": 4, - "2009-12-13": 3, - "2009-12-14": 5, - "2009-12-15": 2, - "2009-12-16": 3, - "2009-12-17": 12, - "2009-12-18": 8, - "2009-12-19": 2, - "2009-12-20": 3, - "2009-12-21": 6, - "2009-12-22": 3, - "2009-12-23": 1, - "2009-12-24": 1, - "2009-12-25": 2, - "2009-12-26": 7, - "2009-12-27": 6, - "2009-12-28": 1, - "2009-12-29": 1, - "2009-12-30": 5, - "2009-12-31": 5, - "2010-01-01": 2, - "2010-01-02": 1, - "2010-01-03": 1, - "2010-01-04": 2, - "2010-01-05": 5, - "2010-01-06": 3, - "2010-01-07": 1, - "2010-01-08": 3, - "2010-01-09": 10, - "2010-01-10": 6, - "2010-01-11": 8, - "2010-01-12": 5, - "2010-01-13": 1, - "2010-01-15": 4, - "2010-01-16": 1, - "2010-01-17": 1, - "2010-01-18": 5, - "2010-01-20": 12, - "2010-01-21": 1, - "2010-01-22": 4, - "2010-01-23": 9, - "2010-01-24": 7, - "2010-01-25": 3, - "2010-01-26": 3, - "2010-01-27": 5, - "2010-01-28": 3, - "2010-01-29": 6, - "2010-01-31": 2, - "2010-02-02": 2, - "2010-02-03": 5, - "2010-02-04": 2, - "2010-02-05": 2, - "2010-02-06": 2, - "2010-02-07": 2, - "2010-02-08": 1, - "2010-02-09": 3, - "2010-02-10": 2, - "2010-02-12": 5, - "2010-02-13": 4, - "2010-02-14": 1, - "2010-02-15": 1, - "2010-02-19": 1, - "2010-02-20": 1, - "2010-02-21": 3, - "2010-02-22": 3, - "2010-02-24": 3, - "2010-02-26": 1, - "2010-02-27": 4, - "2010-02-28": 12, - "2010-03-01": 3, - "2010-03-02": 1, - "2010-03-07": 4, - "2010-03-08": 2, - "2010-03-10": 1, - "2010-03-12": 2, - "2010-03-29": 2, - "2010-03-31": 1, - "2010-04-02": 3, - "2010-04-03": 1, - "2010-04-06": 2, - "2010-04-07": 3, - "2010-04-08": 1, - "2010-04-09": 3, - "2010-04-15": 1, - "2010-04-17": 1, - "2010-04-18": 2, - "2010-04-19": 2, - "2010-04-22": 1, - "2010-04-23": 2, - "2010-04-27": 4, - "2010-04-28": 1, - "2010-04-29": 2, - "2010-05-02": 1, - "2010-05-05": 5, - "2010-05-06": 2, - "2010-05-07": 2, - "2010-05-08": 1, - "2010-05-09": 1, - "2010-05-12": 4, - "2010-05-14": 1, - "2010-05-15": 6, - "2010-05-16": 1, - "2010-05-18": 1, - "2010-05-19": 1, - "2010-05-20": 1, - "2010-05-21": 1, - "2010-05-22": 1, - "2010-05-23": 1, - "2010-05-27": 5, - "2010-05-28": 1, - "2010-05-30": 2, - "2010-05-31": 2, - "2010-06-03": 3, - "2010-06-04": 4, - "2010-06-06": 3, - "2010-06-07": 1, - "2010-06-08": 1, - "2010-06-09": 2, - "2010-06-12": 3, - "2010-06-16": 3, - "2010-06-17": 1, - "2010-06-18": 1, - "2010-06-19": 1, - "2010-06-20": 3, - "2010-06-23": 3, - "2010-06-27": 3, - "2010-07-01": 1, - "2010-07-02": 1, - "2010-07-03": 1, - "2010-07-04": 2, - "2010-07-05": 1, - "2010-07-10": 2, - "2010-07-11": 2, - "2010-07-12": 2, - "2010-07-16": 2, - "2010-07-17": 2, - "2010-07-18": 1, - "2010-07-19": 2, - "2010-07-20": 1, - "2010-07-23": 2, - "2010-07-24": 2, - "2010-07-25": 1, - "2010-07-26": 2, - "2010-07-27": 2, - "2010-07-28": 1, - "2010-07-30": 2, - "2010-07-31": 1, - "2010-08-03": 2, - "2010-08-21": 1, - "2010-08-23": 2, - "2010-08-26": 2, - "2010-08-27": 2, - "2010-08-30": 4, - "2010-09-01": 1, - "2010-09-02": 2, - "2010-09-03": 3, - "2010-09-04": 1, - "2010-09-06": 6, - "2010-09-10": 3, - "2010-09-13": 4, - "2010-09-14": 2, - "2010-09-15": 5, - "2010-09-21": 6, - "2010-09-23": 2, - "2010-09-27": 4, - "2010-09-28": 2, - "2010-10-01": 3, - "2010-10-02": 1, - "2010-10-04": 1, - "2010-10-06": 2, - "2010-10-07": 2, - "2010-10-08": 4, - "2010-10-09": 1, - "2010-10-11": 4, - "2010-10-18": 3, - "2010-10-19": 1, - "2010-10-21": 2, - "2010-10-25": 2, - "2010-10-27": 2, - "2010-10-28": 3, - "2010-11-01": 1, - "2010-11-02": 2, - "2010-11-05": 3, - "2010-11-07": 1, - "2010-11-08": 4, - "2010-11-10": 3, - "2010-11-12": 2, - "2010-11-13": 7, - "2010-11-14": 7, - "2010-11-15": 2, - "2010-11-16": 4, - "2010-11-17": 3, - "2010-11-18": 3, - "2010-11-19": 7, - "2010-11-20": 5, - "2010-11-21": 7, - "2010-11-22": 5, - "2010-11-23": 6, - "2010-11-24": 3, - "2010-11-25": 2, - "2010-11-26": 2, - "2010-11-27": 5, - "2010-11-28": 1, - "2010-11-29": 4, - "2010-11-30": 3, - "2010-12-01": 4, - "2010-12-02": 2, - "2010-12-03": 7, - "2010-12-05": 1, - "2010-12-06": 2, - "2010-12-07": 9, - "2010-12-08": 4, - "2010-12-09": 2, - "2010-12-10": 2, - "2010-12-12": 1, - "2010-12-13": 3, - "2010-12-14": 1, - "2010-12-15": 5, - "2010-12-16": 3, - "2010-12-17": 3, - "2010-12-18": 3, - "2010-12-20": 4, - "2010-12-21": 1, - "2010-12-22": 2, - "2010-12-23": 8, - "2010-12-24": 1, - "2010-12-26": 2, - "2010-12-27": 7, - "2010-12-28": 4, - "2010-12-29": 2, - "2011-01-10": 4, - "2011-01-11": 2, - "2011-01-12": 7, - "2011-01-13": 1, - "2011-01-14": 5, - "2011-01-15": 2, - "2011-01-16": 5, - "2011-01-17": 3, - "2011-01-18": 3, - "2011-01-19": 1, - "2011-01-20": 1, - "2011-01-21": 4, - "2011-01-24": 1, - "2011-01-26": 2, - "2011-01-27": 1, - "2011-01-28": 2, - "2011-01-30": 2, - "2011-01-31": 2, - "2011-02-01": 4, - "2011-02-02": 2, - "2011-02-03": 1, - "2011-02-04": 2, - "2011-02-05": 1, - "2011-02-06": 1, - "2011-02-07": 8, - "2011-02-08": 1, - "2011-02-09": 2, - "2011-02-10": 2, - "2011-02-11": 1, - "2011-02-12": 3, - "2011-02-13": 4, - "2011-02-14": 1, - "2011-02-15": 3, - "2011-02-16": 12, - "2011-02-17": 1, - "2011-02-19": 1, - "2011-02-21": 5, - "2011-02-22": 1, - "2011-02-23": 1, - "2011-02-25": 2, - "2011-02-26": 3, - "2011-02-27": 3, - "2011-02-28": 1, - "2011-03-01": 1, - "2011-03-02": 2, - "2011-03-04": 3, - "2011-03-05": 1, - "2011-03-06": 3, - "2011-03-07": 3, - "2011-03-08": 2, - "2011-03-09": 4, - "2011-03-11": 2, - "2011-03-12": 4, - "2011-03-13": 5, - "2011-03-14": 5, - "2011-03-15": 4, - "2011-03-16": 1, - "2011-03-19": 1, - "2011-03-20": 1, - "2011-03-21": 1, - "2011-03-22": 3, - "2011-03-25": 2, - "2011-03-26": 1, - "2011-03-27": 1, - "2011-03-28": 7, - "2011-03-29": 3, - "2011-03-30": 1, - "2011-03-31": 1, - "2011-04-03": 2, - "2011-04-04": 1, - "2011-04-06": 11, - "2011-04-07": 2, - "2011-04-11": 3, - "2011-04-12": 3, - "2011-04-14": 7, - "2011-04-15": 3, - "2011-04-16": 2, - "2011-04-17": 1, - "2011-04-18": 4, - "2011-04-19": 2, - "2011-04-20": 5, - "2011-04-22": 6, - "2011-04-23": 1, - "2011-04-24": 1, - "2011-04-25": 2, - "2011-04-26": 2, - "2011-04-27": 8, - "2011-04-28": 7, - "2011-04-29": 5, - "2011-04-30": 1, - "2011-05-01": 6, - "2011-05-02": 2, - "2011-05-03": 2, - "2011-05-04": 3, - "2011-05-06": 8, - "2011-05-07": 2, - "2011-05-08": 2, - "2011-05-09": 3, - "2011-05-10": 8, - "2011-05-11": 4, - "2011-05-12": 5, - "2011-05-13": 8, - "2011-05-14": 2, - "2011-05-15": 4, - "2011-05-16": 7, - "2011-05-17": 1, - "2011-05-18": 8, - "2011-05-19": 3, - "2011-05-20": 3, - "2011-05-21": 1, - "2011-05-23": 3, - "2011-05-25": 5, - "2011-05-26": 1, - "2011-05-27": 5, - "2011-05-28": 2, - "2011-05-30": 2, - "2011-05-31": 2, - "2011-06-01": 3, - "2011-06-04": 3, - "2011-06-05": 2, - "2011-06-07": 2, - "2011-06-08": 1, - "2011-06-11": 3, - "2011-06-14": 3, - "2011-06-15": 4, - "2011-06-16": 1, - "2011-06-18": 1, - "2011-06-19": 4, - "2011-06-20": 4, - "2011-06-21": 1, - "2011-06-22": 12, - "2011-06-23": 4, - "2011-06-24": 4, - "2011-06-25": 1, - "2011-06-26": 1, - "2011-06-27": 7, - "2011-06-28": 1, - "2011-06-29": 2, - "2011-06-30": 4, - "2011-07-01": 1, - "2011-07-02": 1, - "2011-07-03": 1, - "2011-07-04": 7, - "2011-07-05": 1, - "2011-07-06": 3, - "2011-07-07": 1, - "2011-07-08": 4, - "2011-07-09": 1, - "2011-07-10": 3, - "2011-07-11": 2, - "2011-07-12": 7, - "2011-07-13": 6, - "2011-07-14": 3, - "2011-07-15": 1, - "2011-07-17": 1, - "2011-07-18": 6, - "2011-07-19": 2, - "2011-07-20": 4, - "2011-07-22": 3, - "2011-07-23": 1, - "2011-07-24": 2, - "2011-07-25": 6, - "2011-07-26": 3, - "2011-07-27": 9, - "2011-07-28": 1, - "2011-07-29": 7, - "2011-07-31": 4, - "2011-08-01": 4, - "2011-08-03": 6, - "2011-08-05": 1, - "2011-08-06": 1, - "2011-08-07": 3, - "2011-08-08": 5, - "2011-08-09": 4, - "2011-08-10": 4, - "2011-08-12": 5, - "2011-08-13": 1, - "2011-08-15": 2, - "2011-08-17": 3, - "2011-08-18": 3, - "2011-08-19": 2, - "2011-08-20": 1, - "2011-08-21": 2, - "2011-08-22": 1, - "2011-08-23": 3, - "2011-08-24": 1, - "2011-08-25": 1, - "2011-08-26": 1, - "2011-08-31": 1, - "2011-09-04": 2, - "2011-09-07": 1, - "2011-09-08": 2, - "2011-09-11": 1, - "2011-09-14": 3, - "2011-09-15": 1, - "2011-09-16": 1, - "2011-09-19": 2, - "2011-09-21": 2, - "2011-09-22": 1, - "2011-09-23": 4, - "2011-09-25": 1, - "2011-09-26": 2, - "2011-09-27": 2, - "2011-09-28": 7, - "2011-09-30": 8, - "2011-10-02": 4, - "2011-10-04": 2, - "2011-10-05": 2, - "2011-10-06": 1, - "2011-10-07": 2, - "2011-10-09": 6, - "2011-10-10": 2, - "2011-10-11": 4, - "2011-10-12": 2, - "2011-10-14": 5, - "2011-10-15": 3, - "2011-10-17": 3, - "2011-10-18": 2, - "2011-10-19": 2, - "2011-10-21": 1, - "2011-10-23": 1, - "2011-10-24": 4, - "2011-10-25": 1, - "2011-10-26": 1, - "2011-10-27": 1, - "2011-10-28": 1, - "2011-10-31": 2, - "2011-11-01": 2, - "2011-11-07": 2, - "2011-11-08": 2, - "2011-11-09": 1, - "2011-11-10": 4, - "2011-11-20": 3, - "2011-11-28": 3, - "2011-11-29": 2, - "2011-11-30": 6, - "2011-12-01": 1, - "2011-12-02": 3, - "2011-12-06": 1, - "2011-12-07": 2, - "2011-12-19": 2, - "2011-12-20": 1, - "2011-12-21": 3, - "2011-12-22": 2, - "2011-12-23": 1, - "2011-12-24": 1, - "2011-12-28": 1, - "2011-12-29": 1, - "2011-12-30": 1, - "2011-12-31": 1, - "2012-01-04": 1, - "2012-01-05": 1, - "2012-01-06": 1, - "2012-01-08": 1, - "2012-01-30": 2, - "2012-02-03": 1, - "2012-02-06": 1, - "2012-02-08": 5, - "2012-02-09": 3, - "2012-02-11": 2, - "2012-02-12": 4, - "2012-02-13": 3, - "2012-02-14": 2, - "2012-02-16": 1, - "2012-02-17": 3, - "2012-02-18": 1, - "2012-02-20": 1, - "2012-02-21": 1, - "2012-02-26": 1, - "2012-02-27": 1, - "2012-02-28": 1, - "2012-02-29": 1, - "2012-03-02": 1, - "2012-03-05": 1, - "2012-03-07": 4, - "2012-03-08": 2, - "2012-03-09": 4, - "2012-03-10": 4, - "2012-03-12": 2, - "2012-03-13": 1, - "2012-03-15": 1, - "2012-03-16": 1, - "2012-03-17": 1, - "2012-03-19": 1, - "2012-03-21": 1, - "2012-03-22": 1, - "2012-03-23": 2, - "2012-03-25": 2, - "2012-03-26": 1, - "2012-03-27": 4, - "2012-03-29": 3, - "2012-03-31": 1, - "2012-04-04": 1, - "2012-04-05": 1, - "2012-04-06": 1, - "2012-04-10": 1, - "2012-04-12": 2, - "2012-04-13": 2, - "2012-04-14": 1, - "2012-04-22": 2, - "2012-04-23": 4, - "2012-04-24": 3, - "2012-04-25": 5, - "2012-04-26": 1, - "2012-04-28": 2, - "2012-05-01": 2, - "2012-05-03": 1, - "2012-05-04": 1, - "2012-05-07": 5, - "2012-05-08": 1, - "2012-05-09": 3, - "2012-05-11": 1, - "2012-05-12": 2, - "2012-05-14": 2, - "2012-05-18": 6, - "2012-05-19": 1, - "2012-05-21": 4, - "2012-05-22": 5, - "2012-05-23": 2, - "2012-05-29": 2, - "2012-05-31": 2, - "2012-06-03": 6, - "2012-06-04": 1, - "2012-06-08": 1, - "2012-06-11": 2, - "2012-06-12": 1, - "2012-06-13": 1, - "2012-06-17": 1, - "2012-06-18": 6, - "2012-06-20": 2, - "2012-06-22": 1, - "2012-06-23": 1, - "2012-06-25": 1, - "2012-06-28": 1, - "2012-06-29": 3, - "2012-07-02": 4, - "2012-07-03": 1, - "2012-07-04": 4, - "2012-07-05": 4, - "2012-07-06": 1, - "2012-07-07": 1, - "2012-07-08": 5, - "2012-07-11": 1, - "2012-07-12": 1, - "2012-07-14": 1, - "2012-07-15": 1, - "2012-07-16": 1, - "2012-07-23": 5, - "2012-07-27": 2, - "2012-07-29": 1, - "2012-07-31": 2, - "2012-08-01": 2, - "2012-08-26": 1, - "2012-08-27": 3, - "2012-08-28": 3, - "2012-08-29": 3, - "2012-08-30": 3, - "2012-09-04": 1, - "2012-09-05": 1, - "2012-09-06": 2, - "2012-09-12": 1, - "2012-09-13": 1, - "2012-09-17": 2, - "2012-09-19": 3, - "2012-09-20": 2, - "2012-09-21": 2, - "2012-09-26": 3, - "2012-09-28": 1, - "2012-09-29": 1, - "2012-10-01": 2, - "2012-10-04": 1, - "2012-10-05": 1, - "2012-10-09": 1, - "2012-10-10": 1, - "2012-10-11": 1, - "2012-10-13": 1, - "2012-10-14": 2, - "2012-10-18": 1, - "2012-10-19": 3, - "2012-10-20": 1, - "2012-10-21": 1, - "2012-10-22": 4, - "2012-10-23": 2, - "2012-10-25": 4, - "2012-10-27": 1, - "2012-10-28": 1, - "2012-10-29": 1, - "2012-10-30": 2, - "2012-11-03": 1, - "2012-11-12": 1, - "2012-11-13": 1, - "2012-11-17": 1, - "2012-11-19": 2, - "2012-11-20": 1, - "2012-11-26": 2, - "2012-11-27": 1, - "2012-12-01": 2, - "2012-12-03": 2, - "2012-12-10": 1, - "2012-12-11": 2, - "2012-12-26": 1, - "2012-12-27": 3, - "2012-12-28": 2, - "2013-01-05": 1, - "2013-01-07": 1, - "2013-01-08": 2, - "2013-01-09": 1, - "2013-01-11": 4, - "2013-01-14": 3, - "2013-01-15": 6, - "2013-01-17": 2, - "2013-02-01": 8, - "2013-02-04": 1, - "2013-02-08": 1, - "2013-02-11": 2, - "2013-02-12": 6, - "2013-02-14": 2, - "2013-02-15": 4, - "2013-02-17": 1, - "2013-02-18": 2, - "2013-02-19": 3, - "2013-02-20": 2, - "2013-02-25": 2, - "2013-02-26": 2, - "2013-02-27": 2, - "2013-03-02": 3, - "2013-03-03": 1, - "2013-03-04": 1, - "2013-03-06": 1, - "2013-03-08": 1, - "2013-03-09": 1, - "2013-03-15": 1, - "2013-03-16": 1, - "2013-03-18": 2, - "2013-03-21": 2, - "2013-03-22": 3, - "2013-03-25": 1, - "2013-03-26": 1, - "2013-03-27": 1, - "2013-03-30": 1, - "2013-04-02": 2, - "2013-04-08": 1, - "2013-04-11": 2, - "2013-04-12": 1, - "2013-04-14": 1, - "2013-04-18": 1, - "2013-04-23": 1, - "2013-04-29": 2, - "2013-05-06": 1, - "2013-05-15": 1, - "2013-05-16": 1, - "2013-05-17": 1, - "2013-05-31": 1, - "2013-06-23": 3, - "2013-07-01": 1, - "2013-07-02": 2, - "2013-07-22": 1, - "2013-07-23": 2, - "2013-07-29": 3, - "2013-08-04": 1, - "2013-08-06": 1, - "2013-08-07": 1, - "2013-08-19": 3, - "2013-08-26": 1, - "2013-08-28": 3, - "2013-08-30": 2, - "2013-09-02": 1, - "2013-09-11": 4, - "2013-09-12": 1, - "2013-09-17": 2, - "2013-09-18": 2, - "2013-09-19": 1, - "2013-09-21": 2, - "2013-09-23": 2, - "2013-09-24": 1, - "2013-10-11": 1, - "2013-10-14": 1, - "2013-10-15": 1, - "2013-10-17": 2, - "2013-11-06": 1, - "2013-11-11": 1, - "2013-12-09": 2, - "2013-12-13": 2, - "2013-12-18": 1, - "2013-12-19": 1, - "2013-12-24": 1, - "2014-01-03": 1, - "2014-01-04": 1, - "2014-01-06": 1, - "2014-01-07": 1, - "2014-01-13": 1, - "2014-01-14": 4, - "2014-01-16": 4, - "2014-01-24": 1, - "2014-01-27": 1, - "2014-01-31": 1, - "2014-02-25": 1, - "2014-02-26": 3, - "2014-03-11": 1, - "2014-03-12": 1, - "2014-03-20": 1, - "2014-04-02": 1, - "2014-04-04": 2, - "2014-04-13": 2, - "2014-04-15": 1, - "2014-04-22": 1, - "2014-04-28": 1, - "2014-05-04": 1, - "2014-05-10": 1, - "2014-05-18": 1, - "2014-05-22": 1, - "2014-05-25": 1, - "2014-05-28": 2, - "2014-06-01": 1, - "2014-06-02": 1, - "2014-06-03": 3, - "2014-06-04": 2, - "2014-06-08": 1, - "2014-06-15": 1, - "2014-06-22": 2, - "2014-06-29": 1, - "2014-07-22": 2, - "2014-07-26": 1, - "2014-07-27": 1, - "2014-07-29": 1, - "2014-08-10": 1, - "2014-09-22": 1, - "2014-10-12": 1, - "2014-10-19": 1, - "2014-10-26": 1, - "2014-11-09": 1, - "2014-11-16": 1, - "2014-11-30": 1, - "2014-12-07": 1, - "2015-01-01": 2, - "2015-01-02": 1, - "2015-01-04": 1, - "2015-01-05": 3, - "2015-01-07": 1, - "2015-01-09": 1, - "2015-01-10": 1, - "2015-01-11": 2, - "2015-01-12": 3, - "2015-01-13": 1, - "2015-01-14": 1, - "2015-01-15": 2, - "2015-01-17": 1, - "2015-01-18": 1, - "2015-01-20": 3, - "2015-01-22": 3, - "2015-01-25": 5, - "2015-01-26": 1, - "2015-01-29": 1, - "2015-01-31": 3, - "2015-02-02": 2, - "2015-02-03": 1, - "2015-02-07": 1, - "2015-02-08": 3, - "2015-02-10": 1, - "2015-02-12": 1, - "2015-02-15": 2, - "2015-02-17": 1, - "2015-02-22": 1, - "2015-02-23": 2, - "2015-02-27": 1, - "2015-03-01": 2, - "2015-03-02": 1, - "2015-03-03": 1, - "2015-03-06": 1, - "2015-03-09": 1, - "2015-03-14": 3, - "2015-03-15": 2, - "2015-03-16": 2, - "2015-03-17": 1, - "2015-03-21": 1, - "2015-03-22": 1, - "2015-03-26": 1, - "2015-03-29": 1, - "2015-04-04": 3, - "2015-04-06": 1, - "2015-04-11": 1, - "2015-04-12": 2, - "2015-04-14": 2, - "2015-04-16": 1, - "2015-04-18": 1, - "2015-04-26": 1, - "2015-05-01": 1, - "2015-05-03": 1, - "2015-05-06": 1, - "2015-05-11": 1, - "2015-05-17": 1, - "2015-05-29": 2, - "2015-05-30": 2, - "2015-06-04": 1, - "2015-06-05": 1, - "2015-06-07": 1, - "2015-06-14": 1, - "2015-06-20": 1, - "2015-07-09": 1, - "2015-07-13": 1, - "2015-07-14": 1, - "2015-07-19": 2, - "2015-07-21": 1, - "2015-07-22": 1, - "2015-07-25": 1, - "2015-07-29": 1, - "2015-07-31": 1, - "2015-08-02": 1, - "2015-08-07": 1, - "2015-08-09": 1, - "2015-08-16": 1, - "2015-08-23": 1, - "2015-08-26": 1, - "2015-08-30": 1, - "2015-09-06": 1, - "2015-09-07": 1, - "2015-09-13": 2, - "2015-09-14": 1, - "2015-09-17": 1, - "2015-09-20": 1, - "2015-09-21": 1, - "2015-10-07": 1, - "2015-10-08": 1, - "2015-10-11": 1, - "2015-10-16": 1, - "2015-10-25": 1, - "2015-10-26": 1, - "2015-11-01": 1, - "2015-11-02": 1, - "2015-11-03": 1, - "2015-11-06": 1, - "2015-11-07": 1, - "2015-11-08": 1, - "2015-11-15": 1, - "2015-11-17": 1, - "2015-11-22": 1, - "2015-12-20": 1, - "2015-12-21": 2, - "2015-12-22": 1, - "2016-01-03": 1, - "2016-01-04": 1, - "2016-01-08": 1, - "2016-01-15": 1, - "2016-01-20": 1, - "2016-01-24": 2, - "2016-01-25": 1, - "2016-01-31": 3, - "2016-02-07": 1, - "2016-02-08": 1, - "2016-02-14": 1, - "2016-02-28": 1, - "2016-03-05": 1, - "2016-03-06": 1, - "2016-03-11": 1, - "2016-03-13": 2, - "2016-03-20": 1, - "2016-04-10": 1, - "2016-04-17": 1, - "2016-04-22": 2, - "2016-04-24": 1, - "2016-04-29": 1, - "2016-05-01": 1, - "2016-05-02": 1, - "2016-05-08": 1, - "2016-05-22": 1, - "2016-05-29": 1, - "2016-06-03": 1, - "2016-06-06": 1, - "2016-06-07": 1, - "2016-06-14": 1, - "2016-06-15": 1, - "2016-06-23": 1, - "2016-06-25": 1, - "2016-06-26": 1, - "2016-07-03": 2, - "2016-07-10": 1, - "2016-07-17": 1, - "2016-07-24": 1, - "2016-07-31": 3, - "2016-08-03": 1, - "2016-08-07": 1, - "2016-08-19": 1, - "2016-08-21": 1, - "2016-08-28": 2, - "2016-09-04": 1, - "2016-09-11": 2, - "2016-10-16": 1, - "2016-10-18": 1, - "2016-10-30": 1, - "2016-11-06": 2, - "2016-11-22": 1, - "2017-01-01": 1, - "2017-01-09": 1, - "2017-01-15": 1, - "2017-01-22": 1, - "2017-02-06": 1, - "2017-08-11": 1, - "2017-08-14": 1, - "2017-09-11": 1, - "2017-11-20": 1, - "2017-11-21": 1, - "2017-11-22": 1, - "2017-11-23": 1, - "2017-11-24": 1, - "2017-11-25": 1, - "2018-01-03": 1, - "2018-05-25": 1, - "2018-06-11": 1, - "2018-06-12": 1, - "2018-06-13": 1, - "2018-06-27": 1, - "2018-08-03": 2, - "2018-11-08": 1, - "2018-11-10": 1, - "2018-11-12": 1, - "2018-11-14": 1, - "2019-02-22": 1, - "2019-04-25": 1, - "2019-05-20": 2, - "2019-06-03": 1, - "2019-06-28": 1, - "2019-08-02": 1, - "2019-08-20": 1, - "2019-11-08": 2, - "2020-02-20": 2, - "2020-03-13": 1, - "2020-03-27": 1, - "2021-01-14": 1, - "2022-08-22": 1, - "2022-11-05": 2, - "2022-11-06": 1, - "2022-11-11": 1, - "2023-08-19": 1, - "2023-08-27": 3, - "2026-02-16": 1, - "2026-02-22": 3, - "2026-02-23": 1, - "2026-02-27": 4, - "2026-02-28": 4, - "2026-03-01": 2, - "2026-03-02": 2, - "2026-03-05": 1, - "2026-03-07": 1, - "2026-03-12": 1, - "2026-03-13": 6, - "2026-03-14": 1, - "2026-03-15": 2, - "2026-03-16": 1, - "2026-03-18": 2, - "2026-03-19": 2, - "2026-03-22": 5, - "2026-03-25": 1, - "2026-03-27": 3, - "2026-03-29": 1, - "2026-04-01": 1 - } -} +{"months":{"2016-11":3,"2015-09":8,"2009-09":57,"2010-12":83,"2017-08":2,"2008-05":53,"2005-02":234,"2013-09":16,"2007-04":97,"2013-04":11,"2015-06":5,"2010-03":16,"2013-02":38,"2008-07":47,"2008-02":59,"2012-01":6,"2005-08":93,"2012-12":13,"2012-10":31,"2008-08":34,"2016-10":3,"2002-12":111,"2011-01":48,"2014-07":5,"2007-01":86,"2006-10":101,"2019-04":1,"2017-01":4,"2014-08":1,"2010-06":32,"2006-05":45,"2010-02":60,"2009-04":28,"2003-05":102,"2004-02":144,"2017-11":6,"2016-09":3,"2006-07":51,"2022-11":4,"2014-05":7,"2002-11":83,"2023-08":4,"2008-03":40,"2004-07":180,"2026-05":3,"2016-02":4,"2005-09":56,"2006-09":53,"2010-01":114,"2011-06":68,"2003-04":137,"2020-02":2,"2018-01":1,"2015-12":4,"2019-06":2,"2009-07":41,"2018-06":4,"2012-03":38,"2010-10":31,"2014-06":12,"2019-11":2,"2010-05":40,"2005-04":109,"2013-06":3,"2011-10":52,"2014-01":16,"2011-07":91,"2018-11":4,"2014-12":1,"2015-05":9,"2015-02":16,"2003-01":120,"2011-02":66,"2012-02":32,"2012-06":28,"2011-09":40,"2011-05":102,"2011-04":79,"2008-11":38,"2003-06":129,"2016-05":5,"2013-12":7,"2009-02":37,"2017-09":1,"2003-02":141,"2005-06":133,"2007-05":112,"2016-03":6,"2014-10":3,"2005-01":228,"2014-04":8,"2003-10":175,"2006-01":137,"2013-11":2,"2014-11":3,"2003-09":134,"2003-07":134,"2014-03":3,"2010-04":29,"2018-08":2,"2026-04":4,"2013-08":12,"2009-01":32,"2004-04":127,"2006-04":47,"2006-08":54,"2013-10":5,"2005-11":86,"2015-07":10,"2022-08":1,"2014-09":1,"2009-12":98,"2005-12":120,"2004-08":172,"2003-08":86,"2007-12":44,"2012-09":20,"2015-11":9,"2013-07":9,"2010-09":41,"2007-08":24,"2013-05":5,"2019-02":1,"2026-03":31,"2007-11":37,"2009-05":23,"2015-01":37,"2016-08":6,"2004-09":199,"2016-04":6,"2005-07":117,"2012-07":35,"2004-03":174,"2011-03":62,"2007-02":42,"2011-12":21,"2008-09":48,"2020-03":2,"2009-08":27,"2026-07":10,"2006-03":80,"2012-11":10,"2004-10":163,"2006-02":147,"2009-06":32,"2004-01":281,"2010-08":13,"2006-06":46,"2008-06":76,"2004-12":119,"2015-10":6,"2006-11":96,"2016-07":8,"2007-06":68,"2010-11":92,"2011-08":55,"2018-05":1,"2026-02":13,"2019-08":2,"2021-01":1,"2015-03":18,"2003-12":180,"2012-05":40,"2012-04":26,"2008-04":54,"2019-05":2,"2007-03":53,"2009-11":53,"2004-11":165,"2026-06":5,"2007-09":33,"2012-08":15,"2008-01":73,"2013-03":21,"2008-10":60,"2010-07":33,"2016-01":11,"2014-02":4,"2008-12":14,"2017-02":1,"2015-08":7,"2005-05":83,"2005-03":174,"2016-06":8,"2004-06":141,"2013-01":20,"2009-10":68,"2009-03":45,"2007-07":88,"2003-11":130,"2004-05":165,"2006-12":46,"2015-04":12,"2011-11":25,"2007-10":38,"2003-03":172,"2005-10":104},"days":{"2012-04-04":1,"2008-01-11":6,"2009-02-11":1,"2009-04-15":1,"2005-12-28":1,"2013-03-18":2,"2005-06-30":6,"2006-07-04":2,"2005-05-02":2,"2007-07-27":1,"2011-07-14":3,"2010-07-05":1,"2015-10-11":1,"2010-10-11":4,"2004-07-17":5,"2016-05-01":1,"2004-07-20":6,"2005-09-08":2,"2005-08-24":2,"2003-05-19":1,"2004-03-19":5,"2013-10-17":2,"2004-01-12":17,"2003-04-30":4,"2004-04-10":2,"2008-03-31":1,"2007-05-04":5,"2016-03-13":2,"2003-12-26":4,"2017-11-23":1,"2005-12-15":6,"2005-01-17":7,"2006-02-22":10,"2007-04-11":3,"2004-12-23":6,"2007-12-05":3,"2006-02-24":7,"2003-07-10":4,"2011-02-22":1,"2011-03-22":3,"2012-06-25":1,"2010-07-25":1,"2015-11-07":1,"2006-01-21":3,"2009-12-13":3,"2012-04-06":1,"2013-09-18":2,"2010-05-14":1,"2005-05-12":3,"2003-09-27":10,"2008-05-15":10,"2008-12-18":1,"2003-10-09":3,"2003-04-27":5,"2004-05-06":6,"2005-07-31":7,"2005-03-20":3,"2009-10-27":1,"2004-11-16":5,"2010-08-21":1,"2004-06-12":10,"2004-09-10":5,"2004-01-02":15,"2003-07-26":7,"2011-07-01":1,"2005-12-23":2,"2014-09-22":1,"2011-07-31":4,"2012-03-27":4,"2008-06-12":1,"2006-12-06":4,"2005-12-03":6,"2006-11-29":3,"2006-03-13":9,"2008-12-15":6,"2007-07-09":7,"2013-02-15":4,"2015-09-20":1,"2005-04-20":1,"2007-08-02":1,"2003-08-24":3,"2003-08-15":5,"2012-02-20":1,"2011-09-23":4,"2007-03-21":5,"2011-05-23":3,"2003-03-17":3,"2003-05-10":6,"2004-08-27":7,"2007-04-12":4,"2006-01-03":5,"2006-04-16":1,"2006-05-31":3,"2007-11-12":8,"2005-11-23":5,"2007-04-27":3,"2003-12-06":3,"2002-11-16":5,"2002-12-01":2,"2011-07-20":4,"2003-05-01":1,"2004-08-06":7,"2006-01-16":1,"2009-09-11":2,"2013-05-16":1,"2013-03-30":1,"2026-02-16":1,"2011-08-23":3,"2009-04-21":2,"2003-11-22":5,"2003-05-27":3,"2013-04-08":1,"2015-02-23":2,"2005-06-16":6,"2003-10-27":7,"2006-07-17":3,"2004-03-22":9,"2004-02-29":7,"2011-03-07":3,"2005-12-31":3,"2011-01-20":1,"2026-03-22":5,"2005-12-08":4,"2010-09-01":1,"2004-02-03":5,"2015-11-01":1,"2003-11-25":8,"2004-08-30":8,"2012-02-12":4,"2007-07-18":3,"2021-01-14":1,"2010-06-06":3,"2013-09-21":2,"2006-11-03":7,"2004-07-23":1,"2005-10-15":6,"2004-03-06":5,"2007-06-11":4,"2026-03-18":2,"2007-02-01":3,"2011-11-28":3,"2014-06-29":1,"2006-05-08":1,"2010-01-29":6,"2003-04-09":3,"2008-10-05":1,"2006-11-24":6,"2003-02-05":2,"2005-10-19":1,"2016-08-07":1,"2006-04-14":1,"2012-09-28":1,"2003-04-21":3,"2005-08-06":1,"2005-04-16":3,"2003-02-22":4,"2005-10-01":3,"2010-12-15":5,"2007-09-24":5,"2006-03-27":2,"2012-05-03":1,"2011-01-27":1,"2015-07-09":1,"2005-05-01":2,"2026-06-20":1,"2016-06-03":1,"2012-02-11":2,"2012-06-28":1,"2005-09-02":4,"2008-12-30":2,"2008-01-02":2,"2003-07-04":6,"2002-11-14":3,"2011-07-06":3,"2006-01-29":3,"2006-10-11":1,"2006-11-06":7,"2014-01-27":1,"2005-02-07":5,"2007-10-10":2,"2005-11-24":7,"2013-03-03":1,"2007-04-13":1,"2014-03-12":1,"2003-07-03":5,"2011-12-02":3,"2005-07-01":5,"2007-03-23":2,"2012-03-08":2,"2011-02-01":4,"2015-11-17":1,"2007-09-05":5,"2006-04-19":2,"2013-02-01":8,"2014-04-13":2,"2013-05-15":1,"2006-12-04":8,"2005-06-19":3,"2003-04-01":9,"2002-12-30":7,"2009-03-12":3,"2006-01-24":4,"2009-04-29":2,"2013-12-19":1,"2008-09-01":1,"2003-01-18":1,"2011-04-16":2,"2005-02-14":13,"2012-11-27":1,"2006-02-20":5,"2009-03-03":1,"2015-10-08":1,"2004-04-11":4,"2006-09-25":1,"2003-04-06":4,"2003-11-05":1,"2010-06-27":3,"2005-11-26":4,"2009-12-28":1,"2004-07-29":6,"2007-03-27":5,"2009-10-03":1,"2008-02-25":2,"2006-03-21":1,"2006-07-21":3,"2008-08-18":2,"2004-02-09":3,"2005-12-17":7,"2009-12-23":1,"2014-06-01":1,"2004-07-18":4,"2011-01-31":2,"2012-02-14":2,"2006-02-07":3,"2005-01-10":5,"2009-10-18":1,"2003-01-21":8,"2015-01-12":3,"2011-07-03":1,"2003-01-23":3,"2007-12-11":5,"2004-06-07":3,"2008-10-04":1,"2005-12-18":6,"2005-07-07":3,"2011-09-14":3,"2011-08-06":1,"2026-02-28":4,"2003-02-13":5,"2010-02-03":5,"2004-01-26":11,"2009-03-30":3,"2006-04-06":5,"2009-09-09":8,"2005-06-01":3,"2005-09-14":1,"2016-06-15":1,"2011-08-20":1,"2016-05-22":1,"2003-04-03":6,"2005-02-18":2,"2016-01-24":2,"2006-09-15":1,"2010-09-28":2,"2008-06-09":7,"2003-05-04":5,"2002-12-06":5,"2003-04-11":3,"2011-03-05":1,"2011-04-18":4,"2013-10-11":1,"2010-11-22":5,"2005-08-03":7,"2010-08-30":4,"2016-07-03":2,"2006-08-05":1,"2009-02-18":2,"2011-03-12":4,"2008-02-07":2,"2005-09-29":1,"2007-05-15":4,"2011-04-11":3,"2006-11-23":2,"2005-11-14":3,"2007-09-07":2,"2003-03-22":7,"2010-10-19":1,"2004-02-12":9,"2004-03-27":3,"2004-08-31":12,"2003-12-25":5,"2004-09-29":14,"2003-01-24":2,"2003-07-27":6,"2007-12-17":4,"2012-12-11":2,"2010-12-29":2,"2015-01-29":1,"2004-03-12":3,"2005-08-18":1,"2007-12-04":5,"2009-04-18":1,"2003-09-08":1,"2005-06-11":1,"2011-06-01":3,"2004-08-21":1,"2005-03-15":2,"2007-09-28":6,"2010-10-27":2,"2011-01-14":5,"2007-03-19":4,"2006-07-20":1,"2010-02-02":2,"2012-04-24":3,"2005-10-02":2,"2004-02-14":7,"2004-10-27":6,"2015-01-17":1,"2013-03-06":1,"2010-06-04":4,"2004-02-21":1,"2005-12-22":3,"2013-06-23":3,"2003-01-08":3,"2004-07-27":7,"2011-04-22":6,"2010-03-12":2,"2004-10-28":6,"2008-02-29":7,"2012-06-04":1,"2015-10-07":1,"2006-08-03":4,"2013-02-11":2,"2010-02-06":2,"2015-07-29":1,"2006-04-28":1,"2003-10-16":6,"2004-07-28":1,"2003-01-22":2,"2010-01-06":3,"2010-04-19":2,"2006-05-17":3,"2009-01-16":2,"2003-12-01":4,"2009-11-03":4,"2006-10-04":5,"2010-01-13":1,"2004-06-06":9,"2026-06-18":1,"2007-07-08":1,"2026-07-13":3,"2008-04-21":3,"2005-04-24":5,"2008-11-13":2,"2004-03-08":17,"2006-05-12":1,"2009-10-25":2,"2003-03-05":5,"2003-01-25":4,"2015-03-29":1,"2005-06-02":4,"2008-01-04":5,"2011-02-28":1,"2002-11-29":3,"2007-10-23":3,"2012-09-29":1,"2007-05-29":4,"2014-01-03":1,"2003-08-01":3,"2011-08-18":3,"2006-10-20":1,"2004-08-23":4,"2008-03-09":3,"2016-01-08":1,"2009-08-08":5,"2004-03-29":1,"2006-09-20":6,"2004-06-02":4,"2010-02-14":1,"2010-11-28":1,"2006-01-08":2,"2010-07-30":2,"2013-12-24":1,"2017-02-06":1,"2009-06-20":3,"2004-10-04":2,"2007-07-02":3,"2004-06-26":9,"2010-05-07":2,"2010-01-02":1,"2006-11-08":7,"2003-06-20":6,"2015-04-26":1,"2003-03-18":8,"2010-10-04":1,"2007-09-17":4,"2006-10-18":4,"2011-04-25":2,"2004-10-22":6,"2009-05-07":5,"2011-07-12":7,"2012-10-11":1,"2004-01-24":9,"2003-03-15":6,"2009-01-05":4,"2004-07-13":6,"2007-11-08":1,"2010-12-12":1,"2003-09-25":5,"2004-11-09":4,"2005-04-15":2,"2008-01-16":1,"2007-02-02":4,"2003-01-26":15,"2003-07-15":3,"2011-01-12":7,"2006-09-12":5,"2010-08-03":2,"2006-04-21":6,"2004-08-18":5,"2020-02-20":2,"2011-01-26":2,"2005-12-06":4,"2006-12-01":4,"2008-08-29":3,"2005-08-23":1,"2009-10-11":2,"2007-07-24":4,"2004-07-30":5,"2010-02-28":12,"2006-01-13":4,"2010-01-27":5,"2013-01-05":1,"2009-02-06":4,"2010-02-09":3,"2012-07-07":1,"2010-01-07":1,"2012-08-27":3,"2016-04-10":1,"2008-03-05":1,"2003-10-26":3,"2005-07-21":2,"2009-03-28":3,"2005-04-30":2,"2003-01-09":2,"2010-07-31":1,"2007-06-22":5,"2006-05-06":1,"2022-08-22":1,"2004-02-27":3,"2003-08-16":1,"2004-09-11":3,"2011-12-29":1,"2009-02-26":1,"2004-03-02":5,"2006-04-23":2,"2004-04-17":1,"2007-01-17":3,"2006-03-30":3,"2009-11-26":1,"2009-03-09":4,"2005-04-17":3,"2010-04-27":4,"2011-03-15":4,"2008-07-08":2,"2015-11-15":1,"2012-10-09":1,"2006-02-10":7,"2004-11-01":9,"2004-11-28":4,"2007-02-15":1,"2003-12-21":14,"2010-06-12":3,"2010-12-22":2,"2005-08-10":4,"2004-01-22":12,"2005-08-30":2,"2008-06-28":2,"2003-07-28":3,"2006-03-22":2,"2013-02-25":2,"2005-01-15":6,"2005-09-13":2,"2012-12-28":2,"2004-01-27":7,"2003-07-11":3,"2010-08-26":2,"2008-04-14":5,"2015-02-08":3,"2008-07-02":2,"2006-01-05":5,"2012-10-04":1,"2005-02-12":6,"2005-09-27":3,"2003-06-08":3,"2005-09-17":3,"2010-10-07":2,"2006-02-02":10,"2007-07-04":3,"2003-05-15":3,"2012-06-13":1,"2005-12-10":3,"2005-07-13":3,"2012-08-30":3,"2009-11-01":1,"2012-12-26":1,"2012-02-06":1,"2003-11-09":1,"2002-12-17":3,"2007-09-12":4,"2011-07-10":3,"2009-10-22":1,"2007-05-25":3,"2006-10-02":4,"2005-05-14":2,"2003-05-29":1,"2005-07-28":6,"2003-12-16":9,"2011-01-10":4,"2004-01-08":10,"2007-12-25":1,"2007-12-27":1,"2013-08-06":1,"2011-08-09":4,"2012-12-27":3,"2015-01-10":1,"2004-01-30":7,"2009-01-21":1,"2008-03-02":3,"2009-09-04":3,"2012-04-25":5,"2016-06-07":1,"2007-04-04":7,"2010-04-17":1,"2005-12-19":3,"2005-12-27":2,"2007-04-16":7,"2003-07-25":2,"2004-12-12":6,"2003-11-07":1,"2003-10-24":7,"2012-03-17":1,"2010-07-24":2,"2016-08-19":1,"2012-03-26":1,"2008-02-22":4,"2007-06-27":4,"2009-12-29":1,"2012-05-29":2,"2006-07-26":1,"2006-05-09":3,"2009-12-30":5,"2005-12-01":3,"2011-07-29":7,"2012-03-29":3,"2011-07-26":3,"2012-11-13":1,"2007-07-25":8,"2009-01-01":1,"2004-07-22":5,"2007-01-10":7,"2013-01-15":6,"2010-07-12":2,"2005-03-27":3,"2008-09-15":4,"2008-03-07":4,"2010-12-07":9,"2004-08-13":7,"2004-12-27":6,"2009-09-10":1,"2019-04-25":1,"2003-01-14":3,"2010-05-20":1,"2016-06-23":1,"2008-02-18":7,"2006-09-19":1,"2004-08-29":3,"2010-06-07":1,"2006-05-15":2,"2004-03-04":15,"2011-03-27":1,"2004-11-18":4,"2003-12-11":15,"2011-11-08":2,"2003-02-15":4,"2003-10-03":5,"2011-05-04":3,"2006-12-23":1,"2018-06-11":1,"2005-01-14":15,"2011-05-07":2,"2005-07-20":3,"2012-03-21":1,"2007-03-22":7,"2003-05-18":4,"2018-11-12":1,"2008-01-23":4,"2012-04-26":1,"2015-09-07":1,"2003-06-22":2,"2012-10-01":2,"2006-08-04":5,"2003-07-30":3,"2015-01-11":2,"2009-01-30":3,"2007-05-18":7,"2008-06-01":1,"2008-11-03":1,"2003-11-14":3,"2004-02-10":9,"2003-03-21":3,"2010-12-13":3,"2005-05-25":4,"2013-03-15":1,"2010-04-07":3,"2005-02-21":12,"2005-02-24":7,"2026-04-10":1,"2003-06-03":3,"2002-12-03":3,"2005-04-05":6,"2011-12-22":2,"2004-04-04":4,"2004-02-06":7,"2003-02-03":6,"2009-12-22":3,"2004-12-20":3,"2003-03-19":5,"2004-02-05":6,"2017-09-11":1,"2012-05-31":2,"2010-09-13":4,"2008-04-27":1,"2014-06-08":1,"2004-01-31":9,"2009-05-22":4,"2016-02-28":1,"2014-01-13":1,"2012-05-18":6,"2002-11-15":5,"2008-11-22":1,"2015-01-07":1,"2004-02-25":4,"2015-01-22":3,"2008-01-07":6,"2004-08-11":2,"2004-01-06":16,"2004-02-04":3,"2012-05-22":5,"2004-08-28":5,"2011-06-14":3,"2008-07-03":8,"2006-02-17":5,"2003-03-06":3,"2006-09-13":1,"2003-05-17":5,"2006-03-29":3,"2010-11-24":3,"2013-04-18":1,"2009-06-15":2,"2013-01-11":4,"2004-02-20":4,"2003-04-18":8,"2012-04-12":2,"2004-02-19":2,"2003-02-23":3,"2015-07-22":1,"2009-09-27":1,"2008-01-17":5,"2013-02-17":1,"2013-04-11":2,"2004-12-06":4,"2011-02-12":3,"2007-04-02":2,"2016-02-08":1,"2007-07-05":1,"2013-09-02":1,"2005-04-22":2,"2016-01-03":1,"2013-03-04":1,"2006-06-02":2,"2005-11-17":3,"2005-08-05":4,"2008-03-26":1,"2008-11-29":2,"2011-06-16":1,"2004-09-13":17,"2008-10-21":2,"2009-10-17":3,"2008-09-26":3,"2015-02-02":2,"2006-12-14":2,"2004-03-23":4,"2012-09-13":1,"2006-04-27":3,"2003-06-28":2,"2026-03-27":3,"2014-05-22":1,"2005-01-22":4,"2004-09-30":4,"2004-10-26":15,"2007-08-03":7,"2007-03-11":1,"2010-01-28":3,"2007-05-24":7,"2011-05-03":2,"2018-08-03":2,"2017-11-20":1,"2012-07-11":1,"2010-11-21":7,"2016-09-04":1,"2003-10-06":10,"2004-01-03":9,"2004-02-17":3,"2010-12-20":4,"2005-04-13":4,"2007-12-20":2,"2011-05-27":5,"2005-02-17":6,"2011-07-25":6,"2009-09-23":2,"2009-10-21":1,"2003-02-25":4,"2007-07-23":2,"2005-03-14":10,"2007-01-11":5,"2009-08-03":4,"2011-04-03":2,"2012-02-21":1,"2007-12-18":1,"2008-10-27":2,"2006-06-19":6,"2011-05-21":1,"2010-07-20":1,"2011-04-19":2,"2004-03-15":9,"2004-02-01":10,"2004-01-10":6,"2013-07-22":1,"2003-11-08":9,"2004-12-14":10,"2015-09-14":1,"2010-03-29":2,"2014-01-24":1,"2011-02-25":2,"2005-01-11":4,"2014-01-16":4,"2005-08-12":3,"2009-09-30":5,"2004-03-18":5,"2004-05-22":7,"2011-02-07":8,"2010-04-06":2,"2009-12-14":5,"2007-05-23":6,"2003-07-09":2,"2008-10-15":1,"2010-05-09":1,"2009-09-20":2,"2009-10-05":1,"2004-09-19":6,"2010-09-10":3,"2013-08-19":3,"2015-12-20":1,"2008-11-11":2,"2011-08-01":4,"2008-02-15":3,"2003-05-08":6,"2016-09-11":2,"2006-11-15":2,"2006-04-11":1,"2007-10-21":1,"2013-04-12":1,"2009-06-26":10,"2003-02-06":8,"2004-06-17":3,"2006-02-08":6,"2004-12-09":10,"2004-07-09":11,"2003-07-18":7,"2007-09-03":1,"2003-04-05":4,"2006-01-25":3,"2003-01-30":5,"2008-03-25":2,"2015-11-08":1,"2005-03-24":4,"2004-10-16":3,"2012-05-01":2,"2008-01-28":5,"2005-10-04":3,"2003-11-20":2,"2005-01-08":4,"2010-11-15":2,"2011-07-02":1,"2007-05-30":10,"2008-04-09":1,"2011-08-24":1,"2011-07-04":7,"2004-07-02":11,"2011-10-24":4,"2003-08-13":3,"2005-12-14":3,"2005-08-09":2,"2008-01-22":6,"2007-06-01":7,"2012-07-16":1,"2011-09-07":1,"2005-06-28":6,"2008-03-13":2,"2003-11-03":8,"2003-10-04":8,"2009-07-27":3,"2003-08-21":8,"2003-02-18":6,"2005-07-05":6,"2004-09-25":5,"2003-11-28":9,"2011-03-14":5,"2005-02-28":11,"2005-08-27":3,"2005-09-21":1,"2011-10-10":2,"2016-07-24":1,"2006-09-03":1,"2009-07-21":1,"2011-02-15":3,"2004-11-10":2,"2008-03-01":1,"2003-06-14":1,"2004-11-29":4,"2005-01-25":19,"2008-07-07":1,"2007-11-29":1,"2003-03-24":7,"2005-05-23":2,"2014-06-02":1,"2012-12-01":2,"2010-07-17":2,"2005-09-15":3,"2008-05-30":3,"2009-04-25":1,"2009-12-15":2,"2015-02-15":2,"2004-11-17":7,"2003-08-14":6,"2005-12-29":2,"2008-04-18":6,"2004-02-23":6,"2004-04-05":3,"2012-03-09":4,"2010-05-21":1,"2004-10-08":5,"2009-11-09":3,"2009-10-06":1,"2003-11-23":4,"2008-04-26":1,"2006-05-26":4,"2008-04-25":1,"2010-04-18":2,"2004-08-20":5,"2004-03-09":1,"2018-01-03":1,"2016-04-29":1,"2015-05-06":1,"2004-05-28":6,"2003-11-19":9,"2007-02-19":2,"2008-01-06":1,"2010-11-05":3,"2005-04-21":2,"2026-07-17":3,"2003-11-01":2,"2010-12-03":7,"2011-04-12":3,"2012-11-19":2,"2005-08-13":3,"2005-02-15":15,"2005-08-15":1,"2010-10-18":3,"2010-01-08":3,"2003-12-17":8,"2007-09-04":1,"2008-06-16":1,"2003-06-30":4,"2007-10-26":1,"2004-03-13":2,"2003-10-17":12,"2008-06-06":6,"2011-03-26":1,"2004-03-28":3,"2010-09-02":2,"2012-11-26":2,"2004-09-09":2,"2015-02-17":1,"2006-07-28":4,"2012-07-23":5,"2011-10-18":2,"2003-12-23":14,"2006-10-13":2,"2009-07-23":3,"2004-01-23":16,"2009-12-17":12,"2012-04-14":1,"2011-12-21":3,"2009-12-27":6,"2003-07-12":5,"2005-02-20":8,"2015-03-26":1,"2015-02-07":1,"2009-11-11":2,"2003-12-08":5,"2004-05-05":9,"2010-04-15":1,"2014-05-18":1,"2009-08-02":1,"2005-11-10":1,"2003-06-18":5,"2005-08-02":10,"2008-04-04":1,"2006-05-24":1,"2007-06-25":7,"2011-05-19":3,"2005-09-23":3,"2005-10-05":3,"2010-07-23":2,"2003-12-24":2,"2006-10-30":7,"2010-05-19":1,"2007-04-05":4,"2007-02-12":2,"2005-05-08":3,"2004-01-07":14,"2003-07-29":3,"2011-05-12":5,"2003-05-16":8,"2002-12-08":5,"2016-06-06":1,"2002-12-29":9,"2003-10-18":2,"2007-06-20":3,"2003-10-31":3,"2005-01-12":13,"2007-08-08":1,"2004-12-28":2,"2008-07-24":1,"2009-03-05":2,"2009-12-16":3,"2012-10-29":1,"2005-02-27":7,"2011-06-23":4,"2004-07-25":3,"2015-04-12":2,"2008-10-07":6,"2002-12-09":3,"2012-10-28":1,"2003-07-14":3,"2011-08-15":2,"2009-09-07":1,"2011-10-21":1,"2006-06-07":1,"2011-03-30":1,"2004-06-03":8,"2012-06-12":1,"2010-09-03":3,"2004-05-07":2,"2004-05-30":3,"2009-12-11":4,"2011-01-17":3,"2002-12-14":1,"2002-12-27":4,"2010-12-14":1,"2003-06-24":6,"2010-09-23":2,"2013-09-19":1,"2005-11-07":1,"2026-03-02":2,"2008-06-13":2,"2007-06-18":1,"2007-09-10":1,"2005-03-02":8,"2005-03-13":2,"2006-11-07":9,"2003-05-22":7,"2006-12-05":5,"2006-02-27":3,"2004-02-16":5,"2003-01-16":6,"2003-06-11":4,"2007-01-25":8,"2008-07-25":3,"2011-03-09":4,"2011-06-21":1,"2012-02-26":1,"2005-07-23":5,"2005-08-28":1,"2008-06-05":2,"2012-05-14":2,"2012-01-30":2,"2004-01-29":6,"2006-03-25":3,"2008-08-22":1,"2026-03-29":1,"2005-09-03":1,"2011-10-06":1,"2011-03-08":2,"2008-03-18":1,"2018-06-12":1,"2007-04-18":8,"2009-09-26":4,"2003-05-13":2,"2004-03-10":5,"2016-05-08":1,"2014-11-09":1,"2011-04-17":1,"2005-09-19":2,"2003-01-15":2,"2004-07-26":5,"2005-05-15":2,"2012-03-05":1,"2012-10-13":1,"2003-03-23":7,"2003-08-10":2,"2005-01-26":7,"2013-02-04":1,"2011-03-28":7,"2010-12-23":8,"2016-01-20":1,"2006-09-14":1,"2010-11-25":2,"2003-10-22":9,"2002-12-24":2,"2003-03-01":7,"2005-12-05":4,"2014-12-07":1,"2003-11-10":5,"2005-10-24":3,"2013-02-27":2,"2009-02-25":3,"2005-07-29":5,"2011-08-08":5,"2012-03-10":4,"2005-10-11":7,"2011-11-09":1,"2009-10-07":6,"2026-03-25":1,"2008-09-21":2,"2002-12-18":3,"2005-04-26":2,"2003-03-10":4,"2007-06-26":3,"2014-07-26":1,"2008-07-23":5,"2007-07-30":4,"2002-11-08":2,"2007-05-06":1,"2010-10-01":3,"2004-11-06":8,"2009-11-15":1,"2011-01-15":2,"2004-05-04":1,"2003-04-15":3,"2006-02-25":6,"2004-12-25":2,"2006-10-10":9,"2011-03-02":2,"2005-01-13":2,"2012-10-25":4,"2008-06-21":1,"2010-12-02":2,"2026-07-14":1,"2006-12-28":2,"2014-04-22":1,"2013-01-08":2,"2011-02-10":2,"2007-04-03":5,"2007-10-05":1,"2005-02-03":8,"2013-02-26":2,"2011-10-05":2,"2008-05-26":4,"2013-09-24":1,"2016-10-16":1,"2012-05-04":1,"2010-10-28":3,"2006-04-07":1,"2013-12-09":2,"2006-06-01":1,"2004-03-03":8,"2004-03-14":5,"2004-02-08":2,"2005-07-08":5,"2008-05-09":5,"2007-04-10":6,"2007-11-19":9,"2007-05-10":5,"2014-01-06":1,"2004-06-29":4,"2004-10-03":6,"2004-08-25":6,"2012-10-30":2,"2011-09-08":2,"2009-11-21":1,"2011-01-11":2,"2003-05-31":2,"2005-03-19":1,"2003-11-15":1,"2005-03-30":3,"2009-06-18":2,"2011-06-04":3,"2004-12-13":1,"2008-01-09":1,"2016-07-17":1,"2004-04-28":8,"2013-03-09":1,"2006-08-25":1,"2003-01-12":3,"2011-03-04":3,"2005-01-02":6,"2015-04-14":2,"2004-10-23":7,"2003-06-12":6,"2005-07-10":8,"2003-09-29":1,"2004-08-24":1,"2002-12-02":3,"2003-09-01":3,"2005-04-11":4,"2009-10-30":1,"2011-12-06":1,"2011-02-27":3,"2012-04-13":2,"2009-12-25":2,"2003-11-12":5,"2004-05-29":4,"2003-10-14":5,"2004-11-30":3,"2004-09-20":10,"2012-08-26":1,"2015-02-03":1,"2007-10-12":2,"2009-04-01":2,"2010-10-25":2,"2015-01-04":1,"2014-02-26":3,"2011-05-09":3,"2016-05-29":1,"2013-03-25":1,"2004-05-14":6,"2012-02-18":1,"2009-04-23":1,"2005-02-06":7,"2003-05-12":1,"2013-02-14":2,"2002-12-21":4,"2003-09-13":5,"2003-11-13":3,"2026-05-28":1,"2006-08-11":3,"2004-04-15":2,"2004-09-15":11,"2005-03-01":13,"2003-02-24":3,"2014-06-03":3,"2004-03-01":5,"2009-09-19":2,"2002-12-16":10,"2005-06-04":5,"2005-10-31":5,"2013-03-27":1,"2004-08-01":1,"2003-05-14":5,"2011-05-02":2,"2005-06-17":5,"2006-01-14":1,"2011-12-24":1,"2013-04-23":1,"2009-09-06":2,"2009-10-01":2,"2009-03-26":1,"2006-04-29":1,"2012-03-07":4,"2002-11-10":1,"2010-06-03":3,"2009-02-02":1,"2007-11-30":4,"2008-11-06":4,"2006-04-08":1,"2008-02-12":1,"2011-08-22":1,"2004-02-24":2,"2008-08-19":2,"2004-01-17":5,"2004-04-03":5,"2003-06-29":1,"2007-05-22":5,"2011-10-26":1,"2019-05-20":2,"2009-04-20":2,"2013-07-23":2,"2013-03-26":1,"2004-11-08":9,"2005-02-01":15,"2009-11-08":2,"2004-07-14":5,"2003-04-22":3,"2013-03-08":1,"2008-06-23":10,"2004-12-15":1,"2012-05-07":5,"2004-03-24":6,"2010-06-19":1,"2014-05-28":2,"2004-05-01":2,"2015-03-01":2,"2003-06-06":5,"2005-04-10":7,"2005-03-11":5,"2004-03-30":5,"2010-12-26":2,"2011-12-01":1,"2017-01-09":1,"2004-10-18":5,"2009-11-24":4,"2006-07-27":1,"2004-06-11":8,"2008-04-28":1,"2011-10-15":3,"2009-12-19":2,"2007-10-30":1,"2017-01-15":1,"2004-10-01":12,"2003-11-18":4,"2011-08-05":1,"2003-06-19":8,"2015-05-29":2,"2003-12-20":2,"2003-09-16":13,"2012-09-26":3,"2006-08-01":7,"2003-12-27":10,"2008-07-15":1,"2004-09-14":10,"2007-12-07":5,"2008-01-03":3,"2009-11-22":1,"2012-03-19":1,"2006-08-02":1,"2015-05-01":1,"2008-09-23":2,"2003-10-07":6,"2007-08-09":3,"2003-10-30":4,"2004-03-05":4,"2015-01-31":3,"2009-03-06":2,"2010-01-17":1,"2005-10-12":2,"2012-03-02":1,"2011-10-23":1,"2005-04-23":6,"2011-08-07":3,"2002-11-28":5,"2011-05-06":8,"2009-09-02":6,"2015-08-23":1,"2010-11-01":1,"2015-07-25":1,"2007-12-19":3,"2003-03-25":4,"2016-03-11":1,"2006-04-26":2,"2003-06-23":7,"2005-08-25":2,"2012-07-03":1,"2011-01-24":1,"2005-07-24":8,"2007-07-16":4,"2005-10-08":4,"2009-08-14":3,"2008-06-19":2,"2011-08-26":1,"2015-07-14":1,"2005-01-18":12,"2011-07-15":1,"2010-05-23":1,"2009-10-02":1,"2006-04-02":1,"2011-11-01":2,"2003-10-28":3,"2006-03-03":3,"2004-12-26":5,"2004-07-08":5,"2006-04-10":3,"2011-06-25":1,"2012-09-04":1,"2006-08-18":1,"2003-03-20":7,"2003-10-13":4,"2004-05-09":2,"2010-07-02":1,"2011-08-25":1,"2002-12-23":2,"2003-10-20":5,"2009-07-20":6,"2009-06-04":1,"2007-10-18":5,"2005-06-06":3,"2008-02-26":8,"2004-10-29":10,"2012-06-29":3,"2007-06-04":3,"2004-06-20":5,"2010-11-26":2,"2008-06-03":1,"2007-06-19":1,"2011-06-19":4,"2003-09-30":6,"2012-08-28":3,"2007-12-06":5,"2003-04-14":5,"2004-08-07":7,"2003-03-28":10,"2016-02-14":1,"2009-11-18":7,"2010-01-23":9,"2011-10-11":4,"2004-04-23":3,"2008-08-31":1,"2011-05-11":4,"2004-11-12":7,"2004-10-24":1,"2007-01-23":6,"2003-12-30":1,"2016-10-18":1,"2010-01-01":2,"2003-11-24":6,"2005-04-02":2,"2008-10-17":2,"2010-02-13":4,"2007-02-06":1,"2009-03-19":1,"2016-08-21":1,"2003-05-28":4,"2006-05-07":1,"2011-09-25":1,"2010-01-31":2,"2005-06-13":5,"2002-11-19":8,"2009-12-08":4,"2003-11-21":6,"2007-06-06":4,"2003-09-02":7,"2003-09-20":5,"2003-08-25":6,"2011-07-13":6,"2007-05-03":6,"2005-12-20":3,"2011-05-17":1,"2011-07-09":1,"2006-01-19":4,"2003-12-15":7,"2012-09-17":2,"2026-04-04":1,"2004-05-18":9,"2012-02-16":1,"2003-03-07":7,"2004-12-17":1,"2009-06-21":2,"2004-02-13":4,"2012-04-10":1,"2002-12-28":1,"2004-03-25":10,"2013-02-19":3,"2010-11-27":5,"2005-11-30":5,"2015-08-07":1,"2016-04-17":1,"2022-11-05":2,"2017-01-01":1,"2012-07-31":2,"2012-05-08":1,"2004-09-02":2,"2006-01-10":7,"2009-08-12":1,"2004-04-24":3,"2003-12-10":5,"2008-10-30":1,"2026-05-30":1,"2008-08-08":3,"2011-03-21":1,"2016-10-30":1,"2013-09-17":2,"2011-07-24":2,"2007-10-17":6,"2005-09-20":1,"2003-10-21":7,"2007-11-23":3,"2009-06-22":1,"2007-06-08":3,"2012-04-22":2,"2004-04-20":1,"2005-10-29":3,"2003-02-09":3,"2007-01-03":5,"2004-10-21":8,"2009-03-07":1,"2020-03-27":1,"2007-08-06":5,"2007-02-05":6,"2003-01-19":3,"2003-01-01":2,"2007-03-10":2,"2005-01-09":12,"2006-08-09":3,"2010-05-16":1,"2005-01-28":13,"2007-01-31":4,"2011-04-04":1,"2005-12-16":5,"2004-04-29":3,"2005-05-16":3,"2009-10-23":7,"2011-09-21":2,"2009-10-24":1,"2009-10-12":3,"2010-10-02":1,"2011-05-10":8,"2004-08-02":4,"2010-03-10":1,"2010-07-01":1,"2010-05-02":1,"2005-03-10":6,"2004-08-19":6,"2008-04-11":8,"2015-12-22":1,"2004-04-25":14,"2006-12-07":3,"2007-04-14":3,"2004-06-27":2,"2011-04-14":7,"2007-02-16":1,"2007-10-22":2,"2003-09-06":2,"2015-02-12":1,"2014-05-04":1,"2005-06-21":5,"2026-03-12":1,"2012-08-01":2,"2010-02-07":2,"2004-12-30":3,"2010-05-05":5,"2007-01-04":2,"2007-10-16":3,"2011-03-16":1,"2010-11-12":2,"2009-08-01":1,"2018-05-25":1,"2006-03-20":4,"2005-06-26":3,"2015-01-01":2,"2009-12-24":1,"2003-12-18":6,"2012-10-23":2,"2005-05-17":3,"2003-10-01":11,"2012-05-21":4,"2007-06-21":2,"2004-05-25":8,"2005-05-27":8,"2005-03-06":11,"2003-11-16":1,"2010-06-23":3,"2013-08-30":2,"2008-04-17":9,"2017-01-22":1,"2010-03-31":1,"2005-09-22":1,"2015-02-22":1,"2006-03-01":3,"2004-05-20":16,"2005-08-11":4,"2003-01-11":2,"2003-09-11":4,"2006-07-13":1,"2015-07-31":1,"2009-01-02":1,"2012-09-06":2,"2008-09-10":2,"2004-01-09":7,"2007-07-07":1,"2010-11-19":7,"2010-12-27":7,"2003-10-02":9,"2003-06-13":2,"2006-10-23":5,"2007-05-21":8,"2012-07-06":1,"2009-07-17":3,"2008-05-01":1,"2005-03-17":15,"2003-11-26":3,"2004-12-19":3,"2011-05-20":3,"2003-09-03":4,"2008-01-25":1,"2005-09-12":1,"2016-04-24":1,"2003-09-15":4,"2004-09-24":16,"2005-01-01":1,"2003-03-29":6,"2006-06-12":5,"2005-08-01":1,"2004-03-16":3,"2004-04-14":2,"2005-10-27":7,"2005-05-19":2,"2010-05-31":2,"2007-10-02":1,"2011-10-12":2,"2003-08-11":4,"2009-03-14":3,"2003-05-26":5,"2005-03-21":9,"2005-12-26":6,"2012-09-21":2,"2004-07-12":15,"2006-06-14":1,"2013-12-13":2,"2003-06-09":4,"2010-02-12":5,"2009-11-14":4,"2004-04-13":2,"2005-09-28":3,"2005-02-23":13,"2007-07-19":5,"2009-04-12":3,"2004-11-27":4,"2011-04-06":11,"2004-05-12":7,"2011-02-04":2,"2010-06-08":1,"2004-05-10":3,"2012-07-08":5,"2016-06-26":1,"2010-09-04":1,"2015-04-18":1,"2010-04-08":1,"2003-11-17":3,"2006-12-27":1,"2003-08-30":5,"2005-06-20":7,"2018-11-08":1,"2004-08-05":1,"2005-03-28":5,"2006-11-20":6,"2008-11-14":5,"2011-09-22":1,"2006-01-23":7,"2002-12-25":2,"2011-10-31":2,"2013-09-23":2,"2019-06-03":1,"2006-02-26":4,"2014-07-27":1,"2013-01-09":1,"2004-05-08":3,"2017-11-25":1,"2005-02-13":11,"2004-12-04":2,"2004-05-21":7,"2009-01-23":2,"2010-02-10":2,"2005-03-09":2,"2005-04-12":4,"2011-06-22":12,"2011-02-09":2,"2003-09-24":5,"2005-03-23":4,"2002-11-21":2,"2003-10-23":11,"2006-09-02":1,"2009-12-31":5,"2003-07-05":3,"2012-03-31":1,"2009-11-12":4,"2004-08-26":8,"2002-11-12":2,"2003-06-26":2,"2012-02-17":3,"2006-01-18":3,"2007-01-24":2,"2007-02-20":2,"2006-02-05":2,"2007-08-11":1,"2004-10-19":2,"2019-06-28":1,"2003-01-20":2,"2012-03-25":2,"2013-05-17":1,"2003-12-12":11,"2007-11-26":1,"2004-09-04":2,"2011-03-06":3,"2010-02-22":3,"2010-02-15":1,"2010-12-10":2,"2008-10-24":2,"2026-02-27":4,"2003-08-29":2,"2003-03-12":5,"2004-08-04":6,"2011-11-30":6,"2010-01-22":4,"2006-01-17":5,"2008-01-24":1,"2004-09-01":8,"2006-12-13":5,"2017-11-24":1,"2016-06-14":1,"2005-02-25":8,"2006-02-13":3,"2008-05-18":2,"2003-05-30":2,"2009-07-19":4,"2006-06-28":4,"2003-12-13":1,"2007-06-28":5,"2015-03-02":1,"2018-06-13":1,"2015-05-11":1,"2015-11-03":1,"2008-10-13":14,"2008-08-15":1,"2004-11-13":5,"2004-01-04":8,"2003-03-27":8,"2012-10-21":1,"2003-01-05":3,"2015-01-02":1,"2005-09-04":3,"2004-01-25":6,"2008-08-20":5,"2012-10-19":3,"2008-04-01":5,"2006-08-16":4,"2006-08-07":10,"2005-05-29":3,"2010-01-03":1,"2011-08-21":2,"2008-07-21":3,"2016-04-22":2,"2007-04-26":1,"2010-12-05":1,"2005-03-07":6,"2005-07-26":3,"2004-06-18":5,"2009-01-26":3,"2005-11-01":3,"2007-10-11":1,"2011-05-14":2,"2010-09-15":5,"2014-03-20":1,"2005-10-20":3,"2003-10-05":3,"2003-02-20":5,"2016-06-25":1,"2008-09-08":2,"2003-03-30":1,"2004-12-22":15,"2005-02-11":4,"2011-08-12":5,"2008-10-03":1,"2011-02-16":12,"2006-02-16":4,"2004-03-21":7,"2003-04-12":12,"2009-07-09":1,"2009-08-07":1,"2004-06-04":10,"2005-10-09":4,"2009-03-04":1,"2004-06-01":11,"2007-08-30":1,"2009-04-24":1,"2006-01-27":4,"2003-09-22":3,"2005-02-26":3,"2005-05-09":1,"2006-01-15":2,"2011-12-23":1,"2005-06-29":5,"2013-08-07":1,"2008-03-22":1,"2011-07-17":1,"2008-05-14":4,"2009-02-09":1,"2005-05-10":1,"2004-07-10":3,"2010-06-09":2,"2007-07-20":9,"2004-10-05":1,"2008-09-20":3,"2011-06-05":2,"2003-01-31":2,"2011-02-19":1,"2009-08-05":6,"2002-11-07":3,"2012-10-10":1,"2008-02-01":6,"2005-01-21":9,"2003-03-31":4,"2010-07-19":2,"2004-11-26":3,"2012-09-19":3,"2011-05-30":2,"2003-01-06":5,"2012-11-12":1,"2012-03-16":1,"2009-10-08":1,"2003-01-17":4,"2011-09-28":7,"2009-09-28":4,"2007-05-16":4,"2026-07-06":2,"2009-05-29":5,"2010-04-22":1,"2003-06-16":9,"2004-09-16":4,"2013-09-11":4,"2006-11-13":4,"2004-10-30":4,"2003-01-02":7,"2007-06-05":7,"2005-01-05":5,"2009-10-29":4,"2006-03-31":3,"2005-08-22":2,"2005-10-06":3,"2011-02-26":3,"2008-03-20":1,"2013-05-06":1,"2007-05-08":4,"2004-11-23":4,"2006-12-15":5,"2006-10-31":9,"2006-03-23":1,"2012-01-08":1,"2008-06-17":1,"2006-03-10":1,"2006-02-11":2,"2005-08-21":2,"2013-03-22":3,"2005-12-21":5,"2014-04-28":1,"2010-11-14":7,"2008-09-29":5,"2006-04-22":2,"2014-06-15":1,"2010-01-20":12,"2008-10-28":1,"2016-11-06":2,"2003-12-29":3,"2004-06-28":6,"2010-09-06":6,"2004-04-22":3,"2012-12-03":2,"2009-04-16":3,"2007-02-14":1,"2006-11-21":4,"2006-10-06":6,"2015-01-25":5,"2003-02-01":8,"2012-05-11":1,"2005-08-14":4,"2009-12-05":2,"2012-07-12":1,"2005-10-16":1,"2007-09-02":1,"2015-06-04":1,"2012-09-05":1,"2007-01-15":6,"2010-08-23":2,"2003-02-27":15,"2004-06-30":3,"2012-10-27":1,"2006-02-12":2,"2004-11-15":6,"2010-02-24":3,"2005-07-22":1,"2008-01-08":2,"2011-02-02":2,"2015-03-06":1,"2012-10-20":1,"2003-12-22":3,"2006-08-15":3,"2013-01-17":2,"2003-09-17":8,"2013-03-16":1,"2016-01-15":1,"2007-01-18":3,"2002-12-04":2,"2009-06-24":2,"2005-05-26":11,"2010-01-10":6,"2012-09-20":2,"2003-12-05":2,"2008-03-17":3,"2006-08-23":3,"2009-10-19":1,"2004-06-22":3,"2005-01-24":9,"2004-09-27":9,"2004-05-26":5,"2008-07-17":1,"2009-01-09":2,"2007-11-28":6,"2004-05-16":8,"2009-03-29":2,"2026-03-07":1,"2003-09-14":5,"2008-03-08":2,"2009-12-03":3,"2011-11-07":2,"2009-12-06":1,"2005-06-23":11,"2013-04-29":2,"2006-10-12":8,"2008-01-31":7,"2004-10-17":5,"2007-01-16":1,"2003-11-04":5,"2015-07-19":2,"2003-04-20":4,"2009-10-31":6,"2011-04-15":3,"2005-11-22":9,"2003-08-31":1,"2012-02-13":3,"2009-01-07":1,"2005-05-30":4,"2004-12-16":6,"2015-06-05":1,"2007-04-06":1,"2010-07-04":2,"2012-04-23":4,"2009-03-18":2,"2009-02-04":2,"2012-10-14":2,"2011-04-30":1,"2006-01-28":2,"2005-07-27":4,"2005-10-17":1,"2013-03-02":3,"2010-08-27":2,"2013-01-14":3,"2008-10-23":1,"2004-06-21":2,"2002-11-25":1,"2005-01-23":3,"2010-12-09":2,"2008-03-03":2,"2011-09-19":2,"2012-06-08":1,"2011-03-01":1,"2019-08-02":1,"2010-12-17":3,"2006-07-31":11,"2014-07-29":1,"2003-06-17":2,"2015-03-15":2,"2009-07-10":8,"2005-06-27":4,"2008-11-10":4,"2011-05-15":4,"2005-04-06":5,"2005-04-08":2,"2005-01-31":9,"2009-01-31":2,"2003-07-19":6,"2006-06-06":2,"2003-10-29":1,"2014-05-25":1,"2004-08-17":14,"2009-06-11":1,"2008-05-06":2,"2003-06-04":5,"2003-12-09":6,"2003-08-26":5,"2003-05-09":4,"2011-02-23":1,"2005-05-21":1,"2008-01-20":1,"2012-06-22":1,"2018-06-27":1,"2006-05-18":2,"2006-03-18":5,"2011-12-07":2,"2003-10-15":10,"2005-11-21":4,"2003-07-17":5,"2004-03-31":8,"2010-05-15":6,"2007-05-14":4,"2017-11-21":1,"2013-01-07":1,"2009-09-24":1,"2015-01-13":1,"2016-01-31":3,"2008-02-13":4,"2008-01-18":3,"2012-02-03":1,"2013-03-21":2,"2008-12-16":3,"2003-02-21":4,"2008-03-15":2,"2010-11-29":4,"2003-08-08":5,"2006-03-05":3,"2005-05-24":2,"2010-02-05":2,"2009-12-10":3,"2004-01-05":10,"2006-02-21":5,"2011-06-15":4,"2011-08-19":2,"2007-10-20":1,"2013-08-26":1,"2011-09-15":1,"2005-04-04":4,"2007-05-31":7,"2005-04-09":4,"2003-05-20":2,"2006-07-12":1,"2010-01-16":1,"2007-10-01":3,"2007-12-21":4,"2004-06-10":7,"2006-09-04":1,"2004-07-16":3,"2005-04-25":4,"2006-07-19":4,"2011-08-13":1,"2010-02-26":1,"2003-10-19":7,"2011-03-13":5,"2011-04-29":5,"2006-03-16":4,"2005-09-16":8,"2006-05-22":4,"2003-02-11":2,"2010-11-10":3,"2003-08-05":2,"2010-07-27":2,"2010-01-12":5,"2004-04-06":7,"2005-01-16":8,"2006-06-16":2,"2005-09-25":1,"2013-02-12":6,"2005-07-18":2,"2003-04-02":6,"2005-02-16":9,"2017-11-22":1,"2004-01-15":9,"2011-05-26":1,"2006-02-28":11,"2007-10-29":2,"2005-10-14":9,"2008-05-05":4,"2010-01-18":5,"2004-11-04":7,"2003-09-04":4,"2006-09-11":3,"2015-01-05":3,"2003-04-29":2,"2003-04-24":6,"2006-05-02":4,"2004-01-19":9,"2003-04-19":5,"2010-04-03":1,"2011-03-25":2,"2007-07-03":5,"2009-10-13":5,"2003-02-08":5,"2005-11-19":5,"2011-06-26":1,"2014-02-25":1,"2005-10-26":6,"2011-06-07":2,"2009-02-16":9,"2002-12-26":1,"2008-03-27":2,"2011-01-28":2,"2012-07-27":2,"2004-06-05":5,"2004-07-07":4,"2007-04-24":8,"2014-04-04":2,"2003-01-10":2,"2006-07-10":7,"2004-07-31":4,"2007-03-16":6,"2011-02-21":5,"2005-09-10":2,"2006-11-30":6,"2009-05-01":2,"2011-04-24":1,"2005-10-07":4,"2003-12-28":3,"2011-03-19":1,"2009-10-14":3,"2007-01-08":10,"2013-04-02":2,"2003-01-27":1,"2011-04-23":1,"2003-02-17":12,"2014-01-07":1,"2008-09-25":1,"2014-11-16":1,"2005-06-18":5,"2006-01-09":9,"2012-11-17":1,"2015-08-30":1,"2009-07-13":2,"2007-06-13":3,"2006-05-19":2,"2007-02-21":6,"2006-07-14":4,"2003-10-08":2,"2004-09-26":8,"2010-11-16":4,"2006-02-06":6,"2011-04-27":8,"2007-09-15":2,"2010-11-17":3,"2012-04-05":1,"2003-12-04":4,"2010-01-11":8,"2011-08-10":4,"2004-07-03":14,"2005-03-05":3,"2012-02-09":3,"2013-10-15":1,"2002-11-18":3,"2004-01-16":12,"2005-10-23":2,"2010-07-03":1,"2004-09-23":21,"2023-08-19":1,"2012-05-23":2,"2005-02-10":7,"2004-08-22":4,"2008-02-11":4,"2015-02-10":1,"2008-08-06":1,"2011-05-01":6,"2005-12-09":10,"2007-07-17":3,"2008-01-15":2,"2010-10-08":4,"2009-09-21":1,"2005-08-04":5,"2010-11-08":4,"2002-11-06":2,"2008-10-01":1,"2005-07-04":1,"2011-09-27":2,"2015-07-21":1,"2004-05-27":1,"2008-06-11":3,"2006-02-18":3,"2011-10-14":5,"2005-03-31":5,"2009-03-24":3,"2012-03-15":1,"2005-01-29":6,"2005-06-14":3,"2007-04-20":4,"2005-06-25":6,"2004-05-24":6,"2003-10-10":5,"2009-05-04":1,"2010-05-27":5,"2016-02-07":1,"2015-11-22":1,"2004-08-12":9,"2010-09-27":4,"2004-10-02":11,"2015-07-13":1,"2008-10-18":5,"2009-10-26":2,"2004-10-07":13,"2011-06-18":1,"2010-06-18":1,"2005-05-18":3,"2003-09-18":9,"2007-03-14":7,"2006-05-16":3,"2009-11-20":3,"2005-07-16":7,"2011-02-05":1,"2005-08-19":4,"2006-03-06":4,"2011-10-07":2,"2016-01-04":1,"2005-06-15":1,"2003-03-09":3,"2015-09-21":1,"2005-02-02":7,"2016-07-10":1,"2010-11-20":5,"2004-07-24":5,"2009-07-29":3,"2005-12-12":3,"2008-08-28":1,"2013-02-18":2,"2006-07-25":3,"2011-07-27":9,"2011-04-26":2,"2012-08-29":3,"2003-04-26":4,"2004-11-07":4,"2008-05-02":6,"2012-02-08":5,"2012-06-17":1,"2010-12-16":3,"2007-07-11":2,"2004-01-21":9,"2002-11-22":2,"2015-05-30":2,"2003-08-17":1,"2010-09-21":6,"2008-10-29":2,"2011-01-30":2,"2006-05-29":9,"2007-05-09":10,"2008-10-10":3,"2003-03-11":9,"2007-07-06":4,"2003-07-13":3,"2010-07-16":2,"2009-01-20":2,"2016-08-03":1,"2015-05-03":1,"2004-08-03":8,"2002-12-13":4,"2002-12-10":3,"2002-11-13":3,"2003-09-05":4,"2007-03-28":2,"2010-06-16":3,"2006-01-06":11,"2003-12-07":3,"2015-01-09":1,"2007-07-26":5,"2005-09-30":4,"2015-12-21":2,"2015-01-18":1,"2004-12-18":6,"2012-06-18":6,"2014-05-10":1,"2007-10-19":2,"2010-07-10":2,"2006-09-29":6,"2008-07-09":6,"2003-10-25":2,"2006-02-01":5,"2004-06-16":2,"2013-11-11":1,"2006-11-28":3,"2004-11-14":14,"2005-11-27":2,"2005-07-09":9,"2011-06-08":1,"2008-02-06":1,"2026-06-21":1,"2010-02-21":3,"2007-02-22":1,"2006-03-26":1,"2010-04-29":2,"2005-03-18":3,"2006-11-02":9,"2011-01-19":1,"2006-01-07":6,"2002-12-11":1,"2007-03-26":2,"2007-01-22":2,"2006-03-09":7,"2003-02-07":7,"2009-02-13":3,"2005-11-28":5,"2012-07-02":4,"2008-02-19":7,"2011-02-11":1,"2006-01-31":2,"2005-01-07":7,"2010-12-08":4,"2004-12-03":5,"2009-12-18":8,"2007-09-20":1,"2011-03-29":3,"2004-01-18":1,"2007-02-09":4,"2007-11-05":2,"2010-04-28":1,"2010-09-14":2,"2007-08-01":3,"2012-10-18":1,"2012-07-29":1,"2009-05-27":2,"2006-08-29":1,"2012-02-28":1,"2006-01-26":6,"2009-11-25":1,"2009-11-13":1,"2010-02-08":1,"2004-12-21":2,"2005-06-05":3,"2003-08-04":4,"2005-10-30":1,"2003-08-23":4,"2006-10-24":6,"2011-04-07":2,"2008-11-26":2,"2007-03-15":3,"2008-07-01":1,"2010-10-09":1,"2004-11-21":7,"2004-03-20":1,"2007-07-13":3,"2005-07-15":2,"2011-10-25":1,"2004-09-12":2,"2004-09-17":7,"2010-04-02":3,"2003-07-23":3,"2004-10-09":2,"2004-09-21":8,"2008-02-28":1,"2005-05-31":9,"2008-08-25":7,"2006-10-09":7,"2010-07-28":1,"2015-09-13":2,"2003-02-26":1,"2004-07-01":6,"2010-04-09":3,"2003-03-16":1,"2007-06-15":2,"2012-05-12":2,"2011-03-20":1,"2012-05-19":1,"2011-05-08":2,"2009-06-01":1,"2009-03-25":2,"2026-02-23":1,"2009-12-04":1,"2007-07-31":7,"2014-10-12":1,"2006-03-02":2,"2009-09-01":1,"2010-03-07":4,"2003-05-23":5,"2015-10-16":1,"2006-07-24":1,"2010-11-07":1,"2004-04-27":5,"2005-01-27":3,"2022-11-06":1,"2009-01-19":3,"2010-05-28":1,"2007-03-12":2,"2005-01-04":6,"2004-04-01":8,"2015-10-26":1,"2014-01-31":1,"2008-05-17":1,"2005-04-01":7,"2009-03-11":2,"2006-06-29":3,"2004-05-31":10,"2006-03-07":1,"2009-05-09":1,"2015-05-17":1,"2011-06-28":1,"2003-04-23":4,"2005-04-27":3,"2004-08-16":10,"2002-11-27":6,"2011-07-08":4,"2006-11-16":2,"2026-03-05":1,"2009-04-27":2,"2004-11-19":4,"2008-08-14":1,"2005-09-06":2,"2011-11-29":2,"2004-11-02":6,"2004-10-20":4,"2015-08-02":1,"2008-09-11":1,"2003-12-14":8,"2009-09-29":3,"2013-02-08":1,"2005-04-18":3,"2004-12-31":5,"2008-07-19":1,"2005-01-03":7,"2026-07-05":1,"2005-09-07":1,"2006-02-03":2,"2008-09-19":5,"2006-10-17":3,"2009-03-13":6,"2007-04-25":8,"2012-02-29":1,"2011-06-30":4,"2012-10-22":4,"2004-07-19":5,"2010-03-02":1,"2004-12-29":1,"2008-02-14":1,"2003-05-05":3,"2006-07-05":2,"2006-01-12":3,"2004-10-25":4,"2005-06-22":1,"2019-08-20":1,"2003-04-17":4,"2013-02-20":2,"2003-08-18":4,"2015-01-26":1,"2009-10-09":4,"2007-06-29":3,"2005-06-24":3,"2005-04-14":4,"2004-03-26":4,"2003-11-11":4,"2010-03-08":2,"2006-01-20":10,"2009-10-15":2,"2003-02-19":5,"2004-11-11":5,"2003-03-14":10,"2006-05-14":1,"2008-11-28":5,"2010-01-15":4,"2010-10-21":2,"2012-03-13":1,"2004-09-18":3,"2003-08-02":6,"2007-01-19":4,"2005-07-30":6,"2015-04-04":3,"2017-08-11":1,"2002-12-12":9,"2008-09-24":2,"2002-11-30":3,"2010-01-09":10,"2004-05-13":11,"2004-06-09":5,"2008-10-14":3,"2003-05-11":3,"2007-02-13":3,"2011-09-16":1,"2003-06-25":5,"2005-06-12":3,"2009-09-16":1,"2005-05-28":7,"2004-01-01":7,"2003-07-31":4,"2004-04-18":3,"2014-07-22":2,"2010-01-05":5,"2006-03-28":2,"2006-09-26":3,"2012-03-12":2,"2004-07-15":2,"2003-04-28":5,"2015-08-09":1,"2016-08-28":2,"2004-04-08":4,"2005-08-08":3,"2003-11-06":7,"2004-08-14":4,"2007-07-10":3,"2004-10-10":2,"2008-06-02":7,"2006-01-22":1,"2007-03-29":5,"2015-01-15":2,"2015-06-14":1,"2004-08-09":4,"2004-11-05":5,"2009-06-16":3,"2013-12-18":1,"2009-02-08":2,"2015-03-14":3,"2005-04-03":3,"2011-05-31":2,"2008-04-02":2,"2005-05-22":1,"2004-12-01":1,"2002-12-31":3,"2007-04-19":3,"2005-08-26":1,"2003-06-21":6,"2009-08-06":1,"2012-06-11":2,"2011-04-28":7,"2006-10-05":6,"2003-02-04":5,"2004-09-28":5,"2011-10-04":2,"2009-11-04":8,"2002-11-11":2,"2023-08-27":3,"2006-04-04":1,"2010-05-30":2,"2004-04-02":9,"2003-12-02":4,"2009-06-29":1,"2005-07-03":6,"2010-05-12":4,"2015-03-21":1,"2007-05-27":1,"2007-12-14":4,"2006-09-24":1,"2010-11-30":3,"2026-03-16":1,"2015-08-26":1,"2015-06-20":1,"2010-01-26":3,"2011-08-03":6,"2011-01-13":1,"2008-01-21":11,"2015-04-06":1,"2008-06-04":1,"2006-06-26":11,"2012-06-23":1,"2026-03-14":1,"2004-10-31":8,"2005-11-16":4,"2006-04-24":2,"2005-12-11":1,"2015-04-11":1,"2003-02-12":2,"2008-10-06":1,"2018-11-10":1,"2011-11-10":4,"2011-07-19":2,"2003-07-02":7,"2003-11-29":3,"2007-05-11":3,"2010-12-21":1,"2003-07-01":7,"2003-02-14":5,"2008-06-27":5,"2011-09-30":8,"2004-12-02":1,"2009-10-04":4,"2004-07-21":4,"2009-01-10":1,"2011-07-18":6,"2003-06-01":7,"2003-11-02":1,"2005-12-04":3,"2005-12-02":5,"2006-04-01":4,"2007-01-29":2,"2003-11-30":3,"2005-03-03":12,"2009-12-20":3,"2005-08-20":4,"2026-03-13":6,"2008-09-17":4,"2010-02-04":2,"2008-10-19":2,"2006-06-30":4,"2004-05-11":4,"2011-06-11":3,"2013-11-06":1,"2005-08-29":3,"2007-06-14":1,"2005-10-22":4,"2006-06-09":3,"2010-07-26":2,"2004-08-08":1,"2012-07-04":4,"2019-02-22":1,"2003-04-10":7,"2004-11-25":2,"2005-09-01":1,"2012-10-05":1,"2009-09-18":3,"2009-07-31":1,"2005-03-26":4,"2011-02-13":4,"2015-01-14":1,"2009-12-21":6,"2006-02-15":5,"2012-02-27":1,"2018-11-14":1,"2008-12-03":1,"2007-11-06":1,"2009-02-03":2,"2005-12-13":6,"2016-05-02":1,"2009-04-03":3,"2003-10-12":2,"2003-07-22":3,"2011-07-28":1,"2015-08-16":1,"2013-05-31":1,"2004-09-03":3,"2005-11-02":2,"2014-10-26":1,"2012-03-22":1,"2009-06-13":1,"2009-02-20":5,"2012-07-05":4,"2003-08-12":1,"2010-01-21":1,"2008-08-21":3,"2005-04-07":3,"2011-09-04":2,"2011-09-11":1,"2003-02-28":4,"2003-12-31":5,"2004-12-08":1,"2004-10-11":8,"2004-01-14":10,"2005-09-09":2,"2010-07-18":1,"2003-09-28":6,"2009-09-13":1,"2007-12-03":1,"2004-04-12":6,"2005-08-16":4,"2003-07-20":5,"2011-12-30":1,"2002-11-17":4,"2012-09-12":1,"2010-03-01":3,"2007-01-26":5,"2004-01-13":9,"2005-02-08":10,"2008-07-29":1,"2011-05-18":8,"2011-01-16":5,"2004-02-02":11,"2006-07-11":2,"2010-05-06":2,"2011-05-16":7,"2014-03-11":1,"2003-09-23":3,"2005-11-05":2,"2006-10-27":8,"2003-06-07":2,"2011-06-29":2,"2009-06-23":1,"2012-01-05":1,"2011-07-22":3,"2003-04-04":2,"2009-03-23":3,"2003-07-06":5,"2010-12-18":3,"2003-09-21":1,"2011-12-28":1,"2015-03-03":1,"2015-09-06":1,"2006-12-11":3,"2006-09-22":2,"2006-11-09":5,"2003-05-06":5,"2010-02-27":4,"2005-07-12":2,"2002-12-22":5,"2013-10-14":1,"2015-09-17":1,"2011-10-28":1,"2016-01-25":1,"2005-02-22":12,"2003-05-07":4,"2010-06-20":3,"2003-01-13":4,"2002-12-05":1,"2005-04-29":5,"2003-09-07":3,"2016-03-05":1,"2003-07-07":4,"2010-01-04":2,"2010-05-18":1,"2009-05-15":2,"2009-07-03":2,"2005-11-11":3,"2011-08-17":3,"2003-02-10":6,"2005-07-17":1,"2004-12-10":3,"2015-03-17":1,"2003-12-03":6,"2004-12-24":4,"2005-10-18":3,"2005-03-16":11,"2005-10-25":4,"2004-11-22":13,"2005-01-06":6,"2011-06-27":7,"2009-12-26":7,"2008-02-27":1,"2016-03-06":1,"2004-04-30":1,"2006-10-16":4,"2011-06-24":4,"2009-07-06":3,"2005-10-13":2,"2012-01-06":1,"2006-09-27":4,"2007-05-07":5,"2005-02-19":5,"2003-06-27":3,"2005-08-17":7,"2004-11-03":10,"2009-11-10":2,"2005-01-20":8,"2005-06-10":5,"2006-04-13":3,"2006-02-19":2,"2015-04-16":1,"2012-03-23":2,"2003-04-08":10,"2005-06-09":6,"2026-04-01":1,"2005-05-20":4,"2007-01-30":3,"2008-08-26":3,"2004-06-08":7,"2003-02-16":5,"2009-11-23":2,"2004-05-23":3,"2015-03-22":1,"2004-10-15":7,"2003-01-07":9,"2010-02-20":1,"2007-11-14":1,"2011-02-03":1,"2013-07-29":3,"2015-01-20":3,"2005-02-09":8,"2004-04-21":6,"2009-05-17":1,"2003-09-26":7,"2009-08-10":3,"2009-11-06":1,"2004-06-15":4,"2008-05-07":4,"2020-03-13":1,"2008-06-29":2,"2005-10-21":3,"2003-01-03":8,"2014-11-30":1,"2003-04-25":3,"2008-07-16":3,"2015-02-27":1,"2011-07-11":2,"2011-10-27":1,"2002-11-05":5,"2003-03-02":5,"2004-04-07":3,"2002-11-20":6,"2008-11-20":3,"2010-11-13":7,"2026-04-27":1,"2006-10-25":6,"2008-12-24":1,"2010-05-08":1,"2012-07-14":1,"2007-01-09":3,"2011-10-02":4,"2011-05-25":5,"2010-04-23":2,"2005-04-19":7,"2003-03-03":1,"2016-11-22":1,"2005-01-19":12,"2012-07-15":1,"2009-08-18":1,"2004-09-22":14,"2009-07-07":1,"2013-08-28":3,"2006-08-10":4,"2006-09-28":5,"2005-11-13":10,"2007-01-12":5,"2004-06-14":2,"2005-11-29":1,"2003-07-24":3,"2011-02-08":1,"2014-04-15":1,"2008-11-17":4,"2011-07-23":1,"2011-12-31":1,"2003-01-04":3,"2005-12-30":5,"2026-03-19":2,"2004-06-13":4,"2015-11-02":1,"2010-06-17":1,"2003-06-02":2,"2007-08-10":2,"2007-04-23":11,"2006-11-27":6,"2007-05-02":2,"2006-06-27":1,"2008-06-24":2,"2011-02-14":1,"2011-05-13":8,"2015-10-25":1,"2012-11-03":1,"2007-10-04":1,"2008-05-19":2,"2005-07-14":1,"2003-05-21":4,"2010-12-06":2,"2011-07-05":1,"2004-07-11":2,"2005-12-07":6,"2004-08-15":8,"2008-07-14":7,"2004-05-17":12,"2002-12-19":4,"2003-03-26":7,"2006-12-29":3,"2010-11-02":2,"2010-07-11":2,"2004-04-19":3,"2006-09-21":4,"2014-08-10":1,"2010-11-18":3,"2006-01-04":8,"2014-01-14":4,"2006-11-10":3,"2005-02-04":6,"2003-08-27":4,"2017-08-14":1,"2008-03-28":5,"2002-11-03":5,"2008-06-25":4,"2008-07-30":1,"2004-02-15":9,"2006-02-14":11,"2012-06-03":6,"2015-11-06":1,"2006-08-17":1,"2004-07-06":7,"2004-04-26":8,"2012-05-09":3,"2005-03-29":8,"2003-01-29":4,"2008-04-03":10,"2004-02-26":9,"2011-03-31":1,"2005-03-22":4,"2003-06-15":5,"2005-07-06":4,"2007-04-17":8,"2011-01-18":3,"2016-07-31":3,"2006-01-02":10,"2003-02-02":2,"2008-09-12":2,"2012-06-20":2,"2026-03-15":2,"2019-11-08":2,"2010-01-25":3,"2010-11-23":6,"2026-05-29":1,"2022-11-11":1,"2010-05-22":1,"2004-07-05":5,"2005-02-05":9,"2011-02-06":1,"2003-04-16":1,"2005-03-08":7,"2010-02-19":1,"2014-06-22":2,"2011-09-26":2,"2011-02-17":1,"2009-04-14":1,"2008-05-13":5,"2016-03-20":1,"2006-02-23":10,"2002-12-20":7,"2010-12-24":1,"2014-06-04":2,"2007-02-08":2,"2011-12-19":2,"2003-07-16":8,"2012-12-10":1,"2005-10-03":3,"2003-03-13":8,"2008-06-30":6,"2005-07-11":2,"2011-08-31":1,"2006-04-18":4,"2015-03-09":1,"2006-03-24":1,"2011-01-21":4,"2008-11-24":3,"2004-03-17":2,"2011-06-20":4,"2006-11-22":5,"2009-01-12":4,"2005-11-18":1,"2013-07-01":1,"2004-04-09":4,"2004-07-04":15,"2004-03-11":14,"2007-02-07":3,"2004-08-10":4,"2008-06-26":8,"2009-06-07":1,"2011-05-28":2,"2009-10-10":1,"2004-02-22":6,"2003-03-04":9,"2012-01-04":1,"2006-03-04":8,"2005-11-04":2,"2011-10-09":6,"2003-12-19":7,"2010-01-24":7,"2010-10-06":2,"2007-05-17":1,"2003-09-19":6,"2008-10-31":5,"2008-03-21":3,"2003-11-27":8,"2008-06-20":1,"2006-08-08":2,"2003-07-21":6,"2026-02-22":3,"2011-04-20":5,"2003-03-08":2,"2003-04-13":2,"2006-02-09":7,"2005-08-07":2,"2003-06-05":9,"2011-12-20":1,"2004-01-11":6,"2013-04-14":1,"2003-10-11":3,"2012-04-28":2,"2015-06-07":1,"2004-12-05":2,"2011-10-19":2,"2006-03-12":3,"2008-10-20":1,"2011-11-20":3,"2009-02-15":1,"2014-10-19":1,"2006-01-11":6,"2009-12-07":4,"2004-12-07":2,"2004-01-20":9,"2010-12-28":4,"2013-09-12":1,"2014-01-04":1,"2003-08-28":1,"2005-03-04":5,"2014-04-02":1,"2002-11-09":2,"2026-03-01":2,"2003-05-24":1,"2004-02-11":7,"2006-09-18":6,"2002-12-15":2,"2006-02-04":1,"2005-11-12":4,"2005-10-28":2,"2008-09-16":2,"2015-03-16":2,"2008-09-05":7,"2026-06-30":2,"2011-03-11":2,"2009-04-08":3,"2005-06-08":7,"2004-05-19":4,"2003-06-10":3,"2011-10-17":3,"2006-03-14":1,"2013-07-02":2,"2005-06-07":8,"2008-10-11":2,"2010-12-01":4,"2012-11-20":1,"2011-07-07":1,"2009-09-25":3,"2013-08-04":1},"years":{"2002":194,"2003":1640,"2004":2030,"2005":1537,"2006":903,"2007":722,"2008":596,"2009":541,"2010":584,"2011":709,"2012":294,"2013":149,"2014":64,"2015":141,"2016":63,"2017":14,"2018":12,"2019":10,"2020":4,"2021":1,"2022":5,"2023":4,"2026":66}} \ No newline at end of file diff --git a/fixtures/golden-generated-sites/rfc1437-sample/category/article/index.html b/fixtures/golden-generated-sites/rfc1437-sample/category/article/index.html index 7e62848..240e1b4 100644 --- a/fixtures/golden-generated-sites/rfc1437-sample/category/article/index.html +++ b/fixtures/golden-generated-sites/rfc1437-sample/category/article/index.html @@ -4,16 +4,16 @@ Content-type: matter-transport/sentient-life-form - + - + - + @@ -25,20 +25,19 @@ -
- + @@ -60,176 +59,176 @@ - - - + + +

Artikel

- - - + + +
- - -
- -
- -
- - - -

Steve Yegge on Vibe Coding

- -

Steve Yegge spricht im Interview über die Zukunft der Programmierung und die Herausforderungen des Vibe Codings. Der Autor teilt seine Erfahrungen und sieht einen Umbruch vergleichbar mit der Einführung von Hochsprachen.

-
- + +
+ +
+
- - - -

bDS langsam benutzbar

- -

So langsam macht die neue Software Spaß, alles was man für die Benutzung und Erstellung braucht ist weitestgehend vorhanden. Ein paar kleine Schönheitsfehler hat sie moch und es gibt noch das eine oder andere Feature, das ich will, aber ich kann schon alles machen, was ich wirklich als Minimum brauche. Veröffentlichen geht jetzt einfach mit einem shell script:

-
#!/bin/sh
+
+
+
+                      

Steve Yegge on Vibe Coding

+ +
+ +
+

Interessantes Interview mit Steve Yegge (ja, genau, Flamer-Steve der früher oft durch sehr pointierte bis polemische Kommentare aufgefallen ist). Mein Lieblingszitat: "we are entering the John Deere era of programming" - yep, nicht mehr der kleine Landwird mit Familienbetrieb oder die kleine Kooperative, sondern die große Welle mit großen Codeengen die entstehen werden in Massen. Ebenfalls interessant der Punkt, dass Code-Merge in der nahen Zukunft das Bottleneck wird, weil 10x produktive Programmierer halt auch 10x an Code produzieren und mehrere von denen die gleichzeitig reorganisieren weils gerade mal dazwischen passt - autsch.

+

Meine eigenen Erfahrungen mit Vibe Coding: die Software, mit der ich jetzt mein Blog manage, ist komplett so entstanden. Ich baue auch an Tools für SecondLife Content per Vibe Coding. Ich nutze es auf der Arbeit für Prototypen aber auch für komplexe Desktop-Anwendungen für speziellere Zwecke. Und das ganze jetzt seit Dezember. Ich muss sagen, dass ich definitiv das Gefühl habe, das die Programmierung vor dem Umbruch steht, der vergleichbar mit der Einführung von Hochsprachen (etwas vor meiner Zeit) oder die Einführung von Runtimes mit Speichermanagement (Java, DotNet, ...) ist. Dementsprechend laut ist es gerade mit all den Pro- und Contra-Stimmen. Aber spannend ist es definitiv. Und die Welt wird sich für Programmierer definitiv ändern.

+
+ +
+ + + +

bDS langsam benutzbar

+ +

So langsam macht die neue Software Spaß, alles was man für die Benutzung und Erstellung braucht ist weitestgehend vorhanden. Ein paar kleine Schönheitsfehler hat sie moch und es gibt noch das eine oder andere Feature, das ich will, aber ich kann schon alles machen, was ich wirklich als Minimum brauche. Veröffentlichen geht jetzt einfach mit einem shell script:

+
#!/bin/sh
 
 cd ~/Blogs/rfc1437.de/html
 
 rsync -rav --delete \
-	--exclude='thumbnails/' \
-	--exclude='media/' \
+	--exclude='thumbnails/' \
+	--exclude='media/' \
 	* git.rfc1437.de:git-server/html/
 
 cd ..
 
 rsync -rav --delete thumbnails/ git.rfc1437.de:git-server/html/thumbnails/
-rsync -rav --exclude='*.meta' --delete media/ git.rfc1437.de:git-server/html/media/
+rsync -rav --exclude='*.meta' --delete media/ git.rfc1437.de:git-server/html/media/
 

Ja, das war jetzt nur um meine Source-Formatierung zu testen. Und?

-
- +
- - + + - - - + + +
- +
- -
- -

Schotten Totten 2 entwickelt sich zu einem unserer Lieblings-Spiele für zwei Spieler. Ein Remake des alten Schotten Totten (das es leider nicht mehr zu kaufen gibt unter dem Namen, nur als Battle Line, aber das eben nur auf Englisch). Im Gegensatz zum ersten Spiel jetzt asymmetrisch mit gerade genug Unterschied in der Spielweise, dass sich die beiden Seiten definitiv unterschiedlich anfühlen, aber trotzdem noch größtenteils die gleichen Sachen machen. Schnell aufgebaut, schnell gespielt und schnell weggeräumt mit genug Taktik um einen für ein paar Spiele zu fesseln. Und der Grafik-Stil ist einfach nett.

-
-
- -

Tak ist ein ziemlich interessantes Spiel: inspiriert aus einem Fantasy-Roman von Patrick Rothfuss, zum Leben erweckt als eine fiktives "klassisches" Strategiespiel. Das schöne daran: man kann es sich problemlos selber machen, wenn man will und geschickt ist. Die Regeln sind super simpel und leicht gelernt, das Spiel aber trickreich mit vielen Möglichkeiten dem Gegner Fallen zu stellen. Wird vermutlich für unseren nächsten Urlaub mitgenommen, weil praktisch zum Draussen spielen.

+

Schotten Totten 2 entwickelt sich zu einem unserer Lieblings-Spiele für zwei Spieler. Ein Remake des alten Schotten Totten (das es leider nicht mehr zu kaufen gibt unter dem Namen, nur als Battle Line, aber das eben nur auf Englisch). Im Gegensatz zum ersten Spiel jetzt asymmetrisch mit gerade genug Unterschied in der Spielweise, dass sich die beiden Seiten definitiv unterschiedlich anfühlen, aber trotzdem noch größtenteils die gleichen Sachen machen. Schnell aufgebaut, schnell gespielt und schnell weggeräumt mit genug Taktik um einen für ein paar Spiele zu fesseln. Und der Grafik-Stil ist einfach nett.

- + +
+ +

Tak ist ein ziemlich interessantes Spiel: inspiriert aus einem Fantasy-Roman von Patrick Rothfuss, zum Leben erweckt als eine fiktives "klassisches" Strategiespiel. Das schöne daran: man kann es sich problemlos selber machen, wenn man will und geschickt ist. Die Regeln sind super simpel und leicht gelernt, das Spiel aber trickreich mit vielen Möglichkeiten dem Gegner Fallen zu stellen. Wird vermutlich für unseren nächsten Urlaub mitgenommen, weil praktisch zum Draussen spielen.

+
+
- - + + - - - + + +
- +
- +
- - - -

Mal wieder auf Linux ...

- -

... und natürlich tuts Surround-Sound meines Notebooks nicht mehr, aus Gründen. Und Fingerprint-Login macht weitaus weniger Sinn, wenn man nach Login dann doch das Passwort für den Keyring eingeben muss. Wenn der wenigstens erst beim ersten Bedarf nach einem Passwort käme, dann wärs ja ok, aber der geht direkt nach Login auf. Bah.

+ + + +

Mal wieder auf Linux ...

+ +

... und natürlich tuts Surround-Sound meines Notebooks nicht mehr, aus Gründen. Und Fingerprint-Login macht weitaus weniger Sinn, wenn man nach Login dann doch das Passwort für den Keyring eingeben muss. Wenn der wenigstens erst beim ersten Bedarf nach einem Passwort käme, dann wärs ja ok, aber der geht direkt nach Login auf. Bah.

Ansonsten bin ich allerdings angenehm überrascht davon, wie gut die Linux-Unterstützung für das Lenovo T480 ist. Alles andere funktioniert bisher tadellos.

-
- +
- - + + - - - -
- -
- -
- -

Prime Time for Prime Slime ist die zweite meiner "reinventing the past"-Decklisten. Es ist tatsächlich mein erstes Commander-Precon-Deck - Mimeoplasm - einfach auf 11 aufgepeppt. Es ist irgendwie lustig, wie ich am Thema des Decks festgehalten habe, es vom Precon zu Ooze-Tribal und später zu Reanimator übergegangen bin, es dann in Muldrotha-Combo verwandelt und wieder zu Mimeoplasm zurückgebracht habe, als das Prime Slime Secret Lair herauskam (ich liebe den Kunststil), dieses Mal voll auf Necrotic Ooze-Combo. Es macht einen Haufen Spaß zu spielen, deshalb hat sich einige der alten Sachen aus meiner Sammlung in dieses Deck geschlichen. #EDH #MtG #MagicTheGathering

+ + +
+ +
+ +
+ +

Prime Time for Prime Slime is the second of my "reinventing the past" deck lists. It is actually my first commander precon deck - Mimeoplasm - just spiced up to 11. It kinda is funny how I stuck with the theme of the deck, transitioning it from the precon to Ooze tribal and later reanimator, then turned it into Muldrotha combo and again turned it back to Mimeoplasm, when the Prime Slime secret lair came out (I love the art style), going full on Necrotic Ooze combo this time. It is a ton of fun to play, which is why some of the old stuff from my collection made it's way into that deck. #EDH #MtG #MagicTheGathering

- +
- - + + - - - + + +
- +
- +
- - - -

Brettspielrunde - wie macht man das in Zeiten von Corona?

- -

Also wir haben da eine Lösung gefunden. Und es lief richtig gut - 6 Spieler waren dabei, jeder zu Hause. Bei mir war das Spiel und eine Kamerakonstruktion, um das Bild ins Internet zu stellen - und mit Microsoft Teams dann allen nach Hause zu liefern. Dazu dann Headsets und los gings, Spiel erklären, spielen, gemeinsam drüber reden - all das geht auch zu Zeiten des Social Distancing.

-

IMG 20200326 181231

+ + + +

Brettspielrunde - wie macht man das in Zeiten von Corona?

+ +

Also wir haben da eine Lösung gefunden. Und es lief richtig gut - 6 Spieler waren dabei, jeder zu Hause. Bei mir war das Spiel und eine Kamerakonstruktion, um das Bild ins Internet zu stellen - und mit Microsoft Teams dann allen nach Hause zu liefern. Dazu dann Headsets und los gings, Spiel erklären, spielen, gemeinsam drüber reden - all das geht auch zu Zeiten des Social Distancing.

+

IMG 20200326 181231

Das Kamera-Stativ hatte ich eh schon, der kleine Schwenkarm mit Handy-Halterung kostet 35€ und das Handy - sowas hat man oft ja schon da. Dann auf dem Handy eine kleine App - "IP Webcam" - mit der die Kamera des Handy über eine Webseite erreichbar wird. Und auf dem Notebook Teams, mit dem ich das Fenster des Browsers mit allen Teilnehmern geteilt habe. Und los kanns gehen!

-
- +
- - + + - - - -
- -
- -
- -

Bears on a Plane ist mein Versuch ein effektives Prison-Deck in cEDH zu bauen. Erste Versuche mit dem Deck waren dementsprechend "disgusting". Kann nur sporadisch getestet werden wegen Anger-Management-Issues der Playgroup ...

+ + +
+ +
+ +
+ +

Bears on a Plane ist mein Versuch ein effektives Prison-Deck in cEDH zu bauen. Erste Versuche mit dem Deck waren dementsprechend "disgusting". Kann nur sporadisch getestet werden wegen Anger-Management-Issues der Playgroup ...

- +
- - + + - - - -
- -
- -
- -

Marvel Champions - Fantasy Flight Games Wow, das kommt unerwartet. Es sieht stark nach einem weiteren Ableger des LOTR Systems aus, allerdings auf den ersten Blick etwas streamlined. Aber wenn das ganze trotzdem die Spieltiefe von LOTR erreicht, wärs klasse. Ich habe zwar mitlerweile eine gut laufende Magic Spielrunde, aber so für zwischendurch fand ich LOTR immer eigentlich recht spannend, da viele Spielentscheidungen (speziell der Szenario-spezifische Bau eines Decks) sehr nah an Magic ran kommen.

+ + +
+ +
+ +
+ +

Marvel Champions - Fantasy Flight Games Wow, das kommt unerwartet. Es sieht stark nach einem weiteren Ableger des LOTR Systems aus, allerdings auf den ersten Blick etwas streamlined. Aber wenn das ganze trotzdem die Spieltiefe von LOTR erreicht, wärs klasse. Ich habe zwar mitlerweile eine gut laufende Magic Spielrunde, aber so für zwischendurch fand ich LOTR immer eigentlich recht spannend, da viele Spielentscheidungen (speziell der Szenario-spezifische Bau eines Decks) sehr nah an Magic ran kommen.

- +
- - + + - - - -
- -
- -
- -

Der London Mulligan wird der offizielle Mulligan in Magic ab Core Set 2020. Klasse. Wir haben den in Commander ausprobiert und er war völlig ok. Und in Pauper wars auch gut. Klar, es gibt sicherlich ein paar Decks, die übermäßig profitieren, aber das kann man anderweitig regeln. Der neue Mulligan hilft einfach "Nicht-Spiele" aufgrund von mehrfachen schlechten Starthänden zu vermeiden. Es gibt nix nervigeres als ein Spiel im Mulligan zu verlieren, weil einfach jede Hand ohne Länder oder nur Länder war.

+ + +
+ +
+ +
+ +

Der London Mulligan wird der offizielle Mulligan in Magic ab Core Set 2020. Klasse. Wir haben den in Commander ausprobiert und er war völlig ok. Und in Pauper wars auch gut. Klar, es gibt sicherlich ein paar Decks, die übermäßig profitieren, aber das kann man anderweitig regeln. Der neue Mulligan hilft einfach "Nicht-Spiele" aufgrund von mehrfachen schlechten Starthänden zu vermeiden. Es gibt nix nervigeres als ein Spiel im Mulligan zu verlieren, weil einfach jede Hand ohne Länder oder nur Länder war.

- +
- - + + - - - + + +
- +
- -
- -

A Force to be Reckoned With - die neue Karte "Force of Vigor" hat mal eben zwei meiner Decks deutlich getroffen. Jhoira als Artefakt-Storm-Deck und Paradox Arcum als Artefakt-Kombo sind beide ziemlich abhängig von ihren Artefakten und Enchantments, so eine Karte kann die mal eben abschalten. Instant-speed. Für lau. Autsch. Wenn andere Liste stärker auf Mana-Dorks statt Mana-Rocks gehen, haben sie genug grüne Karten um den FoV aktiv zu bekommen. Und dann bin ich raus. Jhoira kann sich vielleicht noch knapp halten, Storm hat in der Regel mehrere Vektoren, aber da Artefakte nur mit Shimmer Myr instant-speed werden (und der als Artefakt angreifbar bleibt), ist Arcum wirklich hart betroffen.

-
-
- -

May 20, 2019 Banned and Restricted Announcement - da hat mir Wizards of the Coast mal eben zwei meiner Decks komplett neutralisiert - Izzet Blitz braucht die kostenlosen Spells um seine Kreaturen zu pumpen oder Direktschaden zu aktivieren und Skred Delver brauchte sie um die Hand zu füllen im Mittelspiel. Autsch. Ok, in letzter Zeit hab ich meistens Tron gespielt (oder mal GB Tortex, wenn mir nach wilden Boardstates war), aber trotzdem, Skred Delver war immer noch mein Lieblingsdeck wegen seiner explosiven Comebacks.

+

A Force to be Reckoned With - die neue Karte "Force of Vigor" hat mal eben zwei meiner Decks deutlich getroffen. Jhoira als Artefakt-Storm-Deck und Paradox Arcum als Artefakt-Kombo sind beide ziemlich abhängig von ihren Artefakten und Enchantments, so eine Karte kann die mal eben abschalten. Instant-speed. Für lau. Autsch. Wenn andere Liste stärker auf Mana-Dorks statt Mana-Rocks gehen, haben sie genug grüne Karten um den FoV aktiv zu bekommen. Und dann bin ich raus. Jhoira kann sich vielleicht noch knapp halten, Storm hat in der Regel mehrere Vektoren, aber da Artefakte nur mit Shimmer Myr instant-speed werden (und der als Artefakt angreifbar bleibt), ist Arcum wirklich hart betroffen.

- + +
+ +

May 20, 2019 Banned and Restricted Announcement - da hat mir Wizards of the Coast mal eben zwei meiner Decks komplett neutralisiert - Izzet Blitz braucht die kostenlosen Spells um seine Kreaturen zu pumpen oder Direktschaden zu aktivieren und Skred Delver brauchte sie um die Hand zu füllen im Mittelspiel. Autsch. Ok, in letzter Zeit hab ich meistens Tron gespielt (oder mal GB Tortex, wenn mir nach wilden Boardstates war), aber trotzdem, Skred Delver war immer noch mein Lieblingsdeck wegen seiner explosiven Comebacks.

+
+
- - + + - - - -
- -
- -
- - - -

Metaowl is gone

- -

Ok Leute, Metaowl ist heute den Weg alles digitalen gegangen: das war eine urmel-alte WP Installation, die dahinter lief, mit diversen Anpassungen. Das war einfach nicht mehr zu retten, das mit neueren PHP Versionen zum Fliegen zu kriegen frisst einfach zu viel Zeit. Ich glaub auch nicht, dass da irgendwer noch groß bemerkt, dass die Eule nicht mehr da ist. War einfach nur ein Stück Netzgeschichte.

+ + +
+ +
+ +
+ + + +

Metaowl is gone

+ +

Ok Leute, Metaowl ist heute den Weg alles digitalen gegangen: das war eine urmel-alte WP Installation, die dahinter lief, mit diversen Anpassungen. Das war einfach nicht mehr zu retten, das mit neueren PHP Versionen zum Fliegen zu kriegen frisst einfach zu viel Zeit. Ich glaub auch nicht, dass da irgendwer noch groß bemerkt, dass die Eule nicht mehr da ist. War einfach nur ein Stück Netzgeschichte.

- +
- - + + - - - -
- -
- -
- -

Ich mag die neue Variante des MTG Mulligan, die in London getestet werden soll. Definitiv muss geschaut werden, ob dadurch Combo nicht zu sehr bevorzugt wird, aber das derzeitige Mana-System und die Struktur des derzeitigen Mulligan führt einfach viel zu häufig zu non-Games, besonders in meinem Lieblingsformat EDH. Und es fühlt sich einfach dämlich an, wenn du auf 4 runter gehen musst und immer noch nur eine mistige Kartenhand hast, oder dann einfach scoopst - und die anderen ihre guten Starthände wegschieben können, weil sie sonst ein Spiel mit N-1 Spielern hätten, bei dem einer zuguckt. Klar, gerade Multiplayer kann man dem anderen direkt einfach einen weiteren 7er Mulligan anbieten, aber die neue Variante würde das nicht nötig machen - ich kann mir halt immer die besten N Karten aus 7 aussuchen, da ist auch ein 4er Mulligan schon verschmerzbar.

+ + +
+ +
+ +
+ +

Ich mag die neue Variante des MTG Mulligan, die in London getestet werden soll. Definitiv muss geschaut werden, ob dadurch Combo nicht zu sehr bevorzugt wird, aber das derzeitige Mana-System und die Struktur des derzeitigen Mulligan führt einfach viel zu häufig zu non-Games, besonders in meinem Lieblingsformat EDH. Und es fühlt sich einfach dämlich an, wenn du auf 4 runter gehen musst und immer noch nur eine mistige Kartenhand hast, oder dann einfach scoopst - und die anderen ihre guten Starthände wegschieben können, weil sie sonst ein Spiel mit N-1 Spielern hätten, bei dem einer zuguckt. Klar, gerade Multiplayer kann man dem anderen direkt einfach einen weiteren 7er Mulligan anbieten, aber die neue Variante würde das nicht nötig machen - ich kann mir halt immer die besten N Karten aus 7 aussuchen, da ist auch ein 4er Mulligan schon verschmerzbar.

- +
- - + + - - - -
- -
- -
- -

Nemo's War (second edition) habe ich jetzt schon zweimal gespielt und es mausert sich zu einem meiner Lieblings-Solo-Spielen. Es packt die Athmosphäre von Jules Vernes Büchern gut in ein unterhaltsames Spiel. Auch wenn natürlich das Thema nur durch die Karten und die Grafik des Spiels getragen wird. Das Spielsystem basieet natürlich auf viel Zufall, der aber erstaunlich gut gemanaged werden kann. Das Ergebnis ist recht viel Strategie in einem doch relativ klassischen Roll-for-Success System. Die Spieldauer verhindert allerdings, das ich es öfter auf den Tisch bekomme. Trotzdem steht es in meiner Liste weit oben.

+ + +
+ +
+ +
+ +

Nemo's War (second edition) habe ich jetzt schon zweimal gespielt und es mausert sich zu einem meiner Lieblings-Solo-Spielen. Es packt die Athmosphäre von Jules Vernes Büchern gut in ein unterhaltsames Spiel. Auch wenn natürlich das Thema nur durch die Karten und die Grafik des Spiels getragen wird. Das Spielsystem basieet natürlich auf viel Zufall, der aber erstaunlich gut gemanaged werden kann. Das Ergebnis ist recht viel Strategie in einem doch relativ klassischen Roll-for-Success System. Die Spieldauer verhindert allerdings, das ich es öfter auf den Tisch bekomme. Trotzdem steht es in meiner Liste weit oben.

- +
- - + + - - - -
- -
- -
- -

Vor wenigen Tagen kam The 7th Continent endlich nach fast 2 Jahren bei mir an. Wow, hat sich das Warten gelohnt! Das Spiel ist fantastisch geworden und hat sich bei mir in die Top-Liste gespielt. Wenn der Spaß anhält, ist es ein klarer Favorit für die 10. Einzig die fummelig winzigen Miniaturen hätten auch wegbleiben können, mir sind die Pappaufsteller da zehnmal lieber. Aber das Spiel selber - einfach grandios. Sehr schön gezeichnete Karten, klare Symbolik und simples Spielsystem - alles zusammen bildet ein grafisches choose-your-own-adventure Spiel. Sieht einfach nur toll aus auf dem Tisch. Dazu ein cleverer Save/Restore Mechanismus, der das Wegpacken zwecks Tisch freimachen (ab und zu muss man ja auch mal essen) trivial macht. Beim Weiterspielen hat man zwar ein wenig Sortierarbeit, aber das ist auch übersichtlich. Und die Story, die man durchlebt, ist wirklich die Zeit wert die man investiert. Dazu eine Reihe von Flüchen, denen man sich aussetzen kann und viele Abenteurer, die man auf die Reise schicken kann, das bietet schon einiges an Wiederspielwert. Auch wenn man natürlich auf die Dauer den Kontinent kennen lernt, wird es glaube ich nicht langweilig. Das wird noch viel Spielfreude bringen und für den Herbst ist schon der nächste Kickstarter mit weiteren Flüchen angekündigt. Ich glaub da bin ich dann wieder dabei.

+ + +
+ +
+ +
+ +

Vor wenigen Tagen kam The 7th Continent endlich nach fast 2 Jahren bei mir an. Wow, hat sich das Warten gelohnt! Das Spiel ist fantastisch geworden und hat sich bei mir in die Top-Liste gespielt. Wenn der Spaß anhält, ist es ein klarer Favorit für die 10. Einzig die fummelig winzigen Miniaturen hätten auch wegbleiben können, mir sind die Pappaufsteller da zehnmal lieber. Aber das Spiel selber - einfach grandios. Sehr schön gezeichnete Karten, klare Symbolik und simples Spielsystem - alles zusammen bildet ein grafisches choose-your-own-adventure Spiel. Sieht einfach nur toll aus auf dem Tisch. Dazu ein cleverer Save/Restore Mechanismus, der das Wegpacken zwecks Tisch freimachen (ab und zu muss man ja auch mal essen) trivial macht. Beim Weiterspielen hat man zwar ein wenig Sortierarbeit, aber das ist auch übersichtlich. Und die Story, die man durchlebt, ist wirklich die Zeit wert die man investiert. Dazu eine Reihe von Flüchen, denen man sich aussetzen kann und viele Abenteurer, die man auf die Reise schicken kann, das bietet schon einiges an Wiederspielwert. Auch wenn man natürlich auf die Dauer den Kontinent kennen lernt, wird es glaube ich nicht langweilig. Das wird noch viel Spielfreude bringen und für den Herbst ist schon der nächste Kickstarter mit weiteren Flüchen angekündigt. Ich glaub da bin ich dann wieder dabei.

- +
- - + + - - - -
- -
- -
- -

Warhammer Quest: The Adventure Card Game habe ich schon eine Weile rumliegen, aber erst heute die Chance genabt, es auch mal zu spielen. Das Spiel ist sehr ähnlich zu Space Hulk: Death Angel, aber deutlich ausgebaut. Schon im Tutorial kommt deutlich mehr Entscheidungsraum zum Tragen und man hat deutlich mehr das Gefühl von Kontrolle. Es macht Spaß und die verschiedenen Szenarien versprechen noch mehr davon. Speziell das aufwerten der Aktionskarten sieht interessant aus, ist aber leider nicht Teil des Tutorials. Macht aber definitiv Lust auf mehr. Setup ist allerdings deutlich mehr als bei SH:DA. Von daher mal sehen, wie oft es wirklich auf dem Tisch landet, zumal ja auch noch das Arkahm Horror LCG angekündigt ist, das in eine ähnliche Richtung geht.

+ + +
+ +
+ +
+ +

Warhammer Quest: The Adventure Card Game habe ich schon eine Weile rumliegen, aber erst heute die Chance genabt, es auch mal zu spielen. Das Spiel ist sehr ähnlich zu Space Hulk: Death Angel, aber deutlich ausgebaut. Schon im Tutorial kommt deutlich mehr Entscheidungsraum zum Tragen und man hat deutlich mehr das Gefühl von Kontrolle. Es macht Spaß und die verschiedenen Szenarien versprechen noch mehr davon. Speziell das aufwerten der Aktionskarten sieht interessant aus, ist aber leider nicht Teil des Tutorials. Macht aber definitiv Lust auf mehr. Setup ist allerdings deutlich mehr als bei SH:DA. Von daher mal sehen, wie oft es wirklich auf dem Tisch landet, zumal ja auch noch das Arkahm Horror LCG angekündigt ist, das in eine ähnliche Richtung geht.

- +
- - + + - - - -
- -
- -
- -

51st State: Master Set ist eines der neuesten Spiele von Portal Games und ein Remake des alte 51st State mit allen Erweiterungen und überarbeiteten Regeln. Bringt praktisch Imperial Settlers zurück in die post-apokalyptische Welt von 51st State. Mir gefällt es sehr gzt. Die Asymmetrie der Faktionen ist nicht so stark ausgeprägt wie in Imperial Settlers (dort ja durch die eigenen Kartenstapel), aber das Spiel ist viel flüssiger und fühlt sich schneller und interaktiver an. Und das Solospiel ist einfacher zu spielen. Insgesamt gefällt es mir sehr gut, vor allem für das Solospiel sogar besser als Imperial Settlers (wobei ich dort noch die völker-spezifischen AI und die Kampagne ausprobieren muss).

+ + +
+ +
+ +
+ +

51st State: Master Set ist eines der neuesten Spiele von Portal Games und ein Remake des alte 51st State mit allen Erweiterungen und überarbeiteten Regeln. Bringt praktisch Imperial Settlers zurück in die post-apokalyptische Welt von 51st State. Mir gefällt es sehr gzt. Die Asymmetrie der Faktionen ist nicht so stark ausgeprägt wie in Imperial Settlers (dort ja durch die eigenen Kartenstapel), aber das Spiel ist viel flüssiger und fühlt sich schneller und interaktiver an. Und das Solospiel ist einfacher zu spielen. Insgesamt gefällt es mir sehr gut, vor allem für das Solospiel sogar besser als Imperial Settlers (wobei ich dort noch die völker-spezifischen AI und die Kampagne ausprobieren muss).

- +
- - + + - - - -
- -
- -
- -

Codenames: Pictures ist das Schwesterspiel des Spiel des Jahres - nur eben mit Bildern, statt Wörtern. Mit Juliana mal mit den Zwei-Spieler-Regeln ausprobiert, und es funktioniert erstaunlich gut. Natürlich nichts, das man ständig zu zweit spielen würde, aber das war sowieso nur eine Trainingsrunde für den nächsten Spieleabend. Da wird es aber definitiv in der Runde ausprobiert.

+ + +
+ +
+ +
+ +

Codenames: Pictures ist das Schwesterspiel des Spiel des Jahres - nur eben mit Bildern, statt Wörtern. Mit Juliana mal mit den Zwei-Spieler-Regeln ausprobiert, und es funktioniert erstaunlich gut. Natürlich nichts, das man ständig zu zweit spielen würde, aber das war sowieso nur eine Trainingsrunde für den nächsten Spieleabend. Da wird es aber definitiv in der Runde ausprobiert.

- +
- - + + - - - -
- -
- -
- -

Red7 ist ein kleines und schnelles Spiel für zwischendurch. Ideal für die Wartezeit auf das Essen oder sogar im Flugzeug, da es nur minimalen Platz braucht. Und dabei trotz einfacher Regeln und schnellem Spiel durchaus was zum Denken liefert. Außerdem ist das Spiel modular in den Regeln und kann in der Komplexität angepasst werden. Alles in allem ein wirklich nettes Spiel, das sicherlich öfter mal bei uns auf den Tisch kommen wird.

+ + +
+ +
+ +
+ +

Red7 ist ein kleines und schnelles Spiel für zwischendurch. Ideal für die Wartezeit auf das Essen oder sogar im Flugzeug, da es nur minimalen Platz braucht. Und dabei trotz einfacher Regeln und schnellem Spiel durchaus was zum Denken liefert. Außerdem ist das Spiel modular in den Regeln und kann in der Komplexität angepasst werden. Alles in allem ein wirklich nettes Spiel, das sicherlich öfter mal bei uns auf den Tisch kommen wird.

- +
- - + + - - - -
- -
- -
- -

Mare Nostrum: Empires ist am Freitag endlich nach fast einem Jahr Extrazeit angekommen. War einer der komplizierteren Kickstarter. Aber für das Spiel hat sich das Warten gelohnt. Die Komponenten sind - wie für Academy Games typisch - fantastisch. Das Spiel selber ist erstaunlich übersichtlich für ein Spiel mit diesem Thema (Kulturen im Mittelmeerraum mit Handel und Krieg) und spielt sich auch sehr flott. Mein erstes Solo-Spiel (zwei Kulturen plus Barbaren) hatte eine sogar für mich selbst überraschende Wendung - am Anfang lag Karthago vorne, kam auf 4 Wunder (das fünfte hätte den Sieg gebracht), aber Rom konnte mit Schwenk auf Militär den Handel unter Druck setzen und den Sieg durch Dominanz in den Bereichen Handel, Kultur und Militär sichern. Klasse System und ich hoffe es noch öfter auf den Tisch zu bringen.

+ + +
+ +
+ +
+ +

Mare Nostrum: Empires ist am Freitag endlich nach fast einem Jahr Extrazeit angekommen. War einer der komplizierteren Kickstarter. Aber für das Spiel hat sich das Warten gelohnt. Die Komponenten sind - wie für Academy Games typisch - fantastisch. Das Spiel selber ist erstaunlich übersichtlich für ein Spiel mit diesem Thema (Kulturen im Mittelmeerraum mit Handel und Krieg) und spielt sich auch sehr flott. Mein erstes Solo-Spiel (zwei Kulturen plus Barbaren) hatte eine sogar für mich selbst überraschende Wendung - am Anfang lag Karthago vorne, kam auf 4 Wunder (das fünfte hätte den Sieg gebracht), aber Rom konnte mit Schwenk auf Militär den Handel unter Druck setzen und den Sieg durch Dominanz in den Bereichen Handel, Kultur und Militär sichern. Klasse System und ich hoffe es noch öfter auf den Tisch zu bringen.

- +
- - + + - - - -
- -
- -
- -

7 Wonders spielen Juliana und ich normalerweise in der Duell-Version. Aber weil unsere Donnerstagsrunde größer wird, haben wir uns auch das große Spiel zugelegt - mit der Städte-Erweiterung kann man das mit bis zu 8 Spielern spielen. Heute war die erste Trainingseinheit mit der in der Box enthaltenen 2-Spieler Variante. Definitiv umständlicher als das kleine Duell, aber ebenso definitiv erkennbar, wie das Spiel mit größeren Runden laufen kann - und macht Spaß auf mehr. Gerade genug Interaktivität um nicht zum Mehrspieler-Solitär zu verkommen, aber genug Strategie um nicht zur reinen Zufallsnummer zu werden. Gefällt mir sehr gut.

+ + +
+ +
+ +
+ +

7 Wonders spielen Juliana und ich normalerweise in der Duell-Version. Aber weil unsere Donnerstagsrunde größer wird, haben wir uns auch das große Spiel zugelegt - mit der Städte-Erweiterung kann man das mit bis zu 8 Spielern spielen. Heute war die erste Trainingseinheit mit der in der Box enthaltenen 2-Spieler Variante. Definitiv umständlicher als das kleine Duell, aber ebenso definitiv erkennbar, wie das Spiel mit größeren Runden laufen kann - und macht Spaß auf mehr. Gerade genug Interaktivität um nicht zum Mehrspieler-Solitär zu verkommen, aber genug Strategie um nicht zur reinen Zufallsnummer zu werden. Gefällt mir sehr gut.

- +
- - + + - - - -
- -
- -
- -

Ohne Furcht und Adel ist ja praktisch ein Oldie, aber für mich und Juliana war es neu. Ich hatte es hauptsächlich besorgt, um etwas kleines für größere Runden zu haben, da unser wöchentlicher Brettspielabend langsam wächst. Wir haben bisher nur zu zweit gespielt, aber auch da ist das Spiel sehr nett. Es erinnert ein bisschen an San Juan, mit den primär als Geldquelle (und Punktequelle) dienenden Gebäuden, den violetten Gebäuden mit Sonderfunktionen und der Rollenwahl. Sehr interaktiv und zumindestens mit zwei Spielern sogar mit strategischen Elementen, die aber in größeren Runden wohl zugunsten rein taktischem Spiel verdrängt werden. Macht aber definitiv Spaß.

+ + +
+ +
+ +
+ +

Ohne Furcht und Adel ist ja praktisch ein Oldie, aber für mich und Juliana war es neu. Ich hatte es hauptsächlich besorgt, um etwas kleines für größere Runden zu haben, da unser wöchentlicher Brettspielabend langsam wächst. Wir haben bisher nur zu zweit gespielt, aber auch da ist das Spiel sehr nett. Es erinnert ein bisschen an San Juan, mit den primär als Geldquelle (und Punktequelle) dienenden Gebäuden, den violetten Gebäuden mit Sonderfunktionen und der Rollenwahl. Sehr interaktiv und zumindestens mit zwei Spielern sogar mit strategischen Elementen, die aber in größeren Runden wohl zugunsten rein taktischem Spiel verdrängt werden. Macht aber definitiv Spaß.

- +
- - + + - - - -
- -
- -
- -

Leaving Earth is ein Spiel, in dem die Spieler eine Raumfahrtagentur leiten und Missionen durchführen müssen. Die Soloversion stellt dabei einige spannende Aufgaben, da man von den Missionspunkten die zu gewinnen sind, mindestens die Hälfte bekommen muss. Was schon ganz schön schwer ist - in meinem ersten Spiel musste ich, um überhaupt eine Chance auf einen Solosieg zu haben, erst Venus untersuchen um festzustellen, dass man dort nicht landen kann (wodurch ich die Venusmissionen abwerfen und damit die Punktelast reduzieren konnte) und dann eine bemannte Marsmission durchführen. Letzteres ist dann an der Zeit und mangelnden Ausstattung mit Antrieb gescheitert. Aber im Kopf kreisen schon Ideen, wie das nächste Mal das ganze besser ablaufen kann. Und das ist für ein hartes Optimierspiel schon ein gutes Zeichen - hier wird nicht geballert oder alte Männer mit Atombomben zu Asteroiden geschickt, hier plant man sein Budget, seine mehrjährigen Missionen und das Risiko, das man eingehen will. Cool. For Science!

+ + +
+ +
+ +
+ +

Leaving Earth is ein Spiel, in dem die Spieler eine Raumfahrtagentur leiten und Missionen durchführen müssen. Die Soloversion stellt dabei einige spannende Aufgaben, da man von den Missionspunkten die zu gewinnen sind, mindestens die Hälfte bekommen muss. Was schon ganz schön schwer ist - in meinem ersten Spiel musste ich, um überhaupt eine Chance auf einen Solosieg zu haben, erst Venus untersuchen um festzustellen, dass man dort nicht landen kann (wodurch ich die Venusmissionen abwerfen und damit die Punktelast reduzieren konnte) und dann eine bemannte Marsmission durchführen. Letzteres ist dann an der Zeit und mangelnden Ausstattung mit Antrieb gescheitert. Aber im Kopf kreisen schon Ideen, wie das nächste Mal das ganze besser ablaufen kann. Und das ist für ein hartes Optimierspiel schon ein gutes Zeichen - hier wird nicht geballert oder alte Männer mit Atombomben zu Asteroiden geschickt, hier plant man sein Budget, seine mehrjährigen Missionen und das Risiko, das man eingehen will. Cool. For Science!

- +
- - + + - - - -
- -
- -
- -

1775: Rebellion kam heute zum zweiten Mal auf den Tisch und war wieder ein voller Erfolg: unentschieden, beide Seiten kontrollierten 5 Kolonien und Nordamerika wurde damit zu einer südlichen Provinz Französisch-Kanadas. Das beste von allen Ergebnissen wenn man sich heutige Präsidentschaftskandidaten anguckt. Mir gefällt das Spiel sehr - die Strategien müssen wirklich ausgewogen sein, wenn man die südlichen Kolonien halten will, muss man sie auch verteidigen, gleichzeitig will man die nördlicheren nicht verlieren, weil dort viele Kolonien sind. England ist angreifbar, weil ganz im Norden zwei schwer verteidigbare Kolonien liegen, in die die Amerikaner einfallen können. Ich war zwei Kolonien vorne, als ich die letzte Runde eingeläutet habe, habe aber dann zwei Kolonien verloren - und möglicherweise hätte Juliana sogar drei angreifen können. Juliana gefällt es auch, wird also sicher wieder auf den Tisch kommen.

+ + +
+ +
+ +
+ +

1775: Rebellion kam heute zum zweiten Mal auf den Tisch und war wieder ein voller Erfolg: unentschieden, beide Seiten kontrollierten 5 Kolonien und Nordamerika wurde damit zu einer südlichen Provinz Französisch-Kanadas. Das beste von allen Ergebnissen wenn man sich heutige Präsidentschaftskandidaten anguckt. Mir gefällt das Spiel sehr - die Strategien müssen wirklich ausgewogen sein, wenn man die südlichen Kolonien halten will, muss man sie auch verteidigen, gleichzeitig will man die nördlicheren nicht verlieren, weil dort viele Kolonien sind. England ist angreifbar, weil ganz im Norden zwei schwer verteidigbare Kolonien liegen, in die die Amerikaner einfallen können. Ich war zwei Kolonien vorne, als ich die letzte Runde eingeläutet habe, habe aber dann zwei Kolonien verloren - und möglicherweise hätte Juliana sogar drei angreifen können. Juliana gefällt es auch, wird also sicher wieder auf den Tisch kommen.

- +
- - + + - - - -
- -
- -
- -

Night of Man ist ein taktisches Kampfspiel, Aliens vs Humans (oder auch andere Aliens). Bisher war mein Lieblingsspiel in der Nische Hoplomachus, weil es meiner Meinung nach gut die Gladiatorenkämpfe einfängt, die sein Thema sind. Und weil es solide Soloregeln hat. Night of Man ergänzt meine Sammlung hin zu mehr ausgedehnten Kämpfen, auch hier mit Soloregeln. Regeln an sich sind aber auch das größte Manko - sie lesen sich zwar recht gut, aber im Spiel fallen dann doch Lücken und Schwachpunkte auf, Symbole ohne Erläuterung oder Situationen, die nicht geklärt sind. Da hätte sorgfältigere Entwicklung des Spiels sicherlich geholfen. Aber wenn man da gesunden Menschenverstand ran lässt, kann man die meisten Sachen auch selber lösen. Das Spiel an sich ist sehr unterhaltsam. Die Impulse gehen schnell durch, das Spiel stockt nicht lange, da man in der Regel nur wenige Einheiten (oft nur eine) aktiviert. Dadurch haben beide Seiten was zu tun und die Reaktionskarten geben nochmal mehr Interaktion. Macht definitiv Lust auf mehr, vor allem mit den Soloregeln (bisher war es linke Hand gegen rechte Hand). Und die Komponenten sind gut gemacht und besonders die Counter sehr alte-Männer-augenfreundlich.

+ + +
+ +
+ +
+ +

Night of Man ist ein taktisches Kampfspiel, Aliens vs Humans (oder auch andere Aliens). Bisher war mein Lieblingsspiel in der Nische Hoplomachus, weil es meiner Meinung nach gut die Gladiatorenkämpfe einfängt, die sein Thema sind. Und weil es solide Soloregeln hat. Night of Man ergänzt meine Sammlung hin zu mehr ausgedehnten Kämpfen, auch hier mit Soloregeln. Regeln an sich sind aber auch das größte Manko - sie lesen sich zwar recht gut, aber im Spiel fallen dann doch Lücken und Schwachpunkte auf, Symbole ohne Erläuterung oder Situationen, die nicht geklärt sind. Da hätte sorgfältigere Entwicklung des Spiels sicherlich geholfen. Aber wenn man da gesunden Menschenverstand ran lässt, kann man die meisten Sachen auch selber lösen. Das Spiel an sich ist sehr unterhaltsam. Die Impulse gehen schnell durch, das Spiel stockt nicht lange, da man in der Regel nur wenige Einheiten (oft nur eine) aktiviert. Dadurch haben beide Seiten was zu tun und die Reaktionskarten geben nochmal mehr Interaktion. Macht definitiv Lust auf mehr, vor allem mit den Soloregeln (bisher war es linke Hand gegen rechte Hand). Und die Komponenten sind gut gemacht und besonders die Counter sehr alte-Männer-augenfreundlich.

- +
- - + + - - - -
- -
- -
- -

The Gallerist Review – A Masterpiece – Wolf's Gaming Blog ist ein guter Review über eines meiner lieblings-Heavy-Games. Was mich erinnert, dass ich unbedingt die Kiste mal wieder aus dem Schrank holen sollte.

+ + +
+ +
+ +
+ +

The Gallerist Review – A Masterpiece – Wolf's Gaming Blog ist ein guter Review über eines meiner lieblings-Heavy-Games. Was mich erinnert, dass ich unbedingt die Kiste mal wieder aus dem Schrank holen sollte.

- +
- - + + - - - -
- -
- -
- -

Dawn of the Zeds (Third edition) ist eine der von mir mit Spannung erwarteten Kickstarterlieferungen dieses Jahres, die vor wenigen Tagen endlich ankam. Die Spannung kam daher, das es von einem meiner Lieblingsverlage ist - Victory Point Games - die damit ihren ersten Ausflug in massentaugliche Produkion gewagt haben. Nicht mehr Print-on-Demand mit Laser-Cut Komponenten, sondern professionelle Produktion in hoher Qualität sollte es sein. Dazu dann noch die Tatsache, dass Dawn of the Zeds der Höhepunkt in der States of Siege Reihe ist. Im Prinzip Tower-Defense mit Steuerung der Ereignisse und Angriffe der Feinde durch einen konfigurierbaren Kartenstapel. Das Ergebnis? Wow. Einfach nur Wow. Die Komponenten sind absolut top, das ganze Material sieht fantastisch aus. Das modulare Spielsystem erlaubt verschiedene Schwierigkeitsstufen, sowohl für Coop Spiel als auch fpr Einer-gegen-Viele. Dazu dann noch ein No-Brains Mode, der im Prinzip ein extrem simplifiziertes System für Bier-und-Chips Abende bietet. Das Spiel ist am ehesten mit einem Zombiefilm vergleichbar, die Geschichte wird spannend aufgebaut und durch die vorbereiteten Kartenstapel lässt der Spannungsbogen auch nicht nach. Absolut fantastisches Spielgefühl. Der Setup ist etwas umständlich, da ja die ganzen Elemente vorbereitet werden müssen, aber es liegt im akzeptablen Rahmen für so ein Spiel. Das wird definitiv noch öfter auf den Tisch kommen, da selbst im Solospiel das ganze äußerst viel Spaß macht.

+ + +
+ +
+ +
+ +

Dawn of the Zeds (Third edition) ist eine der von mir mit Spannung erwarteten Kickstarterlieferungen dieses Jahres, die vor wenigen Tagen endlich ankam. Die Spannung kam daher, das es von einem meiner Lieblingsverlage ist - Victory Point Games - die damit ihren ersten Ausflug in massentaugliche Produkion gewagt haben. Nicht mehr Print-on-Demand mit Laser-Cut Komponenten, sondern professionelle Produktion in hoher Qualität sollte es sein. Dazu dann noch die Tatsache, dass Dawn of the Zeds der Höhepunkt in der States of Siege Reihe ist. Im Prinzip Tower-Defense mit Steuerung der Ereignisse und Angriffe der Feinde durch einen konfigurierbaren Kartenstapel. Das Ergebnis? Wow. Einfach nur Wow. Die Komponenten sind absolut top, das ganze Material sieht fantastisch aus. Das modulare Spielsystem erlaubt verschiedene Schwierigkeitsstufen, sowohl für Coop Spiel als auch fpr Einer-gegen-Viele. Dazu dann noch ein No-Brains Mode, der im Prinzip ein extrem simplifiziertes System für Bier-und-Chips Abende bietet. Das Spiel ist am ehesten mit einem Zombiefilm vergleichbar, die Geschichte wird spannend aufgebaut und durch die vorbereiteten Kartenstapel lässt der Spannungsbogen auch nicht nach. Absolut fantastisches Spielgefühl. Der Setup ist etwas umständlich, da ja die ganzen Elemente vorbereitet werden müssen, aber es liegt im akzeptablen Rahmen für so ein Spiel. Das wird definitiv noch öfter auf den Tisch kommen, da selbst im Solospiel das ganze äußerst viel Spaß macht.

- +
- - + + - - - -
- -
- -
- -

UBports könnte ja glatt bei Neuanschaffung meines nächsten Nexus meinem alten Nexus 5 dann weiteres Leben einhauchen. Das wäre immerhin mehr als mit meinem alten Galaxy Nexus machbar war.

+ + +
+ +
+ +
+ +

UBports könnte ja glatt bei Neuanschaffung meines nächsten Nexus meinem alten Nexus 5 dann weiteres Leben einhauchen. Das wäre immerhin mehr als mit meinem alten Galaxy Nexus machbar war.

- +
- - + + - - - -
- -
- -
- -

Mich faszinieren besonders Spiele mit wissenschaftlichem Hintergrund. Deshalb war Greenland für mich auch eine offensichtliche Wahl. Der Autor Phil Eklund ist bekannt für sein sehr intensives Studium der Thematik seiner Spiele. So auch hier - der Überlebenskampf der Thule, Tunit und Norweger auf Grönland um das Jahr 1000 wird hier thematisch aifgegriffen, vor allem die Veränderungen durch die kleine Eiszeit und die sich daraus ergebenden Lebensveränderungen und Migrationen. Das Ergebnis ist ein erstaunlich dichtes Spiel mit viel Strategie und Taktik. Die Regeln sind etwas sehr kompakt aufgebaut, aber mit ein bischen Lesen in den Griff zu bekommen - oder einfach ein paar der Videos auf der Spieleseite bei BGG angucken. Im Prinzip nicht wirklich viel neues, was due Techniken und Mechaniken angeht - Workerplacement mit Würfelentscheiding über den Erfolg, Ressourcenmanagement und eine Eventengine, die den nötigen Druck aufbaut. Die Solovariante ist solide und kann gut den eigenen Anforderungen angepasst werden. Multiplayer hab ich leider noch nicnt ausprobieren können, da das Spiel nur auf Englisch verfügbar ist. Aber für Solo eine klare Empfehlung.

+ + +
+ +
+ +
+ +

Mich faszinieren besonders Spiele mit wissenschaftlichem Hintergrund. Deshalb war Greenland für mich auch eine offensichtliche Wahl. Der Autor Phil Eklund ist bekannt für sein sehr intensives Studium der Thematik seiner Spiele. So auch hier - der Überlebenskampf der Thule, Tunit und Norweger auf Grönland um das Jahr 1000 wird hier thematisch aifgegriffen, vor allem die Veränderungen durch die kleine Eiszeit und die sich daraus ergebenden Lebensveränderungen und Migrationen. Das Ergebnis ist ein erstaunlich dichtes Spiel mit viel Strategie und Taktik. Die Regeln sind etwas sehr kompakt aufgebaut, aber mit ein bischen Lesen in den Griff zu bekommen - oder einfach ein paar der Videos auf der Spieleseite bei BGG angucken. Im Prinzip nicht wirklich viel neues, was due Techniken und Mechaniken angeht - Workerplacement mit Würfelentscheiding über den Erfolg, Ressourcenmanagement und eine Eventengine, die den nötigen Druck aufbaut. Die Solovariante ist solide und kann gut den eigenen Anforderungen angepasst werden. Multiplayer hab ich leider noch nicnt ausprobieren können, da das Spiel nur auf Englisch verfügbar ist. Aber für Solo eine klare Empfehlung.

- +
- - + + - - - -
- -
- -
- -

1775: Rebellion ist ein Spiel über den Amerikanischen Unabhängigkeitskrieg. Solide im War-Euro-Gebiet angesiedelt mit erstaunlich kompakten Regeln. Aber nicht einfach nur Risk-mit-Thema, sondern durchaus strategisch. Mir gefällt besonders die sehr kompakte Spielsituation mit nur 12 Karten pro Fraktion - im 4-Spieler-Modus wird 2-vs-2 gespielt, bei zwei Spielern spielt jeder zwei Fraktionen. Durch die geringe Regelanzahl und wenigen Karten spielt sich selbst das erste Spiel relativ flott und man erkennt schnell die strategischen und taktischen Möglichkeiten. Und trotz Kompaktheit kommt das Thema meiner Meinung nach gut raus. Macht definitiv Spaß auf mehr!

+ + +
+ +
+ +
+ +

1775: Rebellion ist ein Spiel über den Amerikanischen Unabhängigkeitskrieg. Solide im War-Euro-Gebiet angesiedelt mit erstaunlich kompakten Regeln. Aber nicht einfach nur Risk-mit-Thema, sondern durchaus strategisch. Mir gefällt besonders die sehr kompakte Spielsituation mit nur 12 Karten pro Fraktion - im 4-Spieler-Modus wird 2-vs-2 gespielt, bei zwei Spielern spielt jeder zwei Fraktionen. Durch die geringe Regelanzahl und wenigen Karten spielt sich selbst das erste Spiel relativ flott und man erkennt schnell die strategischen und taktischen Möglichkeiten. Und trotz Kompaktheit kommt das Thema meiner Meinung nach gut raus. Macht definitiv Spaß auf mehr!

- +
- - + + - - - -
- -
- -
- -

W1815 hat mich beim ersten Spiel echt überrascht: ich erwartete ein Würfelfest mit wildem Zufall und wenig Kontrolle in einem historischen Setting. Ich fand aber ein durchaus kniffeliges Puzzle mit Würfeln. Klar, alles ist dem Zufall überlassen, aber die Aktionen der Corps mit Reaktionen der Gegner (auch in Ketten) machen das ganze interessant - ich muss ständig abschätzen, welche Risiken und Chancen sich ergeben. Dazu verändern sich die Corps je nach Situation und verändern so die Planungslage. Das bringt dann schnell erstaunlich viel Grübelei und Planung. Die natürlich dann durch die Würfel zunichte gemacht wird. Und das ganze funktioniert erstaunlich gut solo, einfach von den Würfeln die Geschichte der Schlacht (oder eine mögliche alternative Geschichte) erzählen lassen und durch die Auswahl der Corps darauf Einfluss nehmen. Sehr entspannend und spielt sich in 15-30 Minuten.

+ + +
+ +
+ +
+ +

W1815 hat mich beim ersten Spiel echt überrascht: ich erwartete ein Würfelfest mit wildem Zufall und wenig Kontrolle in einem historischen Setting. Ich fand aber ein durchaus kniffeliges Puzzle mit Würfeln. Klar, alles ist dem Zufall überlassen, aber die Aktionen der Corps mit Reaktionen der Gegner (auch in Ketten) machen das ganze interessant - ich muss ständig abschätzen, welche Risiken und Chancen sich ergeben. Dazu verändern sich die Corps je nach Situation und verändern so die Planungslage. Das bringt dann schnell erstaunlich viel Grübelei und Planung. Die natürlich dann durch die Würfel zunichte gemacht wird. Und das ganze funktioniert erstaunlich gut solo, einfach von den Würfeln die Geschichte der Schlacht (oder eine mögliche alternative Geschichte) erzählen lassen und durch die Auswahl der Corps darauf Einfluss nehmen. Sehr entspannend und spielt sich in 15-30 Minuten.

- +
- - + + - - - + + +
- +
- +
- -
+ +

Analoge Anmutung in digitalen Zeiten: Bei der neuen Kamera der M-Serie lässt Leica das Display weg. Durch die Reduktion solle sich der Nutzer der Leica M-D nur auf sein Motiv

Quelle: Ohne Display: Leica M-D ist eine analoge Digitalkamera - Golem.de - der Witz ist, mir würde das sogar gefallen. Ich ignoriere an meiner M8 eh den Bildschirm immer und wenn meine Kamera es bietet (wie die GH1), dann klappe ich das Display weg. Aber dafür 6000 Euro? Nope.

-
- +
- - + + - - - -
- -
- -
- -

Gelegenheit zur Demo für Trickerion: Legends of Illusion gehabt und genutzt. Nette Veranstaltung, auch wenn wir nur die erste Hälfte dabei waren. Das Spiel selbst gefällt mir sehr gut - ich habe allerdings nur die Basisvariante gespielt. Aber Spiele mit mehreren Spielstufen gefallen mir sowieso gut. Das Spiel ist eine sehr interessante Umsetzung von Worker-Placement. Mit einem wirklich schön umgesetzten Thema, die Aktionen und Komponenten machen alle thematisch Sinn (ok, zu den aktionsfördernden Kristallen fallen mir nur Amphetamine ein, aber der Rest war stimmig). Viele gute Entscheidungssituationen im Spiel, sehr kompakter Spielablauf mit nur 5/7 Runden, dabei aber eine Menge was man pro Runde machen kann und will. Und man muss immer die Gegner im Blick halten um von deren Aktionen (zum Beispiel im Theater oder bei Schnellbestellungen) zu profitieren. Hat viel Spaß gemacht und ich freue mich schon auf Oktober, wenn ich die deutsche Version bekomme.

+ + +
+ +
+ +
+ +

Gelegenheit zur Demo für Trickerion: Legends of Illusion gehabt und genutzt. Nette Veranstaltung, auch wenn wir nur die erste Hälfte dabei waren. Das Spiel selbst gefällt mir sehr gut - ich habe allerdings nur die Basisvariante gespielt. Aber Spiele mit mehreren Spielstufen gefallen mir sowieso gut. Das Spiel ist eine sehr interessante Umsetzung von Worker-Placement. Mit einem wirklich schön umgesetzten Thema, die Aktionen und Komponenten machen alle thematisch Sinn (ok, zu den aktionsfördernden Kristallen fallen mir nur Amphetamine ein, aber der Rest war stimmig). Viele gute Entscheidungssituationen im Spiel, sehr kompakter Spielablauf mit nur 5/7 Runden, dabei aber eine Menge was man pro Runde machen kann und will. Und man muss immer die Gegner im Blick halten um von deren Aktionen (zum Beispiel im Theater oder bei Schnellbestellungen) zu profitieren. Hat viel Spaß gemacht und ich freue mich schon auf Oktober, wenn ich die deutsche Version bekomme.

- +
- - + + - - - + + +
- +
- -
- -

Hoplomachus: Origins hat mich seit ein paar Tagen mit seinen solo-Trials gepackt. Diese sind weniger ein volles solo-Spiel als vielmehr kleine Szenarien mit der Aufforderung, diese zu zerbrechen - eine Lösung durch Kombination von Gladiatoren, Taktiken und Spielzügen zu finden, die das Szenario verlässlich besiegen kann. Sehr schnell gespielt und die AI für die Gegner ist trotz sehr geringer Komplexität erstaunlich effektiv. Macht durchaus Spaß und kann schnell mal zwischendurch gespielt werden.

-
-
- -

Wir sind das Volk! kam gestern das erste Mal mit Juliana auf den Tisch. Wie bei meiner ersten Solo-Runde allerdings nur für die erste Dekade, weil das zum ersten Lernen schon mal alle Aspekte des Spiels zeigt, aber nicht gleich mit dem vollen Programm überlädt. Bei diesem Spiel hoffe ich, dass bei Juliana das Interesse bleibt, weil es wirklich sehr gut gemacht ist. Es ist im Prinzip ein Mix aus Ressourcenmanagement mit etwas Area-Control reingemischt und - für den Osten - ein guter Schuss State of Siege. Beide Seiten spielen sich sehr verschieden, der Westen spielt ein Wirtschaftsaufbauspiel mit integrierten Angriffen auf den Osten mit Ideologie und Lebensstandard, der Osten kämpft ständig ums Überleben und versucht alle Feuer zu löschen, also im Prinzip klassische Mangelverwaltung. Der Westen gewinnt durch Auflösung des Osten, der Osten muss nur bis zum Ende überleben um zu gewinnen. Aus diesen sehr asymmetrischen Vorgehensweisen und Zielen ergibt sich dann ein spannendes Tauziehen zwischen den beiden deutschen Staaten. Das ganze gewürzt mit einem historischen Thema. Sehr cool.

+

Hoplomachus: Origins hat mich seit ein paar Tagen mit seinen solo-Trials gepackt. Diese sind weniger ein volles solo-Spiel als vielmehr kleine Szenarien mit der Aufforderung, diese zu zerbrechen - eine Lösung durch Kombination von Gladiatoren, Taktiken und Spielzügen zu finden, die das Szenario verlässlich besiegen kann. Sehr schnell gespielt und die AI für die Gegner ist trotz sehr geringer Komplexität erstaunlich effektiv. Macht durchaus Spaß und kann schnell mal zwischendurch gespielt werden.

- + +
+ +

Wir sind das Volk! kam gestern das erste Mal mit Juliana auf den Tisch. Wie bei meiner ersten Solo-Runde allerdings nur für die erste Dekade, weil das zum ersten Lernen schon mal alle Aspekte des Spiels zeigt, aber nicht gleich mit dem vollen Programm überlädt. Bei diesem Spiel hoffe ich, dass bei Juliana das Interesse bleibt, weil es wirklich sehr gut gemacht ist. Es ist im Prinzip ein Mix aus Ressourcenmanagement mit etwas Area-Control reingemischt und - für den Osten - ein guter Schuss State of Siege. Beide Seiten spielen sich sehr verschieden, der Westen spielt ein Wirtschaftsaufbauspiel mit integrierten Angriffen auf den Osten mit Ideologie und Lebensstandard, der Osten kämpft ständig ums Überleben und versucht alle Feuer zu löschen, also im Prinzip klassische Mangelverwaltung. Der Westen gewinnt durch Auflösung des Osten, der Osten muss nur bis zum Ende überleben um zu gewinnen. Aus diesen sehr asymmetrischen Vorgehensweisen und Zielen ergibt sich dann ein spannendes Tauziehen zwischen den beiden deutschen Staaten. Das ganze gewürzt mit einem historischen Thema. Sehr cool.

+
+
- - + + - - - -
- -
- -
- -

zeromq/netmq: A 100% native C# implementation of ZeroMQ for .NET war mir vollkommen unbekannt (die C# Version, nicht ZeroMQ), ist aber für .NETies ein wirklich spannendes Projekt. Direkt in .NET ohne externe Libraries oder gar Server kann man damit diverse 1:1, 1:N, N:1, N:M Kommunikationsstrukturen mit diversen Verhaltensweisen (Pub/Sub, Broadcast, Req/Resp, Fifo - halt alles was ZeroMQ kann) aufbauen. Macht einen sehr guten Eindruck (ok, kein Wunder, ist ja schließlich eine Umsetzung des originalen ZeroMQ nach C#, und ZeroMQ war für seine Zwecke ja schon absolut genial). Und ist natürlich interoperabel mit dem originalen ZeroMQ.

+ + +
+ +
+ +
+ +

zeromq/netmq: A 100% native C# implementation of ZeroMQ for .NET war mir vollkommen unbekannt (die C# Version, nicht ZeroMQ), ist aber für .NETies ein wirklich spannendes Projekt. Direkt in .NET ohne externe Libraries oder gar Server kann man damit diverse 1:1, 1:N, N:1, N:M Kommunikationsstrukturen mit diversen Verhaltensweisen (Pub/Sub, Broadcast, Req/Resp, Fifo - halt alles was ZeroMQ kann) aufbauen. Macht einen sehr guten Eindruck (ok, kein Wunder, ist ja schließlich eine Umsetzung des originalen ZeroMQ nach C#, und ZeroMQ war für seine Zwecke ja schon absolut genial). Und ist natürlich interoperabel mit dem originalen ZeroMQ.

- +
- - + + - - - -
- -
- -
- -

Mein erstes COIN (Counter Insurgency) Spiel ist Cuba Libre - und das kam erstmalig gestern auf den Tisch. Was für ein großartiges System. Es ist komplex mit vielen Elementen, aber das Material (Brett, Spielerhilfen, Spielsequenzhilfe) macht es trotzdem leicht dem Spielfluss zu folgen und nicht mittendrin zu vergessen wessen Aktion es ist, wer als nächstes dran ist und was der machen darf. Thematisch ist das Spiel auch sehr gut mit den Mechaniken verbunden - das Syndikat baut Kasinos und greift sich Geld wo sie können, sind aber relativ lokal aktiv, das Directorio bildet viele kleinere Zellen quer über die Insel und versucht beide Seiten zu stören und sich selbst in vielen Landesteilen zu positionieren, Batista verballert sein Geld (das er von USA und dem Syndikat bekommt) auf massive Polizei und Militäraktionen gegen die Rebellen und Castros Seite versucht die Regionen von der Revolution zu überzeugen und möglichst viele Regionen und Städte zur Opposition zu motivieren. Mein Spiel war Castro gegen den Rest (von Bots gesteuert) und war leider nicht erfolgreich - das Syndikat hat das Land zu sehr korrumpiert. Die Bots zeigten recht gut den Charakter der anderen Fraktionen. Ok, die ganze Nummer dauerte 5 Stunden, aber es war ja auch das erste Spiel. Beim nächsten Mal wird das flüssiger laufen. Und es wird definitiv ein nächstes Mal geben, das Spiel ist einfach fantastisch. Und ich freue mich schon auf die kommende Erweiterung und die beiden kommenden COIN Spiele über die gallischen Kriege und die Amerikanische Revolution. Cuba Libre hat auch nur 56 Karten oder so, da bin ich schon am Überlegen, ob ich die nicht einfach übersetze - dann hätte ich auch eine Chance, das mit Juliana zu spielen. Komplexer als unser übliches Spielfutter, aber lohnend.

+ + +
+ +
+ +
+ +

Mein erstes COIN (Counter Insurgency) Spiel ist Cuba Libre - und das kam erstmalig gestern auf den Tisch. Was für ein großartiges System. Es ist komplex mit vielen Elementen, aber das Material (Brett, Spielerhilfen, Spielsequenzhilfe) macht es trotzdem leicht dem Spielfluss zu folgen und nicht mittendrin zu vergessen wessen Aktion es ist, wer als nächstes dran ist und was der machen darf. Thematisch ist das Spiel auch sehr gut mit den Mechaniken verbunden - das Syndikat baut Kasinos und greift sich Geld wo sie können, sind aber relativ lokal aktiv, das Directorio bildet viele kleinere Zellen quer über die Insel und versucht beide Seiten zu stören und sich selbst in vielen Landesteilen zu positionieren, Batista verballert sein Geld (das er von USA und dem Syndikat bekommt) auf massive Polizei und Militäraktionen gegen die Rebellen und Castros Seite versucht die Regionen von der Revolution zu überzeugen und möglichst viele Regionen und Städte zur Opposition zu motivieren. Mein Spiel war Castro gegen den Rest (von Bots gesteuert) und war leider nicht erfolgreich - das Syndikat hat das Land zu sehr korrumpiert. Die Bots zeigten recht gut den Charakter der anderen Fraktionen. Ok, die ganze Nummer dauerte 5 Stunden, aber es war ja auch das erste Spiel. Beim nächsten Mal wird das flüssiger laufen. Und es wird definitiv ein nächstes Mal geben, das Spiel ist einfach fantastisch. Und ich freue mich schon auf die kommende Erweiterung und die beiden kommenden COIN Spiele über die gallischen Kriege und die Amerikanische Revolution. Cuba Libre hat auch nur 56 Karten oder so, da bin ich schon am Überlegen, ob ich die nicht einfach übersetze - dann hätte ich auch eine Chance, das mit Juliana zu spielen. Komplexer als unser übliches Spielfutter, aber lohnend.

- +
- - + + - - - -
- -
- -
- -

Nach längerer Pause mal wieder Sentinels of the Multiverse gespielt. Das ist immer noch ein wirklich unterhaltsames Spiel. Aber ich merke immer mehr, dass es zwar viel Spaß macht, mir aber das nachhalten diverser Effekte in der Papierversion einfach die Lust verdirbt die Karten rauszuholen und ich es daher dann doch wieder lieber auf dem PC oder Tablet spiele. Was eigentlich schade ist, aber ich bemerke schon in der digitalen Version oft Momente von "huch, an den Modifier hab ich jetzt ja gar nicht mehr gedacht", in der Papierversion wird das echt lästig. Da helfen auch die vielen Marker nicht wirklich. Andererseits ist es ja eh ein rein kooperatives Spiel, ohne Entscheidungen für den Gegner, daher kann man sowas auch gut auf Computer umsetzen. Für ein Solo-Spiel ist das völlig ok und viel bequemer.

+ + +
+ +
+ +
+ +

Nach längerer Pause mal wieder Sentinels of the Multiverse gespielt. Das ist immer noch ein wirklich unterhaltsames Spiel. Aber ich merke immer mehr, dass es zwar viel Spaß macht, mir aber das nachhalten diverser Effekte in der Papierversion einfach die Lust verdirbt die Karten rauszuholen und ich es daher dann doch wieder lieber auf dem PC oder Tablet spiele. Was eigentlich schade ist, aber ich bemerke schon in der digitalen Version oft Momente von "huch, an den Modifier hab ich jetzt ja gar nicht mehr gedacht", in der Papierversion wird das echt lästig. Da helfen auch die vielen Marker nicht wirklich. Andererseits ist es ja eh ein rein kooperatives Spiel, ohne Entscheidungen für den Gegner, daher kann man sowas auch gut auf Computer umsetzen. Für ein Solo-Spiel ist das völlig ok und viel bequemer.

- +
- - + + - - - -
- -
- -
- -

Ich habe Hostage Negotiator vor ein paar Tagen bekommen und es ausprobiert. Sehr interessante Umsetzung eines spannenden Themas. Es hat die klassische wargame-Struktur: entscheide einen Plan und die Würfel sagen dir, ob der Plan gelingt. Die chancen stehen dafür nicht sonderlich gut. Von daher erinnere es mich an die State of Siege Spiele wie Soviet Dawn oder Cruel Necessity, bei denen ist das genauso. Hier muss man auch immer das Risiko im Auge haben, das Glück spielt aber fast noch eine größere Rolle als bei den SoS Spielen. Von daher weiß ich nicht, ob es auf Dauer neben Soviet Dawn (das noch schneller aufgebaut ist) Bestand haben wird - aber es hat den Vorteil der höheren Variabilität. Verglichen mit Space Hulk: Todesengel jedenfalls steht es meiner Meinung nach gut da, die Schachtel ist auch klein, eine Reihe von Erweiterungen bingen Abwechselung, es wird also mindestens als Reisepack einen Platz haben. Und bestimmt noch einige Runden auf dem Tisch verbringen.

+ + +
+ +
+ +
+ +

Ich habe Hostage Negotiator vor ein paar Tagen bekommen und es ausprobiert. Sehr interessante Umsetzung eines spannenden Themas. Es hat die klassische wargame-Struktur: entscheide einen Plan und die Würfel sagen dir, ob der Plan gelingt. Die chancen stehen dafür nicht sonderlich gut. Von daher erinnere es mich an die State of Siege Spiele wie Soviet Dawn oder Cruel Necessity, bei denen ist das genauso. Hier muss man auch immer das Risiko im Auge haben, das Glück spielt aber fast noch eine größere Rolle als bei den SoS Spielen. Von daher weiß ich nicht, ob es auf Dauer neben Soviet Dawn (das noch schneller aufgebaut ist) Bestand haben wird - aber es hat den Vorteil der höheren Variabilität. Verglichen mit Space Hulk: Todesengel jedenfalls steht es meiner Meinung nach gut da, die Schachtel ist auch klein, eine Reihe von Erweiterungen bingen Abwechselung, es wird also mindestens als Reisepack einen Platz haben. Und bestimmt noch einige Runden auf dem Tisch verbringen.

- +
- - + + - - - -
- -
- -
- -

Soviet Dawn ist ein weiteres State of Siege Spiel. Dieses war als Beilage in der C3i 27 drin, ein echtes Schnäppchen. Thematisch sehr dicht, wie bei allen State of Siege Spielen bisher, die Spielzeit deutlich kürzer als bei Cruel Necessity. Gefällt mir sehr gut, trotz des Würfelfestes ist schon erkennbar, dass man durchaus Chancen hat, aber nur sehr knappe. Dank der kurzen Spielzeut gute Chancen öfter auf den Tisch zu kommen, allein schon weil ich das Thema (frühe Sovietunion nach der Revolution) spannend finde. Schönes Solo Spiel für zwischendurch.

+ + +
+ +
+ +
+ +

Soviet Dawn ist ein weiteres State of Siege Spiel. Dieses war als Beilage in der C3i 27 drin, ein echtes Schnäppchen. Thematisch sehr dicht, wie bei allen State of Siege Spielen bisher, die Spielzeit deutlich kürzer als bei Cruel Necessity. Gefällt mir sehr gut, trotz des Würfelfestes ist schon erkennbar, dass man durchaus Chancen hat, aber nur sehr knappe. Dank der kurzen Spielzeut gute Chancen öfter auf den Tisch zu kommen, allein schon weil ich das Thema (frühe Sovietunion nach der Revolution) spannend finde. Schönes Solo Spiel für zwischendurch.

- +
- - + + - - - -
- -
- -
- -

Junior General ist eine sehr interessante Webseite mit vielen (freien!) Papier-"Miniaturen" für klassische Kriegsspiele auf Basis von Miniaturenregeln wie z.B. Professor Sabins Lost Battles: Reconstructing the Great Clashes of the Ancient World. Simpel zu produzieren (ausdrucken, falten, kleben, fertig) und geben dem Schlachtfeld ein 3D-Feeling bei geringem Aufwand an Zeit und Geld.

+ + +
+ +
+ +
+ +

Junior General ist eine sehr interessante Webseite mit vielen (freien!) Papier-"Miniaturen" für klassische Kriegsspiele auf Basis von Miniaturenregeln wie z.B. Professor Sabins Lost Battles: Reconstructing the Great Clashes of the Ancient World. Simpel zu produzieren (ausdrucken, falten, kleben, fertig) und geben dem Schlachtfeld ein 3D-Feeling bei geringem Aufwand an Zeit und Geld.

- +
- - + + - - - -
- -
- -
- -

Ich hab es tatsächlich endlich mal geschafft Mage Knight Board Game auf den Tisch zu bringen für ein Solo-Lernspiel. Noch mit reduzierten Walkthrough Regeln, um erstmal einen Griff an den Regelrahmen zu bekommen, dann gehts beim nächsten Solo-Spiel mal richtig in den Walkthrough mit vollen Regeln. Hat schon ziemlich viele Ecken an die man denken muss und leider ist der Setup doch ein bischen aufwändiger (allerdings auch nicht viel schlimmer als zum Beispiel bei The Gallerist), da muss ich mir noch was für die Organisation einfallen lassen. Aber so ganz grundsätzlich ist das schon ein beeindruckendes Spiel. Mir liegen ja solche mehr Puzzle-orientierten Coop oder Solo Spiele und das Thema liegt mir auf jeden Fall. Das wird definitiv wiederholt. Und auf die Neuauflagen der Erweiterungen warte ich auch ganz gespannt, speziell die Verloschollene Legion und die ganz neue Erweiterung bieten ja eine Menge für das Solo-Spiel.

+ + +
+ +
+ +
+ +

Ich hab es tatsächlich endlich mal geschafft Mage Knight Board Game auf den Tisch zu bringen für ein Solo-Lernspiel. Noch mit reduzierten Walkthrough Regeln, um erstmal einen Griff an den Regelrahmen zu bekommen, dann gehts beim nächsten Solo-Spiel mal richtig in den Walkthrough mit vollen Regeln. Hat schon ziemlich viele Ecken an die man denken muss und leider ist der Setup doch ein bischen aufwändiger (allerdings auch nicht viel schlimmer als zum Beispiel bei The Gallerist), da muss ich mir noch was für die Organisation einfallen lassen. Aber so ganz grundsätzlich ist das schon ein beeindruckendes Spiel. Mir liegen ja solche mehr Puzzle-orientierten Coop oder Solo Spiele und das Thema liegt mir auf jeden Fall. Das wird definitiv wiederholt. Und auf die Neuauflagen der Erweiterungen warte ich auch ganz gespannt, speziell die Verloschollene Legion und die ganz neue Erweiterung bieten ja eine Menge für das Solo-Spiel.

- +
- - + + - - - -
- -
- -
- -

The Lord of the Rings: The Card Game ist ja ein regelmäßiger Gast auf dem Tisch, jedenfalls wenn ich Solo spiele. Nicht jede Runde ist bemerkenswert, auch wenn die Spiele eigentlich immer Spaß machen. Aber gestern habe ich mein renoviertes Ent-Deck das erste Mal ins Rennen geschickt, diesmal gegen das erste Szenario des Schwarzen Reiters. Und das Ergebnis war beeindruckend. Das Deck lief überhaupt nicht flüssig an - nur wenige Ents, nur eines des Ent-Grabe-Ereignisse (wo man aus den top-5 alle Ent-Karten nehmen kann). Kein Shadowmane für Gandalf. Also eigentlich nicht wirklich optimal - und trotzdem hat das Deck extrem gut gehalten. So richtig bedrohlich wurde die Situation nie, die schwarzen Reiter (allerdings auch mit viel Glück, keiner von denen hat sein Reittier bekommen) waren keine echte Gefahr, da ich sie fast immer aus dem Staging holen konnte um sie sauber zu blocken und dann mit ein paar Ents zu zerpflücken. Dank einiger Schneller Knoten waren dann auch die Hobbits immer verfügbar um sie in Verstecken-Prüfungen zu entsenden und im Notfall konnten die mit Ents noch verbessert werden. Und Baumbart war als solider Verteidiger und Quester und zusätzliche Ressourcenquelle auch bald dabei. Der Wechsel weg von Baumbart als Helden hin zu Gandalf gibt mir definitiv ein gutes Stück Kontrolle über das Spielerdeck, was bei sperrigem Anlaufen des Decks deutlich hilft - gerade bei schlechterer Entwicklung der ersten Runden war die alte Version schnell überfordert und hier musste ich schon sehr schnell gegen 9-11 Bedrohung im Aufmarsch antreten. Ein wirklich nettes Deck und ich glaub das kann ich mal gegen die ganze Kampagne antreten lassen.

+ + +
+ +
+ +
+ +

The Lord of the Rings: The Card Game ist ja ein regelmäßiger Gast auf dem Tisch, jedenfalls wenn ich Solo spiele. Nicht jede Runde ist bemerkenswert, auch wenn die Spiele eigentlich immer Spaß machen. Aber gestern habe ich mein renoviertes Ent-Deck das erste Mal ins Rennen geschickt, diesmal gegen das erste Szenario des Schwarzen Reiters. Und das Ergebnis war beeindruckend. Das Deck lief überhaupt nicht flüssig an - nur wenige Ents, nur eines des Ent-Grabe-Ereignisse (wo man aus den top-5 alle Ent-Karten nehmen kann). Kein Shadowmane für Gandalf. Also eigentlich nicht wirklich optimal - und trotzdem hat das Deck extrem gut gehalten. So richtig bedrohlich wurde die Situation nie, die schwarzen Reiter (allerdings auch mit viel Glück, keiner von denen hat sein Reittier bekommen) waren keine echte Gefahr, da ich sie fast immer aus dem Staging holen konnte um sie sauber zu blocken und dann mit ein paar Ents zu zerpflücken. Dank einiger Schneller Knoten waren dann auch die Hobbits immer verfügbar um sie in Verstecken-Prüfungen zu entsenden und im Notfall konnten die mit Ents noch verbessert werden. Und Baumbart war als solider Verteidiger und Quester und zusätzliche Ressourcenquelle auch bald dabei. Der Wechsel weg von Baumbart als Helden hin zu Gandalf gibt mir definitiv ein gutes Stück Kontrolle über das Spielerdeck, was bei sperrigem Anlaufen des Decks deutlich hilft - gerade bei schlechterer Entwicklung der ersten Runden war die alte Version schnell überfordert und hier musste ich schon sehr schnell gegen 9-11 Bedrohung im Aufmarsch antreten. Ein wirklich nettes Deck und ich glaub das kann ich mal gegen die ganze Kampagne antreten lassen.

- +
- - + + - - - -
- -
- -
- -

The Gallerist kam heute zum ersten Solospiel auf den Tisch. Wow. Das ist schon fast Arbeit. Macht aber sehr viel Spaß, auch wenn ich im ersten Solospiel noch viel zu viele Fehler gemacht habe - das Spielsystem ist schon gut erkennbar gewesen. Die Aktionen machen Sinn und sind thematisch hervorragend fundiert, was das Lernen deutlich vereinfacht. Und das Beste: es macht echt Spaß. Die zwei Stunden gingen um wie nix. Das wird definitiv wiederholt.

+ + +
+ +
+ +
+ +

The Gallerist kam heute zum ersten Solospiel auf den Tisch. Wow. Das ist schon fast Arbeit. Macht aber sehr viel Spaß, auch wenn ich im ersten Solospiel noch viel zu viele Fehler gemacht habe - das Spielsystem ist schon gut erkennbar gewesen. Die Aktionen machen Sinn und sind thematisch hervorragend fundiert, was das Lernen deutlich vereinfacht. Und das Beste: es macht echt Spaß. Die zwei Stunden gingen um wie nix. Das wird definitiv wiederholt.

- +
- - + + - - - -
- -
- -
- -

Auswahl für das nächste große Spiel das Juliana und ich zusammen lernen war am Wochende The Golden Ages und das erste Lernspiel haben wir hinter uns. War noch etwas holperig, das Spiel hat doch deutlich mehr bewegliche Teile als alles was wir bisher gespielt haben. Aber Spaß hat es gemacht und die Struktur ist durchaus logisch. Man muss nur an einiges beim Epochenwechsel denken. Alles in allem aber ein wirklich schönes Spiel mit einer Menge an Möglichkeiten und variablem Aufbau, das dürfte uns für eine gute Weile beschäftigen. Aber ich glaube Progress wird es nicht so schnell vom Thron stoßen.

+ + +
+ +
+ +
+ +

Auswahl für das nächste große Spiel das Juliana und ich zusammen lernen war am Wochende The Golden Ages und das erste Lernspiel haben wir hinter uns. War noch etwas holperig, das Spiel hat doch deutlich mehr bewegliche Teile als alles was wir bisher gespielt haben. Aber Spaß hat es gemacht und die Struktur ist durchaus logisch. Man muss nur an einiges beim Epochenwechsel denken. Alles in allem aber ein wirklich schönes Spiel mit einer Menge an Möglichkeiten und variablem Aufbau, das dürfte uns für eine gute Weile beschäftigen. Aber ich glaube Progress wird es nicht so schnell vom Thron stoßen.

- +
- - + + - - - -
- -
- -
- -

Progress: Evolution of Technology hat sich in der letzten Zeit zum totallen Renner mit Juliana entwickelt. Wir haben es praktisch jeden Tag gespielt, in der Zeit in der ich Krank war sogar 2-3 mal am Tag. Und wir haben beide immer noch gewaltigen Spaß daran. Die Vorteile des Spiels sind vielfältig, aber abgesehen vom interessanten Thema sind für uns die Highlights, dass alle Aktionen Sinn machen im Kontext des Spielthemas. Karten die aufeinander aufbauen sind logisch verbunden (in dem meisten Fällen jedenfalls) und auch das was an Verbesserungen kommt, ist durchaus mit der Karte verbunden. Dazu kommt, dass die Karten selber keine Texte außer dem Namen haben - man muss nicht erst lange lesen um zu verstehen was passiert, alles ist mit klaren Symbolen gekennzeichnet. Dazu kommt dann auch noch, dass alle Kulturverbesserungen, die man sich erarbeitet, klar auf dem Spielerboard erkennbar sind. Genauso wie die Position in den Kulturbereichen (Prestige, Bevölkerungsentwicklung und Militär) auf dem Zusatzboard. Die verfügbaren Hilfsmittel sind leicht zu benutzen und zu verstehen. Alles das hilft dabei, dass man wirklich einfach locker spielen kann, ohne von Verständnisfragen (gerade bei Juliana durch die Sprachdifferenz entscheidend) aufgehalten zu werden. Obendrauf dann noch ein für uns wirklich spannendes Spielthema und schon ist unsere Abendunterhaltung gesichert. Wir sind mitlerweile bei 1-1,5 Stunden angelangt, allerdings spielen wir auch immer mit dem vierten Zeitalter. Meilensteine und Philosophen haben wir derzeit noch nicht mit ins Programm genommen, wird aber vielleicht doch bald mal interessant, aber bei 20 Spielen zusammen haben wir bis jetzt noch nicht das Gefühl, dass wir das Grundspiel ausgereizt hätten.

+ + +
+ +
+ +
+ +

Progress: Evolution of Technology hat sich in der letzten Zeit zum totallen Renner mit Juliana entwickelt. Wir haben es praktisch jeden Tag gespielt, in der Zeit in der ich Krank war sogar 2-3 mal am Tag. Und wir haben beide immer noch gewaltigen Spaß daran. Die Vorteile des Spiels sind vielfältig, aber abgesehen vom interessanten Thema sind für uns die Highlights, dass alle Aktionen Sinn machen im Kontext des Spielthemas. Karten die aufeinander aufbauen sind logisch verbunden (in dem meisten Fällen jedenfalls) und auch das was an Verbesserungen kommt, ist durchaus mit der Karte verbunden. Dazu kommt, dass die Karten selber keine Texte außer dem Namen haben - man muss nicht erst lange lesen um zu verstehen was passiert, alles ist mit klaren Symbolen gekennzeichnet. Dazu kommt dann auch noch, dass alle Kulturverbesserungen, die man sich erarbeitet, klar auf dem Spielerboard erkennbar sind. Genauso wie die Position in den Kulturbereichen (Prestige, Bevölkerungsentwicklung und Militär) auf dem Zusatzboard. Die verfügbaren Hilfsmittel sind leicht zu benutzen und zu verstehen. Alles das hilft dabei, dass man wirklich einfach locker spielen kann, ohne von Verständnisfragen (gerade bei Juliana durch die Sprachdifferenz entscheidend) aufgehalten zu werden. Obendrauf dann noch ein für uns wirklich spannendes Spielthema und schon ist unsere Abendunterhaltung gesichert. Wir sind mitlerweile bei 1-1,5 Stunden angelangt, allerdings spielen wir auch immer mit dem vierten Zeitalter. Meilensteine und Philosophen haben wir derzeit noch nicht mit ins Programm genommen, wird aber vielleicht doch bald mal interessant, aber bei 20 Spielen zusammen haben wir bis jetzt noch nicht das Gefühl, dass wir das Grundspiel ausgereizt hätten.

- +
- - + + - - - -
- -
- -
- -

Why Twitter’s Dying (And What You Can Learn From It) — Bad Words — Medium ist ein interessanter Artikel über das, was der Autor als zentrales Problem sozialer Medien sieht, das von den Betreibern ignoriert wird: Missbrauch, oder (weil "abuse" sich nicht trivial pbersetzen lässt) das asoziale Verhalten vieler in diesen Medien, das die normalen Benutzer einfavh vertrei t und manches Netz zur reinen Selbstverkündungsmaschine für Presseorgane verkommen lässt. Wobei den hinteren Teil des Artikels, über die digitale Revolution, der ist dann docj etwas arg träumerisch.

+ + +
+ +
+ +
+ +

Why Twitter’s Dying (And What You Can Learn From It) — Bad Words — Medium ist ein interessanter Artikel über das, was der Autor als zentrales Problem sozialer Medien sieht, das von den Betreibern ignoriert wird: Missbrauch, oder (weil "abuse" sich nicht trivial pbersetzen lässt) das asoziale Verhalten vieler in diesen Medien, das die normalen Benutzer einfavh vertrei t und manches Netz zur reinen Selbstverkündungsmaschine für Presseorgane verkommen lässt. Wobei den hinteren Teil des Artikels, über die digitale Revolution, der ist dann docj etwas arg träumerisch.

- +
- - + + - - - -
- -
- -
- -

The Lord of the Ice Garden hab ich über Spieleschmiede gefördert und erhalten. Und das Spiel ist eine optische Granate - tolle grafische Aufmachung und klasse Miniaturen. Dazu dann ein sehr interessantes Spiel und eine wirklich nicht triviale solo Variante, die tatsächlich einiges vom originalen Spiel erhält. Allerdings sehr weit oben im Komplexitätsgrad, das braucht schon noch mehr Runden, bis ich das wirklich voll verstanden habe um es jemandem zu erklären. Aber es bietet eine Kombination aus Worker-Placement und Area-Domination zusammen mit variablen Spielerfähigkeiten und Upgrademöglichkeiten wie ich es so noch nirgendwo gesehen habe. Absolut wow.

+ + +
+ +
+ +
+ +

The Lord of the Ice Garden hab ich über Spieleschmiede gefördert und erhalten. Und das Spiel ist eine optische Granate - tolle grafische Aufmachung und klasse Miniaturen. Dazu dann ein sehr interessantes Spiel und eine wirklich nicht triviale solo Variante, die tatsächlich einiges vom originalen Spiel erhält. Allerdings sehr weit oben im Komplexitätsgrad, das braucht schon noch mehr Runden, bis ich das wirklich voll verstanden habe um es jemandem zu erklären. Aber es bietet eine Kombination aus Worker-Placement und Area-Domination zusammen mit variablen Spielerfähigkeiten und Upgrademöglichkeiten wie ich es so noch nirgendwo gesehen habe. Absolut wow.

- +
- - + + - - - + + +
- +
- +
- -

Heilige Scheiße, Per6 ist offiziell draußen!

+ +

Holy Smokes, Per6 is officially out!

Quelle: The Night Larry Wall Unveiled Perl 6 | 10 Zen Monkeys

-
- +
- - - + + +
- -
- \ No newline at end of file + diff --git a/fixtures/golden-generated-sites/rfc1437-sample/en/2005/11/13/esmeralda/index.html b/fixtures/golden-generated-sites/rfc1437-sample/en/2005/11/13/esmeralda/index.html index d42edd2..7d50889 100644 --- a/fixtures/golden-generated-sites/rfc1437-sample/en/2005/11/13/esmeralda/index.html +++ b/fixtures/golden-generated-sites/rfc1437-sample/en/2005/11/13/esmeralda/index.html @@ -3,19 +3,19 @@ - Content-type: matter-transport/sentient-life-form - + Esmeralda + - + - - - + + + @@ -27,20 +27,19 @@ -
- + @@ -64,167 +63,167 @@

Esmeralda

- +
- - picture - - - - fotografie - - - makro - - - natur - - - spinne - - - tiere - + + picture + + + + fotografie + + + makro + + + natur + + + spinne + + + tiere +
- -
- \ No newline at end of file + diff --git a/fixtures/golden-generated-sites/rfc1437-sample/en/2026/03/13/cmux-das-terminal-fur-multitasking/index.html b/fixtures/golden-generated-sites/rfc1437-sample/en/2026/03/13/cmux-das-terminal-fur-multitasking/index.html index a5e8c3b..898309a 100644 --- a/fixtures/golden-generated-sites/rfc1437-sample/en/2026/03/13/cmux-das-terminal-fur-multitasking/index.html +++ b/fixtures/golden-generated-sites/rfc1437-sample/en/2026/03/13/cmux-das-terminal-fur-multitasking/index.html @@ -3,19 +3,19 @@ - Content-type: matter-transport/sentient-life-form - + cmux — The Terminal for Multitasking + - + - - - + + + @@ -27,20 +27,19 @@ -
- + @@ -64,167 +63,167 @@

cmux — The Terminal for Multitasking

- +
- - aside - - - - programmierung - - - mac-os-x - - - sysadmin - + + aside + + + + programmierung + + + mac-os-x + + + sysadmin +
- -
-

cmux — The Terminal for Multitasking is a pretty brilliant terminal program for CLI workflows, which are experiencing a resurgence especially through agentic coding. And what I love about it: it has clean persistence of open workspaces where you can have multiple tabs, so I don't have to keep my work environment open all the time. I've always liked having various directories open directly because I switch back and forth between several while programming, and this works much better with CMUX than with anything else.

-
+ +
+

cmux — The Terminal for Multitasking is a pretty brilliant terminal program for CLI workflows, which are experiencing a resurgence especially through agentic coding. And what I love about it: it has clean persistence of open workspaces where you can have multiple tabs, so I don't have to keep my work environment open all the time. I've always liked having various directories open directly because I switch back and forth between several while programming, and this works much better with CMUX than with anything else.

- -
- Linked from - - ghostty - -
- +
- \ No newline at end of file + diff --git a/fixtures/golden-generated-sites/rfc1437-sample/en/2026/03/13/ghostty/index.html b/fixtures/golden-generated-sites/rfc1437-sample/en/2026/03/13/ghostty/index.html index 27e1f30..6fa5d6d 100644 --- a/fixtures/golden-generated-sites/rfc1437-sample/en/2026/03/13/ghostty/index.html +++ b/fixtures/golden-generated-sites/rfc1437-sample/en/2026/03/13/ghostty/index.html @@ -3,19 +3,19 @@ - Content-type: matter-transport/sentient-life-form - + Ghostty + - + - - - + + + @@ -27,20 +27,19 @@ -
- + @@ -64,167 +63,167 @@

Ghostty

- +
- - aside - - - - programmierung - - - sysadmin - - - mac-os-x - + + aside + + + + programmierung + + + sysadmin + + + mac-os-x +
- -
-

Ghostty is the foundation that cmux — The Terminal for Multitasking was built on. Generally also a very nice terminal that responds noticeably faster than the standard terminal and already works very well. What I didn't like was that tabs weren't automatically reopened in the appropriate directories when the program was closed. I simply have too many persistent sessions that I keep coming back to. cmux just does that better.

-
+ +
+

Ghostty is the foundation that cmux — The Terminal for Multitasking was built on. Generally also a very nice terminal that responds noticeably faster than the standard terminal and already works very well. What I didn't like was that tabs weren't automatically reopened in the appropriate directories when the program was closed. I simply have too many persistent sessions that I keep coming back to. cmux just does that better.

- +
- \ No newline at end of file + diff --git a/fixtures/golden-generated-sites/rfc1437-sample/en/index.html b/fixtures/golden-generated-sites/rfc1437-sample/en/index.html index 5401480..afe9b0a 100644 --- a/fixtures/golden-generated-sites/rfc1437-sample/en/index.html +++ b/fixtures/golden-generated-sites/rfc1437-sample/en/index.html @@ -4,16 +4,16 @@ Content-type: matter-transport/sentient-life-form - + - + - + @@ -25,20 +25,19 @@ -
- + @@ -60,183 +59,183 @@ - - - + + +

Content-type: matter-transport/sentient-life-form

- - - + + +
- - -
- -
- -
- -

stonerl/Thaw: Menu bar manager for macOS 26 - helps against the notch on Apple MacBooks. It's already embarrassing that you need an extra program to do this, and that the system doesn't support it out of the box.

+ +
+ +
+ +
+ + + +

mlx-community/ThinkingCap-Qwen3.6-27B-OptiQ-4bit · Hugging Face

+ +

mlx-community/ThinkingCap-Qwen3.6-27B-OptiQ-4bit · Hugging Face - I need to play around with this model, it promises better reasoning with fewer tokens and delivers good performance on my MacBook Pro - if it holds up, it could be quite interesting for local Agents.

- + +
+ + + +

hunk — review-first terminal diff viewer

+ +

hunk — review-first terminal diff viewer is a diff viewer designed to work specifically with Herdr: one terminal for the whole herd. An agent can generate diffs and integrate comments into them via a skill, which can then be displayed in Hunk. The user can also comment directly in the diff, enabling a classic review process that runs entirely locally within the terminal.

+
+ +
+ + + +

Herdr: one terminal for the whole herd

+ +

Herdr: one terminal for the whole herd - ich bin ja alter screen User, aber ich glaube es wird wirklich Zeit, dass ich mich mal mental modernisiere. Herdr ist screen auf steroiden. Es hat eine Client-Server Architektur, remote-Installation und Nutzung, und eine sehr gute Agent-Integration. Agent Sessions tauchen in der Übersicht auf, genauso wie Projektstatus (Branch etc.), alles schön in einem Sidebar. Tabs können geöffnet werden, Screens gesplittet werden und obwohl es eine Terminal-Anwendung ist, unterstützt es die Maus. Fühlt sich wirklich gut in der Benutzung an. Ich benutze im Moment gerne Supacode für meine Terminal-Sessions, das hat vields davon schon eingebaut in einer Mac Anwendung, aber natürlich nur auf dem Mac. Herdr funktioniert auch problemlos auf einem remote Server über ssh.

+
+
- - + + - - - -
- -
- -
- -

Fission-AI/OpenSpec: Spec-driven development (SDD) for AI coding assistants. is a lighter-weight variant of juxt/allium: A language for sharpening intent alongside implementation.. Could also be quite interesting—the tooling is more developed, but the language is weaker. Allium is much more formal and oriented toward pseudocode.

+ + +
+ +
+ +
+ + + +

JustVugg/colibri: Run GLM-5.2 (744B MoE) on a 25GB-RAM consumer machine — pure C, zero deps, experts streamed from disk. Tiny engine, immense model. 🐦

+ +

JustVugg/colibri: Run GLM-5.2 (744B MoE) on a 25GB-RAM consumer machine — pure C, zero deps, experts streamed from disk. Tiny engine, immense model. 🐦 - one of the wildest projects recently, because it can run a frontier model on completely unsuitable hardware. With abysmal tokens/second, but it runs. And there are already Metal and CUDA backends, so there's already some acceleration.

- +
- - + + - - - + + +
- +
- -
- -

juxt/allium: A language for sharpening intent alongside implementation. is a very exciting project. Specifically, a specification language for the behavior of software systems. A language for which there is no runtime environment or compiler, except the LLM. Implemented as Agent Skills. Super exciting because it also includes a Distill, with which you can analyze existing software and retroactively build specifications, or work out a specification in an interview process with the AI that is much more precisely understandable to an LLM than general English. A funny detail on the side: I tried Allium with Qwen3-Coder-Next, my current favorite model for local hosting, in pi.dev. I couldn't install the binary for Allium (a syntax checker and linter) with homebrew, so pi.dev simply downloaded the binary and installed it itself.

-
-
- -

scitrera/cuda-containers: Scitrera builds of various CUDA containers for version consistency, starting primarily with NVIDIA DGX Spark Containers - I'm currently a big fan of eugr/vllm-node as a base package because it always provides up-to-date versions for vLLM, but if I want to play around with sglang sometime, this is probably the most similar project. I'm particularly interested in EAGLE-3 speculative decoding - basically, tokens are generated in parallel via a very small model and the main model checks what fits and takes it, or generates itself if necessary. This way you can often have a third of the tokens generated via a much faster simple model in the <3B range and only pass every third one through the large model.

+ + +

567-labs/instructor: structured outputs for llms

+ +

567-labs/instructor: structured outputs for llms - and here the alternative to dottxt-ai/outlines: Structured Outputs, but it operates behind the LLM rather than during generation. Essentially, this is the classic feedback loop for LLM responses that you constantly build: parse, validate, report specific errors, adjust the prompt, and repeat until it works.

- +
- -

thushan/olla: High-performance lightweight proxy and load balancer for LLM infrastructure. Intelligent routing, automatic failover and unified model discovery across local and remote inference backend might be the better choice following the LiteLLM debacle (hacked supply chain with data extractor in the package). For me, it's definitely interesting because I simply want to run two models and make them available under a single endpoint, and all the other packages are significantly overkill for that.

+ + +

dottxt-ai/outlines: Structured Outputs

+ +

dottxt-ai/outlines: Structured Outputs - a highly promising tooling that integrates directly into vLLM, validates LLM responses against predefined schemas, and directly rejects invalid tokens during generation, ensuring the output strictly adheres to the expected formats. Particularly useful for smaller models that often struggle with structured output formats. It can be highly beneficial for strict workflows where you know exactly what the LLM is supposed to answer.

- + +
+ + + +

datalab-to/marker: Convert PDF to markdown + JSON quickly with high accuracy

+ +

datalab-to/marker: Convert PDF to markdown + JSON quickly with high accuracy - an interesting solution for PDF preprocessing that turns PDFs into Markdown while preserving the structure and reading order. This is particularly crucial for document understanding, as the layout of tables carries a significant amount of information, and the tool can help preserve that.

+
+
- - + + - - - -
- -
- -
- -

Running Mistral Small 4 119B NVFP4 on NVIDIA DGX Spark (GB10) - DGX Spark / GB10 User Forum / DGX Spark / GB10 - NVIDIA Developer Forums - lifesaver discussion in the NVIDIA forums. With what's in there, I got Mistral Small 4 running smoothly. And it runs cleanly with 150K context and 100 tokens/second in generation. Wow. This is the first time I've really noticed the power of this machine.

+ + +
+ +
+ +
+ + + +

jakobdylanc/llmcord: Make Discord your LLM frontend - Supports any OpenAI compatible API (OpenRouter, Ollama and more)

+ +

jakobdylanc/llmcord: Make Discord your LLM frontend - Supports any OpenAI compatible API (OpenRouter, Ollama and more) is a Discord bot written in Python that integrates an LLM and makes it available as a chatbot on Discord. It runs as a simple Docker container. Easy to set up and straightforward.

- + +
+ + + +

Forest Shuffle

+ +

Forest Shuffle is a pleasant tableau-builder with quite cool card combos. The game is relatively easy to learn and play; the only minor drawback is the somewhat limited card pool, which might slightly reduce replayability, but the expansions help to offset this.

+
+
- - + + - - - + + +
- +
- -
- -

Zed: The Fastest AI Code Editor — Zed's Blog is a pretty cool editor that finally comes with a good VIM implementation. It supports Coding Agents and is open to open weight and self-hosted models. To be honest, I really like it and it's genuinely fast. And it's written in Rust, which excites me even more.

-
-
- -

Introducing Mistral Small 4 | Mistral AI is another interesting candidate for the ASUS Ascent GX10||ASUS Deutschland, especially since I don't need side-car models for vision there, because the model itself already comes with vision capabilities built-in. And as a MoE model, it should also deliver good speed performance.

-
- -
- -

nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-NVFP4 · Hugging Face will likely be the first large model on the ASUS Ascent GX10||ASUS Deutschland because it was trained optimized on NVFP4 - and thus does not experience any "dumbing down" due to quantization, but functions completely normally as expected. And it is optimized for agentic workflows, which should benefit OpenClaw, just as the 1M context, which can probably even be utilized in the model (different architecture than classic transformer-based models).

-
- -
- -

WireGuard® for Enterprise sounds funny on a purely private blog with that name, but they have pretty affordable plans for VPN-like constructs that make it very easy to reach your local home devices while on the go. There are certainly other alternatives, but I think if I run my agent locally, I'd rather put the subscription money into a proper VPN service instead, where I get more value overall. Update: it's free for private users up to 3 users. Nice.

-
- -
- -

ASUS Ascent GX10||ASUS Deutschland is arriving in the next few days. AI powerhouse that will allow me to run larger models locally and, for example, operate an OpenClaw Agent autonomously at home without needing any subscriptions. I'm really looking forward to seeing what's possible with it.

+

LMCache – Building the foundation of AI memory tensor with KV Cache Infrastructure

+

LMCache – Building the foundation of AI memory tensor with KV Cache Infrastructure is a KV cache manager that can distribute the cache across GPU memory and SSDs and also helps when a model runs distributed across multiple machines. I primarily use it myself as an offloader for KV cache to disk for Qwen3.6 27B, because it has a slightly higher memory requirement for KV cache than the 35B model.

- +
- - + + - - - + + +
- +
- -
- -

Cognee is also something I’ll keep an eye on for later. Basically a knowledge graph controlled by an LLM to make memory available for another LLM. Certainly exciting to play around with when I have good local hardware to run larger models on. But for now, just a memory keeper.

-
-
- -

Docker Model Runner Adds vLLM Support on macOS | Docker - at first just noticed, that could be interesting later because I can run models via Docker with vllm, while using Apple Silicon at the same time. Interesting here is that it comes as a Docker image ready to use, and I don't have to fiddle with setup. I'm currently working more with my own rfc1437/MLXServer: a simple MLX based server for small models to run locally simply because I only need it for offline operation, but vllm-metal could be very exciting later.

+ + +

Supacode

+ +

Supacode is another very nice terminal that I think +cmux — The Terminal for Multitasking +can replace for me. At first glance, it certainly looks very good, somehow more mature than cmux.

- + +
+ + + +

deepreinforce-ai/Ornith-1.0-35B · Hugging Face

+ +

deepreinforce-ai/Ornith-1.0-35B · Hugging Face is a model based on Qwen3.5 35B 8-bit with post-training specifically designed to provide explicit support for coding tasks. It is expected to perform significantly better in coding compared to other 35B MoE models and even outperform Qwen 3.6 35B. Initial experiments I conducted show solid tool-use with few error scenarios, which is promising. I could easily imagine using it as a base model for a Hermes Agent, for example, simply because it is incredibly fast (over 80 tokens per second locally on my M5 Max MacBook Pro).

+
+
- - + + - - - + + +
- +
- -
- -

rfc1437/MLXServer: a simple MLX based server for small models to run locally is a tool that I built (with AI assistance) to run small models directly locally, without heavy overhead. It doesn't consume much memory, has a built-in local chat for personal experiments, and feels significantly more practical to me compared to the big alternatives—fewer knobs to adjust, but consequently less confusion. I just want to run a small model locally for my on-the-road blog.

-
-
- -

mlx-community/Qwen3.5-9B-MLX-4bit · Hugging Face is another nice, small model — larger than the others, thus slightly more consistent in execution, but still pretty fast. And that's the upper limit of what you can run on a MacBook Air M4 with 16GB RAM without crashing the computer.

+ + +

DietrichGebert/ponytail: Makes your AI agent think like the laziest senior dev in the room. The best code is the code you never wrote.

+ +

DietrichGebert/ponytail: Makes your AI agent think like the laziest senior dev in the room. The best code is the code you never wrote. - a very interesting plugin for various coding agents (including Pi and OpenCode, which I use most frequently, but also all major well-known agents from the commercial sector), with which unnecessary code can be identified. It directly targets the typical weaknesses of agent-generated code, which often contains unnecessary abstractions, indirections, and code duplicates that can be represented much more simply. It also catches re-implementations of things already included in the standard library, or unnecessary dependencies on external libraries that can easily be replaced with a few inlines and standard functions.

- +
- - + + - - - -
- -
- -
- -

Google/gemma-3-4b-it · Hugging Face is a pretty nice model that has been trained for many European languages and is therefore well suited for local translations – it loads under 4G into memory and occupies approximately 6.5G in interference during operation. And it has Vision Capability, so it can also be used to get image descriptions. Ideal, for example, to be used locally with bDS when you want to be offline on the go. And significantly smaller than mlx-community/gemma-3-12b-it-4bit · Hugging Face – that was borderline on my Macbook Air.

+ + +
+ +
+ +
+ + + +

AbarthJoe/Qwopus3.6-27B-v2-oQ8-mtp · Hugging Face

+ +

AbarthJoe/Qwopus3.6-27B-v2-oQ8-mtp · Hugging Face is a very interesting model: Qwen 3.6 27B – one of the best dense models for coding – with fine-tuning based on Opus Thinking Bubbles. The goal is to have a solid foundation for a coding model that can operate with relatively low memory usage. In this version, it is the MLX-converted variant with 8-bit quantization and all weights for native MTP. Even though it is not the absolute fastest runner, it is at least usable and performs quite well in my small tests when analyzing code.

- +
- - + + - - - + + +
- +
- -
- -

Inferencer | Run and Deeply Control Local AI Models is an interesting tool that allows you to run LLMs locally. Of course, LM Studio or Ollama or vllm-mlx can do this as well. But Inferencer has a feature called "Model streaming" that's pretty cool: it can run models that are actually too large for memory. Of course, you're trading time for memory, but for a local model for image captioning or similar smaller tasks, you could definitely use it. However, I have the feeling that the model becomes somewhat more fragile this way - for example, it suddenly doesn't use tools correctly anymore (I tried it with gemma3 12b, which is just scratching the memory limit of my laptop).

-
-
- -

Pagefind | Pagefind — Static low-bandwidth search at scale is a static search engine for statically generated HTML, like my blog. And it will soon power the search on this blog. No external dependencies, no server, no infrastructure complexity - just a few additional files that get uploaded. And of course active JavaScript in the browser.

+ + +

antirez/ds4: DeepSeek 4 Flash and PRO local inference engine for Metal, CUDA and ROCm

+ +

antirez/ds4: DeepSeek 4 Flash and PRO local inference engine for Metal, CUDA and ROCm is a quite interesting project that enables DeepSeek (specifically Q2 quantizations) to run as efficiently as possible on various UMA notebooks. Supported are MacBook, DGX Spark, and ROCm Strix Halo machines. Quite cool if it works—DeepSeek V4 Flash is already quite good as a base model for various purposes, such as a main model for Hermes.

- +
- - + + - - - -
- -
- -
- -

pi.dev is a minimalist harness for agentic coding whose focus is not on features, but on extensibility. The underlying idea is solid: a very simple harness that can be extended through TypeScript plugins, so the harness can adapt to your own workflow and requirements. Maybe I'll take a closer look at it soon.

+ + +
+ +
+ +
+ + + +

oMLX — LLM Inference, Optimized for Your Mac

+ +

oMLX — LLM inference, optimized for your Mac is a bit like my MLX Server, but with a stronger focus on efficient execution and, as a gimmick, a persisted KV cache so that old prefixes can be revived. I could test it on my upcoming MacBook Pro to see if it’s interesting for me; in particular, the example with Qwen 3.5 122B A10B looks good, as that is currently my favorite model on my DGX.

- +
- - + + - - - + + +
- +
- -
- -

steveyegge/beads: Beads - A memory upgrade for your coding agent is a to-do list tool for agents. Essentially a memory system for projects that agents can use to manage themselves (storing tasks and features) and to coordinate more complex workflows where an agent needs to work through a series of issues and resolve them. Tasks can have dependencies, and agents only see the set of tasks that can actually be worked on right now. Interesting for projects where you want to run agents in loops to solve larger tasks.

-
-
- -

dolthub/doltgresql: DoltgreSQL - Version Controlled PostgreSQL is the PostgreSQL-flavored partner of dolthub/dolt: Dolt – Git for Data and offers the same features, but with PostgreSQL syntax and a binary interface that is compatible with PostgreSQL.

-
- -
- -

dolthub/dolt: Dolt – Git for Data is a SQL database that internally uses mechanisms similar to git, thereby supporting data branches and merges and generally providing the ability to version data in the database and work with history. And like git, it also allows data changes to be distributed via version control. In principle, "slow transaction shipping".

-
- -
- -

paperclipai/paperclip: Open-source orchestration for zero-human companies is an approach to orchestrating and managing agents. What's interesting here is that it works with an organization modeled after a company structure and uses means to depict agent communication that could provide good transparency. I haven't tried it yet, but alongside gastown, it's one of the more interesting projects on this topic. The whole field of agent orchestration is still quite new, so there's still a large area of experimentation, but it's exciting to watch.

-
- -
- -

Ghostty is the foundation that cmux — The Terminal for Multitasking was built on. Generally also a very nice terminal that responds noticeably faster than the standard terminal and already works very well. What I didn't like was that tabs weren't automatically reopened in the appropriate directories when the program was closed. I simply have too many persistent sessions that I keep coming back to. cmux just does that better.

+

MTPLX — Twice as fast on MLX

+

MTPLX — Twice as fast on MLX bookmarked for later, when my new MacBook Pro arrives. Then I'll have the necessary hardware to run the model, and MTPLX will be extremely important for speed.

- -
- -

cmux — The Terminal for Multitasking is a pretty brilliant terminal program for CLI workflows, which are experiencing a resurgence especially through agentic coding. And what I love about it: it has clean persistence of open workspaces where you can have multiple tabs, so I don't have to keep my work environment open all the time. I've always liked having various directories open directly because I switch back and forth between several while programming, and this works much better with CMUX than with anything else.

-
-
- - + + - - - -
- -
- -
- -

NuGet Gallery | Photino.Blazor.CustomWindow 1.3.1 is a library for Photino Blazor that allows you to make windows chrome-less. That is, you can remove the title bar and standard decorations. The idea behind it is to gain more control over the look and feel and create more compact UIs. With this library, you get back basic functions like window resizing and other standard elements that users expect, but under full control of the application.

+ + +
+ +
+ +
+ + + +

Home - Livebook.dev

+ +

Livebook.dev is something like Jupyter Notebooks, but for Elixir. It looks very exciting and comes with many built-in Elixir features and extensions (e.g., Bumblebee for AI applications).

- +
- - + + - - - -
- -
- -
- -

OpenClaw Memory Masterclass: The complete guide to agent memory that survives • VelvetShark - interesting compilation of the memory system and the pitfalls with compaction in Openclaw. The agent is meant to run for a long time, but there is always the risk that compaction will strike right in the middle of complex situations. And openclaw runs autonomously, so you want to be sure that it continues continuously.

+ + +
+ +
+ +
+ + + +

opencode

+ +

opencode - After the utterly miserable price hikes by various coding agent providers (Microsoft being the latest with massive increases), it is becoming increasingly important to look at alternatives. OpenCode Go is currently a seriously credible offering, featuring a mix of some quite good models that are also open-weight, allowing them to be operated by more than one provider. It has proven useful for my OpenClaw so far.

- +
- - + + - - - -
- -
- -
- -

unum-cloud/USearch - that's what it says. So a library that offers an index for vectors that can come from embeddings, for example, and can find semantically similar texts. Not text-similar, but semantically, i.e., content. Interesting topic, the models required for this are related to LLMs, but not large, but small - they don't need to fully understand and generate because they only create vectors that can then be compared against each other and the higher the similarity, the higher the similarity of the texts in the topic. Cool little feature for bDS.

+ + +
+ +
+ +
+ + + +

Dicklesworthstone/pi_agent_rust: High-performance AI coding agent CLI written in Rust with zero unsafe code

+ +

Dicklesworthstone/pi_agent_rust: High-performance AI coding agent CLI written in Rust with zero unsafe code is a quite interesting project that is a reimplementation of pi.dev in Rust, with a stronger focus on security, but still maintaining Pi's openness — so not thousands of tools and workflows already built into the core, but rather just a minimalist agent.

- +
- - + + - - - + + +
- +
- -
- -

waybarrios/vllm-mlx: OpenAI and Anthropic compatible server for Apple Silicon. I use this to run mlx-community/gemma-3-12b-it-4bit on my MacBook Air. It works very well, a small shell script to start the server and then I am autonomous. Not as comfortable as Ollama, but it perfectly supports Apple's MLX and thus makes good use of Silicon.

-
-
- -

mlx-community/gemma-3-12b-it-4bit · Hugging Face is currently the best model for local operation, allowing me to implement image captioning and even local chat. It's not the fastest, as it's quite large, but it's absolutely suitable for offline operation if I come up with a few mechanisms for batch processing of images, etc. This could be super exciting for vacation times. An image description might take a minute, but hey, no dependencies.

+ + +

nearai/ironclaw: IronClaw is OpenClaw inspired implementation in Rust focused on privacy and security

+ +

nearai/ironclaw: IronClaw is an OpenClaw inspired implementation in Rust focused on privacy and security could potentially become interesting at some point. Essentially OpenClaw but in Rust. I ran into a whole series of issues with OpenClaw. OpenAI subscriptions (the $20 per month one) are too small for an agent, the weekly limit fills up too quickly. Switching to cheaper open weight models revealed that OpenClaw really only tests the primary code paths – I ran into all sorts of things that broke that had worked before. On top of that, there have been a whole series of successful supply chain attacks against NPM – clearly NPM's security is more than inadequate. So I deleted the OpenClaw VPS for now. Life is too short for bad software.

- +
- - + + - - - + + +
- +
- -
- -

Models.dev — An open-source database of AI models is a very practical site that provides framework parameters for all kinds of providers and all kinds of LLMs, including even API prices. And technical parameters such as input/output tokens.

-
-
- -

Ollama - a runtime environment for LLMs that allows models to be run locally. My favorite model at the moment: qwen2.5vl:7b-q4_K_M. With only 6.6 GB in size, this runs smoothly on a MacBook Air M4 and still has enough memory and capacity to run programs alongside it. The model is surprisingly usable in chat and above all has excellent vision capabilities. Ideal for providing titles, alt text, or summaries for images without having to pay big providers for it. And an important building block to bring bDS back to full-offline.

+ + +

stonerl/Thaw: Menu bar manager for macOS 26

+ +

stonerl/Thaw: Menu bar manager for macOS 26 - helps against the notch on Apple MacBooks. It's already embarrassing that you need an extra program to do this, and that the system doesn't support it out of the box.

- +
- - + + - - - + + +
- +
- -
- -

mistralai/mistral-vibe: Minimal CLI coding agent by Mistral - accompanying the AI Studio - Mistral AI there is also the Vibe coding interface to Devstral as open source. Very nice, because it makes a good pair. Will definitely try it out, even if I will probably rather reach for the powerhouses (Opus 4.6) for larger projects.

-
-
- -

AI Studio - Mistral AI - as the situation in the USA becomes a bit more tense again, and simply because one should always check what is happening outside the USA, here is a link to a European alternative to the major US operators. Mistral offers a coding model with Mistral 2 that is not only open weights (i.e., freely available and operable if you have the necessary hardware), but also quite affordable when using Mistral itself. And the performance is slightly above Claude Haiku 4.5, and below Sonnet 4.5, but not by much. So quite usable and my first experiments were not bad. Unfortunately, no vision capability, so not very suitable for experiments with images (and therefore not ideal for my bDS), but still interesting enough to keep an eye on.

-
- -
- -

ZK I Zettel 1 (1) - Niklas Luhmann-Archiv - where the inspiration for my blog comes from, or what has always driven me beneath the technical surface.

-
- -
- -

If you, like me, want an overview of UI integration for LLMs and are wondering how A2UI and MCP Apps compare and what they offer: Agent UI Standards Multiply: MCP Apps and Google’s A2UI - Richard MacManus helps. I have implemented A2UI in bDS so that the LLM can also use visual aspects in the internal chat, and I really like that. But the idea of incorporating parts of my UI into external agents is also fascinating. Even if I find that "local HTML/JS in an IFrame" somehow sounds like a hack at first, but much in the LLM environment gives me the feeling right now, simply because everything is pushed through a normal text stream and you hope that the LLMs adhere to the formats (even A2UI works like this).

+

Fission-AI/OpenSpec: Spec-driven development (SDD) for AI coding assistants.

+ +

Fission-AI/OpenSpec: Spec-driven development (SDD) for AI coding assistants. is a lighter-weight variant of juxt/allium: A language for sharpening intent alongside implementation.. Could also be quite interesting—the tooling is more developed, but the language is weaker. Allium is much more formal and oriented toward pseudocode.

- +
- - + + - - - + + +
- +
- -
- -

cloudflare/cobweb: COBOL to WebAssembly compiler - I'll just leave this here. Let someone else clean up the old stuff. what else can you say.

-
-
- -

Pyodide is a bit of a lifesaver for me in bDS: I must admit, I'm not really super deep into TypeScript and I actually don't feel like writing it myself. If the AI does it, that's okay, there's enough knowledge for an LLM to draw on, but I don't really want to delve deep into it myself. And Python has been one of my favorite languages for a long time. And Pyodide offers exactly that: a port of CPython to WebAssembly. It provides a pleasant language for scripts and macros that can access everything the application does and - if I ever want to - can also load Python libraries.

+ + +

juxt/allium: A language for sharpening intent alongside implementation.

+ +

juxt/allium: A language for sharpening intent alongside implementation. is a very exciting project. Specifically, a specification language for the behavior of software systems. A language for which there is no runtime environment or compiler, except the LLM. Implemented as Agent Skills. Super exciting because it also includes a Distill, with which you can analyze existing software and retroactively build specifications, or work out a specification in an interview process with the AI that is much more precisely understandable to an LLM than general English. A funny detail on the side: I tried Allium with Qwen3-Coder-Next, my current favorite model for local hosting, in pi.dev. I couldn't install the binary for Allium (a syntax checker and linter) with homebrew, so pi.dev simply downloaded the binary and installed it itself.

- +
- -

Drizzle ORM - was suggested by AI during the construction of bDS and has proven to be very reliable. A clean ORM for TypeScript with a quite nice API that strongly reminds me of Django. Additionally, clean mapping of migrations, which then simply allow SQL, thus enabling more complex migrations. And so far completely unobtrusive in operation. What is particularly interesting: there is a direct translation to GraphQL, so that the objects can also be exposed to an API, which I think I should take a look at (or rather, I should complain to the AI that it should take a look at it). I am always a fan of flexible standard integrations to connect external tools.

+ + +

scitrera/cuda-containers: Scitrera builds of various CUDA containers for version consistency, starting primarily with NVIDIA DGX Spark Containers

+ +

scitrera/cuda-containers: Scitrera builds of various CUDA containers for version consistency, starting primarily with NVIDIA DGX Spark Containers - I'm currently a big fan of eugr/vllm-node as a base package because it always provides up-to-date versions for vLLM, but if I want to play around with sglang sometime, this is probably the most similar project. I'm particularly interested in EAGLE-3 speculative decoding - basically, tokens are generated in parallel via a very small model and the main model checks what fits and takes it, or generates itself if necessary. This way you can often have a third of the tokens generated via a much faster simple model in the <3B range and only pass every third one through the large model.

- +
- -

A2UI is an interesting project for a streaming-oriented protocol for applications with LLM integration. The basic idea is streaming JSON snippets from which the UI is then incrementally built, and the LLM controls what goes into the UI. It allows the LLM to produce more than just simple textual descriptions or basic ASCII graphics and also gives LLM queries a different look. The whole thing comes from Google and is maintained on an open github project. In bDS, I have also integrated it, and it's quite something when you can get a heatmap of the distribution of your blog posts across the months.

+ + +

thushan/olla: High-performance lightweight proxy and load balancer for LLM infrastructure. Intelligent routing, automatic failover and unified model discovery across local and remote inference backend

+ +

thushan/olla: High-performance lightweight proxy and load balancer for LLM infrastructure. Intelligent routing, automatic failover and unified model discovery across local and remote inference backend might be the better choice following the LiteLLM debacle (hacked supply chain with data extractor in the package). For me, it's definitely interesting because I simply want to run two models and make them available under a single endpoint, and all the other packages are significantly overkill for that.

- +
- - + + - - - -
- -
- -
- -

Waggle Dance . oldie, but goldie. Always fun how this rather simple game can captivate people, even over 10 years after its release.

+ + +
+ +
+ +
+ + + +

Running Mistral Small 4 119B NVFP4 on NVIDIA DGX Spark (GB10) - DGX Spark / GB10 User Forum / DGX Spark / GB10 - NVIDIA Developer Forums

+ +

Running Mistral Small 4 119B NVFP4 on NVIDIA DGX Spark (GB10) - DGX Spark / GB10 User Forum / DGX Spark / GB10 - NVIDIA Developer Forums - lifesaver discussion in the NVIDIA forums. With what's in there, I got Mistral Small 4 running smoothly. And it runs cleanly with 150K context and 100 tokens/second in generation. Wow. This is the first time I've really noticed the power of this machine.

- +
- - + + - - - + + +
- +
- +
- -

OpenCode | The Open-Source AI Coding Agent - an open-source coding agent that could soon outperform Claude Code. Very good in execution and above all provider-agnostic. You can attach any model, even one self-hosted with LM Studio or ollama. If you just want to play around, you can simply download it and get started, even without providing a credit card (then of course with limited tokens, but quite usable for initial experiments. And independent of the major providers (ok, except for their models if you want to use them - and for serious coding, those are unfortunately still necessary). OpenCode also offers its own AI models, which are then billed, but a few models are always freely available and thus offer quite serious experimentation without investment.

+ + +

Zed: The Fastest AI Code Editor — Zed''s Blog

+ +

Zed: The Fastest AI Code Editor — Zed's Blog is a pretty cool editor that finally comes with a good VIM implementation. It supports Coding Agents and is open to open weight and self-hosted models. To be honest, I really like it and it's genuinely fast. And it's written in Rust, which excites me even more.

- +
- - - -

Steve Yegge on Vibe Coding

- -

Steve Yegge talks in the interview about the future of programming and the challenges of vibe coding. The author shares his experiences and sees a upheaval comparable to the introduction of high-level languages.

+ + +

Introducing Mistral Small 4 | Mistral AI

+ +

Introducing Mistral Small 4 | Mistral AI is another interesting candidate for the ASUS Ascent GX10||ASUS Deutschland, especially since I don't need side-car models for vision there, because the model itself already comes with vision capabilities built-in. And as a MoE model, it should also deliver good speed performance.

- +
- - - -

bDS slowly usable

- -

Now the new software is starting to be fun, everything you need for usage and creation is largely present. It still has a few minor flaws and there are one or two features I want, but I can already do everything I really need as a minimum. Publishing now works easily with a shell script:

-
#!/bin/sh
 
-cd ~/Blogs/rfc1437.de/html
 
-rsync -rav --delete \
-	--exclude='thumbnails/' \
-	--exclude='media/' \
-	* git.rfc1437.de:git-server/html/
 
-cd ..
-
-rsync -rav --delete thumbnails/ git.rfc1437.de:git-server/html/thumbnails/
-rsync -rav --exclude='*.meta' --delete media/ git.rfc1437.de:git-server/html/media/
-
-

Yes, that was just to test my source formatting. And?

+

nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-NVFP4 · Hugging Face

+

nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-NVFP4 · Hugging Face will likely be the first large model on the ASUS Ascent GX10||ASUS Deutschland because it was trained optimized on NVFP4 - and thus does not experience any "dumbing down" due to quantization, but functions completely normally as expected. And it is optimized for agentic workflows, which should benefit OpenClaw, just as the 1M context, which can probably even be utilized in the model (different architecture than classic transformer-based models).

- + +
+ + + +

WireGuard® for Enterprise

+ +

WireGuard® for Enterprise sounds funny on a purely private blog with that name, but they have pretty affordable plans for VPN-like constructs that make it very easy to reach your local home devices while on the go. There are certainly other alternatives, but I think if I run my agent locally, I'd rather put the subscription money into a proper VPN service instead, where I get more value overall. Update: it's free for private users up to 3 users. Nice.

+
+ +
+ + + +

ASUS Ascent GX10 | ASUS Germany

+ +

ASUS Ascent GX10||ASUS Deutschland is arriving in the next few days. AI powerhouse that will allow me to run larger models locally and, for example, operate an OpenClaw Agent autonomously at home without needing any subscriptions. I'm really looking forward to seeing what's possible with it.

+
+
- - + + - - - -
- -
- -
- -

Big Damn Stupid - no, Blogging Desktop Server. Currently my favorite project where I play around with Vibe-Coding and build software with which I can run the blog. But this time with the clear perspective that I won't succumb to bit rot or the complexity spiral again. Simple software with a usable interface for maintaining blog posts, but storage as Markdown files with YAML front matter to be easily stable for the future. Then with sqlite for caching and full-text search and other comfort features and git for synchronizing the blog data, and git-lfs for the images. Feels quite usable right now.

+ + +
+ +
+ +
+ + + +

topoteretes/cognee: Knowledge Engine for AI Agent Memory in 6 lines of code

+ +

Cognee is also something I’ll keep an eye on for later. Basically a knowledge graph controlled by an LLM to make memory available for another LLM. Certainly exciting to play around with when I have good local hardware to run larger models on. But for now, just a memory keeper.

- + +
+ + + +

Docker Model Runner Adds vLLM Support on macOS

+ +

Docker Model Runner Adds vLLM Support on macOS | Docker - at first just noticed, that could be interesting later because I can run models via Docker with vllm, while using Apple Silicon at the same time. Interesting here is that it comes as a Docker image ready to use, and I don't have to fiddle with setup. I'm currently working more with my own rfc1437/MLXServer: a simple MLX based server for small models to run locally simply because I only need it for offline operation, but vllm-metal could be very exciting later.

+
+
- - + + - - - + + +
- +
- -
- -

Schotten Totten 2 is becoming one of our favorite two-player games. A remake of the old Schotten Totten (which unfortunately is no longer available under that name, only as Battle Line, but that only in English). Unlike the first game, now asymmetric with just enough difference in gameplay that the two sides definitely feel different, but still mostly doing the same things. Quick to set up, quick to play, and quick to put away with enough tactics to keep you hooked for a few games. And the graphic style is just nice.

-
-
- -

Tak is quite an interesting game: inspired by a fantasy novel by Patrick Rothfuss, brought to life as a fictional "classic" strategy game. The beauty of it: you can easily make it yourself if you want and are skilled. The rules are super simple and easy to learn, but the game is tricky with many opportunities to set traps for the opponent. It will probably be taken for our next vacation because it's practical to play outdoors.

+ + +

rfc1437/MLXServer: a simple MLX-based server for small models to run locally

+ +

rfc1437/MLXServer: a simple MLX based server for small models to run locally is a tool that I built (with AI assistance) to run small models directly locally, without heavy overhead. It doesn't consume much memory, has a built-in local chat for personal experiments, and feels significantly more practical to me compared to the big alternatives—fewer knobs to adjust, but consequently less confusion. I just want to run a small model locally for my on-the-road blog.

- +
- -

Because Google Authenticator annoys me: In-depth tutorial: How to set up 2FA TOTP with KeepassXC, Aegis and Authy. | Linux.org. Keepassxc is much nicer, in my opinion, and is much more controllable for me.

+ + +

Qwen3.5-9B MLX: Perfect for MacBook Air M4

+ +

mlx-community/Qwen3.5-9B-MLX-4bit · Hugging Face is another nice, small model — larger than the others, thus slightly more consistent in execution, but still pretty fast. And that's the upper limit of what you can run on a MacBook Air M4 with 16GB RAM without crashing the computer.

- +
- - + + - - - -
- -
- -
- - - -

Again on Linux ...

- -

... and of course, the surround sound of my notebook no longer works, for reasons. And fingerprint login makes a lot less sense when you have to enter the password for the keyring after login anyway. If it at least came up for the first time when a password was needed, that would be okay, but it comes up directly after login. Bah.

-

Otherwise, however, I am pleasantly surprised at how good the Linux support for the Lenovo T480 is. Everything else has been working flawlessly so far.

+ + +
+ +
+ +
+ + + +

google/gemma-3-4b-it · Hugging Face

+ +

Google/gemma-3-4b-it · Hugging Face is a pretty nice model that has been trained for many European languages and is therefore well suited for local translations – it loads under 4G into memory and occupies approximately 6.5G in interference during operation. And it has Vision Capability, so it can also be used to get image descriptions. Ideal, for example, to be used locally with bDS when you want to be offline on the go. And significantly smaller than mlx-community/gemma-3-12b-it-4bit · Hugging Face – that was borderline on my Macbook Air.

- +
- - + + - - - -
- -
- -
- - - -

Autumn Leaves

- -

autumn leaf against fuzzy background with other leaves and sky

+ + +
+ +
+ +
+ + + +

Inferencer | Run and Deeply Control Local AI Models

+ +

Inferencer | Run and Deeply Control Local AI Models is an interesting tool that allows you to run LLMs locally. Of course, LM Studio or Ollama or vllm-mlx can do this as well. But Inferencer has a feature called "Model streaming" that's pretty cool: it can run models that are actually too large for memory. Of course, you're trading time for memory, but for a local model for image captioning or similar smaller tasks, you could definitely use it. However, I have the feeling that the model becomes somewhat more fragile this way - for example, it suddenly doesn't use tools correctly anymore (I tried it with gemma3 12b, which is just scratching the memory limit of my laptop).

- + +
+ + + +

Pagefind | Pagefind — Static low-bandwidth search at scale

+ +

Pagefind | Pagefind — Static low-bandwidth search at scale is a static search engine for statically generated HTML, like my blog. And it will soon power the search on this blog. No external dependencies, no server, no infrastructure complexity - just a few additional files that get uploaded. And of course active JavaScript in the browser.

+
+
- - - + + + + + + +
+ +
+ +
+ + + +

pi.dev

+ +

pi.dev is a minimalist harness for agentic coding whose focus is not on features, but on extensibility. The underlying idea is solid: a very simple harness that can be extended through TypeScript plugins, so the harness can adapt to your own workflow and requirements. Maybe I'll take a closer look at it soon.

+
+ +
+
+ + + + + + + +
+ +
+ +
+ + + +

steveyegge/beads: Beads - A memory upgrade for your coding agent

+ +

steveyegge/beads: Beads - A memory upgrade for your coding agent is a to-do list tool for agents. Essentially a memory system for projects that agents can use to manage themselves (storing tasks and features) and to coordinate more complex workflows where an agent needs to work through a series of issues and resolve them. Tasks can have dependencies, and agents only see the set of tasks that can actually be worked on right now. Interesting for projects where you want to run agents in loops to solve larger tasks.

+
+ +
+ + + +

dolthub/doltgresql: DoltgreSQL - Version Controlled PostgreSQL

+ +

dolthub/doltgresql: DoltgreSQL - Version Controlled PostgreSQL is the PostgreSQL-flavored partner of dolthub/dolt: Dolt – Git for Data and offers the same features, but with PostgreSQL syntax and a binary interface that is compatible with PostgreSQL.

+
+ +
+ + + +

dolthub/dolt: Dolt – Git for Data

+ +

dolthub/dolt: Dolt – Git for Data is a SQL database that internally uses mechanisms similar to git, thereby supporting data branches and merges and generally providing the ability to version data in the database and work with history. And like git, it also allows data changes to be distributed via version control. In principle, "slow transaction shipping".

+
+ +
+ + + +

paperclipai/paperclip: Open-source orchestration for zero-human companies

+ +

paperclipai/paperclip: Open-source orchestration for zero-human companies is an approach to orchestrating and managing agents. What's interesting here is that it works with an organization modeled after a company structure and uses means to depict agent communication that could provide good transparency. I haven't tried it yet, but alongside gastown, it's one of the more interesting projects on this topic. The whole field of agent orchestration is still quite new, so there's still a large area of experimentation, but it's exciting to watch.

+
+ +
+ + + +

Ghostty

+ +

Ghostty is the foundation that cmux — The Terminal for Multitasking was built on. Generally also a very nice terminal that responds noticeably faster than the standard terminal and already works very well. What I didn't like was that tabs weren't automatically reopened in the appropriate directories when the program was closed. I simply have too many persistent sessions that I keep coming back to. cmux just does that better.

+
+ +
+ + + +

cmux — The Terminal for Multitasking

+ +

cmux — The Terminal for Multitasking is a pretty brilliant terminal program for CLI workflows, which are experiencing a resurgence especially through agentic coding. And what I love about it: it has clean persistence of open workspaces where you can have multiple tabs, so I don't have to keep my work environment open all the time. I've always liked having various directories open directly because I switch back and forth between several while programming, and this works much better with CMUX than with anything else.

+
+ +
+
+ + + + + + + +
+ +
+ +
+ + + +

NuGet Gallery | Photino.Blazor.CustomWindow 1.3.1

+ +

NuGet Gallery | Photino.Blazor.CustomWindow 1.3.1 is a library for Photino Blazor that allows you to make windows chrome-less. That is, you can remove the title bar and standard decorations. The idea behind it is to gain more control over the look and feel and create more compact UIs. With this library, you get back basic functions like window resizing and other standard elements that users expect, but under full control of the application.

+
+ +
+
+ + + + + + + +
+ +
+ +
+ + + +

OpenClaw Memory Masterclass: The complete guide to agent memory that survives • VelvetShark

+ +

OpenClaw Memory Masterclass: The complete guide to agent memory that survives • VelvetShark - interesting compilation of the memory system and the pitfalls with compaction in Openclaw. The agent is meant to run for a long time, but there is always the risk that compaction will strike right in the middle of complex situations. And openclaw runs autonomously, so you want to be sure that it continues continuously.

+
+ +
+
+ + + + + + + +
+ +
+ +
+ + + +

unum-cloud/USearch: Fast Open-Source Search & Clustering engine × for Vectors & Arbitrary Objects × in C++, C, Python, JavaScript, Rust, Java, Objective-C, Swift, C#, GoLang, and Wolfram \U0001F50D

+ +

unum-cloud/USearch - that's what it says. So a library that offers an index for vectors that can come from embeddings, for example, and can find semantically similar texts. Not text-similar, but semantically, i.e., content. Interesting topic, the models required for this are related to LLMs, but not large, but small - they don't need to fully understand and generate because they only create vectors that can then be compared against each other and the higher the similarity, the higher the similarity of the texts in the topic. Cool little feature for bDS.

+
+ +
+
+ + + + + + + +
+ +
+ +
+ + + +

waybarrios/vllm-mlx: OpenAI and Anthropic compatible server for Apple Silicon.

+ +

waybarrios/vllm-mlx: OpenAI and Anthropic compatible server for Apple Silicon. I use this to run mlx-community/gemma-3-12b-it-4bit on my MacBook Air. It works very well, a small shell script to start the server and then I am autonomous. Not as comfortable as Ollama, but it perfectly supports Apple's MLX and thus makes good use of Silicon.

+
+ +
+
+ + + +
- -
- \ No newline at end of file + diff --git a/fixtures/golden-generated-sites/rfc1437-sample/index.html b/fixtures/golden-generated-sites/rfc1437-sample/index.html index 797746d..9b4d3a8 100644 --- a/fixtures/golden-generated-sites/rfc1437-sample/index.html +++ b/fixtures/golden-generated-sites/rfc1437-sample/index.html @@ -4,16 +4,16 @@ Content-type: matter-transport/sentient-life-form - + - + - + @@ -25,20 +25,19 @@ -
- + @@ -60,183 +59,183 @@ - - - + + +

Content-type: matter-transport/sentient-life-form

- - - + + +
- - -
- -
- -
- -

stonerl/Thaw: Menu bar manager for macOS 26 - hilft gegen das Notch auf Apple MacBooks. Schon peinlich, dass man ein extra Programm braucht, um das zu machen, und dass das System das nicht von Hause aus unterstützt.

+ +
+ +
+ +
+ +

mlx-community/ThinkingCap-Qwen3.6-27B-OptiQ-4bit · Hugging Face - mit dem Modell muss ich mal rumspielen, das verspricht besseres Reasoning mit weniger Token und liefert gute Performance auf meinem MacBook Pro - wenn das sich bewährt, könnte das für lokale Agents durchaus interessant sein.

- + +
+ +

hunk — review-first terminal diff viewer ist ein Diff-Viewer, der speziell mit Herdr: one terminal for the whole herd zusammenarbeitet. Ein Agent kann Diff erzeugen und über einen Skill Kommentare in den Diff einarbeiten und dann lässt sich das in Hunk anzeigen und der Benutzer kann ebenfalls im Diff kommentieren - also klassischer Review-Prozess, nur eben rein lokal und im Terminal.

+
+ +
+ +

Herdr: one terminal for the whole herd - ich bin ja alter screen User, aber ich glaube es wird wirklich Zeit, dass ich mich mal mental modernisiere. Herdr ist screen auf steroiden. Es hat eine Client-Server Architektur, remote-Installation und Nutzung, und eine sehr gute Agent-Integration. Agent Sessions tauchen in der Übersicht auf, genauso wie Projektstatus (Branch etc.), alles schön in einem Sidebar. Tabs können geöffnet werden, Screens gesplittet werden und obwohl es eine Terminal-Anwendung ist, unterstützt es die Maus. Fühlt sich wirklich gut in der Benutzung an.

+
+
- - + + - - - -
- -
- -
- -

Fission-AI/OpenSpec: Spec-driven development (SDD) for AI coding assistants. ist eine leichtgewichtigere Variante zu juxt/allium: A language for sharpening intent alongside implementation.. Könnte auch ganz interessant sein, das Tooling ist weiter ausgebaut, dafür die Sprache schwächer. Allium ist wesentlich formaler und in Richtung Pseudocode.

+ + +
+ +
+ +
+ +

JustVugg/colibri: Run GLM-5.2 (744B MoE) on a 25GB-RAM consumer machine — pure C, zero deps, experts streamed from disk. Tiny engine, immense model. 🐦 - eines der wildesten Projekte in der letzten Zeit, weil darüber ein frontier Modell auf völlig ungeeigneter Hardware betrieben werden kann. Mit grausigen Token/Sekunde, aber laufen. Und es gibt schon Metal und Cuda Backends, also ein bisschen Beschleunigung ist schon da.

- +
- - + + - - - + + +
- +
- -
- -

juxt/allium: A language for sharpening intent alongside implementation. ist ein sehr spannendes Projekt. Und zwar eine Spezifikationssprache für Verhalten von Softwaresystemen. Eine Sprache, für die es keine Laufzeitumgebung oder Compiler gibt, außer der LLM. Implementiert als Agent Skills. Super spannend, weil es unter anderem auch ein Distill gibt, mit dem man bestehende Software analysieren und retroaktiv Spezifikationen aufbauen kann, oder im Interviewverfahren mit der KI eine Spezifikation ausarbeiten kann, die für ein LLM deutlich präziser verständlich ist als allgemeines Englisch. Witziges Detail am Rande: ich habe Allium mit Qwen3-Coder-Next ausprobiert, meinem derzeitigen Lieblingsmodell für lokales Hosting, in pi.dev. Ich konnte das binary für Allium (ein Syntaxchecker und Linter) nicht mit homebrew installieren, pi.dev hat einfach kurzerhand das Binary runtergeladen und selber installiert.

-
-
- -

scitrera/cuda-containers: Scitrera builds of various CUDA containers for version consistency, starting primarily with NVIDIA DGX Spark Containers bin ja im Moment ein großer Fan von eugr/vllm-node als Basispaket, weil es immer aktuelle Versionen für vLLM bietet, aber wenn ich mal mit sglang spielen will, ist das hier vermutlich das ähnlichste Projekt. Mich interessiert da speziell EAGLE-3 spekulatives Dekodieren - im Prinzip werden dabei über ein sehr kleines Modell parallel Token generiert und das Hauptmodell guckt was passt und nimmt das, oder generiert selber wenn nötig. Dadurch kann man oft ein drittel der Token über ein viel schnelleres banales Modell im <3B Bereich generieren lassen und nur jedes dritte wirklich über das große Modell.

+

567-labs/instructor: structured outputs for llms - und hier die Alternative zu dottxt-ai/outlines: Structured Outputs, aber hinter dem LLM und nicht in der Generierung. Im Prinzip ist das die klassische Korrekturschleife für LLM Antworten, die man ständig baut. Also parsen, prüfen, validieren, konkrete Fehler zurückmelden und Prompt anpassen und wiederholen, bis es passt.

- +
- -

thushan/olla: High-performance lightweight proxy and load balancer for LLM infrastructure. Intelligent routing, automatic failover and unified model discovery across local and remote inference backend ist nach dem Debakel von LiteLLM (gehackte supply-chain mit Datenextraktor im Paket) vielleicht die bessere Wahl. Für mich auf jeden Fall interessant, weil ich einfach nur zwei Modelle betreiben will und diese unter einem Endpunkt verfügbar machen will, und da sind alle anderen Pakete deutlicher Overkill.

+

dottxt-ai/outlines: Structured Outputs - ein sehr spannendes Tooling das sich direkt in vLLM einhängt und Replies von LLMs gegen definierte Schemas für Antworten prüft und direkt in der Generierung illegale Token rejected und damit garantiert, dass der Output den erwarteten Formaten entspricht. Gerade für kleinere Modelle interessant die oft Schwächen bei Toolformaten haben. Gerade für stringente Workflows in denen man genau weiss, was das LLM antworten soll, kann das hilfreich sein.

- + +
+ +

datalab-to/marker: Convert PDF to markdown + JSON quickly with high accuracy - eine interessante Lösung für ein PDF Preprocessing, dass aus PDF Markdown macht, aber die Struktur und die Lesefolge berücksichtigt. Gerade für Dokumentenverständnis ist das essentiell, da Tabellen in ihrerer Anordnung eine Menge an Information transportieren und das tool dabei helfen kann.

+
+
- - + + - - - -
- -
- -
- -

Running Mistral Small 4 119B NVFP4 on NVIDIA DGX Spark (GB10) - DGX Spark / GB10 User Forum / DGX Spark / GB10 - NVIDIA Developer Forums - live-saver Diskussion in den NVIDIA Foren. Mit dem was da steht habe ich Mistral Small 4 zum Fliegen bekommen. Und es läuft sauber mit 150K Context und 100 Token/Sekunde in der Generierung. Wow. Das ist das erste Mal, dass ich die Power der Kiste wirklich bemerke.

+ + +
+ +
+ +
+ +

jakobdylanc/llmcord: Make Discord your LLM frontend - Supports any OpenAI compatible API (OpenRouter, Ollama and more) ist ein discord bot in Python geschrieben, der ein LLM integriert und als Chatbot in Discord verfügbar macht. Das ganze als simpler Docker Container. Leicht einzurichten und simpel.

- + +
+ +

Forest Shuffle ist ein netter Tableau-Builder mit ziemlich coolen Kartencombos. Das ganze ist relativ leicht zu lernen und zu spielen, einzig der etwas geringe Kartenpool könnte den Wiederspiel-Reiz etwas dämpfen, aber die Erweiterungen helfen dabei.

+
+
- - + + - - - + + +
- +
- -
- -

Zed: The Fastest AI Code Editor — Zed's Blog ist ein ziemlich cooler Editor, der endlich auch mit einer guten VIM Implementation daher kommt. Unterstützt Coding Agents und ist offen für Open Weight und home-hosted Modelle. Gefällt mir ehrlich gesagt sehr gut und ist wirklich schnell. Und ist in Rust geschrieben, was mich nochmal mehr begeistert.

-
-
- -

Introducing Mistral Small 4 | Mistral AI ist ein weiterer interessanter Kandidat für die ASUS Ascent GX10||ASUS Deutschland, vor allem brauche ich dort keine Side-car Modelle für Vision, weil das Modell selber auch schon gleich Vision mitbring. Und als MoE Modell dürfte es auch gut Speed hinlegen.

+

LMCache – Building the foundation of AI memory tensor with KV Cache Infrastructure ist ein kv cache manager, der den cache über GPU Speicher und SSD verteilen kann und auch hilft, wenn ein Modell über mehrere Maschinen verteilt läuft. Ich selbst benutze ihn primär als offloader für kvcache auf die Platte beim Qwen3.6 27B, weil das einen etwas heftigeren Bedarf an Speicher für kvcache hat als das 35B Modell.

- -
- -

nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-NVFP4 · Hugging Face wird wahrscheinlich das erste große Modell auf der ASUS Ascent GX10||ASUS Deutschland werden, weil es optimiert auf NVFP4 trainiert wurde - und damit nicht eine "verdummung" erfährt, wegen der Quantisierung, sondern ganz normal wie erwartet funktioniert. Und es ist auf agentische Workflows optimiert, was OpenClaw begünstigen sollte, genauso wie der 1M Context, der in dem Modell vermutlich sogar genutzt werden kann (andere Architektur als klassische Transformer basierte Modelle).

-
- -
- -

WireGuard® for Enterprise klingt komisch auf einem rein privaten Blog mit dem Namen, aber die haben recht günstige Tarife für VPN-ähnliche Konstrukte, mit denen man sehr leicht seine lokalen Geräte zu Hause auch von Unterwegs erreichbar machen kann. Gibt sicherlich auch andere Alternativen, aber ich glaube wenn ich meinen Agent lokal laufen lasse, stecke ich das Geld für Subscriptions lieber in einen ordentlichen VPN Dienst, da habe ich generell mehr von. Update: ist kostenlos für Privatbenutzer bis 3 User. Nett.

- -
- -
- -

ASUS Ascent GX10||ASUS Deutschland kommt in den nächsten Tagen. KI Bolide, der es mir erlauben wird, auch größere Modelle lokal zu betreiben und z.B. einen OpenClaw Agent autonom zu Hause zu betreiben, ohne dafür dann auch noch Subscriptions zu brauchen. Bin schon echt gespannt, was damit geht. Kommt mit angepasstem Ubuntu, auch ein nettes Detail.

- -
-
- - + + - - - + + +
- +
- -
- -

topoteretes/cognee: Knowledge Engine for AI Agent Memory in 6 lines of code ist auch etwas, das ich mir für später merke. Im Prinzip ein Wissens-Graph der über eine LLM gesteuert aufgebaut wird, um Memory für eine andere LLM verfügbar zu machen. Sicherlich spannend damit zu spielen, wenn ich mal eine gute lokale Hardware habe, auf der ich größere Modelle betreiben kann. Aber für jetzt nur ein Merker.

-
-
- -

Docker Model Runner Adds vLLM Support on macOS | Docker - erstmal nur gemerkt, das könnte später interessant werden, weil ich darüber Modelle über Docker mit vllm betreiben kann, bei gleichzeitiger Nutzung von Apple Silicon. Interessant daran ist hier, dass es als Docker Image fertig konfiguriert kommt und ich mich nicht mit Setup rumschlagen muss. Im Moment arbeite ich ja eher mit meinem eigenen rfc1437/MLXServer: a simple MLX based server for small models to run locally, einfach weil ich es eh nur für den Offline-Betrieb brauche, aber für später könnte vllm-metal sehr spannend sein.

+

Supacode ist ein weiteres sehr nettes Terminal dass glaube ich +cmux — Das Terminal für Multitasking +für mich ersetzen kann. Es wirkt jedenfalls sehr gut auf den ersten Blick, irgendwie ausgereifter als cmux.

- + +
+ +

deepreinforce-ai/Ornith-1.0-35B · Hugging Face ist ein Modell basierend auf Qwen3.5 35B 8bit mit Post-Training für explizite Unterstützung von Coding. Es soll deutlich besser für Coding sein als andere 35B MoE Modelle und auch gegenüber Qwen 3.6 35B besser abschneiden. Erste Experimente von mir zeigen soliden Tool-Use mit wenig Fehlersituationen, das lässt schon mal hoffen. Ich könnte mir gut vorstellen das als Basismodell für einen Hermes Agent einzusetzen, zum Beispiel, einfach weil es rasend schnell ist (lokal auf meinem M5 Max MacBook Pro >80 Token pro Sekunde).

+
+
- - + + - - - + + +
- +
- -
- -

rfc1437/MLXServer: a simple MLX based server for small models to run locally ist ein Tool, das ich mir (KI-gestützt) gebaut habe, um kleine Modelle direkt lokal auszuführen, ohne großen Ballast. Das frisst nicht viel Speicher, hat gleich einen lokalen Chat eingebaut für eigene Experimente und fühlt sich für mich deutlich praktischer an als die großen Alternativen - weniger Knöpfe zum Einstellen, aber dadurch auch weniger Verwirrung. Ich will ja einfach nur ein kleines Modell lokal betreiben für mein Blog on-the-road.

-
-
- -

mlx-community/Qwen3.5-9B-MLX-4bit · Hugging Face ist noch ein weiteres nettes kleines Modell - größer als die anderen, dadurch aber auch etwas konsistenter in der Ausführung, aber immer noch echt fix. Und ist so die Obergrenze, was man auf einem MacBook Air M4 mit 16G Ram betreiben kann, ohne den Rechner zu crashen.

+

DietrichGebert/ponytail: Makes your AI agent think like the laziest senior dev in the room. The best code is the code you never wrote. - ein sehr interessantes Plugin für diverse coding agents (unter anderem Pi und OpenCode, die ich am häufigsten benutze, aber auch alle großen bekannten Agenten aus dem kommerziellen Umfeld), mit dem unnötiger Code gefunden werden kann. Es zielt direkt auf die typischen Schwächen von angentisch erstelltem Code, der oft unnötige Abstraktionen und Indirektionen und Code-Duplikate enthält, die deutlich einfacher abbildbar sind. Auch Re-Implementierungen von Sachen die schon im Standard enthalten sind oder unnötige Abhängigkeiten von externen Bibliotheken, die man leicht durch wenige Inlines und Standardfunktionen ersetzen kann.

- +
- - + + - - - -
- -
- -
- -

google/gemma-3-4b-it · Hugging Face ist ein ziemlich nettes Modell, dass für viele europäische Sprachen trainiert ist und daher gut für Übersetzungen lokal benutzt werden kann - es lädt unter 4G in den Speicher und belegt im Betrieb in der Interferenz ca. 6.5G. Und es hat Vision Capability, kann also auch benutzt werden um Bildbeschreibungen zu bekommen. Ideal, um z.B. mit bDS als lokales Modell benutzt zu werden wenn man offline unterwegs sein will. Und deutlich kleiner als mlx-community/gemma-3-12b-it-4bit · Hugging Face - das war bei meinem Macbook Air grenzwertig.

+ + +
+ +
+ +
+ +

AbarthJoe/Qwopus3.6-27B-v2-oQ8-mtp · Hugging Face ist ein sehr interessantes Modell: Qwen 3.6 27B - eines der besten dichten Modelle für Coding - mit fine-tuning basierend auf Opus Thinking Bubbles. Das Ziel ist eine gute Basis für ein Coding-Modell zu haben, dass mit relativ geringem Speicher auskommen kann. Und in dieser Version ist es die MLX konvertierte Variante mit 8bit Quantisierung und allen Gewichten für natives MTP. Auch wenn das nicht der aller schnellste Renner ist, ist es immerhin benutzbar und ziemlich gut schon bei der Analyse von Code in meinen kleinen Tests.

- +
- - + + - - - + + +
- +
- -
- -

Inferencer | Run and Deeply Control Local AI Models ist ein interessantes Tool, mit dem man LLMs lokal betreiben kann. Das kann natürlich LM Studio oder Ollama oder vllm-mlx auch. Aber Inferencer hat ein Feature namens "Model streaming", das ziemlich cool ist: es kann Modelle betreiben, die eigentlich zu groß für den Speicher sind. Natürlich tauscht man da Zeit gegen Speicher, aber für ein lokales Modell zur Bildbetitelung oder ähnliche kleinere Sachen kann man das durchaus mal benutzen. Ich habe aber das Gefühl, dass das Modell dadurch irgendwie fragiler wird - z.B. nutzt es Tools plötzlich nicht mehr richtig (ich habs mit gemma3 12b probiert, das so gerade an der Speichergrenze meines Laptops kratzt).

-
-
- -

Pagefind | Pagefind — Static low-bandwidth search at scale ist eine statische Suchmaschine für statisch generiertes HTML, so wie mein Blog. Und wird demnächst die Suche auf diesem Blog betreiben. Keine externen abhängigkeiten, kein Server, keine Komplexität der Infrastruktur - einfach nur ein paar zusätzliche Files, die mit hochgeladen werden. Und natürlich aktives JavaScript im Browser.

+

antirez/ds4: DeepSeek 4 Flash and PRO local inference engine for Metal, CUDA and ROCm ist ein ziemlich interessantes Projekt, mit dem Deepseek (spezielle Q2 Quants) möglichst effizient auf verschiedenen UMA Notebooks läuft. Unterstützt sind MacBook, DGX Spark und ROCm Strix Halo Rechner. Ziemlich cool, wenn das auch funktioniert - Deepseek V4 Flash ist schon ziemlich gut als Basismodell für verschiedene Zwecke, wie zum Beispiel als Main-Modell für Hermes.

- +
- - + + - - - -
- -
- -
- -

pi.dev ist ein minimalistischer Harness für agentic coding, dessen Fokus nicht auf Features, sondern auf Erweiterbarkeit liegt. Die Grundidee ist solide:. eine sehr einfache Harness die durch Typescript-Plugins erweitert werden kann, so dass sich die Harness an den eigenen Workflow anpassen und an die eigenen Anforderungen. Werde ich mir vielleicht demnächst mal angucken.

+ + +
+ +
+ +
+ +

oMLX — LLM inference, optimized for your Mac ist so ein bisschen wie mein MLX Server, aber hat mehr Fokus auf effiziente Ausführung und als Gimmick einen persistierten KV Cache, so dass alte Prefixe wiederbelebt werde. Könnte ich mit meinem kommenden MacBook Pro mal testen, ob das interessant für mich ist, insbesondere das Beispiel mit dem Qwen 3.5 122B A10B sieht gut aus, das ist auch im Moment auf meine DGX mein favorisiertes Modell.

- +
- - + + - - - + + +
- +
- -
- -

steveyegge/beads: Beads - A memory upgrade for your coding agent ist ein Todo-Listen-Tool für Agenten. Im Prinzip ein Gedächtnis für Projekte über das sich Agenten steuern können (hinterlegen von Tasks und Features) und auch komplexere Abläufe gesteuert werden können, bei denen ein Agent über eine ganze Reihe von Issues laufen muss und diese lösen muss, wo Tasks abhängigkeiten haben können und Agenten nur den Satz an Aufgaben sehen, die auch wirklich gerade angegangen werden können. Interessant für Projekte, in denen man Agenten in Loops laufen lassen will, um größere Aufgaben zu lösen.

-
-
- -

dolthub/doltgresql: DoltgreSQL - Version Controlled PostgreSQL ist der PostgreSQL-flavored Partner von dolthub/dolt: Dolt – Git for Data und bietet die gleichen Features, nur mit Anlehnung an PostgreSQL und einem Binär-Interface das zu PostgreSQL kompatibel ist.

+

MTPLX — Twice as fast on MLX gemerkt für später, wenn mein neues MacBook Pro kommt. Dann habe ich die nötige Hardware, um das Modell laufen zu lassen und MTPLX wird dann extrem wichtig für die Geschwindigkeit.

- -
- -

dolthub/dolt: Dolt – Git for Data ist eine SQL Datenbank, die intern mit Mechanismen wie git arbeitet und dadurch Daten-Branches und Merges unterstützt und allgemein die Möglichkeit bietet, dass Daten in der Datenbank versioniert und mit History funktionieren. Und das ganze auch analog zu git erlaubt die Datenchanges über die Versionsverwaltung zu verteilen. Im Prinzip "slow transaction shipping".

-
- -
- -

paperclipai/paperclip: Open-source orchestration for zero-human companies ist ein Ansatz um Agenten zu orchestrieren und zu verwalten. Das interessante hier ist, dass es mit einer Organisation angelehnt an eine Firmenorganisation arbeitet und mit Mitteln die Kommunikation der Agenten abbildet, die eine gute Transparenz bieten könnte. Ich habe es noch nicht ausprobiert, aber neben gastown eines der interessanteren Projekte zu diesem Thema. Das ganze Umfeld von Agent-Orchestrierung ist alles noch recht neu, von daher ist das noch ein großes Feld an Experimenten, aber spannend zu beobachten.

- -
- -
- -

Ghostty ist die Basis, auf der cmux — Das Terminal für Multitasking aufgebaut wurde. Generell ebenfalls ein sehr nettes Terminal, das auch deutlich schneller reagiert als das Standardterminal und auch schon sehr gut funktioniert. Was mir nicht gefiel, war dass Tabs nicht automatisch in den passenden Pfaden wieder neu geöffnet wurden, wenn das Programm beendet wurde. Ich habe einfach zu lange persistente Sessions, die ich immer wieder aufgreife. Das macht cmux einfach besser.

- -
- -
- -

cmux — Das Terminal für Multitasking ist ein ziemlich geniales Terminal-Programm für die gerade durch Agentic Coding wieder verstärkt kommenden CLI Workflows. Und was mich begeistert: es hat eine saubere Persistierung von offenen Workspaces in denen man dann mehrere Tabs haben kann, so dass ich meine Arbeitsumgebung nicht ständig offen lassen muss. Ich habe immer gerne diverse Verzeichnisse direkt offen, weil ich zwischen mehreren hin und her wechsel wärend der Programmierung, das läuft mit CMUX deutlich besser als mit allen anderen.

- -
-
- - + + - - - -
- -
- -
- -

NuGet Gallery | Photino.Blazor.CustomWindow 1.3.1 ist eine Library für Photino Blazor, mit der man Fenster Chrome-less machen kann. Also Titelbalken und Standarddekorationen entfernen kann. Idee dahinter ist darüber mehr Kontrolle über das Look-and-Feel zu bekommen und kompaktere UIs zu schaffen. Mit dieser Library bekommt man dann Grundfunktionen zurück wie Fenstergrößenänderungen und andere Standardelemente, die Benutzer erwarten, aber unter voller Kontrolle der Anwendung.

+ + +
+ +
+ +
+ +

Livebook.dev ist sowas wie Jupyter Notebooks, aber für Elixir. Sieht sehr spannend aus und hat viele eingebaute Elixir Features und Erweiterungen mit im Bauch (z.B. Bumblebee für AI Anwendungen).

- +
- - + + - - - -
- -
- -
- -

OpenClaw Memory Masterclass: The complete guide to agent memory that survives • VelvetShark - interessante Zusammenstellung des Memory-Systems und der Fallstricke mit Compaction bei Openclaw. Der Agent ist ja dazu da, über lange Zeit zu laufen, dadurch ist aber auch immer die Gefahr, dass Compaction gerade in komplexeren Situationen mitten drin zuschlägt. Und openclaw läuft autonom, also will man sicher sein, dass es auch kontinuierlich weitergeht.

+ + +
+ +
+ +
+ +

opencode - nach den hundsmiserablen Preiserhöhungen der diversen Coding Agent Betreibern (Microsoft jetzt als letztes mit massiven Preiserhöhungen) wirds immer wichtiger auf alternativen zu gucken und OpenCode Go ist im Moment ein durchaus ernstzunehmendes Angebot mit einigen ziemlich guten Modellen im Mix, die auch noch open weight sind und dadurch auch über mehr als einen Anbieter betrieben werden können. Hat sich bei mir für meinen OpenClaw gut bewährt bisher.

- +
- - + + - - - -
- -
- -
- -

unum-cloud/USearch - drin was drauf steht. Also eine Library, die einen Index für Vektoren bietet, die z.B. aus Embedding stammen können und so semantisch ähnliche Texte finden können. Nicht Text-ähnlich, sondern semantisch, also Inhalt. Spannendes Thema, die dafür nötigen Modelle sind mit den LLMs verwandt, aber eben nicht large, sondern small - sie brauchen nicht voll zu verstehen und zu generieren, weil sie nur Vektoren erstellen, die dann gegeneinander verglichen werden können und je höher die Ähnlichkeit, desto höher die Ähnlichkeit der Texte im Thema. Cooles kleines Feature für bDS.

+ + +
+ +
+ +
+ +

Dicklesworthstone/pi_agent_rust: High-performance AI coding agent CLI written in Rust with zero unsafe code ist ein ganz interessantes Projekt, das eine Reimplementierung von pi.dev in Rust ist, mit stärkerem Fokus auf Sicherheit, aber weiterhin der Offenheit von Pi, also nicht tausende von Tools und Workflows schon im Kern, sondern einfach ein m inimalistischer Agent.

- +
- - + + - - - + + +
- +
- -
- -

waybarrios/vllm-mlx: OpenAI and Anthropic compatible server for Apple Silicon. Den benutze ich, um mlx-community/gemma-3-12b-it-4bit auf meinem MacBook Air zu betreiben. Klappt sehr gut, kleines Shell-Script zum Starten des Servers und dann bin ich autonom. Nicht so komfortabel wie Ollama, aber dafür unterstützt es perfekt Apple's MLX und nutzt damit Silicon gut aus.

-
-
- -

mlx-community/gemma-3-12b-it-4bit · Hugging Face ist das bisher beste Modell für lokalen Betrieb, mit dem ich die Bildbetitelung und sogar lokalen Chat realisieren kann. Nicht das schnellste, da es schon recht groß ist, aber für Offline-Betrieb absolut geeignet, wenn ich mir da ein paar Mechanismen für Batchverarbeitung von Bildern etc. einfallen lasse. Das könnte gerade für Urlaubszeiten super spannend sein. Eine Bildbeschreibung liegt dann zwar bei einer Minute, aber hey, dafür keine Abhängigkeiten.

+

nearai/ironclaw: IronClaw is OpenClaw inspired implementation in Rust focused on privacy and security könnte irgendwann mal interessant werden. Im Prinzip OpenClaw aber in Rust. Mir sind bei OpenClaw eine ganze Reihe von Sachen um die Ohren geflogen. OpenAI subscriptions (die 20 pro Monat) ist zu klein für einen Agenten, das Wochenlimit läuft zu schnell voll. Wechsel auf billigere open weight Modelle hat dann gezeigt, dass bei OpenClaw wirklich nur die primären Pfade im Code getestet werden, da sind mir reihenweise Sachen um die Ohren geflogen, die vorher funkmtioniert haben. Dazu kommt dann noch, dass es eine ganze Reihe von erfolgreichen Supply Chain Attacks gegen NPM gegeben hat - offensichtlich ist die Absicherung von NPM mehr als mangelhaft. Also erstmal den OpenClaw VPS gelöscht. Das Leben ist zu kurz für schlechte Software.

- +
- - + + - - - + + +
- +
- -
- -

Models.dev — An open-source database of AI models ist eine sehr praktische Seite, die für alle möglichen Anbieter und alle möglichen LLMs Rahmenparameter liefert, inklusive sogar API Preise. Und technische Parameter wie Input/Output Tokens.

-
-
- -

Ollama - eine Runtime-Umgebung für LLMs, die es erlaubt Modelle lokal zu betreiben. Mein Lieblingsmodell zur Zeit: qwen2.5vl:7b-q4_K_M. Mit nur 6.6 GB Größe läuft das problemlos auf einem MacBook Air M4 und hat noch genug Speicher und Kapazität frei um Programme nebenbei laufen zu lassen. Das Modell ist im Chat erstaunlich brauchbar und vor allem hat es klasse Vision-Fähigkeiten. Ideal um für Bilder Titel, Alt-Texte oder Zusammenfassungen zu liefern, ohne dafür Geld an große Provider abzudrücken. Und ein wichtiger Baustein, um bDS wieder zurück zu full-offline zu bringen.

+

stonerl/Thaw: Menu bar manager for macOS 26 - hilft gegen das Notch auf Apple MacBooks. Schon peinlich, dass man ein extra Programm braucht, um das zu machen, und dass das System das nicht von Hause aus unterstützt.

- +
- - + + - - - + + +
- +
- -
- -

mistralai/mistral-vibe: Minimal CLI coding agent by Mistral - begleitend zum AI Studio - Mistral AI gibt es die Vibe-Coding Oberfläche zu Devstral auch als Open Source. Sehr nett, weil es ein gutes Paar macht. Wird definitiv bei mir etwas ausprobiert, auch wenn ich sicherlich für große Projekte dann eher zu den Boliden (Opus 4.6) greifen würde.

-
-
- -

AI Studio - Mistral AI - da in den USA ja doch wieder die Lage etwas angespannter wird, und einfach weil man immer mal gucken sollte, was außerhalb der USA passiert, hier ein Link auf eine europäische Alternative zu den großen US Betreibern. Mistral bietet mit Devstral 2 ein Coding-Modell an, das nicht nur open weights ist (also frei zu bekommen und zu betreiben, wenn man die nötige Hardware hat), sondern auch im Betrieb bei Nutzung von Mistral selber recht günstig ist. Und die Leistung liegt etwas oberhalb Claude Haiku 4.5, und zwar unterhalb Sonnet 4.5, aber nicht super weit. Also durchaus brauchbar und meine ersten Experimente waren nicht schlecht. Leider keine Vision-Fähigkeit, also für Experimente mit Bildern nicht so geeignet (und daher für mein bDS nicht ideal), aber trotzdem spannend genug um es im Auge zu behalten.

+

Fission-AI/OpenSpec: Spec-driven development (SDD) for AI coding assistants. ist eine leichtgewichtigere Variante zu juxt/allium: A language for sharpening intent alongside implementation.. Könnte auch ganz interessant sein, das Tooling ist weiter ausgebaut, dafür die Sprache schwächer. Allium ist wesentlich formaler und in Richtung Pseudocode.

- -
- -

ZK I Zettel 1 (1) - Niklas Luhmann-Archiv - woher die Inspiration für mein Blog kommt, bzw. was mich immer unter der technischen Oberfläche bewegt hat.

-
- -
- -

wer so wie ich gerne einen Überblick über UI-integration von LLMs haben möchte und sich fragt, wie A2UI und MCP Apps im Vergleich arbeiten und was sie bieten: Agent UI Standards Multiply: MCP Apps and Google’s A2UI - Richard MacManus hilft. Ich habe in bDS ja A2UI implementiert, damit im internen Chat das LLM auch visuelle Aspekte nutzen kann, und das gefällt mir schon sehr gut. Aber die Idee, Teile meines UI auch in externe Agents einzubringen ist auch faszinierend. Auch wenn ich finde, dass "lokales HTML/JS in einem IFrame" irgendwie erstmal nach Hack klingt, aber vieles im LLM Umfeld gibt mir das Gefühl im Moment, einfach weil ja alles über einen normalen Text-Stream geschoben wird und man hofft, dass die LLMs sich an die Formate halten (selbst A2UI arbeitet so).

- -
-
- - + + - - - + + +
- +
- -
- -

cloudflare/cobweb: COBOL to WebAssembly compiler - ich lass das einfach mal hier liegen. Soll doch jemand anders den alten Kram wegräumen. was soll man da auch anderes sagen.

-
-
- -

Pyodide ist so ein bisschen mein Lebensretter in bDS: ich muss nämlich gestehen, ich bin jetzt nicht wirklich super tief in TypeScript drin und hab auch eigentlich keine Lust das selber zu schreiben. Wenn die KI das macht, ist das ok, da gibt es genug Wissen auf das ein LLM zurückgreifen kann, aber ich will eigentlich nicht mich da tief einarbeiten. Und Python ist schon seit langem eine meiner favorisierten Sprachen. Und Pyodide bietet genau das: eine Portierung von CPython auf WebAssembly. Das bietet eine angenehme Sprache für Scripte und Makros, die aber auf alles zugreifen kann, was die Applikation macht und - wenn ich das mal will - auch Python Libraries ladenm kann.

+

juxt/allium: A language for sharpening intent alongside implementation. ist ein sehr spannendes Projekt. Und zwar eine Spezifikationssprache für Verhalten von Softwaresystemen. Eine Sprache, für die es keine Laufzeitumgebung oder Compiler gibt, außer der LLM. Implementiert als Agent Skills. Super spannend, weil es unter anderem auch ein Distill gibt, mit dem man bestehende Software analysieren und retroaktiv Spezifikationen aufbauen kann, oder im Interviewverfahren mit der KI eine Spezifikation ausarbeiten kann, die für ein LLM deutlich präziser verständlich ist als allgemeines Englisch. Witziges Detail am Rande: ich habe Allium mit Qwen3-Coder-Next ausprobiert, meinem derzeitigen Lieblingsmodell für lokales Hosting, in pi.dev. Ich konnte das binary für Allium (ein Syntaxchecker und Linter) nicht mit homebrew installieren, pi.dev hat einfach kurzerhand das Binary runtergeladen und selber installiert.

- +
- -

Drizzle ORM - war ein Vorschlag der KI beim Bau von bDS und hat sich sehr bewährt. Sauberer ORM für TypeScript mit einer recht netten API, die mich stark an Django erinnert. Zusätzlich saubere Abbildung von Migrations, die dann aber einfach SQL erlauben, also auch komplexere Migrationen ermöglichen. Und bisher völlig unauffällig im Betrieb. Was besonders interessant ist: da gibts eine direkte Übersetzung nach GraphQL, so dass man die objekte dann auch nach außen auf ein API legen kann, was ich mir glaube ich mal angucken sollte (bzw. mich bei der KI beschweren sollte, dass es sich das mal anguckt). Ich bin ja immer ein Fan von flexiblen Standard-Integrationen um externe Tools anzubinden.

+

scitrera/cuda-containers: Scitrera builds of various CUDA containers for version consistency, starting primarily with NVIDIA DGX Spark Containers bin ja im Moment ein großer Fan von eugr/vllm-node als Basispaket, weil es immer aktuelle Versionen für vLLM bietet, aber wenn ich mal mit sglang spielen will, ist das hier vermutlich das ähnlichste Projekt. Mich interessiert da speziell EAGLE-3 spekulatives Dekodieren - im Prinzip werden dabei über ein sehr kleines Modell parallel Token generiert und das Hauptmodell guckt was passt und nimmt das, oder generiert selber wenn nötig. Dadurch kann man oft ein drittel der Token über ein viel schnelleres banales Modell im <3B Bereich generieren lassen und nur jedes dritte wirklich über das große Modell.

- +
- -

A2UI ist ein interessantes Projekt für ein streaming-orientiertes Protokoll für Anwendungen mit LLM Integration. Die Grundidee ist Streaming von JSON Schnipseln aus denen sich dann inkrementell das UI zusammenbaut, und das LLM hat die Kontrolle darüber, was in das UI rein wandert. Es erlaubt dem LLM mehr als nur simple textuelle Beschreibungen oder einfache Ascii-Grafiken zu produzieren und gibt auch Rückfragen des LLM eine andere Optik. Das ganze kommt von Google und wird auf einem offenen github Projekt gepflegt. In bDS habe ich das ganze auch eingebaut und das hat schon was, wenn man über seine Blogposts eine Heatmap der Verteilung auf die Monate bekommen kann.

+

thushan/olla: High-performance lightweight proxy and load balancer for LLM infrastructure. Intelligent routing, automatic failover and unified model discovery across local and remote inference backend ist nach dem Debakel von LiteLLM (gehackte supply-chain mit Datenextraktor im Paket) vielleicht die bessere Wahl. Für mich auf jeden Fall interessant, weil ich einfach nur zwei Modelle betreiben will und diese unter einem Endpunkt verfügbar machen will, und da sind alle anderen Pakete deutlicher Overkill.

- +
- - + + - - - -
- -
- -
- -

Waggle Dance . oldie, but goldie. Immer wieder spaßig wie dieses doch recht einfache Spiel die Leute mitnehmen kann, auch über 10 Jahren nach seiner Veröffentlichung.

+ + +
+ +
+ +
+ +

Running Mistral Small 4 119B NVFP4 on NVIDIA DGX Spark (GB10) - DGX Spark / GB10 User Forum / DGX Spark / GB10 - NVIDIA Developer Forums - live-saver Diskussion in den NVIDIA Foren. Mit dem was da steht habe ich Mistral Small 4 zum Fliegen bekommen. Und es läuft sauber mit 150K Context und 100 Token/Sekunde in der Generierung. Wow. Das ist das erste Mal, dass ich die Power der Kiste wirklich bemerke.

- +
- - + + - - - + + +
- +
- +
- -

OpenCode | Der Open-Source AI-Coding-Agent - ein open-source coding agent der so langsam Claude Code den Rang ablaufen könnte. Sehr gut in der Ausführung und vor allem Provider-agnostisch. Man kann jedes Modell anhängen, sogar ein selber lokal gehostetes mit LM Studio oder ollama. Wenn man einfach mal spielen will, kann man es auch einfach nur runterladen und loslegen, sogar ohne eine Kreditkarte zu hinterlegen (dann natürlich mit limitierten Tokens, aber für erste Experimente durchaus nutzbar. Und unabhängig von den großen Anbietern (ok, außer deren Modelle, wenn man die benutzen will - und für ernsthaftes Coding sind die leider noch notwendig). OpenCode bietet auch selber AI Modelle an, die dann abgerechnet werden, aber ein paar Modelle sind immer frei verfügbar und bieten damit durchaus ernsthaftes Experimentieren ohne Investment.

+

Zed: The Fastest AI Code Editor — Zed's Blog ist ein ziemlich cooler Editor, der endlich auch mit einer guten VIM Implementation daher kommt. Unterstützt Coding Agents und ist offen für Open Weight und home-hosted Modelle. Gefällt mir ehrlich gesagt sehr gut und ist wirklich schnell. Und ist in Rust geschrieben, was mich nochmal mehr begeistert.

- +
- - - -

Steve Yegge on Vibe Coding

- -

Steve Yegge spricht im Interview über die Zukunft der Programmierung und die Herausforderungen des Vibe Codings. Der Autor teilt seine Erfahrungen und sieht einen Umbruch vergleichbar mit der Einführung von Hochsprachen.

+

Introducing Mistral Small 4 | Mistral AI ist ein weiterer interessanter Kandidat für die ASUS Ascent GX10||ASUS Deutschland, vor allem brauche ich dort keine Side-car Modelle für Vision, weil das Modell selber auch schon gleich Vision mitbring. Und als MoE Modell dürfte es auch gut Speed hinlegen.

- +
- - - -

bDS langsam benutzbar

- -

So langsam macht die neue Software Spaß, alles was man für die Benutzung und Erstellung braucht ist weitestgehend vorhanden. Ein paar kleine Schönheitsfehler hat sie moch und es gibt noch das eine oder andere Feature, das ich will, aber ich kann schon alles machen, was ich wirklich als Minimum brauche. Veröffentlichen geht jetzt einfach mit einem shell script:

-
#!/bin/sh
-
-cd ~/Blogs/rfc1437.de/html
-
-rsync -rav --delete \
-	--exclude='thumbnails/' \
-	--exclude='media/' \
-	* git.rfc1437.de:git-server/html/
-
-cd ..
-
-rsync -rav --delete thumbnails/ git.rfc1437.de:git-server/html/thumbnails/
-rsync -rav --exclude='*.meta' --delete media/ git.rfc1437.de:git-server/html/media/
-
-

Ja, das war jetzt nur um meine Source-Formatierung zu testen. Und?

+

nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-NVFP4 · Hugging Face wird wahrscheinlich das erste große Modell auf der ASUS Ascent GX10||ASUS Deutschland werden, weil es optimiert auf NVFP4 trainiert wurde - und damit nicht eine "verdummung" erfährt, wegen der Quantisierung, sondern ganz normal wie erwartet funktioniert. Und es ist auf agentische Workflows optimiert, was OpenClaw begünstigen sollte, genauso wie der 1M Context, der in dem Modell vermutlich sogar genutzt werden kann (andere Architektur als klassische Transformer basierte Modelle).

- + +
+ +

WireGuard® for Enterprise klingt komisch auf einem rein privaten Blog mit dem Namen, aber die haben recht günstige Tarife für VPN-ähnliche Konstrukte, mit denen man sehr leicht seine lokalen Geräte zu Hause auch von Unterwegs erreichbar machen kann. Gibt sicherlich auch andere Alternativen, aber ich glaube wenn ich meinen Agent lokal laufen lasse, stecke ich das Geld für Subscriptions lieber in einen ordentlichen VPN Dienst, da habe ich generell mehr von. Update: ist kostenlos für Privatbenutzer bis 3 User. Nett.

+
+ +
+ +

ASUS Ascent GX10||ASUS Deutschland kommt in den nächsten Tagen. KI Bolide, der es mir erlauben wird, auch größere Modelle lokal zu betreiben und z.B. einen OpenClaw Agent autonom zu Hause zu betreiben, ohne dafür dann auch noch Subscriptions zu brauchen. Bin schon echt gespannt, was damit geht. Kommt mit angepasstem Ubuntu, auch ein nettes Detail.

+
+
- - + + - - - -
- -
- -
- -

Big Damn Stupid - ne, Blogging Desktop Server. Im Moment mein Lieblingsprojekt an dem ich mit Vibe-Coding herumspiele und mir eine Software baue, mit der ich das Blog betreiben kann. Aber diesmal mit der klaren Perspektive, dass ich nicht wieder dem Bitrot oder der Komplexitätsspirale erliege. Simple Software mit brauchbarer Oberfläche für die Pflege der Blogbeiträge, aber die Speicherung als Markdown Files mit YAML Frontmatter um einfach stabil für die Zukunft zu sein. Das ganze dann mit sqlite für Caching und Volltextsuche und andere Komfort-Features und git für die Synchronisation der Blog-Daten, und git-lfs für die Bilder. Fühlt sich gerade richtig brauchbar an.

+ + +
+ +
+ +
+ +

topoteretes/cognee: Knowledge Engine for AI Agent Memory in 6 lines of code ist auch etwas, das ich mir für später merke. Im Prinzip ein Wissens-Graph der über eine LLM gesteuert aufgebaut wird, um Memory für eine andere LLM verfügbar zu machen. Sicherlich spannend damit zu spielen, wenn ich mal eine gute lokale Hardware habe, auf der ich größere Modelle betreiben kann. Aber für jetzt nur ein Merker.

- + +
+ +

Docker Model Runner Adds vLLM Support on macOS | Docker - erstmal nur gemerkt, das könnte später interessant werden, weil ich darüber Modelle über Docker mit vllm betreiben kann, bei gleichzeitiger Nutzung von Apple Silicon. Interessant daran ist hier, dass es als Docker Image fertig konfiguriert kommt und ich mich nicht mit Setup rumschlagen muss. Im Moment arbeite ich ja eher mit meinem eigenen rfc1437/MLXServer: a simple MLX based server for small models to run locally, einfach weil ich es eh nur für den Offline-Betrieb brauche, aber für später könnte vllm-metal sehr spannend sein.

+
+
- - + + - - - + + +
- +
- -
- -

Schotten Totten 2 entwickelt sich zu einem unserer Lieblings-Spiele für zwei Spieler. Ein Remake des alten Schotten Totten (das es leider nicht mehr zu kaufen gibt unter dem Namen, nur als Battle Line, aber das eben nur auf Englisch). Im Gegensatz zum ersten Spiel jetzt asymmetrisch mit gerade genug Unterschied in der Spielweise, dass sich die beiden Seiten definitiv unterschiedlich anfühlen, aber trotzdem noch größtenteils die gleichen Sachen machen. Schnell aufgebaut, schnell gespielt und schnell weggeräumt mit genug Taktik um einen für ein paar Spiele zu fesseln. Und der Grafik-Stil ist einfach nett.

-
-
- -

Tak ist ein ziemlich interessantes Spiel: inspiriert aus einem Fantasy-Roman von Patrick Rothfuss, zum Leben erweckt als eine fiktives "klassisches" Strategiespiel. Das schöne daran: man kann es sich problemlos selber machen, wenn man will und geschickt ist. Die Regeln sind super simpel und leicht gelernt, das Spiel aber trickreich mit vielen Möglichkeiten dem Gegner Fallen zu stellen. Wird vermutlich für unseren nächsten Urlaub mitgenommen, weil praktisch zum Draussen spielen.

+

rfc1437/MLXServer: a simple MLX based server for small models to run locally ist ein Tool, das ich mir (KI-gestützt) gebaut habe, um kleine Modelle direkt lokal auszuführen, ohne großen Ballast. Das frisst nicht viel Speicher, hat gleich einen lokalen Chat eingebaut für eigene Experimente und fühlt sich für mich deutlich praktischer an als die großen Alternativen - weniger Knöpfe zum Einstellen, aber dadurch auch weniger Verwirrung. Ich will ja einfach nur ein kleines Modell lokal betreiben für mein Blog on-the-road.

- +
- -

Weil mich Google Authenticator ärgert: In-depth tutorial: How to set up 2FA TOTP with KeepassXC, Aegis and Authy. | Linux.org. Keepassxc ist deutlich netter, wie ich finde, und ist deutlich kontrollierbarer für mich.

+

mlx-community/Qwen3.5-9B-MLX-4bit · Hugging Face ist noch ein weiteres nettes kleines Modell - größer als die anderen, dadurch aber auch etwas konsistenter in der Ausführung, aber immer noch echt fix. Und ist so die Obergrenze, was man auf einem MacBook Air M4 mit 16G Ram betreiben kann, ohne den Rechner zu crashen.

- +
- - + + - - - -
- -
- -
- - - -

Mal wieder auf Linux ...

- -

... und natürlich tuts Surround-Sound meines Notebooks nicht mehr, aus Gründen. Und Fingerprint-Login macht weitaus weniger Sinn, wenn man nach Login dann doch das Passwort für den Keyring eingeben muss. Wenn der wenigstens erst beim ersten Bedarf nach einem Passwort käme, dann wärs ja ok, aber der geht direkt nach Login auf. Bah.

-

Ansonsten bin ich allerdings angenehm überrascht davon, wie gut die Linux-Unterstützung für das Lenovo T480 ist. Alles andere funktioniert bisher tadellos.

+ + +
+ +
+ +
+ +

google/gemma-3-4b-it · Hugging Face ist ein ziemlich nettes Modell, dass für viele europäische Sprachen trainiert ist und daher gut für Übersetzungen lokal benutzt werden kann - es lädt unter 4G in den Speicher und belegt im Betrieb in der Interferenz ca. 6.5G. Und es hat Vision Capability, kann also auch benutzt werden um Bildbeschreibungen zu bekommen. Ideal, um z.B. mit bDS als lokales Modell benutzt zu werden wenn man offline unterwegs sein will. Und deutlich kleiner als mlx-community/gemma-3-12b-it-4bit · Hugging Face - das war bei meinem Macbook Air grenzwertig.

- +
- - + + - - - -
- -
- -
- - - -

Herbstblätter

- -

Herbstblatt gegen unscharfen Hintergrund mit anderen Blättern und Himmel

+ + +
+ +
+ +
+ +

Inferencer | Run and Deeply Control Local AI Models ist ein interessantes Tool, mit dem man LLMs lokal betreiben kann. Das kann natürlich LM Studio oder Ollama oder vllm-mlx auch. Aber Inferencer hat ein Feature namens "Model streaming", das ziemlich cool ist: es kann Modelle betreiben, die eigentlich zu groß für den Speicher sind. Natürlich tauscht man da Zeit gegen Speicher, aber für ein lokales Modell zur Bildbetitelung oder ähnliche kleinere Sachen kann man das durchaus mal benutzen. Ich habe aber das Gefühl, dass das Modell dadurch irgendwie fragiler wird - z.B. nutzt es Tools plötzlich nicht mehr richtig (ich habs mit gemma3 12b probiert, das so gerade an der Speichergrenze meines Laptops kratzt).

- + +
+ +

Pagefind | Pagefind — Static low-bandwidth search at scale ist eine statische Suchmaschine für statisch generiertes HTML, so wie mein Blog. Und wird demnächst die Suche auf diesem Blog betreiben. Keine externen abhängigkeiten, kein Server, keine Komplexität der Infrastruktur - einfach nur ein paar zusätzliche Files, die mit hochgeladen werden. Und natürlich aktives JavaScript im Browser.

+
+
- - - + + + + + + +
+ +
+ +
+ +

pi.dev ist ein minimalistischer Harness für agentic coding, dessen Fokus nicht auf Features, sondern auf Erweiterbarkeit liegt. Die Grundidee ist solide:. eine sehr einfache Harness die durch Typescript-Plugins erweitert werden kann, so dass sich die Harness an den eigenen Workflow anpassen und an die eigenen Anforderungen. Werde ich mir vielleicht demnächst mal angucken.

+
+ +
+
+ + + + + + + +
+ +
+ +
+ +

steveyegge/beads: Beads - A memory upgrade for your coding agent ist ein Todo-Listen-Tool für Agenten. Im Prinzip ein Gedächtnis für Projekte über das sich Agenten steuern können (hinterlegen von Tasks und Features) und auch komplexere Abläufe gesteuert werden können, bei denen ein Agent über eine ganze Reihe von Issues laufen muss und diese lösen muss, wo Tasks abhängigkeiten haben können und Agenten nur den Satz an Aufgaben sehen, die auch wirklich gerade angegangen werden können. Interessant für Projekte, in denen man Agenten in Loops laufen lassen will, um größere Aufgaben zu lösen.

+
+ +
+ +

dolthub/doltgresql: DoltgreSQL - Version Controlled PostgreSQL ist der PostgreSQL-flavored Partner von dolthub/dolt: Dolt – Git for Data und bietet die gleichen Features, nur mit Anlehnung an PostgreSQL und einem Binär-Interface das zu PostgreSQL kompatibel ist.

+
+ +
+ +

dolthub/dolt: Dolt – Git for Data ist eine SQL Datenbank, die intern mit Mechanismen wie git arbeitet und dadurch Daten-Branches und Merges unterstützt und allgemein die Möglichkeit bietet, dass Daten in der Datenbank versioniert und mit History funktionieren. Und das ganze auch analog zu git erlaubt die Datenchanges über die Versionsverwaltung zu verteilen. Im Prinzip "slow transaction shipping".

+
+ +
+ +

paperclipai/paperclip: Open-source orchestration for zero-human companies ist ein Ansatz um Agenten zu orchestrieren und zu verwalten. Das interessante hier ist, dass es mit einer Organisation angelehnt an eine Firmenorganisation arbeitet und mit Mitteln die Kommunikation der Agenten abbildet, die eine gute Transparenz bieten könnte. Ich habe es noch nicht ausprobiert, aber neben gastown eines der interessanteren Projekte zu diesem Thema. Das ganze Umfeld von Agent-Orchestrierung ist alles noch recht neu, von daher ist das noch ein großes Feld an Experimenten, aber spannend zu beobachten.

+
+ +
+ +

Ghostty ist die Basis, auf der cmux — Das Terminal für Multitasking aufgebaut wurde. Generell ebenfalls ein sehr nettes Terminal, das auch deutlich schneller reagiert als das Standardterminal und auch schon sehr gut funktioniert. Was mir nicht gefiel, war dass Tabs nicht automatisch in den passenden Pfaden wieder neu geöffnet wurden, wenn das Programm beendet wurde. Ich habe einfach zu lange persistente Sessions, die ich immer wieder aufgreife. Das macht cmux einfach besser.

+
+ +
+ +

cmux — Das Terminal für Multitasking ist ein ziemlich geniales Terminal-Programm für die gerade durch Agentic Coding wieder verstärkt kommenden CLI Workflows. Und was mich begeistert: es hat eine saubere Persistierung von offenen Workspaces in denen man dann mehrere Tabs haben kann, so dass ich meine Arbeitsumgebung nicht ständig offen lassen muss. Ich habe immer gerne diverse Verzeichnisse direkt offen, weil ich zwischen mehreren hin und her wechsel wärend der Programmierung, das läuft mit CMUX deutlich besser als mit allen anderen.

+
+ +
+
+ + + + + + + +
+ +
+ +
+ +

NuGet Gallery | Photino.Blazor.CustomWindow 1.3.1 ist eine Library für Photino Blazor, mit der man Fenster Chrome-less machen kann. Also Titelbalken und Standarddekorationen entfernen kann. Idee dahinter ist darüber mehr Kontrolle über das Look-and-Feel zu bekommen und kompaktere UIs zu schaffen. Mit dieser Library bekommt man dann Grundfunktionen zurück wie Fenstergrößenänderungen und andere Standardelemente, die Benutzer erwarten, aber unter voller Kontrolle der Anwendung.

+
+ +
+
+ + + + + + + +
+ +
+ +
+ +

OpenClaw Memory Masterclass: The complete guide to agent memory that survives • VelvetShark - interessante Zusammenstellung des Memory-Systems und der Fallstricke mit Compaction bei Openclaw. Der Agent ist ja dazu da, über lange Zeit zu laufen, dadurch ist aber auch immer die Gefahr, dass Compaction gerade in komplexeren Situationen mitten drin zuschlägt. Und openclaw läuft autonom, also will man sicher sein, dass es auch kontinuierlich weitergeht.

+
+ +
+
+ + + + + + + +
+ +
+ +
+ +

unum-cloud/USearch - drin was drauf steht. Also eine Library, die einen Index für Vektoren bietet, die z.B. aus Embedding stammen können und so semantisch ähnliche Texte finden können. Nicht Text-ähnlich, sondern semantisch, also Inhalt. Spannendes Thema, die dafür nötigen Modelle sind mit den LLMs verwandt, aber eben nicht large, sondern small - sie brauchen nicht voll zu verstehen und zu generieren, weil sie nur Vektoren erstellen, die dann gegeneinander verglichen werden können und je höher die Ähnlichkeit, desto höher die Ähnlichkeit der Texte im Thema. Cooles kleines Feature für bDS.

+
+ +
+
+ + + + + + + +
+ +
+ +
+ +

waybarrios/vllm-mlx: OpenAI and Anthropic compatible server for Apple Silicon. Den benutze ich, um mlx-community/gemma-3-12b-it-4bit auf meinem MacBook Air zu betreiben. Klappt sehr gut, kleines Shell-Script zum Starten des Servers und dann bin ich autonom. Nicht so komfortabel wie Ollama, aber dafür unterstützt es perfekt Apple's MLX und nutzt damit Silicon gut aus.

+
+ +
+
+ + + +
- -
- \ No newline at end of file + diff --git a/fixtures/golden-generated-sites/rfc1437-sample/rss.xml b/fixtures/golden-generated-sites/rfc1437-sample/rss.xml index 522ad6b..ca6e84a 100644 --- a/fixtures/golden-generated-sites/rfc1437-sample/rss.xml +++ b/fixtures/golden-generated-sites/rfc1437-sample/rss.xml @@ -1,630 +1 @@ - - - - rfc1437 - https://www.rfc1437.de/ - Content-type: matter-transport/sentient-life-form - Sun, 15 Mar 2026 09:36:46 GMT - bDS - - Pagefind | Pagefind — Static low-bandwidth search at scale - https://www.rfc1437.de/2026/03/15/pagefind-pagefind-static-low-bandwidth-search-at-scale - https://www.rfc1437.de/2026/03/15/pagefind-pagefind-static-low-bandwidth-search-at-scale - Sun, 15 Mar 2026 09:36:46 GMT - hugo - de - [Pagefind | Pagefind — Static low-bandwidth search at scale](https://pagefind.app/) ist eine statische Suchmaschine für statisch generiertes HTML, so wie mein Blog. Und wird demnächst die Suche auf diesem Blog betreiben. Keine externen abhängigkeiten, kein Server, keine Komplexität der Infrastruktur - einfach nur ein paar zusätzliche Files, die mit hochgeladen werden. Und natürlich aktives JavaScript im Browser.

]]>
- [Pagefind | Pagefind — Static low-bandwidth search at scale](https://pagefind.app/) ist eine statische Suchmaschine für statisch generiertes HTML, so wie mein Blog. Und wird demnächst die Suche auf diesem Blog betreiben. Keine externen abhängigkeiten, kein Server, keine Komplexität der Infrastruktur - einfach nur ein paar zusätzliche Files, die mit hochgeladen werden. Und natürlich aktives JavaScript im Browser.

]]>
- aside - programmierung - javascript - nodejs -
- - pi.dev - https://www.rfc1437.de/2026/03/14/pi-dev - https://www.rfc1437.de/2026/03/14/pi-dev - Sat, 14 Mar 2026 20:38:58 GMT - hugo - de - [pi.dev](https://shittycodingagent.ai/) ist ein minimalistischer Harness für agentic coding, dessen Fokus nicht auf Features, sondern auf Erweiterbarkeit liegt. Die Grundidee ist solide:. eine sehr einfache Harness die durch Typescript-Plugins erweitert werden kann, so dass sich die Harness an den eigenen Workflow anpassen und an die eigenen Anforderungen. Werde ich mir vielleicht demnächst mal angucken.

]]>
- [pi.dev](https://shittycodingagent.ai/) ist ein minimalistischer Harness für agentic coding, dessen Fokus nicht auf Features, sondern auf Erweiterbarkeit liegt. Die Grundidee ist solide:. eine sehr einfache Harness die durch Typescript-Plugins erweitert werden kann, so dass sich die Harness an den eigenen Workflow anpassen und an die eigenen Anforderungen. Werde ich mir vielleicht demnächst mal angucken.

]]>
- aside - programmierung - vibecoding -
- - steveyegge/beads: Beads - A memory upgrade for your coding agent - https://www.rfc1437.de/2026/03/13/steveyegge-beads-beads-a-memory-upgrade-for-your-coding-agent - https://www.rfc1437.de/2026/03/13/steveyegge-beads-beads-a-memory-upgrade-for-your-coding-agent - Fri, 13 Mar 2026 16:10:34 GMT - hugo - de - [steveyegge/beads: Beads - A memory upgrade for your coding agent](https://github.com/steveyegge/beads) ist ein Todo-Listen-Tool für Agenten. Im Prinzip ein Gedächtnis für Projekte über das sich Agenten steuern können (hinterlegen von Tasks und Features) und auch komplexere Abläufe gesteuert werden können, bei denen ein Agent über eine ganze Reihe von Issues laufen muss und diese lösen muss, wo Tasks abhängigkeiten haben können und Agenten nur den Satz an Aufgaben sehen, die auch wirklich gerade angegangen werden können. Interessant für Projekte, in denen man Agenten in Loops laufen lassen will, um größere Aufgaben zu lösen.

]]>
- [steveyegge/beads: Beads - A memory upgrade for your coding agent](https://github.com/steveyegge/beads) ist ein Todo-Listen-Tool für Agenten. Im Prinzip ein Gedächtnis für Projekte über das sich Agenten steuern können (hinterlegen von Tasks und Features) und auch komplexere Abläufe gesteuert werden können, bei denen ein Agent über eine ganze Reihe von Issues laufen muss und diese lösen muss, wo Tasks abhängigkeiten haben können und Agenten nur den Satz an Aufgaben sehen, die auch wirklich gerade angegangen werden können. Interessant für Projekte, in denen man Agenten in Loops laufen lassen will, um größere Aufgaben zu lösen.

]]>
- aside - programmierung - vibecoding -
- - dolthub/doltgresql: DoltgreSQL - Version Controlled PostgreSQL - https://www.rfc1437.de/2026/03/13/dolthub-doltgresql-doltgresql-version-controlled-postgresql - https://www.rfc1437.de/2026/03/13/dolthub-doltgresql-doltgresql-version-controlled-postgresql - Fri, 13 Mar 2026 15:17:32 GMT - hugo - de - [dolthub/doltgresql: DoltgreSQL - Version Controlled PostgreSQL](https://github.com/dolthub/doltgresql) ist der PostgreSQL-flavored Partner von [dolthub/dolt: Dolt – Git for Data](/posts/dolthub-dolt-dolt-git-for-data) und bietet die gleichen Features, nur mit Anlehnung an PostgreSQL und einem Binär-Interface das zu PostgreSQL kompatibel ist.

]]>
- [dolthub/doltgresql: DoltgreSQL - Version Controlled PostgreSQL](https://github.com/dolthub/doltgresql) ist der PostgreSQL-flavored Partner von [dolthub/dolt: Dolt – Git for Data](/posts/dolthub-dolt-dolt-git-for-data) und bietet die gleichen Features, nur mit Anlehnung an PostgreSQL und einem Binär-Interface das zu PostgreSQL kompatibel ist.

]]>
- aside - programmierung - postgresql - datenbank -
- - dolthub/dolt: Dolt – Git for Data - https://www.rfc1437.de/2026/03/13/dolthub-dolt-dolt-git-for-data - https://www.rfc1437.de/2026/03/13/dolthub-dolt-dolt-git-for-data - Fri, 13 Mar 2026 15:17:25 GMT - hugo - de - [dolthub/dolt: Dolt – Git for Data](https://github.com/dolthub/dolt?tab=readme-ov-file) ist eine SQL Datenbank, die intern mit Mechanismen wie git arbeitet und dadurch Daten-Branches und Merges unterstützt und allgemein die Möglichkeit bietet, dass Daten in der Datenbank versioniert und mit History funktionieren. Und das ganze auch analog zu git erlaubt die Datenchanges über die Versionsverwaltung zu verteilen. Im Prinzip "slow transaction shipping".

]]>
- [dolthub/dolt: Dolt – Git for Data](https://github.com/dolthub/dolt?tab=readme-ov-file) ist eine SQL Datenbank, die intern mit Mechanismen wie git arbeitet und dadurch Daten-Branches und Merges unterstützt und allgemein die Möglichkeit bietet, dass Daten in der Datenbank versioniert und mit History funktionieren. Und das ganze auch analog zu git erlaubt die Datenchanges über die Versionsverwaltung zu verteilen. Im Prinzip "slow transaction shipping".

]]>
- aside - programmierung - datenbank -
- - paperclipai/paperclip: Open-source orchestration for zero-human companies - https://www.rfc1437.de/2026/03/13/paperclipai-paperclip-open-source-orchestration-for-zero-human-companies - https://www.rfc1437.de/2026/03/13/paperclipai-paperclip-open-source-orchestration-for-zero-human-companies - Fri, 13 Mar 2026 15:00:21 GMT - hugo - de - [paperclipai/paperclip: Open-source orchestration for zero-human companies](https://github.com/paperclipai/paperclip) ist ein Ansatz um Agenten zu orchestrieren und zu verwalten. Das interessante hier ist, dass es mit einer Organisation angelehnt an eine Firmenorganisation arbeitet und mit Mitteln die Kommunikation der Agenten abbildet, die eine gute Transparenz bieten könnte. Ich habe es noch nicht ausprobiert, aber neben [gastown](https://github.com/steveyegge/gastown) eines der interessanteren Projekte zu diesem Thema. Das ganze Umfeld von Agent-Orchestrierung ist alles noch recht neu, von daher ist das noch ein großes Feld an Experimenten, aber spannend zu beobachten.

]]>
- [paperclipai/paperclip: Open-source orchestration for zero-human companies](https://github.com/paperclipai/paperclip) ist ein Ansatz um Agenten zu orchestrieren und zu verwalten. Das interessante hier ist, dass es mit einer Organisation angelehnt an eine Firmenorganisation arbeitet und mit Mitteln die Kommunikation der Agenten abbildet, die eine gute Transparenz bieten könnte. Ich habe es noch nicht ausprobiert, aber neben [gastown](https://github.com/steveyegge/gastown) eines der interessanteren Projekte zu diesem Thema. Das ganze Umfeld von Agent-Orchestrierung ist alles noch recht neu, von daher ist das noch ein großes Feld an Experimenten, aber spannend zu beobachten.

]]>
- aside - programmierung - vibecoding -
- - Ghostty - https://www.rfc1437.de/2026/03/13/ghostty - https://www.rfc1437.de/2026/03/13/ghostty - Fri, 13 Mar 2026 11:38:27 GMT - [Ghostty](https://ghostty.org/) ist die Basis, auf der [cmux — Das Terminal für Multitasking](/posts/cmux-das-terminal-fur-multitasking) aufgebaut wurde. Generell ebenfalls ein sehr nettes Terminal, das auch deutlich schneller reagiert als das Standardterminal und auch schon sehr gut funktioniert. Was mir nicht gefiel, war dass Tabs nicht automatisch in den passenden Pfaden wieder neu geöffnet wurden, wenn das Programm beendet wurde. Ich habe einfach zu lange persistente Sessions, die ich immer wieder aufgreife. Das macht cmux einfach besser.

]]>
- [Ghostty](https://ghostty.org/) ist die Basis, auf der [cmux — Das Terminal für Multitasking](/posts/cmux-das-terminal-fur-multitasking) aufgebaut wurde. Generell ebenfalls ein sehr nettes Terminal, das auch deutlich schneller reagiert als das Standardterminal und auch schon sehr gut funktioniert. Was mir nicht gefiel, war dass Tabs nicht automatisch in den passenden Pfaden wieder neu geöffnet wurden, wenn das Programm beendet wurde. Ich habe einfach zu lange persistente Sessions, die ich immer wieder aufgreife. Das macht cmux einfach besser.

]]>
- aside - programmierung - sysadmin - mac-os-x -
- - cmux — Das Terminal für Multitasking - https://www.rfc1437.de/2026/03/13/cmux-das-terminal-fur-multitasking - https://www.rfc1437.de/2026/03/13/cmux-das-terminal-fur-multitasking - Fri, 13 Mar 2026 07:21:42 GMT - [cmux — Das Terminal für Multitasking](https://www.cmux.dev/de) ist ein ziemlich geniales Terminal-Programm für die gerade durch Agentic Coding wieder verstärkt kommenden CLI Workflows. Und was mich begeistert: es hat eine saubere Persistierung von offenen Workspaces in denen man dann mehrere Tabs haben kann, so dass ich meine Arbeitsumgebung nicht ständig offen lassen muss. Ich habe immer gerne diverse Verzeichnisse direkt offen, weil ich zwischen mehreren hin und her wechsel wärend der Programmierung, das läuft mit CMUX deutlich besser als mit allen anderen.

]]>
- [cmux — Das Terminal für Multitasking](https://www.cmux.dev/de) ist ein ziemlich geniales Terminal-Programm für die gerade durch Agentic Coding wieder verstärkt kommenden CLI Workflows. Und was mich begeistert: es hat eine saubere Persistierung von offenen Workspaces in denen man dann mehrere Tabs haben kann, so dass ich meine Arbeitsumgebung nicht ständig offen lassen muss. Ich habe immer gerne diverse Verzeichnisse direkt offen, weil ich zwischen mehreren hin und her wechsel wärend der Programmierung, das läuft mit CMUX deutlich besser als mit allen anderen.

]]>
- aside - programmierung - mac-os-x - sysadmin -
- - NuGet Gallery | Photino.Blazor.CustomWindow 1.3.1 - https://www.rfc1437.de/2026/03/12/nuget-gallery-photino-blazor-customwindow-1-3-1 - https://www.rfc1437.de/2026/03/12/nuget-gallery-photino-blazor-customwindow-1-3-1 - Thu, 12 Mar 2026 20:13:10 GMT - [NuGet Gallery | Photino.Blazor.CustomWindow 1.3.1](https://www.nuget.org/packages/Photino.Blazor.CustomWindow) ist eine Library für Photino Blazor, mit der man Fenster Chrome-less machen kann. Also Titelbalken und Standarddekorationen entfernen kann. Idee dahinter ist darüber mehr Kontrolle über das Look-and-Feel zu bekommen und kompaktere UIs zu schaffen. Mit dieser Library bekommt man dann Grundfunktionen zurück wie Fenstergrößenänderungen und andere Standardelemente, die Benutzer erwarten, aber unter voller Kontrolle der Anwendung.

]]>
- [NuGet Gallery | Photino.Blazor.CustomWindow 1.3.1](https://www.nuget.org/packages/Photino.Blazor.CustomWindow) ist eine Library für Photino Blazor, mit der man Fenster Chrome-less machen kann. Also Titelbalken und Standarddekorationen entfernen kann. Idee dahinter ist darüber mehr Kontrolle über das Look-and-Feel zu bekommen und kompaktere UIs zu schaffen. Mit dieser Library bekommt man dann Grundfunktionen zurück wie Fenstergrößenänderungen und andere Standardelemente, die Benutzer erwarten, aber unter voller Kontrolle der Anwendung.

]]>
- aside - programmierung - c# -
- - OpenClaw Memory Masterclass: The complete guide to agent memory that survives • VelvetShark - https://www.rfc1437.de/2026/03/07/openclaw-memory-masterclass-the-complete-guide-to-agent-memory-that-survives-velvetshark - https://www.rfc1437.de/2026/03/07/openclaw-memory-masterclass-the-complete-guide-to-agent-memory-that-survives-velvetshark - Sat, 07 Mar 2026 05:53:59 GMT - [OpenClaw Memory Masterclass: The complete guide to agent memory that survives • VelvetShark](https://velvetshark.com/openclaw-memory-masterclass) - interessante Zusammenstellung des Memory-Systems und der Fallstricke mit Compaction bei Openclaw. Der Agent ist ja dazu da, über lange Zeit zu laufen, dadurch ist aber auch immer die Gefahr, dass Compaction gerade in komplexeren Situationen mitten drin zuschlägt. Und openclaw läuft autonom, also will man sicher sein, dass es auch kontinuierlich weitergeht.

]]>
- [OpenClaw Memory Masterclass: The complete guide to agent memory that survives • VelvetShark](https://velvetshark.com/openclaw-memory-masterclass) - interessante Zusammenstellung des Memory-Systems und der Fallstricke mit Compaction bei Openclaw. Der Agent ist ja dazu da, über lange Zeit zu laufen, dadurch ist aber auch immer die Gefahr, dass Compaction gerade in komplexeren Situationen mitten drin zuschlägt. Und openclaw läuft autonom, also will man sicher sein, dass es auch kontinuierlich weitergeht.

]]>
- aside - llm - openclaw -
- - unum-cloud/USearch: Fast Open-Source Search & Clustering engine × for Vectors & Arbitrary Objects × in C++, C, Python, JavaScript, Rust, Java, Objective-C, Swift, C#, GoLang, and Wolfram 🔍 - https://www.rfc1437.de/2026/03/05/unum-cloud-usearch-fast-open-source-search-clustering-engine-x-for-vectors-arbitrary-objects-x-in-c-c-python-javascript-rust-java-objective-c-swift-c-golang-and-wolfram - https://www.rfc1437.de/2026/03/05/unum-cloud-usearch-fast-open-source-search-clustering-engine-x-for-vectors-arbitrary-objects-x-in-c-c-python-javascript-rust-java-objective-c-swift-c-golang-and-wolfram - Thu, 05 Mar 2026 21:18:44 GMT - [unum-cloud/USearch](https://github.com/unum-cloud/USearch) - drin was drauf steht. Also eine Library, die einen Index für Vektoren bietet, die z.B. aus Embedding stammen können und so semantisch ähnliche Texte finden können. Nicht Text-ähnlich, sondern semantisch, also Inhalt. Spannendes Thema, die dafür nötigen Modelle sind mit den LLMs verwandt, aber eben nicht large, sondern small - sie brauchen nicht voll zu verstehen und zu generieren, weil sie nur Vektoren erstellen, die dann gegeneinander verglichen werden können und je höher die Ähnlichkeit, desto höher die Ähnlichkeit der Texte im Thema. Cooles kleines Feature für bDS.

]]>
- [unum-cloud/USearch](https://github.com/unum-cloud/USearch) - drin was drauf steht. Also eine Library, die einen Index für Vektoren bietet, die z.B. aus Embedding stammen können und so semantisch ähnliche Texte finden können. Nicht Text-ähnlich, sondern semantisch, also Inhalt. Spannendes Thema, die dafür nötigen Modelle sind mit den LLMs verwandt, aber eben nicht large, sondern small - sie brauchen nicht voll zu verstehen und zu generieren, weil sie nur Vektoren erstellen, die dann gegeneinander verglichen werden können und je höher die Ähnlichkeit, desto höher die Ähnlichkeit der Texte im Thema. Cooles kleines Feature für bDS.

]]>
- aside - programmierung - llm -
- - waybarrios/vllm-mlx: OpenAI and Anthropic compatible server for Apple Silicon. - https://www.rfc1437.de/2026/03/02/waybarrios-vllm-mlx-openai-and-anthropic-compatible-server-for-apple-silicon - https://www.rfc1437.de/2026/03/02/waybarrios-vllm-mlx-openai-and-anthropic-compatible-server-for-apple-silicon - Mon, 02 Mar 2026 11:05:49 GMT - de - [waybarrios/vllm-mlx: OpenAI and Anthropic compatible server for Apple Silicon.](https://github.com/waybarrios/vllm-mlx) Den benutze ich, um [mlx-community/gemma-3-12b-it-4bit](/posts/mlx-community-gemma-3-12b-it-4bit-hugging-face) auf meinem MacBook Air zu betreiben. Klappt sehr gut, kleines Shell-Script zum Starten des Servers und dann bin ich autonom. Nicht so komfortabel wie Ollama, aber dafür unterstützt es perfekt Apple's MLX und nutzt damit Silicon gut aus.

]]>
- [waybarrios/vllm-mlx: OpenAI and Anthropic compatible server for Apple Silicon.](https://github.com/waybarrios/vllm-mlx) Den benutze ich, um [mlx-community/gemma-3-12b-it-4bit](/posts/mlx-community-gemma-3-12b-it-4bit-hugging-face) auf meinem MacBook Air zu betreiben. Klappt sehr gut, kleines Shell-Script zum Starten des Servers und dann bin ich autonom. Nicht so komfortabel wie Ollama, aber dafür unterstützt es perfekt Apple's MLX und nutzt damit Silicon gut aus.

]]>
- aside - llm -
- - mlx-community/gemma-3-12b-it-4bit · Hugging Face - https://www.rfc1437.de/2026/03/02/mlx-community-gemma-3-12b-it-4bit-hugging-face - https://www.rfc1437.de/2026/03/02/mlx-community-gemma-3-12b-it-4bit-hugging-face - Mon, 02 Mar 2026 11:03:41 GMT - de - [mlx-community/gemma-3-12b-it-4bit · Hugging Face](https://huggingface.co/mlx-community/gemma-3-12b-it-4bit) ist das bisher beste Modell für lokalen Betrieb, mit dem ich die Bildbetitelung und sogar lokalen Chat realisieren kann. Nicht das schnellste, da es schon recht groß ist, aber für Offline-Betrieb absolut geeignet, wenn ich mir da ein paar Mechanismen für Batchverarbeitung von Bildern etc. einfallen lasse. Das könnte gerade für Urlaubszeiten super spannend sein. Eine Bildbeschreibung liegt dann zwar bei einer Minute, aber hey, dafür keine Abhängigkeiten.

]]>
- [mlx-community/gemma-3-12b-it-4bit · Hugging Face](https://huggingface.co/mlx-community/gemma-3-12b-it-4bit) ist das bisher beste Modell für lokalen Betrieb, mit dem ich die Bildbetitelung und sogar lokalen Chat realisieren kann. Nicht das schnellste, da es schon recht groß ist, aber für Offline-Betrieb absolut geeignet, wenn ich mir da ein paar Mechanismen für Batchverarbeitung von Bildern etc. einfallen lasse. Das könnte gerade für Urlaubszeiten super spannend sein. Eine Bildbeschreibung liegt dann zwar bei einer Minute, aber hey, dafür keine Abhängigkeiten.

]]>
- aside - llm -
- - Models.dev — An open-source database of AI models - https://www.rfc1437.de/2026/03/01/models-dev-an-open-source-database-of-ai-models - https://www.rfc1437.de/2026/03/01/models-dev-an-open-source-database-of-ai-models - Sun, 01 Mar 2026 12:40:31 GMT - de - [Models.dev — An open-source database of AI models](https://models.dev/) ist eine sehr praktische Seite, die für alle möglichen Anbieter und alle möglichen LLMs Rahmenparameter liefert, inklusive sogar API Preise. Und technische Parameter wie Input/Output Tokens.

]]>
- [Models.dev — An open-source database of AI models](https://models.dev/) ist eine sehr praktische Seite, die für alle möglichen Anbieter und alle möglichen LLMs Rahmenparameter liefert, inklusive sogar API Preise. Und technische Parameter wie Input/Output Tokens.

]]>
- aside - llm -
- - Ollama - https://www.rfc1437.de/2026/03/01/ollama - https://www.rfc1437.de/2026/03/01/ollama - Sun, 01 Mar 2026 11:40:25 GMT - de - [Ollama](https://ollama.com/) - eine Runtime-Umgebung für LLMs, die es erlaubt Modelle lokal zu betreiben. Mein Lieblingsmodell zur Zeit: [qwen2.5vl:7b-q4_K_M](https://ollama.com/library/qwen2.5vl:7b-q4_K_M). Mit nur 6.6 GB Größe läuft das problemlos auf einem MacBook Air M4 und hat noch genug Speicher und Kapazität frei um Programme nebenbei laufen zu lassen. Das Modell ist im Chat erstaunlich brauchbar und vor allem hat es klasse Vision-Fähigkeiten. Ideal um für Bilder Titel, Alt-Texte oder Zusammenfassungen zu liefern, ohne dafür Geld an große Provider abzudrücken. Und ein wichtiger Baustein, um bDS wieder zurück zu full-offline zu bringen.

]]>
- [Ollama](https://ollama.com/) - eine Runtime-Umgebung für LLMs, die es erlaubt Modelle lokal zu betreiben. Mein Lieblingsmodell zur Zeit: [qwen2.5vl:7b-q4_K_M](https://ollama.com/library/qwen2.5vl:7b-q4_K_M). Mit nur 6.6 GB Größe läuft das problemlos auf einem MacBook Air M4 und hat noch genug Speicher und Kapazität frei um Programme nebenbei laufen zu lassen. Das Modell ist im Chat erstaunlich brauchbar und vor allem hat es klasse Vision-Fähigkeiten. Ideal um für Bilder Titel, Alt-Texte oder Zusammenfassungen zu liefern, ohne dafür Geld an große Provider abzudrücken. Und ein wichtiger Baustein, um bDS wieder zurück zu full-offline zu bringen.

]]>
- aside - llm - programmierung -
- - mistralai/mistral-vibe: Minimal CLI coding agent by Mistral - https://www.rfc1437.de/2026/02/28/mistralai-mistral-vibe-minimal-cli-coding-agent-by-mistral - https://www.rfc1437.de/2026/02/28/mistralai-mistral-vibe-minimal-cli-coding-agent-by-mistral - Sat, 28 Feb 2026 18:58:21 GMT - de - [mistralai/mistral-vibe: Minimal CLI coding agent by Mistral](https://github.com/mistralai/mistral-vibe) - begleitend zum [AI Studio - Mistral AI](/posts/ai-studio-mistral-ai) gibt es die Vibe-Coding Oberfläche zu Devstral auch als Open Source. Sehr nett, weil es ein gutes Paar macht. Wird definitiv bei mir etwas ausprobiert, auch wenn ich sicherlich für große Projekte dann eher zu den Boliden (Opus 4.6) greifen würde.

]]>
- [mistralai/mistral-vibe: Minimal CLI coding agent by Mistral](https://github.com/mistralai/mistral-vibe) - begleitend zum [AI Studio - Mistral AI](/posts/ai-studio-mistral-ai) gibt es die Vibe-Coding Oberfläche zu Devstral auch als Open Source. Sehr nett, weil es ein gutes Paar macht. Wird definitiv bei mir etwas ausprobiert, auch wenn ich sicherlich für große Projekte dann eher zu den Boliden (Opus 4.6) greifen würde.

]]>
- aside - vibecoding - llm - mistral -
- - AI Studio - Mistral AI - https://www.rfc1437.de/2026/02/28/ai-studio-mistral-ai - https://www.rfc1437.de/2026/02/28/ai-studio-mistral-ai - Sat, 28 Feb 2026 18:55:50 GMT - de - [AI Studio - Mistral AI](https://console.mistral.ai/home) - da in den USA ja doch wieder die Lage etwas angespannter wird, und einfach weil man immer mal gucken sollte, was außerhalb der USA passiert, hier ein Link auf eine europäische Alternative zu den großen US Betreibern. Mistral bietet mit Devstral 2 ein Coding-Modell an, das nicht nur open weights ist (also frei zu bekommen und zu betreiben, wenn man die nötige Hardware hat), sondern auch im Betrieb bei Nutzung von Mistral selber recht günstig ist. Und die Leistung liegt etwas oberhalb Claude Haiku 4.5, und zwar unterhalb Sonnet 4.5, aber nicht super weit. Also durchaus brauchbar und meine ersten Experimente waren nicht schlecht. Leider keine Vision-Fähigkeit, also für Experimente mit Bildern nicht so geeignet (und daher für mein bDS nicht ideal), aber trotzdem spannend genug um es im Auge zu behalten.

]]>
- [AI Studio - Mistral AI](https://console.mistral.ai/home) - da in den USA ja doch wieder die Lage etwas angespannter wird, und einfach weil man immer mal gucken sollte, was außerhalb der USA passiert, hier ein Link auf eine europäische Alternative zu den großen US Betreibern. Mistral bietet mit Devstral 2 ein Coding-Modell an, das nicht nur open weights ist (also frei zu bekommen und zu betreiben, wenn man die nötige Hardware hat), sondern auch im Betrieb bei Nutzung von Mistral selber recht günstig ist. Und die Leistung liegt etwas oberhalb Claude Haiku 4.5, und zwar unterhalb Sonnet 4.5, aber nicht super weit. Also durchaus brauchbar und meine ersten Experimente waren nicht schlecht. Leider keine Vision-Fähigkeit, also für Experimente mit Bildern nicht so geeignet (und daher für mein bDS nicht ideal), aber trotzdem spannend genug um es im Auge zu behalten.

]]>
- aside - vibecoding - llm - mistral -
- - ZK I Zettel 1 (1) - Niklas Luhmann-Archiv - https://www.rfc1437.de/2026/02/28/zk-i-zettel-1-1-niklas-luhmann-archiv - https://www.rfc1437.de/2026/02/28/zk-i-zettel-1-1-niklas-luhmann-archiv - Sat, 28 Feb 2026 15:35:59 GMT - de - [ZK I Zettel 1 \(1\) - Niklas Luhmann-Archiv](https://niklas-luhmann-archiv.de/bestand/zettelkasten/zettel/ZK_1_NB_1_1_V) - woher die Inspiration für mein Blog kommt, bzw. was mich immer unter der technischen Oberfläche bewegt hat.

]]>
- [ZK I Zettel 1 \(1\) - Niklas Luhmann-Archiv](https://niklas-luhmann-archiv.de/bestand/zettelkasten/zettel/ZK_1_NB_1_1_V) - woher die Inspiration für mein Blog kommt, bzw. was mich immer unter der technischen Oberfläche bewegt hat.

]]>
- aside -
- - Agent UI Standards Multiply: MCP Apps and Google’s A2UI - Richard MacManus - https://www.rfc1437.de/2026/02/28/agent-ui-standards-multiply-mcp-apps-and-google-s-a2ui-richard-macmanus - https://www.rfc1437.de/2026/02/28/agent-ui-standards-multiply-mcp-apps-and-google-s-a2ui-richard-macmanus - Sat, 28 Feb 2026 06:02:52 GMT - de - wer so wie ich gerne einen Überblick über UI-integration von LLMs haben möchte und sich fragt, wie A2UI und MCP Apps im Vergleich arbeiten und was sie bieten: [Agent UI Standards Multiply: MCP Apps and Google’s A2UI - Richard MacManus](https://ricmac.org/2025/12/19/agent-ui-standards-multiply-mcp-apps-and-googles-a2ui/) hilft. Ich habe in bDS ja A2UI implementiert, damit im internen Chat das LLM auch visuelle Aspekte nutzen kann, und das gefällt mir schon sehr gut. Aber die Idee, Teile meines UI auch in externe Agents einzubringen ist auch faszinierend. Auch wenn ich finde, dass "lokales HTML/JS in einem IFrame" irgendwie erstmal nach Hack klingt, aber vieles im LLM Umfeld gibt mir das Gefühl im Moment, einfach weil ja alles über einen normalen Text-Stream geschoben wird und man hofft, dass die LLMs sich an die Formate halten (selbst A2UI arbeitet so).

]]>
- wer so wie ich gerne einen Überblick über UI-integration von LLMs haben möchte und sich fragt, wie A2UI und MCP Apps im Vergleich arbeiten und was sie bieten: [Agent UI Standards Multiply: MCP Apps and Google’s A2UI - Richard MacManus](https://ricmac.org/2025/12/19/agent-ui-standards-multiply-mcp-apps-and-googles-a2ui/) hilft. Ich habe in bDS ja A2UI implementiert, damit im internen Chat das LLM auch visuelle Aspekte nutzen kann, und das gefällt mir schon sehr gut. Aber die Idee, Teile meines UI auch in externe Agents einzubringen ist auch faszinierend. Auch wenn ich finde, dass "lokales HTML/JS in einem IFrame" irgendwie erstmal nach Hack klingt, aber vieles im LLM Umfeld gibt mir das Gefühl im Moment, einfach weil ja alles über einen normalen Text-Stream geschoben wird und man hofft, dass die LLMs sich an die Formate halten (selbst A2UI arbeitet so).

]]>
- aside - programmierung - llm -
- - cloudflare/cobweb: COBOL to WebAssembly compiler - https://www.rfc1437.de/2026/02/27/cloudflare-cobweb-cobol-to-webassembly-compiler - https://www.rfc1437.de/2026/02/27/cloudflare-cobweb-cobol-to-webassembly-compiler - Fri, 27 Feb 2026 13:43:32 GMT - de - [cloudflare/cobweb: COBOL to WebAssembly compiler](https://github.com/cloudflare/cobweb) - ich lass das einfach mal hier liegen. Soll doch jemand anders den alten Kram wegräumen. [was soll man da auch anderes sagen](https://blog.cloudflare.com/cloudflare-workers-now-support-cobol/).

]]>
- [cloudflare/cobweb: COBOL to WebAssembly compiler](https://github.com/cloudflare/cobweb) - ich lass das einfach mal hier liegen. Soll doch jemand anders den alten Kram wegräumen. [was soll man da auch anderes sagen](https://blog.cloudflare.com/cloudflare-workers-now-support-cobol/).

]]>
- aside - programmierung -
- - Pyodide - https://www.rfc1437.de/2026/02/27/pyodide - https://www.rfc1437.de/2026/02/27/pyodide - Fri, 27 Feb 2026 13:23:39 GMT - de - [Pyodide](https://pyodide.org/en/stable/) ist so ein bisschen mein Lebensretter in bDS: ich muss nämlich gestehen, ich bin jetzt nicht wirklich super tief in TypeScript drin und hab auch eigentlich keine Lust das selber zu schreiben. Wenn die KI das macht, ist das ok, da gibt es genug Wissen auf das ein LLM zurückgreifen kann, aber ich will eigentlich nicht mich da tief einarbeiten. Und Python ist schon seit langem eine meiner favorisierten Sprachen. Und Pyodide bietet genau das: eine Portierung von CPython auf WebAssembly. Das bietet eine angenehme Sprache für Scripte und Makros, die aber auf alles zugreifen kann, was die Applikation macht und - wenn ich das mal will - auch Python Libraries ladenm kann.

]]>
- [Pyodide](https://pyodide.org/en/stable/) ist so ein bisschen mein Lebensretter in bDS: ich muss nämlich gestehen, ich bin jetzt nicht wirklich super tief in TypeScript drin und hab auch eigentlich keine Lust das selber zu schreiben. Wenn die KI das macht, ist das ok, da gibt es genug Wissen auf das ein LLM zurückgreifen kann, aber ich will eigentlich nicht mich da tief einarbeiten. Und Python ist schon seit langem eine meiner favorisierten Sprachen. Und Pyodide bietet genau das: eine Portierung von CPython auf WebAssembly. Das bietet eine angenehme Sprache für Scripte und Makros, die aber auf alles zugreifen kann, was die Applikation macht und - wenn ich das mal will - auch Python Libraries ladenm kann.

]]>
- aside - programmierung -
- - Drizzle ORM - Why Drizzle? - https://www.rfc1437.de/2026/02/27/drizzle-orm-why-drizzle - https://www.rfc1437.de/2026/02/27/drizzle-orm-why-drizzle - Fri, 27 Feb 2026 13:17:08 GMT - de - [Drizzle ORM](https://orm.drizzle.team/docs/overview) - war ein Vorschlag der KI beim Bau von bDS und hat sich sehr bewährt. Sauberer ORM für TypeScript mit einer recht netten API, die mich stark an Django erinnert. Zusätzlich saubere Abbildung von Migrations, die dann aber einfach SQL erlauben, also auch komplexere Migrationen ermöglichen. Und bisher völlig unauffällig im Betrieb. Was besonders interessant ist: da gibts eine direkte Übersetzung nach GraphQL, so dass man die objekte dann auch nach außen auf ein API legen kann, was ich mir glaube ich mal angucken sollte (bzw. mich bei der KI beschweren sollte, dass es sich das mal anguckt). Ich bin ja immer ein Fan von flexiblen Standard-Integrationen um externe Tools anzubinden.

]]>
- [Drizzle ORM](https://orm.drizzle.team/docs/overview) - war ein Vorschlag der KI beim Bau von bDS und hat sich sehr bewährt. Sauberer ORM für TypeScript mit einer recht netten API, die mich stark an Django erinnert. Zusätzlich saubere Abbildung von Migrations, die dann aber einfach SQL erlauben, also auch komplexere Migrationen ermöglichen. Und bisher völlig unauffällig im Betrieb. Was besonders interessant ist: da gibts eine direkte Übersetzung nach GraphQL, so dass man die objekte dann auch nach außen auf ein API legen kann, was ich mir glaube ich mal angucken sollte (bzw. mich bei der KI beschweren sollte, dass es sich das mal anguckt). Ich bin ja immer ein Fan von flexiblen Standard-Integrationen um externe Tools anzubinden.

]]>
- aside - programmierung -
- - A2UI - https://www.rfc1437.de/2026/02/27/a2ui - https://www.rfc1437.de/2026/02/27/a2ui - Fri, 27 Feb 2026 13:13:21 GMT - de - [A2UI](https://a2ui.org/) ist ein interessantes Projekt für ein streaming-orientiertes Protokoll für Anwendungen mit LLM Integration. Die Grundidee ist Streaming von JSON Schnipseln aus denen sich dann inkrementell das UI zusammenbaut, und das LLM hat die Kontrolle darüber, was in das UI rein wandert. Es erlaubt dem LLM mehr als nur simple textuelle Beschreibungen oder einfache Ascii-Grafiken zu produzieren und gibt auch Rückfragen des LLM eine andere Optik. Das ganze kommt von Google und wird auf einem offenen [github Projekt](https://github.com/google/A2UI) gepflegt. In bDS habe ich das ganze auch eingebaut und das hat schon was, wenn man über seine Blogposts eine Heatmap der Verteilung auf die Monate bekommen kann.

]]>
- [A2UI](https://a2ui.org/) ist ein interessantes Projekt für ein streaming-orientiertes Protokoll für Anwendungen mit LLM Integration. Die Grundidee ist Streaming von JSON Schnipseln aus denen sich dann inkrementell das UI zusammenbaut, und das LLM hat die Kontrolle darüber, was in das UI rein wandert. Es erlaubt dem LLM mehr als nur simple textuelle Beschreibungen oder einfache Ascii-Grafiken zu produzieren und gibt auch Rückfragen des LLM eine andere Optik. Das ganze kommt von Google und wird auf einem offenen [github Projekt](https://github.com/google/A2UI) gepflegt. In bDS habe ich das ganze auch eingebaut und das hat schon was, wenn man über seine Blogposts eine Heatmap der Verteilung auf die Monate bekommen kann.

]]>
- aside - programmierung -
- - Waggle Dance - https://www.rfc1437.de/2026/02/23/waggle-dance - https://www.rfc1437.de/2026/02/23/waggle-dance - Mon, 23 Feb 2026 20:20:07 GMT - de - [Waggle Dance](https://boardgamegeek.com/boardgame/158572/waggle-dance) . oldie, but goldie. Immer wieder spaßig wie dieses doch recht einfache Spiel die Leute mitnehmen kann, auch über 10 Jahren nach seiner Veröffentlichung.

]]>
- [Waggle Dance](https://boardgamegeek.com/boardgame/158572/waggle-dance) . oldie, but goldie. Immer wieder spaßig wie dieses doch recht einfache Spiel die Leute mitnehmen kann, auch über 10 Jahren nach seiner Veröffentlichung.

]]>
- aside - spielelog - spielen -
- - OpenCode | Der Open-Source AI-Coding-Agent - https://www.rfc1437.de/2026/02/22/opencode-der-open-source-ai-coding-agent - https://www.rfc1437.de/2026/02/22/opencode-der-open-source-ai-coding-agent - Sun, 22 Feb 2026 18:07:25 GMT - de - [OpenCode | Der Open-Source AI-Coding-Agent](https://opencode.ai/de) - ein open-source coding agent der so langsam Claude Code den Rang ablaufen könnte. Sehr gut in der Ausführung und vor allem Provider-agnostisch. Man kann jedes Modell anhängen, sogar ein selber lokal gehostetes mit LM Studio oder ollama. Wenn man einfach mal spielen will, kann man es auch einfach nur runterladen und loslegen, sogar ohne eine Kreditkarte zu hinterlegen (dann natürlich mit limitierten Tokens, aber für erste Experimente durchaus nutzbar. Und unabhängig von den großen Anbietern (ok, außer deren Modelle, wenn man die benutzen will - und für ernsthaftes Coding sind die leider noch notwendig). OpenCode bietet auch selber AI Modelle an, die dann abgerechnet werden, aber ein paar Modelle sind immer frei verfügbar und bieten damit durchaus ernsthaftes Experimentieren ohne Investment.

]]>
- [OpenCode | Der Open-Source AI-Coding-Agent](https://opencode.ai/de) - ein open-source coding agent der so langsam Claude Code den Rang ablaufen könnte. Sehr gut in der Ausführung und vor allem Provider-agnostisch. Man kann jedes Modell anhängen, sogar ein selber lokal gehostetes mit LM Studio oder ollama. Wenn man einfach mal spielen will, kann man es auch einfach nur runterladen und loslegen, sogar ohne eine Kreditkarte zu hinterlegen (dann natürlich mit limitierten Tokens, aber für erste Experimente durchaus nutzbar. Und unabhängig von den großen Anbietern (ok, außer deren Modelle, wenn man die benutzen will - und für ernsthaftes Coding sind die leider noch notwendig). OpenCode bietet auch selber AI Modelle an, die dann abgerechnet werden, aber ein paar Modelle sind immer frei verfügbar und bieten damit durchaus ernsthaftes Experimentieren ohne Investment.

]]>
- aside - vibecoding - programmierung -
- - Steve Yegge on Vibe Coding - https://www.rfc1437.de/2026/02/22/steve-yegge-on-vibe-coding - https://www.rfc1437.de/2026/02/22/steve-yegge-on-vibe-coding - Sun, 22 Feb 2026 14:43:25 GMT - hugo - de - Steve Yegge spricht im Interview über die Zukunft der Programmierung und die Herausforderungen des Vibe Codings. Der Autor teilt seine Erfahrungen und sieht einen Umbruch vergleichbar mit der Einführung von Hochsprachen.

]]>
- Steve Yegge spricht im Interview über die Zukunft der Programmierung und die Herausforderungen des Vibe Codings. Der Autor teilt seine Erfahrungen und sieht einen Umbruch vergleichbar mit der Einführung von Hochsprachen.

]]>
- article - programmierung - vibecoding -
- - bDS langsam benutzbar - https://www.rfc1437.de/2026/02/22/neue-software-langsam-benutzbar - https://www.rfc1437.de/2026/02/22/neue-software-langsam-benutzbar - Sun, 22 Feb 2026 12:28:19 GMT - hugo - de - So langsam macht die neue Software Spaß, alles was man für die Benutzung und Erstellung braucht ist weitestgehend vorhanden. Ein paar kleine Schönheitsfehler hat sie moch und es gibt noch das eine oder andere Feature, das ich will, aber ich kann schon alles machen, was ich wirklich als Minimum brauche. Veröffentlichen geht jetzt einfach mit einem shell script:

]]>
- So langsam macht die neue Software Spaß, alles was man für die Benutzung und Erstellung braucht ist weitestgehend vorhanden. Ein paar kleine Schönheitsfehler hat sie moch und es gibt noch das eine oder andere Feature, das ich will, aber ich kann schon alles machen, was ich wirklich als Minimum brauche. Veröffentlichen geht jetzt einfach mit einem shell script:

```bash
#!/bin/sh

cd ~/Blogs/rfc1437.de/html

rsync -rav --delete \
--exclude='thumbnails/' \
--exclude='media/' \
* git.rfc1437.de:git-server/html/

cd ..

rsync -rav --delete thumbnails/ git.rfc1437.de:git-server/html/thumbnails/
rsync -rav --exclude='*.meta' --delete media/ git.rfc1437.de:git-server/html/media/
```

Ja, das war jetzt nur um meine Source-Formatierung zu testen. Und?

]]>
- article - sysadmin -
- - Blogging Desktop Server - https://www.rfc1437.de/2026/02/16/blogging-desktop-server - https://www.rfc1437.de/2026/02/16/blogging-desktop-server - Mon, 16 Feb 2026 13:40:48 GMT - hugo - de - [Big Damn Stupid](https://git.rfc1437.de/hugo/rfc1437) - ne, Blogging Desktop Server. Im Moment mein Lieblingsprojekt an dem ich mit Vibe-Coding herumspiele und mir eine Software baue, mit der ich das Blog betreiben kann. Aber diesmal mit der klaren Perspektive, dass ich nicht wieder dem Bitrot oder der Komplexitätsspirale erliege. Simple Software mit brauchbarer Oberfläche für die Pflege der Blogbeiträge, aber die Speicherung als Markdown Files mit YAML Frontmatter um einfach stabil für die Zukunft zu sein. Das ganze dann mit sqlite für Caching und Volltextsuche und andere Komfort-Features und git für die Synchronisation der Blog-Daten, und git-lfs für die Bilder. Fühlt sich gerade richtig brauchbar an.

]]>
- [Big Damn Stupid](https://git.rfc1437.de/hugo/rfc1437) - ne, Blogging Desktop Server. Im Moment mein Lieblingsprojekt an dem ich mit Vibe-Coding herumspiele und mir eine Software baue, mit der ich das Blog betreiben kann. Aber diesmal mit der klaren Perspektive, dass ich nicht wieder dem Bitrot oder der Komplexitätsspirale erliege. Simple Software mit brauchbarer Oberfläche für die Pflege der Blogbeiträge, aber die Speicherung als Markdown Files mit YAML Frontmatter um einfach stabil für die Zukunft zu sein. Das ganze dann mit sqlite für Caching und Volltextsuche und andere Komfort-Features und git für die Synchronisation der Blog-Daten, und git-lfs für die Bilder. Fühlt sich gerade richtig brauchbar an.

]]>
- aside - programmierung - blogging - vibecoding -
- - Schotten Totten 2 - https://www.rfc1437.de/2023/08/27/schotten-totten-2-board-game-boardgamegeek - https://www.rfc1437.de/2023/08/27/schotten-totten-2-board-game-boardgamegeek - Sun, 27 Aug 2023 19:27:23 GMT - hugo - de - [Schotten Totten 2](https://boardgamegeek.com/boardgame/300930/schotten-totten-2) entwickelt sich zu einem unserer Lieblings-Spiele für zwei Spieler. Ein Remake des alten Schotten Totten (das es leider nicht mehr zu kaufen gibt unter dem Namen, nur als Battle Line, aber das eben nur auf Englisch). Im Gegensatz zum ersten Spiel jetzt asymmetrisch mit gerade genug Unterschied in der Spielweise, dass sich die beiden Seiten definitiv unterschiedlich anfühlen, aber trotzdem noch größtenteils die gleichen Sachen machen. Schnell aufgebaut, schnell gespielt und schnell weggeräumt mit genug Taktik um einen für ein paar Spiele zu fesseln. Und der Grafik-Stil ist einfach nett.

]]>
- [Schotten Totten 2](https://boardgamegeek.com/boardgame/300930/schotten-totten-2) entwickelt sich zu einem unserer Lieblings-Spiele für zwei Spieler. Ein Remake des alten Schotten Totten (das es leider nicht mehr zu kaufen gibt unter dem Namen, nur als Battle Line, aber das eben nur auf Englisch). Im Gegensatz zum ersten Spiel jetzt asymmetrisch mit gerade genug Unterschied in der Spielweise, dass sich die beiden Seiten definitiv unterschiedlich anfühlen, aber trotzdem noch größtenteils die gleichen Sachen machen. Schnell aufgebaut, schnell gespielt und schnell weggeräumt mit genug Taktik um einen für ein paar Spiele zu fesseln. Und der Grafik-Stil ist einfach nett.

]]>
- article - aside - spielelog - spielen -
- - Tak - https://www.rfc1437.de/2023/08/27/tak-board-game-boardgamegeek - https://www.rfc1437.de/2023/08/27/tak-board-game-boardgamegeek - Sun, 27 Aug 2023 19:23:47 GMT - hugo - de - [Tak](https://boardgamegeek.com/boardgame/197405/tak) ist ein ziemlich interessantes Spiel: [inspiriert aus einem Fantasy-Roman von Patrick Rothfuss](https://en.wikipedia.org/wiki/Tak_\(game\)), zum Leben erweckt als eine fiktives "klassisches" Strategiespiel. Das schöne daran: man kann es sich problemlos selber machen, wenn man will und geschickt ist. Die Regeln sind super simpel und leicht gelernt, das Spiel aber trickreich mit vielen Möglichkeiten dem Gegner Fallen zu stellen. Wird vermutlich für unseren nächsten Urlaub mitgenommen, weil praktisch zum Draussen spielen.

]]>
- [Tak](https://boardgamegeek.com/boardgame/197405/tak) ist ein ziemlich interessantes Spiel: [inspiriert aus einem Fantasy-Roman von Patrick Rothfuss](https://en.wikipedia.org/wiki/Tak_\(game\)), zum Leben erweckt als eine fiktives "klassisches" Strategiespiel. Das schöne daran: man kann es sich problemlos selber machen, wenn man will und geschickt ist. Die Regeln sind super simpel und leicht gelernt, das Spiel aber trickreich mit vielen Möglichkeiten dem Gegner Fallen zu stellen. Wird vermutlich für unseren nächsten Urlaub mitgenommen, weil praktisch zum Draussen spielen.

]]>
- article - aside - spielelog - spielen - tak -
- - In-depth tutorial: How to set up 2FA TOTP with KeepassXC, Aegis and Authy. | Linux.org - https://www.rfc1437.de/2023/08/27/in-depth-tutorial-how-to-set-up-2fa-totp-with-keepassxc-aegis-and-authy-linux-org - https://www.rfc1437.de/2023/08/27/in-depth-tutorial-how-to-set-up-2fa-totp-with-keepassxc-aegis-and-authy-linux-org - Sun, 27 Aug 2023 10:55:08 GMT - hugo - de - Weil mich Google Authenticator ärgert: [In-depth tutorial: How to set up 2FA TOTP with KeepassXC, Aegis and Authy. | Linux.org](https://www.linux.org/threads/in-depth-tutorial-how-to-set-up-2fa-totp-with-keepassxc-aegis-and-authy.36577/). Keepassxc ist deutlich netter, wie ich finde, und ist deutlich kontrollierbarer für mich.

]]>
- Weil mich Google Authenticator ärgert: [In-depth tutorial: How to set up 2FA TOTP with KeepassXC, Aegis and Authy. | Linux.org](https://www.linux.org/threads/in-depth-tutorial-how-to-set-up-2fa-totp-with-keepassxc-aegis-and-authy.36577/). Keepassxc ist deutlich netter, wie ich finde, und ist deutlich kontrollierbarer für mich.

]]>
- aside -
- - Mal wieder auf Linux ... - https://www.rfc1437.de/2023/08/19/mal-wieder-auf-linux - https://www.rfc1437.de/2023/08/19/mal-wieder-auf-linux - Sat, 19 Aug 2023 13:26:04 GMT - hugo - de - ... und natürlich tuts Surround-Sound meines Notebooks nicht mehr, aus Gründen. Und Fingerprint-Login macht weitaus weniger Sinn, wenn man nach Login dann doch das Passwort für den Keyring eingeben muss. Wenn der wenigstens erst beim ersten Bedarf nach einem Passwort käme, dann wärs ja ok, aber der geht direkt nach Login auf. Bah.

]]>
- ... und natürlich tuts Surround-Sound meines Notebooks nicht mehr, aus Gründen. Und Fingerprint-Login macht weitaus weniger Sinn, wenn man nach Login dann doch das Passwort für den Keyring eingeben muss. Wenn der wenigstens erst beim ersten Bedarf nach einem Passwort käme, dann wärs ja ok, aber der geht direkt nach Login auf. Bah.

Ansonsten bin ich allerdings angenehm überrascht davon, wie gut die Linux-Unterstützung für das Lenovo T480 ist. Alles andere funktioniert bisher tadellos.

]]>
- article - linux -
- - Autumn Leaves - https://www.rfc1437.de/2022/11/11/autumn-leaves - https://www.rfc1437.de/2022/11/11/autumn-leaves - Fri, 11 Nov 2022 12:06:46 GMT - hugo - en - ![autumn leaf against fuzzy background with other leaves and sky](media/2022/11/20221111_0177.jpg)

]]>
- ![autumn leaf against fuzzy background with other leaves and sky](media/2022/11/20221111_0177.jpg)

]]>
- picture -
- - Prime Time for Prime Slime - https://www.rfc1437.de/2022/11/06/prime-time-for-prime-slime - https://www.rfc1437.de/2022/11/06/prime-time-for-prime-slime - Sun, 06 Nov 2022 12:59:14 GMT - hugo - en - [Prime Time for Prime Slime](https://www.moxfield.com/users/rfc1437) is the second of my "reinventing the past" deck lists. It is actually my first commander precon deck - Mimeoplasm - just spiced up to 11. It kinda is funny how I stuck with the theme of the deck, transitioning it from the precon to Ooze tribal and later reanimator, then turned it into Muldrotha combo and again turned it back to Mimeoplasm, when the Prime Slime secret lair came out (I love the art style), going full on Necrotic Ooze combo this time. It is a ton of fun to play, which is why some of the old stuff from my collection made it's way into that deck. #EDH #MtG #MagicTheGathering

]]>
- [Prime Time for Prime Slime](https://www.moxfield.com/users/rfc1437) is the second of my "reinventing the past" deck lists. It is actually my first commander precon deck - Mimeoplasm - just spiced up to 11. It kinda is funny how I stuck with the theme of the deck, transitioning it from the precon to Ooze tribal and later reanimator, then turned it into Muldrotha combo and again turned it back to Mimeoplasm, when the Prime Slime secret lair came out (I love the art style), going full on Necrotic Ooze combo this time. It is a ton of fun to play, which is why some of the old stuff from my collection made it's way into that deck. #EDH #MtG #MagicTheGathering

]]>
- article - aside - edh - magicthegathering - mtg -
- - Sweet, so sweet - https://www.rfc1437.de/2022/11/05/sweet-so-sweet - https://www.rfc1437.de/2022/11/05/sweet-so-sweet - Sat, 05 Nov 2022 07:08:12 GMT - hugo - en - ![P1010853 01](media/2022/11/P1010853_01.jpg)

]]>
- ![P1010853 01](media/2022/11/P1010853_01.jpg)

]]>
- picture - photography -
- - Kaalia of the Blast - https://www.rfc1437.de/2022/11/05/kaalia-of-the-blast - https://www.rfc1437.de/2022/11/05/kaalia-of-the-blast - Sat, 05 Nov 2022 06:37:13 GMT - hugo - en - [Kaalia of the Blast](https://www.moxfield.com/decks/t4ZVxFbALUS1ciFv6s7tmQ) is one of my "lets recreate original commander" decks. The idea is to keep close to the original structure - one commander with the focus of the deck, a supporting commander that could become the main with some changes, and a big dragon in the same colors. And have the game plan of one of the originals, too. So in a way an updated Kaalia with a bit more focus and dedication, but still Angel/Dragon/Demon beatdown. #EDH #MtG

]]>
- [Kaalia of the Blast](https://www.moxfield.com/decks/t4ZVxFbALUS1ciFv6s7tmQ) is one of my "lets recreate original commander" decks. The idea is to keep close to the original structure - one commander with the focus of the deck, a supporting commander that could become the main with some changes, and a big dragon in the same colors. And have the game plan of one of the originals, too. So in a way an updated Kaalia with a bit more focus and dedication, but still Angel/Dragon/Demon beatdown. #EDH #MtG

]]>
- aside - edh - magicthegathering - mtg -
- - Abdel, Agent of the Iron Throne - https://www.rfc1437.de/2022/08/22/abdel-agent-of-the-iron-throne-commander-edh-agent-of-the-iron-throne-and-abdel-adrian-gorions-ward-deck-list-mtg-moxfield-an-mtg-deck-builder-site-for-magic-the-gathering - https://www.rfc1437.de/2022/08/22/abdel-agent-of-the-iron-throne-commander-edh-agent-of-the-iron-throne-and-abdel-adrian-gorions-ward-deck-list-mtg-moxfield-an-mtg-deck-builder-site-for-magic-the-gathering - Mon, 22 Aug 2022 06:54:04 GMT - hugo - de - [Abdel, Agent of the Iron Throne](https://www.moxfield.com/users/rfc1437) ist meine neueste high-power, near-competetive Kreation. Das Deck hat einen sehr linearen Combo Plan mit viel Redundanz in den Teilen, und vor allem sowohl Combo-Element als auch Combo-Payoff in der Command Zone. Was an Interaktion aufgrund der Farben fehlt, wird durch Resilienz ersetzt. Ich mag ja lineare Combo, weil das dem Spiel einen klaren Plan vorgibt und es zum Beispiel Mulligan-Entscheidungen deutlich einfacher macht.

]]>
- [Abdel, Agent of the Iron Throne](https://www.moxfield.com/users/rfc1437) ist meine neueste high-power, near-competetive Kreation. Das Deck hat einen sehr linearen Combo Plan mit viel Redundanz in den Teilen, und vor allem sowohl Combo-Element als auch Combo-Payoff in der Command Zone. Was an Interaktion aufgrund der Farben fehlt, wird durch Resilienz ersetzt. Ich mag ja lineare Combo, weil das dem Spiel einen klaren Plan vorgibt und es zum Beispiel Mulligan-Entscheidungen deutlich einfacher macht.

]]>
- aside - edh - magicthegathering - mtg -
- - Dargo for the Lulz - https://www.rfc1437.de/2021/01/14/dargo-for-the-lulz - https://www.rfc1437.de/2021/01/14/dargo-for-the-lulz - Thu, 14 Jan 2021 12:32:10 GMT - hugo - de - [Dargo for the Lulz](https://www.moxfield.com/decks/WO7RNg0DOkaJWTiM-cfWiQ) ist ein Deck, das mich positiv überrascht hat, wie stark es ist. Ich würde es in eine ähnliche Gegend wie Godo stellen, also durchaus cEDH viable. Zwar ist die Combo nicht alleine der Commander, aber es braucht nur eine weitere Karte (Phyrexian Altar) und es geht los, wenn noch ein paar Treasures rumliegen oder Kreaturen zum Opfern da sind. Und der Plan-B mit Beatdown funktioniert auch gut.

]]>
- [Dargo for the Lulz](https://www.moxfield.com/decks/WO7RNg0DOkaJWTiM-cfWiQ) ist ein Deck, das mich positiv überrascht hat, wie stark es ist. Ich würde es in eine ähnliche Gegend wie Godo stellen, also durchaus cEDH viable. Zwar ist die Combo nicht alleine der Commander, aber es braucht nur eine weitere Karte (Phyrexian Altar) und es geht los, wenn noch ein paar Treasures rumliegen oder Kreaturen zum Opfern da sind. Und der Plan-B mit Beatdown funktioniert auch gut.

]]>
- aside -
- - Brettspielrunde - wie macht man das in Zeiten von Corona? - https://www.rfc1437.de/2020/03/27/brettspielrunde-wie-macht-man-das-in-zeiten-von-corona - https://www.rfc1437.de/2020/03/27/brettspielrunde-wie-macht-man-das-in-zeiten-von-corona - Fri, 27 Mar 2020 18:45:02 GMT - hugo - de - Also wir haben da eine Lösung gefunden. Und es lief richtig gut - 6 Spieler waren dabei, jeder zu Hause. Bei mir war das Spiel und eine Kamerakonstruktion, um das Bild ins Internet zu stellen - und mit Microsoft Teams dann allen nach Hause zu liefern. Dazu dann Headsets und los gings, Spiel erklären, spielen, gemeinsam drüber reden - all das geht auch zu Zeiten des Social Distancing.

]]>
- Also wir haben da eine Lösung gefunden. Und es lief richtig gut - 6 Spieler waren dabei, jeder zu Hause. Bei mir war das Spiel und eine Kamerakonstruktion, um das Bild ins Internet zu stellen - und mit Microsoft Teams dann allen nach Hause zu liefern. Dazu dann Headsets und los gings, Spiel erklären, spielen, gemeinsam drüber reden - all das geht auch zu Zeiten des Social Distancing.

![IMG 20200326 181231](media/2020/03/IMG_20200326_181231.jpg)

Das Kamera-Stativ hatte ich eh schon, der kleine Schwenkarm mit Handy-Halterung kostet 35€ und das Handy - sowas hat man oft ja schon da. Dann auf dem Handy eine kleine App - "IP Webcam" - mit der die Kamera des Handy über eine Webseite erreichbar wird. Und auf dem Notebook Teams, mit dem ich das Fenster des Browsers mit allen Teilnehmern geteilt habe. Und los kanns gehen!

]]>
- article -
- - Jhoira, Scrap That! (Commander / EDH MTG Deck) - https://www.rfc1437.de/2020/03/13/jhoira-scrap-that-commander-edh-mtg-deck - https://www.rfc1437.de/2020/03/13/jhoira-scrap-that-commander-edh-mtg-deck - Fri, 13 Mar 2020 18:03:55 GMT - hugo - de - [Jhoira, Scrap That!](http://tappedout.net/mtg-decks/jhoira-scrap-that/) ist mitlerweile mein primäres Deck für cEDH und es hat sich verdammt gut bewährt bisher. Das Deck hat eigentlich immer eine Line, kann auf fast alles reagieren und hat gute Rebuild-Fähigkeiten. Durch mehrere überlappende Combos bietet es flexible Wege durch Stax oder Hate hindurch trotzdem zu gewinnen. Und selbst wenn ich nicht gewinne: das Deck hinterlässt bei den Gegnern definitiv einen bleibenden Eindruck.

]]>
- [Jhoira, Scrap That!](http://tappedout.net/mtg-decks/jhoira-scrap-that/) ist mitlerweile mein primäres Deck für cEDH und es hat sich verdammt gut bewährt bisher. Das Deck hat eigentlich immer eine Line, kann auf fast alles reagieren und hat gute Rebuild-Fähigkeiten. Durch mehrere überlappende Combos bietet es flexible Wege durch Stax oder Hate hindurch trotzdem zu gewinnen. Und selbst wenn ich nicht gewinne: das Deck hinterlässt bei den Gegnern definitiv einen bleibenden Eindruck.

]]>
- aside -
- - Rurik: Dawn of Kiev - https://www.rfc1437.de/2020/02/20/rurik-dawn-of-kiev - https://www.rfc1437.de/2020/02/20/rurik-dawn-of-kiev - Thu, 20 Feb 2020 18:05:19 GMT - hugo - de - [Rurik: Dawn of Kiev](https://boardgamegeek.com/boardgame/228328/rurik-dawn-kiev) ist ein Kickstarter-Spiel, das bei mir vor ein paar Wochen eingetrudelt ist und seit dem ein paar Mal auf dem Tisch war. Interessante Aspekte bei dem Spiel sind die Aktionswahl mit unterschiedlich bewerteten Beratern in einer eigenen Auktionsphase, in der man die Aktionsmöglichkeiten selektiert und ein bischen die Reihenfolge, in der man diese ausführt, aber wie stark die Aktion sein wird, hängt von dem Mitspielern ab. Ausgewertet werden die Aktionen erst in der zweiten Phase, in der man dann zusehen muss, mit dem was man bekommt klar zu kommen. Die Zielwertungen sind sehr nah beieinander, jeder Punkt zählt. Dazu noch sehr nettes Spielmaterial und eine praktische Sortiereinlage.

]]>
- [Rurik: Dawn of Kiev](https://boardgamegeek.com/boardgame/228328/rurik-dawn-kiev) ist ein Kickstarter-Spiel, das bei mir vor ein paar Wochen eingetrudelt ist und seit dem ein paar Mal auf dem Tisch war. Interessante Aspekte bei dem Spiel sind die Aktionswahl mit unterschiedlich bewerteten Beratern in einer eigenen Auktionsphase, in der man die Aktionsmöglichkeiten selektiert und ein bischen die Reihenfolge, in der man diese ausführt, aber wie stark die Aktion sein wird, hängt von dem Mitspielern ab. Ausgewertet werden die Aktionen erst in der zweiten Phase, in der man dann zusehen muss, mit dem was man bekommt klar zu kommen. Die Zielwertungen sind sehr nah beieinander, jeder Punkt zählt. Dazu noch sehr nettes Spielmaterial und eine praktische Sortiereinlage.

]]>
- aside - spielelog - spielen -
- - Bears on a Plane (Commander / EDH MTG Deck) - https://www.rfc1437.de/2020/02/20/bears-on-a-plane-commander-edh-mtg-deck - https://www.rfc1437.de/2020/02/20/bears-on-a-plane-commander-edh-mtg-deck - Thu, 20 Feb 2020 13:46:09 GMT - hugo - de - [Bears on a Plane](http://tappedout.net/mtg-decks/bears-on-a-plane/) ist mein Versuch ein effektives Prison-Deck in cEDH zu bauen. Erste Versuche mit dem Deck waren dementsprechend "disgusting". Kann nur sporadisch getestet werden wegen Anger-Management-Issues der Playgroup ...

]]>
- [Bears on a Plane](http://tappedout.net/mtg-decks/bears-on-a-plane/) ist mein Versuch ein effektives Prison-Deck in cEDH zu bauen. Erste Versuche mit dem Deck waren dementsprechend "disgusting". Kann nur sporadisch getestet werden wegen Anger-Management-Issues der Playgroup ...

]]>
- article - aside -
- - Tin Elves (Commander / EDH MTG Deck) - https://www.rfc1437.de/2019/11/08/tin-elves-commander-edh-mtg-deck - https://www.rfc1437.de/2019/11/08/tin-elves-commander-edh-mtg-deck - Fri, 08 Nov 2019 19:10:20 GMT - hugo - de - [Tin Elves](http://tappedout.net/mtg-decks/tin-elves/) - Blechelfen. Mein letztes Artefakt-Combo Deck für Magic the Gathering. Hat sich beim letzten Spiel super solide angefühlt. Das Deck geht hart auf Artefakte-Combos, benutzt dafür aber eine Reihe von Elementen, die auch super gut für eine Aggro-Strategie funktionieren. Wenn mir meine Combo-Teile weggeschossen werden, greife ich einfach mit einer Horder Thoptern an. Und Emry als Commander hilft mir um den Commander-Tax herum zu kommen, weil ihre Affinity-to-Artifacts Fähigkeit in diesem Deck Gold wert ist - und da sie zusätzlich auch noch ein Combo-Element ist, hat das Deck sehr gute Chancen auf Comebacks aus dem Hintertreffen. Ich werde die Liste vermutlich noch etwas stabilisieren, aber die Zusammenstellung scheint ein echter Treffer zu sein. Geht vermutlich mit nach Bologna.

]]>
- [Tin Elves](http://tappedout.net/mtg-decks/tin-elves/) - Blechelfen. Mein letztes Artefakt-Combo Deck für Magic the Gathering. Hat sich beim letzten Spiel super solide angefühlt. Das Deck geht hart auf Artefakte-Combos, benutzt dafür aber eine Reihe von Elementen, die auch super gut für eine Aggro-Strategie funktionieren. Wenn mir meine Combo-Teile weggeschossen werden, greife ich einfach mit einer Horder Thoptern an. Und Emry als Commander hilft mir um den Commander-Tax herum zu kommen, weil ihre Affinity-to-Artifacts Fähigkeit in diesem Deck Gold wert ist - und da sie zusätzlich auch noch ein Combo-Element ist, hat das Deck sehr gute Chancen auf Comebacks aus dem Hintertreffen. Ich werde die Liste vermutlich noch etwas stabilisieren, aber die Zusammenstellung scheint ein echter Treffer zu sein. Geht vermutlich mit nach Bologna.

]]>
- aside - magicthegathering - spielen -
- - Wingspan - https://www.rfc1437.de/2019/11/08/wingspan - https://www.rfc1437.de/2019/11/08/wingspan - Fri, 08 Nov 2019 18:06:27 GMT - hugo - de - [Wingspan](https://boardgamegeek.com/boardgame/266192/wingspan) ist mein diesjähriger Neuzugang aus Essen (nicht der einzige, aber der, den ich bisher gespielt hab) und ich bin sehr zufrieden, das Spiel gekauft zu haben. Ein Tableau-Builder mit Karten, bei dem die Karten die Aktionsmöglichkeiten verbessern - das fängt schon mal perfekt für mich an. Variabler Setup, geheime Ziele und hohes Combo-Potential in den Karten machts noch besser. Und die ersten Spiele mit 2 und 5 Spielern waren super spannend. Das Spiel bietet einen nette Eskalationskurve im Spiel - die Runden haben weniger und weniger Aktionen, die Aktionen selber werden aber besser und besser. Und wenn man mal eine produktive Combo trifft, fühlt sich das einfach gut an. Dazu ordentliche Verarbeitung der Materialen und ansprechende Grafik, das ist ein slam-dunk für mich.

]]>
- [Wingspan](https://boardgamegeek.com/boardgame/266192/wingspan) ist mein diesjähriger Neuzugang aus Essen (nicht der einzige, aber der, den ich bisher gespielt hab) und ich bin sehr zufrieden, das Spiel gekauft zu haben. Ein Tableau-Builder mit Karten, bei dem die Karten die Aktionsmöglichkeiten verbessern - das fängt schon mal perfekt für mich an. Variabler Setup, geheime Ziele und hohes Combo-Potential in den Karten machts noch besser. Und die ersten Spiele mit 2 und 5 Spielern waren super spannend. Das Spiel bietet einen nette Eskalationskurve im Spiel - die Runden haben weniger und weniger Aktionen, die Aktionen selber werden aber besser und besser. Und wenn man mal eine produktive Combo trifft, fühlt sich das einfach gut an. Dazu ordentliche Verarbeitung der Materialen und ansprechende Grafik, das ist ein slam-dunk für mich.

]]>
- aside - spielelog - spielen - wingspan -
- - Golos, Combo Pilgrim (Commander / EDH MTG Deck) - https://www.rfc1437.de/2019/08/20/golos-combo-pilgrim-commander-edh-mtg-deck - https://www.rfc1437.de/2019/08/20/golos-combo-pilgrim-commander-edh-mtg-deck - Tue, 20 Aug 2019 17:56:45 GMT - hugo - de - Golos is on a pilgrimage to find the most efficient combos to run in his deck - [and I am helping him](http://tappedout.net/mtg-decks/golos-combo-pilgrim/) to achieve his goal. Meine letzte Deckliste, an der ich arbeite. Wird ziemlich hart in Richtung cEDH laufen. Bei den ersten Spielen fühlte sich das schon richtig gut an, auch wenn ein bischen das explosive Combo-Feeling fehlte. Aber das ist in meiner Meta vielleicht auch gar nicht schlecht, wir spielen eher längere Spiele. Daher ist die Liste mehr auf Antworten und weniger auf T2 Combo-Win ausgelegt. Aber von dem, was die Liste macht, geht das voll in meine präferierte Richtung - nicht Suicide-Combo, sondern erstmal schauen was geht, dann zuschlagen, wenn keiner genug antworten haben kann.

]]>
- Golos is on a pilgrimage to find the most efficient combos to run in his deck - [and I am helping him](http://tappedout.net/mtg-decks/golos-combo-pilgrim/) to achieve his goal. Meine letzte Deckliste, an der ich arbeite. Wird ziemlich hart in Richtung cEDH laufen. Bei den ersten Spielen fühlte sich das schon richtig gut an, auch wenn ein bischen das explosive Combo-Feeling fehlte. Aber das ist in meiner Meta vielleicht auch gar nicht schlecht, wir spielen eher längere Spiele. Daher ist die Liste mehr auf Antworten und weniger auf T2 Combo-Win ausgelegt. Aber von dem, was die Liste macht, geht das voll in meine präferierte Richtung - nicht Suicide-Combo, sondern erstmal schauen was geht, dann zuschlagen, wenn keiner genug antworten haben kann.

]]>
- aside - cedh - magicthegathering -
- - Marvel Champions - Fantasy Flight Games - https://www.rfc1437.de/2019/08/02/marvel-champions-fantasy-flight-games - https://www.rfc1437.de/2019/08/02/marvel-champions-fantasy-flight-games - Fri, 02 Aug 2019 12:19:43 GMT - hugo - de - [Marvel Champions - Fantasy Flight Games](https://www.fantasyflightgames.com/en/news/2019/7/31/marvel-champions/) Wow, das kommt unerwartet. Es sieht stark nach einem weiteren Ableger des LOTR Systems aus, allerdings auf den ersten Blick etwas streamlined. Aber wenn das ganze trotzdem die Spieltiefe von LOTR erreicht, wärs klasse. Ich habe zwar mitlerweile eine gut laufende Magic Spielrunde, aber so für zwischendurch fand ich LOTR immer eigentlich recht spannend, da viele Spielentscheidungen (speziell der Szenario-spezifische Bau eines Decks) sehr nah an Magic ran kommen.

]]>
- [Marvel Champions - Fantasy Flight Games](https://www.fantasyflightgames.com/en/news/2019/7/31/marvel-champions/) Wow, das kommt unerwartet. Es sieht stark nach einem weiteren Ableger des LOTR Systems aus, allerdings auf den ersten Blick etwas streamlined. Aber wenn das ganze trotzdem die Spieltiefe von LOTR erreicht, wärs klasse. Ich habe zwar mitlerweile eine gut laufende Magic Spielrunde, aber so für zwischendurch fand ich LOTR immer eigentlich recht spannend, da viele Spielentscheidungen (speziell der Szenario-spezifische Bau eines Decks) sehr nah an Magic ran kommen.

]]>
- article - aside - spielen -
- - Pauper Comes to Paper | MAGIC: THE GATHERING - https://www.rfc1437.de/2019/06/28/pauper-comes-to-paper-magic-the-gathering - https://www.rfc1437.de/2019/06/28/pauper-comes-to-paper-magic-the-gathering - Fri, 28 Jun 2019 06:46:02 GMT - hugo - de - Wow, [Pauper Comes to Paper](https://magic.wizards.com/en/articles/archive/news/pauper-comes-paper-2019-06-27) - mit vereinheitlichter Legalität. Leider werden gleich zwei meiner Lieblings-Commons gebannt: Hymn to Tourach und High Tide. Schade. Aber trotzdem schön, endlich eine einheitliche Legalität für Karten zu haben.

]]>
- Wow, [Pauper Comes to Paper](https://magic.wizards.com/en/articles/archive/news/pauper-comes-paper-2019-06-27) - mit vereinheitlichter Legalität. Leider werden gleich zwei meiner Lieblings-Commons gebannt: Hymn to Tourach und High Tide. Schade. Aber trotzdem schön, endlich eine einheitliche Legalität für Karten zu haben.

]]>
- aside - magicthegathering - pauper -
- - The London Mulligan | MAGIC: THE GATHERING - https://www.rfc1437.de/2019/06/03/the-london-mulligan-magic-the-gathering - https://www.rfc1437.de/2019/06/03/the-london-mulligan-magic-the-gathering - Mon, 03 Jun 2019 15:03:37 GMT - hugo - de - Der [London Mulligan](https://magic.wizards.com/en/articles/archive/news/london-mulligan-2019-06-03) wird der offizielle Mulligan in Magic ab Core Set 2020. Klasse. Wir haben den in Commander ausprobiert und er war völlig ok. Und in Pauper wars auch gut. Klar, es gibt sicherlich ein paar Decks, die übermäßig profitieren, aber das kann man anderweitig regeln. Der neue Mulligan hilft einfach "Nicht-Spiele" aufgrund von mehrfachen schlechten Starthänden zu vermeiden. Es gibt nix nervigeres als ein Spiel im Mulligan zu verlieren, weil einfach jede Hand ohne Länder oder nur Länder war.

]]>
- Der [London Mulligan](https://magic.wizards.com/en/articles/archive/news/london-mulligan-2019-06-03) wird der offizielle Mulligan in Magic ab Core Set 2020. Klasse. Wir haben den in Commander ausprobiert und er war völlig ok. Und in Pauper wars auch gut. Klar, es gibt sicherlich ein paar Decks, die übermäßig profitieren, aber das kann man anderweitig regeln. Der neue Mulligan hilft einfach "Nicht-Spiele" aufgrund von mehrfachen schlechten Starthänden zu vermeiden. Es gibt nix nervigeres als ein Spiel im Mulligan zu verlieren, weil einfach jede Hand ohne Länder oder nur Länder war.

]]>
- article - aside - magicthegathering -
- - A Force to be Reckoned With | Article by Jim Davis - https://www.rfc1437.de/2019/05/20/a-force-to-be-reckoned-with-article-by-jim-davis - https://www.rfc1437.de/2019/05/20/a-force-to-be-reckoned-with-article-by-jim-davis - Mon, 20 May 2019 15:49:19 GMT - hugo - de - [A Force to be Reckoned With](https://www.coolstuffinc.com/a/jimdavis-05202019-a-force-to-be-reckoned-with/) - die neue Karte "Force of Vigor" hat mal eben zwei meiner Decks deutlich getroffen. Jhoira als Artefakt-Storm-Deck und Paradox Arcum als Artefakt-Kombo sind beide ziemlich abhängig von ihren Artefakten und Enchantments, so eine Karte kann die mal eben abschalten. Instant-speed. Für lau. Autsch. Wenn andere Liste stärker auf Mana-Dorks statt Mana-Rocks gehen, haben sie genug grüne Karten um den FoV aktiv zu bekommen. Und dann bin ich raus. Jhoira kann sich vielleicht noch knapp halten, Storm hat in der Regel mehrere Vektoren, aber da Artefakte nur mit Shimmer Myr instant-speed werden (und der als Artefakt angreifbar bleibt), ist Arcum wirklich hart betroffen.

]]>
- [A Force to be Reckoned With](https://www.coolstuffinc.com/a/jimdavis-05202019-a-force-to-be-reckoned-with/) - die neue Karte "Force of Vigor" hat mal eben zwei meiner Decks deutlich getroffen. Jhoira als Artefakt-Storm-Deck und Paradox Arcum als Artefakt-Kombo sind beide ziemlich abhängig von ihren Artefakten und Enchantments, so eine Karte kann die mal eben abschalten. Instant-speed. Für lau. Autsch. Wenn andere Liste stärker auf Mana-Dorks statt Mana-Rocks gehen, haben sie genug grüne Karten um den FoV aktiv zu bekommen. Und dann bin ich raus. Jhoira kann sich vielleicht noch knapp halten, Storm hat in der Regel mehrere Vektoren, aber da Artefakte nur mit Shimmer Myr instant-speed werden (und der als Artefakt angreifbar bleibt), ist Arcum wirklich hart betroffen.

]]>
- article - aside - cedh - magicthegathering -
- - May 20, 2019 Banned and Restricted Announcement | MAGIC: THE GATHERING - https://www.rfc1437.de/2019/05/20/may-20-2019-banned-and-restricted-announcement-magic-the-gathering - https://www.rfc1437.de/2019/05/20/may-20-2019-banned-and-restricted-announcement-magic-the-gathering - Mon, 20 May 2019 15:15:55 GMT - hugo - de - [May 20, 2019 Banned and Restricted Announcement](https://magic.wizards.com/en/articles/archive/news/may-20-2019-banned-and-restricted-announcement) - da hat mir Wizards of the Coast mal eben zwei meiner Decks komplett neutralisiert - Izzet Blitz braucht die kostenlosen Spells um seine Kreaturen zu pumpen oder Direktschaden zu aktivieren und Skred Delver brauchte sie um die Hand zu füllen im Mittelspiel. Autsch. Ok, in letzter Zeit hab ich meistens Tron gespielt (oder mal GB Tortex, wenn mir nach wilden Boardstates war), aber trotzdem, Skred Delver war immer noch mein Lieblingsdeck wegen seiner explosiven Comebacks.

]]>
- [May 20, 2019 Banned and Restricted Announcement](https://magic.wizards.com/en/articles/archive/news/may-20-2019-banned-and-restricted-announcement) - da hat mir Wizards of the Coast mal eben zwei meiner Decks komplett neutralisiert - Izzet Blitz braucht die kostenlosen Spells um seine Kreaturen zu pumpen oder Direktschaden zu aktivieren und Skred Delver brauchte sie um die Hand zu füllen im Mittelspiel. Autsch. Ok, in letzter Zeit hab ich meistens Tron gespielt (oder mal GB Tortex, wenn mir nach wilden Boardstates war), aber trotzdem, Skred Delver war immer noch mein Lieblingsdeck wegen seiner explosiven Comebacks.

]]>
- article - aside - magicthegathering - pauper -
-
-
\ No newline at end of file +rfc1437 (de)hunk — review-first terminal diff viewerhttps://www.rfc1437.de/2026/07/17/hunk-review-first-terminal-diff-viewer/Herdr: one terminal for the whole herdhttps://www.rfc1437.de/2026/07/17/herdr-one-terminal-for-the-whole-herd/JustVugg/colibri: Run GLM-5.2 (744B MoE) on a 25GB-RAM consumer machine — pure C, zero deps, experts streamed from disk. Tiny engine, immense model. 🐦https://www.rfc1437.de/2026/07/14/justvugg-colibri-run-glm-5-2-744b-moe-on-a-25gb-ram-consumer-machine-pure-c-zero-deps-experts-streamed-from-disk-tiny-engine-immense-model/567-labs/instructor: structured outputs for llmshttps://www.rfc1437.de/2026/07/13/567-labs-instructor-structured-outputs-for-llms/dottxt-ai/outlines: Structured Outputshttps://www.rfc1437.de/2026/07/13/dottxt-ai-outlines-structured-outputs/datalab-to/marker: Convert PDF to markdown + JSON quickly with high accuracyhttps://www.rfc1437.de/2026/07/13/datalab-to-marker-convert-pdf-to-markdown-json-quickly-with-high-accuracy/jakobdylanc/llmcord: Make Discord your LLM frontend - Supports any OpenAI compatible API (OpenRouter, Ollama and more)https://www.rfc1437.de/2026/07/06/jakobdylanc-llmcord-make-discord-your-llm-frontend-supports-any-openai-compatible-api-openrouter-ollama-and-more/Forest Shufflehttps://www.rfc1437.de/2026/07/06/forest-shuffle/LMCache – Building the foundation of AI memory tensor with KV Cache Infrastructurehttps://www.rfc1437.de/2026/07/05/lmcache-building-the-foundation-of-ai-memory-tensor-with-kv-cache-infrastructure/Supacodehttps://www.rfc1437.de/2026/06/30/supacode/deepreinforce-ai/Ornith-1.0-35B · Hugging Facehttps://www.rfc1437.de/2026/06/30/deepreinforce-ai-ornith-1-0-35b-hugging-face/DietrichGebert/ponytail: Makes your AI agent think like the laziest senior dev in the room. The best code is the code you never wrote.https://www.rfc1437.de/2026/06/21/dietrichgebert-ponytail-makes-your-ai-agent-think-like-the-laziest-senior-dev-in-the-room-the-best-code-is-the-code-you-never-wrote/AbarthJoe/Qwopus3.6-27B-v2-oQ8-mtp · Hugging Facehttps://www.rfc1437.de/2026/06/20/abarthjoe-qwopus3-6-27b-v2-oq8-mtp-hugging-face/antirez/ds4: DeepSeek 4 Flash and PRO local inference engine for Metal, CUDA and ROCmhttps://www.rfc1437.de/2026/06/18/antirez-ds4-deepseek-4-flash-and-pro-local-inference-engine-for-metal-cuda-and-rocm/oMLX — LLM inference, optimized for your Machttps://www.rfc1437.de/2026/05/30/omlx-llm-inference-optimized-for-your-mac/MTPLX — Twice as fast on MLXhttps://www.rfc1437.de/2026/05/29/mtplx-twice-as-fast-on-mlx/Home - Livebook.devhttps://www.rfc1437.de/2026/05/28/home-livebook-dev/opencodehttps://www.rfc1437.de/2026/04/27/opencode/Dicklesworthstone/pi_agent_rust: High-performance AI coding agent CLI written in Rust with zero unsafe codehttps://www.rfc1437.de/2026/04/10/dicklesworthstone-pi-agent-rust-high-performance-ai-coding-agent-cli-written-in-rust-with-zero-unsafe-code/nearai/ironclaw: IronClaw is OpenClaw inspired implementation in Rust focused on privacy and securityhttps://www.rfc1437.de/2026/04/04/nearai-ironclaw-ironclaw-is-openclaw-inspired-implementation-in-rust-focused-on-privacy-and-security/stonerl/Thaw: Menu bar manager for macOS 26https://www.rfc1437.de/2026/04/01/stonerl-thaw-menu-bar-manager-for-macos-26/Fission-AI/OpenSpec: Spec-driven development (SDD) for AI coding assistants.https://www.rfc1437.de/2026/03/29/fission-ai-openspec-spec-driven-development-sdd-for-ai-coding-assistants/juxt/allium: A language for sharpening intent alongside implementation.https://www.rfc1437.de/2026/03/27/juxt-allium-a-language-for-sharpening-intent-alongside-implementation/scitrera/cuda-containers: Scitrera builds of various CUDA containers for version consistency, starting primarily with NVIDIA DGX Spark Containershttps://www.rfc1437.de/2026/03/27/scitrera-cuda-containers-scitrera-builds-of-various-cuda-containers-for-version-consistency-starting-primarily-with-nvidia-dgx-spark-containers/thushan/olla: High-performance lightweight proxy and load balancer for LLM infrastructure. Intelligent routing, automatic failover and unified model discovery across local and remote inference backendhttps://www.rfc1437.de/2026/03/27/thushan-olla-high-performance-lightweight-proxy-and-load-balancer-for-llm-infrastructure-intelligent-routing-automatic-failover-and-unified-model-discovery-across-local-and-remote-inference-backend/Running Mistral Small 4 119B NVFP4 on NVIDIA DGX Spark (GB10) - DGX Spark / GB10 User Forum / DGX Spark / GB10 - NVIDIA Developer Forumshttps://www.rfc1437.de/2026/03/25/running-mistral-small-4-119b-nvfp4-on-nvidia-dgx-spark-gb10-dgx-spark-gb10-user-forum-dgx-spark-gb10-nvidia-developer-forums/Zed: The Fastest AI Code Editor — Zed''s Bloghttps://www.rfc1437.de/2026/03/22/zed-the-fastest-ai-code-editor-zed-s-blog/Introducing Mistral Small 4 | Mistral AIhttps://www.rfc1437.de/2026/03/22/introducing-mistral-small-4-mistral-ai/nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-NVFP4 · Hugging Facehttps://www.rfc1437.de/2026/03/22/nvidia-nvidia-nemotron-3-super-120b-a12b-nvfp4-hugging-face/WireGuard® for Enterprisehttps://www.rfc1437.de/2026/03/22/wireguard-r-for-enterprise/ASUS Ascent GX10||ASUS Deutschlandhttps://www.rfc1437.de/2026/03/22/asus-ascent-gx10-asus-deutschland/topoteretes/cognee: Knowledge Engine for AI Agent Memory in 6 lines of codehttps://www.rfc1437.de/2026/03/19/topoteretes-cognee-knowledge-engine-for-ai-agent-memory-in-6-lines-of-code/Docker Model Runner Adds vLLM Support on macOS | Dockerhttps://www.rfc1437.de/2026/03/19/docker-model-runner-adds-vllm-support-on-macos-docker/rfc1437/MLXServer: a simple MLX based server for small models to run locallyhttps://www.rfc1437.de/2026/03/18/rfc1437-mlxserver-a-simple-mlx-based-server-for-small-models-to-run-locally/Qwen3.5-9B MLX: Perfekt für MacBook Air M4https://www.rfc1437.de/2026/03/18/qwen3-5-9b-mlx-perfekt-fur-macbook-air-m4/google/gemma-3-4b-it · Hugging Facehttps://www.rfc1437.de/2026/03/16/google-gemma-3-4b-it-hugging-face/Inferencer | Run and Deeply Control Local AI Modelshttps://www.rfc1437.de/2026/03/15/inferencer-run-and-deeply-control-local-ai-models/Pagefind | Pagefind — Static low-bandwidth search at scalehttps://www.rfc1437.de/2026/03/15/pagefind-pagefind-static-low-bandwidth-search-at-scale/pi.devhttps://www.rfc1437.de/2026/03/14/pi-dev/steveyegge/beads: Beads - A memory upgrade for your coding agenthttps://www.rfc1437.de/2026/03/13/steveyegge-beads-beads-a-memory-upgrade-for-your-coding-agent/dolthub/doltgresql: DoltgreSQL - Version Controlled PostgreSQLhttps://www.rfc1437.de/2026/03/13/dolthub-doltgresql-doltgresql-version-controlled-postgresql/dolthub/dolt: Dolt – Git for Datahttps://www.rfc1437.de/2026/03/13/dolthub-dolt-dolt-git-for-data/paperclipai/paperclip: Open-source orchestration for zero-human companieshttps://www.rfc1437.de/2026/03/13/paperclipai-paperclip-open-source-orchestration-for-zero-human-companies/Ghosttyhttps://www.rfc1437.de/2026/03/13/ghostty/cmux — Das Terminal für Multitaskinghttps://www.rfc1437.de/2026/03/13/cmux-das-terminal-fur-multitasking/NuGet Gallery | Photino.Blazor.CustomWindow 1.3.1https://www.rfc1437.de/2026/03/12/nuget-gallery-photino-blazor-customwindow-1-3-1/OpenClaw Memory Masterclass: The complete guide to agent memory that survives • VelvetSharkhttps://www.rfc1437.de/2026/03/07/openclaw-memory-masterclass-the-complete-guide-to-agent-memory-that-survives-velvetshark/unum-cloud/USearch: Fast Open-Source Search & Clustering engine × for Vectors & Arbitrary Objects × in C++, C, Python, JavaScript, Rust, Java, Objective-C, Swift, C#, GoLang, and Wolfram \U0001F50Dhttps://www.rfc1437.de/2026/03/05/unum-cloud-usearch-fast-open-source-search-clustering-engine-x-for-vectors-arbitrary-objects-x-in-c-c-python-javascript-rust-java-objective-c-swift-c-golang-and-wolfram/waybarrios/vllm-mlx: OpenAI and Anthropic compatible server for Apple Silicon.https://www.rfc1437.de/2026/03/02/waybarrios-vllm-mlx-openai-and-anthropic-compatible-server-for-apple-silicon/mlx-community/gemma-3-12b-it-4bit · Hugging Facehttps://www.rfc1437.de/2026/03/02/mlx-community-gemma-3-12b-it-4bit-hugging-face/Models.dev — An open-source database of AI modelshttps://www.rfc1437.de/2026/03/01/models-dev-an-open-source-database-of-ai-models/Ollamahttps://www.rfc1437.de/2026/03/01/ollama/mistralai/mistral-vibe: Minimal CLI coding agent by Mistralhttps://www.rfc1437.de/2026/02/28/mistralai-mistral-vibe-minimal-cli-coding-agent-by-mistral/AI Studio - Mistral AIhttps://www.rfc1437.de/2026/02/28/ai-studio-mistral-ai/ZK I Zettel 1 (1) - Niklas Luhmann-Archivhttps://www.rfc1437.de/2026/02/28/zk-i-zettel-1-1-niklas-luhmann-archiv/Agent UI Standards Multiply: MCP Apps and Google’s A2UI - Richard MacManushttps://www.rfc1437.de/2026/02/28/agent-ui-standards-multiply-mcp-apps-and-google-s-a2ui-richard-macmanus/cloudflare/cobweb: COBOL to WebAssembly compilerhttps://www.rfc1437.de/2026/02/27/cloudflare-cobweb-cobol-to-webassembly-compiler/Pyodidehttps://www.rfc1437.de/2026/02/27/pyodide/Drizzle ORM - Why Drizzle?https://www.rfc1437.de/2026/02/27/drizzle-orm-why-drizzle/A2UIhttps://www.rfc1437.de/2026/02/27/a2ui/Waggle Dancehttps://www.rfc1437.de/2026/02/23/waggle-dance/OpenCode | Der Open-Source AI-Coding-Agenthttps://www.rfc1437.de/2026/02/22/opencode-der-open-source-ai-coding-agent/Steve Yegge on Vibe Codinghttps://www.rfc1437.de/2026/02/22/steve-yegge-on-vibe-coding/bDS langsam benutzbarhttps://www.rfc1437.de/2026/02/22/neue-software-langsam-benutzbar/Blogging Desktop Serverhttps://www.rfc1437.de/2026/02/16/blogging-desktop-server/Schotten Totten 2https://www.rfc1437.de/2023/08/27/schotten-totten-2-board-game-boardgamegeek/Takhttps://www.rfc1437.de/2023/08/27/tak-board-game-boardgamegeek/In-depth tutorial: How to set up 2FA TOTP with KeepassXC, Aegis and Authy. | Linux.orghttps://www.rfc1437.de/2023/08/27/in-depth-tutorial-how-to-set-up-2fa-totp-with-keepassxc-aegis-and-authy-linux-org/Mal wieder auf Linux ...https://www.rfc1437.de/2023/08/19/mal-wieder-auf-linux/Autumn Leaveshttps://www.rfc1437.de/2022/11/11/autumn-leaves/Prime Time for Prime Slimehttps://www.rfc1437.de/2022/11/06/prime-time-for-prime-slime/Sweet, so sweethttps://www.rfc1437.de/2022/11/05/sweet-so-sweet/Kaalia of the Blasthttps://www.rfc1437.de/2022/11/05/kaalia-of-the-blast/Abdel, Agent of the Iron Thronehttps://www.rfc1437.de/2022/08/22/abdel-agent-of-the-iron-throne-commander-edh-agent-of-the-iron-throne-and-abdel-adrian-gorions-ward-deck-list-mtg-moxfield-an-mtg-deck-builder-site-for-magic-the-gathering/Dargo for the Lulzhttps://www.rfc1437.de/2021/01/14/dargo-for-the-lulz/Brettspielrunde - wie macht man das in Zeiten von Corona?https://www.rfc1437.de/2020/03/27/brettspielrunde-wie-macht-man-das-in-zeiten-von-corona/Jhoira, Scrap That! (Commander / EDH MTG Deck)https://www.rfc1437.de/2020/03/13/jhoira-scrap-that-commander-edh-mtg-deck/Rurik: Dawn of Kievhttps://www.rfc1437.de/2020/02/20/rurik-dawn-of-kiev/Bears on a Plane (Commander / EDH MTG Deck)https://www.rfc1437.de/2020/02/20/bears-on-a-plane-commander-edh-mtg-deck/Tin Elves (Commander / EDH MTG Deck)https://www.rfc1437.de/2019/11/08/tin-elves-commander-edh-mtg-deck/Wingspanhttps://www.rfc1437.de/2019/11/08/wingspan/Golos, Combo Pilgrim (Commander / EDH MTG Deck)https://www.rfc1437.de/2019/08/20/golos-combo-pilgrim-commander-edh-mtg-deck/Marvel Champions - Fantasy Flight Gameshttps://www.rfc1437.de/2019/08/02/marvel-champions-fantasy-flight-games/Pauper Comes to Paper | MAGIC: THE GATHERINGhttps://www.rfc1437.de/2019/06/28/pauper-comes-to-paper-magic-the-gathering/The London Mulligan | MAGIC: THE GATHERINGhttps://www.rfc1437.de/2019/06/03/the-london-mulligan-magic-the-gathering/A Force to be Reckoned With | Article by Jim Davishttps://www.rfc1437.de/2019/05/20/a-force-to-be-reckoned-with-article-by-jim-davis/May 20, 2019 Banned and Restricted Announcement | MAGIC: THE GATHERINGhttps://www.rfc1437.de/2019/05/20/may-20-2019-banned-and-restricted-announcement-magic-the-gathering/Metaowl is gonehttps://www.rfc1437.de/2019/04/25/metaowl-is-gone/Mythic Championship II Format and the London Mulligan Testhttps://www.rfc1437.de/2019/02/22/mythic-championship-ii-format-and-the-london-mulligan-test/The Ninth World: A Skillbuilding Game for Numenerahttps://www.rfc1437.de/2018/11/14/the-ninth-world-a-skillbuilding-game-for-numenera/Too Many Bones: Undertowhttps://www.rfc1437.de/2018/11/12/too-many-bones-undertow/Petrichorhttps://www.rfc1437.de/2018/11/10/petrichor/Architects of the West Kingdomhttps://www.rfc1437.de/2018/11/08/architects-of-the-west-kingdom/Iron Curtainhttps://www.rfc1437.de/2018/08/03/iron-curtain/Ethnoshttps://www.rfc1437.de/2018/08/03/ethnos/Renegadehttps://www.rfc1437.de/2018/06/27/renegade/One Deck Dungeon: Forest of Shadowshttps://www.rfc1437.de/2018/06/13/one-deck-dungeon-forest-of-shadows/Wars of Marcus Aurelius: Rome 170-180CEhttps://www.rfc1437.de/2018/06/12/wars-of-marcus-aurelius-rome-170-180ce/Fields of Greenhttps://www.rfc1437.de/2018/06/11/fields-of-green/Innovationhttps://www.rfc1437.de/2018/05/25/innovation/'Kernel memory leaking' Intel processor design flaw forces Linux, Windows redesign • The Registerhttps://www.rfc1437.de/2018/01/03/kernel-memory-leaking-intel-processor-design-flaw-forces-linux-windows-redesign-e2-80-a2-the-register/Codenames Duethttps://www.rfc1437.de/2017/11/25/codenames-duet/Battle Linehttps://www.rfc1437.de/2017/11/24/battle-line/Viticulture Essential Editionhttps://www.rfc1437.de/2017/11/23/viticulture-essential-edition/Godforsaken Scavengershttps://www.rfc1437.de/2017/11/22/godforsaken-scavengers/Azulhttps://www.rfc1437.de/2017/11/21/azul/Triplockhttps://www.rfc1437.de/2017/11/20/triplock/Nemo's War (second edition)https://www.rfc1437.de/2017/09/11/nemos-war-second-edition-board-game-boardgamegeek/The 7th Continenthttps://www.rfc1437.de/2017/08/14/the-7th-continent-board-game-boardgamegeek/The Godfather: Corleone''s Empirehttps://www.rfc1437.de/2017/08/11/the-godfather-corleones-empire/Comanchería: The Rise and Fall of the Comanche Empirehttps://www.rfc1437.de/2017/02/06/comancheria-the-rise-and-fall-of-the-comanche-empire/Between Two Citieshttps://www.rfc1437.de/2017/01/22/between-two-cities/Conflict of Heroes: Awakening the Bear! (second edition)https://www.rfc1437.de/2017/01/15/conflict-of-heroes-awakening-the-bear-second-edition/Pentaquarkhttps://www.rfc1437.de/2017/01/09/pentaquark/The Dukehttps://www.rfc1437.de/2017/01/01/the-duke/Mound Buildershttps://www.rfc1437.de/2016/11/22/mound-builders/Warhammer Quest: The Adventure Card Gamehttps://www.rfc1437.de/2016/11/06/warhammer-quest-the-adventure-card-game-board-game-boardgamegeek/Scythehttps://www.rfc1437.de/2016/11/06/scythe/51st State: Master Sethttps://www.rfc1437.de/2016/10/30/51st-state-master-set-board-game-boardgamegeek/Codenames: Pictureshttps://www.rfc1437.de/2016/10/18/codenames-pictures-board-game-boardgamegeek/Red7https://www.rfc1437.de/2016/10/16/red7/Mare Nostrum: Empireshttps://www.rfc1437.de/2016/09/11/mare-nostrum-empires/Wöchentliche Leselistehttps://www.rfc1437.de/2016/09/11/woechentliche-leseliste-72/Wöchentliche Leselistehttps://www.rfc1437.de/2016/09/04/woechentliche-leseliste-71/7 Wondershttps://www.rfc1437.de/2016/08/28/7-wonders-board-game-boardgamegeek/Wöchentliche Leselistehttps://www.rfc1437.de/2016/08/28/woechentliche-leseliste-70/Wöchentliche Leselistehttps://www.rfc1437.de/2016/08/21/woechentliche-leseliste-69/Slobad - Self-Mill/Eggs (Competitive) (Commander / EDH MTG Deck)https://www.rfc1437.de/2016/08/19/slobad-self-milleggs-competitive-commander-edh-mtg-deck/Wöchentliche Leselistehttps://www.rfc1437.de/2016/08/07/woechentliche-leseliste-68/Deckmaster: A MTG Variant Format by Jim Bowiehttps://www.rfc1437.de/2016/08/03/deckmaster-a-mtg-variant-format-by-jim-bowie/Wöchentliche Leselistehttps://www.rfc1437.de/2016/07/31/woechentliche-leseliste-67/Ohne Furcht und Adelhttps://www.rfc1437.de/2016/07/31/ohne-furcht-und-adel-board-game-boardgamegeek/Yomi Starter Set: Grave versus Jainahttps://www.rfc1437.de/2016/07/31/yomi-starter-set-grave-versus-jaina/Wöchentliche Leselistehttps://www.rfc1437.de/2016/07/24/woechentliche-leseliste-66/Wöchentliche Leselistehttps://www.rfc1437.de/2016/07/17/woechentliche-leseliste-65/Wöchentliche Leselistehttps://www.rfc1437.de/2016/07/10/woechentliche-leseliste-64/Leaving Earthhttps://www.rfc1437.de/2016/07/03/leaving-earth/Wöchentliche Leselistehttps://www.rfc1437.de/2016/07/03/woechentliche-leseliste-63/1775: Rebellionhttps://www.rfc1437.de/2016/06/26/1775-rebellion-board-game-boardgamegeek/Night of Manhttps://www.rfc1437.de/2016/06/25/night-of-man-board-game-boardgamegeek/Reinventing The Commander 2015 “Seize Control” Pre-Con, Part 2: It Seemed So Innocent… | GeneralDamageControlhttps://www.rfc1437.de/2016/06/23/reinventing-the-commander-2015-seize-control-pre-con-part-2-it-seemed-so-innocent-generaldamagecontrol/The Gallerist Review – A Masterpiece – Wolf's Gaming Bloghttps://www.rfc1437.de/2016/06/15/the-gallerist-review-a-masterpiece-wolfs-gaming-blog/Dawn of the Zeds (Third edition)https://www.rfc1437.de/2016/06/14/dawn-of-the-zeds-third-edition/UBportshttps://www.rfc1437.de/2016/06/07/ubports/Simmons Games: Napoleon’s Triumph Sample Gamehttps://www.rfc1437.de/2016/06/06/simmons-games-napoleons-triumph-sample-game/Greenlandhttps://www.rfc1437.de/2016/06/03/greenland-board-game-boardgamegeek/1775: Rebellionhttps://www.rfc1437.de/2016/05/29/1775-rebellion/Wöchentliche Leselistehttps://www.rfc1437.de/2016/05/22/woechentliche-leseliste-62/Wöchentliche Leselistehttps://www.rfc1437.de/2016/05/08/woechentliche-leseliste-61/W1815https://www.rfc1437.de/2016/05/02/w1815-board-game-boardgamegeek/Wöchentliche Leselistehttps://www.rfc1437.de/2016/05/01/woechentliche-leseliste-60/Ohne Display: Leica M-D ist eine analoge Digitalkamera - Golem.dehttps://www.rfc1437.de/2016/04/29/ohne-display-leica-m-d-ist-eine-analoge-digitalkamera-golem-de/Wöchentliche Leselistehttps://www.rfc1437.de/2016/04/24/woechentliche-leseliste-59/USS Macon (ZRS-5) – Wikipediahttps://www.rfc1437.de/2016/04/22/uss-macon-zrs-5-wikipedia/From the Windlord’s Eyrie: Deck Tech – Wielders of the Threehttps://www.rfc1437.de/2016/04/22/from-the-windlords-eyrie-deck-tech-wielders-of-the-three/Wöchentliche Leselistehttps://www.rfc1437.de/2016/04/17/woechentliche-leseliste-58/Wöchentliche Leselistehttps://www.rfc1437.de/2016/04/10/woechentliche-leseliste-57/Wöchentliche Leselistehttps://www.rfc1437.de/2016/03/20/woechentliche-leseliste-56/Wöchentliche Leselistehttps://www.rfc1437.de/2016/03/13/woechentliche-leseliste-55/Trickerion: Legends of Illusionhttps://www.rfc1437.de/2016/03/13/trickerion-legends-of-illusion-board-game-boardgamegeek/The Castles of Burgundy: The Card Gamehttps://www.rfc1437.de/2016/03/11/the-castles-of-burgundy-the-card-game-board-game-boardgamegeek/Wöchentliche Leselistehttps://www.rfc1437.de/2016/03/06/woechentliche-leseliste-54/Imperial Settlershttps://www.rfc1437.de/2016/03/05/imperial-settlers/Wöchentliche Leselistehttps://www.rfc1437.de/2016/02/28/woechentliche-leseliste-53/Wöchentliche Leselistehttps://www.rfc1437.de/2016/02/14/woechentliche-leseliste-52/Wir sind das Volk!https://www.rfc1437.de/2016/02/08/wir-sind-das-volk/Wöchentliche Leselistehttps://www.rfc1437.de/2016/02/07/woechentliche-leseliste-51/Wöchentliche Leselistehttps://www.rfc1437.de/2016/01/31/woechentliche-leseliste-50/Hoplomachus: Originshttps://www.rfc1437.de/2016/01/31/hoplomachus-origins-board-game-boardgamegeek/Wir sind das Volk!https://www.rfc1437.de/2016/01/31/wir-sind-das-volk-board-game-boardgamegeek/zeromq/netmq: A 100% native C# implementation of ZeroMQ for .NEThttps://www.rfc1437.de/2016/01/25/zeromqnetmq-a-100-native-c-implementation-of-zeromq-for-net/Wöchentliche Leselistehttps://www.rfc1437.de/2016/01/24/woechentliche-leseliste-49/Cuba Librehttps://www.rfc1437.de/2016/01/24/cuba-libre/Sentinels of the Multiversehttps://www.rfc1437.de/2016/01/20/sentinels-of-the-multiverse-3/Hostage Negotiatorhttps://www.rfc1437.de/2016/01/15/hostage-negotiator-board-game-boardgamegeek/Soviet Dawnhttps://www.rfc1437.de/2016/01/08/soviet-dawn/Junior General Home Pagehttps://www.rfc1437.de/2016/01/04/junior-general-home-page/Wöchentliche Leselistehttps://www.rfc1437.de/2016/01/03/woechentliche-leseliste-48/Polis: Fight for the Hegemonyhttps://www.rfc1437.de/2015/12/22/polis-fight-for-the-hegemony-board-game-boardgamegeek/Die Macedonierhttps://www.rfc1437.de/2015/12/21/die-macedonier/Great Battles of History: Deluxe Alexanderhttps://www.rfc1437.de/2015/12/21/great-battles-of-history-deluxe-alexander/Wöchentliche Leselistehttps://www.rfc1437.de/2015/12/20/woechentliche-leseliste-47/Wöchentliche Leselistehttps://www.rfc1437.de/2015/11/22/woechentliche-leseliste-46/Mage Knight Board Gamehttps://www.rfc1437.de/2015/11/17/mage-knight-board-game/Wöchentliche Leselistehttps://www.rfc1437.de/2015/11/15/woechentliche-leseliste-45/7 Wonders: Duelhttps://www.rfc1437.de/2015/11/08/7-wonders-duel-board-game-boardgamegeek/Tides of Timehttps://www.rfc1437.de/2015/11/07/tides-of-time-board-game-boardgamegeek/The Lord of the Rings: The Card Gamehttps://www.rfc1437.de/2015/11/06/the-lord-of-the-rings-the-card-game-board-game-boardgamegeek-12/The Galleristhttps://www.rfc1437.de/2015/11/03/the-gallerist/The Golden Ageshttps://www.rfc1437.de/2015/11/02/the-golden-ages-board-game-boardgamegeek/Wöchentliche Leselistehttps://www.rfc1437.de/2015/11/01/woechentliche-leseliste-44/Progress: Evolution of Technologyhttps://www.rfc1437.de/2015/10/26/progress-evolution-of-technology-4/Wöchentliche Leselistehttps://www.rfc1437.de/2015/10/25/woechentliche-leseliste-43/Why Twitter’s Dying (And What You Can Learn From It) — Bad Words — Mediumhttps://www.rfc1437.de/2015/10/16/why-twitters-dying-and-what-you-can-learn-from-it-bad-words-medium/Wöchentliche Leselistehttps://www.rfc1437.de/2015/10/11/woechentliche-leseliste-42/The Lord of the Ice Gardenhttps://www.rfc1437.de/2015/10/08/the-lord-of-the-ice-garden/The Night Larry Wall Unveiled Perl 6 | 10 Zen Monkeyshttps://www.rfc1437.de/2015/10/07/the-night-larry-wall-unveiled-perl-6-10-zen-monkeys/Hero Forge Custom Miniatureshttps://www.rfc1437.de/2015/09/21/hero-forge-custom-miniatures/Jaipurhttps://www.rfc1437.de/2015/09/20/jaipur/Dungeon Dicehttps://www.rfc1437.de/2015/09/17/dungeon-dice/The Golden Ageshttps://www.rfc1437.de/2015/09/14/the-golden-ages/Progress: Evolution of Technologyhttps://www.rfc1437.de/2015/09/13/progress-evolution-of-technology-3/Wöchentliche Leselistehttps://www.rfc1437.de/2015/09/13/woechentliche-leseliste-41/Pergamonhttps://www.rfc1437.de/2015/09/07/pergamon/Wöchentliche Leselistehttps://www.rfc1437.de/2015/09/06/woechentliche-leseliste-40/Wöchentliche Leselistehttps://www.rfc1437.de/2015/08/30/woechentliche-leseliste-39/Haskell for Machttps://www.rfc1437.de/2015/08/26/haskell-for-mac/Kashgar: Händler der Seidenstraßehttps://www.rfc1437.de/2015/08/23/kashgar-haendler-der-seidenstrasse/Wöchentliche Leselistehttps://www.rfc1437.de/2015/08/16/woechentliche-leseliste-38/Wöchentliche Leselistehttps://www.rfc1437.de/2015/08/09/woechentliche-leseliste-37/Pandemic: The Curehttps://www.rfc1437.de/2015/08/07/pandemic-the-cure/Wöchentliche Leselistehttps://www.rfc1437.de/2015/08/02/woechentliche-leseliste-36/The Decktet Wikihttps://www.rfc1437.de/2015/07/31/the-decktet-wiki/The Lord of the Rings: The Card Gamehttps://www.rfc1437.de/2015/07/29/the-lord-of-the-rings-the-card-game-3/VivaJava: The Coffee Game: The Dice Gamehttps://www.rfc1437.de/2015/07/25/vivajava-the-coffee-game-the-dice-game/Cruel Necessityhttps://www.rfc1437.de/2015/07/22/cruel-necessity/San Juanhttps://www.rfc1437.de/2015/07/21/san-juan-2/Wöchentliche Leselistehttps://www.rfc1437.de/2015/07/19/woechentliche-leseliste-35/Race for the Galaxyhttps://www.rfc1437.de/2015/07/19/race-for-the-galaxy/Space Hulk: Death Angel – The Card Gamehttps://www.rfc1437.de/2015/07/14/space-hulk-death-angel-the-card-game/Progress: Evolution of Technologyhttps://www.rfc1437.de/2015/07/13/progress-evolution-of-technology-2/Koken is for sale and looking for a new home - Koken bloghttps://www.rfc1437.de/2015/07/09/koken-is-for-sale-and-looking-for-a-new-home-koken-blog/Warfighter: The Tactical Special Forces Card Gamehttps://www.rfc1437.de/2015/06/20/warfighter-the-tactical-special-forces-card-game/Wöchentliche Leselistehttps://www.rfc1437.de/2015/06/14/woechentliche-leseliste-34/Progress: Evolution of Technologyhttps://www.rfc1437.de/2015/06/07/progress-evolution-of-technology/Neulich im Internethttps://www.rfc1437.de/2015/06/05/neulich-im-internet-13/Nations: The Dice Gamehttps://www.rfc1437.de/2015/06/04/nations-the-dice-game/The Lord of the Rings: The Card Gamehttps://www.rfc1437.de/2015/05/30/the-lord-of-the-rings-the-card-game-2/Tour de Francehttps://www.rfc1437.de/2015/05/30/tour-de-france/Assault on Doomrockhttps://www.rfc1437.de/2015/05/29/assault-on-doomrock/Pathfinder Adventure Card Game: Rise of the Runelords – Base Sethttps://www.rfc1437.de/2015/05/29/pathfinder-adventure-card-game-rise-of-the-runelords-base-set/Wöchentliche Leselistehttps://www.rfc1437.de/2015/05/17/woechentliche-leseliste-33/Fridayhttps://www.rfc1437.de/2015/05/11/friday/The Lord of the Rings: The Card Gamehttps://www.rfc1437.de/2015/05/06/the-lord-of-the-rings-the-card-game/Schloss Nordkirchenhttps://www.rfc1437.de/2015/05/03/schloss-nordkirchen-2/Rieselfelderhttps://www.rfc1437.de/2015/05/01/rieselfelder-2015/Shadowrifthttps://www.rfc1437.de/2015/04/26/shadowrift-board-game-boardgamegeek/Shadow of the Elder Godshttps://www.rfc1437.de/2015/04/18/shadow-of-the-elder-gods-board-game-boardgamegeek/Lost Legacyhttps://www.rfc1437.de/2015/04/16/lost-legacy-board-game-boardgamegeek/Sentinels of the Multiversehttps://www.rfc1437.de/2015/04/14/sentinels-of-the-multiverse-board-game-boardgamegeek-6/A Call to Arms - Fantasy Flight Gameshttps://www.rfc1437.de/2015/04/14/a-call-to-arms-fantasy-flight-games/RedJak's Automated Overlord Variant | Descent: Journeys in the Dark (Second Edition) | BoardGameGeekhttps://www.rfc1437.de/2015/04/12/redjaks-automated-overlord-variant-descent-journeys-in-the-dark-second-edition-boardgamegeek/The Lord of the Rings: The Card Gamehttps://www.rfc1437.de/2015/04/12/the-lord-of-the-rings-the-card-game-board-game-boardgamegeek-11/Waggle Dancehttps://www.rfc1437.de/2015/04/11/waggle-dance-board-game-boardgamegeek-8/Paperbackhttps://www.rfc1437.de/2015/04/06/paperback-board-game-boardgamegeek-4/Paperbackhttps://www.rfc1437.de/2015/04/04/paperback-board-game-boardgamegeek-3/Paperbackhttps://www.rfc1437.de/2015/04/04/paperback-board-game-boardgamegeek-2/Die Legenden von Andor: Der Sternenschildhttps://www.rfc1437.de/2015/04/04/die-legenden-von-andor-der-sternenschild-board-game-boardgamegeek/Wöchentliche Leselistehttps://www.rfc1437.de/2015/03/29/woechentliche-leseliste-32/Why Go’s design is a disservice to intelligent programmers | Nomad Softwarehttps://www.rfc1437.de/2015/03/26/why-gos-design-is-a-disservice-to-intelligent-programmers-nomad-software/Wöchentliche Leselistehttps://www.rfc1437.de/2015/03/22/woechentliche-leseliste-31/Paperbackhttps://www.rfc1437.de/2015/03/21/paperback-board-game-boardgamegeek/Sentinels of the Multiversehttps://www.rfc1437.de/2015/03/17/sentinels-of-the-multiverse-board-game-boardgamegeek-5/Waggle Dancehttps://www.rfc1437.de/2015/03/16/waggle-dance-board-game-boardgamegeek-7/Mental Meta 2: Every Day I’m Shuffling | Dojo Of Lieshttps://www.rfc1437.de/2015/03/16/mental-meta-2-every-day-im-shuffling-dojo-of-lies/San Juanhttps://www.rfc1437.de/2015/03/15/san-juan-board-game-boardgamegeek-3/Wöchentliche Leselistehttps://www.rfc1437.de/2015/03/15/woechentliche-leseliste-30/Thunderstone Advance: Towers of Ruinhttps://www.rfc1437.de/2015/03/14/thunderstone-advance-towers-of-ruin-board-game-boardgamegeek/Race for the Galaxyhttps://www.rfc1437.de/2015/03/14/race-for-the-galaxy-board-game-boardgamegeek-4/The Lord of the Rings: The Card Gamehttps://www.rfc1437.de/2015/03/14/the-lord-of-the-rings-the-card-game-board-game-boardgamegeek-10/Race for the Galaxyhttps://www.rfc1437.de/2015/03/09/race-for-the-galaxy-board-game-boardgamegeek-3/Race for the Galaxyhttps://www.rfc1437.de/2015/03/06/race-for-the-galaxy-board-game-boardgamegeek-2/The Lord of the Rings: The Card Gamehttps://www.rfc1437.de/2015/03/03/the-lord-of-the-rings-the-card-game-board-game-boardgamegeek-9/Race for the Galaxyhttps://www.rfc1437.de/2015/03/02/race-for-the-galaxy-board-game-boardgamegeek/San Juanhttps://www.rfc1437.de/2015/03/01/san-juan-board-game-boardgamegeek-2/Wöchentliche Leselistehttps://www.rfc1437.de/2015/03/01/woechentliche-leseliste-29/Onirimhttps://www.rfc1437.de/2015/02/27/onirim-board-game-boardgamegeek/Download Free Smartwatch Faces for Moto 360, LG G Series, Samsung Gear, Sony SmartWatch 3 and Asus ZenWatch | FaceRepohttps://www.rfc1437.de/2015/02/23/download-free-smartwatch-faces-for-moto-360-lg-g-series-samsung-gear-sony-smartwatch-3-and-asus-zenwatch-facerepo/start [Watchmaker Wiki]https://www.rfc1437.de/2015/02/23/start-watchmaker-wiki/Valley of the Kingshttps://www.rfc1437.de/2015/02/22/valley-of-the-kings-board-game-boardgamegeek/The Lord of the Rings: The Card Gamehttps://www.rfc1437.de/2015/02/17/the-lord-of-the-rings-the-card-game-board-game-boardgamegeek-8/Waggle Dancehttps://www.rfc1437.de/2015/02/15/waggle-dance-board-game-boardgamegeek-6/Wöchentliche Leselistehttps://www.rfc1437.de/2015/02/15/woechentliche-leseliste-28/The Lord of the Rings: The Card Gamehttps://www.rfc1437.de/2015/02/12/the-lord-of-the-rings-the-card-game-board-game-boardgamegeek-7/The Lord of the Rings: The Card Gamehttps://www.rfc1437.de/2015/02/10/the-lord-of-the-rings-the-card-game-board-game-boardgamegeek-6/Sentinels of the Multiversehttps://www.rfc1437.de/2015/02/08/sentinels-of-the-multiverse-board-game-boardgamegeek-4/The Lord of the Rings: The Card Gamehttps://www.rfc1437.de/2015/02/08/the-lord-of-the-rings-the-card-game-board-game-boardgamegeek-5/Robinson Crusoe: Adventure on the Cursed Islandhttps://www.rfc1437.de/2015/02/08/robinson-crusoe-adventure-on-the-cursed-island-board-game-boardgamegeek/Sentinels of the Multiversehttps://www.rfc1437.de/2015/02/07/sentinels-of-the-multiverse-board-game-boardgamegeek-3/Sentinels of the Multiversehttps://www.rfc1437.de/2015/02/03/sentinels-of-the-multiverse-board-game-boardgamegeek-2/Waggle Dancehttps://www.rfc1437.de/2015/02/02/waggle-dance-board-game-boardgamegeek-5/Legends of Andorhttps://www.rfc1437.de/2015/02/02/legends-of-andor-board-game-boardgamegeek/Waggle Dancehttps://www.rfc1437.de/2015/01/31/waggle-dance-board-game-boardgamegeek-4/Gears of War: The Board Game – Custom COG Pack 1 | CelJadedhttps://www.rfc1437.de/2015/01/31/gears-of-war-the-board-game-custom-cog-pack-1-celjaded/Sentinels of the Multiversehttps://www.rfc1437.de/2015/01/31/sentinels-of-the-multiverse-board-game-boardgamegeek/One Zero Onehttps://www.rfc1437.de/2015/01/29/one-zero-one-board-game-boardgamegeek/Merkels Satz "Islam gehört zu Deutschland": De Maizière betont Pflichten für Islam | tagesschau.dehttps://www.rfc1437.de/2015/01/26/merkels-satz-islam-gehoert-zu-deutschland-de-maiziere-betont-pflichten-fuer-islam-tagesschau-de/The Lord of the Rings: The Card Gamehttps://www.rfc1437.de/2015/01/25/the-lord-of-the-rings-the-card-game-board-game-boardgamegeek-4/Elder Signhttps://www.rfc1437.de/2015/01/25/elder-sign-board-game-boardgamegeek/Forbidden Deserthttps://www.rfc1437.de/2015/01/25/forbidden-desert-board-game-boardgamegeek-2/Wöchentliche Leselistehttps://www.rfc1437.de/2015/01/25/woechentliche-leseliste-27/San Juanhttps://www.rfc1437.de/2015/01/25/san-juan-board-game-boardgamegeek/January 19, 2015, Banned and Restricted Announcement | MAGIC: THE GATHERINGhttps://www.rfc1437.de/2015/01/22/january-19-2015-banned-and-restricted-announcement-magic-the-gathering/Update on OS Support for Next Version of Lightroomhttps://www.rfc1437.de/2015/01/22/update-on-os-support-for-next-version-of-lightroom/COLOR AND LIGHT IN NATURE Homepage: Rainbows, haloes, mirages, colors in the sky & water and more!https://www.rfc1437.de/2015/01/22/color-and-light-in-nature-homepage-rainbows-haloes-mirages-colors-in-the-sky-water-and-more/The Lord of the Rings: The Card Gamehttps://www.rfc1437.de/2015/01/20/the-lord-of-the-rings-the-card-game-board-game-boardgamegeek-3/Super Fantasy - Angriff der hässlichen Schnauzenhttps://www.rfc1437.de/2015/01/20/super-fantasy-angriff-der-haesslichen-schnauzen/Waggle Dancehttps://www.rfc1437.de/2015/01/20/waggle-dance-board-game-boardgamegeek-3/Wöchentliche Leselistehttps://www.rfc1437.de/2015/01/18/woechentliche-leseliste-26/Sentinels of the Multiversehttps://www.rfc1437.de/2015/01/17/sentinels-of-the-multiverse-2/Waggle Dancehttps://www.rfc1437.de/2015/01/15/waggle-dance-board-game-boardgamegeek-2/Shadows of Brimstone: City of the Ancientshttps://www.rfc1437.de/2015/01/15/shadows-of-brimstone-city-of-the-ancients/The Lord of the Rings: The Card Gamehttps://www.rfc1437.de/2015/01/14/the-lord-of-the-rings-the-card-game-board-game-boardgamegeek-2/Nach Anschlägen in Paris: Premier Cameron will wirksame Verschlüsselung verbieten - Golem.dehttps://www.rfc1437.de/2015/01/13/nach-anschlaegen-in-paris-premier-cameron-will-wirksame-verschluesselung-verbieten-golem-de/Waggle Dancehttps://www.rfc1437.de/2015/01/12/waggle-dance-board-game-boardgamegeek/What is this all about? | Space Empires 4X - a board game by Jim Krohnhttps://www.rfc1437.de/2015/01/12/what-is-this-all-about-space-empires-4x-a-board-game-by-jim-krohn/Space Empires: 4X - Alien Players Toolhttps://www.rfc1437.de/2015/01/12/space-empires-4x-alien-players-tool/Gears of War: The Board Gamehttps://www.rfc1437.de/2015/01/11/gears-of-war-the-board-game-board-game-boardgamegeek/Wöchentliche Leselistehttps://www.rfc1437.de/2015/01/11/woechentliche-leseliste-25/Forbidden Deserthttps://www.rfc1437.de/2015/01/10/forbidden-desert-board-game-boardgamegeek/The Lord of the Rings: The Card Gamehttps://www.rfc1437.de/2015/01/09/the-lord-of-the-rings-the-card-game-board-game-boardgamegeek/xslt workbenchhttps://www.rfc1437.de/2015/01/07/xslt-workbench/sharplispers/cormanlisphttps://www.rfc1437.de/2015/01/05/sharplisperscormanlisp/Neulich im Internethttps://www.rfc1437.de/2015/01/05/neulich-im-internet-12/Galaxy Defendershttps://www.rfc1437.de/2015/01/05/galaxy-defenders/Years End on Gran Canariahttps://www.rfc1437.de/2015/01/04/years-end-on-gran-canaria/Sentinels of the Multiversehttps://www.rfc1437.de/2015/01/02/sentinels-of-the-multiverse/Ascension: Chronicle of the Godslayerhttps://www.rfc1437.de/2015/01/01/ascension-chronicle-of-the-godslayer/San Juanhttps://www.rfc1437.de/2015/01/01/san-juan/Wöchentliche Leselistehttps://www.rfc1437.de/2014/12/07/woechentliche-leseliste-24/Wöchentliche Leselistehttps://www.rfc1437.de/2014/11/30/woechentliche-leseliste-23/Wöchentliche Leselistehttps://www.rfc1437.de/2014/11/16/woechentliche-leseliste-22/Wöchentliche Leselistehttps://www.rfc1437.de/2014/11/09/woechentliche-leseliste-21/Wöchentliche Leselistehttps://www.rfc1437.de/2014/10/26/woechentliche-leseliste-20/Wöchentliche Leselistehttps://www.rfc1437.de/2014/10/19/woechentliche-leseliste-19/Wöchentliche Leselistehttps://www.rfc1437.de/2014/10/12/woechentliche-leseliste-18/magefree/magehttps://www.rfc1437.de/2014/09/22/magefreemage/Wöchentliche Leselistehttps://www.rfc1437.de/2014/08/10/woechentliche-leseliste-17/A Brief History of Wiz-War https://www.rfc1437.de/2014/07/29/a-brief-history-of-wiz-war/Wöchentliche Leselistehttps://www.rfc1437.de/2014/07/27/woechentliche-leseliste-16/Alderac Entertainment Group • View topic - [Thunderstone] Variant - Cutthroats & Sellswordshttps://www.rfc1437.de/2014/07/26/alderac-entertainment-group-e2-80-a2-view-topic-thunderstone-variant-cutthroats-sellswords/Deckmaster: A MTG Variant Format by Jim Bowie | mtgUK - UK Magic The Gathering Community and Strategyhttps://www.rfc1437.de/2014/07/22/deckmaster-a-mtg-variant-format-by-jim-bowie-mtguk-uk-magic-the-gathering-community-and-strategy/Roadtrip through Sloveniahttps://www.rfc1437.de/2014/07/22/roadtrip-through-slovenia/Wöchentliche Leselistehttps://www.rfc1437.de/2014/06/29/woechentliche-leseliste-15/Schloss Corveyhttps://www.rfc1437.de/2014/06/22/schloss-corvey/Wöchentliche Leselistehttps://www.rfc1437.de/2014/06/22/woechentliche-leseliste-14/Wöchentliche Leselistehttps://www.rfc1437.de/2014/06/15/woechentliche-leseliste-13/Wöchentliche Leselistehttps://www.rfc1437.de/2014/06/08/woechentliche-leseliste-12/End-to-End: Google will mit Javascript verschlüsseln - Golem.dehttps://www.rfc1437.de/2014/06/04/end-to-end-google-will-mit-javascript-verschluesseln-golem-de/Getting started in legacy- Legacy on a Budget - Legacy Type 1.5 - The Game - MTG Salvation Forums - MTG Salvationhttps://www.rfc1437.de/2014/06/04/getting-started-in-legacy-legacy-on-a-budget-legacy-type-1-5-the-game-mtg-salvation-forums-mtg-salvation/Micro Python - Python for microcontrollershttps://www.rfc1437.de/2014/06/03/micro-python-python-for-microcontrollers/High Fidelityhttps://www.rfc1437.de/2014/06/03/high-fidelity/JetDrive™ 500/520/720-Willkommen auf der Transcend Webseitehttps://www.rfc1437.de/2014/06/03/jetdrive-500520720-willkommen-auf-der-transcend-webseite/Warhammer Diskwars Deutschhttps://www.rfc1437.de/2014/06/02/warhammer-diskwars-deutsch/Wöchentliche Leselistehttps://www.rfc1437.de/2014/06/01/woechentliche-leseliste-11/EU-Chefposten: Parlament will Juncker, Cameron will ihn nicht | tagesschau.dehttps://www.rfc1437.de/2014/05/28/eu-chefposten-parlament-will-juncker-cameron-will-ihn-nicht-tagesschau-de/Generalbundesanwalt: Kein Ermittlungsverfahren in Deutschland zur NSA-Überwachung - Golem.dehttps://www.rfc1437.de/2014/05/28/generalbundesanwalt-kein-ermittlungsverfahren-in-deutschland-zur-nsa-ueberwachung-golem-de/Wöchentliche Leselistehttps://www.rfc1437.de/2014/05/25/woechentliche-leseliste-10/click - command line miniframeworkhttps://www.rfc1437.de/2014/05/22/click-command-line-miniframework/Wöchentliche Leselistehttps://www.rfc1437.de/2014/05/18/woechentliche-leseliste-9/Leiden - Hugos House of Photo Horrorhttps://www.rfc1437.de/2014/05/10/leiden-hugos-house-of-photo-horror/Wöchentliche Leselistehttps://www.rfc1437.de/2014/05/04/woechentliche-leseliste-8/Wöchentliche Leselistehttps://www.rfc1437.de/2014/04/28/woechentliche-leseliste-7/Tails - Über Tailshttps://www.rfc1437.de/2014/04/22/tails-ueber-tails/Wöchentliche Leselistehttps://www.rfc1437.de/2014/04/15/woechentliche-leseliste-6/Schleuse, Dyckburg und Handorfhttps://www.rfc1437.de/2014/04/13/schleuse-dyckburg-und-handorf/Marktbesuchhttps://www.rfc1437.de/2014/04/13/marktbesuch/Neulich im Internethttps://www.rfc1437.de/2014/04/04/neulich-im-internet-11/.NET Compiler Platform "Roslyn" - Documentationhttps://www.rfc1437.de/2014/04/04/net-compiler-platform-roslyn-documentation/2.0 Series — IPython 2.0.0 documentationhttps://www.rfc1437.de/2014/04/02/2-0-series-ipython-2-0-0-documentation/reclaim hugo | Collected stuff from social networkshttps://www.rfc1437.de/2014/03/20/reclaim-hugo-collected-stuff-from-social-networks/TheKolWikihttps://www.rfc1437.de/2014/03/12/thekolwiki/The Kingdom of Loathinghttps://www.rfc1437.de/2014/03/11/the-kingdom-of-loathing/Britischer Geheimdienst: #GCHQ #stasi #zersetzung - Golem.dehttps://www.rfc1437.de/2014/02/26/britischer-geheimdienst-gchq-stasi-zersetzung-golem-de/OpenBuilds OX CNC Machine | OpenBuildshttps://www.rfc1437.de/2014/02/26/openbuilds-ox-cnc-machine-openbuilds/Microsoft öffnet .NET-Quellcode - Pro-Linuxhttps://www.rfc1437.de/2014/02/26/microsoft-oeffnet-net-quellcode-pro-linux/MTG Deckbuilder / Cheeky_Hustler Decklinghttps://www.rfc1437.de/2014/02/25/mtg-deckbuilder-cheeky-hustler-deckling/Welcome to RISC OS Pi in Documentationhttps://www.rfc1437.de/2014/01/31/welcome-to-risc-os-pi-in-documentation/The Julia Languagehttps://www.rfc1437.de/2014/01/27/the-julia-language/Wöchentliche Leselistehttps://www.rfc1437.de/2014/01/24/woechentliche-leseliste-5/Wöchentliche Leselistehttps://www.rfc1437.de/2014/01/16/woechentliche-leseliste-4/kachayev/fn.py · GitHubhttps://www.rfc1437.de/2014/01/16/kachayevfn-py-c2-b7-github/OpenCamerahttps://www.rfc1437.de/2014/01/16/opencamera/Will You Fight the Hand that Feeds? : Daily MTG : Magic: The Gatheringhttps://www.rfc1437.de/2014/01/16/will-you-fight-the-hand-that-feeds-daily-mtg-magic-the-gathering/Mogis, God of Slaughter by Jarvis Yu | GatheringMagic.com - Magic: The Gathering Websitehttps://www.rfc1437.de/2014/01/14/mogis-god-of-slaughter-by-jarvis-yu-gatheringmagic-com-magic-the-gathering-website/Port 32764: Cisco bestätigt Backdoor in Routern - Golem.dehttps://www.rfc1437.de/2014/01/14/port-32764-cisco-bestaetigt-backdoor-in-routern-golem-de/Google will Hausgeräte-Markt erobern | tagesschau.dehttps://www.rfc1437.de/2014/01/14/google-will-hausgeraete-markt-erobern-tagesschau-de/TeleHash / JSON + UDP + DHT = Freedomhttps://www.rfc1437.de/2014/01/14/telehash-json-udp-dht-freedom/Self Mallard 4.5.0 released | Selfhttps://www.rfc1437.de/2014/01/13/self-mallard-4-5-0-released-self/Ori File Systemhttps://www.rfc1437.de/2014/01/07/ori-file-system/Magic for Funhttps://www.rfc1437.de/2014/01/06/magic-for-fun/COMMIE BOX MTG: Magic the Gathering formathttps://www.rfc1437.de/2014/01/04/commie-box-mtg-magic-the-gathering-format/The Stack and Backhttps://www.rfc1437.de/2014/01/03/the-stack-and-back/Hiltenfingen und Landsberghttps://www.rfc1437.de/2013/12/24/hiltenfingen-und-landsberg/Un peu de math...: Installing and using Sage just got even easier.https://www.rfc1437.de/2013/12/19/un-peu-de-math-installing-and-using-sage-just-got-even-easier/Hands on Sailfish OS: Intelligenter Baukasten zum Basteln und Portieren - Golem.dehttps://www.rfc1437.de/2013/12/18/hands-on-sailfish-os-intelligenter-baukasten-zum-basteln-und-portieren-golem-de/WordPress › WordPress 3.8 “Parker”https://www.rfc1437.de/2013/12/13/wordpress-wordpress-3-8-parker/Plug-ins for Adobe Photoshop Lightroom | Adobe Labshttps://www.rfc1437.de/2013/12/13/plug-ins-for-adobe-photoshop-lightroom-adobe-labs-2/Urlaub auf Madeirahttps://www.rfc1437.de/2013/12/09/madeira-urlaub/Aussen Hui, innen Pfuihttps://www.rfc1437.de/2013/12/09/aussen-hui-innen-pfui/Bublcam: 360º Camera Technology for Everyone by Bubl Technology Inc. — Kickstarterhttps://www.rfc1437.de/2013/11/11/bublcam-360o-camera-technology-for-everyone-by-bubl-technology-inc-kickstarter/Fishing in Modern: Top 64 at Grand Prix Antwerp by Raphael Levy - Magic the Gathering TCG Articlehttps://www.rfc1437.de/2013/11/06/fishing-in-modern-top-64-at-grand-prix-antwerp-by-raphael-levy-magic-the-gathering-tcg-article/Sony A7R Hands-Onhttps://www.rfc1437.de/2013/10/17/sony-a7r-hands-on/Google Apps Script — Google Developershttps://www.rfc1437.de/2013/10/17/google-apps-script-google-developers/Roundcube - Free and Open Source Webmail Softwarehttps://www.rfc1437.de/2013/10/15/roundcube-free-and-open-source-webmail-software/Drawing Attention : Daily MTG : Magic: The Gatheringhttps://www.rfc1437.de/2013/10/14/drawing-attention-daily-mtg-magic-the-gathering/Scala Implicits - Not to be fearedhttps://www.rfc1437.de/2013/10/11/scala-implicits-not-to-be-feared/lihaoyi/macropyhttps://www.rfc1437.de/2013/09/24/lihaoyimacropy/Tokens zum Ausdruckenhttps://www.rfc1437.de/2013/09/23/tokens-zum-ausdrucken/Welcome | Magic Set Editorhttps://www.rfc1437.de/2013/09/23/welcome-magic-set-editor/Magic Plugin for LackeyCCGhttps://www.rfc1437.de/2013/09/21/magic-plugin-for-lackeyccg/LackeyCCG - Play any CCG Online, or make your own. Mac or PC.https://www.rfc1437.de/2013/09/21/lackeyccg-play-any-ccg-online-or-make-your-own-mac-or-pc/Zim - a desktop wikihttps://www.rfc1437.de/2013/09/19/zim-a-desktop-wiki/FriCAS - an advanced CAShttps://www.rfc1437.de/2013/09/18/fricas-an-advanced-cas/Python Data Analysis Library — pandas: Python Data Analysis Libraryhttps://www.rfc1437.de/2013/09/18/python-data-analysis-library-pandas-python-data-analysis-library/Neulich im Internethttps://www.rfc1437.de/2013/09/17/neulich-im-internet-10/Neulich im Internet (Schwarzweiß-Ausgabe)https://www.rfc1437.de/2013/09/17/neulich-im-internet-schwarzweiss-ausgabe/Bundesregierung: "Datenschützer nicht für NSA-Skandal zuständig" - Golem.dehttps://www.rfc1437.de/2013/09/12/bundesregierung-datenschuetzer-nicht-fuer-nsa-skandal-zustaendig-golem-de/Freebasehttps://www.rfc1437.de/2013/09/11/freebase/wiki.dbpedia.org : Abouthttps://www.rfc1437.de/2013/09/11/wiki-dbpedia-org-about/Quepy: A Python framework to transform natural language questions to queries.https://www.rfc1437.de/2013/09/11/quepy-a-python-framework-to-transform-natural-language-questions-to-queries/Tweak Mode for Processinghttps://www.rfc1437.de/2013/09/11/tweak-mode-for-processing/You are Missing the Point of Promiseshttps://www.rfc1437.de/2013/09/02/youre-missing-the-point-of-promises/part-cw/lambdanativehttps://www.rfc1437.de/2013/08/30/part-cwlambdanative/[Gcl-devel] GCL 2.6.8 and 2.6.9 are releasedhttps://www.rfc1437.de/2013/08/30/gcl-devel-gcl-2-6-8-and-2-6-9-are-released/Anacondahttps://www.rfc1437.de/2013/08/28/anaconda/Meet RegExpBuilder: Verbal Expressions rich, older cousin - The Changeloghttps://www.rfc1437.de/2013/08/28/meet-regexpbuilder-verbal-expressions-rich-older-cousin-the-changelog/Trusted Computing: Bundesregierung warnt vor Windows 8 - Digitale Welt - Technologie - Wirtschaftswochehttps://www.rfc1437.de/2013/08/28/trusted-computing-bundesregierung-warnt-vor-windows-8-digitale-welt-technologie-wirtschaftswoche/Wöchentliche Leselistehttps://www.rfc1437.de/2013/08/26/woechentliche-leseliste-3/PyPy.js Update: A Proof-of-Concept JIThttps://www.rfc1437.de/2013/08/19/pypy-js-update-a-proof-of-concept-jit/How To Create Your Own Chrome Extensionshttps://www.rfc1437.de/2013/08/19/how-to-create-your-own-chrome-extensions/Wöchentliche Leselistehttps://www.rfc1437.de/2013/08/19/woechentliche-leseliste-2/Schneier on Security: NSA Surveillance and Mission Creephttps://www.rfc1437.de/2013/08/07/schneier-on-security-nsa-surveillance-and-mission-creep/Wöchentliche Leselistehttps://www.rfc1437.de/2013/08/06/woechentliche-leseliste/Forge - Slightly Magichttps://www.rfc1437.de/2013/08/04/forge-slightly-magic/Wöchentliche Leselistehttps://www.rfc1437.de/2013/07/29/wochentliche-leseliste-9/Pornwall: Britischer Pornofilter blockt auch andere Inhalte - Golem.dehttps://www.rfc1437.de/2013/07/29/pornwall-britischer-pornofilter-blockt-auch-andere-inhalte-golem-de/Verfassungsschutz-Chef: Keine Hinweise auf Spähaktionen | tagesschau.dehttps://www.rfc1437.de/2013/07/29/verfassungsschutz-chef-keine-hinweise-auf-spahaktionen-tagesschau-de/heuermh/leap-motion-processinghttps://www.rfc1437.de/2013/07/23/heuermhleap-motion-processing/mrzl/LeapMotionP5https://www.rfc1437.de/2013/07/23/mrzlleapmotionp5/Wöchentliche Leselistehttps://www.rfc1437.de/2013/07/22/wochentliche-leseliste-8/Wöchentliche Leselistehttps://www.rfc1437.de/2013/07/02/wochentliche-leseliste-7/Wöchentliche Leselistehttps://www.rfc1437.de/2013/07/02/wochentliche-leseliste-6/washort/parsleyhttps://www.rfc1437.de/2013/07/01/washortparsley/Neulich im Internet (Schwarzweiß-Ausgabe)https://www.rfc1437.de/2013/06/23/neulich-im-internet-schwarzweis-ausgabe-10/Neulich im Internethttps://www.rfc1437.de/2013/06/23/neulich-im-internet-9/Visiting Santorini - Hugos House of Photo Horrorhttps://www.rfc1437.de/2013/06/23/visiting-santorini-hugos-house-of-photo-horror/Review: The 2013 Ricoh GR digital V – Ming Thein | Photographerhttps://www.rfc1437.de/2013/05/31/review-the-2013-ricoh-gr-digital-v-ming-thein-photographer/lihaoyi/macropy · GitHubhttps://www.rfc1437.de/2013/05/17/lihaoyimacropy-c2-b7-github/Getting Started with Android Studio | Android Developershttps://www.rfc1437.de/2013/05/16/getting-started-with-android-studio-android-developers/Updated Contribhttps://www.rfc1437.de/2013/05/15/updated-contrib/Wöchentliche Leselistehttps://www.rfc1437.de/2013/05/06/wochentliche-leseliste-5/davazp/jscl · GitHubhttps://www.rfc1437.de/2013/04/29/davazpjscl-c2-b7-github/Wöchentliche Leselistehttps://www.rfc1437.de/2013/04/29/wochentliche-leseliste-4/Wöchentliche Leselistehttps://www.rfc1437.de/2013/04/23/wochentliche-leseliste-3/Chathead Basics « Piwaï.infohttps://www.rfc1437.de/2013/04/18/chathead-basics-piwai-info/Wöchentliche Leselistehttps://www.rfc1437.de/2013/04/14/wochentliche-leseliste-2/3D Printing with Nylon 618 filament in Tie-Dye colourshttps://www.rfc1437.de/2013/04/12/3d-printing-with-nylon-618-filament-in-tie-dye-colours/LiveCode Community Edition Overview | RunRevhttps://www.rfc1437.de/2013/04/11/livecode-community-edition-overview-runrev/Tutorial · alexander-yakushev/lein-droid Wikihttps://www.rfc1437.de/2013/04/11/tutorial-c2-b7-alexander-yakushevlein-droid-wiki/Wöchentliche Leselistehttps://www.rfc1437.de/2013/04/08/wochentliche-leseliste/Tiny Tiny RSS-Tutorial – Teil 1: Installation & Konfiguration › Michael Sonntaghttps://www.rfc1437.de/2013/04/02/tiny-tiny-rss-tutorial-teil-1-installation-konfiguration-michael-sonntag/Tiny Tiny RSShttps://www.rfc1437.de/2013/04/02/tiny-tiny-rss/Black and White - Hugos House of Photo Horrorhttps://www.rfc1437.de/2013/03/30/black-and-white-hugos-house-of-photo-horror/Jeffrey’s “Export to Google Drive” Lightroom Pluginhttps://www.rfc1437.de/2013/03/27/jeffreys-export-to-google-drive-lightroom-plugin/twotoasters/AndrOAuth · GitHubhttps://www.rfc1437.de/2013/03/26/twotoastersandroauth-c2-b7-github/Sim-on-a-Stickhttps://www.rfc1437.de/2013/03/25/sim-on-a-stick/Netzpolitische Hundstage in der SPD | Lummalandhttps://www.rfc1437.de/2013/03/22/netzpolitische-hundstage-in-der-spd-lummaland/Neulich im Internet (Schwarzweiß-Ausgabe)https://www.rfc1437.de/2013/03/22/neulich-im-internet-schwarzweis-ausgabe-9/Neulich im Internethttps://www.rfc1437.de/2013/03/22/neulich-im-internet-8/LiveCode Markdown converterhttps://www.rfc1437.de/2013/03/21/livecode-markdown-converter/OX Documents: Online-Office-Suite als Open Source - Golem.dehttps://www.rfc1437.de/2013/03/21/ox-documents-online-office-suite-als-open-source-golem-de/Robot-Will/Stino · GitHubhttps://www.rfc1437.de/2013/03/18/robot-willstino-c2-b7-github/EverythingServerUbuntu - Ryzom - Ryzom Core Development Sitehttps://www.rfc1437.de/2013/03/18/everythingserverubuntu-ryzom-ryzom-core-development-site/Vienna Callinghttps://www.rfc1437.de/2013/03/16/vienna-calling/samuelclay/NewsBlur · GitHubhttps://www.rfc1437.de/2013/03/15/samuelclaynewsblur-c2-b7-github/Connecting Arduino to Mathematica on Mac OS X with SerialIOhttps://www.rfc1437.de/2013/03/09/connecting-arduino-to-mathematica-on-mac-os-x-with-serialio/embedXcode - Homehttps://www.rfc1437.de/2013/03/08/embedxcode-home/Pushing the Limits of Self-Programming Artificial Intelligence | Primary Objectshttps://www.rfc1437.de/2013/03/06/pushing-the-limits-of-self-programming-artificial-intelligence-primary-objects/Desinformation: Mauer in Geiselhaft - taz.dehttps://www.rfc1437.de/2013/03/04/desinformation-mauer-in-geiselhaft-taz-de/Getting Started with nRF24L01+ on Arduino | maniacbughttps://www.rfc1437.de/2013/03/03/getting-started-with-nrf24l01-on-arduino-maniacbug/GT.Mhttps://www.rfc1437.de/2013/03/02/gt-m/mumpshttps://www.rfc1437.de/2013/03/02/mumps/Mumps/II MultiDimensional and Hierarchical Toolkithttps://www.rfc1437.de/2013/03/02/mumpsii-multidimensional-and-hierarchical-toolkit/Hugos House of Photo Horrorhttps://www.rfc1437.de/2013/02/27/hugos-house-of-photo-horror/Koken - Creative website publishinghttps://www.rfc1437.de/2013/02/27/koken-creative-website-publishing/Arduino Camera Shield | Arduino Based Camerahttps://www.rfc1437.de/2013/02/26/arduino-camera-shield-arduino-based-camera/Craft Camera by Coralie Gourguechon | mocovote.comhttps://www.rfc1437.de/2013/02/26/craft-camera-by-coralie-gourguechon-mocovote-com/Reprap development and further adventures in DIY 3D printing: Slic3r is Nicer - Part 1 - Settings and Extruder Calibrationhttps://www.rfc1437.de/2013/02/25/reprap-development-and-further-adventures-in-diy-3d-printing-slic3r-is-nicer-part-1-settings-and-extruder-calibration/PhysibleExchange - Popularhttps://www.rfc1437.de/2013/02/25/physibleexchange-popular/pcDuino arduino compatible headershttps://www.rfc1437.de/2013/02/20/pcduino-arduino-compatible-headers/pudb 2012.3 : CUI Debugger for Pythonhttps://www.rfc1437.de/2013/02/20/pudb-2012-3-cui-debugger-for-python/Reconstruct your world with ReconstructMehttps://www.rfc1437.de/2013/02/19/reconstruct-your-world-with-reconstructme/foosel/OctoPrint at devel · GitHubhttps://www.rfc1437.de/2013/02/19/fooseloctoprint-at-devel-c2-b7-github/usb-serial-for-android - Android USB host serial driver library for CDC, FTDI, Arduino and other devices. - Google Project Hostinghttps://www.rfc1437.de/2013/02/19/usb-serial-for-android-android-usb-host-serial-driver-library-for-cdc-ftdi-arduino-and-other-devices-google-project-hosting/Neulich im Internet (Schwarzweiß-Ausgabe)https://www.rfc1437.de/2013/02/18/neulich-im-internet-schwarzweis-ausgabe-8/Write Yourself a Haskell... in Lisp 17 February 2013https://www.rfc1437.de/2013/02/18/write-yourself-a-haskell-in-lisp-17-february-2013/Controlling Arduino with Android using Processinghttps://www.rfc1437.de/2013/02/17/controlling-arduino-with-android-using-processing/Curahttps://www.rfc1437.de/2013/02/15/cura/3ders.org - Infographic: step-by-step guide for 3D printing with a RepRaphttps://www.rfc1437.de/2013/02/15/3ders-org-infographic-step-by-step-guide-for-3d-printing-with-a-reprap/328eForthhttps://www.rfc1437.de/2013/02/15/328eforth/AmForth: Atmega Forthhttps://www.rfc1437.de/2013/02/15/amforth-atmega-forth/Industruinohttps://www.rfc1437.de/2013/02/14/industruino/Sync API - Dropboxhttps://www.rfc1437.de/2013/02/14/sync-api-dropbox/Wings 3D | A Polygon Modelerhttps://www.rfc1437.de/2013/02/12/wings-3d-a-polygon-modeler/FreeCAD: An Open Source parametric 3D CAD modelerhttps://www.rfc1437.de/2013/02/12/freecad-an-open-source-parametric-3d-cad-modeler/Pixologic :: Sculptrishttps://www.rfc1437.de/2013/02/12/pixologic-sculptris/OpenSCAD - The Programmers Solid 3D CAD Modellerhttps://www.rfc1437.de/2013/02/12/openscad-the-programmers-solid-3d-cad-modeller/dashclock - Lock screen clock widget for Android 4.2+ - Google Project Hostinghttps://www.rfc1437.de/2013/02/12/dashclock-lock-screen-clock-widget-for-android-4-2-google-project-hosting/php.js - PHP VM with JavaScripthttps://www.rfc1437.de/2013/02/12/php-js-php-vm-with-javascript/Mal wieder Berlinhttps://www.rfc1437.de/2013/02/11/mal-wieder-berlin/The Larch Environmenthttps://www.rfc1437.de/2013/02/11/the-larch-environment-2/storm-gen - Lightweight DAO generator for Android SQLite - Google Project Hostinghttps://www.rfc1437.de/2013/02/08/storm-gen-lightweight-dao-generator-for-android-sqlite-google-project-hosting/Repetier Software | The software driving your 3d printerhttps://www.rfc1437.de/2013/02/04/repetier-software-the-software-driving-your-3d-printer/Filabot Personal Filament Maker for 3D Printers - Desktop Extruding System – Environmentally Friendlyhttps://www.rfc1437.de/2013/02/01/filabot-personal-filament-maker-for-3d-printers-desktop-extruding-system-environmentally-friendly/Slic3r - G-code generator for 3D printershttps://www.rfc1437.de/2013/02/01/slic3r-g-code-generator-for-3d-printers/Printable wood availablehttps://www.rfc1437.de/2013/02/01/printable-wood-available/LightZone | Open-source digital darkroom software for Windows/Mac/Linuxhttps://www.rfc1437.de/2013/02/01/lightzone-open-source-digital-darkroom-software-for-windowsmaclinux/Thingiverse - Digital Designs for Physical Objectshttps://www.rfc1437.de/2013/02/01/thingiverse-digital-designs-for-physical-objects/Tinkercad - Mind to design in minuteshttps://www.rfc1437.de/2013/02/01/tinkercad-mind-to-design-in-minutes/repetier/Repetier-Host-Mac · GitHubhttps://www.rfc1437.de/2013/02/01/repetierrepetier-host-mac-c2-b7-github/RepRap - RepRapWikihttps://www.rfc1437.de/2013/02/01/reprap-reprapwiki/Neulich im Internet (Schwarzweiß-Ausgabe)https://www.rfc1437.de/2013/01/17/neulich-im-internet-schwarzweis-ausgabe-7/Neulich im Internethttps://www.rfc1437.de/2013/01/17/neulich-im-internet-7/Pinoccio - A Complete Ecosystem for Building the Internet of Things | Indiegogohttps://www.rfc1437.de/2013/01/15/pinoccio-a-complete-ecosystem-for-building-the-internet-of-things-indiegogo/i.MX233 Product Summary Pagehttps://www.rfc1437.de/2013/01/15/i-mx233-product-summary-page/Chumby tricks - ChumbyWikihttps://www.rfc1437.de/2013/01/15/chumby-tricks-chumbywiki/Falling Faster than the Speed of Sound « Wolfram Bloghttps://www.rfc1437.de/2013/01/15/falling-faster-than-the-speed-of-sound-wolfram-blog/ZDoc - Browse Files at SourceForge.nethttps://www.rfc1437.de/2013/01/15/zdoc-browse-files-at-sourceforge-net/End of Chumby as we know it... Page 1 - Chumby.com - chumbysphere forumhttps://www.rfc1437.de/2013/01/15/end-of-chumby-as-we-know-it-page-1-chumby-com-chumbysphere-forum/Koblenz und Schloss Stolzenfelshttps://www.rfc1437.de/2013/01/14/koblenz-und-schloss-stolzenfels/Metabones announces Speed Booster lens adapter for mirrorless cameras: Digital Photography Reviewhttps://www.rfc1437.de/2013/01/14/metabones-announces-speed-booster-lens-adapter-for-mirrorless-cameras-digital-photography-review/Permaduino | Indiegogohttps://www.rfc1437.de/2013/01/14/permaduino-indiegogo/Back To Top: Android vs. iOShttps://www.rfc1437.de/2013/01/11/back-to-top-android-vs-ios/SPT100 Pan & Tilt Systemhttps://www.rfc1437.de/2013/01/11/spt100-pan-tilt-system/Reflow Controller Shield Arduino Compatible - Rocket Screamhttps://www.rfc1437.de/2013/01/11/reflow-controller-shield-arduino-compatible-rocket-scream/ggreer/the_silver_searcher · GitHubhttps://www.rfc1437.de/2013/01/11/ggreerthe-silver-searcher-c2-b7-github/Atom Publishing Protocol « WordPress Pluginshttps://www.rfc1437.de/2013/01/09/atom-publishing-protocol-wordpress-plugins/Polaroids interchangeable lens camera is awful hands-on | The Vergehttps://www.rfc1437.de/2013/01/08/polaroids-interchangeable-lens-camera-is-awful-hands-on-the-verge/Polaroid Announces The iM1836 Mirrorless Camera With Jelly Beanhttps://www.rfc1437.de/2013/01/08/polaroid-announces-the-im1836-mirrorless-camera-with-jelly-bean/Use Your iPhone, Android, Or Windows Phone To Lock And Unlock Your Mac Using Bluetooth | Redmond Piehttps://www.rfc1437.de/2013/01/07/use-your-iphone-android-or-windows-phone-to-lock-and-unlock-your-mac-using-bluetooth-redmond-pie/Aachener Domhttps://www.rfc1437.de/2013/01/05/aachener-dom/Blaze — Blaze 0.1-dev documentationhttps://www.rfc1437.de/2012/12/28/blaze-blaze-0-1-dev-documentation/IOIO for Android - SparkFun Electronicshttps://www.rfc1437.de/2012/12/28/ioio-for-android-sparkfun-electronics/Run Mobile Apps on Mac with BlueStacks :: Mobile Apps on Mac :: Mobile App Player for Mac | BlueStackshttps://www.rfc1437.de/2012/12/27/run-mobile-apps-on-mac-with-bluestacks-mobile-apps-on-mac-mobile-app-player-for-mac-bluestacks/MariaMole | dalpix.comhttps://www.rfc1437.de/2012/12/27/mariamole-dalpix-com/Java 3D Engine | Learn Java Programming in 3Dhttps://www.rfc1437.de/2012/12/27/java-3d-engine-learn-java-programming-in-3d/Locating interesting parts of an image | IP-TECH, votre partenaire nearshore en Tunisie pour le développement informatiquehttps://www.rfc1437.de/2012/12/26/locating-interesting-parts-of-an-image-ip-tech-votre-partenaire-nearshore-en-tunisie-pour-le-developpement-informatique/imwilsonxu/fbone · GitHubhttps://www.rfc1437.de/2012/12/11/imwilsonxufbone-c2-b7-github/Cubes 0.10.1 Released – Multiple Hierarchies Data Breweryhttps://www.rfc1437.de/2012/12/11/cubes-0-10-1-released-multiple-hierarchies-data-brewery/The Ruggeduinohttps://www.rfc1437.de/2012/12/10/the-ruggeduino/The SQLite RTree Modulehttps://www.rfc1437.de/2012/12/03/the-sqlite-rtree-module/The Gaia-SINS federated project home-pagehttps://www.rfc1437.de/2012/12/03/the-gaia-sins-federated-project-home-page/Süßkartoffel-Linsen-Kokosmilch-Suppehttps://www.rfc1437.de/2012/12/01/suskartoffel-linsen-kokosmilch-suppe/Plan 9 from Bell Labshttps://www.rfc1437.de/2012/12/01/plan-9-from-bell-labs/F-Droidhttps://www.rfc1437.de/2012/11/27/f-droid/The iDroid Project - Where it presently stands - 0xDEADFA11https://www.rfc1437.de/2012/11/26/the-idroid-project-where-it-presently-stands-0xdeadfa11/Ipad optimization - xSellizehttps://www.rfc1437.de/2012/11/26/ipad-optimization-xsellize/ActiveAndroid | Active record style SQLite persistence for Androidhttps://www.rfc1437.de/2012/11/20/activeandroid-active-record-style-sqlite-persistence-for-android/Official Website | FreeBASIC Programming Languagehttps://www.rfc1437.de/2012/11/19/official-website-freebasic-programming-language/The ElfData Pluginhttps://www.rfc1437.de/2012/11/19/the-elfdata-plugin/Kürbissuppehttps://www.rfc1437.de/2012/11/17/kurbissuppe/A Cloud Storage Programming Interface - Store everythinghttps://www.rfc1437.de/2012/11/13/a-cloud-storage-programming-interface-store-everything/F# and MonoGame on the Machttps://www.rfc1437.de/2012/11/12/f-and-monogame-on-the-mac/git-annexhttps://www.rfc1437.de/2012/11/03/git-annex-2/Neulich im Internet (Schwarzweiß-Ausgabe)https://www.rfc1437.de/2012/10/30/neulich-im-internet-schwarzweis-ausgabe-6/Neulich im Internethttps://www.rfc1437.de/2012/10/30/neulich-im-internet-6/couchbase/Android-Couchbasehttps://www.rfc1437.de/2012/10/29/couchbaseandroid-couchbase/Processing on iOShttps://www.rfc1437.de/2012/10/28/processing-on-ios/Lachsforelle mit Pastinakenhttps://www.rfc1437.de/2012/10/27/lachsforelle-mit-pastinaken/OpenXIONhttps://www.rfc1437.de/2012/10/25/openxion/uliwitness/Stacksmithhttps://www.rfc1437.de/2012/10/25/uliwitnessstacksmith/NovoCardhttps://www.rfc1437.de/2012/10/25/novocard/Travis Shrugged: The creepy, dangerous ideology behind Silicon Valley’s Cult of Disruption | PandoDailyhttps://www.rfc1437.de/2012/10/25/travis-shrugged-the-creepy-dangerous-ideology-behind-silicon-valleys-cult-of-disruption-pandodaily/Arduino Due mit 32-Bit-ARM-Mikrokontroller - Pro-Linuxhttps://www.rfc1437.de/2012/10/23/arduino-due-mit-32-bit-arm-mikrokontroller-pro-linux/mono/xwthttps://www.rfc1437.de/2012/10/23/monoxwt/misfo/Shell-Turtlesteinhttps://www.rfc1437.de/2012/10/22/misfoshell-turtlestein/Turning to the past to power Windows’ future: An in-depth look at WinRT | Ars Technicahttps://www.rfc1437.de/2012/10/22/turning-to-the-past-to-power-windows-future-an-in-depth-look-at-winrt-ars-technica/wilhelmtell/dishttps://www.rfc1437.de/2012/10/22/wilhelmtelldis/jqhttps://www.rfc1437.de/2012/10/22/jq/Von Coesfeld nach Billerbeckhttps://www.rfc1437.de/2012/10/21/von-coesfeld-nach-billerbeck/Topinambur Salat und Linsensalathttps://www.rfc1437.de/2012/10/20/topinambur-salat-und-linsensalat/XKCD plots in d3https://www.rfc1437.de/2012/10/19/xkcd-plots-in-d3/IBM Worklight - Mobile application platformhttps://www.rfc1437.de/2012/10/19/ibm-worklight-mobile-application-platform/Lomography Belair X 6-12https://www.rfc1437.de/2012/10/19/lomography-belair-x-6-12/BBC News - Apple loses UK tablet design appeal versus Samsunghttps://www.rfc1437.de/2012/10/18/bbc-news-apple-loses-uk-tablet-design-appeal-versus-samsung/Waldpilzsalat mit Hähnchenstreifenhttps://www.rfc1437.de/2012/10/14/waldpilzsalat-mit-hahnchenstreifen/Moby: Racket for Mobile Phoneshttps://www.rfc1437.de/2012/10/14/moby-racket-for-mobile-phones/PharoDroid [Jenkins]https://www.rfc1437.de/2012/10/13/pharodroid-jenkins/ownCloud’s Latest Community Edition Adds Video Streaming, and Easy Mounting of Third-Party Storagehttps://www.rfc1437.de/2012/10/11/ownclouds-latest-community-edition-adds-video-streaming-and-easy-mounting-of-third-party-storage/Streak - CRM in your Inboxhttps://www.rfc1437.de/2012/10/10/streak-crm-in-your-inbox/LLJS : Low-Level JavaScripthttps://www.rfc1437.de/2012/10/09/lljs-low-level-javascript/Comtypes: How Dropbox learned to stop worrying and love the COMhttps://www.rfc1437.de/2012/10/05/comtypes-how-dropbox-learned-to-stop-worrying-and-love-the-com/DataNitrohttps://www.rfc1437.de/2012/10/04/datanitro/Android-x86 - Porting Android to x86https://www.rfc1437.de/2012/10/01/android-x86-porting-android-to-x86/Pyjnius: Accessing Java classes from Python | Txzonehttps://www.rfc1437.de/2012/10/01/pyjnius-accessing-java-classes-from-python-txzone/Rinderrouladen mit Pastinakenhttps://www.rfc1437.de/2012/09/29/rinderrouladen-mit-pastinaken/#21866 Remove AtomPub from core – WordPress Trachttps://www.rfc1437.de/2012/09/28/21866-remove-atompub-from-core-wordpress-trac/Jetstrap - The Bootstrap Interface Builderhttps://www.rfc1437.de/2012/09/26/jetstrap-the-bootstrap-interface-builder/X11-Basic Homepagehttps://www.rfc1437.de/2012/09/26/x11-basic-homepage/RFO BASIC! for Androidhttps://www.rfc1437.de/2012/09/26/rfo-basic-for-android/Clean IT: Die EU-Kommission will das Internet überwachen und filtern, ganz ohne Gesetzehttps://www.rfc1437.de/2012/09/21/clean-it-die-eu-kommission-will-das-internet-uberwachen-und-filtern-ganz-ohne-gesetze/Plug-ins for Adobe Photoshop Lightroom | Adobe Labshttps://www.rfc1437.de/2012/09/21/plug-ins-for-adobe-photoshop-lightroom-adobe-labs/Jforc Contentshttps://www.rfc1437.de/2012/09/20/jforc-contents/toastdriven/django-tastypiehttps://www.rfc1437.de/2012/09/20/toastdrivendjango-tastypie/linq.js - LINQ for JavaScripthttps://www.rfc1437.de/2012/09/19/linq-js-linq-for-javascript-2/Postgres-XC project Pagehttps://www.rfc1437.de/2012/09/19/postgres-xc-project-page/Online Python Tutor - Learn programming by visualizing code executionhttps://www.rfc1437.de/2012/09/19/online-python-tutor-learn-programming-by-visualizing-code-execution/pyMCU - The Python Controlled Microcontrollerhttps://www.rfc1437.de/2012/09/17/pymcu-the-python-controlled-microcontroller/amoffat/shhttps://www.rfc1437.de/2012/09/17/amoffatsh/MS Optical Sonnetar 50mm f/1.1 Test pictures | Japan Camera Hunterhttps://www.rfc1437.de/2012/09/13/ms-optical-sonnetar-50mm-f1-1-test-pictures-japan-camera-hunter/Android Bootstraphttps://www.rfc1437.de/2012/09/12/android-bootstrap/Buildroid for VirtualBox | BuilDroidhttps://www.rfc1437.de/2012/09/06/buildroid-for-virtualbox-buildroid/Supercharge Your Android Emulator Speed - Developer.comhttps://www.rfc1437.de/2012/09/06/supercharge-your-android-emulator-speed-developer-com/David Waring - Remember the Milk CLIhttps://www.rfc1437.de/2012/09/05/david-waring-remember-the-milk-cli/Leipzighttps://www.rfc1437.de/2012/09/04/leipzig/Lazarus 1.0 release available for downloadhttps://www.rfc1437.de/2012/08/30/lazarus-1-0-release-available-for-download/Cameron Lairds personal notes on varieties of Python implementationhttps://www.rfc1437.de/2012/08/30/cameron-lairds-personal-notes-on-varieties-of-python-implementation/Numba vs Cython - Pythonic Perambulationshttps://www.rfc1437.de/2012/08/30/numba-vs-cython-pythonic-perambulations/Noch ein Rettungsschirmhttps://www.rfc1437.de/2012/08/29/noch-ein-rettungsschirm/KDE Necessitas project - Welcome to KDE Necessitas projecthttps://www.rfc1437.de/2012/08/29/kde-necessitas-project-welcome-to-kde-necessitas-project/rawson.js - a camera raw previewer in javascripthttps://www.rfc1437.de/2012/08/29/rawson-js-a-camera-raw-previewer-in-javascript/commonsguy/cwac-anddownhttps://www.rfc1437.de/2012/08/28/commonsguycwac-anddown/LuminosoInsight/python-ftfyhttps://www.rfc1437.de/2012/08/28/luminosoinsightpython-ftfy/kmike/marisa-triehttps://www.rfc1437.de/2012/08/28/kmikemarisa-trie/Arduino - MacOSXhttps://www.rfc1437.de/2012/08/27/arduino-macosx/myabc/markdownjhttps://www.rfc1437.de/2012/08/27/myabcmarkdownj/mitotic/otracehttps://www.rfc1437.de/2012/08/27/mitoticotrace/Nizhniy Tagil im Augusthttps://www.rfc1437.de/2012/08/26/nizhniy-tagil-im-august/cletus/jmdhttps://www.rfc1437.de/2012/08/01/cletusjmd/mitmel/SimpleContentProviderhttps://www.rfc1437.de/2012/08/01/mitmelsimplecontentprovider/sattvik/nekohttps://www.rfc1437.de/2012/07/31/sattvikneko/ActionBarSherlock - Homehttps://www.rfc1437.de/2012/07/31/actionbarsherlock-home/sirthias/pegdownhttps://www.rfc1437.de/2012/07/29/sirthiaspegdown/Neulich im Internethttps://www.rfc1437.de/2012/07/27/neulich-im-internet-5/Neulich im Internet (Schwarzweiß-Ausgabe)https://www.rfc1437.de/2012/07/27/neulich-im-internet-schwarzweis-ausgabe-5/n8han/giter8https://www.rfc1437.de/2012/07/23/n8hangiter8/Getting started · jberkel/android-plugin Wikihttps://www.rfc1437.de/2012/07/23/getting-started-c2-b7-jberkelandroid-plugin-wiki/mpeltonen/sbt-ideahttps://www.rfc1437.de/2012/07/23/mpeltonensbt-idea/Android-Programmierung mit Scalahttps://www.rfc1437.de/2012/07/23/android-programmierung-mit-scala/Postbox — Awesome Emailhttps://www.rfc1437.de/2012/07/23/postbox-awesome-email/Facebook analysiert Chats zur Verbrechensbekämpfunghttps://www.rfc1437.de/2012/07/16/facebook-analysiert-chats-zur-verbrechensbekampfung/sitaramc/gitolitehttps://www.rfc1437.de/2012/07/15/sitaramcgitolite/OrmLite - Lightweight Object Relational Mapping ORM Java Packagehttps://www.rfc1437.de/2012/07/14/ormlite-lightweight-object-relational-mapping-orm-java-package/Create a package for Android for Kivyhttps://www.rfc1437.de/2012/07/12/create-a-package-for-android-for-kivy/Plop: Low-overhead profiling for Pythonhttps://www.rfc1437.de/2012/07/11/plop-low-overhead-profiling-for-python/Custom Drawn Interface/Android - Lazarus wikihttps://www.rfc1437.de/2012/07/08/custom-drawn-interfaceandroid-lazarus-wiki/Basic4android Basic for Android - Rapid Application Developmenthttps://www.rfc1437.de/2012/07/08/basic4android-basic-for-android-rapid-application-development/Android - Processinghttps://www.rfc1437.de/2012/07/08/android-processing/necessitas / Home / necessitashttps://www.rfc1437.de/2012/07/08/necessitas-home-necessitas/Lion: Mobile Backup Lokale Time Machine abschalten | Jan-Kaspar Münnichhttps://www.rfc1437.de/2012/07/08/lion-mobile-backup-lokale-time-machine-abschalten-jan-kaspar-munnich/Ymacs -- An Emacs-like editor for the Webhttps://www.rfc1437.de/2012/07/07/ymacs-an-emacs-like-editor-for-the-web/Lumiya Viewer - About Lumiyahttps://www.rfc1437.de/2012/07/06/lumiya-viewer-about-lumiya/Soulvers Features | Acqualiahttps://www.rfc1437.de/2012/07/05/soulvers-features-acqualia/Samsung: Kompaktkamera EX2F mit extra lichtstarkem Objektiv - Golem.dehttps://www.rfc1437.de/2012/07/05/samsung-kompaktkamera-ex2f-mit-extra-lichtstarkem-objektiv-golem-de/iBookstore sperrt Czernin-Sammelband als ‘zu explizit’ |https://www.rfc1437.de/2012/07/05/ibookstore-sperrt-czernin-sammelband-als-zu-explizit/Fuse4X – The Easiest and Fastest Way to Create File Systems for Mac OS Xhttps://www.rfc1437.de/2012/07/05/fuse4x-the-easiest-and-fastest-way-to-create-file-systems-for-mac-os-x/Epistle - Android Apps auf Google Playhttps://www.rfc1437.de/2012/07/04/epistle-android-apps-auf-google-play/JWBs blog: Ema Personal Wiki for Android and Windowshttps://www.rfc1437.de/2012/07/04/jwbs-blog-ema-personal-wiki-for-android-and-windows/OscarGodson/EpicEditorhttps://www.rfc1437.de/2012/07/04/oscargodsonepiceditor/Blackmagic Design: Blackmagic Cinema Camerahttps://www.rfc1437.de/2012/07/04/blackmagic-design-blackmagic-cinema-camera/Cloud Partyhttps://www.rfc1437.de/2012/07/03/cloud-party/Repo.jshttps://www.rfc1437.de/2012/07/02/repo-js/isagalaev/highlight.jshttps://www.rfc1437.de/2012/07/02/isagalaevhighlight-js/ErlPort - Erlang port protocol for Pythonhttps://www.rfc1437.de/2012/07/02/erlport-erlang-port-protocol-for-python/Hurricanehttps://www.rfc1437.de/2012/07/02/hurricane/Neulich im Internet (Schwarzweiß-Ausgabe)https://www.rfc1437.de/2012/06/29/neulich-im-internet-schwarzweis-ausgabe-4/Neulich im Internethttps://www.rfc1437.de/2012/06/29/neulich-im-internet-4/SQLite4: The Design Of SQLite4https://www.rfc1437.de/2012/06/29/sqlite4-the-design-of-sqlite4/Jarvishttps://www.rfc1437.de/2012/06/28/jarvis/Remote Debugging - Real Software Documentationhttps://www.rfc1437.de/2012/06/25/remote-debugging-real-software-documentation/..Nowhere..https://www.rfc1437.de/2012/06/23/nowhere/The Opa blog: Announcing Opa 1.0https://www.rfc1437.de/2012/06/22/the-opa-blog-announcing-opa-1-0/Make runfcgi fail when database connection is open before forkhttps://www.rfc1437.de/2012/06/20/make-runfcgi-fail-when-database-connection-is-open-before-fork/LiveScripthttps://www.rfc1437.de/2012/06/20/livescript/ronnix/fabtoolshttps://www.rfc1437.de/2012/06/18/ronnixfabtools/SET TRANSACTION ISOLATION LEVEL Transact-SQLhttps://www.rfc1437.de/2012/06/18/set-transaction-isolation-level-transact-sql/#18251 multithreading deadlock in django.models.loading.get_apps – Djangohttps://www.rfc1437.de/2012/06/18/18251-multithreading-deadlock-in-django-models-loading-get-apps-django/Microsoft SQL Server — SQLAlchemy 0.7 Documentationhttps://www.rfc1437.de/2012/06/18/microsoft-sql-server-sqlalchemy-0-7-documentation/"Prince Flo, King Django & The Deadlock Doctor" von Bluekilla – laut.de – Songhttps://www.rfc1437.de/2012/06/18/prince-flo-king-django-the-deadlock-doctor-von-bluekilla-laut-de-song/Using SELECT FOR UPDATE in Djangohttps://www.rfc1437.de/2012/06/18/using-select-for-update-in-django/WordPress › WordPress 3.4 “Green”https://www.rfc1437.de/2012/06/17/wordpress-wordpress-3-4-green/Thomas Tempelmann | Arbed - The Advanced RB Editorhttps://www.rfc1437.de/2012/06/13/thomas-tempelmann-arbed-the-advanced-rb-editor/ucsd-psystem-vm 0.11https://www.rfc1437.de/2012/06/12/ucsd-psystem-vm-0-11/TryAPLhttps://www.rfc1437.de/2012/06/11/tryapl/PEG.js – Parser Generator for JavaScripthttps://www.rfc1437.de/2012/06/11/peg-js-parser-generator-for-javascript/REALbasic | Open Source | Charcoal Designhttps://www.rfc1437.de/2012/06/08/realbasic-open-source-charcoal-design/Xcode 4.3 MacRuby compatible problem workaround - 東 . Bloghttps://www.rfc1437.de/2012/06/04/xcode-4-3-macruby-compatible-problem-workaround-e6-9d-b1-blog/Waterbear: Welcomehttps://www.rfc1437.de/2012/06/03/waterbear-welcome/google-blockly - A visual programming language - Google Project Hostinghttps://www.rfc1437.de/2012/06/03/google-blockly-a-visual-programming-language-google-project-hosting/Emmerich am Rhein und Reeshttps://www.rfc1437.de/2012/06/03/emmerich-am-rhein-und-rees/Freilichtmuseum Arnheimhttps://www.rfc1437.de/2012/06/03/freilichtmuseum-arnheim/Burgers Zoohttps://www.rfc1437.de/2012/06/03/burgers-zoo/Eindrücke aus Arnheimhttps://www.rfc1437.de/2012/06/03/eindrucke-aus-arnheim/AugmenteDevhttps://www.rfc1437.de/2012/05/31/augmentedev/RQ: Simple job queues for Pythonhttps://www.rfc1437.de/2012/05/31/rq-simple-job-queues-for-python/apenwarr/buphttps://www.rfc1437.de/2012/05/29/apenwarrbup/git-annexhttps://www.rfc1437.de/2012/05/29/git-annex/Mumblehttps://www.rfc1437.de/2012/05/23/mumble/Spherohttps://www.rfc1437.de/2012/05/23/sphero/Ubuntu 10.04: Why is ksmd eating CPU cycles? | Interphero Miscellanyhttps://www.rfc1437.de/2012/05/22/ubuntu-10-04-why-is-ksmd-eating-cpu-cycles-interphero-miscellany/Features | ownCloud.orghttps://www.rfc1437.de/2012/05/22/features-owncloud-org/dahlia / TypeQuery / overview — Bitbuckethttps://www.rfc1437.de/2012/05/22/dahlia-typequery-overview-bitbucket/PostgreSQL: Documentation: 8.4: hstorehttps://www.rfc1437.de/2012/05/22/postgresql-documentation-8-4-hstore/TeamPostgreSQL - PostgreSQL Web Admin GUI Toolshttps://www.rfc1437.de/2012/05/22/teampostgresql-postgresql-web-admin-gui-tools/Map of Lifehttps://www.rfc1437.de/2012/05/21/map-of-life/Matasano Security - Matasano Web Security Assessments for Enterpriseshttps://www.rfc1437.de/2012/05/21/matasano-security-matasano-web-security-assessments-for-enterprises/sametmax/0binhttps://www.rfc1437.de/2012/05/21/sametmax0bin/43 Rumors | Blog | Continually updated Panasonic 12-35mm f/2.8 X lens officially announced!https://www.rfc1437.de/2012/05/21/43-rumors-blog-continually-updated-panasonic-12-35mm-f2-8-x-lens-officially-announced/Embedding Python in Objective-C: Part 2https://www.rfc1437.de/2012/05/19/embedding-python-in-objective-c-part-2/jodal/pykkahttps://www.rfc1437.de/2012/05/18/jodalpykka/Jython 2.7 alpha1 released!https://www.rfc1437.de/2012/05/18/jython-2-7-alpha1-released/cocoa-python - Port of Objective-C runtime to Python using ctypes - Google Project Hostinghttps://www.rfc1437.de/2012/05/18/cocoa-python-port-of-objective-c-runtime-to-python-using-ctypes-google-project-hosting/r17 - flexible, scalable, relational data mining languagehttps://www.rfc1437.de/2012/05/18/r17-flexible-scalable-relational-data-mining-language/Neulich im Internet (Schwarzweiß-Ausgabe)https://www.rfc1437.de/2012/05/18/neulich-im-internet-schwarzweis-ausgabe-3/Neulich im Internethttps://www.rfc1437.de/2012/05/18/neulich-im-internet-3/The Schemaversehttps://www.rfc1437.de/2012/05/14/the-schemaverse/sipML5 - The worlds first open source HTML5 clienthttps://www.rfc1437.de/2012/05/14/sipml5-the-worlds-first-open-source-html5-client/Gumbohttps://www.rfc1437.de/2012/05/12/gumbo/Plumbum: Shell Combinators and More — Plumbum: Shell Combinatorshttps://www.rfc1437.de/2012/05/12/plumbum-shell-combinators-and-more-plumbum-shell-combinators/Leica X2 review – Ming Thein | Photographerhttps://www.rfc1437.de/2012/05/11/leica-x2-review-ming-thein-photographer/Pocket-sized fuel cell charges phones for two weeks - Mobile Phones - CNET - CNET Asiahttps://www.rfc1437.de/2012/05/09/pocket-sized-fuel-cell-charges-phones-for-two-weeks-mobile-phones-cnet-cnet-asia/Clojure/core — Reducers - A Library and Model for Collection Processinghttps://www.rfc1437.de/2012/05/09/clojurecore-reducers-a-library-and-model-for-collection-processing/backbone-fundamentals/index.md at master · addyosmani/backbone-fundamentals · GitHubhttps://www.rfc1437.de/2012/05/09/backbone-fundamentalsindex-md-at-master-c2-b7-addyosmanibackbone-fundamentals-c2-b7-github/PyPy Status Blog: STM update: back to threads?https://www.rfc1437.de/2012/05/08/pypy-status-blog-stm-update-back-to-threads/tuupola/jquery_lazyloadhttps://www.rfc1437.de/2012/05/07/tuupolajquery-lazyload/dirq 1.1.2 documentationhttps://www.rfc1437.de/2012/05/07/dirq-1-1-2-documentation/Hotcanvas: Realtime codinghttps://www.rfc1437.de/2012/05/07/hotcanvas-realtime-coding/Bilderarchiv | rfc1437https://www.rfc1437.de/2012/05/07/bilderarchiv-rfc1437/ownCloud.org | Your Cloud, Your Data, Your Way!https://www.rfc1437.de/2012/05/07/owncloud-org-your-cloud-your-data-your-way/RubyMotion - Ruby for iOShttps://www.rfc1437.de/2012/05/04/rubymotion-ruby-for-ios/Mojolicious - Perl real-time web frameworkhttps://www.rfc1437.de/2012/05/03/mojolicious-perl-real-time-web-framework-2/Neulich im Internet (Schwarzweiß-Ausgabe)https://www.rfc1437.de/2012/05/01/neulich-im-internet-schwarzweis-ausgabe-2/Neulich im Internethttps://www.rfc1437.de/2012/05/01/neulich-im-internet-2/RavenDB - 2nd generation document databasehttps://www.rfc1437.de/2012/04/28/ravendb-2nd-generation-document-database/JSIL - .NET to JavaScript compilerhttps://www.rfc1437.de/2012/04/28/jsil-net-to-javascript-compiler/Amazon.com: Send to Kindle for Machttps://www.rfc1437.de/2012/04/26/amazon-com-send-to-kindle-for-mac/the { buckblogs :here }: Maze Generation: Ellers Algorithmhttps://www.rfc1437.de/2012/04/25/the-buckblogs-here-maze-generation-ellers-algorithm/jQuery Masonryhttps://www.rfc1437.de/2012/04/25/jquery-masonry/BlocksIt.js - Dynamic Grid Layout jQuery Pluginhttps://www.rfc1437.de/2012/04/25/blocksit-js-dynamic-grid-layout-jquery-plugin/Kronuz/SublimeCodeIntelhttps://www.rfc1437.de/2012/04/25/kronuzsublimecodeintel/Cubism.jshttps://www.rfc1437.de/2012/04/25/cubism-js/jlongster/dcpu-lisphttps://www.rfc1437.de/2012/04/24/jlongsterdcpu-lisp/Subrepository - Mercurialhttps://www.rfc1437.de/2012/04/24/subrepository-mercurial/645 PRO app for iPhone offers access to lossless camera output but not Raw: Digital Photography Reviewhttps://www.rfc1437.de/2012/04/24/645-pro-app-for-iphone-offers-access-to-lossless-camera-output-but-not-raw-digital-photography-review/ThinkUp: Social Media Insights Platformhttps://www.rfc1437.de/2012/04/23/thinkup-social-media-insights-platform/Google+ Importer for WordPress » Sutherland Boswellhttps://www.rfc1437.de/2012/04/23/google-importer-for-wordpress-sutherland-boswell/Mozilla Archive Format, with MHT and Faithful Save :: Add-ons für Firefoxhttps://www.rfc1437.de/2012/04/23/mozilla-archive-format-with-mht-and-faithful-save-add-ons-fur-firefox/pycountershttps://www.rfc1437.de/2012/04/23/pycounters/Neulich im Internet (Schwarzweiß-Ausgabe)https://www.rfc1437.de/2012/04/22/neulich-im-internet-schwarzweis-ausgabe/Neulich im Internethttps://www.rfc1437.de/2012/04/22/neulich-im-internet/Parlament: Fraktionen wollen Rederecht im Bundestag beschneiden | Politik | ZEIT ONLINEhttps://www.rfc1437.de/2012/04/14/parlament-fraktionen-wollen-rederecht-im-bundestag-beschneiden-politik-zeit-online/Neulich auf Google+https://www.rfc1437.de/2012/04/13/neulich-auf-google/Gesammelte alte Schwarzweissbilderhttps://www.rfc1437.de/2012/04/13/gesammelte-alte-schwarzweissbilder/virtualenv-clone 0.2.2 : Python Package Indexhttps://www.rfc1437.de/2012/04/12/virtualenv-clone-0-2-2-python-package-index/Introducing Pivot.jshttps://www.rfc1437.de/2012/04/12/introducing-pivot-js/abique/tmfshttps://www.rfc1437.de/2012/04/10/abiquetmfs/Offener Brief an die Contentindustriehttps://www.rfc1437.de/2012/04/06/offener-brief-an-die-contentindustrie/the unbearable finality of pixel spacehttps://www.rfc1437.de/2012/04/05/the-unbearable-finality-of-pixel-space/flatiron/plateshttps://www.rfc1437.de/2012/04/04/flatironplates/Neulich auf Google+https://www.rfc1437.de/2012/03/31/neulich-auf-google-4/RQ: Documentationhttps://www.rfc1437.de/2012/03/29/rq-documentation/Kenko extensions tube with full electronic control!https://www.rfc1437.de/2012/03/29/kenko-extensions-tube-with-full-electronic-control/iphone - What happens to JavaScript code after app is compiled using Titanium Mobile - Stack Overflowhttps://www.rfc1437.de/2012/03/29/iphone-what-happens-to-javascript-code-after-app-is-compiled-using-titanium-mobile-stack-overflow/Titanium Desktop – Node.js Prototype « Appcelerator Developer Centerhttps://www.rfc1437.de/2012/03/27/titanium-desktop-node-js-prototype-appcelerator-developer-center/Embedding and running Node.js within a Firefox XUL extension | Captains Blog | Rawkeshttps://www.rfc1437.de/2012/03/27/embedding-and-running-node-js-within-a-firefox-xul-extension-captains-blog-rawkes/NodObjChttps://www.rfc1437.de/2012/03/27/nodobjc/topcubehttps://www.rfc1437.de/2012/03/27/topcube/haypo/pysandboxhttps://www.rfc1437.de/2012/03/26/haypopysandbox/Neulich auf Flickr - Schwarzweiß Ausgabehttps://www.rfc1437.de/2012/03/25/neulich-auf-flickr-schwarzweis-ausgabe-4/Neulich auf Flickrhttps://www.rfc1437.de/2012/03/25/neulich-auf-flickr-9/SynthCam for iPhonehttps://www.rfc1437.de/2012/03/23/synthcam-for-iphone/Depth of fieldhttps://www.rfc1437.de/2012/03/23/depth-of-field/Kein Quick-Freeze: Kanzlerin drängt Rösler zur Vorratsdatenspeicherunghttps://www.rfc1437.de/2012/03/22/kein-quick-freeze-kanzlerin-drangt-rosler-zur-vorratsdatenspeicherung/Katzencontenthttps://www.rfc1437.de/2012/03/21/katzencontent/BOO - Getting Startedhttps://www.rfc1437.de/2012/03/19/boo-getting-started/Rinderrouladenhttps://www.rfc1437.de/2012/03/17/rinderrouladen/pyp - Python Power at the Prompt - Google Project Hostinghttps://www.rfc1437.de/2012/03/16/pyp-python-power-at-the-prompt-google-project-hosting/Gprowlhttps://www.rfc1437.de/2012/03/15/gprowl/Clojure-Pyhttps://www.rfc1437.de/2012/03/13/clojure-py/LensRentals.com - Undressing an NEXhttps://www.rfc1437.de/2012/03/12/lensrentals-com-undressing-an-nex/Create a package for IOS — Kivy 1.1.2-dev documentationhttps://www.rfc1437.de/2012/03/12/create-a-package-for-ios-kivy-1-1-2-dev-documentation/Neulich auf Flickr - Schwarzweiß-Ausgabehttps://www.rfc1437.de/2012/03/10/neulich-auf-flickr-schwarzweis-ausgabe-3/Neulich auf Flickrhttps://www.rfc1437.de/2012/03/10/neulich-auf-flickr-8/wbond/sublime_package_controlhttps://www.rfc1437.de/2012/03/10/wbondsublime-package-control/JulianEberius/SublimeRopehttps://www.rfc1437.de/2012/03/10/julianeberiussublimerope/HyperCard, Visual Basic and the Importance of the Novice Developerhttps://www.rfc1437.de/2012/03/09/hypercard-visual-basic-and-the-importance-of-the-novice-developer/mtravers/heroku-buildpack-clhttps://www.rfc1437.de/2012/03/09/mtraversheroku-buildpack-cl/Heroku | Clojure on Herokuhttps://www.rfc1437.de/2012/03/09/heroku-clojure-on-heroku/TerjeNorderhaug/ecl-iphone-builderhttps://www.rfc1437.de/2012/03/09/terjenorderhaugecl-iphone-builder/Room 101: The Miracle of become:https://www.rfc1437.de/2012/03/08/room-101-the-miracle-of-become/Chrome kann in fünf Minuten geknackt werden | Produkte | futurezone.at: Technology-Newshttps://www.rfc1437.de/2012/03/08/chrome-kann-in-funf-minuten-geknackt-werden-produkte-futurezone-at-technology-news/[New App] Impressive: AIDE Is An IDE That Lets You Write And Compile Android Apps On Your Android Device, Begs For The Yo Dawg Treatmenthttps://www.rfc1437.de/2012/03/07/new-app-impressive-aide-is-an-ide-that-lets-you-write-and-compile-android-apps-on-your-android-device-begs-for-the-yo-dawg-treatment/Vagrant - Virtualized development for the masses.https://www.rfc1437.de/2012/03/07/vagrant-virtualized-development-for-the-masses/PySide for Android thp.iohttps://www.rfc1437.de/2012/03/07/pyside-for-android-thp-io/Robin Wong Olympus E-M5 Reviewhttps://www.rfc1437.de/2012/03/07/robin-wong-olympus-e-m5-review/Hyper-V, virtuelle Maschinen, Laufwerksbuchstaben, Wahnsinn, Microsofthttps://www.rfc1437.de/2012/03/05/hyper-v-virtuelle-maschinen-laufwerksbuchstaben-wahnsinn-microsoft/pyprocessing - A Processing-like environment for doing graphics with Python - Google Project Hostinghttps://www.rfc1437.de/2012/03/02/pyprocessing-a-processing-like-environment-for-doing-graphics-with-python-google-project-hosting/Ex-Bundespräsident Wulff erhält den Ehrensold | tagesschau.dehttps://www.rfc1437.de/2012/02/29/ex-bundesprasident-wulff-erhalt-den-ehrensold-tagesschau-de/41MP Nokia 808 smartphone hints at pixel-binning future for small sensor cameras: Digital Photography Reviewhttps://www.rfc1437.de/2012/02/28/41mp-nokia-808-smartphone-hints-at-pixel-binning-future-for-small-sensor-cameras-digital-photography-review/Temporal Keys, Part 2 | Experimental Thoughtshttps://www.rfc1437.de/2012/02/27/temporal-keys-part-2-experimental-thoughts/ResponsiveSlides.js · Responsive jQuery slideshowhttps://www.rfc1437.de/2012/02/26/responsiveslides-js-c2-b7-responsive-jquery-slideshow/6: Sony infrared conversion servicehttps://www.rfc1437.de/2012/02/21/6-sony-infrared-conversion-service/Karneval. Und jetzt bitte die Pappnasen absetzen, ok?https://www.rfc1437.de/2012/02/20/karneval-und-jetzt-bitte-die-pappnasen-absetzen-ok/The Julia Manualhttps://www.rfc1437.de/2012/02/18/the-julia-manual/Deutsche Tastaturbelegung unter Parallels, VMWare, BootCamp und VirtualBox - Info - Schirmacherhttps://www.rfc1437.de/2012/02/17/deutsche-tastaturbelegung-unter-parallels-vmware-bootcamp-und-virtualbox-info-schirmacher/Mac Developer Tips » How to Uninstall Xcodehttps://www.rfc1437.de/2012/02/17/mac-developer-tips-how-to-uninstall-xcode/Xcode, GCC, and Homebrewhttps://www.rfc1437.de/2012/02/17/xcode-gcc-and-homebrew/stochastic-technologies/goatfish - GitHubhttps://www.rfc1437.de/2012/02/16/stochastic-technologiesgoatfish-github/Concatenative IRC Logs vom 6.1.2012https://www.rfc1437.de/2012/02/14/concatenative-irc-logs-vom-6-1-2012/generateDS 2.7b : Python Package Indexhttps://www.rfc1437.de/2012/02/14/generateds-2-7b-python-package-index/zenphoto-publisher - Lightroom 3 Publisher plugin for Zenphoto - Google Project Hostinghttps://www.rfc1437.de/2012/02/13/zenphoto-publisher-lightroom-3-publisher-plugin-for-zenphoto-google-project-hosting/“Collection Publisher” Lightroom Pluginhttps://www.rfc1437.de/2012/02/13/collection-publisher-lightroom-plugin/CoRD: Remote Desktop for Mac OS Xhttps://www.rfc1437.de/2012/02/13/cord-remote-desktop-for-mac-os-x-2/Die Woche: Wie geht es uns, Herr Küppersbusch? - taz.dehttps://www.rfc1437.de/2012/02/12/die-woche-wie-geht-es-uns-herr-kuppersbusch-taz-de/Schweinefilet in Senfsoßehttps://www.rfc1437.de/2012/02/12/schweinefilet-in-senfsose/IdleX - IDLE Extensions for Pythonhttps://www.rfc1437.de/2012/02/12/idlex-idle-extensions-for-python/Practical Common Lisp - Crawling InterfaceLift with Common Lisp - second tryhttps://www.rfc1437.de/2012/02/12/practical-common-lisp-crawling-interfacelift-with-common-lisp-second-try/arskom/rpclib - GitHubhttps://www.rfc1437.de/2012/02/11/arskomrpclib-github/Aaseevergnügenhttps://www.rfc1437.de/2012/02/11/aaseevergnugen/Howto to rebuild Debian packageshttps://www.rfc1437.de/2012/02/09/howto-to-rebuild-debian-packages/Laurence Tratt: Fast Enough VMs in Fast Enough Timehttps://www.rfc1437.de/2012/02/09/laurence-tratt-fast-enough-vms-in-fast-enough-time/Google Wallet PIN cracked on rooted Android devices | The Vergehttps://www.rfc1437.de/2012/02/09/google-wallet-pin-cracked-on-rooted-android-devices-the-verge/ladon 0.7.0 : Python Package Indexhttps://www.rfc1437.de/2012/02/08/ladon-0-7-0-python-package-index/sudshttps://www.rfc1437.de/2012/02/08/suds/About — soaplib v2.0.0beta documentationhttps://www.rfc1437.de/2012/02/08/about-soaplib-v2-0-0beta-documentation/pysimplesoap - Python Simple SOAP Library - Google Project Hostinghttps://www.rfc1437.de/2012/02/08/pysimplesoap-python-simple-soap-library-google-project-hosting/Smile and SmileLab Home Pagehttps://www.rfc1437.de/2012/02/08/smile-and-smilelab-home-page/Tour de France: Radprofi Contador für zwei Jahre gesperrt | Sport | ZEIT ONLINEhttps://www.rfc1437.de/2012/02/06/tour-de-france-radprofi-contador-fur-zwei-jahre-gesperrt-sport-zeit-online/python4delphi - Embedding Python within a Delphi application. - Google Project Hostinghttps://www.rfc1437.de/2012/02/03/python4delphi-embedding-python-within-a-delphi-application-google-project-hosting/Bundespräsident Wulff verschwieg Beziehung zu Geerkens | tagesschau.dehttps://www.rfc1437.de/2012/01/30/bundesprasident-wulff-verschwieg-beziehung-zu-geerkens-tagesschau-de/Zurück aus Amsterdamhttps://www.rfc1437.de/2012/01/30/zuueck-aus-amsterdam/Iñigo Quilez - fractals, computer graphics, mathematics, demoscene and morehttps://www.rfc1437.de/2012/01/08/inigo-quilez-fractals-computer-graphics-mathematics-demoscene-and-more/Technical Documentation - pistos/diasporahttps://www.rfc1437.de/2012/01/06/technical-documentation-pistosdiaspora/FPC New Features 2.6.0 - Lazarus wikihttps://www.rfc1437.de/2012/01/05/fpc-new-features-2-6-0-lazarus-wiki/Sony "approves" the launch the new hybrid AlphaNex mount camera (sort of fullframe NEX-7!)https://www.rfc1437.de/2012/01/04/sony-approves-the-launch-the-new-hybrid-alphanex-mount-camera-sort-of-fullframe-nex-7/Spaghetti Carbonara mit Gemüse und Frikadellenhttps://www.rfc1437.de/2011/12/31/spaghetti-carbonara-mit-gemuse-und-frikadellen/charles leifer | Updates to peewee, including atomic updates, select related and basic transactionshttps://www.rfc1437.de/2011/12/30/charles-leifer-updates-to-peewee-including-atomic-updates-select-related-and-basic-transactions/Linux L2TP/IPSec with iPhone and Mac OS/X clients | PEEN.NEThttps://www.rfc1437.de/2011/12/29/linux-l2tpipsec-with-iphone-and-mac-osx-clients-peen-net/Distribunomicon | Learn You Some Erlang for Great Good!https://www.rfc1437.de/2011/12/28/distribunomicon-learn-you-some-erlang-for-great-good/Samsung Galaxy S Phones Ice Cream Sandwich Updatehttps://www.rfc1437.de/2011/12/24/samsung-galaxy-s-phones-ice-cream-sandwich-update/Custom iPhone Backshttps://www.rfc1437.de/2011/12/23/custom-iphone-backs/Sublime Texthttps://www.rfc1437.de/2011/12/22/sublime-text/Phalanger 3.0 | PHP compiler for .NEThttps://www.rfc1437.de/2011/12/22/phalanger-3-0-php-compiler-for-net/Lanzarote - Mondlandschaft mit Palmenhttps://www.rfc1437.de/2011/12/21/lanzarote-mondlandschaft-mit-palmen/web2pyhttps://www.rfc1437.de/2011/12/21/web2py/Mac App Store - Clozure CLhttps://www.rfc1437.de/2011/12/21/mac-app-store-clozure-cl/Commentpresshttps://www.rfc1437.de/2011/12/20/commentpress/Neulich auf Flickrhttps://www.rfc1437.de/2011/12/19/neulich-auf-flickr-7/Neulich auf Flickr - Schwarzweiß Ausgabehttps://www.rfc1437.de/2011/12/19/neulich-auf-flickr-schwarzweis-ausgabe-2/Clay Programming Languagehttps://www.rfc1437.de/2011/12/07/clay-programming-language/Thoughts on Python 3 | Armin Ronachers Thoughts and Writingshttps://www.rfc1437.de/2011/12/07/thoughts-on-python-3-armin-ronachers-thoughts-and-writings/Learn Smalltalk with ProfStefhttps://www.rfc1437.de/2011/12/06/learn-smalltalk-with-profstef/iPhone battery life issues may continue to vex users—even post iOS 5.1https://www.rfc1437.de/2011/12/02/iphone-battery-life-issues-may-continue-to-vex-users-e2-80-94even-post-ios-5-1/eComStation - Wikipedia, the free encyclopediahttps://www.rfc1437.de/2011/12/02/ecomstation-wikipedia-the-free-encyclopedia/Open Object Rexxhttps://www.rfc1437.de/2011/12/02/open-object-rexx/Using hardware controllers with Lightroom | Valokuvaaja Max Edinhttps://www.rfc1437.de/2011/12/01/using-hardware-controllers-with-lightroom-valokuvaaja-max-edin/hangout-disco - Renders a WebGL room with avatars for each participant of a Google+ Hangout, with the possibility to play music, etc. - Google Project Hostinghttps://www.rfc1437.de/2011/11/30/hangout-disco-renders-a-webgl-room-with-avatars-for-each-participant-of-a-google-hangout-with-the-possibility-to-play-music-etc-google-project-hosting/BUSTED! Secret app on millions of phones logs key taps • The Registerhttps://www.rfc1437.de/2011/11/30/busted-secret-app-on-millions-of-phones-logs-key-taps-e2-80-a2-the-register/Zinc HTTP Componentshttps://www.rfc1437.de/2011/11/30/zinc-http-components/Tornado on Pypy benchmarks - Tornado Web Server | Google Groupshttps://www.rfc1437.de/2011/11/30/tornado-on-pypy-benchmarks-tornado-web-server-google-groups/GemStone Seaside | Abouthttps://www.rfc1437.de/2011/11/30/gemstone-seaside-about/Sicherheitslücke: Feuergefahr bei HP-Druckern? - Golem.dehttps://www.rfc1437.de/2011/11/30/sicherheitslucke-feuergefahr-bei-hp-druckern-golem-de/Python Math | Python for iPhone/iPad/iPod Touchhttps://www.rfc1437.de/2011/11/29/python-math-python-for-iphoneipadipod-touch-2/Fliers Still Must Turn Off Devices, but Its Not Clear Why - NYTimes.comhttps://www.rfc1437.de/2011/11/29/fliers-still-must-turn-off-devices-but-its-not-clear-why-nytimes-com/YaCy - Freie Suchmaschinensoftware und dezentrale Websuchehttps://www.rfc1437.de/2011/11/28/yacy-freie-suchmaschinensoftware-und-dezentrale-websuche/Flugdatenabkommen ist ausverhandelt - fm4.ORF.athttps://www.rfc1437.de/2011/11/28/flugdatenabkommen-ist-ausverhandelt-fm4-orf-at/Welcome to NeuroLab’s documentation! — NeuroLab v0.2.1 documentationhttps://www.rfc1437.de/2011/11/28/welcome-to-neurolab-e2-80-99s-documentation-e2-80-94-neurolab-v0-2-1-documentation/A human review of the Kindle Fire – Marco.orghttps://www.rfc1437.de/2011/11/20/a-human-review-of-the-kindle-fire-e2-80-93-marco-org/Nizza-Impressionenhttps://www.rfc1437.de/2011/11/20/nizza-impressionen/Männerspielzeug in Nizzahttps://www.rfc1437.de/2011/11/20/mannerspielzeug-in-nizza/forger the digital sculpting app for iPadhttps://www.rfc1437.de/2011/11/10/forger-the-digital-sculpting-app-for-ipad/Dart : Structured web programminghttps://www.rfc1437.de/2011/11/10/dart-structured-web-programming/Newspeak » The Newspeak Programming Languagehttps://www.rfc1437.de/2011/11/10/newspeak-c2-bb-the-newspeak-programming-language/Radius limited searching with the ORM | Neogeo ramblings with a Python twisthttps://www.rfc1437.de/2011/11/10/radius-limited-searching-with-the-orm-neogeo-ramblings-with-a-python-twist/Pixelmatorhttps://www.rfc1437.de/2011/11/09/pixelmator-2/LEGO Universe : Game Help - LEGO Universehttps://www.rfc1437.de/2011/11/08/lego-universe-game-help-lego-universe/Kodak sells Image Sensor Solutions business: Digital Photography Reviewhttps://www.rfc1437.de/2011/11/08/kodak-sells-image-sensor-solutions-business-digital-photography-review/Pinaxhttps://www.rfc1437.de/2011/11/07/pinax/Panasonic: Systemkamera GX1 mit Dreikern-Bildprozessor - Golem.dehttps://www.rfc1437.de/2011/11/07/panasonic-systemkamera-gx1-mit-dreikern-bildprozessor-golem-de/Herbstspazierganghttps://www.rfc1437.de/2011/11/01/herbstspaziergang/New55 Filmhttps://www.rfc1437.de/2011/11/01/new55-film/Pixelmatorhttps://www.rfc1437.de/2011/10/31/pixelmator/Und mal wieder ein Hamburg-Besuchhttps://www.rfc1437.de/2011/10/31/und-mal-wieder-ein-hamburg-besuch/Adobe Carousel: Mini-Lightroom für iPhone und iPad verfügbar - Golem.dehttps://www.rfc1437.de/2011/10/28/adobe-carousel-mini-lightroom-fur-iphone-und-ipad-verfugbar-golem-de/Codify – iPadhttps://www.rfc1437.de/2011/10/27/codify-e2-80-93-ipad/CCC | Chaos Computer Club analysiert aktuelle Version des Staatstrojanershttps://www.rfc1437.de/2011/10/26/ccc-chaos-computer-club-analysiert-aktuelle-version-des-staatstrojaners/Galileo Computing :: Apps entwickeln für iPhone und iPad - indexhttps://www.rfc1437.de/2011/10/25/galileo-computing-apps-entwickeln-fur-iphone-und-ipad-index/Die\_Telekom\_lernt\_es\_nicht... | iPhone\_4S:\_Telekom\_tauscht\_SIM-Karten | Mac & i News-Forenhttps://www.rfc1437.de/2011/10/24/die-c2-a0telekom-c2-a0lernt-c2-a0es-c2-a0nicht-iphone-c2-a04s-c2-a0telekom-c2-a0tauscht-c2-a0sim-karten-mac-i-news-foren/Pixelmator 2 Sneak Previewhttps://www.rfc1437.de/2011/10/24/pixelmator-2-sneak-preview/Mellow Morning » Django Facebook 3.2 – Simple image upload and wall postshttps://www.rfc1437.de/2011/10/24/mellow-morning-c2-bb-django-facebook-3-2-e2-80-93-simple-image-upload-and-wall-posts/Ach, Apple… ach, Aperture… | massenbelichtungswaffen.dehttps://www.rfc1437.de/2011/10/24/ach-apple-e2-80-a6-ach-aperture-e2-80-a6-massenbelichtungswaffen-de/Und es ward mal wieder Send ...https://www.rfc1437.de/2011/10/23/und-es-ward-mal-wieder-send/WordPress Deutschland FAQ » Hinweise zum Datenschutz beim Einsatz von Akismet in Deutschlandhttps://www.rfc1437.de/2011/10/21/wordpress-deutschland-faq-c2-bb-hinweise-zum-datenschutz-beim-einsatz-von-akismet-in-deutschland/iPhone 4S: Nutzer melden Probleme mit neuen SIM-Kartenhttps://www.rfc1437.de/2011/10/19/iphone-4s-nutzer-melden-probleme-mit-neuen-sim-karten/Diaspora* — How Diaspora* Found Its Tiger Stripe in the Midst of a Paypal Fiascohttps://www.rfc1437.de/2011/10/19/diaspora-e2-80-94-how-diaspora-found-its-tiger-stripe-in-the-midst-of-a-paypal-fiasco/The impact of Apple’s Siri release: From the former lead iPhone developer of Sirihttps://www.rfc1437.de/2011/10/18/the-impact-of-apple-e2-80-99s-siri-release-from-the-former-lead-iphone-developer-of-siri/Mojolicious - Perl real-time web frameworkhttps://www.rfc1437.de/2011/10/18/mojolicious-perl-real-time-web-framework/vim-orgmode - Text outlining and task management for Vim based on Emacs' Org-Mode : vim onlinehttps://www.rfc1437.de/2011/10/17/vim-orgmode-text-outlining-and-task-management-for-vim-based-on-emacs-org-mode-vim-online/AirPrint Activator v2.0 « Netputinghttps://www.rfc1437.de/2011/10/17/airprint-activator-v2-0-c2-ab-netputing/John Lee Hooker Jr. im Hot Jazz Clubhttps://www.rfc1437.de/2011/10/17/john-lee-hooker-jr-im-hot-jazz-club/About Weavrshttps://www.rfc1437.de/2011/10/15/about-weavrs/Textastic – Syntax highlighting text editor, FTP, SFTP, Dropbox – for iPadhttps://www.rfc1437.de/2011/10/15/textastic-e2-80-93-syntax-highlighting-text-editor-ftp-sftp-dropbox-e2-80-93-for-ipad/Python Math | Python for iPhone/iPad/iPod Touchhttps://www.rfc1437.de/2011/10/15/python-math-python-for-iphoneipadipod-touch/Neulich auf Flickr - Schwarzweiß Ausgabehttps://www.rfc1437.de/2011/10/14/neulich-auf-flickr-schwarzweis-ausgabe/Neulich auf Flickrhttps://www.rfc1437.de/2011/10/14/neulich-auf-flickr-6/Throwable Panoramic Ball Camera // Jonas Pfeilhttps://www.rfc1437.de/2011/10/14/throwable-panoramic-ball-camera-jonas-pfeil/Diaspora* Advanced Sharerhttps://www.rfc1437.de/2011/10/14/diaspora-advanced-sharer/Cleaning… – Marco.orghttps://www.rfc1437.de/2011/10/14/cleaning-e2-80-a6-e2-80-93-marco-org/Bundestrojaner-Artikel-Sammlung - Farlion Insidehttps://www.rfc1437.de/2011/10/12/bundestrojaner-artikel-sammlung-farlion-inside/Service to share on any Diaspora* pod [Basshero.org]https://www.rfc1437.de/2011/10/12/service-to-share-on-any-diaspora-pod-basshero-org/How to speed up the Android Emulator by up to 400%, Nuxeo Developers Bloghttps://www.rfc1437.de/2011/10/11/how-to-speed-up-the-android-emulator-by-up-to-400-nuxeo-developers-blog/A Lesser Photographer - A Manifesto | A Lesser Photographerhttps://www.rfc1437.de/2011/10/11/a-lesser-photographer-a-manifesto-a-lesser-photographer/Staatstrojaner auch in NRW - WDR 2 Der Senderhttps://www.rfc1437.de/2011/10/11/staatstrojaner-auch-in-nrw-wdr-2-der-sender/Kodak Said to Weigh Bankruptcy Filing to Clear Path for Selling Patents - Bloomberghttps://www.rfc1437.de/2011/10/11/kodak-said-to-weigh-bankruptcy-filing-to-clear-path-for-selling-patents-bloomberg/Ricoh GXR A12 Field Reporthttps://www.rfc1437.de/2011/10/10/ricoh-gxr-a12-field-report/Fujifilm FinePix X10https://www.rfc1437.de/2011/10/10/fujifilm-finepix-x10/Bundestrojaner: Die Privaten hinter dem Bundestrojaner | Politik\_- Frankfurter Rundschauhttps://www.rfc1437.de/2011/10/09/bundestrojaner-die-privaten-hinter-dem-bundestrojaner-politik-c2-a0-frankfurter-rundschau/Twitter Gets Sued For Letting Famous People Interact Online | TechCrunchhttps://www.rfc1437.de/2011/10/09/twitter-gets-sued-for-letting-famous-people-interact-online-techcrunch/SuperCollider » Abouthttps://www.rfc1437.de/2011/10/09/supercollider-c2-bb-about/Home // Overtonehttps://www.rfc1437.de/2011/10/09/home-overtone/Henri Cartier-Bresson | Adam Marelli Photohttps://www.rfc1437.de/2011/10/09/henri-cartier-bresson-adam-marelli-photo/Chaos Computer Club: Der deutsche Staatstrojaner wurde geknackt - Aktuell - FAZhttps://www.rfc1437.de/2011/10/09/chaos-computer-club-der-deutsche-staatstrojaner-wurde-geknackt-aktuell-faz/Zeitzonen: tz-Datenbank wegen Klage abgeschaltet - Golem.dehttps://www.rfc1437.de/2011/10/07/zeitzonen-tz-datenbank-wegen-klage-abgeschaltet-golem-de/oryx-editor - Web-based Graphical Business Process Editor. - Google Project Hostinghttps://www.rfc1437.de/2011/10/07/oryx-editor-web-based-graphical-business-process-editor-google-project-hosting/Gulasch ungarische Arthttps://www.rfc1437.de/2011/10/06/gulasch-ungarische-art/virtualenvwrapper 2.10.1 — virtualenvwrapper v2.10.1 documentationhttps://www.rfc1437.de/2011/10/05/virtualenvwrapper-2-10-1-e2-80-94-virtualenvwrapper-v2-10-1-documentation/Straight Talk on Event Loopshttps://www.rfc1437.de/2011/10/05/straight-talk-on-event-loops/Glass cover replacement for Sony NEX LCD screen | Photoclubalphahttps://www.rfc1437.de/2011/10/04/glass-cover-replacement-for-sony-nex-lcd-screen-photoclubalpha/Ausflug nach Norderneyhttps://www.rfc1437.de/2011/10/04/ausflug-nach-norderney/Benefizkonzert Hungerhilfe Ostafrikahttps://www.rfc1437.de/2011/10/02/benefizkonzert-hungerhilfe-ostafrika/The Olympus 45 1.8 Micro 4/3 Lens Review by Steve Huff | STEVE HUFF PHOTOShttps://www.rfc1437.de/2011/10/02/the-olympus-45-1-8-micro-43-lens-review-by-steve-huff-steve-huff-photos/Innovation Starvation | World Policy Institutehttps://www.rfc1437.de/2011/10/02/innovation-starvation-world-policy-institute/Mein Profil auf meinem eigenen Diaspora Podhttps://www.rfc1437.de/2011/10/02/mein-profil-auf-meinem-eigenen-diaspora-pod/Eindeutig identifizierbar: Nato möchte individuelle Signatur für jeden Internetnutzer - Golem.dehttps://www.rfc1437.de/2011/09/30/eindeutig-identifizierbar-nato-mochte-individuelle-signatur-fur-jeden-internetnutzer-golem-de/Datenschützer: Social Plugins in Deutschland nicht zulässig - Golem.dehttps://www.rfc1437.de/2011/09/30/datenschutzer-social-plugins-in-deutschland-nicht-zulassig-golem-de/dusthttps://www.rfc1437.de/2011/09/30/dust/Kanso Frameworkhttps://www.rfc1437.de/2011/09/30/kanso-framework/StatsModels: Statistics in Python — statsmodels v0.3.0 documentationhttps://www.rfc1437.de/2011/09/30/statsmodels-statistics-in-python-e2-80-94-statsmodels-v0-3-0-documentation/pandas: powerful Python data analysis toolkit — pandas v0.4.1 documentationhttps://www.rfc1437.de/2011/09/30/pandas-powerful-python-data-analysis-toolkit-e2-80-94-pandas-v0-4-1-documentation/websites - How do I suppress the address bar in mobile Safari? - Apple - Stack Exchangehttps://www.rfc1437.de/2011/09/30/websites-how-do-i-suppress-the-address-bar-in-mobile-safari-apple-stack-exchange/"Algorithm" is Not a Four-Letter Wordhttps://www.rfc1437.de/2011/09/30/algorithm-is-not-a-four-letter-word/trunkdesk - Mac desktop companion for Trunk Notes - Google Project Hostinghttps://www.rfc1437.de/2011/09/28/trunkdesk-mac-desktop-companion-for-trunk-notes-google-project-hosting/Firewire Attacks Against Mac OS Lion FileVault 2 Encryption » framelosshttps://www.rfc1437.de/2011/09/28/firewire-attacks-against-mac-os-lion-filevault-2-encryption-c2-bb-frameloss/Face off: Facebook bezeichnet persönliche Daten als "geistiges Eigentum" | G! - gutjahr's bloghttps://www.rfc1437.de/2011/09/28/face-off-facebook-bezeichnet-personliche-daten-als-geistiges-eigentum-g-gutjahrs-blog/psycopg2-ctypes - GitHubhttps://www.rfc1437.de/2011/09/28/psycopg2-ctypes-github/django-tastypie - GitHubhttps://www.rfc1437.de/2011/09/28/django-tastypie-github/flask-peewee - GitHubhttps://www.rfc1437.de/2011/09/28/flask-peewee-github/Diebold voting machines can be hacked by remote control - 2012 Elections - Salon.comhttps://www.rfc1437.de/2011/09/28/diebold-voting-machines-can-be-hacked-by-remote-control-2012-elections-salon-com/pmip - Poor Mans IDE Plugin PMIP - Google Project Hostinghttps://www.rfc1437.de/2011/09/27/poormanstestdox-pmip-poor-mans-ide-plugin-pmip-google-project-hosting/Python for Facebook - Welcomehttps://www.rfc1437.de/2011/09/27/python-for-facebook-welcome/StartSSL and Nginxhttps://www.rfc1437.de/2011/09/26/startssl-and-nginx/Launchpad-Control | chaosspace.dehttps://www.rfc1437.de/2011/09/26/launchpad-control-chaosspace-de/Piroschki wie von Schwiegermutternhttps://www.rfc1437.de/2011/09/25/piroschki-wie-von-schwiegermuttern/facebook/python-sdk - GitHubhttps://www.rfc1437.de/2011/09/23/facebookpython-sdk-github/Django Facebook 2.0 – Integrating Facebookhttps://www.rfc1437.de/2011/09/23/django-facebook-2-0-e2-80-93-integrating-facebook/Photosmith - the iPad mobile companion for Adobe Lightroom | Latest news, challenges, and progress from the developers.https://www.rfc1437.de/2011/09/23/photosmith-the-ipad-mobile-companion-for-adobe-lightroom-latest-news-challenges-and-progress-from-the-developers/Adobe Lightroom - Customising Camera Defaultshttps://www.rfc1437.de/2011/09/23/adobe-lightroom-customising-camera-defaults/Dalienkorso in Legdenhttps://www.rfc1437.de/2011/09/22/dalienkorso-in-legden/nathanmarz/storm - GitHubhttps://www.rfc1437.de/2011/09/21/nathanmarzstorm-github/Nikon Announces J1 and V1 Mirrorless Cameras and New Lens Systemhttps://www.rfc1437.de/2011/09/21/nikon-announces-j1-and-v1-mirrorless-cameras-and-new-lens-system/PLEAC-Objective CAMLhttps://www.rfc1437.de/2011/09/19/pleac-objective-caml/Sony NEX-7 First Impressionshttps://www.rfc1437.de/2011/09/19/sony-nex-7-first-impressions/Offline Web Applications - Dive Into HTML5https://www.rfc1437.de/2011/09/16/offline-web-applications-dive-into-html5/Ricoh GR Digital IV Preview: 1. Introduction: Digital Photography Reviewhttps://www.rfc1437.de/2011/09/15/ricoh-gr-digital-iv-preview-1-introduction-digital-photography-review/albertz/Pyjector - GitHubhttps://www.rfc1437.de/2011/09/14/albertzpyjector-github/Kritik an Notdienst-Organisation:\_Notdienst schickte Augenkranke 37 Kilometer aufs Land\_-\_ Münstersche Zeitunghttps://www.rfc1437.de/2011/09/14/kritik-an-notdienst-organisation-c2-a0notdienst-schickte-augenkranke-37-kilometer-aufs-land-c2-a0-c2-a0-munstersche-zeitung/Euro-Krise: China bietet Hilfe an und will Gegenleistungen | tagesschau.dehttps://www.rfc1437.de/2011/09/14/euro-krise-china-bietet-hilfe-an-und-will-gegenleistungen-tagesschau-de/Ausflug nach Bremenhttps://www.rfc1437.de/2011/09/11/bremen/Neulich auf Flickrhttps://www.rfc1437.de/2011/09/08/neulich-auf-flickr-5/Adobe announces Carousel - cloud-based image service: Digital Photography Reviewhttps://www.rfc1437.de/2011/09/08/adobe-announces-carousel-cloud-based-image-service-digital-photography-review/WordPress › 2 Click Social Media Buttons « WordPress Pluginshttps://www.rfc1437.de/2011/09/07/wordpress-e2-80-ba-2-click-social-media-buttons-c2-ab-wordpress-plugins/WordPress › Social Opt In « WordPress Pluginshttps://www.rfc1437.de/2011/09/04/wordpress-e2-80-ba-social-opt-in-c2-ab-wordpress-plugins/Wir haben geheiratethttps://www.rfc1437.de/2011/09/04/wir-haben-geheiratet/SCO verliert endgültig gegen Novellhttps://www.rfc1437.de/2011/08/31/sco-verliert-endgultig-gegen-novell/Panasonic launches Lumix G X Vario PZ 14-42mm F3.5-5.6 OIS pancake: Digital Photography Reviewhttps://www.rfc1437.de/2011/08/26/panasonic-launches-lumix-g-x-vario-pz-14-42mm-f3-5-5-6-ois-pancake-digital-photography-review/Rote Grützehttps://www.rfc1437.de/2011/08/25/rote-grutze/Sony-August-2011-New-Productshttps://www.rfc1437.de/2011/08/24/sony-august-2011-new-products/PyPy Status Blog: We need Software Transactional Memoryhttps://www.rfc1437.de/2011/08/23/pypy-status-blog-we-need-software-transactional-memory/Setup services on your Pod - GitHubhttps://www.rfc1437.de/2011/08/23/setup-services-on-your-pod-github/Why Im not on Google Plus - Charlies Diaryhttps://www.rfc1437.de/2011/08/23/why-im-not-on-google-plus-charlies-diary/Luban: a generic “language” for creating user interface — luban v0.2 documentationhttps://www.rfc1437.de/2011/08/22/luban-a-generic-e2-80-9clanguage-e2-80-9d-for-creating-user-interface-e2-80-94-luban-v0-2-documentation/Mystische Kreaturenhttps://www.rfc1437.de/2011/08/21/mystische-kreaturen/Sony NEX-7 full specs and images | Photo Rumorshttps://www.rfc1437.de/2011/08/21/sony-nex-7-full-specs-and-images-photo-rumors/Nachtflohmarkthttps://www.rfc1437.de/2011/08/20/nachtflohmarkt/PyPy Status Blog: PyPy 1.6 - kickass pandahttps://www.rfc1437.de/2011/08/19/pypy-status-blog-pypy-1-6-kickass-panda/Markt in Münsterhttps://www.rfc1437.de/2011/08/19/markt-in-munster/Breaking: HP Makes Big Shift on WebOS, Exiting Hardware Business - Ina Fried - Mobile - AllThingsDhttps://www.rfc1437.de/2011/08/18/breaking-hp-makes-big-shift-on-webos-exiting-hardware-business-ina-fried-mobile-allthingsd/The Python Standard Library By Example - Doug Hellmannhttps://www.rfc1437.de/2011/08/18/the-python-standard-library-by-example-doug-hellmann/Python and fileinput - All thishttps://www.rfc1437.de/2011/08/18/python-and-fileinput-all-this/Libre - Home > Tools > GNAT GPL for LEGO MINDSTORMS NXT – Ravenscar Editionhttps://www.rfc1437.de/2011/08/17/libre-home-tools-gnat-gpl-for-lego-mindstorms-nxt-e2-80-93-ravenscar-edition/Cross-domain communications with JSONP, Part 1: Combine JSONP and jQuery to quickly build powerful mashupshttps://www.rfc1437.de/2011/08/17/cross-domain-communications-with-jsonp-part-1-combine-jsonp-and-jquery-to-quickly-build-powerful-mashups/ipdbhttps://www.rfc1437.de/2011/08/17/ipdb/Official Google Blog: Supercharging Android: Google to Acquire Motorola Mobilityhttps://www.rfc1437.de/2011/08/15/official-google-blog-supercharging-android-google-to-acquire-motorola-mobility/Schneier on Security: New, Undeletable, Web Cookiehttps://www.rfc1437.de/2011/08/15/schneier-on-security-new-undeletable-web-cookie/Wildgulaschtopfhttps://www.rfc1437.de/2011/08/13/wildgulaschtopf/rad2py - Rapid Aplication Development platform for python - Google Project Hostinghttps://www.rfc1437.de/2011/08/12/rad2py-rapid-aplication-development-platform-for-python-google-project-hosting/RMoD: Fuelhttps://www.rfc1437.de/2011/08/12/rmod-fuel/SandstoneDb, Simple ActiveRecord Style Persistence in Squeakhttps://www.rfc1437.de/2011/08/12/sandstonedb-simple-activerecord-style-persistence-in-squeak/Coral — Pharo Smalltalk for scriptinghttps://www.rfc1437.de/2011/08/12/coral-e2-80-94-pharo-smalltalk-for-scripting/tode - tODE - the Object centric Development Environment - Google Project Hostinghttps://www.rfc1437.de/2011/08/12/tode-tode-the-object-centric-development-environment-google-project-hosting/CouchDB: Die Definitive Referenzhttps://www.rfc1437.de/2011/08/10/couchdb-die-definitive-referenz/Overview - Installable Web Apps - Google Codehttps://www.rfc1437.de/2011/08/10/overview-installable-web-apps-google-code/Privacy Fail: How Facebook Steals Your Friends Phone Numbers | Kurt von Moos.comhttps://www.rfc1437.de/2011/08/10/privacy-fail-how-facebook-steals-your-friends-phone-numbers-kurt-von-moos-com/Kindle Cloud Readerhttps://www.rfc1437.de/2011/08/10/kindle-cloud-reader/mutle/vim.safariextension - GitHubhttps://www.rfc1437.de/2011/08/09/mutlevim-safariextension-github/vimlike-onsafari - Safari keybind changes like VIM. - Google Project Hostinghttps://www.rfc1437.de/2011/08/09/vimlike-onsafari-safari-keybind-changes-like-vim-google-project-hosting/Update on UIKit lighthouse platformhttps://www.rfc1437.de/2011/08/09/update-on-uikit-lighthouse-platform/Time Machine - Frequently Asked Questions 30. What are Local Snapshots?https://www.rfc1437.de/2011/08/09/time-machine-frequently-asked-questions-30-what-are-local-snapshots/Telefontarife können einem echt den Spaß verderbenhttps://www.rfc1437.de/2011/08/08/telefontarife-konnen-einen-echt-den-spas-verderben/Map Tunneling Toolhttps://www.rfc1437.de/2011/08/08/map-tunneling-tool/Sankra Software: Disable OS X Lion Resume per applicationhttps://www.rfc1437.de/2011/08/08/sankra-software-disable-os-x-lion-resume-per-application/Modula-3 Resource Pagehttps://www.rfc1437.de/2011/08/08/modula-3-resource-page/Magpie Guide: Welcomehttps://www.rfc1437.de/2011/08/08/magpie-guide-welcome/Straßenfest Hammer Straße 2011https://www.rfc1437.de/2011/08/07/strasenfest-hammer-strase-2011/Internet-Law » Friedrich uns graut vor Dirhttps://www.rfc1437.de/2011/08/07/internet-law-c2-bb-friedrich-uns-graut-vor-dir/the "useless" languagehttps://www.rfc1437.de/2011/08/07/the-useless-language/Groklaw - A Brief Explanation of Microsofts Anti-Google Patent FUD ~ by pjhttps://www.rfc1437.de/2011/08/06/groklaw-a-brief-explanation-of-microsofts-anti-google-patent-fud-by-pj/Ricoh GXR Mount A12 Previewhttps://www.rfc1437.de/2011/08/05/ricoh-gxr-mount-a12-preview/Xcode4 / Objective Pascal - Available Fileshttps://www.rfc1437.de/2011/08/03/xcode4-objective-pascal-available-files/extpascal - Ext JS wrapper for Object Pascal - Google Project Hostinghttps://www.rfc1437.de/2011/08/03/extpascal-ext-js-wrapper-for-object-pascal-google-project-hosting/sausage.js - examples - The Core APIhttps://www.rfc1437.de/2011/08/03/sausage-js-examples-the-core-api/Okito.net — On SproutCore 2.0https://www.rfc1437.de/2011/08/03/okito-net-e2-80-94-on-sproutcore-2-0/Pascal Script | RemObjects Softwarehttps://www.rfc1437.de/2011/08/03/pascal-script-remobjects-software/Killer rat daubs fur with poison-arrow plant toxins - life - 03 August 2011 - New Scientisthttps://www.rfc1437.de/2011/08/03/killer-rat-daubs-fur-with-poison-arrow-plant-toxins-life-03-august-2011-new-scientist/Get Started Guide « PhoneGaphttps://www.rfc1437.de/2011/08/01/get-started-guide-c2-ab-phonegap/Python, SymPy and Quantum Physicshttps://www.rfc1437.de/2011/08/01/python-sympy-and-quantum-physics/Blues Jam im Bunten Vogelhttps://www.rfc1437.de/2011/08/01/blues-jam-im-bunten-vogel/wsgi_litehttps://www.rfc1437.de/2011/08/01/wsgi-lite/Allergologie :: Allergene Allergien allergologisch allergischhttps://www.rfc1437.de/2011/07/31/allergologie-allergene-allergien-allergologisch-allergisch/pyglet 1.1.3 fails on Snow Leopard with python 2.6 snow leopards default - Cross-platform windowing and multimedia library for Python. - Google Project Hostinghttps://www.rfc1437.de/2011/07/31/pyglet-1-1-3-fails-on-snow-leopard-with-python-2-6-snow-leopards-default-cross-platform-windowing-and-multimedia-library-for-python-google-project-hosting/Innovations in\_iPythonhttps://www.rfc1437.de/2011/07/31/innovations-in-c2-a0ipython/Kunst trifft Kohlhttps://www.rfc1437.de/2011/07/31/kunst-trifft-kohl/WSGI and the Pluggable Pipe Dream | Armin Ronachers Thoughts and Writingshttps://www.rfc1437.de/2011/07/29/wsgi-and-the-pluggable-pipe-dream-armin-ronachers-thoughts-and-writings/Gambas - Gambas Almost Means Basichttps://www.rfc1437.de/2011/07/29/gambas-gambas-almost-means-basic/TL Omnis - Omnis Downloadshttps://www.rfc1437.de/2011/07/29/tl-omnis-omnis-downloads/Lazarushttps://www.rfc1437.de/2011/07/29/lazarus/HyperNext Studiohttps://www.rfc1437.de/2011/07/29/hypernext-studio/Whalesong: a Racket to JavaScript compilerhttps://www.rfc1437.de/2011/07/29/whalesong-a-racket-to-javascript-compiler/WebKit in PyQt - rendering web pageshttps://www.rfc1437.de/2011/07/29/webkit-in-pyqt-rendering-web-pages/Anonymous und LulzSec: "Sperrt eure PayPal-Konten" - Netzpolitik - derStandard.at › Webhttps://www.rfc1437.de/2011/07/28/anonymous-und-lulzsec-sperrt-eure-paypal-konten-netzpolitik-derstandard-at-e2-80-ba-web/CodeMirrorhttps://www.rfc1437.de/2011/07/27/codemirror/Harbour Project - Homehttps://www.rfc1437.de/2011/07/27/harbour-project-home/Orange - Data Mining Fruitful & Funhttps://www.rfc1437.de/2011/07/27/orange-data-mining-fruitful-fun/Sage: Open Source Mathematics Softwarehttps://www.rfc1437.de/2011/07/27/sage-open-source-mathematics-software/The Xavisys WordPress Plugin Framework - Xavisyshttps://www.rfc1437.de/2011/07/27/the-xavisys-wordpress-plugin-framework-xavisys/BuddyPress.orghttps://www.rfc1437.de/2011/07/27/buddypress-org/On Safarihttps://www.rfc1437.de/2011/07/27/on-safari/EL34 - The home of Eddie - Abouthttps://www.rfc1437.de/2011/07/27/el34-the-home-of-eddie-about/Ultimatum: Paypal will in Deutschland Kuba-Embargo durchdrücken - Golem.dehttps://www.rfc1437.de/2011/07/27/ultimatum-paypal-will-in-deutschland-kuba-embargo-durchdrucken-golem-de/Creating Apps Using AppleScript Objective-Chttps://www.rfc1437.de/2011/07/26/creating-apps-using-applescript-objective-c/SuperCard on Lionhttps://www.rfc1437.de/2011/07/26/supercard-on-lion/Mac\_OS\_X 10.7 Lion Automation Release Noteshttps://www.rfc1437.de/2011/07/26/mac-c2-a0os-c2-a0x-10-7-lion-automation-release-notes/Meedia: Meck-Pomms CDU wirbt mit “C wie Zukunft”https://www.rfc1437.de/2011/07/25/meedia-meck-pomms-cdu-wirbt-mit-e2-80-9cc-wie-zukunft-e2-80-9d/Trunk Notes | Apps On The Movehttps://www.rfc1437.de/2011/07/25/trunk-notes-apps-on-the-move/Die seltsamen Fakten des Herrn Uhl - mrtopf.dehttps://www.rfc1437.de/2011/07/25/die-seltsamen-fakten-des-herrn-uhl-mrtopf-de/XMPPFLASK — XmppFlask v0.1 documentationhttps://www.rfc1437.de/2011/07/25/xmppflask-e2-80-94-xmppflask-v0-1-documentation/Social Networks und meine Nutzung von denselbenhttps://www.rfc1437.de/2011/07/25/social-networks-und-meine-nutzung-von-denselben/flot - Attractive Javascript plotting for jQuery - Google Project Hostinghttps://www.rfc1437.de/2011/07/25/flot-attractive-javascript-plotting-for-jquery-google-project-hosting/EVIL is Kinghttps://www.rfc1437.de/2011/07/24/evil-is-king/clojurescript demo convex hullhttps://www.rfc1437.de/2011/07/24/clojurescript-demo-convex-hull/Flurstücke 2011 - Généric Vapeurhttps://www.rfc1437.de/2011/07/23/flurstucke-2011-generic-vapeur/First Demonstration of Time Cloaking\_ - Technology Reviewhttps://www.rfc1437.de/2011/07/22/first-demonstration-of-time-cloaking-c2-a0-technology-review/Elements+https://www.rfc1437.de/2011/07/22/elements/Elemental - Integrating Photoshop Elements with Lightroomhttps://www.rfc1437.de/2011/07/22/elemental-integrating-photoshop-elements-with-lightroom/ShareMeNothttps://www.rfc1437.de/2011/07/20/sharemenot/Pattern Matching In Pythonhttps://www.rfc1437.de/2011/07/20/pattern-matching-in-python/Bash on Ballshttps://www.rfc1437.de/2011/07/20/bash-on-balls/FAQ - Kotlin - Confluencehttps://www.rfc1437.de/2011/07/20/faq-kotlin-confluence/Wenig Trauer um elektronisches Lohnmeldeverfahren ELENA | tagesschau.dehttps://www.rfc1437.de/2011/07/19/wenig-trauer-um-elektronisches-lohnmeldeverfahren-elena-tagesschau-de/Copiepresse: Googles Suchmaschine zeigt wieder belgische Zeitungen - Golem.dehttps://www.rfc1437.de/2011/07/19/copiepresse-googles-suchmaschine-zeigt-wieder-belgische-zeitungen-golem-de/WSGID When your WSGI app becomes a nix daemonhttps://www.rfc1437.de/2011/07/18/wsgid-when-your-wsgi-app-becomes-a-nix-daemon/Typekithttps://www.rfc1437.de/2011/07/18/typekit/Elnode - an Emacs version of node.jshttps://www.rfc1437.de/2011/07/18/elnode-an-emacs-version-of-node-js/Replication, atomicity and order in distributed systemshttps://www.rfc1437.de/2011/07/18/replication-atomicity-and-order-in-distributed-systems/Kivy: a crossplatform framework for creating NUI applicationshttps://www.rfc1437.de/2011/07/18/kivy-a-crossplatform-framework-for-creating-nui-applications/Simple, Secure, Scalable Web Development with Opahttps://www.rfc1437.de/2011/07/18/simple-secure-scalable-web-development-with-opa/Bulbflow: a New Python Framework for Graph Databaseshttps://www.rfc1437.de/2011/07/17/bulbflow-a-new-python-framework-for-graph-databases/Core Data - The Pragmatic Bookshelfhttps://www.rfc1437.de/2011/07/15/core-data-the-pragmatic-bookshelf/Scripts Tagged fluid - Userscripts.orghttps://www.rfc1437.de/2011/07/14/scripts-tagged-fluid-userscripts-org/Responsive Applications - Monohttps://www.rfc1437.de/2011/07/14/responsive-applications-mono/MonoMac und XCode 4https://www.rfc1437.de/2011/07/14/monotouch-news/Jtalk Smalltalkhttps://www.rfc1437.de/2011/07/13/jtalk-smalltalk/jQuery vs MooTools: Choosing Between Two Great JavaScript Frameworkshttps://www.rfc1437.de/2011/07/13/jquery-vs-mootools-choosing-between-two-great-javascript-frameworks/Aber da muss man doch was gegen tun! - Die Raummaschinehttps://www.rfc1437.de/2011/07/13/aber-da-muss-man-doch-was-gegen-tun-die-raummaschine/Google Plus RSS Feedshttps://www.rfc1437.de/2011/07/13/google-plus-rss-feeds/happy / overview – Bitbuckethttps://www.rfc1437.de/2011/07/13/happy-overview-e2-80-93-bitbucket/Pyrolog / overview – Bitbuckethttps://www.rfc1437.de/2011/07/13/pyrolog-overview-e2-80-93-bitbucket/The Node Beginner Book » A comprehensive Node.js tutorialhttps://www.rfc1437.de/2011/07/12/the-node-beginner-book-c2-bb-a-comprehensive-node-js-tutorial/JQuery-Wysiwym - PushingKarmahttps://www.rfc1437.de/2011/07/12/jquery-wysiwym-pushingkarma/pdf.js reached its first milestone < Chris Pitchin Heyhttps://www.rfc1437.de/2011/07/12/pdf-js-reached-its-first-milestone-chris-pitchin-hey/PDFKit — A PDF Generation Library for Nodehttps://www.rfc1437.de/2011/07/12/pdfkit-e2-80-94-a-pdf-generation-library-for-node/manuel/edgelisp - GitHubhttps://www.rfc1437.de/2011/07/12/manueledgelisp-github/paver/paver - GitHubhttps://www.rfc1437.de/2011/07/12/paverpaver-github/Uhrwerk in Hiltruphttps://www.rfc1437.de/2011/07/12/uhrwerk-in-hiltrup/PerlDancer - The easiest way to write web applications with Perlhttps://www.rfc1437.de/2011/07/11/perldancer-the-easiest-way-to-write-web-applications-with-perl/Tuning Your PostgreSQL Server - PostgreSQL wikihttps://www.rfc1437.de/2011/07/11/tuning-your-postgresql-server-postgresql-wiki/Max Pechstein im Ahlener Kunstmuseumhttps://www.rfc1437.de/2011/07/10/max-pechstein-im-ahlener-kunstmuseum/Datenschutz und Social Network Buttonshttps://www.rfc1437.de/2011/07/10/datenschutz-und-social-network-buttons/danlucraft/git.js - GitHubhttps://www.rfc1437.de/2011/07/10/danlucraftgit-js-github/Google+https://www.rfc1437.de/2011/07/09/google/Operation Quiche erfolgreichhttps://www.rfc1437.de/2011/07/08/operation-quiche-erfolgreich/Stiivi / cubes / overview – Bitbuckethttps://www.rfc1437.de/2011/07/08/stiivi-cubes-overview-e2-80-93-bitbucket/Tree for policy-settings-basic in MeeGo Multimedia - MeeGohttps://www.rfc1437.de/2011/07/08/tree-for-policy-settings-basic-in-meego-multimedia-meego/Auto Refresh Plus - Chrome Web Storehttps://www.rfc1437.de/2011/07/08/auto-refresh-plus-chrome-web-store/DropKick - a jQuery plugin for beautiful dropdownshttps://www.rfc1437.de/2011/07/07/dropkick-a-jquery-plugin-for-beautiful-dropdowns/WordPress 3.2 now availablehttps://www.rfc1437.de/2011/07/06/wordpress-3-2-now-available/Deshalb müssen wir Panzer an Saudi-Arabien verkaufen | Notizbloghttps://www.rfc1437.de/2011/07/06/deshalb-mussen-wir-panzer-an-saudi-arabien-verkaufen-notizblog/Prowl - iOS Push Notificationshttps://www.rfc1437.de/2011/07/06/prowl-ios-push-notifications/Google+: Facebook verhindert Export von Freunden - Golem.dehttps://www.rfc1437.de/2011/07/05/google-facebook-verhindert-export-von-freunden-golem-de/DSK: „Spiegel” beklagt Vorverurteilung « Stefan Niggemeierhttps://www.rfc1437.de/2011/07/04/dsk-e2-80-9espiegel-e2-80-9d-beklagt-vorverurteilung-c2-ab-stefan-niggemeier/realmacsoftwares Profile - GitHubhttps://www.rfc1437.de/2011/07/04/realmacsoftwares-profile-github/SiteMap Loghound.comhttps://www.rfc1437.de/2011/07/04/sitemap-loghound-com/PlusKit Loghound.comhttps://www.rfc1437.de/2011/07/04/pluskit-loghound-com/RapidScripthttps://www.rfc1437.de/2011/07/04/rapidscript/...und nebenan brennt das Reaktorgelände | G! - gutjahrs bloghttps://www.rfc1437.de/2011/07/04/und-nebenan-brennt-das-reaktorgelande-g-gutjahrs-blog/Sommerkonzert Millima Mabondehttps://www.rfc1437.de/2011/07/04/millima-mabonde/The Dropbox Blog » Blog Archive » Changes to our policies updatedhttps://www.rfc1437.de/2011/07/03/the-dropbox-blog-c2-bb-blog-archive-c2-bb-changes-to-our-policies-updated/Ubuntu Cron-Fehler - Module is unknown - nach libpam Upgrade Update - Systemdateien - administratorhttps://www.rfc1437.de/2011/07/02/ubuntu-cron-fehler-module-is-unknown-nach-libpam-upgrade-update-systemdateien-administrator/Digitalkameras: Ricoh kauft Pentax - Golem.dehttps://www.rfc1437.de/2011/07/01/digitalkameras-ricoh-kauft-pentax-golem-de/Abstiegsszenariohttps://www.rfc1437.de/2011/06/30/abstiegsszenario/Opa: Advancing web development to the next generationhttps://www.rfc1437.de/2011/06/30/opa-advancing-web-development-to-the-next-generation/SymPyhttps://www.rfc1437.de/2011/06/30/sympy/PyPy Status Blog: Global Interpreter Lock, or how to kill ithttps://www.rfc1437.de/2011/06/30/pypy-status-blog-global-interpreter-lock-or-how-to-kill-it/BBC News - Great Exhibition faces London 2012 legal actionhttps://www.rfc1437.de/2011/06/29/bbc-news-great-exhibition-faces-london-2012-legal-action/jsPlumb demo - jQueryhttps://www.rfc1437.de/2011/06/29/jsplumb-demo-jquery/Paper.js — Paper.jshttps://www.rfc1437.de/2011/06/28/paper-js-e2-80-94-paper-js/Installing gitorious on Ubuntu 10.04https://www.rfc1437.de/2011/06/27/installing-gitorious-on-ubuntu/Sync BitBucket and GitHub - Ramanas Bloghttps://www.rfc1437.de/2011/06/27/sync-bitbucket-and-github-ramanas-blog/Issue Buckethttps://www.rfc1437.de/2011/06/27/issue-bucket/iOctocat is your GitHub companion for the iPhone and iPod Touchhttps://www.rfc1437.de/2011/06/27/ioctocat-is-your-github-companion-for-the-iphone-and-ipod-touch/thecodejunkie/Nancy - GitHubhttps://www.rfc1437.de/2011/06/27/thecodejunkienancy-github/Bistrohttps://www.rfc1437.de/2011/06/27/bistro/scalatra/scalatra - GitHubhttps://www.rfc1437.de/2011/06/27/scalatrascalatra-github/Ausflug nach Enschedehttps://www.rfc1437.de/2011/06/26/enschede/Send in Münsterhttps://www.rfc1437.de/2011/06/25/send-in-muenster/The Larch Environmenthttps://www.rfc1437.de/2011/06/24/the-larch-environment/django-gae2django - Django-based implementation of App Engine APIs - Google Project Hostinghttps://www.rfc1437.de/2011/06/24/django-gae2django-django-based-implementation-of-app-engine-apis-google-project-hosting/DocumentClouds VisualSearch.jshttps://www.rfc1437.de/2011/06/24/documentclouds-visualsearch-js/Journey North: Monarch Butterflyhttps://www.rfc1437.de/2011/06/24/journey-north-monarch-butterfly/Ein Besuch im Zoohttps://www.rfc1437.de/2011/06/23/im-zoo/The Online Photographer: The Pentax Q Systemhttps://www.rfc1437.de/2011/06/23/the-online-photographer-the-pentax-q-system/SourceTree | Mercurial and Git GUI for Mac OS Xhttps://www.rfc1437.de/2011/06/23/sourcetree-mercurial-and-git-gui-for-mac-os-x-2/GitHub for Machttps://www.rfc1437.de/2011/06/23/github-for-mac/traits.js - Traits for Javascripthttps://www.rfc1437.de/2011/06/22/traits-js-traits-for-javascript/Technical Discovery: Speeding up Python NumPy, Cython, and Weavehttps://www.rfc1437.de/2011/06/22/technical-discovery-speeding-up-python-numpy-cython-and-weave/Circus Ponies NoteBook for iPad - Take Great Noteshttps://www.rfc1437.de/2011/06/22/circus-ponies-notebook-for-ipad-take-great-notes/OmniOutliner for iPad - Products - The Omni Grouphttps://www.rfc1437.de/2011/06/22/omnioutliner-for-ipad-products-the-omni-group/Leos Home Pagehttps://www.rfc1437.de/2011/06/22/leos-home-page/Brennender Berg – Wikipediahttps://www.rfc1437.de/2011/06/22/brennender-berg-e2-80-93-wikipedia/Firefox Add-on Builder and SDKhttps://www.rfc1437.de/2011/06/22/firefox-add-on-builder-and-sdk/Firmware 04 für Sony NEX Kamerashttps://www.rfc1437.de/2011/06/22/firmware-04-fur-sony-nex-kameras/Python/Harmattan - MeeGo wikihttps://www.rfc1437.de/2011/06/22/pythonharmattan-meego-wiki/Nokia N9 first hands-on! update: video -- Engadgethttps://www.rfc1437.de/2011/06/22/nokia-n9-first-hands-on-update-video-engadget/gcc python plugin and static analyser for CPython sources - comp.lang.python.announce | Google Groupshttps://www.rfc1437.de/2011/06/22/gcc-python-plugin-and-static-analyser-for-cpython-sources-comp-lang-python-announce-google-groups/Dirty lens articlehttps://www.rfc1437.de/2011/06/22/dirty-lens-article/Verleger reichen Klage gegen Tagesschau-App ein | tagesschau.dehttps://www.rfc1437.de/2011/06/21/verleger-reichen-klage-gegen-tagesschau-app-ein-tagesschau-de/The story of the Gömböc | plus.maths.orghttps://www.rfc1437.de/2011/06/20/the-story-of-the-gomboc-plus-maths-org/LR/Blog – Export directly from Lightroom 2 to your Blog!Photographers Toolbox | Photographers Toolboxhttps://www.rfc1437.de/2011/06/20/lrblog-e2-80-93-export-directly-from-lightroom-2-to-your-blogphotographers-toolbox-photographers-toolbox/What Is Inside A Cathttps://www.rfc1437.de/2011/06/20/what-is-inside-a-cat/SparkleShare - Sharing work made easyhttps://www.rfc1437.de/2011/06/20/sparkleshare-sharing-work-made-easy/Gesundheitsreform: Zahnbehandlungen sollen teuer werden | Wirtschaft | ZEIT ONLINEhttps://www.rfc1437.de/2011/06/19/gesundheitsreform-zahnbehandlungen-sollen-teuer-werden-wirtschaft-zeit-online/SONY PRS-505 Firmware-Update + Customizing - MobileRead Forumshttps://www.rfc1437.de/2011/06/19/sony-prs-505-firmware-update-customizing-mobileread-forums/Bundeswehr-Dozent: Plagiator gibt den Doktortitel zurück | Studium\_- Frankfurter Rundschauhttps://www.rfc1437.de/2011/06/19/bundeswehr-dozent-plagiator-gibt-den-doktortitel-zuruck-studium-c2-a0-frankfurter-rundschau/Der Postillon: Der Postillon erklärt: Was kann das Nationale Cyber-Abwehrzentrum?https://www.rfc1437.de/2011/06/19/der-postillon-der-postillon-erklart-was-kann-das-nationale-cyber-abwehrzentrum/Honeybees Might Have Emotions | Wired Science | Wired.comhttps://www.rfc1437.de/2011/06/18/honeybees-might-have-emotions-wired-science-wired-com/Skulpthttps://www.rfc1437.de/2011/06/16/skulpt/MAXIMAhttps://www.rfc1437.de/2011/06/15/maxima/JQuery Form Wizardhttps://www.rfc1437.de/2011/06/15/jquery-form-wizard/josevalim/elixir - GitHubhttps://www.rfc1437.de/2011/06/15/josevalimelixir-github/HTC Desire wont be getting an official Gingerbread update | Android Centralhttps://www.rfc1437.de/2011/06/15/htc-desire-wont-be-getting-an-official-gingerbread-update-android-central/Tumult Hypehttps://www.rfc1437.de/2011/06/14/tumult-hype/ccons - Interactive Console for the C Programming Language - Google Project Hostinghttps://www.rfc1437.de/2011/06/14/ccons-interactive-console-for-the-c-programming-language-google-project-hosting/Asciiflow - ASCII Flow Diagram Toolhttps://www.rfc1437.de/2011/06/14/asciiflow-ascii-flow-diagram-tool/Black Stone Raidershttps://www.rfc1437.de/2011/06/11/black-stone-raiders/Grünflächenunterhaltunghttps://www.rfc1437.de/2011/06/11/gruenflaechenunterhaltung/burrahobbithttps://www.rfc1437.de/2011/06/11/burrahobbit/Bonnhttps://www.rfc1437.de/2011/06/08/bonn/Neulich auf Flickrhttps://www.rfc1437.de/2011/06/07/neulich-auf-flickr-4/Cloud9 meets Bitbucket - Cloud9 IDEs Posteroushttps://www.rfc1437.de/2011/06/07/cloud9-meets-bitbucket-cloud9-ides-posterous/Metaverse Ink Blog» Blog Archive » The 4,096 “bug”https://www.rfc1437.de/2011/06/05/metaverse-ink-blog-c2-bb-blog-archive-c2-bb-the-4096-e2-80-9cbug-e2-80-9d/Why arent you using git-flow? - Jeff Kreeftmeijerhttps://www.rfc1437.de/2011/06/05/why-arent-you-using-git-flow-jeff-kreeftmeijer/Comparison to Python | Cobrahttps://www.rfc1437.de/2011/06/04/comparison-to-python-cobra/Clack - Web Application Environment for Common Lisphttps://www.rfc1437.de/2011/06/04/clack-web-application-environment-for-common-lisp/Polycodehttps://www.rfc1437.de/2011/06/04/polycode/CouchDB: The Definitive Guidehttps://www.rfc1437.de/2011/06/01/couchdb-the-definitive-guide/Simple JavaScript Applications with CouchDB - CouchApp.orghttps://www.rfc1437.de/2011/06/01/simple-javascript-applications-with-couchdb-couchapp-org/Its About The Hashbangshttps://www.rfc1437.de/2011/06/01/its-about-the-hashbangs/Function Reference/site url « WordPress Codexhttps://www.rfc1437.de/2011/05/31/function-referencesite-url-c2-ab-wordpress-codex/Shedding Bikes: Programming Culture And Philosophyhttps://www.rfc1437.de/2011/05/31/shedding-bikes-programming-culture-and-philosophy/SSL and Cookies in WordPress 2.6 « Ryan Borenhttps://www.rfc1437.de/2011/05/30/ssl-and-cookies-in-wordpress-2-6-c2-ab-ryan-boren/cloud9https://www.rfc1437.de/2011/05/30/cloud9/Hackers broke into Lockheed Martin: source - Technology & science - Security - msnbc.comhttps://www.rfc1437.de/2011/05/28/hackers-broke-into-lockheed-martin-source-technology-science-security-msnbc-com/Spring cleaning for some of our APIs - The official Google Code bloghttps://www.rfc1437.de/2011/05/28/spring-cleaning-for-some-of-our-apis-the-official-google-code-blog/IPhone PPTP VPN – GRE Protokoll Probleme | it-fabrik bloghttps://www.rfc1437.de/2011/05/27/iphone-pptp-vpn-e2-80-93-gre-protokoll-probleme-it-fabrik-blog/remvee/clj-android - GitHubhttps://www.rfc1437.de/2011/05/27/remveeclj-android-github/scalaforandroid - Scala for Android - Google Project Hostinghttps://www.rfc1437.de/2011/05/27/scalaforandroid-scala-for-android-google-project-hosting/mirah/pindah - GitHubhttps://www.rfc1437.de/2011/05/27/mirahpindah-github/Ruboto: Ruby on Androidhttps://www.rfc1437.de/2011/05/27/ruboto-ruby-on-android/Rubotohttps://www.rfc1437.de/2011/05/26/ruboto/MS Optical Super Triplet Perar 3.5/35 Mark II | japan exposureshttps://www.rfc1437.de/2011/05/25/ms-optical-super-triplet-perar-3-535-mark-ii-japan-exposures/Zotonic's Hot Features — Zotonichttps://www.rfc1437.de/2011/05/25/zotonics-hot-features-e2-80-94-zotonic/hij1nx/SugarSkull - GitHubhttps://www.rfc1437.de/2011/05/25/hij1nxsugarskull-github/Seesaw - GitHubhttps://www.rfc1437.de/2011/05/25/seesaw-github/Tequila Suicide | Blogrebellen Kreuzberghttps://www.rfc1437.de/2011/05/25/tequila-suicide-blogrebellen-kreuzberg/Single Page Apps with Node.js. - blog.nodejitsu.com - scaling node.js applications one callback at a time.https://www.rfc1437.de/2011/05/23/single-page-apps-with-node-js-blog-nodejitsu-com-scaling-node-js-applications-one-callback-at-a-time/llama font - say it in llamahttps://www.rfc1437.de/2011/05/23/llama-font-say-it-in-llama/FredHQ - Roundabout for jQuery by Fred LeBlanchttps://www.rfc1437.de/2011/05/23/fredhq-roundabout-for-jquery-by-fred-leblanc/Servergate - geht garnicht.https://www.rfc1437.de/2011/05/21/servergate-geht-garnicht/Cloud Foundry - Make it Yours!https://www.rfc1437.de/2011/05/20/cloud-foundry-make-it-yours/AndTidWiki | mgBloghttps://www.rfc1437.de/2011/05/20/andtidwiki-mgblog/Introducing JetBrains dotPeek - dotPeek - Confluencehttps://www.rfc1437.de/2011/05/20/introducing-jetbrains-dotpeek-dotpeek-confluence/TiddlySpace/tiddlyspace - GitHubhttps://www.rfc1437.de/2011/05/19/tiddlyspacetiddlyspace-github/TWMobilehttps://www.rfc1437.de/2011/05/19/twmobile/QuickSilver Networkhttps://www.rfc1437.de/2011/05/19/quicksilver-network/Urteil: Sharehoster müssen externe Linksammlungen prüfen - Golem.dehttps://www.rfc1437.de/2011/05/18/urteil-sharehoster-mussen-externe-linksammlungen-prufen-golem-de/On TermKit | Steven Wittens - Acko.nethttps://www.rfc1437.de/2011/05/18/on-termkit-steven-wittens-acko-net/AI art | painting robot | art | expert systemshttps://www.rfc1437.de/2011/05/18/ai-art-painting-robot-art-expert-systems/xmlisp - eXtreme Media Lisp: Rich media cross-platform programming for 3D (OpenGL) and 2D applications - Google Project Hostinghttps://www.rfc1437.de/2011/05/18/xmlisp-extreme-media-lisp-rich-media-cross-platform-programming-for-3d-opengl-and-2d-applications-google-project-hosting/MilkPack - Edgar Gonçalveshttps://www.rfc1437.de/2011/05/18/milkpack-edgar-goncalves/michaelmacinnis/oh - GitHubhttps://www.rfc1437.de/2011/05/18/michaelmacinnisoh-github/Javascript PC Emulator - Technical Noteshttps://www.rfc1437.de/2011/05/18/javascript-pc-emulator-technical-notes/Infinite Scroll « WordPress Pluginshttps://www.rfc1437.de/2011/05/18/infinite-scroll-c2-ab-wordpress-plugins/Lightroom Developer Center | Adobe Developer Connectionhttps://www.rfc1437.de/2011/05/17/lightroom-developer-center-adobe-developer-connection/Neulich auf Flickrhttps://www.rfc1437.de/2011/05/16/neulich-auf-flickr-3/Microsoft Small Basichttps://www.rfc1437.de/2011/05/16/microsoft-small-basic/WordPress › Pressbox « WordPress Pluginshttps://www.rfc1437.de/2011/05/16/wordpress-e2-80-ba-pressbox-c2-ab-wordpress-plugins/Teures Gesundheitswesen: Kassen rechnen mit\_Zusatzbeitrag von 70 Euro - SPIEGEL ONLINE - Nachrichten - Wirtschafthttps://www.rfc1437.de/2011/05/16/teures-gesundheitswesen-kassen-rechnen-mit-c2-a0zusatzbeitrag-von-70-euro-spiegel-online-nachrichten-wirtschaft/Leistungsschutzrecht: Bundesjustizministerin über eine Abgabenpflicht für Zitate - Golem.dehttps://www.rfc1437.de/2011/05/16/leistungsschutzrecht-bundesjustizministerin-uber-eine-abgabenpflicht-fur-zitate-golem-de/ZenphotoPress « WordPress Pluginshttps://www.rfc1437.de/2011/05/16/zenphotopress-c2-ab-wordpress-plugins/From Me To Youhttps://www.rfc1437.de/2011/05/16/from-me-to-you/Dropbox Lied to Users About Data Security, Complaint to FTC Alleges | Threat Level | Wired.comhttps://www.rfc1437.de/2011/05/15/dropbox-lied-to-users-about-data-security-complaint-to-ftc-alleges-threat-level-wired-com/match Technical Serviceshttps://www.rfc1437.de/2011/05/15/match-technical-services/Variochromat Homepagehttps://www.rfc1437.de/2011/05/15/variochromat-homepage/The Best Street Photographer You've Never Heard Of | Mother Joneshttps://www.rfc1437.de/2011/05/15/the-best-street-photographer-youve-never-heard-of-mother-jones/Stadtspaziergang mal wiederhttps://www.rfc1437.de/2011/05/14/stadtspaziergang-mal-wieder/Rund um den Stadthafenhttps://www.rfc1437.de/2011/05/14/rund-um-den-stadthafen/Writing Plugins for gedit 3 with Pythonhttps://www.rfc1437.de/2011/05/13/writing-plugins-for-gedit-3-with-python/Python Interpreter by Noam Gat -- Unity Asset Storehttps://www.rfc1437.de/2011/05/13/python-interpreter-by-noam-gat-unity-asset-store/micromongo — micromongo v0.1 documentationhttps://www.rfc1437.de/2011/05/13/micromongo-e2-80-94-micromongo-v0-1-documentation/execnet v1.0.9 documentationhttps://www.rfc1437.de/2011/05/13/execnet-v1-0-9-documentation/Home | Read the Docshttps://www.rfc1437.de/2011/05/13/home-read-the-docs/Mochi Labs - statebox, an eventually consistent data model for Erlang (and Riak)https://www.rfc1437.de/2011/05/13/mochi-labs-statebox-an-eventually-consistent-data-model-for-erlang-and-riak/pmundkur/odisco - GitHubhttps://www.rfc1437.de/2011/05/13/pmundkurodisco-github/Überlegungen zu Datenschutz, Kontrollverlust und anderen Dingenhttps://www.rfc1437.de/2011/05/13/uberlegungen-zu-datenschutz-kontrollverlust-und-anderen-dingen/Reinteract - Trachttps://www.rfc1437.de/2011/05/12/reinteract-trac/A successful Git branching model » nvie.comhttps://www.rfc1437.de/2011/05/12/a-successful-git-branching-model-c2-bb-nvie-com/counterclockwise - Counterclockwise is an Eclipse plugin helping developers write Clojure code - Google Project Hostinghttps://www.rfc1437.de/2011/05/12/counterclockwise-counterclockwise-is-an-eclipse-plugin-helping-developers-write-clojure-code-google-project-hosting/Typesafe - Overviewhttps://www.rfc1437.de/2011/05/12/typesafe-overview/LLVM Project Blog: What Every C Programmer Should Know About Undefined Behavior #1/3https://www.rfc1437.de/2011/05/12/llvm-project-blog-what-every-c-programmer-should-know-about-undefined-behavior-13/Wieder Kontrollen an deutsch-dänischer Grenze | tagesschau.dehttps://www.rfc1437.de/2011/05/11/wieder-kontrollen-an-deutsch-danischer-grenze-tagesschau-de/Twitter-Bilder: Verwirrung um Twitpic - Golem.dehttps://www.rfc1437.de/2011/05/11/twitter-bilder-verwirrung-um-twitpic-golem-de/RaptorDB - CodeProjecthttps://www.rfc1437.de/2011/05/11/raptordb-codeproject/App Engine Go Overview - Google App Engine - Google Codehttps://www.rfc1437.de/2011/05/11/app-engine-go-overview-google-app-engine-google-code/Owl Content » Blog Archive » Metaowl ist life!https://www.rfc1437.de/2011/05/10/owl-content-c2-bb-blog-archive-c2-bb-metaowl-ist-life/Microsoft Near Deal to Buy Skype for Nearly $8 Billion - WSJ.comhttps://www.rfc1437.de/2011/05/10/microsoft-near-deal-to-buy-skype-for-nearly-8-billion-wsj-com/The Ark In Space: Manul – the Cat that Time Forgothttps://www.rfc1437.de/2011/05/10/the-ark-in-space-manul-e2-80-93-the-cat-that-time-forgot/bconstantin / django_polymorphic / overview – Bitbuckethttps://www.rfc1437.de/2011/05/10/bconstantin-django-polymorphic-overview-e2-80-93-bitbucket/obensonne / hg-autosync / wiki / Home – Bitbuckethttps://www.rfc1437.de/2011/05/10/obensonne-hg-autosync-wiki-home-e2-80-93-bitbucket/The Visual Science Lab / Kirk Tuck: Approval. Tacit Approval. Implied Approval and "Street Photography."https://www.rfc1437.de/2011/05/10/the-visual-science-lab-kirk-tuck-approval-tacit-approval-implied-approval-and-street-photography/Mixing it up: when F# meets C#https://www.rfc1437.de/2011/05/10/mixing-it-up-when-f-meets-c/philikon / weaveclient-chromium / overview – Bitbuckethttps://www.rfc1437.de/2011/05/10/philikon-weaveclient-chromium-overview-e2-80-93-bitbucket-2/birkenfeld / karnickel / overview – Bitbuckethttps://www.rfc1437.de/2011/05/09/birkenfeld-karnickel-overview-e2-80-93-bitbucket/dyoo/moby-scheme - GitHubhttps://www.rfc1437.de/2011/05/09/dyoomoby-scheme-github/BLDGBLOG: Baarle-Hertoghttps://www.rfc1437.de/2011/05/09/bldgblog-baarle-hertog/Blurb Plug-In For Adobe Photoshop Lightroom 3 | Blurbhttps://www.rfc1437.de/2011/05/08/blurb-plug-in-for-adobe-photoshop-lightroom-3-blurb/Computer Science and Biology Come Together to Make Tree Identification a Snap | Newsdeskhttps://www.rfc1437.de/2011/05/08/computer-science-and-biology-come-together-to-make-tree-identification-a-snap-newsdesk/Wochenmarkt. Noch viel bunter.https://www.rfc1437.de/2011/05/07/wochenmarkt-noch-viel-bunter/Münster. Bunt.https://www.rfc1437.de/2011/05/07/munster-bunt/Acta: Lobbyisten wollen Acta-Prüfung durch den EuGH verhindern - Golem.dehttps://www.rfc1437.de/2011/05/06/acta-lobbyisten-wollen-acta-prufung-durch-den-eugh-verhindern-golem-de/Uni Bayreuth: Guttenberg hat absichtlich getäuscht | tagesschau.dehttps://www.rfc1437.de/2011/05/06/uni-bayreuth-guttenberg-hat-absichtlich-getauscht-tagesschau-de/Ralf Jäger: SPD-Innenminister will "sorgenfreie" Vorratsdatenspeicherung - Golem.dehttps://www.rfc1437.de/2011/05/06/ralf-jager-spd-innenminister-will-sorgenfreie-vorratsdatenspeicherung-golem-de/icylisper.in - jarkhttps://www.rfc1437.de/2011/05/06/icylisper-in-jark/Pygame Subset for Androidhttps://www.rfc1437.de/2011/05/06/home-e2-80-94-pygame-subset-for-android/android-scripting - Scripting Layer for Android brings scripting languages to Android. - Google Project Hostinghttps://www.rfc1437.de/2011/05/06/android-scripting-scripting-layer-for-android-brings-scripting-languages-to-android-google-project-hosting/PayPal Money Module « Snoopy Pfeffer’s Bloghttps://www.rfc1437.de/2011/05/06/paypal-money-module-c2-ab-snoopy-pfeffer-e2-80-99s-blog/SnoopyPfeffer/Mod-PayPal - GitHubhttps://www.rfc1437.de/2011/05/06/snoopypfeffermod-paypal-github/Tagbar, the Vim class browserhttps://www.rfc1437.de/2011/05/04/tagbar-the-vim-class-browser/ifttt / About ifttthttps://www.rfc1437.de/2011/05/04/ifttt-about-ifttt/Scala 2.9.0 RC3 | The Scala Programming Languagehttps://www.rfc1437.de/2011/05/04/scala-2-9-0-rc3-the-scala-programming-language/jQuery: » jQuery 1.6 Releasedhttps://www.rfc1437.de/2011/05/03/jquery-c2-bb-jquery-1-6-released/stanlemon.net : jgrowlhttps://www.rfc1437.de/2011/05/03/stanlemon-net-jgrowl/the m8 metadata projecthttps://www.rfc1437.de/2011/05/02/the-m8-metadata-project/inotify - get your file system supervisedhttps://www.rfc1437.de/2011/05/02/inotify-get-your-file-system-supervised/Ettenheim: Vergabe Kleinkunstpreis: Georg Schramm sorgt für Eklat im Europa-Park - badische-zeitung.dehttps://www.rfc1437.de/2011/05/01/ettenheim-vergabe-kleinkunstpreis-georg-schramm-sorgt-fur-eklat-im-europa-park-badische-zeitung-de/Aasee und Schloßgartenhttps://www.rfc1437.de/2011/05/01/aasee-und-schlosgarten/Taschentuchbaumhttps://www.rfc1437.de/2011/05/01/taschentuchbaum/UNO III Streetbike at Firebox.comhttps://www.rfc1437.de/2011/05/01/uno-iii-streetbike-at-firebox-com/Nubrella.comhttps://www.rfc1437.de/2011/05/01/nubrella-com/PyPy Status Blog: PyPy 1.5 Released: Catching Uphttps://www.rfc1437.de/2011/05/01/pypy-status-blog-pypy-1-5-released-catching-up/Neulich auf Flickrhttps://www.rfc1437.de/2011/04/30/neulich-auf-flickr-2/spock - The Chicken Scheme wikihttps://www.rfc1437.de/2011/04/29/spock-the-chicken-scheme-wiki/turbolent/ralph - GitHubhttps://www.rfc1437.de/2011/04/29/turbolentralph-github/Flusspferd - CommonJS platform | Javascript bindings for C++https://www.rfc1437.de/2011/04/29/flusspferd-commonjs-platform-javascript-bindings-for-c/PDP-11 emulatorhttps://www.rfc1437.de/2011/04/29/pdp-11-emulator/Nochmal iPhone Location Datenhttps://www.rfc1437.de/2011/04/29/nochmal-iphone-location-daten/Paper Airplanes | Paper Airplanes HQhttps://www.rfc1437.de/2011/04/28/paper-airplanes-paper-airplanes-hq/kiorky/spynner - GitHubhttps://www.rfc1437.de/2011/04/28/kiorkyspynner-github/IgniteInteractiveStudio/SLSharp - GitHubhttps://www.rfc1437.de/2011/04/28/igniteinteractivestudioslsharp-github/IronSchemehttps://www.rfc1437.de/2011/04/28/ironscheme/F Sharp Programming - Wikibooks, open books for an open worldhttps://www.rfc1437.de/2011/04/28/f-sharp-programming-wikibooks-open-books-for-an-open-world/Tomtom entschuldigt sich wegen Datenweitergabe für Radarfallenhttps://www.rfc1437.de/2011/04/28/tomtom-entschuldigt-sich-wegen-datenweitergabe-fur-radarfallen/Apple Q&A on Location Datahttps://www.rfc1437.de/2011/04/28/apple-qa-on-location-data/Neulich auf Flickrhttps://www.rfc1437.de/2011/04/27/neulich-auf-flickr/Home - Redline Smalltalk - Smalltalk for the Java Virtual Machine.https://www.rfc1437.de/2011/04/27/home-redline-smalltalk-smalltalk-for-the-java-virtual-machine/Comics by Nick St. Johnhttps://www.rfc1437.de/2011/04/27/comics-by-nick-st-john/Download Adobe Lens Profile Creator Preview - Adobe Labshttps://www.rfc1437.de/2011/04/27/download-adobe-lens-profile-creator-preview-adobe-labs/Geotagging: Fotospot macht Digitalkameras GPS-fähig - Golem.dehttps://www.rfc1437.de/2011/04/27/geotagging-fotospot-macht-digitalkameras-gps-fahig-golem-de/Folgenschwerer PSN-Hack: Persönliche Kundendaten kopiert - Golem.dehttps://www.rfc1437.de/2011/04/27/folgenschwerer-psn-hack-personliche-kundendaten-kopiert-golem-de/Photosmith – The Grand Tour | Photosmith – the iPad mobile companion for Adobe Lightroomhttps://www.rfc1437.de/2011/04/27/photosmith-e2-80-93-the-grand-tour-photosmith-e2-80-93-the-ipad-mobile-companion-for-adobe-lightroom/Lightroom Auto Sync: HOW to use ithttps://www.rfc1437.de/2011/04/27/lightroom-auto-sync-how-to-use-it/Piroggen (vegetarisch, und so garnicht russisch)https://www.rfc1437.de/2011/04/26/piroggen-vegetarisch-und-so-garnicht-russisch/The plan for mods : The Word of Notchhttps://www.rfc1437.de/2011/04/26/the-plan-for-mods-the-word-of-notch/tvon / python-wordpress / overview – Bitbuckethttps://www.rfc1437.de/2011/04/25/tvon-python-wordpress-overview-e2-80-93-bitbucket/Backing Up Flickrhttps://www.rfc1437.de/2011/04/25/backing-up-flickr/AWS Developer Forums: Life of our patients is at stake - I am ...https://www.rfc1437.de/2011/04/24/aws-developer-forums-life-of-our-patients-is-at-stake-i-am/Real World Minecrafthttps://www.rfc1437.de/2011/04/23/real-world-minecraft/iPhone consolidated.dbhttps://www.rfc1437.de/2011/04/22/iphone-consolidated-db/Leica Summilux 35mm / 1.4 ASPH FLEhttps://www.rfc1437.de/2011/04/22/leica-summilux-35mm-1-4-asph-fle/Münster bekennt Farbehttps://www.rfc1437.de/2011/04/22/munster-bekennt-farbe/Natur erobert Geschichtehttps://www.rfc1437.de/2011/04/22/natur-erobert-geschichte/Zwinger in Münsterhttps://www.rfc1437.de/2011/04/22/zwinger-in-munster/Patentklage: Google wegen Linux-Servern in erster Instanz verurteilt - Golem.dehttps://www.rfc1437.de/2011/04/22/patentklage-google-wegen-linux-servern-in-erster-instanz-verurteilt-golem-de/Kodak DC20 Datenblatthttps://www.rfc1437.de/2011/04/20/kodak-dc20-datenblatt/Diskussion um Karfreitagsruhe - WDR 2 Der Senderhttps://www.rfc1437.de/2011/04/20/diskussion-um-karfreitagsruhe-wdr-2-der-sender/Gondor — effortless production Django hostinghttps://www.rfc1437.de/2011/04/20/gondor-e2-80-94-effortless-production-django-hosting/Kodak 760m Reviewhttps://www.rfc1437.de/2011/04/20/kodak-760m-review/Minolta Dimage RD3000 Digital Camera Review: Intro and Highlightshttps://www.rfc1437.de/2011/04/20/minolta-dimage-rd3000-digital-camera-review-intro-and-highlights/Broadway update 3 « Alexander Larssonhttps://www.rfc1437.de/2011/04/19/broadway-update-3-c2-ab-alexander-larsson/Ratingagentur stellt Bonität der USA infrage | tagesschau.dehttps://www.rfc1437.de/2011/04/19/ratingagentur-stellt-bonitat-der-usa-infrage-tagesschau-de/Snooping: It''s not a crime, it''s a feature - Computerworldhttps://www.rfc1437.de/2011/04/18/snooping-its-not-a-crime-its-a-feature-computerworld/Jess, the Rule Engine for the Java Platformhttps://www.rfc1437.de/2011/04/18/jess-the-rule-engine-for-the-java-platform/Evolutie testhttps://www.rfc1437.de/2011/04/18/evolutie-test/Re: Factor: Mail with GUIhttps://www.rfc1437.de/2011/04/18/re-factor-mail-with-gui/Quiche Ratatuillehttps://www.rfc1437.de/2011/04/17/quiche-ratatuille/Und weil ich grade von Schleuse schreibe ...https://www.rfc1437.de/2011/04/16/und-weil-ich-grade-von-schleuse-schreibe/Münster. In Schwarzweiß.https://www.rfc1437.de/2011/04/16/munster-in-schwarzweis/Toshiba releases self-erasing drives - Computerworldhttps://www.rfc1437.de/2011/04/15/toshiba-releases-self-erasing-drives-computerworld/Is Chernobyl a Wild Kingdom or a Radioactive Den of Decay? | Magazinehttps://www.rfc1437.de/2011/04/15/is-chernobyl-a-wild-kingdom-or-a-radioactive-den-of-decay-magazine/VirtuaWin - Virtual Desktops for Windowshttps://www.rfc1437.de/2011/04/15/virtuawin-virtual-desktops-for-windows/Re: Factor: XKCDhttps://www.rfc1437.de/2011/04/14/re-factor-xkcd/Deutlich erhöhte Strahlung in der Asse | NDR.de - Regional - Niedersachsen - Braunschweig/Harz/Göttingenhttps://www.rfc1437.de/2011/04/14/deutlich-erhohte-strahlung-in-der-asse-ndr-de-regional-niedersachsen-braunschweigharzgottingen/Akka Projecthttps://www.rfc1437.de/2011/04/14/akka-project/Programming Scalahttps://www.rfc1437.de/2011/04/14/programming-scala/ScalaQueryhttps://www.rfc1437.de/2011/04/14/scalaquery/Programming in Scala, First Editionhttps://www.rfc1437.de/2011/04/14/programming-in-scala-first-edition/Scala IDE for Eclipsehttps://www.rfc1437.de/2011/04/14/scala-ide-for-eclipse/Why do I do what I dohttps://www.rfc1437.de/2011/04/12/why-do-i-do-what-i-do/Männerspielzeughttps://www.rfc1437.de/2011/04/12/mannerspielzeug/USB Porthttps://www.rfc1437.de/2011/04/12/usb-port/agronholm / jython-swingutils / source – Bitbuckethttps://www.rfc1437.de/2011/04/11/agronholm-jython-swingutils-source-e2-80-93-bitbucket/Code rant: Message Queue Shootout!https://www.rfc1437.de/2011/04/11/code-rant-message-queue-shootout/NOSQL Databaseshttps://www.rfc1437.de/2011/04/11/nosql-databases/BBC News - Net giants challenge French data lawhttps://www.rfc1437.de/2011/04/07/bbc-news-net-giants-challenge-french-data-law/Warum die VISA-Warndatei eine Schweinerei ist bei Metronaut.de – Big Berlin Bullshit Bloghttps://www.rfc1437.de/2011/04/07/warum-die-visa-warndatei-eine-schweinerei-ist-bei-metronaut-de-e2-80-93-big-berlin-bullshit-blog/visionmedia/asset - GitHubhttps://www.rfc1437.de/2011/04/06/visionmediaasset-github/jRumble | A jQuery Plugin That Rumbles Elementshttps://www.rfc1437.de/2011/04/06/jrumble-a-jquery-plugin-that-rumbles-elements/Python Package Index : pip 1.0https://www.rfc1437.de/2011/04/06/python-package-index-pip-1-0/sunng87/jip - GitHubhttps://www.rfc1437.de/2011/04/06/sunng87jip-github/Exploring Beautiful Languages: A quick look at APLhttps://www.rfc1437.de/2011/04/06/exploring-beautiful-languages-a-quick-look-at-apl/How I learned to stop worrying and write my own ORMhttps://www.rfc1437.de/2011/04/06/how-i-learned-to-stop-worrying-and-write-my-own-orm/dapper-dot-net - Simple SQL object mapper for SQL Server - Google Project Hostinghttps://www.rfc1437.de/2011/04/06/dapper-dot-net-simple-sql-object-mapper-for-sql-server-google-project-hosting/philikon / python-weave client / overview – Bitbuckethttps://www.rfc1437.de/2011/04/06/philikon-python-weave-client-overview-e2-80-93-bitbucket/philikon / weaveclient-chromium / overview – Bitbuckethttps://www.rfc1437.de/2011/04/06/philikon-weaveclient-chromium-overview-e2-80-93-bitbucket/Bill Gates: “In toilets, we’re the kings” | Spreeblickhttps://www.rfc1437.de/2011/04/06/bill-gates-e2-80-9cin-toilets-we-e2-80-99re-the-kings-e2-80-9d-spreeblick/Video LightBox - binden Sie Videos mit Lightbox Effekt in Ihre Internetseite ein!https://www.rfc1437.de/2011/04/06/video-lightbox-binden-sie-videos-mit-lightbox-effekt-in-ihre-internetseite-ein/JulienPalard/Pipe - GitHubhttps://www.rfc1437.de/2011/04/04/julienpalardpipe-github/Krümeltortehttps://www.rfc1437.de/2011/04/03/krumeltorte/Sammelsurium aus Hamburghttps://www.rfc1437.de/2011/04/03/sammelsurium-aus-hamburg/Pängelantonhttps://www.rfc1437.de/2011/03/31/pangelanton/markrendle/Simple.Data - GitHubhttps://www.rfc1437.de/2011/03/30/markrendlesimple-data-github/Send in Münster mal wiederhttps://www.rfc1437.de/2011/03/29/send-in-munster-mal-wieder/Tuckesburg und alter Zoohttps://www.rfc1437.de/2011/03/29/tuckesburg-und-alter-zoo/Basho: An Introduction to Riakhttps://www.rfc1437.de/2011/03/29/basho-an-introduction-to-riak/HBase vs Cassandra: why we moved « Dominic Williamshttps://www.rfc1437.de/2011/03/28/hbase-vs-cassandra-why-we-moved-c2-ab-dominic-williams/Brisk – Apache Hadoop™ powered by Cassandra | DataStaxhttps://www.rfc1437.de/2011/03/28/brisk-e2-80-93-apache-hadoop-e2-84-a2-powered-by-cassandra-datastax/HIVE: Data Warehousing & Analytics on Hadoophttps://www.rfc1437.de/2011/03/28/hive-data-warehousing-analytics-on-hadoop/Apache Thrifthttps://www.rfc1437.de/2011/03/28/apache-thrift/The Secrets of Building Realtime Big Data Systemshttps://www.rfc1437.de/2011/03/28/the-secrets-of-building-realtime-big-data-systems/nathanmarz/elephantdb - GitHubhttps://www.rfc1437.de/2011/03/28/nathanmarzelephantdb-github/nathanmarz/cascalog - GitHubhttps://www.rfc1437.de/2011/03/28/nathanmarzcascalog-github/JavaScript Quotations « IronJS Bloghttps://www.rfc1437.de/2011/03/27/javascript-quotations-c2-ab-ironjs-blog/Microsoft Shuts off HTTPS in Hotmail for Over a Dozen Countries | Electronic Frontier Foundationhttps://www.rfc1437.de/2011/03/26/microsoft-shuts-off-https-in-hotmail-for-over-a-dozen-countries-electronic-frontier-foundation/Enterprise Java Development Tools | SpringSourcehttps://www.rfc1437.de/2011/03/25/enterprise-java-development-tools-springsource/Trinity - Microsoft Researchhttps://www.rfc1437.de/2011/03/25/trinity-microsoft-research/Programming, Motherfuckerhttps://www.rfc1437.de/2011/03/22/programming-motherfucker/Why Cloud9 Deserves your Attention | Nettuts+https://www.rfc1437.de/2011/03/22/why-cloud9-deserves-your-attention-nettuts/Django-nonrel - NoSQL support for Django | All Buttons Pressedhttps://www.rfc1437.de/2011/03/22/django-nonrel-nosql-support-for-django-all-buttons-pressed/WordPress › Really Static « WordPress Pluginshttps://www.rfc1437.de/2011/03/21/wordpress-e2-80-ba-really-static-c2-ab-wordpress-plugins/Vundle 0.7 is out | gmarik.infohttps://www.rfc1437.de/2011/03/20/vundle-0-7-is-out-gmarik-info/Gefüllte Paprika im Tomatenbetthttps://www.rfc1437.de/2011/03/19/gefullte-paprika-im-tomatenbett/Adobe Photoshop Lightroom 3 * Exporting using Publish Serviceshttps://www.rfc1437.de/2011/03/16/adobe-photoshop-lightroom-3-exporting-using-publish-services/Datenschützer: Piwik statt Google Analyticshttps://www.rfc1437.de/2011/03/15/datenschutzer-piwik-statt-google-analytics/After Church Clubhttps://www.rfc1437.de/2011/03/15/after-church-club/Kiepenkerle (Kiepenkerls?)https://www.rfc1437.de/2011/03/15/kiepenkerle-kiepenkerls/Türfigurenhttps://www.rfc1437.de/2011/03/15/turfiguren/With hacking, music can take control of your car | ITworldhttps://www.rfc1437.de/2011/03/14/with-hacking-music-can-take-control-of-your-car-itworld/Satellite Photos - Japan Before and After Tsunami - Interactive Feature - NYTimes.comhttps://www.rfc1437.de/2011/03/14/satellite-photos-japan-before-and-after-tsunami-interactive-feature-nytimes-com/Programming Languages - Progopedia - Encyclopedia of Programming Languageshttps://www.rfc1437.de/2011/03/14/programming-languages-progopedia-encyclopedia-of-programming-languages/Instagram API verfügbarhttps://www.rfc1437.de/2011/03/14/instagram/pdict.py at master from segfaulthunter/sandbox - GitHubhttps://www.rfc1437.de/2011/03/14/pdict-py-at-master-from-segfaulthuntersandbox-github/ShutterSnitchhttps://www.rfc1437.de/2011/03/13/shuttersnitch/Rob Galbraith DPI: Alex Majoli points and shootshttps://www.rfc1437.de/2011/03/13/rob-galbraith-dpi-alex-majoli-points-and-shoots/HowTo: Using Radio2https://www.rfc1437.de/2011/03/13/howto-using-radio2/Threads sind ein Hammer, aber nicht jedes Problem ist ein Nagelhttps://www.rfc1437.de/2011/03/13/threads-sind-ein-hammer-aber-nicht-jedes-problem-ist-ein-nagel/Dieses Vertuschen und Verzögern ist ein unfassbarer Skandal: Die Methoden der Atomlobby - taz.dehttps://www.rfc1437.de/2011/03/13/dieses-vertuschen-und-verzogern-ist-ein-unfassbarer-skandal-die-methoden-der-atomlobby-taz-de/Minestrone für die ganze Familiehttps://www.rfc1437.de/2011/03/12/minestrone-fur-die-ganze-familie/Re: Factor: Google Chartshttps://www.rfc1437.de/2011/03/12/re-factor-google-charts/Kernschmelze in Japan immer wahrscheinlicherhttps://www.rfc1437.de/2011/03/12/kernschmelze-in-japan-immer-wahrscheinlicher/twitters Größenwahnhttps://www.rfc1437.de/2011/03/12/twitters-grosenwahn/Python Tools for Visual Studiohttps://www.rfc1437.de/2011/03/11/python-tools-for-visual-studio/ABCL - Release notes v0.25https://www.rfc1437.de/2011/03/11/abcl-release-notes-v0-25/BBC News - Voyager: Still dancing 17 billion km from Earthhttps://www.rfc1437.de/2011/03/09/bbc-news-voyager-still-dancing-17-billion-km-from-earth/J Sourcehttps://www.rfc1437.de/2011/03/09/j-source/blueMarine - Homehttps://www.rfc1437.de/2011/03/09/bluemarine-home/darktable | newshttps://www.rfc1437.de/2011/03/09/darktable-news/fantasm - Project Hosting on Google Codehttps://www.rfc1437.de/2011/03/08/fantasm-project-hosting-on-google-code/Seltsame Phänomene in iPhotohttps://www.rfc1437.de/2011/03/08/seltsame-phanomene-in-iphoto/harukizaemon/hamster - GitHubhttps://www.rfc1437.de/2011/03/07/harukizaemonhamster-github/Pyjamas - Python Javascript Compiler, Desktop Widget Set and RIA Web Frameworkhttps://www.rfc1437.de/2011/03/07/pyjamas-python-javascript-compiler-desktop-widget-set-and-ria-web-framework/pqc - Project Hosting on Google Codehttps://www.rfc1437.de/2011/03/07/pqc-project-hosting-on-google-code/idiotisches Interfacedesignhttps://www.rfc1437.de/2011/03/06/idiotisches-interfacedesign/Apple kann einfach keine Verschlüsselunghttps://www.rfc1437.de/2011/03/06/apple-kann-einfach-keine-verschlusselung/The Sinclair ZX81: 30 years old today - Winterdrakehttps://www.rfc1437.de/2011/03/06/the-sinclair-zx81-30-years-old-today-winterdrake/Pferderouladen mit Ratatouillehttps://www.rfc1437.de/2011/03/05/pferderouladen-mit-ratatouille/jsFiddle Javascript Editorhttps://www.rfc1437.de/2011/03/04/jsfiddle-javascript-editor/Wordpress and HTML 5https://www.rfc1437.de/2011/03/04/wordpress-and-html-5/balupton/history.js - GitHubhttps://www.rfc1437.de/2011/03/04/baluptonhistory-js-github/Handwühlen – Wikipediahttps://www.rfc1437.de/2011/03/02/handwuhlen-e2-80-93-wikipedia/Paprika-Bohnen-Suppe mit Hackhttps://www.rfc1437.de/2011/03/02/paprika-bohnen-suppe-mit-hack/Plagiatsaffäre: Doktorvater distanziert sich von zu Guttenberg | tagesschau.dehttps://www.rfc1437.de/2011/03/01/plagiatsaffare-doktorvater-distanziert-sich-von-zu-guttenberg-tagesschau-de/WordPress › JSON API « WordPress Pluginshttps://www.rfc1437.de/2011/02/28/wordpress-e2-80-ba-json-api-c2-ab-wordpress-plugins/Feeding the Bit Bucket» Blog Archive » Common Lisp, Clojure and Evolutionhttps://www.rfc1437.de/2011/02/27/feeding-the-bit-bucket-c2-bb-blog-archive-c2-bb-common-lisp-clojure-and-evolution/Naked Password - jQuery Plugin to Encourage Stronger Passwordshttps://www.rfc1437.de/2011/02/27/naked-password-jquery-plugin-to-encourage-stronger-passwords/Wochenmarkt in Münsterhttps://www.rfc1437.de/2011/02/27/wochenmarkt-in-munster/Hundreds of Tourist Photos Weaved into One (18 total) - My Modern Metropolishttps://www.rfc1437.de/2011/02/26/hundreds-of-tourist-photos-weaved-into-one-18-total-my-modern-metropolis/Fairytaleshttps://www.rfc1437.de/2011/02/26/fairytales/Kochen mit rfc1437 - Schweinegeschnetzeltes Mediterranhttps://www.rfc1437.de/2011/02/26/rfc1437-on-the-road/Ihr seid Helden!https://www.rfc1437.de/2011/02/25/ihr-seid-helden/MostAwesomeDude/bravo - GitHubhttps://www.rfc1437.de/2011/02/25/mostawesomedudebravo-github/Ada 95: The Craft of Object-Oriented Programminghttps://www.rfc1437.de/2011/02/23/ada-95-the-craft-of-object-oriented-programming/IP-Adressen und Datenschutzhttps://www.rfc1437.de/2011/02/22/ip-adressen-und-datenschutz/Andescotia Software | Products : Marten&trade IDE 1.4https://www.rfc1437.de/2011/02/21/andescotia-software-products-martentrade-ide-1-4/hotzen/ScalaFlow - GitHubhttps://www.rfc1437.de/2011/02/21/hotzenscalaflow-github/JSSpeccy: A ZX Spectrum emulator in Javascript « matt.west.co.tthttps://www.rfc1437.de/2011/02/21/jsspeccy-a-zx-spectrum-emulator-in-javascript-c2-ab-matt-west-co-tt/remogatto/gospeccy - GitHubhttps://www.rfc1437.de/2011/02/21/remogattogospeccy-github/lsyncd - Project Hosting on Google Codehttps://www.rfc1437.de/2011/02/21/lsyncd-project-hosting-on-google-code/Plagiate – GuttenPlag Wikihttps://www.rfc1437.de/2011/02/19/plagiate-e2-80-93-guttenplag-wiki/MS Optical Super Triplet Perar 3.5/35 | japan exposureshttps://www.rfc1437.de/2011/02/17/ms-optical-super-triplet-perar-3-535-japan-exposures/Spherical aberrationhttps://www.rfc1437.de/2011/02/16/spherical-aberration/BoPhoto.com: M8 coder - simple manual handcoding of M lenseshttps://www.rfc1437.de/2011/02/16/bophoto-com-m8-coder-simple-manual-handcoding-of-m-lenses/Get inPulse and Hack Your Watch | Homehttps://www.rfc1437.de/2011/02/16/get-inpulse-and-hack-your-watch-home/PyPy Status Blog: PyPy Winter Sprint Reporthttps://www.rfc1437.de/2011/02/16/pypy-status-blog-pypy-winter-sprint-report/Comparison of S3QL and other S3 file systemshttps://www.rfc1437.de/2011/02/16/comparison-of-s3ql-and-other-s3-file-systems/s3fs - Project Hosting on Google Codehttps://www.rfc1437.de/2011/02/16/s3fs-project-hosting-on-google-code/HttpDavModulehttps://www.rfc1437.de/2011/02/16/httpdavmodule/Zeitung: Guttenberg schrieb Teile seiner Doktorarbeit ab | tagesschau.dehttps://www.rfc1437.de/2011/02/16/zeitung-guttenberg-schrieb-teile-seiner-doktorarbeit-ab-tagesschau-de/MobileMe saugt Hamster durch Strohhalmehttps://www.rfc1437.de/2011/02/16/mobileme-saugt-hamster-durch-strohhalme/LR/Blog - Send images to your blog from Adobe Lightoomhttps://www.rfc1437.de/2011/02/16/lrblog-send-images-to-your-blog-from-adobe-lightoom/Tom Otterness: Überfrauhttps://www.rfc1437.de/2011/02/16/tom-otterness-uberfrau/Orgelpfeifenhttps://www.rfc1437.de/2011/02/16/orgelpfeifen/Contador darf wieder in den Sattel - Radsport - sportschau.dehttps://www.rfc1437.de/2011/02/15/contador-darf-wieder-in-den-sattel-radsport-sportschau-de/Bracketeer: Exposure Processing Softwarehttps://www.rfc1437.de/2011/02/15/bracketeer-exposure-processing-software/KammaGamma » Articles » Solving the Leica M8 DNG riddlehttps://www.rfc1437.de/2011/02/15/kammagamma-c2-bb-articles-c2-bb-solving-the-leica-m8-dng-riddle/Main Page - Esolanghttps://www.rfc1437.de/2011/02/14/main-page-esolang/Working Leica M8 Created Using Legohttps://www.rfc1437.de/2011/02/13/working-leica-m8-created-using-lego/- 3D Portfolio of Michael Grote -https://www.rfc1437.de/2011/02/13/3d-portfolio-of-michael-grote/Camerashttps://www.rfc1437.de/2011/02/13/cameras/‘The Beast’ Electric Bikehttps://www.rfc1437.de/2011/02/13/e2-80-98the-beast-e2-80-99-electric-bike/Leica M Lens Codeshttps://www.rfc1437.de/2011/02/12/leica-m-lens-codes/SourceTree | Mercurial and Git GUI for Mac OS Xhttps://www.rfc1437.de/2011/02/12/sourcetree-mercurial-and-git-gui-for-mac-os-x/JSTalk: Indexhttps://www.rfc1437.de/2011/02/12/jstalk-index/“Dossier de Presse” « Lucs Journalhttps://www.rfc1437.de/2011/02/11/e2-80-9cdossier-de-presse-e2-80-9d-c2-ab-lucs-journal/Advanced sign-in security for your Google account - Official Gmail Bloghttps://www.rfc1437.de/2011/02/10/advanced-sign-in-security-for-your-google-account-official-gmail-blog/ongoing by Tim Bray · Broken Linkshttps://www.rfc1437.de/2011/02/10/ongoing-by-tim-bray-c2-b7-broken-links/Beginners GH1 Custom Firmware Guide - EOSHDhttps://www.rfc1437.de/2011/02/09/beginners-gh1-custom-firmware-guide-eoshd/Secret texts ''key to Julian Assange case'' - Crime, UK - The Independenthttps://www.rfc1437.de/2011/02/09/secret-texts-key-to-julian-assange-case-crime-uk-the-independent/scgi-wsgi 1.1 released - Allan Saddi's projects bloghttps://www.rfc1437.de/2011/02/08/scgi-wsgi-1-1-released-allan-saddis-projects-blog/Streitfall: Telekom will einheitlichen De-Mail-Domainnamen per Gesetz - Golem.dehttps://www.rfc1437.de/2011/02/07/streitfall-telekom-will-einheitlichen-de-mail-domainnamen-per-gesetz-golem-de/Carl Zeiss joins Micro Four Thirds system: Digital Photography Reviewhttps://www.rfc1437.de/2011/02/07/carl-zeiss-joins-micro-four-thirds-system-digital-photography-review/Gravatars: why publishing your email''s hash is not a good ideahttps://www.rfc1437.de/2011/02/07/gravatars-why-publishing-your-emails-hash-is-not-a-good-idea/IN-12 / IV-12 Nixie / VFD Clockhttps://www.rfc1437.de/2011/02/07/in-12-iv-12-nixie-vfd-clock/RUR-PLEhttps://www.rfc1437.de/2011/02/07/rur-ple/using negotiate authentication (GSSAPI Kerberos) with Firefoxhttps://www.rfc1437.de/2011/02/07/using-negotiate-authentication-gssapi-kerberos-with-firefox/Neueinsteiger: Kenko will Systemkamera mit C-Mount-Objektiven anbieten - Golem.dehttps://www.rfc1437.de/2011/02/07/neueinsteiger-kenko-will-systemkamera-mit-c-mount-objektiven-anbieten-golem-de/what a superb owlhttps://www.rfc1437.de/2011/02/07/what-a-superb-owl/Lenzighttps://www.rfc1437.de/2011/02/06/lenzig/How to write vim plugins with pythonhttps://www.rfc1437.de/2011/02/05/how-to-write-vim-plugins-with-python/Forum > Sony Alpha NEX-Open-Source-Firmware Linux-basierthttps://www.rfc1437.de/2011/02/04/forum-sony-alpha-nex-open-source-firmware-linux-basiert/Layoutspielereienhttps://www.rfc1437.de/2011/02/04/layoutspielereien/WorkingWithSubversion - Mercurialhttps://www.rfc1437.de/2011/02/03/workingwithsubversion-mercurial/Sorting elements with jQuery – James Padolseyhttps://www.rfc1437.de/2011/02/02/sorting-elements-with-jquery-e2-80-93-james-padolsey/SLR Magic 35 1.7 Lens review on the Sony NEX-5 | STEVE HUFF PHOTOShttps://www.rfc1437.de/2011/02/02/slr-magic-35-1-7-lens-review-on-the-sony-nex-5-steve-huff-photos/Ricoh developing M-mount module for GXR system: Digital Photography Reviewhttps://www.rfc1437.de/2011/02/01/ricoh-developing-m-mount-module-for-gxr-system-digital-photography-review/Vimari - Keyboard Shortcuts extension for Safari - GitHubhttps://www.rfc1437.de/2011/02/01/vimari-keyboard-shortcuts-extension-for-safari-github/Google: Bing Is Cheating, Copying Our Search Resultshttps://www.rfc1437.de/2011/02/01/google-bing-is-cheating-copying-our-search-results/Java Hangs When Converting 2.2250738585072012e-308 - Exploring Binaryhttps://www.rfc1437.de/2011/02/01/java-hangs-when-converting-2-2250738585072012e-308-exploring-binary/moblhttps://www.rfc1437.de/2011/01/31/mobl/Three20https://www.rfc1437.de/2011/01/31/three20/Introduction to Pharenhttps://www.rfc1437.de/2011/01/30/introduction-to-pharen/cfbolz / Pyrolog / overview – Bitbuckethttps://www.rfc1437.de/2011/01/30/cfbolz-pyrolog-overview-e2-80-93-bitbucket/Sho - Microsoft Researchhttps://www.rfc1437.de/2011/01/28/sho-microsoft-research/eMIPS - Microsoft Researchhttps://www.rfc1437.de/2011/01/28/emips-microsoft-research/live-processinghttps://www.rfc1437.de/2011/01/27/live-processing/Optimizing Crajsh – Part 1 « #ponce''s bloghttps://www.rfc1437.de/2011/01/26/optimizing-crajsh-e2-80-93-part-1-c2-ab-ponces-blog/don't code today what you can't debug tomorrow: PhantomJS: minimalistic headless WebKit-based JavaScript-driven toolhttps://www.rfc1437.de/2011/01/26/dont-code-today-what-you-cant-debug-tomorrow-phantomjs-minimalistic-headless-webkit-based-javascript-driven-tool/linq.js - LINQ for JavaScripthttps://www.rfc1437.de/2011/01/24/linq-js-linq-for-javascript/PyPy Status Blog: PyPy wants you!https://www.rfc1437.de/2011/01/21/pypy-status-blog-pypy-wants-you/InformIT: Art of Computer Programming, Volume 4A, The: Combinatorial Algorithms, Part 1https://www.rfc1437.de/2011/01/21/informit-art-of-computer-programming-volume-4a-the-combinatorial-algorithms-part-1//dev/random - Random Thoughts On Programming In Parentheses - Coops - An introduction to chicken scheme's object systemhttps://www.rfc1437.de/2011/01/21/devrandom-random-thoughts-on-programming-in-parentheses-coops-an-introduction-to-chicken-schemes-object-system/Tail Call Optimization Decorator « Python recipes « ActiveState Codehttps://www.rfc1437.de/2011/01/21/tail-call-optimization-decorator-c2-ab-python-recipes-c2-ab-activestate-code/App Development Tools Contribhttps://www.rfc1437.de/2011/01/20/app-development-tools-contrib/Harmony Of My Dreams | Brendan Eichhttps://www.rfc1437.de/2011/01/19/harmony-of-my-dreams-brendan-eich/Swordcane : The Official Web Site of Burger Kniveshttps://www.rfc1437.de/2011/01/18/swordcane-the-official-web-site-of-burger-knives/F-Script Homehttps://www.rfc1437.de/2011/01/18/f-script-home/Lively Kernel - Livelyhttps://www.rfc1437.de/2011/01/18/lively-kernel-lively/Open Cobalt Websitehttps://www.rfc1437.de/2011/01/17/open-cobalt-website/Pyrates are cool — A wiki about python game developmenthttps://www.rfc1437.de/2011/01/17/pyrates-are-cool-e2-80-94-a-wiki-about-python-game-development/CoRD: Remote Desktop for Mac OS Xhttps://www.rfc1437.de/2011/01/17/cord-remote-desktop-for-mac-os-x/CLPython - an implementation of Python in Common Lisphttps://www.rfc1437.de/2011/01/16/clpython-an-implementation-of-python-in-common-lisp/FSet on Common-Lisp.nethttps://www.rfc1437.de/2011/01/16/fset-on-common-lisp-net/CL-STMhttps://www.rfc1437.de/2011/01/16/cl-stm/CLAZY: Lazy Calling in Common Lisphttps://www.rfc1437.de/2011/01/16/clazy-lazy-calling-in-common-lisp/Fundshttps://www.rfc1437.de/2011/01/16/funds/qb.js: An implementation of QBASIC in Javascript (part 1) - Steve Hanov's Programming Bloghttps://www.rfc1437.de/2011/01/15/qb-js-an-implementation-of-qbasic-in-javascript-part-1-steve-hanovs-programming-blog/Vimium - Google Chrome-Erweiterungsgaleriehttps://www.rfc1437.de/2011/01/15/vimium-google-chrome-erweiterungsgalerie/WordPress Wiki Plugin | Home of the WordPress Wiki Pluginhttps://www.rfc1437.de/2011/01/14/wordpress-wiki-plugin-home-of-the-wordpress-wiki-plugin/Embedder Plugin Home | moztoolshttps://www.rfc1437.de/2011/01/14/embedder-plugin-home-moztools/CBSC Decision\_| CHOZ-FM re the song “Money for Nothing” by Dire Straitshttps://www.rfc1437.de/2011/01/14/cbsc-decision-c2-a0-choz-fm-re-the-song-e2-80-9cmoney-for-nothing-e2-80-9d-by-dire-straits/dcolthorp/matchure - GitHubhttps://www.rfc1437.de/2011/01/14/dcolthorpmatchure-github/About Dirigiblehttps://www.rfc1437.de/2011/01/14/about-dirigible/kriyative/clojurejs - GitHubhttps://www.rfc1437.de/2011/01/13/kriyativeclojurejs-github/Welcome to WuWeihttps://www.rfc1437.de/2011/01/12/welcome-to-wuwei/Bizarre sea slug is half plant, half animal | MNN - Mother Nature Networkhttps://www.rfc1437.de/2011/01/12/bizarre-sea-slug-is-half-plant-half-animal-mnn-mother-nature-network/Mozilla Labs » skywriterhttps://www.rfc1437.de/2011/01/12/mozilla-labs-c2-bb-skywriter/Life at Eclipse » Blog Archive » Introducing Orionhttps://www.rfc1437.de/2011/01/12/life-at-eclipse-c2-bb-blog-archive-c2-bb-introducing-orion/Bitte vergessen | heise Securityhttps://www.rfc1437.de/2011/01/12/bitte-vergessen-heise-security/Bundestubehttps://www.rfc1437.de/2011/01/12/bundestube/App der British Library: Hohe Literatur für iOS- und Android-Geräte - Golem.dehttps://www.rfc1437.de/2011/01/12/app-der-british-library-hohe-literatur-fur-ios-und-android-gerate-golem-de/Chromium Blog: HTML Video Codec Support in Chromehttps://www.rfc1437.de/2011/01/11/chromium-blog-html-video-codec-support-in-chrome/MonoMac - Monohttps://www.rfc1437.de/2011/01/11/monomac-mono-2/Eisskulpturen in Nizhniy Tagilhttps://www.rfc1437.de/2011/01/10/eisskulpturen-in-nizhniy-tagil/Modernizrhttps://www.rfc1437.de/2011/01/10/modernizr/Malmström: EU-Kommissarin will keine Internetsperren für weitere Themen - Golem.dehttps://www.rfc1437.de/2011/01/10/malmstrom-eu-kommissarin-will-keine-internetsperren-fur-weitere-themen-golem-de/Department of Justice: Twitter muss Wikileaks-Daten an US-Gericht übergeben - Golem.dehttps://www.rfc1437.de/2011/01/10/department-of-justice-twitter-muss-wikileaks-daten-an-us-gericht-ubergeben-golem-de/Nischni Tagil – Wikipediahttps://www.rfc1437.de/2010/12/29/nischni-tagil-e2-80-93-wikipedia/szeiger.de » Blog Archive » A Type-Safe Database Query DSL for Scalahttps://www.rfc1437.de/2010/12/29/szeiger-de-c2-bb-blog-archive-c2-bb-a-type-safe-database-query-dsl-for-scala/11861: Betreiber der Bahn-Auskunftsnummer klagt gegen Abschaltung - Golem.dehttps://www.rfc1437.de/2010/12/28/11861-betreiber-der-bahn-auskunftsnummer-klagt-gegen-abschaltung-golem-de/Studie: Stromkonzerne verlangen zwei Milliarden Euro zu viel | tagesschau.dehttps://www.rfc1437.de/2010/12/28/studie-stromkonzerne-verlangen-zwei-milliarden-euro-zu-viel-tagesschau-de/Sequel: The Database Toolkit for Rubyhttps://www.rfc1437.de/2010/12/28/sequel-the-database-toolkit-for-ruby/MacRuby: The Definitive Guidehttps://www.rfc1437.de/2010/12/28/macruby-the-definitive-guide/hoc - Project Hosting on Google Codehttps://www.rfc1437.de/2010/12/27/hoc-project-hosting-on-google-code/emscripten - Project Hosting on Google Codehttps://www.rfc1437.de/2010/12/27/emscripten-project-hosting-on-google-code/Emscripten: Pythonhttps://www.rfc1437.de/2010/12/27/emscripten-python/pyfilesystem - Project Hosting on Google Codehttps://www.rfc1437.de/2010/12/27/pyfilesystem-project-hosting-on-google-code/Instagram api - instagram - GitHubhttps://www.rfc1437.de/2010/12/27/instagram-api-instagram-github/Monads Are Not Metaphors - Code Commithttps://www.rfc1437.de/2010/12/27/monads-are-not-metaphors-code-commit/J Homehttps://www.rfc1437.de/2010/12/27/j-home/Kodhttps://www.rfc1437.de/2010/12/26/kod/The Art and Science of Smalltalkhttps://www.rfc1437.de/2010/12/26/the-art-and-science-of-smalltalk/IPython as a system shell — IPython v0.11.alpha1.git documentationhttps://www.rfc1437.de/2010/12/24/ipython-as-a-system-shell-e2-80-94-ipython-v0-11-alpha1-git-documentation/The Blast Shackhttps://www.rfc1437.de/2010/12/23/the-blast-shack/Oni Labs: Apollohttps://www.rfc1437.de/2010/12/23/oni-labs-apollo/Jquery Snowfall Plugin 1.4 | Somethinghitmehttps://www.rfc1437.de/2010/12/23/jquery-snowfall-plugin-1-4-somethinghitme/MacBookAir3-2/Meerkat - Community Ubuntu Documentationhttps://www.rfc1437.de/2010/12/23/macbookair3-2meerkat-community-ubuntu-documentation/OAShttps://www.rfc1437.de/2010/12/23/oas/StatusUpdatehttps://www.rfc1437.de/2010/12/23/statusupdate/Ausfall: Skype für viele Nutzer nicht erreichbar - Golem.dehttps://www.rfc1437.de/2010/12/23/ausfall-skype-fur-viele-nutzer-nicht-erreichbar-golem-de/Denisovans Were Neanderthals’ Cousins, DNA Analysis Reveals - NYTimes.comhttps://www.rfc1437.de/2010/12/23/denisovans-were-neanderthals-e2-80-99-cousins-dna-analysis-reveals-nytimes-com/Python Package Index : futures 2.0https://www.rfc1437.de/2010/12/22/python-package-index-futures-2-0/Pharo Open Source Smalltalk - Homehttps://www.rfc1437.de/2010/12/22/pharo-open-source-smalltalk-home/pure-lang - Project Hosting on Google Codehttps://www.rfc1437.de/2010/12/21/pure-lang-project-hosting-on-google-code/Netzsperren: Großbritannien plant globalen Pornofilter - Golem.dehttps://www.rfc1437.de/2010/12/20/netzsperren-grosbritannien-plant-globalen-pornofilter-golem-de/c't - Inhalt 1/2011 - Seite 26https://www.rfc1437.de/2010/12/20/ct-inhalt-12011-seite-26/Alex Gaynor -- Getting the most out of toxhttps://www.rfc1437.de/2010/12/20/alex-gaynor-getting-the-most-out-of-tox/sparrow - The New Mail for Machttps://www.rfc1437.de/2010/12/20/sparrow-the-new-mail-for-mac/coleifer/peewee at master - GitHubhttps://www.rfc1437.de/2010/12/18/coleiferpeewee-at-master-github/Middleware_and_Utilities - WSGI Wikihttps://www.rfc1437.de/2010/12/18/middleware-and-utilities-wsgi-wiki/Python Package Index : urlrelay 0.7.1https://www.rfc1437.de/2010/12/18/python-package-index-urlrelay-0-7-1/Bug 1044 – CVE-2010-4345 exim privilege escalationhttps://www.rfc1437.de/2010/12/17/bug-1044-e2-80-93-cve-2010-4345-exim-privilege-escalation/Bug 787 – memory corruption in string_format codehttps://www.rfc1437.de/2010/12/17/bug-787-e2-80-93-memory-corruption-in-string-format-code/rhodecode Summary - RhodeCodehttps://www.rfc1437.de/2010/12/17/rhodecode-summary-rhodecode/HP Storage Hardware Harbors Secret Back Door | threatposthttps://www.rfc1437.de/2010/12/16/hp-storage-hardware-harbors-secret-back-door-threatpost/The Self Publishing Revolution: Amazon in the Book Banning Businesshttps://www.rfc1437.de/2010/12/16/the-self-publishing-revolution-amazon-in-the-book-banning-business/Bottle: Python Web Framework — Bottle v0.9.dev documentationhttps://www.rfc1437.de/2010/12/16/bottle-python-web-framework-e2-80-94-bottle-v0-9-dev-documentation/In Albanien und Bosnien fällt der Visa-Zwang | tagesschau.dehttps://www.rfc1437.de/2010/12/15/in-albanien-und-bosnien-fallt-der-visa-zwang-tagesschau-de/Mehrheit in NRW gegen neuen Staatsvertrag für Jugendschutz im Internet - Computer - WDR.dehttps://www.rfc1437.de/2010/12/15/mehrheit-in-nrw-gegen-neuen-staatsvertrag-fur-jugendschutz-im-internet-computer-wdr-de/Nicholas Piël » Benchmark of Python Web Servershttps://www.rfc1437.de/2010/12/15/nicholas-piel-c2-bb-benchmark-of-python-web-servers/RecordExtension - Mercurialhttps://www.rfc1437.de/2010/12/15/recordextension-mercurial/Sicherheit: Angeblich Backdoor im IPSEC-Stack von OpenBSD - Golem.dehttps://www.rfc1437.de/2010/12/15/sicherheit-angeblich-backdoor-im-ipsec-stack-von-openbsd-golem-de/Home | The FinePix X100 Professional Photographer's compact digital camera from Fujifilmhttps://www.rfc1437.de/2010/12/14/home-the-finepix-x100-professional-photographers-compact-digital-camera-from-fujifilm/mrdoob/three.js - GitHubhttps://www.rfc1437.de/2010/12/13/mrdoobthree-js-github/Namespacing in JavaScript | JavaScript, JavaScripthttps://www.rfc1437.de/2010/12/13/namespacing-in-javascript-javascript-javascript/The Ball Revealed – Sphero « The Orbotix Bloghttps://www.rfc1437.de/2010/12/13/the-ball-revealed-e2-80-93-sphero-c2-ab-the-orbotix-blog/Home - gloss - GitHubhttps://www.rfc1437.de/2010/12/12/home-gloss-github/Mac\_OS\_X Automation: Serviceshttps://www.rfc1437.de/2010/12/10/mac-c2-a0os-c2-a0x-automation-services/Clojure Libs and Namespaces: require, use, import, and ns - 8th Light Bloghttps://www.rfc1437.de/2010/12/10/clojure-libs-and-namespaces-require-use-import-and-ns-8th-light-blog/ninjudd/cake - GitHubhttps://www.rfc1437.de/2010/12/09/ninjuddcake-github/slimv.vim - SLIME-like Lisp and Clojure REPL inside Vim with Profiling, Hyperspec, Paredit : vim onlinehttps://www.rfc1437.de/2010/12/09/slimv-vim-slime-like-lisp-and-clojure-repl-inside-vim-with-profiling-hyperspec-paredit-vim-online/Mainz/Landau: Erdwärmekraftwerk wohl für Erdbeben verantwortlich - Nachrichten :: Rheinland-Pfalz | SWR.dehttps://www.rfc1437.de/2010/12/08/mainzlandau-erdwarmekraftwerk-wohl-fur-erdbeben-verantwortlich-nachrichten-rheinland-pfalz-swr-de/Gundo - Visualize your Vim Undo Treehttps://www.rfc1437.de/2010/12/08/gundo-visualize-your-vim-undo-tree/Chromium Blog: A New Crankshaft for V8https://www.rfc1437.de/2010/12/08/chromium-blog-a-new-crankshaft-for-v8/instagr.amhttps://www.rfc1437.de/2010/12/08/instagr-am/The Risks of Cloud: Lessons from Wikileaks - Simon Says...https://www.rfc1437.de/2010/12/07/the-risks-of-cloud-lessons-from-wikileaks-simon-says/pyquery: a jquery-like library for python — pyquery v0.6.1 documentationhttps://www.rfc1437.de/2010/12/07/pyquery-a-jquery-like-library-for-python-e2-80-94-pyquery-v0-6-1-documentation/stream – Lazily-evaluated, parallelizable pipeline — stream v0.8 documentationhttps://www.rfc1437.de/2010/12/07/stream-e2-80-93-lazily-evaluated-parallelizable-pipeline-e2-80-94-stream-v0-8-documentation/Wau-Holland-Stiftung: Geldgebern von Wikileaks drohen Sanktionen - Golem.dehttps://www.rfc1437.de/2010/12/07/wau-holland-stiftung-geldgebern-von-wikileaks-drohen-sanktionen-golem-de/About - pyconditions - About the module - Project Hosting on Google Codehttps://www.rfc1437.de/2010/12/07/about-pyconditions-about-the-module-project-hosting-on-google-code/Python Package Index : withrestart 0.2.6https://www.rfc1437.de/2010/12/07/python-package-index-withrestart-0-2-6/snipMate - TextMate-style snippets for Vim : vim onlinehttps://www.rfc1437.de/2010/12/07/snipmate-textmate-style-snippets-for-vim-vim-online/vcscommand.vim - CVS/SVN/SVK/git/hg/bzr integration plugin : vim onlinehttps://www.rfc1437.de/2010/12/07/vcscommand-vim-cvssvnsvkgithgbzr-integration-plugin-vim-online/Home — pyclewnhttps://www.rfc1437.de/2010/12/07/home-e2-80-94-pyclewn/Vim Taglist plugin manualhttps://www.rfc1437.de/2010/12/06/vim-taglist-plugin-manual/Harte Kritik an französischem Concorde-Urteil | tagesschau.dehttps://www.rfc1437.de/2010/12/06/harte-kritik-an-franzosischem-concorde-urteil-tagesschau-de/Vim autocomplete, Django and virtualenv | rosemanbloghttps://www.rfc1437.de/2010/12/05/vim-autocomplete-django-and-virtualenv-rosemanblog/Homebrew — MacPorts driving you to drink? Try Homebrew!https://www.rfc1437.de/2010/12/03/homebrew-e2-80-94-macports-driving-you-to-drink-try-homebrew/chrisdickinson's wilson at master - GitHubhttps://www.rfc1437.de/2010/12/03/chrisdickinsons-wilson-at-master-github/Modules - node - GitHubhttps://www.rfc1437.de/2010/12/03/modules-node-github/persistence.js: An Asynchronous Javascript ORM for HTML5/Gears « I am Zefhttps://www.rfc1437.de/2010/12/03/persistence-js-an-asynchronous-javascript-orm-for-html5gears-c2-ab-i-am-zef/Express - node web frameworkhttps://www.rfc1437.de/2010/12/03/express-node-web-framework/LearnBoost labshttps://www.rfc1437.de/2010/12/03/learnboost-labs/Nigeria to charge Dick Cheney in $180 million bribery case, issue Interpol arrest warrant | Raw Storyhttps://www.rfc1437.de/2010/12/03/nigeria-to-charge-dick-cheney-in-180-million-bribery-case-issue-interpol-arrest-warrant-raw-story/Mono Lake bacteria build their DNA using arsenic (and no, this isn’t about aliens) | Not Exactly Rocket Science | Discover Magazinehttps://www.rfc1437.de/2010/12/02/mono-lake-bacteria-build-their-dna-using-arsenic-and-no-this-isn-e2-80-99t-about-aliens-not-exactly-rocket-science-discover-magazine/NASA’s real news: bacterium on Earth that lives off arsenic! | Bad Astronomy | Discover Magazinehttps://www.rfc1437.de/2010/12/02/nasa-e2-80-99s-real-news-bacterium-on-earth-that-lives-off-arsenic-bad-astronomy-discover-magazine/WordPress › WordPress 3.0.2https://www.rfc1437.de/2010/12/01/wordpress-e2-80-ba-wordpress-3-0-2/agr / ropevim / source – Bitbuckethttps://www.rfc1437.de/2010/12/01/agr-ropevim-source-e2-80-93-bitbucket/pyflakes.vim - PyFlakes on-the-fly Python code checking : vim onlinehttps://www.rfc1437.de/2010/12/01/pyflakes-vim-pyflakes-on-the-fly-python-code-checking-vim-online/Download Qt for Open Source C++ development on Mac OS X — Qt - A cross-platform application and UI frameworkhttps://www.rfc1437.de/2010/12/01/download-qt-for-open-source-c-development-on-mac-os-x-e2-80-94-qt-a-cross-platform-application-and-ui-framework/spyderlib - Project Hosting on Google Codehttps://www.rfc1437.de/2010/11/30/spyderlib-project-hosting-on-google-code/Jugendmedienschutzstaatsvertrag: Grüne wollen zustimmen - erste Blogs schließen - Golem.dehttps://www.rfc1437.de/2010/11/30/jugendmedienschutzstaatsvertrag-grune-wollen-zustimmen-erste-blogs-schliesen-golem-de/Technology - Canvas Viewerhttps://www.rfc1437.de/2010/11/30/technology-canvas-viewer/The surreal treehoppers « Why Evolution Is Truehttps://www.rfc1437.de/2010/11/29/the-surreal-treehoppers-c2-ab-why-evolution-is-true/FrontPage - Conkerorhttps://www.rfc1437.de/2010/11/29/frontpage-conkeror/Komodo Edit is a Free Open Source Editor for Perl, Python, Tcl, PHP, Ruby & Javascripthttps://www.rfc1437.de/2010/11/29/komodo-edit-is-a-free-open-source-editor-for-perl-python-tcl-php-ruby-javascript/Python Package Index : lupa 0.18https://www.rfc1437.de/2010/11/29/python-package-index-lupa-0-18/Dampfwalzehttps://www.rfc1437.de/2010/11/28/dampfwalze-2/probablycorey's wax at master - GitHubhttps://www.rfc1437.de/2010/11/27/probablycoreys-wax-at-master-github/Have tracing JIT compilers won? | Lambda the Ultimatehttps://www.rfc1437.de/2010/11/27/have-tracing-jit-compilers-won-lambda-the-ultimate/PyPy Status Blog: PyPy 1.4: Ouroboros in practicehttps://www.rfc1437.de/2010/11/27/pypy-status-blog-pypy-1-4-ouroboros-in-practice/Build a Bootable Rescue SD Card For Your Mac | Mac|Lifehttps://www.rfc1437.de/2010/11/27/build-a-bootable-rescue-sd-card-for-your-mac-maclife/IKVM.NET Home Pagehttps://www.rfc1437.de/2010/11/27/ikvm-net-home-page/gleeBox: Keyboard glee for your webhttps://www.rfc1437.de/2010/11/26/gleebox-keyboard-glee-for-your-web/MacRuby » An Introduction to GCD with MacRubyhttps://www.rfc1437.de/2010/11/26/macruby-c2-bb-an-introduction-to-gcd-with-macruby/WordPress › Conditional CAPTCHA for WordPress « WordPress Pluginshttps://www.rfc1437.de/2010/11/25/wordpress-e2-80-ba-conditional-captcha-for-wordpress-c2-ab-wordpress-plugins/Zach's Journal - Making a small Lisp project with quickproject and Quicklisphttps://www.rfc1437.de/2010/11/25/zachs-journal-making-a-small-lisp-project-with-quickproject-and-quicklisp/Marke: Facebook will Face - Golem.dehttps://www.rfc1437.de/2010/11/24/marke-facebook-will-face-golem-de/Higher Order Javascripthttps://www.rfc1437.de/2010/11/24/higher-order-javascript/Backbone.jshttps://www.rfc1437.de/2010/11/24/backbone-js/Installing and using F# in MonoDevelop | Functional Variationshttps://www.rfc1437.de/2010/11/23/installing-and-using-f-in-monodevelop-functional-variations/F# cross-platform packages and sampleshttps://www.rfc1437.de/2010/11/23/f-cross-platform-packages-and-samples/MonoMac - Monohttps://www.rfc1437.de/2010/11/23/monomac-mono/Datejs - An open-source JavaScript Date Libraryhttps://www.rfc1437.de/2010/11/23/datejs-an-open-source-javascript-date-library/Kasseler Dokumentarfilm- und Videofest » Reality Shockhttps://www.rfc1437.de/2010/11/23/kasseler-dokumentarfilm-und-videofest-c2-bb-reality-shock/Printopia - Share Your Mac's Printers to iPhone and iPad - Print from iPhone - Ecamm Networkhttps://www.rfc1437.de/2010/11/23/printopia-share-your-macs-printers-to-iphone-and-ipad-print-from-iphone-ecamm-network/Zirkeltraining™ ★ The Range - Take A Look At Our Bag Collectionhttps://www.rfc1437.de/2010/11/22/zirkeltraining-e2-84-a2-e2-98-85-the-range-take-a-look-at-our-bag-collection/Pixie Scheme IIIhttps://www.rfc1437.de/2010/11/22/pixie-scheme-iii/Blogofilehttps://www.rfc1437.de/2010/11/22/blogofile/UltimateVimPythonSetup - Launchpad Developmenthttps://www.rfc1437.de/2010/11/22/ultimatevimpythonsetup-launchpad-development/Mit de Maizière am Frühstückstisch: Der Terror ist da, das Müsli ist alle - taz.dehttps://www.rfc1437.de/2010/11/22/mit-de-maiziere-am-fruhstuckstisch-der-terror-ist-da-das-musli-ist-alle-taz-de/How I build-in Tumblr in my Drupal install | The e-laboratoryhttps://www.rfc1437.de/2010/11/21/how-i-build-in-tumblr-in-my-drupal-install-the-e-laboratory/Sonntagslektüre: Google Streetview | Spreeblickhttps://www.rfc1437.de/2010/11/21/sonntagslekture-google-streetview-spreeblick/API | Tumblrhttps://www.rfc1437.de/2010/11/21/api-tumblr/Display photos from Tumblr (using JSON method) | drupal.orghttps://www.rfc1437.de/2010/11/21/display-photos-from-tumblr-using-json-method-drupal-org/hyphenator - Project Hosting on Google Codehttps://www.rfc1437.de/2010/11/21/hyphenator-project-hosting-on-google-code/Performancefresser ...https://www.rfc1437.de/2010/11/21/performancefresser/WordPress › Support » WP Super Cache sometimes ignites a blank Home Page! Need to restart Apachehttps://www.rfc1437.de/2010/11/21/wordpress-e2-80-ba-support-c2-bb-wp-super-cache-sometimes-ignites-a-blank-home-page-need-to-restart-apache/Ist die NATO-Strategie das Problem oder die Lösung? | tagesschau.dehttps://www.rfc1437.de/2010/11/20/ist-die-nato-strategie-das-problem-oder-die-losung-tagesschau-de/Logisimhttps://www.rfc1437.de/2010/11/20/logisim/Pure CSS GUI icons (experimental) – Nicolas Gallagher – Blog & Ephemerahttps://www.rfc1437.de/2010/11/20/pure-css-gui-icons-experimental-e2-80-93-nicolas-gallagher-e2-80-93-blog-ephemera/Have we found the universe that existed before the Big Bang?https://www.rfc1437.de/2010/11/20/have-we-found-the-universe-that-existed-before-the-big-bang/BBC - Earth News - Attack of the ratshttps://www.rfc1437.de/2010/11/20/bbc-earth-news-attack-of-the-rats/WordPress › Support » [Plugin: WP Super Cache] Blank Pages - 500 Errror - in Dashboard (sometimes the site too)https://www.rfc1437.de/2010/11/19/wordpress-e2-80-ba-support-c2-bb-plugin-wp-super-cache-blank-pages-500-errror-in-dashboard-sometimes-the-site-too/Long Live the Web: Scientific Americanhttps://www.rfc1437.de/2010/11/19/long-live-the-web-scientific-american/pyfpdf - Project Hosting on Google Codehttps://www.rfc1437.de/2010/11/19/pyfpdf-project-hosting-on-google-code/Processing.js v1.0 Released « Processing.js Bloghttps://www.rfc1437.de/2010/11/19/processing-js-v1-0-released-c2-ab-processing-js-blog/Is My Blog Working?https://www.rfc1437.de/2010/11/19/is-my-blog-working/Bottlehttps://www.rfc1437.de/2010/11/19/bottle/Owl Content in neuem Zuhausehttps://www.rfc1437.de/2010/11/19/owl-content-in-neuem-zuhause/Mit Sicherheit: Rufe nach schärferen Gesetzen | tagesschau.dehttps://www.rfc1437.de/2010/11/18/mit-sicherheit-rufe-nach-scharferen-gesetzen-tagesschau-de/WordPress › WP Super Cache « WordPress Pluginshttps://www.rfc1437.de/2010/11/18/wordpress-e2-80-ba-wp-super-cache-c2-ab-wordpress-plugins/offline_messages at master from jor3l's OSModules - GitHubhttps://www.rfc1437.de/2010/11/18/offline-messages-at-master-from-jor3ls-osmodules-github/wp-Typography • KINGdeskhttps://www.rfc1437.de/2010/11/17/wp-typography-e2-80-a2-kingdesk/Zahlenmagie beim Renteneintrittsalter: Trick 67 - taz.dehttps://www.rfc1437.de/2010/11/17/zahlenmagie-beim-renteneintrittsalter-trick-67-taz-de/Umzugsstatushttps://www.rfc1437.de/2010/11/17/umzugsstatus/Front-end Editor | scribuhttps://www.rfc1437.de/2010/11/16/front-end-editor-scribu/Icon Search Engine - Download 300,770 Free Icons, PNG Icons, Web Iconshttps://www.rfc1437.de/2010/11/16/icon-search-engine-download-300770-free-icons-png-icons-web-icons/F# in MonoDevelop and cross-platform web sites & screencasts | Blog | TomasP.Nethttps://www.rfc1437.de/2010/11/16/f-in-monodevelop-and-cross-platform-web-sites-screencasts-blog-tomasp-net/JQTreeTablehttps://www.rfc1437.de/2010/11/16/jqtreetable/''Super-secret'' debugger discovered in AMD CPUs • The Registerhttps://www.rfc1437.de/2010/11/15/super-secret-debugger-discovered-in-amd-cpus-e2-80-a2-the-register/''Space Quest'' Lands on the iPad — Courtesy of Safari | Touch Arcadehttps://www.rfc1437.de/2010/11/15/space-quest-lands-on-the-ipad-e2-80-94-courtesy-of-safari-touch-arcade/jQuery lightBox pluginhttps://www.rfc1437.de/2010/11/14/jquery-lightbox-plugin/Twenty Ten Weaver | Wordpress Weaverhttps://www.rfc1437.de/2010/11/14/twenty-ten-weaver-wordpress-weaver/Dynamic Widgets | Qurlhttps://www.rfc1437.de/2010/11/14/dynamic-widgets-qurl/kbhomes's TextCaptchaBreaker at master - GitHubhttps://www.rfc1437.de/2010/11/14/kbhomess-textcaptchabreaker-at-master-github/Word This - Google Chrome-Erweiterungsgaleriehttps://www.rfc1437.de/2010/11/14/word-this-google-chrome-erweiterungsgalerie/JLOUIS Ramblings: On Erlang, State and Crasheshttps://www.rfc1437.de/2010/11/14/jlouis-ramblings-on-erlang-state-and-crashes/atomohttps://www.rfc1437.de/2010/11/14/atomo/WordPress › WPtouch « WordPress Pluginshttps://www.rfc1437.de/2010/11/13/wordpress-e2-80-ba-wptouch-c2-ab-wordpress-plugins/Unionsminister: Sitzblockierer sollen Polizei-Einsatz bezahlen | tagesschau.dehttps://www.rfc1437.de/2010/11/13/unionsminister-sitzblockierer-sollen-polizei-einsatz-bezahlen-tagesschau-de/Herbsthttps://www.rfc1437.de/2010/11/13/herbst/Introducing Thirty Ten, my guide to creating a Twenty Ten Child Theme | aaron.jorb.inaaron.jorb.inhttps://www.rfc1437.de/2010/11/13/introducing-thirty-ten-my-guide-to-creating-a-twenty-ten-child-theme-aaron-jorb-inaaron-jorb-in/WordPress › WordPress Nginx proxy cache integrator « WordPress Pluginshttps://www.rfc1437.de/2010/11/13/wordpress-e2-80-ba-wordpress-nginx-proxy-cache-integrator-c2-ab-wordpress-plugins/Bitrot reloadedhttps://www.rfc1437.de/2010/11/13/bitrot-reloaded/rfc1437 | Content-type: matter-transport/sentient-life-formhttps://www.rfc1437.de/2010/11/13/rfc1437-content-type-matter-transport-sentient/Bitrothttps://www.rfc1437.de/2010/11/12/bitrot/Fragen und Antworten zur Gesundheitsreform | tagesschau.dehttps://www.rfc1437.de/2010/11/12/fragen-und-antworten-zur-gesundheitsreform/Kilimhttps://www.rfc1437.de/2010/11/10/kilim/Orc Languagehttps://www.rfc1437.de/2010/11/10/orc-language/Twisted Orchestration Language in Launchpadhttps://www.rfc1437.de/2010/11/10/twisted-orchestration-language-in-launchpad/Fat Cat Software - iPhoto Library Managerhttps://www.rfc1437.de/2010/11/08/fat-cat-software-iphoto-library-manager/Interactive Fabrication » Beautiful Modelerhttps://www.rfc1437.de/2010/11/08/interactive-fabrication-beautiful-modeler/The V4Z80P – A Z80 Based Laptop @ Retroleumhttps://www.rfc1437.de/2010/11/08/the-v4z80p-a-z80-based-laptop-retroleum/Tornado Web Server Documentationhttps://www.rfc1437.de/2010/11/08/tornado-web-server-documentation/Oracle cooks up free and premium JVMshttps://www.rfc1437.de/2010/11/07/oracle-cooks-up-free-and-premium-jvms/Kunsthalle Bielefeld: Der Westfälische Expressionismushttps://www.rfc1437.de/2010/11/05/kunsthalle-bielefeld-der-westfaelische/Mediathek für Mac OS Xhttps://www.rfc1437.de/2010/11/05/mediathek-fuer-mac-os-x/Panasonic DMC-GF2 Preview: 1. Introduction: Digital Photography Reviewhttps://www.rfc1437.de/2010/11/05/panasonic-dmc-gf2-preview-1-introduction-digital/Eventlet Networking Libraryhttps://www.rfc1437.de/2010/11/02/eventlet-networking-library/Content-type: matter-transport/sentient-life-formhttps://www.rfc1437.de/2010/11/02/page/Immateriblog.de - Matthias Spielkamp über Immaterialgüter in der digitalen Welthttps://www.rfc1437.de/2010/11/01/immateriblog-de-matthias-spielkamp-ueber/don’t look » columnManagerhttps://www.rfc1437.de/2010/10/28/don-t-look-columnmanager/John Resig - Simple JavaScript Inheritancehttps://www.rfc1437.de/2010/10/28/john-resig-simple-javascript-inheritance/jQuery column cell selector - bramstein.comhttps://www.rfc1437.de/2010/10/28/jquery-column-cell-selector-bramstein-com/Inform 7https://www.rfc1437.de/2010/10/27/inform-7/Magic Launchhttps://www.rfc1437.de/2010/10/27/magic-launch/Coffee on the Keyboard » Bleach, HTML sanitizer and auto-linkerhttps://www.rfc1437.de/2010/10/25/coffee-on-the-keyboard-bleach-html-sanitizer-and/robhudson's django-debug-toolbar at master - GitHubhttps://www.rfc1437.de/2010/10/25/robhudson-s-django-debug-toolbar-at-master-github/Oxymoron CSS Frameworkhttps://www.rfc1437.de/2010/10/21/oxymoron-css-framework/postgres 9 streaming replication and django balancerhttps://www.rfc1437.de/2010/10/21/postgres-9-streaming-replication-and-django/Fuzzy Mathematics with FuzzPy (Part 1) | Mad Pythonhttps://www.rfc1437.de/2010/10/19/fuzzy-mathematics-with-fuzzpy-part-1-mad-python/buckingham - Project Hosting on Google Codehttps://www.rfc1437.de/2010/10/18/buckingham-project-hosting-on-google-code/Building iPhone Apps with HTML, CSS, and JavaScripthttps://www.rfc1437.de/2010/10/18/building-iphone-apps-with-html-css-and-javascript-2/PhoneGaphttps://www.rfc1437.de/2010/10/18/phonegap/HyperGrid 1.5, OpenSim, & 3D Web | HyperGrid Teleport Networkhttps://www.rfc1437.de/2010/10/11/hypergrid-1-5-opensim-3d-web-hypergrid-teleport/jacksonh's manos at master - GitHubhttps://www.rfc1437.de/2010/10/11/jacksonh-s-manos-at-master-github/kramdownhttps://www.rfc1437.de/2010/10/11/kramdown/RubyFrontier Documentationhttps://www.rfc1437.de/2010/10/11/rubyfrontier-documentation-2/Andrew de Quincey's livejournalhttps://www.rfc1437.de/2010/10/09/andrew-de-quincey-s-livejournal/brisshttps://www.rfc1437.de/2010/10/08/briss/Camelot - See ithttps://www.rfc1437.de/2010/10/08/camelot-see-it/Downloads for diva's d2 - GitHubhttps://www.rfc1437.de/2010/10/08/downloads-for-diva-s-d2-github/uncertainties Python package v1.7.0 documentationhttps://www.rfc1437.de/2010/10/08/uncertainties-python-package-v1-7-0-documentation/LookingGlasshttps://www.rfc1437.de/2010/10/07/lookingglass/Radegast Metaverse Client · Lightweight client for connecting to Second Life and OpenSim based virtual worldshttps://www.rfc1437.de/2010/10/07/radegast-metaverse-client-lightweight-client-for/santhoshtr's pypdflib at master - GitHubhttps://www.rfc1437.de/2010/10/06/santhoshtr-s-pypdflib-at-master-github/There is no Plan B: why the IPv4-to-IPv6 transition will be uglyhttps://www.rfc1437.de/2010/10/06/there-is-no-plan-b-why-the-ipv4-to-ipv6/Chicken Nuggets Are Made From This Pink Goophttps://www.rfc1437.de/2010/10/04/chicken-nuggets-are-made-from-this-pink-goop/Filtering Dropdown Lists in the Django Admin — Stereoplexhttps://www.rfc1437.de/2010/10/02/filtering-dropdown-lists-in-the-django-admin/arskom's soaplib at 1_0 - GitHubhttps://www.rfc1437.de/2010/10/01/arskom-s-soaplib-at-1-0-github/pysimplesoap - Project Hosting on Google Codehttps://www.rfc1437.de/2010/10/01/pysimplesoap-project-hosting-on-google-code/Using the ElementTree Module to Generate SOAP\_Messageshttps://www.rfc1437.de/2010/10/01/using-the-elementtree-module-to-generate-soap/dcramer's django-sentry at master - GitHubhttps://www.rfc1437.de/2010/09/28/dcramer-s-django-sentry-at-master-github/Wo ich schon überall warhttps://www.rfc1437.de/2010/09/28/wo-ich-schon-ueberall-war/gcv's appengine-magic at master - GitHubhttps://www.rfc1437.de/2010/09/27/gcv-s-appengine-magic-at-master-github/jduey's arrows at master - GitHubhttps://www.rfc1437.de/2010/09/27/jduey-s-arrows-at-master-github/ninjudd's cake at master - GitHubhttps://www.rfc1437.de/2010/09/27/ninjudd-s-cake-at-master-github/Shotwellhttps://www.rfc1437.de/2010/09/27/shotwell/Kojo Homehttps://www.rfc1437.de/2010/09/23/kojo-home/Lastschriftzahlung: Easycash sammelt Daten über gute und schlechte Kunden - Golem.dehttps://www.rfc1437.de/2010/09/23/lastschriftzahlung-easycash-sammelt-daten-ueber/Finepix X100: Fujifilm bringt Kompaktkamera mit APS-C-Sensor - Golem.dehttps://www.rfc1437.de/2010/09/21/finepix-x100-fujifilm-bringt-kompaktkamera-mit/Fujifilm FinePix X100: Where the Hell Did THIS Come From? | Enticing the Lighthttps://www.rfc1437.de/2010/09/21/fujifilm-finepix-x100-where-the-hell-did-this/Fujifilm unveils FinePix X100 large-sensor compact: Digital Photography Reviewhttps://www.rfc1437.de/2010/09/21/fujifilm-unveils-finepix-x100-large-sensor/Hands on the VLC iPad App (Pretty Good)https://www.rfc1437.de/2010/09/21/hands-on-the-vlc-ipad-app-pretty-good/README - copperhead - Project Hosting on Google Codehttps://www.rfc1437.de/2010/09/21/readme-copperhead-project-hosting-on-google-code/TidBITS Watchlist: TinkerTool 4.2https://www.rfc1437.de/2010/09/21/tidbits-watchlist-tinkertool-4-2/codepadhttps://www.rfc1437.de/2010/09/15/codepad/Free Pascal - Advanced open source Pascal compiler for Pascal and Object Pascal - Home Pagehttps://www.rfc1437.de/2010/09/15/free-pascal-advanced-open-source-pascal-compiler/home | Disco Projecthttps://www.rfc1437.de/2010/09/15/home-disco-project/Lazarus Snapshotshttps://www.rfc1437.de/2010/09/15/lazarus-snapshots/octopy - Project Hosting on Google Codehttps://www.rfc1437.de/2010/09/15/octopy-project-hosting-on-google-code/mincemeat.py: MapReduce on Pythonhttps://www.rfc1437.de/2010/09/14/mincemeat-py-mapreduce-on-python/Sass - Syntactically Awesome Stylesheetshttps://www.rfc1437.de/2010/09/14/sass-syntactically-awesome-stylesheets/NinjaKit: GreaseMonkey for Safari! : applehttps://www.rfc1437.de/2010/09/13/ninjakit-greasemonkey-for-safari-apple/NodeBox for OpenGL | City in a Bottlehttps://www.rfc1437.de/2010/09/13/nodebox-for-opengl-city-in-a-bottle/objgraph - Drawing Python object reference graphshttps://www.rfc1437.de/2010/09/13/objgraph-drawing-python-object-reference-graphs/pyglethttps://www.rfc1437.de/2010/09/13/pyglet/Introductionhttps://www.rfc1437.de/2010/09/10/introduction/Lingua::Romana::Perligata -- Perl for the XXIimum Centuryhttps://www.rfc1437.de/2010/09/10/lingua-romana-perligata-perl-for-the-xxiimum/Squerylhttps://www.rfc1437.de/2010/09/10/squeryl/COBOL ON COGShttps://www.rfc1437.de/2010/09/06/cobol-on-cogs/DOS on Dope: The last MVC web framework you''ll ever needhttps://www.rfc1437.de/2010/09/06/dos-on-dope-the-last-mvc-web-framework-you-ll/Plachttps://www.rfc1437.de/2010/09/06/plac/Python Datastructures Backed by Redis @ Irrational Exuberancehttps://www.rfc1437.de/2010/09/06/python-datastructures-backed-by-redis-irrational/Schwarz-Gelb einigt sich auf längere AKW-Laufzeitenhttps://www.rfc1437.de/2010/09/06/schwarz-gelb-einigt-sich-auf-laengere-akw/zeromqhttps://www.rfc1437.de/2010/09/06/zeromq/Kein Sommersend mehr?:\_Wochenmarkt vor der Privatisierung\_-\_ Münstersche Zeitunghttps://www.rfc1437.de/2010/09/04/kein-sommersend-mehr-wochenmarkt-vor-der/Digitale Literatur: Neal Stephenson und die digital-sozialen Mongolen - Golem.dehttps://www.rfc1437.de/2010/09/03/digitale-literatur-neal-stephenson-und-die/JazzSchemehttps://www.rfc1437.de/2010/09/03/jazzscheme-2/Quicklisp - get started with Common Lisp libraries, quicklyhttps://www.rfc1437.de/2010/09/03/quicklisp-get-started-with-common-lisp-libraries/Paver: Easy Scripting for Software Projectshttps://www.rfc1437.de/2010/09/02/paver-easy-scripting-for-software-projects/Pysistencehttps://www.rfc1437.de/2010/09/02/pysistence/The Official web2py Bookhttps://www.rfc1437.de/2010/09/01/the-official-web2py-book/emscriptenhttps://www.rfc1437.de/2010/08/30/emscripten/lambdajhttps://www.rfc1437.de/2010/08/30/lambdaj/nakkaya's static at master - GitHubhttps://www.rfc1437.de/2010/08/30/nakkaya-s-static-at-master-github/Project Aon: Main / Home (browse)https://www.rfc1437.de/2010/08/30/project-aon-main-home-browse/Creating ePub files with Pageshttps://www.rfc1437.de/2010/08/27/creating-epub-files-with-pages/Meliae python memory analysis in Launchpadhttps://www.rfc1437.de/2010/08/27/meliae-python-memory-analysis-in-launchpad/Cosina joins Micro Four Thirds system: Digital Photography Reviewhttps://www.rfc1437.de/2010/08/26/cosina-joins-micro-four-thirds-system-digital/[Cython] ANN: Cython 0.13 released!https://www.rfc1437.de/2010/08/26/cython-ann-cython-0-13-released/Falls sich wer wundert wo ich warhttps://www.rfc1437.de/2010/08/23/falls-sich-wer-wundert-wo-ich-war/wo ich auch noch warhttps://www.rfc1437.de/2010/08/23/wo-ich-auch-noch-war/Wegen des Aufschwungs: Wirtschaftsverband will Urlaub kürzen - taz.dehttps://www.rfc1437.de/2010/08/21/wegen-des-aufschwungs-wirtschaftsverband-will/Multiplication is easier when it's complexhttps://www.rfc1437.de/2010/08/03/multiplication-is-easier-when-it-s-complex/Virtuelle Internetlady provoziert in den USA Geheimnisverrat | tagesschau.dehttps://www.rfc1437.de/2010/08/03/virtuelle-internetlady-provoziert-in-den-usa/Emotion Markup Language (EmotionML) 1.0https://www.rfc1437.de/2010/07/31/emotion-markup-language-emotionml-1-0/JEmacs - the Java/Scheme-based Emacshttps://www.rfc1437.de/2010/07/30/jemacs-the-java-scheme-based-emacs/Scribes - Simple And Powerful Text Editor for GNOMEhttps://www.rfc1437.de/2010/07/30/scribes-simple-and-powerful-text-editor-for-gnome/EU-Kommission plant Umstellung aller Girokonto-Nummern | tagesschau.dehttps://www.rfc1437.de/2010/07/28/eu-kommission-plant-umstellung-aller-girokonto/PEP 380 -- Syntax for Delegating to a Subgeneratorhttps://www.rfc1437.de/2010/07/27/pep-380-syntax-for-delegating-to-a-subgenerator/saucelabs's monocle at master - GitHubhttps://www.rfc1437.de/2010/07/27/saucelabs-s-monocle-at-master-github/Hg-Git Mercurial Pluginhttps://www.rfc1437.de/2010/07/26/hg-git-mercurial-plugin-2/Valued Lessons: Monads in Python (with nice syntax!)https://www.rfc1437.de/2010/07/26/valued-lessons-monads-in-python-with-nice-syntax-2/pjs4ipad - Project Hosting on Google Codehttps://www.rfc1437.de/2010/07/25/pjs4ipad-project-hosting-on-google-code/0.7 Release - OpenSimhttps://www.rfc1437.de/2010/07/24/0-7-release-opensim/TIDE 2.0 betahttps://www.rfc1437.de/2010/07/24/tide-2-0-beta/AR.Drone.com – Parrot Wi-Fi quadricopter. Augmented Reality games on iPhone, iPod touch & iPadhttps://www.rfc1437.de/2010/07/23/ar-drone-com-parrot-wi-fi-quadricopter-augmented/Python IDE with Django support : JetBrains PyCharmhttps://www.rfc1437.de/2010/07/23/python-ide-with-django-support-jetbrains-pycharm/Don't Hold It Wronghttps://www.rfc1437.de/2010/07/20/don-t-hold-it-wrong/Gefahren im Netz: Kriminalbeamte fordern Reset-Knopf fürs Internet - SPIEGEL ONLINE - Nachrichten - Netzwelthttps://www.rfc1437.de/2010/07/19/gefahren-im-netz-kriminalbeamte-fordern-reset/itod's fluidium at master - GitHubhttps://www.rfc1437.de/2010/07/19/itod-s-fluidium-at-master-github/Panasonic DMC-LX5K Support and Service Informationhttps://www.rfc1437.de/2010/07/18/panasonic-dmc-lx5k-support-and-service-information/Lightweight Approach to AOP in Pythonhttps://www.rfc1437.de/2010/07/17/lightweight-approach-to-aop-in-python/Mobile/firefoxhome - MozillaWikihttps://www.rfc1437.de/2010/07/17/mobile-firefoxhome-mozillawiki/Building iPhone Apps with HTML, CSS, and JavaScripthttps://www.rfc1437.de/2010/07/16/building-iphone-apps-with-html-css-and-javascript/jquery-aop - Project Hosting on Google Codehttps://www.rfc1437.de/2010/07/16/jquery-aop-project-hosting-on-google-code/Auch Union gegen Homöopathie auf Kassenkostenhttps://www.rfc1437.de/2010/07/12/auch-union-gegen-homoeopathie-auf-kassenkosten/jessenoller.com - PEP 3148 Accepted: “futures – execute computations asynchronously”https://www.rfc1437.de/2010/07/12/jessenoller-com-pep-3148-accepted-futures-execute/Chickenfoothttps://www.rfc1437.de/2010/07/11/chickenfoot/CoScripterhttps://www.rfc1437.de/2010/07/11/coscripter/''Hollywood Accounting'' Losing In The Courts | Techdirthttps://www.rfc1437.de/2010/07/10/hollywood-accounting-losing-in-the-courts-techdirt/Three Minute Philosophy - Immanuel Kanthttps://www.rfc1437.de/2010/07/10/three-minute-philosophy-immanuel-kant/Fake - Mac OS X Web Browser Automation and Webapp Testing Made Simple.https://www.rfc1437.de/2010/07/05/fake-mac-os-x-web-browser-automation-and-webapp/Dropbox APIhttps://www.rfc1437.de/2010/07/04/dropbox-api/Python 2.7 Releasehttps://www.rfc1437.de/2010/07/04/python-2-7-release/Gib dem Irrsinn eine Chance!: Ich kaufe nicht mehr bei Thalia!!!https://www.rfc1437.de/2010/07/03/gib-dem-irrsinn-eine-chance-ich-kaufe-nicht-mehr/Back In Timehttps://www.rfc1437.de/2010/07/02/back-in-time/liebke's cljhttps://www.rfc1437.de/2010/07/01/liebke-s-clj/jessemiller's HamlPyhttps://www.rfc1437.de/2010/06/27/jessemiller-s-hamlpy/Welcome | Ibis Reader ™https://www.rfc1437.de/2010/06/27/welcome-ibis-reader/Write-Ahead Logginghttps://www.rfc1437.de/2010/06/27/write-ahead-logging/Inconsolatahttps://www.rfc1437.de/2010/06/23/inconsolata/iPad or Bust! - Blog - The Omni Grouphttps://www.rfc1437.de/2010/06/23/ipad-or-bust-blog-the-omni-group/Nicholas Piël » ZeroMQ an introductionhttps://www.rfc1437.de/2010/06/23/nicholas-pi-l-zeromq-an-introduction/Ben Goldacre: Predictions are fine, but there are better ways to protect a populationhttps://www.rfc1437.de/2010/06/20/ben-goldacre-predictions-are-fine-but-there-are/iOS 4 walkthrough | TiPbhttps://www.rfc1437.de/2010/06/20/ios-4-walkthrough-tipb/PyFilesystem 0.3 releasedhttps://www.rfc1437.de/2010/06/20/pyfilesystem-0-3-released/About Greenfoothttps://www.rfc1437.de/2010/06/19/about-greenfoot/Chimply generates your imageshttps://www.rfc1437.de/2010/06/18/chimply-generates-your-images/PyPy Status Blog: A JIT for Regular Expression Matchinghttps://www.rfc1437.de/2010/06/17/pypy-status-blog-a-jit-for-regular-expression/nutshell — Lettuce v0.1.2 (barium release) documentationhttps://www.rfc1437.de/2010/06/16/nutshell-lettuce-v0-1-2-barium-release/SSH on the iPhone at last | The 23x bloghttps://www.rfc1437.de/2010/06/16/ssh-on-the-iphone-at-last-the-23x-blog/Urheberrechtsreform: Justizministerin füllt Dritten Korb - Golem.dehttps://www.rfc1437.de/2010/06/16/urheberrechtsreform-justizministerin-fuellt/iFolderhttps://www.rfc1437.de/2010/06/12/ifolder/Innovation sieht anders aus: Rechristiansenisierung - taz.dehttps://www.rfc1437.de/2010/06/12/innovation-sieht-anders-aus/SPD sagt CDU in NRW ab: Die wahren Irren - taz.dehttps://www.rfc1437.de/2010/06/12/spd-sagt-cdu-in-nrw-ab-die-wahren-irren-taz-de/AdBlock for Safarihttps://www.rfc1437.de/2010/06/09/adblock-for-safari/Im Auge des Gesetzes — Der Freitaghttps://www.rfc1437.de/2010/06/09/im-auge-des-gesetzes-der-freitag/Racket Releasedhttps://www.rfc1437.de/2010/06/08/racket-released/Internettelefonie: iPhone: Telekom droht Skype-Nutzern - WirtschaftsWochehttps://www.rfc1437.de/2010/06/07/internettelefonie-iphone-telekom-droht-skype/HDR Testhttps://www.rfc1437.de/2010/06/06/hdr-test/HDRtist "HDR Software will never be the same" - Ohanawarehttps://www.rfc1437.de/2010/06/06/hdrtist-hdr-software-will-never-be-the-same/kenkeiter's ryfihttps://www.rfc1437.de/2010/06/06/kenkeiter-s-ryfi/Creaceed - Hydrahttps://www.rfc1437.de/2010/06/04/creaceed-hydra/HDR PhotoStudio: HDR photo software, HDR merge & editing, BEF plug-in, realistic HDR imaginghttps://www.rfc1437.de/2010/06/04/hdr-photostudio-hdr-photo-software-hdr-merge/Plac: Parsing the Command Line the Easy Wayhttps://www.rfc1437.de/2010/06/04/plac-parsing-the-command-line-the-easy-way/Python Package Index : Baker 1.1https://www.rfc1437.de/2010/06/04/python-package-index-baker-1-1/Aeracode :: On Django And Migrationshttps://www.rfc1437.de/2010/06/03/aeracode-on-django-and-migrations/Mamiya announces RZ33 medium format camerahttps://www.rfc1437.de/2010/06/03/mamiya-announces-rz33-medium-format-camera/Oppugn.us: Where The Rants Gohttps://www.rfc1437.de/2010/06/03/oppugn-us-where-the-rants-go/HackageDB: berp-0.0.1https://www.rfc1437.de/2010/05/31/hackagedb-berp-0-0-1/Köhler-Rücktritt: Fassungslosigkeit und Bedauernhttps://www.rfc1437.de/2010/05/31/koehler-ruecktritt-fassungslosigkeit-und-bedauern/Fossil: Fossil Home Pagehttps://www.rfc1437.de/2010/05/30/fossil-fossil-home-page/ikiwikihttps://www.rfc1437.de/2010/05/30/ikiwiki/Bug 560738 – No Mac-style keyboard shortcutshttps://www.rfc1437.de/2010/05/28/bug-560738-no-mac-style-keyboard-shortcuts/daemon 1.0https://www.rfc1437.de/2010/05/27/daemon-1-0/pyquery: a jquery-like library for pythonhttps://www.rfc1437.de/2010/05/27/pyquery-a-jquery-like-library-for-python/python-daemon 1.5.5https://www.rfc1437.de/2010/05/27/python-daemon-1-5-5/Spring Pythonhttps://www.rfc1437.de/2010/05/27/spring-python/Turkmenbashi 1.0.0https://www.rfc1437.de/2010/05/27/turkmenbashi-1-0-0/MY WORLD IS A LITTLE DARKER…https://www.rfc1437.de/2010/05/23/my-world-is-a-little-darker/Whack’emhttps://www.rfc1437.de/2010/05/22/whack-em/Bundesgerichtshof: Freie Bahn für Softwarepatentehttps://www.rfc1437.de/2010/05/21/bundesgerichtshof-freie-bahn-fuer-softwarepatente/Landis gesteht Dopinghttps://www.rfc1437.de/2010/05/20/landis-gesteht-doping/RFC1437 on the Road: Archivehttps://www.rfc1437.de/2010/05/19/rfc1437-on-the-road-archive-2/Waveboard – Google Wave Client for iPhone and Machttps://www.rfc1437.de/2010/05/18/waveboard-google-wave-client-for-iphone-and-mac/AKW-Laufzeiten sollen ohne Bundesrat verlängert werdenhttps://www.rfc1437.de/2010/05/16/akw-laufzeiten-sollen-ohne-bundesrat-verlaengert/Clojure - datatypeshttps://www.rfc1437.de/2010/05/15/clojure-datatypes/Deutsche Bank für verbotene Wetten bestrafthttps://www.rfc1437.de/2010/05/15/deutsche-bank-fuer-verbotene-wetten-bestraft/Koch beharrt auf Kürzungen im Bildungsbereichhttps://www.rfc1437.de/2010/05/15/koch-beharrt-auf-kuerzungen-im-bildungsbereich/Köhler kritisiert Klagewut deutscher Politikerhttps://www.rfc1437.de/2010/05/15/koehler-kritisiert-klagewut-deutscher-politiker/Rubinius : Use Ruby™https://www.rfc1437.de/2010/05/15/rubinius-use-ruby/Street View: Google belauschte offene WLANshttps://www.rfc1437.de/2010/05/15/street-view-google-belauschte-offene-wlans/HTML5 For Drunkshttps://www.rfc1437.de/2010/05/14/html5-for-drunks/alienscience's leiningen-warhttps://www.rfc1437.de/2010/05/12/alienscience-s-leiningen-war/hiredman's lein-gaehttps://www.rfc1437.de/2010/05/12/hiredman-s-lein-gae/Licenser's lein-searchhttps://www.rfc1437.de/2010/05/12/licenser-s-lein-search/sethtrain's begethttps://www.rfc1437.de/2010/05/12/sethtrain-s-beget/NRW hat gewählt - Landtagswahl 2010https://www.rfc1437.de/2010/05/09/nrw-hat-gewaehlt-landtagswahl-2010/Mac OS X on netbooks | myMacNetbook.comhttps://www.rfc1437.de/2010/05/08/mac-os-x-on-netbooks-mymacnetbook-com/Bischof Walter Mixa: Mixa des sexuellen Missbrauchs verdächtigthttps://www.rfc1437.de/2010/05/07/bischof-walter-mixa-mixa-des-sexuellen/Familienzuwachs: Neandertaler mit Menschen verwandthttps://www.rfc1437.de/2010/05/07/familienzuwachs-neandertaler-mit-menschen-verwandt/Dow Falls in High-Speed Drop - WSJ.comhttps://www.rfc1437.de/2010/05/06/dow-falls-in-high-speed-drop-wsj-com/What iPads Did To My Family - Chuck's Bloghttps://www.rfc1437.de/2010/05/06/what-ipads-did-to-my-family-chuck-s-blog/Ceph: A Linux petabyte-scale distributed file systemhttps://www.rfc1437.de/2010/05/05/ceph-a-linux-petabyte-scale-distributed-file/Marak's JSLINQ at master - GitHubhttps://www.rfc1437.de/2010/05/05/marak-s-jslinq-at-master-github/parsedatetimehttps://www.rfc1437.de/2010/05/05/parsedatetime/PyPy Status Blog: Running wxPython on top of pypyhttps://www.rfc1437.de/2010/05/05/pypy-status-blog-running-wxpython-on-top-of-pypy/Zoolanderhttps://www.rfc1437.de/2010/05/05/zoolander/CDU gerät unter Druck wegen "Wählerinitiative"https://www.rfc1437.de/2010/05/02/cdu-geraet-unter-druck-wegen-waehlerinitiative/The Brads – How to Alienate a Fanbasehttps://www.rfc1437.de/2010/04/29/the-brads-how-to-alienate-a-fanbase/Thoughts on Flashhttps://www.rfc1437.de/2010/04/29/thoughts-on-flash/Gerade mal ein Monat ist das her ...https://www.rfc1437.de/2010/04/28/gerade-mal-ein-monat-ist-das-her/django-paginationhttps://www.rfc1437.de/2010/04/27/django-pagination/Henry's EuLisphttps://www.rfc1437.de/2010/04/27/henry-s-eulisp/jcottonhttps://www.rfc1437.de/2010/04/27/jcotton/Schlüsselbund meldet: Der Zugriff auf dieses Objekt unterliegt Beschränkungenhttps://www.rfc1437.de/2010/04/27/schluesselbund-meldet-der-zugriff-auf-dieses/Große Kirchner-Retrospektive im Frankfurter Städelhttps://www.rfc1437.de/2010/04/23/grosse-kirchner-retrospektive-im-frankfurter/HoudahGeo - Photo Geocoding for Machttps://www.rfc1437.de/2010/04/23/houdahgeo-photo-geocoding-for-mac/Markdochttps://www.rfc1437.de/2010/04/22/markdoc/Große Herstellerunterschiede bei Digitalkamera-Defekten - Golem.dehttps://www.rfc1437.de/2010/04/19/grosse-herstellerunterschiede-bei-digitalkamera/This Is Apple's Next iPhone - Iphone 4 - Gizmodohttps://www.rfc1437.de/2010/04/19/this-is-apple-s-next-iphone-iphone-4-gizmodo/Web.de nennt Fraunhofer-Studie "Microsoft-Propaganda"https://www.rfc1437.de/2010/04/18/web-de-nennt-fraunhofer-studie-microsoft/XML in Postgres – The Game Changer « Flex and Specs()https://www.rfc1437.de/2010/04/18/xml-in-postgres-the-game-changer-flex-and-specs/Archives of the Caml Mailing list: O''Caml for DOShttps://www.rfc1437.de/2010/04/17/archives-of-the-caml-mailing-list-o-caml-for-dos/Umweltbundesamt fordert Pkw-Maut | tagesschau.dehttps://www.rfc1437.de/2010/04/15/umweltbundesamt-fordert-pkw-maut-tagesschau-de/Daring Fireball: New iPhone Developer Agreement Bans the Use of Adobe's Flash-to-iPhone Compilerhttps://www.rfc1437.de/2010/04/09/daring-fireball-new-iphone-developer-agreement/django-ajax-filtered-fieldshttps://www.rfc1437.de/2010/04/09/django-ajax-filtered-fields/My experience with using MongoDB for great science.https://www.rfc1437.de/2010/04/09/my-experience-with-using-mongodb-for-great-science/Ars Technica reviews the iPadhttps://www.rfc1437.de/2010/04/08/ars-technica-reviews-the-ipad/CSU: Absage an Internetsperren verstößt gegen Absprachen - Golem.dehttps://www.rfc1437.de/2010/04/07/csu-absage-an-internetsperren-verstoesst-gegen/twitter's gizzardhttps://www.rfc1437.de/2010/04/07/twitter-s-gizzard/Writing a non-relational Django backend - Django nonrel / NoSQL blog - All buttons pressedhttps://www.rfc1437.de/2010/04/07/writing-a-non-relational-django-backend-django/IBM breaks OSS patent promise, targets mainframe emulatorhttps://www.rfc1437.de/2010/04/06/ibm-breaks-oss-patent-promise-targets-mainframe/Perfection kills » What’s wrong with extending the DOMhttps://www.rfc1437.de/2010/04/06/perfection-kills-what-s-wrong-with-extending-the/Oracle Announces Latest Release of Oracle® Berkeley DBhttps://www.rfc1437.de/2010/04/03/oracle-announces-latest-release-of-oracle/Elixirgraphicshttps://www.rfc1437.de/2010/04/02/elixirgraphics/seyDesign Professional RapidWeaver themeshttps://www.rfc1437.de/2010/04/02/seydesign-professional-rapidweaver-themes/YourHead Softwarehttps://www.rfc1437.de/2010/04/02/yourhead-software/Sony Steals Feature From Your PlayStation 3https://www.rfc1437.de/2010/03/31/sony-steals-feature-from-your-playstation-3/EU-Kommission will Internetsperren einführenhttps://www.rfc1437.de/2010/03/29/eu-kommission-will-internetsperren-einfuehren/Viele Tote bei Anschlägen auf Moskauer U-Bahnhttps://www.rfc1437.de/2010/03/29/viele-tote-bei-anschlaegen-auf-moskauer-u-bahn/NLTK Home (Natural Language Toolkit)https://www.rfc1437.de/2010/03/12/nltk-home-natural-language-toolkit/Python Package Index : Esrapy 0.5https://www.rfc1437.de/2010/03/12/python-package-index-esrapy-0-5/Building Skills in Pythonhttps://www.rfc1437.de/2010/03/10/building-skills-in-python/Jobo AG & Jobo Labortechnik GmbH sind insolvent (aktualisiert) | photoscalahttps://www.rfc1437.de/2010/03/08/jobo-ag-jobo-labortechnik-gmbh-sind-insolvent/Oscar für Waltzhttps://www.rfc1437.de/2010/03/08/oscar-fuer-waltz/Bottle: Python Web Frameworkhttps://www.rfc1437.de/2010/03/07/bottle-python-web-framework/clojure-pythonhttps://www.rfc1437.de/2010/03/07/clojure-python/hugoduncan's clj-ssh at master - GitHubhttps://www.rfc1437.de/2010/03/07/hugoduncan-s-clj-ssh-at-master-github/Scala: Post-Functional, Post-Modern, or Just Perl++?https://www.rfc1437.de/2010/03/07/scala-post-functional-post-modern-or-just-perl/digg's lazyboy at master - GitHubhttps://www.rfc1437.de/2010/03/02/digg-s-lazyboy-at-master-github/17.6. multiprocessinghttps://www.rfc1437.de/2010/03/01/17-6-multiprocessing/rfc1437 / lazypy / source — bitbucket.orghttps://www.rfc1437.de/2010/03/01/rfc1437-lazypy-source-bitbucket-org/Semanchuk.com - Python IPC Moduleshttps://www.rfc1437.de/2010/03/01/semanchuk-com-python-ipc-modules/A simple web application in Clojure using ring and enlive « LShift Ltd.https://www.rfc1437.de/2010/02/28/a-simple-web-application-in-clojure-using-ring/Dynamic Web Development with Seasidehttps://www.rfc1437.de/2010/02/28/dynamic-web-development-with-seaside-2/Heroku | Ruby Cloud Platform as a Servicehttps://www.rfc1437.de/2010/02/28/heroku-ruby-cloud-platform-as-a-service/inessential.com: On switching away from Core Datahttps://www.rfc1437.de/2010/02/28/inessential-com-on-switching-away-from-core-data/Johnny Cache v0.1 documentationhttps://www.rfc1437.de/2010/02/28/johnny-cache-v0-1-documentation/Kotka : Projects : Clojure : VimClojurehttps://www.rfc1437.de/2010/02/28/kotka-projects-clojure-vimclojure/LinuxTupleshttps://www.rfc1437.de/2010/02/28/linuxtuples/mmcgrana's ring at master - GitHubhttps://www.rfc1437.de/2010/02/28/mmcgrana-s-ring-at-master-github/Open Wi-Fi 'outlawed' in Digital Economy Bill - ZDNet.co.ukhttps://www.rfc1437.de/2010/02/28/open-wi-fi-outlawed-in-digital-economy-bill-zdnet/PiCloud | Cloud Computing. Simplified.https://www.rfc1437.de/2010/02/28/picloud-cloud-computing-simplified/rfc1437 / django-standalone / overview — bitbucket.orghttps://www.rfc1437.de/2010/02/28/rfc1437-django-standalone-overview-bitbucket-org/World Record-Setting Kick to the Groin Raises Five Perplexing Questions - World Record - Gawkerhttps://www.rfc1437.de/2010/02/28/world-record-setting-kick-to-the-groin-raises/fiat lux » Extracting iPhone Backup Data with mobilesync-inspecthttps://www.rfc1437.de/2010/02/27/fiat-lux-extracting-iphone-backup-data-with/iphone-backup-decoder - Project Hosting on Google Codehttps://www.rfc1437.de/2010/02/27/iphone-backup-decoder-project-hosting-on-google/iPhone / iPod Touch Backup Extractorhttps://www.rfc1437.de/2010/02/27/iphone-ipod-touch-backup-extractor/Menial » Basehttps://www.rfc1437.de/2010/02/27/menial-base/Bundestag: Argumente oder Transparente?https://www.rfc1437.de/2010/02/26/bundestag-argumente-oder-transparente/dajaxproject.com - easy to use ajax library for djangohttps://www.rfc1437.de/2010/02/24/dajaxproject-com-easy-to-use-ajax-library-for/PostgreSQL: News: 9.0 Alpha 4 Available Nowhttps://www.rfc1437.de/2010/02/24/postgresql-news-9-0-alpha-4-available-now/Squeryl — Introductionhttps://www.rfc1437.de/2010/02/24/squeryl-introduction/IronPython 2.0 and Jython 2.5 performance compared to Python 2.5https://www.rfc1437.de/2010/02/22/ironpython-2-0-and-jython-2-5-performance/IronPython hammers CPython when not mutating class attributeshttps://www.rfc1437.de/2010/02/22/ironpython-hammers-cpython-when-not-mutating/Polyglothttps://www.rfc1437.de/2010/02/22/polyglot-2/bpython interpreterhttps://www.rfc1437.de/2010/02/21/bpython-interpreter/DreamPie: The Python shell you''ve always dreamed about!https://www.rfc1437.de/2010/02/21/dreampie-the-python-shell-you-ve-always-dreamed/The New App Store Rules: No Swimsuits, No Skin, And No Innuendohttps://www.rfc1437.de/2010/02/21/the-new-app-store-rules-no-swimsuits-no-skin-and/5 Animals That Can Do Amazing Things ... With Their Penises | Cracked.comhttps://www.rfc1437.de/2010/02/20/5-animals-that-can-do-amazing-things-with-their/ZODB - a native object database for Python — ZODB v3.9.0 documentationhttps://www.rfc1437.de/2010/02/19/zodb-a-native-object-database-for-python-zodb-v3/Foto verbotenhttps://www.rfc1437.de/2010/02/15/foto-verboten/The dark side of Dubaihttps://www.rfc1437.de/2010/02/14/the-dark-side-of-dubai/django-pistonhttps://www.rfc1437.de/2010/02/13/django-piston/Fuck you, Google « Fugitivushttps://www.rfc1437.de/2010/02/13/fuck-you-google-fugitivus/Murkyhttps://www.rfc1437.de/2010/02/13/murky/Tomboy : Simple note takinghttps://www.rfc1437.de/2010/02/13/tomboy-simple-note-taking/Front Range Pythoneering: Realizing Jython 2.5https://www.rfc1437.de/2010/02/12/front-range-pythoneering-realizing-jython-2-5/Interactive Python GIL Visualization [dabeaz]https://www.rfc1437.de/2010/02/12/interactive-python-gil-visualization-dabeaz/maven-jython-plugin - Maven Jython Pluginhttps://www.rfc1437.de/2010/02/12/maven-jython-plugin-maven-jython-plugin/Proteste gegen G8: Pfeifkonzert für Ludwig Spaenlehttps://www.rfc1437.de/2010/02/12/proteste-gegen-g8-pfeifkonzert-fuer-ludwig-spaenle/Security-Forscher: Bezahlen mit Kreditkarte und PIN unsicher - Golem.dehttps://www.rfc1437.de/2010/02/12/security-forscher-bezahlen-mit-kreditkarte-und/Bill Clementson's Blog: Elephant and Rucksack - Comparison of two CL Open Source Prevalence packageshttps://www.rfc1437.de/2010/02/10/bill-clementson-s-blog-elephant-and-rucksack/Presenting django-devserver, a better runserver.https://www.rfc1437.de/2010/02/10/presenting-django-devserver-a-better-runserver/Jesus, Kirk and Vinnyhttps://www.rfc1437.de/2010/02/09/jesus-kirk-and-vinny/Schneier on Security: All Subversive Organizations Now Must Register in South Carolinahttps://www.rfc1437.de/2010/02/09/schneier-on-security-all-subversive-organizations/Twitpic / Astro_Soichihttps://www.rfc1437.de/2010/02/09/twitpic-astro-soichi/persistence.js: An Asynchronous Javascript ORM for HTML5/Gears « I am Zefhttps://www.rfc1437.de/2010/02/08/persistence-js-an-asynchronous-javascript-orm-for/Bericht: Post plant DE-Mail für 20 Centhttps://www.rfc1437.de/2010/02/07/bericht-post-plant-de-mail-fuer-20-cent/Simtec Electronics Entropy Keyhttps://www.rfc1437.de/2010/02/07/simtec-electronics-entropy-key/Faster or Lazier Paginationhttps://www.rfc1437.de/2010/02/06/faster-or-lazier-pagination/Please read: Security Issue on AMO « Mozilla Add-ons Bloghttps://www.rfc1437.de/2010/02/06/please-read-security-issue-on-amo-mozilla-add-ons/Using ctags in Vim - amix.dkhttps://www.rfc1437.de/2010/02/05/using-ctags-in-vim-amix-dk/Vim 7: Turning completion on - amix.dkhttps://www.rfc1437.de/2010/02/05/vim-7-turning-completion-on-amix-dk/collision detection: Molecular secrets of the "iron-plated snail"https://www.rfc1437.de/2010/02/04/collision-detection-molecular-secrets-of-the-iron/mongoenginehttps://www.rfc1437.de/2010/02/04/mongoengine/BookmarksExtension - Mercurialhttps://www.rfc1437.de/2010/02/03/bookmarksextension-mercurial/Gericht: E-Mail-Abmahnungen sind zulässighttps://www.rfc1437.de/2010/02/03/gericht-e-mail-abmahnungen-sind-zulaessig/InfiniDB 1.0.2: Analytische Datenbank Engine für Datamining - Golem.dehttps://www.rfc1437.de/2010/02/03/infinidb-1-0-2-analytische-datenbank-engine-fuer/Pollution in 1/8 | RIPE Labshttps://www.rfc1437.de/2010/02/03/pollution-in-1-8-ripe-labs/Time Capsule Memorial Registerhttps://www.rfc1437.de/2010/02/03/time-capsule-memorial-register/homebrew - GitHubhttps://www.rfc1437.de/2010/02/02/homebrew-github/The Definitive Guide to Jython — Jython Book v0.91 documentationhttps://www.rfc1437.de/2010/02/02/the-definitive-guide-to-jython-jython-book-v0-91/CLiki : FirstStepsWithAsdfAndAsdfInstallhttps://www.rfc1437.de/2010/01/31/cliki-firststepswithasdfandasdfinstall/HintsForAsdfAndOpenmcl – Clozure CLhttps://www.rfc1437.de/2010/01/31/hintsforasdfandopenmcl-clozure-cl/Alex Payne — On the iPadhttps://www.rfc1437.de/2010/01/29/alex-payne-on-the-ipad/Apple buys P.A. Semi chip designer, Intel says wha?https://www.rfc1437.de/2010/01/29/apple-buys-p-a-semi-chip-designer-intel-says-wha/AppScale, an OpenSource GAE implementationhttps://www.rfc1437.de/2010/01/29/appscale-an-opensource-gae-implementation/Clozure CLhttps://www.rfc1437.de/2010/01/29/clozure-cl/Eucalyptus Communityhttps://www.rfc1437.de/2010/01/29/eucalyptus-community/Mindestlohn-Urteil: Postdienstleister PIN will Löhne senken | tagesschau.dehttps://www.rfc1437.de/2010/01/29/mindestlohn-urteil-postdienstleister-pin-will/Apple - iPad - Technical specifications and accessories for iPad.https://www.rfc1437.de/2010/01/28/apple-ipad-technical-specifications-and/denkspuren: Factor @ Heilbronn Universityhttps://www.rfc1437.de/2010/01/28/denkspuren-factor-heilbronn-university/Mainz: Brüderle kein Landesparteitags-Delegierter mehrhttps://www.rfc1437.de/2010/01/28/mainz-bruederle-kein-landesparteitags-delegierter/django-extensionshttps://www.rfc1437.de/2010/01/27/django-extensions/Introducing Bibble 5https://www.rfc1437.de/2010/01/27/introducing-bibble-5/kbarni's bibble plugins - Pluginshttps://www.rfc1437.de/2010/01/27/kbarni-s-bibble-plugins-plugins/LightZone « lightcraftshttps://www.rfc1437.de/2010/01/27/lightzone-lightcrafts/Scala 2.8.0 Beta 1 | The Scala Programming Languagehttps://www.rfc1437.de/2010/01/27/scala-2-8-0-beta-1-the-scala-programming-language/Carl Bildt: Digitale Mauern einreißenhttps://www.rfc1437.de/2010/01/26/carl-bildt-digitale-mauern-einreissen/fastutilhttps://www.rfc1437.de/2010/01/26/fastutil/Have you seen the old men | Spreeblickhttps://www.rfc1437.de/2010/01/26/have-you-seen-the-old-men-spreeblick/Christopher Blizzard · HTML5 video and H.264 – what history tells us and why we’re standing with the webhttps://www.rfc1437.de/2010/01/25/christopher-blizzard-html5-video-and-h-264-what/IronPython in Action: Front Pagehttps://www.rfc1437.de/2010/01/25/ironpython-in-action-front-page/Zensur im Namen des Jugendschutzes: Stellungnahme zum Jugendmedienschutz-Staatsvertrag - Arbeitskreis gegen Internet-Sperren und Zensur (AK Zensur)https://www.rfc1437.de/2010/01/25/zensur-im-namen-des-jugendschutzes-stellungnahme/Alle Atommeiler sollen offenbar zunächst am Netz bleibenhttps://www.rfc1437.de/2010/01/24/alle-atommeiler-sollen-offenbar-zunaechst-am-netz/annalist - "Wir werden blockieren"https://www.rfc1437.de/2010/01/24/annalist-wir-werden-blockieren/Armin Maiwald wird 70https://www.rfc1437.de/2010/01/24/armin-maiwald-wird-70/Facebook Gives Harman His Name Back, Apologizeshttps://www.rfc1437.de/2010/01/24/facebook-gives-harman-his-name-back-apologizes/High-Level Virtual Machine (HLVM)https://www.rfc1437.de/2010/01/24/high-level-virtual-machine-hlvm/michaelv.orghttps://www.rfc1437.de/2010/01/24/michaelv-org/Trellishttps://www.rfc1437.de/2010/01/24/trellis/Closure Compilerhttps://www.rfc1437.de/2010/01/23/closure-compiler/django-history-tableshttps://www.rfc1437.de/2010/01/23/django-history-tables/EZ430-Chronos - Texas Instruments Embedded Processors Wikihttps://www.rfc1437.de/2010/01/23/ez430-chronos-texas-instruments-embedded/Facebook Snatches User’s Vanity URL And Sells It To Harman Internationalhttps://www.rfc1437.de/2010/01/23/facebook-snatches-user-s-vanity-url-and-sells-it/How to create offline webapps on the iPhonehttps://www.rfc1437.de/2010/01/23/how-to-create-offline-webapps-on-the-iphone/Inheritance Patterns in JavaScripthttps://www.rfc1437.de/2010/01/23/inheritance-patterns-in-javascript/Syntensityhttps://www.rfc1437.de/2010/01/23/syntensity/TI hits home run with Chronos sportswatch wireless dev kithttps://www.rfc1437.de/2010/01/23/ti-hits-home-run-with-chronos-sportswatch/Well, I''m Back: Video, Freedom And Mozillahttps://www.rfc1437.de/2010/01/23/well-i-m-back-video-freedom-and-mozilla/A Postfunctional Languagehttps://www.rfc1437.de/2010/01/22/a-postfunctional-language/Export ban for useless 'bomb detector'https://www.rfc1437.de/2010/01/22/export-ban-for-useless-bomb-detector/Giant Knife 16999 Wenger Swiss Army Knifehttps://www.rfc1437.de/2010/01/22/giant-knife-16999-wenger-swiss-army-knife/The Collection - Leathermanhttps://www.rfc1437.de/2010/01/22/the-collection-leatherman/Kindle Development Kithttps://www.rfc1437.de/2010/01/21/kindle-development-kit/ABCL-webhttps://www.rfc1437.de/2010/01/20/abcl-web/Armed Bearhttps://www.rfc1437.de/2010/01/20/armed-bear/Auch CDU erhielt Spende aus der Hotelbranchehttps://www.rfc1437.de/2010/01/20/auch-cdu-erhielt-spende-aus-der-hotelbranche/Chipformate digitaler Kamerashttps://www.rfc1437.de/2010/01/20/chipformate-digitaler-kameras/Clojure 1.1 and Beyondhttps://www.rfc1437.de/2010/01/20/clojure-1-1-and-beyond/Diffraction and Fraud in Digicams « Petavoxelhttps://www.rfc1437.de/2010/01/20/diffraction-and-fraud-in-digicams-petavoxel/Kvardek Du: How a Common Lisp Programmer Views Users of Other Languageshttps://www.rfc1437.de/2010/01/20/kvardek-du-how-a-common-lisp-programmer-views/LEGO Universe allows kids to fight with their imaginationhttps://www.rfc1437.de/2010/01/20/lego-universe-allows-kids-to-fight-with-their/pylint (analyzes Python source code looking for bugs and signs of poor quality.) (Logilab.org)https://www.rfc1437.de/2010/01/20/pylint-analyzes-python-source-code-looking-for/research!rsc: Go Data Structures: Interfaceshttps://www.rfc1437.de/2010/01/20/research-rsc-go-data-structures-interfaces/taylanpince's django-doc-wiki at master - GitHubhttps://www.rfc1437.de/2010/01/20/taylanpince-s-django-doc-wiki-at-master-github/Windows hole discovered after 17 yearshttps://www.rfc1437.de/2010/01/20/windows-hole-discovered-after-17-years/Anonymous Prohttps://www.rfc1437.de/2010/01/18/anonymous-pro/Ein Echtzeit-Experiment: Der Mensch wird zum Datensatz - Hintergründe - Feuilleton - FAZ.NEThttps://www.rfc1437.de/2010/01/18/ein-echtzeit-experiment-der-mensch-wird-zum/Java Image Processing - Blurring for Beginnershttps://www.rfc1437.de/2010/01/18/java-image-processing-blurring-for-beginners/jekaterinburg weather in march - Wolfram|Alphahttps://www.rfc1437.de/2010/01/18/jekaterinburg-weather-in-march-wolfram-alpha/Mercurial: The Definitive Guidehttps://www.rfc1437.de/2010/01/18/mercurial-the-definitive-guide/aM laboratoryhttps://www.rfc1437.de/2010/01/17/am-laboratory/Deutsche Verleger gehen gegen Google vorhttps://www.rfc1437.de/2010/01/16/deutsche-verleger-gehen-gegen-google-vor/jQuery 1.4 Released – The 14 Days of jQueryhttps://www.rfc1437.de/2010/01/15/jquery-1-4-released-the-14-days-of-jquery/matthiask's feincmshttps://www.rfc1437.de/2010/01/15/matthiask-s-feincms/ReusableAppResources - Django - Trachttps://www.rfc1437.de/2010/01/15/reusableappresources-django-trac/stream – Lazily-evaluated, parallelizable pipelinehttps://www.rfc1437.de/2010/01/15/stream-lazily-evaluated-parallelizable-pipeline/Kritik an Berufung von Privatenkassen-Manager ins Ministerium | tagesschau.dehttps://www.rfc1437.de/2010/01/13/kritik-an-berufung-von-privatenkassen-manager-ins/fingernails in oatmeal, The Unsightliness of Merge Commitshttps://www.rfc1437.de/2010/01/12/fingernails-in-oatmeal-the-unsightliness-of-merge/Introducing Akka - Simpler Scalability, Fault-Tolerance, Concurrency & Remoting through Actorshttps://www.rfc1437.de/2010/01/12/introducing-akka-simpler-scalability-fault/Linus on git pull/rebasehttps://www.rfc1437.de/2010/01/12/linus-on-git-pull-rebase/Voigtlaender - Die offizielle Homepage - Bessa III Mittelformatkamerahttps://www.rfc1437.de/2010/01/12/voigtlaender-die-offizielle-homepage-bessa-iii/Voigtlander Bessa IIIhttps://www.rfc1437.de/2010/01/12/voigtlander-bessa-iii/entrian.com - goto for Python - goto for Pythonhttps://www.rfc1437.de/2010/01/11/entrian-com-goto-for-python-goto-for-python/HeyChinaski.com » Blog Archive » HeyGraph Javascript and canvas graphing toolhttps://www.rfc1437.de/2010/01/11/heychinaski-com-blog-archive-heygraph-javascript/Nailgun: Insanely Fast Javahttps://www.rfc1437.de/2010/01/11/nailgun-insanely-fast-java/Parrot AR.Drone - Quadrotor helicopter with wifi and 2 cameras - AR.Drone games for iPhone and iPod touchhttps://www.rfc1437.de/2010/01/11/parrot-ar-drone-quadrotor-helicopter-with-wifi/ProGuardhttps://www.rfc1437.de/2010/01/11/proguard/ScalaCheck User Guidehttps://www.rfc1437.de/2010/01/11/scalacheck-user-guide/technically.us Git - sling.git/blob - project/build/AssemblyProject.scalahttps://www.rfc1437.de/2010/01/11/technically-us-git-sling-git-blob-project-build/Ursulahttps://www.rfc1437.de/2010/01/11/ursula/anichttps://www.rfc1437.de/2010/01/10/anic/Communities: DIY LabVIEW Crew: A Commodore 64 emulator written in LabVIEWhttps://www.rfc1437.de/2010/01/10/communities-diy-labview-crew-a-commodore-64/MeshLabhttps://www.rfc1437.de/2010/01/10/meshlab/qb.js: An implementation of QBASIC in Javascript (part 1) - Steve Hanov's Programming Bloghttps://www.rfc1437.de/2010/01/10/qb-js-an-implementation-of-qbasic-in-javascript/Schützt Handystrahlung vor Alzheimer?https://www.rfc1437.de/2010/01/10/schuetzt-handystrahlung-vor-alzheimer/Shapeways | passionate about creatinghttps://www.rfc1437.de/2010/01/10/shapeways-passionate-about-creating-2/Alloy Analyzerhttps://www.rfc1437.de/2010/01/09/alloy-analyzer/Apples and Bananashttps://www.rfc1437.de/2010/01/09/apples-and-bananas/Google Voice Blog: Google welcomes Gizmo5https://www.rfc1437.de/2010/01/09/google-voice-blog-google-welcomes-gizmo5/[jdev] Wikipedia deletionshttps://www.rfc1437.de/2010/01/09/jdev-wikipedia-deletions/Meine OpenIDhttps://www.rfc1437.de/2010/01/09/meine-openid/Nullege: A Search Engine for Python source codehttps://www.rfc1437.de/2010/01/09/nullege-a-search-engine-for-python-source-code/phpMyIDhttps://www.rfc1437.de/2010/01/09/phpmyid/TidBITS Entertainment: "If Monks Had Macs" Available for Freehttps://www.rfc1437.de/2010/01/09/tidbits-entertainment-if-monks-had-macs-available/[tw] : Building a Codeless Language Module with BBEdit 8.5 and (Ir-)Regular Expressionshttps://www.rfc1437.de/2010/01/09/tw-building-a-codeless-language-module-with/Wikipedia:Articles for deletion/Ejabberdhttps://www.rfc1437.de/2010/01/09/wikipedia-articles-for-deletion-ejabberd/Aasee (Münster) – Wikipediahttps://www.rfc1437.de/2010/01/08/aasee-muenster-wikipedia/maven-scala-plugin - maven-scala-pluginhttps://www.rfc1437.de/2010/01/08/maven-scala-plugin-maven-scala-plugin/SQLiteJDBChttps://www.rfc1437.de/2010/01/08/sqlitejdbc-2/SQLiteJDBChttps://www.rfc1437.de/2010/01/07/sqlitejdbc/Fehlerhafte Sicherheitschips: 30 Millionen Bankkarten vom 2010-Fehler betroffen - SPIEGEL ONLINE - Nachrichten - Netzwelthttps://www.rfc1437.de/2010/01/06/fehlerhafte-sicherheitschips-30-millionen/Fragen und Antworten zur Bankkarten-Pannehttps://www.rfc1437.de/2010/01/06/fragen-und-antworten-zur-bankkarten-panne/Python Package Index : promise 0.2.1https://www.rfc1437.de/2010/01/06/python-package-index-promise-0-2-1/FleetDBhttps://www.rfc1437.de/2010/01/05/fleetdb/generator_toolshttps://www.rfc1437.de/2010/01/05/generator-tools/Introduction to Concurrent Programming with Stackless Pythonhttps://www.rfc1437.de/2010/01/05/introduction-to-concurrent-programming-with/Matasano Security LLC - Chargen - If You're Typing The Letters A-E-S Into Your Code, You're Doing It\_Wronghttps://www.rfc1437.de/2010/01/05/matasano-security-llc-chargen-if-you-re-typing/MetaPython Documentationhttps://www.rfc1437.de/2010/01/05/metapython-documentation-2/Study shows viral SSIDs could be creating a massive wireless botnet Tech Sanity Check TechRepublic.comhttps://www.rfc1437.de/2010/01/04/study-shows-viral-ssids-could-be-creating-a/Viral SSID - WLAN/Wireless Security Knowledge Centerhttps://www.rfc1437.de/2010/01/04/viral-ssid-wlan-wireless-security-knowledge-center/OpenSimulator GForgehttps://www.rfc1437.de/2010/01/03/opensimulator-gforge/Hg-Git Mercurial Pluginhttps://www.rfc1437.de/2010/01/02/hg-git-mercurial-plugin-3/Daring Fireball: The Tablethttps://www.rfc1437.de/2010/01/01/daring-fireball-the-tablet/hgsubversionhttps://www.rfc1437.de/2010/01/01/hgsubversion/Datenschützer kritisieren "Elektronischen Einkommensnachweis"https://www.rfc1437.de/2009/12/31/datenschuetzer-kritisieren-elektronischen/duelinmarkers's clj-recordhttps://www.rfc1437.de/2009/12/31/duelinmarkers-s-clj-record/mattrepl's clojure-neo4jhttps://www.rfc1437.de/2009/12/31/mattrepl-s-clojure-neo4j/neo4j open source nosql graph databasehttps://www.rfc1437.de/2009/12/31/neo4j-open-source-nosql-graph-database/pjstadig's tim-clojure-1.0.0https://www.rfc1437.de/2009/12/31/pjstadig-s-tim-clojure-1-0-0/Bei Nachthttps://www.rfc1437.de/2009/12/30/bei-nacht/Blaue Stundehttps://www.rfc1437.de/2009/12/30/blaue-stunde/IPhone Remote - Plexhttps://www.rfc1437.de/2009/12/30/iphone-remote-plex/Kanex Mini DisplayPort to HDMI 1080p Video with Digital Audio Adapterhttps://www.rfc1437.de/2009/12/30/kanex-mini-displayport-to-hdmi-1080p-video-with/Plex Media Center for OS Xhttps://www.rfc1437.de/2009/12/30/plex-media-center-for-os-x/Privacy of 3.5 Billion Cellphone Users Compromised – GSM Code is Broken | ProgrammerFishhttps://www.rfc1437.de/2009/12/29/privacy-of-3-5-billion-cellphone-users/Flugzeug-Attentäter muss mit 40 Jahren Haft rechnenhttps://www.rfc1437.de/2009/12/28/flugzeug-attentaeter-muss-mit-40-jahren-haft/Bundestagspräsident missfällt Regierungskurshttps://www.rfc1437.de/2009/12/27/bundestagspraesident-missfaellt-regierungskurs/Moscow ML Home Pagehttps://www.rfc1437.de/2009/12/27/moscow-ml-home-page/neatxhttps://www.rfc1437.de/2009/12/27/neatx/openduckbillhttps://www.rfc1437.de/2009/12/27/openduckbill/Poly/ML Home Pagehttps://www.rfc1437.de/2009/12/27/poly-ml-home-page/Standard ML of New Jerseyhttps://www.rfc1437.de/2009/12/27/standard-ml-of-new-jersey/Fuzzy Hashing and ssdeephttps://www.rfc1437.de/2009/12/26/fuzzy-hashing-and-ssdeep/Home of pHash, the open source perceptual hash libraryhttps://www.rfc1437.de/2009/12/26/home-of-phash-the-open-source-perceptual-hash/Kulturstaatsminister kritisiert Smartphone-Apps der ARDhttps://www.rfc1437.de/2009/12/26/kulturstaatsminister-kritisiert-smartphone-apps/MLton Standard ML Compiler (SML Compiler)https://www.rfc1437.de/2009/12/26/mlton-standard-ml-compiler-sml-compiler/Ocsigenhttps://www.rfc1437.de/2009/12/26/ocsigen/The Ur Programming Language Familyhttps://www.rfc1437.de/2009/12/26/the-ur-programming-language-family/Web Authoring System Haskell (WASH)https://www.rfc1437.de/2009/12/26/web-authoring-system-haskell-wash/December 25thhttps://www.rfc1437.de/2009/12/25/december-25th/Mail::RFC822::Addresshttps://www.rfc1437.de/2009/12/25/mail-rfc822-address/The 25th Anniversary Edition of Little, Big, by John Crowleyhttps://www.rfc1437.de/2009/12/24/the-25th-anniversary-edition-of-little-big-by/Ho Ho Ho!https://www.rfc1437.de/2009/12/23/ho-ho-ho/Real World Haskellhttps://www.rfc1437.de/2009/12/22/real-world-haskell/Regierung hält sich Anhebung des Arbeitslosenbeitrags offenhttps://www.rfc1437.de/2009/12/22/regierung-haelt-sich-anhebung-des/Socket Benchmark of Asynchronous Servers in Pythonhttps://www.rfc1437.de/2009/12/22/socket-benchmark-of-asynchronous-servers-in-python/A Case of the MUMPS - The Daily WTFhttps://www.rfc1437.de/2009/12/21/a-case-of-the-mumps-the-daily-wtf/HDR photo software & plugin for Lightroom, Aperture & Photoshop - Tone Mapping, Exposure Fusion & HDR Imaging for photographyhttps://www.rfc1437.de/2009/12/21/hdr-photo-software-plugin-for-lightroom-aperture/Intersystems Caché -- Gateway to hell - TDWTF Forumshttps://www.rfc1437.de/2009/12/21/intersystems-cach-gateway-to-hell-tdwtf-forums/Invent with Pythonhttps://www.rfc1437.de/2009/12/21/invent-with-python/Panasonic Lumix GF1 Field Test — 16 Days in the Himalayashttps://www.rfc1437.de/2009/12/21/panasonic-lumix-gf1-field-test-16-days-in-the/WinMergehttps://www.rfc1437.de/2009/12/21/winmerge-2/Crowdsourced document analysis and MP expenseshttps://www.rfc1437.de/2009/12/20/crowdsourced-document-analysis-and-mp-expenses/fabricatehttps://www.rfc1437.de/2009/12/20/fabricate-2/Schnööööööö!https://www.rfc1437.de/2009/12/20/schnoeoeoeoeoeoeoe/Building a Clojure Web application with Incanter, Compojure, and Leiningen « Data Analysis and Visualization with Clojurehttps://www.rfc1437.de/2009/12/19/building-a-clojure-web-application-with-incanter/git.postgresql.org Git - postgresql.git/commithttps://www.rfc1437.de/2009/12/19/git-postgresql-org-git-postgresql-git-commit/About Hypertablehttps://www.rfc1437.de/2009/12/18/about-hypertable/etherpadhttps://www.rfc1437.de/2009/12/18/etherpad/Haystack - Search for Djangohttps://www.rfc1437.de/2009/12/18/haystack-search-for-django/InfoQ: Clojure 1.1 Adds Transients, Chunked Sequences for Efficiencyhttps://www.rfc1437.de/2009/12/18/infoq-clojure-1-1-adds-transients-chunked/Leica X1 Review: 27. Conclusion: Digital Photography Reviewhttps://www.rfc1437.de/2009/12/18/leica-x1-review-27-conclusion-digital-photography/Mir war danachhttps://www.rfc1437.de/2009/12/18/mir-war-danach/Ten years of .NET - Did Microsoft deliver? • The Registerhttps://www.rfc1437.de/2009/12/18/ten-years-of-net-did-microsoft-deliver-the/Whooshhttps://www.rfc1437.de/2009/12/18/whoosh/Algorithmic Botanyhttps://www.rfc1437.de/2009/12/17/algorithmic-botany/Apparent Software blog » Blog Archive » “Is PayPal good for your microISV business?” A short PayPal horror storyhttps://www.rfc1437.de/2009/12/17/apparent-software-blog-blog-archive-is-paypal/BERT and BERT-RPC 1.0 Specificationhttps://www.rfc1437.de/2009/12/17/bert-and-bert-rpc-1-0-specification/briancarper.net :: Clojure Reader Macroshttps://www.rfc1437.de/2009/12/17/briancarper-net-clojure-reader-macros/IronPython - Release: 2.6https://www.rfc1437.de/2009/12/17/ironpython-release-2-6/John Graham-Cumming: Data Visualization Diseasehttps://www.rfc1437.de/2009/12/17/john-graham-cumming-data-visualization-disease/mojombo's berthttps://www.rfc1437.de/2009/12/17/mojombo-s-bert/ProjectPlan - unladen-swallow - Plans for optimizing Pythonhttps://www.rfc1437.de/2009/12/17/projectplan-unladen-swallow-plans-for-optimizing/Python Package Index : python-daemon 1.5.2https://www.rfc1437.de/2009/12/17/python-package-index-python-daemon-1-5-2/samuel's python-berthttps://www.rfc1437.de/2009/12/17/samuel-s-python-bert/The Render Engine - Javascript Game Enginehttps://www.rfc1437.de/2009/12/17/the-render-engine-javascript-game-engine/trotter's bert-cljhttps://www.rfc1437.de/2009/12/17/trotter-s-bert-clj/Making lighthttps://www.rfc1437.de/2009/12/16/making-light/Microsoft Acknowledges Theft of Code from Plurkhttps://www.rfc1437.de/2009/12/16/microsoft-acknowledges-theft-of-code-from-plurk/Widefinder 2 with Clojurehttps://www.rfc1437.de/2009/12/16/widefinder-2-with-clojure/Bug #387308 in Ubuntu One Client: “[Wishlist] Proxy Support”https://www.rfc1437.de/2009/12/15/bug-387308-in-ubuntu-one-client-wishlist-proxy/Code tutorial: make your application sync with Ubuntu Onehttps://www.rfc1437.de/2009/12/15/code-tutorial-make-your-application-sync-with/Damn Cool Algorithms: Log structured storagehttps://www.rfc1437.de/2009/12/14/damn-cool-algorithms-log-structured-storage/Hunger!https://www.rfc1437.de/2009/12/14/hunger/Intland now on Mercurial - Part 3: Giving new momentum to the Eclipse Mercurial Plugin | Intland Bloghttps://www.rfc1437.de/2009/12/14/intland-now-on-mercurial-part-3-giving-new/Maven - Guide to using proxieshttps://www.rfc1437.de/2009/12/14/maven-guide-to-using-proxies/Tutorial - clojars-web - GitHubhttps://www.rfc1437.de/2009/12/14/tutorial-clojars-web-github/EMBODY von Herman Miller - Chairholder Newshttps://www.rfc1437.de/2009/12/13/embody-von-herman-miller-chairholder-news/Radio UserLand: Auf Wiedersehen, und danke für den Fischhttps://www.rfc1437.de/2009/12/13/radio-userland-auf-wiedersehen-und-danke-fuer-den/Yeti programming languagehttps://www.rfc1437.de/2009/12/13/yeti-programming-language/Either Mark Zuckerberg got a whole lot less private or Facebook’s CEO doesn’t understand the company’s new privacy settings.https://www.rfc1437.de/2009/12/11/either-mark-zuckerberg-got-a-whole-lot-less/JavaScript web workers: use visitors to your website to do background data processing for you. : programminghttps://www.rfc1437.de/2009/12/11/javascript-web-workers-use-visitors-to-your/The Tumblr Backup app is ready for its first beta...https://www.rfc1437.de/2009/12/11/the-tumblr-backup-app-is-ready-for-its-first-beta/TuxMobil: Fingerprint Readers on Linux Laptops and Notebookshttps://www.rfc1437.de/2009/12/11/tuxmobil-fingerprint-readers-on-linux-laptops-and/Klimakonferenz: Keine 0,5 Grad extra für Tuvaluhttps://www.rfc1437.de/2009/12/10/klimakonferenz-keine-0-5-grad-extra-fuer-tuvalu/Regierungs-Smartphones arbeiten mit Windows Mobilehttps://www.rfc1437.de/2009/12/10/regierungs-smartphones-arbeiten-mit-windows-mobile/Zarengold Bahnreisenhttps://www.rfc1437.de/2009/12/10/zarengold-bahnreisen/taskpaper-webhttps://www.rfc1437.de/2009/12/08/taskpaper-web/taskpaperplushttps://www.rfc1437.de/2009/12/08/taskpaperplus/TodoPaperhttps://www.rfc1437.de/2009/12/08/todopaper/We call it OPAhttps://www.rfc1437.de/2009/12/08/we-call-it-opa/Cadmium - Introductionhttps://www.rfc1437.de/2009/12/07/cadmium-introduction/Cafesterolhttps://www.rfc1437.de/2009/12/07/cafesterol/PLT Scheme Blog: Futures: Fine Grained Parallelism in PLThttps://www.rfc1437.de/2009/12/07/plt-scheme-blog-futures-fine-grained-parallelism/Short Chat Server in Clojurehttps://www.rfc1437.de/2009/12/07/short-chat-server-in-clojure/clutchski's fileutilshttps://www.rfc1437.de/2009/12/06/clutchski-s-fileutils/Escher in Hagenhttps://www.rfc1437.de/2009/12/05/escher-in-hagen/Mal mit Tabblo gespielthttps://www.rfc1437.de/2009/12/05/mal-mit-tabblo-gespielt/Why Object-Oriented Languages Need Tail Calls – projectfortress Communityhttps://www.rfc1437.de/2009/12/04/why-object-oriented-languages-need-tail-calls/Google Maps Distance Calculatorhttps://www.rfc1437.de/2009/12/03/google-maps-distance-calculator/La Bambahttps://www.rfc1437.de/2009/12/03/la-bamba/MCLIDE - Lisp IDE for Macintoshhttps://www.rfc1437.de/2009/12/03/mclide-lisp-ide-for-macintosh/Sonarhttps://www.rfc1437.de/2009/11/26/sonar/Building Clojure Projects with Leiningenhttps://www.rfc1437.de/2009/11/25/building-clojure-projects-with-leiningen/Amp | Version Control Revolutionhttps://www.rfc1437.de/2009/11/24/amp-version-control-revolution/formsets und inline forms in Djangohttps://www.rfc1437.de/2009/11/24/formsets-und-inline-forms-in-django/Implementing a DHT in Go, part 1https://www.rfc1437.de/2009/11/24/implementing-a-dht-in-go-part-1/Understanding Haskell Monadshttps://www.rfc1437.de/2009/11/24/understanding-haskell-monads/AvahiAndUnicastDotLocal – Avahihttps://www.rfc1437.de/2009/11/23/avahiandunicastdotlocal-avahi/gopenvpnhttps://www.rfc1437.de/2009/11/23/gopenvpn/Buntes Gemüsehttps://www.rfc1437.de/2009/11/22/buntes-gemuese/uWSGIhttps://www.rfc1437.de/2009/11/21/uwsgi/Clojarshttps://www.rfc1437.de/2009/11/20/clojars/Incanter: Statistical Computing and Graphics Environment for Clojurehttps://www.rfc1437.de/2009/11/20/incanter-statistical-computing-and-graphics/technomancy's leiningenhttps://www.rfc1437.de/2009/11/20/technomancy-s-leiningen/2060 wird jeder Dritte 65 oder älter seinhttps://www.rfc1437.de/2009/11/18/2060-wird-jeder-dritte-65-oder-aelter-sein/Hudson CIhttps://www.rfc1437.de/2009/11/18/hudson-ci/Light and Shadowhttps://www.rfc1437.de/2009/11/18/light-and-shadow/PyGoWave Serverhttps://www.rfc1437.de/2009/11/18/pygowave-server/Python moratorium and the future of 2.x [LWN.net]https://www.rfc1437.de/2009/11/18/python-moratorium-and-the-future-of-2-x-lwn-net/Steinbach wirft Westerwelle Profilierung vorhttps://www.rfc1437.de/2009/11/18/steinbach-wirft-westerwelle-profilierung-vor/Verteilte Wikipedias statt zentralem Monster mit Löschfanatikernhttps://www.rfc1437.de/2009/11/18/verteilte-wikipedias-statt-zentralem-monster-mit/in which things are mapped, but also reducedhttps://www.rfc1437.de/2009/11/15/in-which-things-are-mapped-but-also-reduced/Fefes Kritik an Spdyhttps://www.rfc1437.de/2009/11/14/fefes-kritik-an-spdy/More Freedom Necessary as Top Developers Abandon iPhonehttps://www.rfc1437.de/2009/11/14/more-freedom-necessary-as-top-developers-abandon/nothing newhttps://www.rfc1437.de/2009/11/14/nothing-new/warum Common Lisp nie wirklich Mainstream sein wirdhttps://www.rfc1437.de/2009/11/14/warum-common-lisp-nie-wirklich-mainstream-sein/Play frameworkhttps://www.rfc1437.de/2009/11/13/play-framework/Google Closure: How not to write JavaScripthttps://www.rfc1437.de/2009/11/12/google-closure-how-not-to-write-javascript/Mandelbulb: The Unravelling of the Real 3D Mandelbrot Fractalhttps://www.rfc1437.de/2009/11/12/mandelbulb-the-unravelling-of-the-real-3d/NetBeans support for Google App Enginehttps://www.rfc1437.de/2009/11/12/netbeans-support-for-google-app-engine/The Enclojure REPLs (Not just for Netbeans!)https://www.rfc1437.de/2009/11/12/the-enclojure-repls-not-just-for-netbeans/Joe Strummer darf alles (1999) | Spreeblickhttps://www.rfc1437.de/2009/11/11/joe-strummer-darf-alles-1999-spreeblick/The Go Programming Languagehttps://www.rfc1437.de/2009/11/11/the-go-programming-language/Ricoh GXR Hands on Previewhttps://www.rfc1437.de/2009/11/10/ricoh-gxr-hands-on-preview/Staatssekretär Hanning in Ruhestand versetzthttps://www.rfc1437.de/2009/11/10/staatssekretaer-hanning-in-ruhestand-versetzt/:: Clojure and Markdown (and Javascript and Java and...)https://www.rfc1437.de/2009/11/09/clojure-and-markdown-and-javascript-and-java-and/for post in leo.blog():: Django-Jython 1.0.0 released!https://www.rfc1437.de/2009/11/09/for-post-in-leo-blog-django-jython-1-0-0-released/What DNS Is Not - ACM Queuehttps://www.rfc1437.de/2009/11/09/what-dns-is-not-acm-queue/Acme::Don''thttps://www.rfc1437.de/2009/11/08/acme-don-t/Automatisiertes Newsportal: Netzeitung verliert Redaktionhttps://www.rfc1437.de/2009/11/08/automatisiertes-newsportal-netzeitung-verliert/Eva Redselighttps://www.rfc1437.de/2009/11/06/eva-redselig/avodonosov's abcl-ideahttps://www.rfc1437.de/2009/11/04/avodonosov-s-abcl-idea/Cluster SSH - Cluster Admin Via SSHhttps://www.rfc1437.de/2009/11/04/cluster-ssh-cluster-admin-via-ssh/FAI - Fully Automatic Installationhttps://www.rfc1437.de/2009/11/04/fai-fully-automatic-installation/flogrhttps://www.rfc1437.de/2009/11/04/flogr/iWebKit - Make a quality iPhone Website or Webapphttps://www.rfc1437.de/2009/11/04/iwebkit-make-a-quality-iphone-website-or-webapp/jQTouch — jQuery plugin for mobile web developmenthttps://www.rfc1437.de/2009/11/04/jqtouch-jquery-plugin-for-mobile-web-development/Lazy Pythonista: Diving into Unladen Swallow''s Optimizationshttps://www.rfc1437.de/2009/11/04/lazy-pythonista-diving-into-unladen-swallow-s/OpenOffice.org2GoogleDocs - export & import to Google Docs, Zoho, WebDAVhttps://www.rfc1437.de/2009/11/04/openoffice-org2googledocs-export-import-to-google/Electric Alchemy: Cracking Passwords in the Cloud: Breaking PGP on EC2 with EDPRhttps://www.rfc1437.de/2009/11/03/electric-alchemy-cracking-passwords-in-the-cloud/Large Problems in Django, Mostly Solved: Searchhttps://www.rfc1437.de/2009/11/03/large-problems-in-django-mostly-solved-search/Parsing JSON in Archttps://www.rfc1437.de/2009/11/03/parsing-json-in-arc/Why do we have an IMG element?https://www.rfc1437.de/2009/11/03/why-do-we-have-an-img-element/Tausende Blaue Briefe vom Jugendamthttps://www.rfc1437.de/2009/11/01/tausende-blaue-briefe-vom-jugendamt/alandipert's stephttps://www.rfc1437.de/2009/10/31/alandipert-s-step/GRDIII vs. GRDII vs. GRD - B&W side by side photoshttps://www.rfc1437.de/2009/10/31/grdiii-vs-grdii-vs-grd-b-w-side-by-side-photos/Henri de Toulouse-Lautrec in Langenfeldhttps://www.rfc1437.de/2009/10/31/henri-de-toulouse-lautrec-in-langenfeld/hlship's cascadehttps://www.rfc1437.de/2009/10/31/hlship-s-cascade/macourtney's Conjurehttps://www.rfc1437.de/2009/10/31/macourtney-s-conjure/weavejester's compojurehttps://www.rfc1437.de/2009/10/31/weavejester-s-compojure/RWPluginMarkuphttps://www.rfc1437.de/2009/10/30/rwpluginmarkup/Bill Clementson's Blog: Clojure could be to Concurrency-Oriented Programming what Java was to OOPhttps://www.rfc1437.de/2009/10/29/bill-clementson-s-blog-clojure-could-be-to/(Field)https://www.rfc1437.de/2009/10/29/field/Underscore.jshttps://www.rfc1437.de/2009/10/29/underscore-js/UNITY: Game Development Toolhttps://www.rfc1437.de/2009/10/29/unity-game-development-tool/Scientists discover gene that 'cancer-proofs' rodent's cellshttps://www.rfc1437.de/2009/10/27/scientists-discover-gene-that-cancer-proofs/[Python-Dev] Reworking the GILhttps://www.rfc1437.de/2009/10/26/python-dev-reworking-the-gil/[zfs-discuss] Apple cans ZFS projecthttps://www.rfc1437.de/2009/10/26/zfs-discuss-apple-cans-zfs-project/exploring the mandelbrot set with your gpuhttps://www.rfc1437.de/2009/10/25/exploring-the-mandelbrot-set-with-your-gpu/The Self Handbookhttps://www.rfc1437.de/2009/10/25/the-self-handbook/Klaus Staeck über die Gefahr der "Blogorrhoe"https://www.rfc1437.de/2009/10/24/klaus-staeck-ueber-die-gefahr-der-blogorrhoe/bamboo-languagehttps://www.rfc1437.de/2009/10/23/bamboo-language/DeliciousSafarihttps://www.rfc1437.de/2009/10/23/delicioussafari/Enterprise scala actors: introducing the Akka frameworkhttps://www.rfc1437.de/2009/10/23/enterprise-scala-actors-introducing-the-akka/Mozilla Labs Raindrophttps://www.rfc1437.de/2009/10/23/mozilla-labs-raindrop/pierhttps://www.rfc1437.de/2009/10/23/pier/Snow projecthttps://www.rfc1437.de/2009/10/23/snow-project/xmlisphttps://www.rfc1437.de/2009/10/23/xmlisp/MCLhttps://www.rfc1437.de/2009/10/22/mcl/Panasonic Leica 45mm F2.8 Macro OIS Lens Reviewhttps://www.rfc1437.de/2009/10/21/panasonic-leica-45mm-f2-8-macro-ois-lens-review/Machinariumhttps://www.rfc1437.de/2009/10/19/machinarium/Die Wikipedia ist irrelevanthttps://www.rfc1437.de/2009/10/18/die-wikipedia-ist-irrelevant/rosado's clj-processinghttps://www.rfc1437.de/2009/10/17/rosado-s-clj-processing/ScalaCL: Reap OpenCL’s benefits without learning its syntax (Scala DSL for transparently parallel computations)https://www.rfc1437.de/2009/10/17/scalacl-reap-opencl-s-benefits-without-learning/Spdehttps://www.rfc1437.de/2009/10/17/spde/macwidgetshttps://www.rfc1437.de/2009/10/15/macwidgets/rlwraphttps://www.rfc1437.de/2009/10/15/rlwrap/Leben mit Chancenlosen: Wallraffs neuer Undercover-Einsatzhttps://www.rfc1437.de/2009/10/14/leben-mit-chancenlosen-wallraffs-neuer-undercover/toolmantim's bananajourhttps://www.rfc1437.de/2009/10/14/toolmantim-s-bananajour/Übernahme des SPD-Vorsitzes war Fehlerhttps://www.rfc1437.de/2009/10/14/uebernahme-des-spd-vorsitzes-war-fehler/Eine Spinne, die kein Fleisch maghttps://www.rfc1437.de/2009/10/13/eine-spinne-die-kein-fleisch-mag/Let it crash (the right way…)https://www.rfc1437.de/2009/10/13/let-it-crash-the-right-way/Niederländische DSB-Bank pleitehttps://www.rfc1437.de/2009/10/13/niederlaendische-dsb-bank-pleite/Tom Waits - Free Glitter and Doom Live Album Previewhttps://www.rfc1437.de/2009/10/13/tom-waits-free-glitter-and-doom-live-album-preview/Using Erlang to Build Reliable, Fault Tolerant, Scalable Systems | Oktober 12, 2009https://www.rfc1437.de/2009/10/13/using-erlang-to-build-reliable-fault-tolerant/Cloud Data Blown Away for Sidekick Usershttps://www.rfc1437.de/2009/10/12/cloud-data-blown-away-for-sidekick-users/JAD Java Decompiler Download Mirrorhttps://www.rfc1437.de/2009/10/12/jad-java-decompiler-download-mirror/Major bug in Snow Leopard deletes all user datahttps://www.rfc1437.de/2009/10/12/major-bug-in-snow-leopard-deletes-all-user-data/Claude Monets Meisterwerke in Wuppertalhttps://www.rfc1437.de/2009/10/11/claude-monets-meisterwerke-in-wuppertal/Useless Factor: Bitfields in Factor structs and the special stylehttps://www.rfc1437.de/2009/10/11/useless-factor-bitfields-in-factor-structs-and/WizBanghttps://www.rfc1437.de/2009/10/10/wizbang/Friedensnobelpreis für Barack Obamahttps://www.rfc1437.de/2009/10/09/friedensnobelpreis-fuer-barack-obama/Simpler long polling with Django and geventhttps://www.rfc1437.de/2009/10/09/simpler-long-polling-with-django-and-gevent/Städteranking: München vorn, Rote Laterne für Hernehttps://www.rfc1437.de/2009/10/09/staedteranking-muenchen-vorn-rote-laterne-fuer/Thawte widerruft persönliche E-Mail-Zertifikatehttps://www.rfc1437.de/2009/10/09/thawte-widerruft-persoenliche-e-mail-zertifikate/MacRuby » MacRuby 0.5 beta 1https://www.rfc1437.de/2009/10/08/macruby-macruby-0-5-beta-1/Amazon goes global with new Kindlehttps://www.rfc1437.de/2009/10/07/amazon-goes-global-with-new-kindle/Finding Similar Items with Amazon Elastic MapReduce, Python, and Hadoop Streaminghttps://www.rfc1437.de/2009/10/07/finding-similar-items-with-amazon-elastic/I like Unicorn because it's Unixhttps://www.rfc1437.de/2009/10/07/i-like-unicorn-because-it-s-unix/Lets have a smokehttps://www.rfc1437.de/2009/10/07/lets-have-a-smoke/Münsterland Girohttps://www.rfc1437.de/2009/10/07/muensterland-giro/shedskinhttps://www.rfc1437.de/2009/10/07/shedskin/Abmahnanwältin Günther wegen Beihilfe zum Betrug verurteilthttps://www.rfc1437.de/2009/10/06/abmahnanwaeltin-guenther-wegen-beihilfe-zum/EC2 and Ubuntu - Alestic.comhttps://www.rfc1437.de/2009/10/05/ec2-and-ubuntu-alestic-com/Clamato: A Smalltalk Dialect for JavaScripthttps://www.rfc1437.de/2009/10/04/clamato-a-smalltalk-dialect-for-javascript/Dynamic Web Development with Seasidehttps://www.rfc1437.de/2009/10/04/dynamic-web-development-with-seaside/GNU Smalltalkhttps://www.rfc1437.de/2009/10/04/gnu-smalltalk/Winclonehttps://www.rfc1437.de/2009/10/04/winclone/Roman Polanskihttps://www.rfc1437.de/2009/10/03/roman-polanski/Chicago Boss - the no-nonsense MVC framework for Erlanghttps://www.rfc1437.de/2009/10/02/chicago-boss-the-no-nonsense-mvc-framework-for/Log-structured file systems: There''s one in every SSDhttps://www.rfc1437.de/2009/10/01/log-structured-file-systems-there-s-one-in-every/My final Ricoh GR Digital III impressionshttps://www.rfc1437.de/2009/10/01/my-final-ricoh-gr-digital-iii-impressions/Gabriel soll SPD-Parteichef werdenhttps://www.rfc1437.de/2009/09/30/gabriel-soll-spd-parteichef-werden/Groklaw - On Mono, Miguel, Stallman and Fusion with Microsofthttps://www.rfc1437.de/2009/09/30/groklaw-on-mono-miguel-stallman-and-fusion-with/Pick up a penguinhttps://www.rfc1437.de/2009/09/30/pick-up-a-penguin/Plumber Jack: Python Logging 101https://www.rfc1437.de/2009/09/30/plumber-jack-python-logging-101/sebastien's sinkhttps://www.rfc1437.de/2009/09/30/sebastien-s-sink/Dropbox iPhone App ist raushttps://www.rfc1437.de/2009/09/29/dropbox-iphone-app-ist-raus/Insect sushi: creepy crawly cuisinehttps://www.rfc1437.de/2009/09/29/insect-sushi-creepy-crawly-cuisine/jQuery Tools: The missing UI library for the Web « Noupehttps://www.rfc1437.de/2009/09/29/jquery-tools-the-missing-ui-library-for-the-web/lsyncdhttps://www.rfc1437.de/2009/09/28/lsyncd/Swarm - Concurrency with Scala Continuationshttps://www.rfc1437.de/2009/09/28/swarm-concurrency-with-scala-continuations/Webberhttps://www.rfc1437.de/2009/09/28/webber/Welcome To Tahoe-LAFShttps://www.rfc1437.de/2009/09/28/welcome-to-tahoe-lafs/Die Zwillinge und die Blechganghttps://www.rfc1437.de/2009/09/27/die-zwillinge-und-die-blechgang/Das Utopia Timor (Faltrad, Klapprad)https://www.rfc1437.de/2009/09/26/das-utopia-timor-faltrad-klapprad/Die Dahon Mµ Falträder 20 Zoll - Dahon Mµ XL Licht, Mµ P8 Sport, Mµ P24 TR Licht, Mµ Uno, Mµ EXhttps://www.rfc1437.de/2009/09/26/die-dahon-m-faltraeder-20-zoll-dahon-m-xl-licht-m/Official Google Blog: Picasa 3.5, now with name tags and morehttps://www.rfc1437.de/2009/09/26/official-google-blog-picasa-3-5-now-with-name/Panasonic Lumix G 20mm F1.7 ASPH Lens Reviewhttps://www.rfc1437.de/2009/09/26/panasonic-lumix-g-20mm-f1-7-asph-lens-review/Photic sneeze reflexhttps://www.rfc1437.de/2009/09/25/photic-sneeze-reflex/This Rocketship Will Crashhttps://www.rfc1437.de/2009/09/25/this-rocketship-will-crash/Weird New Ghostshark Found; Male Has Sex Organ on Headhttps://www.rfc1437.de/2009/09/25/weird-new-ghostshark-found-male-has-sex-organ-on/CAIR - Content Aware Image Resizerhttps://www.rfc1437.de/2009/09/24/cair-content-aware-image-resizer/Diesel: How Python Does Comethttps://www.rfc1437.de/2009/09/23/diesel-how-python-does-comet/Umweltbundesamt warnt vor RFID-Tags im Müllhttps://www.rfc1437.de/2009/09/23/umweltbundesamt-warnt-vor-rfid-tags-im-muell/Neat Graphics with Scala Processinhttps://www.rfc1437.de/2009/09/21/neat-graphics-with-scala-processin/Google Releases A Nuke. Apple Won’t Win This Fight.https://www.rfc1437.de/2009/09/20/google-releases-a-nuke-apple-won-t-win-this-fight/lionet: Erlang, Yaws, and the deadly Tornadohttps://www.rfc1437.de/2009/09/20/lionet-erlang-yaws-and-the-deadly-tornado/Georg Bauer auf Facebookhttps://www.rfc1437.de/2009/09/19/georg-bauer-auf-facebook/Online Latein Wörterbuchhttps://www.rfc1437.de/2009/09/19/online-latein-woerterbuch/Coryell Auger Sample Triohttps://www.rfc1437.de/2009/09/18/coryell-auger-sample-trio/PubSubHubbub is a Lot Easier Than It Soundshttps://www.rfc1437.de/2009/09/18/pubsubhubbub-is-a-lot-easier-than-it-sounds/The Most Useful Rope Knots for the Average Person to Knowhttps://www.rfc1437.de/2009/09/18/the-most-useful-rope-knots-for-the-average-person/Kein Tethering für iPhone-Kunden mit Verträgen der ersten Generationhttps://www.rfc1437.de/2009/09/16/kein-tethering-fuer-iphone-kunden-mit-vertraegen/Kündigung bei abgeordnetenwatch.de wegen NPDhttps://www.rfc1437.de/2009/09/13/kuendigung-bei-abgeordnetenwatch-de-wegen-npd/libdispatchhttps://www.rfc1437.de/2009/09/11/libdispatch/Tornado: Facebook''s Real-Time Web Framework for Pythonhttps://www.rfc1437.de/2009/09/11/tornado-facebook-s-real-time-web-framework-for/Hurtigruten 2009 mit der MS Lofoten noch einmalhttps://www.rfc1437.de/2009/09/10/hurtigruten-2009-mit-der-ms-lofoten-noch-einmal/Atomkraft- Beweise für Manipulation in Sachen Gorleben?https://www.rfc1437.de/2009/09/09/atomkraft-beweise-fuer-manipulation-in-sachen/Automotoren sollen als "Zuhausekraftwerk" dienenhttps://www.rfc1437.de/2009/09/09/automotoren-sollen-als-zuhausekraftwerk-dienen/billy's band-ICMhttps://www.rfc1437.de/2009/09/09/billy-s-band-icm/Hurtigruten 2009 mit der MS Lofotenhttps://www.rfc1437.de/2009/09/09/hurtigruten-2009-mit-der-ms-lofoten/Leica M9 Hands-on Preview: 1. Introduction: Digital Photography Reviewhttps://www.rfc1437.de/2009/09/09/leica-m9-hands-on-preview-1-introduction-digital/Leica X1 and brief hands-onhttps://www.rfc1437.de/2009/09/09/leica-x1-and-brief-hands-on/Pressflow makes Drupal scalehttps://www.rfc1437.de/2009/09/09/pressflow-makes-drupal-scale/Varnishhttps://www.rfc1437.de/2009/09/09/varnish-2/Mythrylhttps://www.rfc1437.de/2009/09/07/mythryl/Foldy - bicycling.comhttps://www.rfc1437.de/2009/09/06/foldy-bicycling-com/Leaked! Leica M9https://www.rfc1437.de/2009/09/06/leaked-leica-m9/Google App Engine Blog: App Engine SDK 1.2.5 released for Python and Java, now with XMPP supporthttps://www.rfc1437.de/2009/09/04/google-app-engine-blog-app-engine-sdk-1-2-5/Phone Amego Helphttps://www.rfc1437.de/2009/09/04/phone-amego-help/Post streicht 560 Stellen wegen Arcandor-Insolvenzhttps://www.rfc1437.de/2009/09/04/post-streicht-560-stellen-wegen-arcandor-insolvenz/Booting Windows XP From An External Drivehttps://www.rfc1437.de/2009/09/02/booting-windows-xp-from-an-external-drive/Panasonic DMC-GF1 Hands on Previewhttps://www.rfc1437.de/2009/09/02/panasonic-dmc-gf1-hands-on-preview/Panasonic Leica 45mm F2.8 Macro lens with OIShttps://www.rfc1437.de/2009/09/02/panasonic-leica-45mm-f2-8-macro-lens-with-ois/Panasonic unveils DMC-GF1 Micro four-thirds camerahttps://www.rfc1437.de/2009/09/02/panasonic-unveils-dmc-gf1-micro-four-thirds-camera/Set newer portable Macs' sleep modehttps://www.rfc1437.de/2009/09/02/set-newer-portable-macs-sleep-mode/The Dropbox Blog - iPhone Sneak Peek!https://www.rfc1437.de/2009/09/02/the-dropbox-blog-iphone-sneak-peek/RFC1437 on the Road: Archivehttps://www.rfc1437.de/2009/09/01/rfc1437-on-the-road-archive/MS Lofotenhttps://www.rfc1437.de/2009/08/18/ms-lofoten-2/"Arctic Sea" vor Kapverdischen Inseln gesichtethttps://www.rfc1437.de/2009/08/14/arctic-sea-vor-kapverdischen-inseln-gesichtet/django-jythonhttps://www.rfc1437.de/2009/08/14/django-jython/Python Library for Google Setshttps://www.rfc1437.de/2009/08/14/python-library-for-google-sets/Apple bringt MacBook Pro 15" mit mattem Displayhttps://www.rfc1437.de/2009/08/12/apple-bringt-macbook-pro-15-mit-mattem-display/Artangel | SEIZUREhttps://www.rfc1437.de/2009/08/10/artangel-seizure/Comparing Mongo DB and Couch DBhttps://www.rfc1437.de/2009/08/10/comparing-mongo-db-and-couch-db/Kanzleramtschef fordert "Verkehrsregeln im Internet"https://www.rfc1437.de/2009/08/10/kanzleramtschef-fordert-verkehrsregeln-im-internet/Braunschweiger Flashmob wird zum Politikumhttps://www.rfc1437.de/2009/08/08/braunschweiger-flashmob-wird-zum-politikum/Sunshinehttps://www.rfc1437.de/2009/08/08/sunshine/taz sagt Leichtathletik-WM abhttps://www.rfc1437.de/2009/08/08/taz-sagt-leichtathletik-wm-ab/WAZ begrüßt Springer-Vorstoß für Bezahlcontenthttps://www.rfc1437.de/2009/08/08/waz-begruesst-springer-vorstoss-fuer-bezahlcontent/Zypries: Web-Sperren können nicht auf Vertragsbasis aktiviert werdenhttps://www.rfc1437.de/2009/08/08/zypries-web-sperren-koennen-nicht-auf/Panasonic GF1 is leaked - new compact Micro Four Thirds camera - 1001 Noisy Camerashttps://www.rfc1437.de/2009/08/07/panasonic-gf1-is-leaked-new-compact-micro-four/iPhone Dictionary, Censored by Applehttps://www.rfc1437.de/2009/08/06/iphone-dictionary-censored-by-apple/gitithttps://www.rfc1437.de/2009/08/05/gitit/Human Dominoshttps://www.rfc1437.de/2009/08/05/human-dominos/MongoDBhttps://www.rfc1437.de/2009/08/05/mongodb/NoSQL: If Only It Was That Easyhttps://www.rfc1437.de/2009/08/05/nosql-if-only-it-was-that-easy/PawelPacana/MercurialBackend/Configuration - MoinMoinhttps://www.rfc1437.de/2009/08/05/pawelpacana-mercurialbackend-configuration/up and running with cassandrahttps://www.rfc1437.de/2009/08/05/up-and-running-with-cassandra/ADC—Developing Cocoa Applications Using MacRubyhttps://www.rfc1437.de/2009/08/03/adc-developing-cocoa-applications-using-macruby/FRANK BUCHWALD Maschinenleuchtenhttps://www.rfc1437.de/2009/08/03/frank-buchwald-maschinenleuchten/Human Powered Monorail Racetrackhttps://www.rfc1437.de/2009/08/03/human-powered-monorail-racetrack/MacRuby » Homehttps://www.rfc1437.de/2009/08/03/macruby-home/Von der Leyen will gegen rechte Inhalte im Netz vorgehenhttps://www.rfc1437.de/2009/08/02/von-der-leyen-will-gegen-rechte-inhalte-im-netz/Meister der Fotografiehttps://www.rfc1437.de/2009/08/01/meister-der-fotografie/WPS: PostScript for the Webhttps://www.rfc1437.de/2009/07/31/wps-postscript-for-the-web/Discworld Cakehttps://www.rfc1437.de/2009/07/29/discworld-cake/Flickr: Boy Obsolete''s Photostreamhttps://www.rfc1437.de/2009/07/29/flickr-boy-obsolete-s-photostream/There’s No App for That « Riverturn Blog and Talk Backhttps://www.rfc1437.de/2009/07/29/there-s-no-app-for-that-riverturn-blog-and-talk/fabricatehttps://www.rfc1437.de/2009/07/27/fabricate/Ricoh GR Digital III Announcedhttps://www.rfc1437.de/2009/07/27/ricoh-gr-digital-iii-announced/Welcome to Self — Self - the power of simplicityhttps://www.rfc1437.de/2009/07/27/welcome-to-self-self-the-power-of-simplicity/Olympus E-P1 hands-on impressionshttps://www.rfc1437.de/2009/07/23/olympus-e-p1-hands-on-impressions/RubyFrontier Documentationhttps://www.rfc1437.de/2009/07/23/rubyfrontier-documentation/The Online Photographer: Olympus E-P1 PEN Reviewhttps://www.rfc1437.de/2009/07/23/the-online-photographer-olympus-e-p1-pen-review/wxMaximahttps://www.rfc1437.de/2009/07/21/wxmaxima-2/CAS | Jasig Communityhttps://www.rfc1437.de/2009/07/20/cas-jasig-community/Franke & Heidecke to closehttps://www.rfc1437.de/2009/07/20/franke-heidecke-to-close/pam_python - write PAM modules in Pythonhttps://www.rfc1437.de/2009/07/20/pam-python-write-pam-modules-in-python/Python PAMhttps://www.rfc1437.de/2009/07/20/python-pam/SSO frei Haushttps://www.rfc1437.de/2009/07/20/sso-frei-haus/Toolserver Framework for Pythonhttps://www.rfc1437.de/2009/07/20/toolserver-framework-for-python-2/Amazon löscht gekaufte Kindle-eBookshttps://www.rfc1437.de/2009/07/19/amazon-loescht-gekaufte-kindle-ebooks/C/Y Adapter für 4/3https://www.rfc1437.de/2009/07/19/c-y-adapter-fuer-4-3/Lumix Digitalkameras - G Micro System - H-F007014https://www.rfc1437.de/2009/07/19/lumix-digitalkameras-g-micro-system-h-f007014/Zubehör Digitalkameras - Sonstiges - DMW-MA2Mhttps://www.rfc1437.de/2009/07/19/zubehoer-digitalkameras-sonstiges-dmw-ma2m/One bug to rule them allhttps://www.rfc1437.de/2009/07/17/one-bug-to-rule-them-all/[pypy-dev] ANN: psyco V2https://www.rfc1437.de/2009/07/17/pypy-dev-ann-psyco-v2/Tablet-Netbook von Asus für 450 Eurohttps://www.rfc1437.de/2009/07/17/tablet-netbook-von-asus-fuer-450-euro/django-queue-servicehttps://www.rfc1437.de/2009/07/13/django-queue-service/GitXhttps://www.rfc1437.de/2009/07/13/gitx/Google veröffentlicht freien NX-Serverhttps://www.rfc1437.de/2009/07/10/google-veroeffentlicht-freien-nx-server/jQuery Visualize Plugin: Accessible Charts & Graphs from Table Elements using HTML 5 Canvashttps://www.rfc1437.de/2009/07/10/jquery-visualize-plugin-accessible-charts-graphs/MetaPython Documentationhttps://www.rfc1437.de/2009/07/10/metapython-documentation/pudb 0.92.2https://www.rfc1437.de/2009/07/10/pudb-0-92-2/robey's kestrel at masterhttps://www.rfc1437.de/2009/07/10/robey-s-kestrel-at-master/simple-build-toolhttps://www.rfc1437.de/2009/07/10/simple-build-tool/SUMMON: visualization prototyping and scriptinghttps://www.rfc1437.de/2009/07/10/summon-visualization-prototyping-and-scripting/Urteil: DSL-Sharing per WLAN verstößt gegen Wettbewerbsrechthttps://www.rfc1437.de/2009/07/10/urteil-dsl-sharing-per-wlan-verstoesst-gegen/MS Lofotenhttps://www.rfc1437.de/2009/07/09/ms-lofoten/Koffein macht Alzheimer rückgängighttps://www.rfc1437.de/2009/07/07/koffein-macht-alzheimer-rueckgaengig/Dead Media Beat: CompuServehttps://www.rfc1437.de/2009/07/06/dead-media-beat-compuserve/Dev Thoughts: Scala: Program like you mean it.https://www.rfc1437.de/2009/07/06/dev-thoughts-scala-program-like-you-mean-it/Dispatch → Guidehttps://www.rfc1437.de/2009/07/06/dispatch-guide/In eigener Sache: Stromausfall im Rechenzentrum stoppte heise onlinehttps://www.rfc1437.de/2009/07/03/in-eigener-sache-stromausfall-im-rechenzentrum/iPhone to Get SMS Vulnerability Fixhttps://www.rfc1437.de/2009/07/03/iphone-to-get-sms-vulnerability-fix/NetBeans 6.7 setzt Fokus auf Maven- und Kenai-Integrationhttps://www.rfc1437.de/2009/06/29/netbeans-6-7-setzt-fokus-auf-maven-und-kenai/agile42 | How to install Agilo for Scrumhttps://www.rfc1437.de/2009/06/26/agile42-how-to-install-agilo-for-scrum/CSS Homer, animatedhttps://www.rfc1437.de/2009/06/26/css-homer-animated/''Misty caverns'' on Enceladus moonhttps://www.rfc1437.de/2009/06/26/misty-caverns-on-enceladus-moon/OCaml-mindstormhttps://www.rfc1437.de/2009/06/26/ocaml-mindstorm/Olympus E-P1 London Launch & Hands-onhttps://www.rfc1437.de/2009/06/26/olympus-e-p1-london-launch-hands-on/pygowave-serverhttps://www.rfc1437.de/2009/06/26/pygowave-server-2/PyPy Status Blog: JIT progresshttps://www.rfc1437.de/2009/06/26/pypy-status-blog-jit-progress/''Stoned wallabies make crop circles''https://www.rfc1437.de/2009/06/26/stoned-wallabies-make-crop-circles/Why are There 60 Minutes in an Hour?https://www.rfc1437.de/2009/06/26/why-are-there-60-minutes-in-an-hour/Window damage on Atlantis threatens six month delay to STS-129https://www.rfc1437.de/2009/06/26/window-damage-on-atlantis-threatens-six-month/Four crowdsourcing lessons from the Guardian’s (spectacular) expenses-scandal experimenthttps://www.rfc1437.de/2009/06/24/four-crowdsourcing-lessons-from-the-guardian-s/Second edition of Practical Django Projectshttps://www.rfc1437.de/2009/06/24/second-edition-of-practical-django-projects/Pharo Open Source Smalltalkhttps://www.rfc1437.de/2009/06/23/pharo-open-source-smalltalk/scala.xmlhttps://www.rfc1437.de/2009/06/22/scala-xml/Erik Naggum, 1965-2009 RIPhttps://www.rfc1437.de/2009/06/21/erik-naggum-1965-2009-rip/software - xml - s-exp vs XMLhttps://www.rfc1437.de/2009/06/21/software-xml-s-exp-vs-xml/Futurebox, lightbox without the JavaScripthttps://www.rfc1437.de/2009/06/20/futurebox-lightbox-without-the-javascript/scalalahttps://www.rfc1437.de/2009/06/20/scalala/scouchdbhttps://www.rfc1437.de/2009/06/20/scouchdb/NIK Complete Collectionhttps://www.rfc1437.de/2009/06/18/nik-complete-collection/Subdomain-Patent null und nichtighttps://www.rfc1437.de/2009/06/18/subdomain-patent-null-und-nichtig/Neuer Investor rettet SCO vor der Liquidierunghttps://www.rfc1437.de/2009/06/16/neuer-investor-rettet-sco-vor-der-liquidierung/Olympus E-P1 'Digital Pen' Officially Announcedhttps://www.rfc1437.de/2009/06/16/olympus-e-p1-digital-pen-officially-announced/Olympus E-P1 Hands-on Previewhttps://www.rfc1437.de/2009/06/16/olympus-e-p1-hands-on-preview/httplib2https://www.rfc1437.de/2009/06/15/httplib2/Mal Sondock gestorbenhttps://www.rfc1437.de/2009/06/15/mal-sondock-gestorben/HATTLERhttps://www.rfc1437.de/2009/06/13/hattler/Kunst-Trifft-Kohl.de :: Skulpturen in Kleingärten - Münster Kinderhaus Kulturhttps://www.rfc1437.de/2009/06/11/kunst-trifft-kohl-de-skulpturen-in-kleingaerten/Europawahl: Debakel für die SPDhttps://www.rfc1437.de/2009/06/07/europawahl-debakel-fuer-die-spd/The Gettysburg Powerpoint Presentationhttps://www.rfc1437.de/2009/06/04/the-gettysburg-powerpoint-presentation/The speed, size and dependability of programming languageshttps://www.rfc1437.de/2009/06/01/the-speed-size-and-dependability-of-programming/AK Zensur lässt 60 Kinderporno-Seiten in 12 Stunden löschenhttps://www.rfc1437.de/2009/05/29/ak-zensur-laesst-60-kinderporno-seiten-in-12/bobo v0.2 documentationhttps://www.rfc1437.de/2009/05/29/bobo-v0-2-documentation/Reading and Writing to Excel Spreadsheets in Pythonhttps://www.rfc1437.de/2009/05/29/reading-and-writing-to-excel-spreadsheets-in/Roland Schulz: SSH ProxyCommand without netcathttps://www.rfc1437.de/2009/05/29/roland-schulz-ssh-proxycommand-without-netcat/The Online Photographer: Sigma DP2 Reviewhttps://www.rfc1437.de/2009/05/29/the-online-photographer-sigma-dp2-review/iSqueakhttps://www.rfc1437.de/2009/05/27/isqueak/Mobile Wiki Serverhttps://www.rfc1437.de/2009/05/27/mobile-wiki-server/Geeking out with Lisp Flavoured Erlanghttps://www.rfc1437.de/2009/05/22/geeking-out-with-lisp-flavoured-erlang/Nanojithttps://www.rfc1437.de/2009/05/22/nanojit/pickled-object-databasehttps://www.rfc1437.de/2009/05/22/pickled-object-database/Whither Eucalyptus?https://www.rfc1437.de/2009/05/22/whither-eucalyptus/Lamson: Lamson The Python SMTP Serverhttps://www.rfc1437.de/2009/05/17/lamson-lamson-the-python-smtp-server/Glusterhttps://www.rfc1437.de/2009/05/15/gluster/Nimrod Programming Languagehttps://www.rfc1437.de/2009/05/15/nimrod-programming-language/SCO soll liquidiert werdenhttps://www.rfc1437.de/2009/05/09/sco-soll-liquidiert-werden/Animeeple Softwarehttps://www.rfc1437.de/2009/05/07/animeeple-software/Bundesinkompetenz und Wackeldackelhttps://www.rfc1437.de/2009/05/07/bundesinkompetenz-und-wackeldackel/Hausdurchsuchung bei Forenbetreiber rechtswidrighttps://www.rfc1437.de/2009/05/07/hausdurchsuchung-bei-forenbetreiber-rechtswidrig/MonoDevelop on MacOS Xhttps://www.rfc1437.de/2009/05/07/monodevelop-on-macos-x/Murdoch will hinter die Paywallhttps://www.rfc1437.de/2009/05/07/murdoch-will-hinter-die-paywall/Packet Gardenhttps://www.rfc1437.de/2009/05/04/packet-garden/Hg-Git Mercurial Pluginhttps://www.rfc1437.de/2009/05/01/hg-git-mercurial-plugin/New Survey Suggests Modern Humans Originated in Southwest Africahttps://www.rfc1437.de/2009/05/01/new-survey-suggests-modern-humans-originated-in/Axiotron Modbookhttps://www.rfc1437.de/2009/04/29/axiotron-modbook/Is blender really equal to the competition?https://www.rfc1437.de/2009/04/29/is-blender-really-equal-to-the-competition/Ärgerliches | Die Netzsperren-Show.https://www.rfc1437.de/2009/04/27/aergerliches-die-netzsperren-show/Von der Leyen: Nur versierte Nutzer können Sperren umgehenhttps://www.rfc1437.de/2009/04/27/von-der-leyen-nur-versierte-nutzer-koennen/Überwachungswahn und Internetzensurhttps://www.rfc1437.de/2009/04/25/ueberwachungswahn-und-internetzensur/Vioxx maker Merck and Co drew up doctor hit list | The Australianhttps://www.rfc1437.de/2009/04/24/vioxx-maker-merck-and-co-drew-up-doctor-hit-list/E-Books: Verlage schotten Märkte abhttps://www.rfc1437.de/2009/04/23/e-books-verlage-schotten-maerkte-ab/Bundesregierung will Internetsperren mit Zugriffskontrollenhttps://www.rfc1437.de/2009/04/21/bundesregierung-will-internetsperren-mit/Laktoseintoleranzhttps://www.rfc1437.de/2009/04/21/laktoseintoleranz/Mothers Ruin Software: Suspicious Packagehttps://www.rfc1437.de/2009/04/20/mothers-ruin-software-suspicious-package/Oracle Agrees to Acquire Sun Microsystemshttps://www.rfc1437.de/2009/04/20/oracle-agrees-to-acquire-sun-microsystems/Mac-Bot-Netz?https://www.rfc1437.de/2009/04/18/mac-bot-netz/Pulp Browserhttps://www.rfc1437.de/2009/04/16/pulp-browser/Tax-free Internet shopping may be at an endhttps://www.rfc1437.de/2009/04/16/tax-free-internet-shopping-may-be-at-an-end/tweenbothttps://www.rfc1437.de/2009/04/16/tweenbot/Tropohttps://www.rfc1437.de/2009/04/15/tropo/wikileaks-Kram doch etwas anders als ursprünglich behauptethttps://www.rfc1437.de/2009/04/14/wikileaks-kram-doch-etwas-anders-als/Armstrong droht das Tour-Aushttps://www.rfc1437.de/2009/04/12/armstrong-droht-das-tour-aus/Müntefering rechnet mit Opel-Staatsbeteiligunghttps://www.rfc1437.de/2009/04/12/muentefering-rechnet-mit-opel-staatsbeteiligung/Vorauseilender Gehorsam beim DENIChttps://www.rfc1437.de/2009/04/12/vorauseilender-gehorsam-beim-denic/Discount — a C implementation of the Markdown markup languagehttps://www.rfc1437.de/2009/04/08/discount-a-c-implementation-of-the-markdown/Experiences deploying a large-scale infrastructure in Amazon EC2https://www.rfc1437.de/2009/04/08/experiences-deploying-a-large-scale/jgm's peg-markdownhttps://www.rfc1437.de/2009/04/08/jgm-s-peg-markdown/Books on Boardhttps://www.rfc1437.de/2009/04/03/books-on-board/Moleskin page designerhttps://www.rfc1437.de/2009/04/03/moleskin-page-designer/Python MQI Interface - pymqi. Version 0.5dhttps://www.rfc1437.de/2009/04/03/python-mqi-interface-pymqi-version-0-5d/Sup dawg, we heard you like Smalltalk so we put Smalltalk in your Factor so you can send messages while you rollhttps://www.rfc1437.de/2009/04/01/sup-dawg-we-heard-you-like-smalltalk-so-we-put/Welcome to Waterstones.comhttps://www.rfc1437.de/2009/04/01/welcome-to-waterstones-com/An Experimental MacRubyhttps://www.rfc1437.de/2009/03/30/an-experimental-macruby/Kopfschüttelanreiz aus Karlsruhe (nur Landgericht)https://www.rfc1437.de/2009/03/30/kopfschuettelanreiz-aus-karlsruhe-nur-landgericht/Telekom will iPhones Skype-frei haltenhttps://www.rfc1437.de/2009/03/30/telekom-will-iphones-skype-frei-halten/Getting the most out of a 1024x600 screenhttps://www.rfc1437.de/2009/03/29/getting-the-most-out-of-a-1024x600-screen/Schwedens Polizei: Kinderpornofilter sind wenig wirksamhttps://www.rfc1437.de/2009/03/29/schwedens-polizei-kinderpornofilter-sind-wenig/BKA-Zeuge lügt (schlecht) über gefälschte Aktenhttps://www.rfc1437.de/2009/03/28/bka-zeuge-luegt-schlecht-ueber-gefaelschte-akten/Review of 3D Engines for the iPhonehttps://www.rfc1437.de/2009/03/28/review-of-3d-engines-for-the-iphone/Somethings to rejoice abouthttps://www.rfc1437.de/2009/03/28/somethings-to-rejoice-about/Intuos4 - Wacom-Zeichentabletts mit neuer Stifttechnikhttps://www.rfc1437.de/2009/03/26/intuos4-wacom-zeichentabletts-mit-neuer/KeyCue - find, remember, and learn menu shortcutshttps://www.rfc1437.de/2009/03/25/keycue-find-remember-and-learn-menu-shortcuts/wikileaks und die Sperrlistenhttps://www.rfc1437.de/2009/03/25/wikileaks-und-die-sperrlisten/Abacus Tutorial - How to use an Abacus. Japanese, Chinese abacushttps://www.rfc1437.de/2009/03/24/abacus-tutorial-how-to-use-an-abacus-japanese/Koalition will Pläne gegen Datenmissbrauch entschärfenhttps://www.rfc1437.de/2009/03/24/koalition-will-plaene-gegen-datenmissbrauch/OLG Hamburg schränkt Forenhaftung einhttps://www.rfc1437.de/2009/03/24/olg-hamburg-schraenkt-forenhaftung-ein/One Laptop Battery Later And I'm A Django Fanhttps://www.rfc1437.de/2009/03/23/one-laptop-battery-later-and-i-m-a-django-fan/Regierung will Onlinedurchsuchung beschleunigt ausweitenhttps://www.rfc1437.de/2009/03/23/regierung-will-onlinedurchsuchung-beschleunigt/Schweinemast neben Staatsgästenhttps://www.rfc1437.de/2009/03/23/schweinemast-neben-staatsgaesten/Sony e-book reader gets 500,000 books from Googlehttps://www.rfc1437.de/2009/03/19/sony-e-book-reader-gets-500-000-books-from-google/Das iPhone kann bald auch «Copy and Paste»https://www.rfc1437.de/2009/03/18/das-iphone-kann-bald-auch-copy-and-paste/RapidMinerhttps://www.rfc1437.de/2009/03/18/rapidminer/Baen Books Science Fiction & Fantasyhttps://www.rfc1437.de/2009/03/14/baen-books-science-fiction-fantasy/Calibrehttps://www.rfc1437.de/2009/03/14/calibre/Sony Reader PRS-505 - LatheWikihttps://www.rfc1437.de/2009/03/14/sony-reader-prs-505-lathewiki/Bug #317781 - Comment #45https://www.rfc1437.de/2009/03/13/bug-317781-comment-45/.epub eBooks Tutorialhttps://www.rfc1437.de/2009/03/13/epub-ebooks-tutorial/Feedbooks: Food for the mindhttps://www.rfc1437.de/2009/03/13/feedbooks-food-for-the-mind/Fictionwise eBookshttps://www.rfc1437.de/2009/03/13/fictionwise-ebooks/macvim - Google Codehttps://www.rfc1437.de/2009/03/13/macvim-google-code/:: Munseys : A Bangsian Fantasyhttps://www.rfc1437.de/2009/03/13/munseys-a-bangsian-fantasy/John J Marley Lettershttps://www.rfc1437.de/2009/03/12/john-j-marley-letters/Sendezeitbegrenzung für erotische Inhaltehttps://www.rfc1437.de/2009/03/12/sendezeitbegrenzung-fuer-erotische-inhalte/Tauss räumt eigene Ermittlungen in Kinderpornoszene einhttps://www.rfc1437.de/2009/03/12/tauss-raeumt-eigene-ermittlungen-in/OpenDocument, diff, and revision-controlhttps://www.rfc1437.de/2009/03/11/opendocument-diff-and-revision-control/Schäuble unter Beobachtung des Verfassungsschutz stellenhttps://www.rfc1437.de/2009/03/11/schaeuble-unter-beobachtung-des-verfassungsschutz/Enzyme behind cancer spread foundhttps://www.rfc1437.de/2009/03/09/enzyme-behind-cancer-spread-found/The START Natural Language Question Answering Systemhttps://www.rfc1437.de/2009/03/09/the-start-natural-language-question-answering/What happened to Hot Standby?https://www.rfc1437.de/2009/03/09/what-happened-to-hot-standby/wmd - The Wysiwym Markdown Editorhttps://www.rfc1437.de/2009/03/09/wmd-the-wysiwym-markdown-editor/Portrait of an Artist as an Avatar - Filthy Flunohttps://www.rfc1437.de/2009/03/07/portrait-of-an-artist-as-an-avatar-filthy-fluno/Scripting Drawer für Acornhttps://www.rfc1437.de/2009/03/06/scripting-drawer-fuer-acorn/Stainless for OS X Leopardhttps://www.rfc1437.de/2009/03/06/stainless-for-os-x-leopard/Leica ceases R-series productionhttps://www.rfc1437.de/2009/03/05/leica-ceases-r-series-production/Nik Software, Inc.https://www.rfc1437.de/2009/03/05/nik-software-inc/lange Akkulaufzeithttps://www.rfc1437.de/2009/03/04/lange-akkulaufzeit/Bundesverfassungsgericht entscheidet gegen Wahlcomputerhttps://www.rfc1437.de/2009/03/03/bundesverfassungsgericht-entscheidet-gegen/git installer für OS Xhttps://www.rfc1437.de/2009/02/26/git-installer-fuer-os-x/Alien Skin Software: Bokehhttps://www.rfc1437.de/2009/02/25/alien-skin-software-bokeh/OMVViewer-light a Secondlife Text Clienthttps://www.rfc1437.de/2009/02/25/omvviewer-light-a-secondlife-text-client/The man who invented the doner kebab has diedhttps://www.rfc1437.de/2009/02/25/the-man-who-invented-the-doner-kebab-has-died/Adapters: Micro 4/3https://www.rfc1437.de/2009/02/20/adapters-micro-4-3/Alhazenhttps://www.rfc1437.de/2009/02/20/alhazen/ITU-Pläne zum Kampf gegen Cybercrime stoßen auf Widerstandhttps://www.rfc1437.de/2009/02/20/itu-plaene-zum-kampf-gegen-cybercrime-stossen-auf/StillTasty: Your Ultimate Shelf Life Guidehttps://www.rfc1437.de/2009/02/20/stilltasty-your-ultimate-shelf-life-guide/Union will auch Kinder überwachen lassenhttps://www.rfc1437.de/2009/02/20/union-will-auch-kinder-ueberwachen-lassen/And now a physics engine for JavaScript...https://www.rfc1437.de/2009/02/18/and-now-a-physics-engine-for-javascript/zsynchttps://www.rfc1437.de/2009/02/18/zsync/A high-level cross-protocol url-grabberhttps://www.rfc1437.de/2009/02/16/a-high-level-cross-protocol-url-grabber/Anonymous(tm)https://www.rfc1437.de/2009/02/16/anonymous-tm/Britisch-Französisches Nuklear-Billiard im Atlantikhttps://www.rfc1437.de/2009/02/16/britisch-franzoesisches-nuklear-billiard-im/CDU: Gegner von Internetsperren fördern Kinderpornografiehttps://www.rfc1437.de/2009/02/16/cdu-gegner-von-internetsperren-foerdern/py-amqplibhttps://www.rfc1437.de/2009/02/16/py-amqplib/Rabbits and warrenshttps://www.rfc1437.de/2009/02/16/rabbits-and-warrens/txAMQP: Twisted AMQP in Launchpadhttps://www.rfc1437.de/2009/02/16/txamqp-twisted-amqp-in-launchpad/Using RabbitMQ Beyond Queueinghttps://www.rfc1437.de/2009/02/16/using-rabbitmq-beyond-queueing/zeromq: Fastest. Messaging. Ever.https://www.rfc1437.de/2009/02/16/zeromq-fastest-messaging-ever/FragStore - A Fragmenting Asset Store at Adam Frisbyhttps://www.rfc1437.de/2009/02/15/fragstore-a-fragmenting-asset-store-at-adam-frisby/FractalMakerhttps://www.rfc1437.de/2009/02/13/fractalmaker/The Oarfish - A Creature Of Legendhttps://www.rfc1437.de/2009/02/13/the-oarfish-a-creature-of-legend/Unix Lovers to Party Like It's 1234567890https://www.rfc1437.de/2009/02/13/unix-lovers-to-party-like-it-s-1234567890/Schäuble gehackt (Update)https://www.rfc1437.de/2009/02/11/schaeuble-gehackt-update/Demo scripts for gnuplot CVS versionhttps://www.rfc1437.de/2009/02/09/demo-scripts-for-gnuplot-cvs-version/Gravenreuth muss in Hafthttps://www.rfc1437.de/2009/02/08/gravenreuth-muss-in-haft/Linzer Weihbischof hält Homosexualität für heilbarhttps://www.rfc1437.de/2009/02/08/linzer-weihbischof-haelt-homosexualitaet-fuer/ExpanDrive: Ridiculously simple SFTP and FTP drive access on your Machttps://www.rfc1437.de/2009/02/06/expandrive-ridiculously-simple-sftp-and-ftp-drive/Instant color schemes for your Mac with ColorSchemer Studio OSXhttps://www.rfc1437.de/2009/02/06/instant-color-schemes-for-your-mac-with/Intaglio — Macintosh Drawing & Illustrationhttps://www.rfc1437.de/2009/02/06/intaglio-macintosh-drawing-illustration/VectorDesignerhttps://www.rfc1437.de/2009/02/06/vectordesigner/Moving Forth: Part 1https://www.rfc1437.de/2009/02/04/moving-forth-part-1/Wolfram Mathematica Home Editionhttps://www.rfc1437.de/2009/02/04/wolfram-mathematica-home-edition/NodeBox 2https://www.rfc1437.de/2009/02/03/nodebox-2/US-Hacker kopiert unbemerkt RFID-Ausweisehttps://www.rfc1437.de/2009/02/03/us-hacker-kopiert-unbemerkt-rfid-ausweise/Nokia drückt Überwachungsrechte für E-Mails durchhttps://www.rfc1437.de/2009/02/02/nokia-drueckt-ueberwachungsrechte-fuer-e-mails/Filter Forgehttps://www.rfc1437.de/2009/01/31/filter-forge/Imagelys Picture Styleshttps://www.rfc1437.de/2009/01/31/imagelys-picture-styles/LÖVE - Free 2D Game Enginehttps://www.rfc1437.de/2009/01/30/loeve-free-2d-game-engine/Online Backup: Multi-Platform, Multi-Computer | SpiderOak, Inc.https://www.rfc1437.de/2009/01/30/online-backup-multi-platform-multi-computer/Patterns in Pythonhttps://www.rfc1437.de/2009/01/30/patterns-in-python/Darwin/x86 Boot Loaderhttps://www.rfc1437.de/2009/01/26/darwin-x86-boot-loader/How To Migrate from Parallels to VirtualBoxhttps://www.rfc1437.de/2009/01/26/how-to-migrate-from-parallels-to-virtualbox/New in JavaScript 1.7https://www.rfc1437.de/2009/01/26/new-in-javascript-1-7-2/Data Mining with R: learning by case studieshttps://www.rfc1437.de/2009/01/23/data-mining-with-r-learning-by-case-studies/Op-Ed Contributor - The One-State Solutionhttps://www.rfc1437.de/2009/01/23/op-ed-contributor-the-one-state-solution/XBinary: Extended Binary Format Support for Mac OS Xhttps://www.rfc1437.de/2009/01/21/xbinary-extended-binary-format-support-for-mac-os/TimeMachine fails backup - InsanelyMac Forumhttps://www.rfc1437.de/2009/01/20/timemachine-fails-backup-insanelymac-forum/Weekend Grid Outageshttps://www.rfc1437.de/2009/01/20/weekend-grid-outages/how to find mac os x application specifier for preferenceshttps://www.rfc1437.de/2009/01/19/how-to-find-mac-os-x-application-specifier-for/Kim Keeverhttps://www.rfc1437.de/2009/01/19/kim-keever/The Impossible Projecthttps://www.rfc1437.de/2009/01/19/the-impossible-project/Bubble, bubble toil and trouble: Juice Analyticshttps://www.rfc1437.de/2009/01/16/bubble-bubble-toil-and-trouble-juice-analytics/OS X auf dem EeePChttps://www.rfc1437.de/2009/01/16/os-x-auf-dem-eeepc/Dark Roasted Blend: Weird "Walking" Frogfishhttps://www.rfc1437.de/2009/01/12/dark-roasted-blend-weird-walking-frogfish/eee Mac journey: EEE Boot: Installing OSX on an EEE PC 901 or 1000 with an original Apple Install Disk v1.09https://www.rfc1437.de/2009/01/12/eee-mac-journey-eee-boot-installing-osx-on-an-eee/English Russia » Abandoned Russian Polar Nuclear Lighthouseshttps://www.rfc1437.de/2009/01/12/english-russia-abandoned-russian-polar-nuclear/RunCore 256GB Pro III Hyper Speed 2.5" SATA Solid State Drivehttps://www.rfc1437.de/2009/01/12/runcore-256gb-pro-iii-hyper-speed-2-5-sata-solid/Das Geheimnis der verschwundenen Bücherhttps://www.rfc1437.de/2009/01/10/das-geheimnis-der-verschwundenen-buecher/iUI Introduction Wiki Page.https://www.rfc1437.de/2009/01/09/iui-introduction-wiki-page/PyChahttps://www.rfc1437.de/2009/01/09/pycha/Jörg Schieb - iTunes verzichtet auf Kopierschutzhttps://www.rfc1437.de/2009/01/07/joerg-schieb-itunes-verzichtet-auf-kopierschutz/Monstershttps://www.rfc1437.de/2009/01/05/monsters/pure-langhttps://www.rfc1437.de/2009/01/05/pure-lang/The RLTileshttps://www.rfc1437.de/2009/01/05/the-rltiles/Vx32: Lightweight, User-level Sandboxing on the x86https://www.rfc1437.de/2009/01/05/vx32-lightweight-user-level-sandboxing-on-the-x86/Cython: C-Extensions for Pythonhttps://www.rfc1437.de/2009/01/02/cython-c-extensions-for-python/Mobile Django Admin Patches - Shifting Bits by Patrick Altmanhttps://www.rfc1437.de/2009/01/01/mobile-django-admin-patches-shifting-bits-by/DigitalSpace Traveler : Travelerhttps://www.rfc1437.de/2008/12/30/digitalspace-traveler-traveler/Improve Your Photo Booth With 90 Free Effectshttps://www.rfc1437.de/2008/12/30/improve-your-photo-booth-with-90-free-effects/Raw Photo Processor (RPP)https://www.rfc1437.de/2008/12/24/raw-photo-processor-rpp/uninformation.org: Arbeitswelt 2.0, oder: Der Dot-Com-Tod ist wieder da!https://www.rfc1437.de/2008/12/18/uninformation-org-arbeitswelt-2-0-oder-der-dot/ngPlant - Open Source plant modeling packagehttps://www.rfc1437.de/2008/12/16/ngplant-open-source-plant-modeling-package/Tree makinghttps://www.rfc1437.de/2008/12/16/tree-making/Yorik's blender greenhousehttps://www.rfc1437.de/2008/12/16/yorik-s-blender-greenhouse/Arbaro - tree generation for povrayhttps://www.rfc1437.de/2008/12/15/arbaro-tree-generation-for-povray/AUST TOMTREEhttps://www.rfc1437.de/2008/12/15/aust-tomtree/MacMegaPov Indexhttps://www.rfc1437.de/2008/12/15/macmegapov-index/POV-Ray: Documentationhttps://www.rfc1437.de/2008/12/15/pov-ray-documentation/POV-Treehttps://www.rfc1437.de/2008/12/15/pov-tree/SuperColdMilkhttps://www.rfc1437.de/2008/12/15/supercoldmilk/Mystic Foresthttps://www.rfc1437.de/2008/12/03/mystic-forest/A3DSculpt: Creating sculpties with Albatross3Dhttps://www.rfc1437.de/2008/11/29/a3dsculpt-creating-sculpties-with-albatross3d/Albatross3Dhttps://www.rfc1437.de/2008/11/29/albatross3d/2,700-year-old marijuana found in Chinese tombhttps://www.rfc1437.de/2008/11/28/2-700-year-old-marijuana-found-in-chinese-tomb/IronCladhttps://www.rfc1437.de/2008/11/28/ironclad/Python-Ogre | High performance gaming and graphics library for Pythonhttps://www.rfc1437.de/2008/11/28/python-ogre-high-performance-gaming-and-graphics/Tutorial: Einstieg in das Adobe Flex SDKhttps://www.rfc1437.de/2008/11/28/tutorial-einstieg-in-das-adobe-flex-sdk/VPythonhttps://www.rfc1437.de/2008/11/28/vpython/C o r e P y : Synthetic Programming in Pythonhttps://www.rfc1437.de/2008/11/26/c-o-r-e-p-y-synthetic-programming-in-python/Rands In Repose: Dumbing Down the Cloudhttps://www.rfc1437.de/2008/11/26/rands-in-repose-dumbing-down-the-cloud/Continue: Web Applications in PLT Schemehttps://www.rfc1437.de/2008/11/24/continue-web-applications-in-plt-scheme/JazzSchemehttps://www.rfc1437.de/2008/11/24/jazzscheme/Mankind's new best friend?https://www.rfc1437.de/2008/11/24/mankind-s-new-best-friend/Molotov Alvahttps://www.rfc1437.de/2008/11/22/molotov-alva/arRsync - an Rsync GUI for Mac OS Xhttps://www.rfc1437.de/2008/11/20/arrsync-an-rsync-gui-for-mac-os-x/duplicityhttps://www.rfc1437.de/2008/11/20/duplicity/IT-Gipfel: Vertrauenswürdige De-Mail von Innenministerium und Telekomhttps://www.rfc1437.de/2008/11/20/it-gipfel-vertrauenswuerdige-de-mail-von/Mercurial hosting — bitbucket.orghttps://www.rfc1437.de/2008/11/17/mercurial-hosting-bitbucket-org/Modulare Kamera mit 6 x 17 cm großem Riesensensorhttps://www.rfc1437.de/2008/11/17/modulare-kamera-mit-6-x-17-cm-grossem-riesensensor/Respectful Insolence: That'll teach 'em for using an actual valid placebo controlhttps://www.rfc1437.de/2008/11/17/respectful-insolence-that-ll-teach-em-for-using/Wikipedia abgeschaltethttps://www.rfc1437.de/2008/11/17/wikipedia-abgeschaltet/I'm actually Knuth's homeboy on Flickrhttps://www.rfc1437.de/2008/11/14/i-m-actually-knuth-s-homeboy-on-flickr/ISS rät vom Einsatz von Trend Micros ServerProtect abhttps://www.rfc1437.de/2008/11/14/iss-raet-vom-einsatz-von-trend-micros/Microsoft erklärt siebenjährige Patch-Verspätunghttps://www.rfc1437.de/2008/11/14/microsoft-erklaert-siebenjaehrige-patch/The world’s most super-designed data center – fit for a James Bond villainhttps://www.rfc1437.de/2008/11/14/the-world-s-most-super-designed-data-center-fit/To WebKit or not to WebKit within your iPhone app?https://www.rfc1437.de/2008/11/14/to-webkit-or-not-to-webkit-within-your-iphone-app/Deutsche Bank verklagt Lehman Brothershttps://www.rfc1437.de/2008/11/13/deutsche-bank-verklagt-lehman-brothers/The flying carhttps://www.rfc1437.de/2008/11/13/the-flying-car/Lokführer springen aus Güterzughttps://www.rfc1437.de/2008/11/11/lokfuehrer-springen-aus-gueterzug/Vom qualitativen Abstieg eines Providershttps://www.rfc1437.de/2008/11/11/vom-qualitativen-abstieg-eines-providers/CLPython - an implementation of Python in Common Lisphttps://www.rfc1437.de/2008/11/10/clpython-an-implementation-of-python-in-common/CouchDBX Revivalhttps://www.rfc1437.de/2008/11/10/couchdbx-revival/Nagarehttps://www.rfc1437.de/2008/11/10/nagare/The Picodore 64 - a Commodore 64 PDAhttps://www.rfc1437.de/2008/11/10/the-picodore-64-a-commodore-64-pda/Fabrichttps://www.rfc1437.de/2008/11/06/fabric/Seed: Prime Numbers Get Hitchedhttps://www.rfc1437.de/2008/11/06/seed-prime-numbers-get-hitched/"Sichere Identität = Eindeutige Identität"https://www.rfc1437.de/2008/11/06/sichere-identitaet-eindeutige-identitaet/WPA angeblich in weniger als 15 Minuten knackbarhttps://www.rfc1437.de/2008/11/06/wpa-angeblich-in-weniger-als-15-minuten-knackbar/SPD-Rebellen lassen Ypsilanti scheiternhttps://www.rfc1437.de/2008/11/03/spd-rebellen-lassen-ypsilanti-scheitern/Gobekli Tepe: The World’s First Temple?https://www.rfc1437.de/2008/10/31/gobekli-tepe-the-world-s-first-temple/NASA - MESSENGER Teleconference: More ''Hidden'' Territory on Mercury Revealedhttps://www.rfc1437.de/2008/10/31/nasa-messenger-teleconference-more-hidden/Otto the octopus wrecks havochttps://www.rfc1437.de/2008/10/31/otto-the-octopus-wrecks-havoc/pysmellhttps://www.rfc1437.de/2008/10/31/pysmell/Tom Otterness - Making the Sculpturehttps://www.rfc1437.de/2008/10/31/tom-otterness-making-the-sculpture/JSSpeccy: A ZX Spectrum emulator in Javascripthttps://www.rfc1437.de/2008/10/30/jsspeccy-a-zx-spectrum-emulator-in-javascript/Richter: Wahlcomputer unsicherhttps://www.rfc1437.de/2008/10/29/richter-wahlcomputer-unsicher/Zed über die Bankenkrisehttps://www.rfc1437.de/2008/10/29/zed-ueber-die-bankenkrise/The Comfy Chairhttps://www.rfc1437.de/2008/10/28/the-comfy-chair/Poladroid project : the easiest and funniest Polaroid Image Makerhttps://www.rfc1437.de/2008/10/27/poladroid-project-the-easiest-and-funniest/Wahlprüfer des Bundestags bezeichnet Wahlcomputer als sicherhttps://www.rfc1437.de/2008/10/27/wahlpruefer-des-bundestags-bezeichnet/CouchDB Implementationhttps://www.rfc1437.de/2008/10/24/couchdb-implementation/Kritische Sicherheitslücke: Microsoft warnt vor Würmernhttps://www.rfc1437.de/2008/10/24/kritische-sicherheitsluecke-microsoft-warnt-vor/Kidding (not)https://www.rfc1437.de/2008/10/23/kidding-not/Developing Cocoa Applications Using MacRubyhttps://www.rfc1437.de/2008/10/21/developing-cocoa-applications-using-macruby/Frauenstraße 24https://www.rfc1437.de/2008/10/21/frauenstrasse-24/John Nack on Adobe: The DNG Profile Editor: What''s it all about?https://www.rfc1437.de/2008/10/20/john-nack-on-adobe-the-dng-profile-editor-what-s/Ackermann warnt vor Feinden der Marktwirtschafthttps://www.rfc1437.de/2008/10/19/ackermann-warnt-vor-feinden-der-marktwirtschaft/VirusTotal - Kostenloser online Viren- und Malwarescannerhttps://www.rfc1437.de/2008/10/19/virustotal-kostenloser-online-viren-und/freeSSHdhttps://www.rfc1437.de/2008/10/18/freesshd/Jeffrey’s “Export to Flickr” Lightroom Pluginhttps://www.rfc1437.de/2008/10/18/jeffrey-s-export-to-flickr-lightroom-plugin/Jeffrey’s “Export to PicasaWeb” Lightroom Pluginhttps://www.rfc1437.de/2008/10/18/jeffrey-s-export-to-picasaweb-lightroom-plugin/PresetsHeavenhttps://www.rfc1437.de/2008/10/18/presetsheaven/WinMergehttps://www.rfc1437.de/2008/10/18/winmerge/picasa2flickr - flickr upload plugin for picasahttps://www.rfc1437.de/2008/10/17/picasa2flickr-flickr-upload-plugin-for-picasa/Software Tools in Haskellhttps://www.rfc1437.de/2008/10/17/software-tools-in-haskell/eBooks mal wiederhttps://www.rfc1437.de/2008/10/15/ebooks-mal-wieder/Bericht: Digitaler Polizeifunk erreicht nur 3 KBit/shttps://www.rfc1437.de/2008/10/14/bericht-digitaler-polizeifunk-erreicht-nur-3-kbit/Das Schräuble wieder malhttps://www.rfc1437.de/2008/10/14/das-schraeuble-wieder-mal/SAP will sparenhttps://www.rfc1437.de/2008/10/14/sap-will-sparen/Auch Kohl positiv getestethttps://www.rfc1437.de/2008/10/13/auch-kohl-positiv-getestet/Bund stützt Banken mit bis zu 400 Milliarden Eurohttps://www.rfc1437.de/2008/10/13/bund-stuetzt-banken-mit-bis-zu-400-milliarden-euro/Buzzaire - Metered Dose Caffeine Inhalerhttps://www.rfc1437.de/2008/10/13/buzzaire-metered-dose-caffeine-inhaler/Downloading Hugshttps://www.rfc1437.de/2008/10/13/downloading-hugs/ECMAScript 4 - Progresshttps://www.rfc1437.de/2008/10/13/ecmascript-4-progress/IM Functionality On Twitter Suspended Indefinitelyhttps://www.rfc1437.de/2008/10/13/im-functionality-on-twitter-suspended-indefinitely/.:: NOTEPAD++ ::.https://www.rfc1437.de/2008/10/13/notepad/Overclock Your Body With Geek Cuisinehttps://www.rfc1437.de/2008/10/13/overclock-your-body-with-geek-cuisine/Shapeways | passionate about creatinghttps://www.rfc1437.de/2008/10/13/shapeways-passionate-about-creating/Slipstream - Intuition + Money - An Aha Momenthttps://www.rfc1437.de/2008/10/13/slipstream-intuition-money-an-aha-moment/T-Mobile-Aufsichtsrat nennt eigenen Konzern Klitschehttps://www.rfc1437.de/2008/10/13/t-mobile-aufsichtsrat-nennt-eigenen-konzern/The ORIGINAL Illustrated Catalog Of ACME Productshttps://www.rfc1437.de/2008/10/13/the-original-illustrated-catalog-of-acme-products/the world's most bad-ass grotesques and gargoyleshttps://www.rfc1437.de/2008/10/13/the-world-s-most-bad-ass-grotesques-and-gargoyles/Why 42 ?https://www.rfc1437.de/2008/10/13/why-42/:MyDigitalSSDhttps://www.rfc1437.de/2008/10/11/mydigitalssd/SSD-Erweiterung auf 32 oder 64 GBhttps://www.rfc1437.de/2008/10/11/ssd-erweiterung-auf-32-oder-64-gb/eeebuntuhttps://www.rfc1437.de/2008/10/10/eeebuntu/Ubuntu Eeehttps://www.rfc1437.de/2008/10/10/ubuntu-eee/UMTS USB Sticks: mit Xandros (Linux) ÜBERSICHThttps://www.rfc1437.de/2008/10/10/umts-usb-sticks-mit-xandros-linux-uebersicht/Abbyy FotoReader: OCR mit der Digitalkamerahttps://www.rfc1437.de/2008/10/07/abbyy-fotoreader-ocr-mit-der-digitalkamera/Bericht: Erotik-Unternehmer lagert T-Mobile-Kundendatenbankhttps://www.rfc1437.de/2008/10/07/bericht-erotik-unternehmer-lagert-t-mobile/OLG Hamburg: RapidShare haftet als Mitstörer für Urheberrechtsverletzungenhttps://www.rfc1437.de/2008/10/07/olg-hamburg-rapidshare-haftet-als-mitstoerer-fuer/Orbited – Networking for the Webhttps://www.rfc1437.de/2008/10/07/orbited-networking-for-the-web/Schumacher unter Doping-Verdachthttps://www.rfc1437.de/2008/10/07/schumacher-unter-doping-verdacht/Unity erstellt Spiele und 3D-Anwendungen fürs iPhone [Update]https://www.rfc1437.de/2008/10/07/unity-erstellt-spiele-und-3d-anwendungen-fuers/Multi-Dimensional Analog Literals in C++https://www.rfc1437.de/2008/10/06/multi-dimensional-analog-literals-in-c/Apple und Windows - Failhttps://www.rfc1437.de/2008/10/05/apple-und-windows-fail/17 Millionen Kundendaten bei T-Mobile geklauthttps://www.rfc1437.de/2008/10/04/17-millionen-kundendaten-bei-t-mobile-geklaut/Verraten und verkaufthttps://www.rfc1437.de/2008/10/03/verraten-und-verkauft/Tiny Nation Premierehttps://www.rfc1437.de/2008/10/01/tiny-nation-premiere/Guppy-PE: A Python Programming Environmenthttps://www.rfc1437.de/2008/09/29/guppy-pe-a-python-programming-environment/Hypo Real Estate: Steuerzahler springt in die Breschehttps://www.rfc1437.de/2008/09/29/hypo-real-estate-steuerzahler-springt-in-die/Landtagswahl in Bayern: CSU verliert absolute Mehrheithttps://www.rfc1437.de/2008/09/29/landtagswahl-in-bayern-csu-verliert-absolute/PySizer - a memory profiler for Pythonhttps://www.rfc1437.de/2008/09/29/pysizer-a-memory-profiler-for-python/Wal-Mart latest store to shut DRM key servershttps://www.rfc1437.de/2008/09/29/wal-mart-latest-store-to-shut-drm-key-servers/Neat Image /Mac - best noise reduction for digital cameras and scanners on Machttps://www.rfc1437.de/2008/09/26/neat-image-mac-best-noise-reduction-for-digital/papert: logo in your browserhttps://www.rfc1437.de/2008/09/26/papert-logo-in-your-browser/Zabel steigt vom Radhttps://www.rfc1437.de/2008/09/26/zabel-steigt-vom-rad/AK Vorrat veröffentlicht geheimes Datenaustauschabkommenhttps://www.rfc1437.de/2008/09/25/ak-vorrat-veroeffentlicht-geheimes/GTK+ on OSXhttps://www.rfc1437.de/2008/09/24/gtk-on-osx/IBM warns standards bodies to shape uphttps://www.rfc1437.de/2008/09/24/ibm-warns-standards-bodies-to-shape-up/Leica S2 with 56% larger sensor than full frame:https://www.rfc1437.de/2008/09/23/leica-s2-with-56-larger-sensor-than-full-frame/Sigma announces DP2 large sensor compacthttps://www.rfc1437.de/2008/09/23/sigma-announces-dp2-large-sensor-compact/Home Page for ATShttps://www.rfc1437.de/2008/09/21/home-page-for-ats/MailWrangler and the Apple App Storehttps://www.rfc1437.de/2008/09/21/mailwrangler-and-the-apple-app-store/Making (some) sense out of sensor sizeshttps://www.rfc1437.de/2008/09/20/making-some-sense-out-of-sensor-sizes/tmshttps://www.rfc1437.de/2008/09/20/tms/Vertraulichkeit, Integrität sowie Beweisbarkeit - mit denen?https://www.rfc1437.de/2008/09/20/vertraulichkeit-integritaet-sowie-beweisbarkeit/Clozure CL 1.2 releasedhttps://www.rfc1437.de/2008/09/19/clozure-cl-1-2-released/Introducing SquirrelFish Extremehttps://www.rfc1437.de/2008/09/19/introducing-squirrelfish-extreme/Mario's Bike on Flickrhttps://www.rfc1437.de/2008/09/19/mario-s-bike-on-flickr/Play light-Bot, a free online game on Kongregatehttps://www.rfc1437.de/2008/09/19/play-light-bot-a-free-online-game-on-kongregate/Summer of JavaScriptCore: SquirrelFish Extreme has landed!https://www.rfc1437.de/2008/09/19/summer-of-javascriptcore-squirrelfish-extreme-has/Canon EOS 5D Mark II: 21MP and HD movieshttps://www.rfc1437.de/2008/09/17/canon-eos-5d-mark-ii-21mp-and-hd-movies/Millionenpanne: KfW-Überweisung an Pleite-Bank Lehmanhttps://www.rfc1437.de/2008/09/17/millionenpanne-kfw-ueberweisung-an-pleite-bank/US-Geheimdienste: Terroristen könnten Online-Rollenspiele zur Planung von Anschlägen nutzenhttps://www.rfc1437.de/2008/09/17/us-geheimdienste-terroristen-koennten-online/Wert den Purschen in den Kerker!https://www.rfc1437.de/2008/09/17/wert-den-purschen-in-den-kerker/i41CX+https://www.rfc1437.de/2008/09/16/i41cx/SourceForge.net: X-41 - an HP-41CV Simulatorhttps://www.rfc1437.de/2008/09/16/sourceforge-net-x-41-an-hp-41cv-simulator/Carl Zeiss lenses for Canon SLRshttps://www.rfc1437.de/2008/09/15/carl-zeiss-lenses-for-canon-slrs/heise online - 15.09.08 - ITU diskutiert bessere Nachverfolgbarkeit von IP-Adressenhttps://www.rfc1437.de/2008/09/15/heise-online-15-09-08-itu-diskutiert-bessere/Lichtstarkes Kleinod: Leica Noctilux mit Weltrekord-Blendenöffnunghttps://www.rfc1437.de/2008/09/15/lichtstarkes-kleinod-leica-noctilux-mit/The deep heap: Ghost in the Java virtual machinehttps://www.rfc1437.de/2008/09/15/the-deep-heap-ghost-in-the-java-virtual-machine/Dropbox - Secure backup, sync and sharing made easy.https://www.rfc1437.de/2008/09/12/dropbox-secure-backup-sync-and-sharing-made-easy/Prototype based programming in pythonhttps://www.rfc1437.de/2008/09/12/prototype-based-programming-in-python/Dumme Userinterfaces (c) by Applehttps://www.rfc1437.de/2008/09/11/dummer-userinterfaces-c-by-apple/Armstrong kehrt zurückhttps://www.rfc1437.de/2008/09/10/armstrong-kehrt-zurueck/Bund kauft Bundesdruckerei zurückhttps://www.rfc1437.de/2008/09/10/bund-kauft-bundesdruckerei-zurueck/EU erlaubt Bayer Import von Gensojabohnenhttps://www.rfc1437.de/2008/09/08/eu-erlaubt-bayer-import-von-gensojabohnen/Ex-BND-Chef: Pläne für heimliche Online-Durchsuchungen verfassungswidrighttps://www.rfc1437.de/2008/09/08/ex-bnd-chef-plaene-fuer-heimliche-online/Cappuccino Web Frameworkhttps://www.rfc1437.de/2008/09/05/cappuccino-web-framework/Dark Roasted Blend: The Most Alien-Looking Place on Earthhttps://www.rfc1437.de/2008/09/05/dark-roasted-blend-the-most-alien-looking-place/Discohttps://www.rfc1437.de/2008/09/05/disco/Django 1.0 released!https://www.rfc1437.de/2008/09/05/django-1-0-released/ThinkGeek :: Luxeed Dynamic Pixel LED Keyboardhttps://www.rfc1437.de/2008/09/05/thinkgeek-luxeed-dynamic-pixel-led-keyboard/ThinkGeek :: Optimus Maximus Keyboardhttps://www.rfc1437.de/2008/09/05/thinkgeek-optimus-maximus-keyboard/Urheberrechtsverletzung: Gerichte setzen niedrige Hürde für Auskunftsanspruch gegen Providerhttps://www.rfc1437.de/2008/09/05/urheberrechtsverletzung-gerichte-setzen-niedrige/OpenCOBOL - an open-source COBOL compilerhttps://www.rfc1437.de/2008/09/01/opencobol-an-open-source-cobol-compiler/Sync trigger with Applescript ...https://www.rfc1437.de/2008/08/31/sync-trigger-with-applescript/Deutsche Bahn erhöht Ticketpreise um 3,9 Prozenthttps://www.rfc1437.de/2008/08/29/deutsche-bahn-erhoeht-ticketpreise-um-3-9-prozent/Handel mit Melderegisterdaten: Die Schattenmeldeämterhttps://www.rfc1437.de/2008/08/29/handel-mit-melderegisterdaten-die/Scientists Discover Why Flies Are So Hard To Swathttps://www.rfc1437.de/2008/08/29/scientists-discover-why-flies-are-so-hard-to-swat/Aus für Gerolsteinerhttps://www.rfc1437.de/2008/08/28/aus-fuer-gerolsteiner/Canon EOS 50Dhttps://www.rfc1437.de/2008/08/26/canon-eos-50d/Gears für Safarihttps://www.rfc1437.de/2008/08/26/gears-fuer-safari/Redhat perl. What a tragedy.https://www.rfc1437.de/2008/08/26/redhat-perl-what-a-tragedy/Annals of the Patently Absurdhttps://www.rfc1437.de/2008/08/25/annals-of-the-patently-absurd/Factor: a practical stack language: New optimizerhttps://www.rfc1437.de/2008/08/25/factor-a-practical-stack-language-new-optimizer/Google: "No Trespassing" signs won''t stop Street Viewhttps://www.rfc1437.de/2008/08/25/google-no-trespassing-signs-won-t-stop-street-view/Jennifer Daniel Dot Com Was Takenhttps://www.rfc1437.de/2008/08/25/jennifer-daniel-dot-com-was-taken/Rabbiterhttps://www.rfc1437.de/2008/08/25/rabbiter/Techdirt: Diebold/Premier Actually Admits Its Machines Are Faulty! And That It Lied About Antivirus Software...https://www.rfc1437.de/2008/08/25/techdirt-diebold-premier-actually-admits-its/The Transterpreterhttps://www.rfc1437.de/2008/08/25/the-transterpreter/Index of /namespace/OmniOutlinerhttps://www.rfc1437.de/2008/08/22/index-of-namespace-omnioutliner/Amazon EBS - Elastic Block Store has launchedhttps://www.rfc1437.de/2008/08/21/amazon-ebs-elastic-block-store-has-launched/Free Critical Mass Modula-3 (CM3)https://www.rfc1437.de/2008/08/21/free-critical-mass-modula-3-cm3/Phil Plait''s Bad Astronomy: Bad TVhttps://www.rfc1437.de/2008/08/21/phil-plait-s-bad-astronomy-bad-tv/CPU Rings, Privilege, and Protectionhttps://www.rfc1437.de/2008/08/20/cpu-rings-privilege-and-protection/Drinking fruit juice 'may stop medication working'https://www.rfc1437.de/2008/08/20/drinking-fruit-juice-may-stop-medication-working/Peter's Evil Overlord Listhttps://www.rfc1437.de/2008/08/20/peter-s-evil-overlord-list/The Associated Press: States throw out costly electronic voting machineshttps://www.rfc1437.de/2008/08/20/the-associated-press-states-throw-out-costly/The Great Consumer Crash of 2009https://www.rfc1437.de/2008/08/20/the-great-consumer-crash-of-2009/BeagleBoard.orghttps://www.rfc1437.de/2008/08/19/beagleboard-org/Everything You Need to Know About USB 3.0, Plus First Spliced Cable Photoshttps://www.rfc1437.de/2008/08/19/everything-you-need-to-know-about-usb-3-0-plus/tunnelblickhttps://www.rfc1437.de/2008/08/18/tunnelblick/We're running out of IPv4 addresses. Time for IPv6. Really.https://www.rfc1437.de/2008/08/18/we-re-running-out-of-ipv4-addresses-time-for-ipv6/Doug's AppleScripts for iTuneshttps://www.rfc1437.de/2008/08/15/doug-s-applescripts-for-itunes/Django on Jython: It''s here!https://www.rfc1437.de/2008/08/14/django-on-jython-it-s-here/Advertising and Privacy – Google Privacy Centerhttps://www.rfc1437.de/2008/08/08/advertising-and-privacy-google-privacy-center/Edge Cases are the Root of all Evilhttps://www.rfc1437.de/2008/08/08/edge-cases-are-the-root-of-all-evil/Network Advertising Initiativehttps://www.rfc1437.de/2008/08/08/network-advertising-initiative/Pentagon will offenbar Guantanamo-Freisprüche ignorierenhttps://www.rfc1437.de/2008/08/06/pentagon-will-offenbar-guantanamo-freisprueche/Kabinettsbeschluss: Hohe Strafen für illegale Telefonwerbunghttps://www.rfc1437.de/2008/07/30/kabinettsbeschluss-hohe-strafen-fuer-illegale/Keine Rundfunkgebühr für PC in Anwaltskanzleihttps://www.rfc1437.de/2008/07/29/keine-rundfunkgebuehr-fuer-pc-in-anwaltskanzlei/Bundesrechnungshof kritisiert Arbeit der Jobcenterhttps://www.rfc1437.de/2008/07/25/bundesrechnungshof-kritisiert-arbeit-der-jobcenter/Here We Go Again: Yahoo! Music Throws Away the DRM Keyshttps://www.rfc1437.de/2008/07/25/here-we-go-again-yahoo-music-throws-away-the-drm/The Death of Google's Patents?https://www.rfc1437.de/2008/07/25/the-death-of-google-s-patents/Erlang GS Explorations - Organized by Doug Edmundshttps://www.rfc1437.de/2008/07/24/erlang-gs-explorations-organized-by-doug-edmunds/Fahrer in der EPO-Fallehttps://www.rfc1437.de/2008/07/23/fahrer-in-der-epo-falle/Method and apparatus for creation and maintenance of database structurehttps://www.rfc1437.de/2008/07/23/method-and-apparatus-for-creation-and-maintenance/Methods for tying knots in ropeshttps://www.rfc1437.de/2008/07/23/methods-for-tying-knots-in-ropes/Objective Caml Plugin for Xcodehttps://www.rfc1437.de/2008/07/23/objective-caml-plugin-for-xcode/Tetrishttps://www.rfc1437.de/2008/07/23/tetris/Park Placehttps://www.rfc1437.de/2008/07/21/park-place/Technical: mw2html -- Export Mediawiki to static, traditional websitehttps://www.rfc1437.de/2008/07/21/technical-mw2html-export-mediawiki-to-static/Wikipedia Webservicehttps://www.rfc1437.de/2008/07/21/wikipedia-webservice/Radlern drohen Unfruchtbarkeit und Impotenzhttps://www.rfc1437.de/2008/07/19/radlern-drohen-unfruchtbarkeit-und-impotenz/Bushido gewinnt vor Gericht gegen drei Rentnerhttps://www.rfc1437.de/2008/07/17/bushido-gewinnt-vor-gericht-gegen-drei-rentner/„Das sind Drückermanieren“https://www.rfc1437.de/2008/07/16/das-sind-drueckermanieren/My Code Blog: ICFP Contest 2008https://www.rfc1437.de/2008/07/16/my-code-blog-icfp-contest-2008/Postgres-R: a database replication system for PostgreSQLhttps://www.rfc1437.de/2008/07/16/postgres-r-a-database-replication-system-for/SPD macht Weg für sensiblen Datenaustausch mit den USA freihttps://www.rfc1437.de/2008/07/15/spd-macht-weg-fuer-sensiblen-datenaustausch-mit/5 reasons to avoid iPhone 3Ghttps://www.rfc1437.de/2008/07/14/5-reasons-to-avoid-iphone-3g/Energie-Sozialtarife: Bundespresseamt räumt Fehler einhttps://www.rfc1437.de/2008/07/14/energie-sozialtarife-bundespresseamt-raeumt/Official Google Mobile Blog: Searching on an iPhone can be funhttps://www.rfc1437.de/2008/07/14/official-google-mobile-blog-searching-on-an/Squeak by Examplehttps://www.rfc1437.de/2008/07/14/squeak-by-example/T-Mobile will VoIP-Programm für iPhone verbietenhttps://www.rfc1437.de/2008/07/14/t-mobile-will-voip-programm-fuer-iphone-verbieten/The Omni Group - Developer - Source Codehttps://www.rfc1437.de/2008/07/14/the-omni-group-developer-source-code/Étoiléhttps://www.rfc1437.de/2008/07/14/toil/Datenschützer: Google Analytics verletzt Nutzerrechtehttps://www.rfc1437.de/2008/07/09/datenschuetzer-google-analytics-verletzt/Erster Avatar-Teleport von Second Life zu OpenSimhttps://www.rfc1437.de/2008/07/09/erster-avatar-teleport-von-second-life-zu-opensim/Livelyhttps://www.rfc1437.de/2008/07/09/lively/Massives DNS-Sicherheitsproblem gefährdet das Internethttps://www.rfc1437.de/2008/07/09/massives-dns-sicherheitsproblem-gefaehrdet-das/Second Life kontert Googles Livelyhttps://www.rfc1437.de/2008/07/09/second-life-kontert-googles-lively/VMware tauscht CEO aushttps://www.rfc1437.de/2008/07/09/vmware-tauscht-ceo-aus/Apple just gave out my Apple ID password because someone askedhttps://www.rfc1437.de/2008/07/08/apple-just-gave-out-my-apple-id-password-because/Protocol Buffers: Google''s Data Interchange Formathttps://www.rfc1437.de/2008/07/08/protocol-buffers-google-s-data-interchange-format/PostgreSQL Gets Religion About Replicationhttps://www.rfc1437.de/2008/07/07/postgresql-gets-religion-about-replication/Court Ruling Will Expose Viewing Habits of YouTube Usershttps://www.rfc1437.de/2008/07/03/court-ruling-will-expose-viewing-habits-of/Drobohttps://www.rfc1437.de/2008/07/03/drobo/Google Talk for the iPhonehttps://www.rfc1437.de/2008/07/03/google-talk-for-the-iphone/Kartellamt durchsucht bundesweit Kaffee-Produzentenhttps://www.rfc1437.de/2008/07/03/kartellamt-durchsucht-bundesweit-kaffee/Phone Smart - Cellphone Termination Fees Seem to Be on the Way Outhttps://www.rfc1437.de/2008/07/03/phone-smart-cellphone-termination-fees-seem-to-be/Python Underscore Methodshttps://www.rfc1437.de/2008/07/03/python-underscore-methods/Steinbrück: Harte Worte gegen Kindergelderhöhunghttps://www.rfc1437.de/2008/07/03/steinbrueck-harte-worte-gegen-kindergelderhoehung/Watermelon Found to Have a Viagra effecthttps://www.rfc1437.de/2008/07/03/watermelon-found-to-have-a-viagra-effect/New law says computer repair guys in Texas must also be licensed private investigators!!!https://www.rfc1437.de/2008/07/02/new-law-says-computer-repair-guys-in-texas-must/T-Mobile Abzockerhttps://www.rfc1437.de/2008/07/02/t-mobile-abzocker/Nikon D700 Hands-on Previewhttps://www.rfc1437.de/2008/07/01/nikon-d700-hands-on-preview/Cocoa on the web: 280 North, Objective-J, and Cappuccinohttps://www.rfc1437.de/2008/06/30/cocoa-on-the-web-280-north-objective-j-and/NNDB Mapper: Tracking the entire worldhttps://www.rfc1437.de/2008/06/30/nndb-mapper-tracking-the-entire-world/Seltsame Praxis bei Handyaltvertragshandelsportalhttps://www.rfc1437.de/2008/06/30/seltsame-praxis-bei-handyaltvertragshandelsportal/Studie: Rauchverbot in England verhindert 40.000 Todesfällehttps://www.rfc1437.de/2008/06/30/studie-rauchverbot-in-england-verhindert-40-000/Wee Westernshttps://www.rfc1437.de/2008/06/30/wee-westerns/WikidBASEhttps://www.rfc1437.de/2008/06/30/wikidbase/Datenschacher mit dem FBIhttps://www.rfc1437.de/2008/06/29/datenschacher-mit-dem-fbi/ICANN und IANA Defacementshttps://www.rfc1437.de/2008/06/29/icann-und-iana-defacements/Graphitehttps://www.rfc1437.de/2008/06/28/graphite/iPhone 3G: T-Mobile verspricht unbegrenzte VPN-Nutzunghttps://www.rfc1437.de/2008/06/28/iphone-3g-t-mobile-verspricht-unbegrenzte-vpn/AVG ist ne Schweinesoftwarehttps://www.rfc1437.de/2008/06/27/avg-ist-ne-schweinesoftware/Chuck Moore's Wonderful colorForth Programming Language and Operating Systemhttps://www.rfc1437.de/2008/06/27/chuck-moore-s-wonderful-colorforth-programming/Keylogger in JavaScript mit IE bis Version 8betahttps://www.rfc1437.de/2008/06/27/keylogger-in-javascript-mit-ie-bis-version-8beta/«So kann man mit Atommüll nicht umgehen»https://www.rfc1437.de/2008/06/27/so-kann-man-mit-atommuell-nicht-umgehen/The A-Z of Programming Languages: Forthhttps://www.rfc1437.de/2008/06/27/the-a-z-of-programming-languages-forth/Amphibious Robot Snake (Video)https://www.rfc1437.de/2008/06/26/amphibious-robot-snake-video/It''s L-i-n-u-x, that is an Operating Systemhttps://www.rfc1437.de/2008/06/26/it-s-l-i-n-u-x-that-is-an-operating-system/OmniFocus for iPhone and iPod touchhttps://www.rfc1437.de/2008/06/26/omnifocus-for-iphone-and-ipod-touch/One Man, One Long List, No More Web Adshttps://www.rfc1437.de/2008/06/26/one-man-one-long-list-no-more-web-ads/Perfect multi-column CSS liquid layouts - iPhone compatiblehttps://www.rfc1437.de/2008/06/26/perfect-multi-column-css-liquid-layouts-iphone/Ruinen von Babylon durch Irakkrieg irreparabel beschädigthttps://www.rfc1437.de/2008/06/26/ruinen-von-babylon-durch-irakkrieg-irreparabel/Ströbele verlässt BND-Ausschuss zeitweilig | tagesschau.dehttps://www.rfc1437.de/2008/06/26/stroebele-verlaesst-bnd-ausschuss-zeitweilig/The Floating Boxes CSS Layouthttps://www.rfc1437.de/2008/06/26/the-floating-boxes-css-layout/Abhörwahn in Berlinhttps://www.rfc1437.de/2008/06/25/abhoerwahn-in-berlin/Arbeitslosengeld ab 2012 nur noch mit Chipkartehttps://www.rfc1437.de/2008/06/25/arbeitslosengeld-ab-2012-nur-noch-mit-chipkarte/Front Range Pythoneering: Flipping the 2.5 Bit for Jythonhttps://www.rfc1437.de/2008/06/25/front-range-pythoneering-flipping-the-2-5-bit-for/White House Refused to Open Pollutants E-Mailhttps://www.rfc1437.de/2008/06/25/white-house-refused-to-open-pollutants-e-mail/Politische Datenbank - Parteienfinanzierung - Parteispenden - Parteifinanzierunghttps://www.rfc1437.de/2008/06/24/politische-datenbank-parteienfinanzierung/Symbian soll Open Source werdenhttps://www.rfc1437.de/2008/06/24/symbian-soll-open-source-werden/Amazon EC2 Basics For Python Programmershttps://www.rfc1437.de/2008/06/23/amazon-ec2-basics-for-python-programmers/Einzelhandel wird beklauthttps://www.rfc1437.de/2008/06/23/einzelhandel-wird-beklaut/Interview: "Öl-Spekulanten sind keine Preistreiber"https://www.rfc1437.de/2008/06/23/interview-oel-spekulanten-sind-keine-preistreiber/More: Systems Programming with PLT Schemehttps://www.rfc1437.de/2008/06/23/more-systems-programming-with-plt-scheme/Nokia kauft Plazeshttps://www.rfc1437.de/2008/06/23/nokia-kauft-plazes/Olympus E-420 Reviewhttps://www.rfc1437.de/2008/06/23/olympus-e-420-review/Olympus Zuiko Digital 25mm 1:2.8 Lens Reviewhttps://www.rfc1437.de/2008/06/23/olympus-zuiko-digital-25mm-1-2-8-lens-review/Python Cookbook, 2nd Editionhttps://www.rfc1437.de/2008/06/23/python-cookbook-2nd-edition/Ravelry - a knit and crochet communityhttps://www.rfc1437.de/2008/06/23/ravelry-a-knit-and-crochet-community/screamyGuy - Random Acts of Programminghttps://www.rfc1437.de/2008/06/23/screamyguy-random-acts-of-programming/Telekom hörte mutmaßliche Hacker abhttps://www.rfc1437.de/2008/06/21/telekom-hoerte-mutmassliche-hacker-ab/Aquamacs: Emacs for Mac OS Xhttps://www.rfc1437.de/2008/06/20/aquamacs-emacs-for-mac-os-x/Alte Google Mail Domain in Deutschland verbotenhttps://www.rfc1437.de/2008/06/19/alte-google-mail-domain-in-deutschland-verboten/klassische Ermittlung halt doch besser als Massentestshttps://www.rfc1437.de/2008/06/19/klassische-ermittlung-halt-doch-besser-als/The Mundaneum Museum Honors the First Concept of the World Wide Webhttps://www.rfc1437.de/2008/06/17/the-mundaneum-museum-honors-the-first-concept-of/Olympus LS-10 digitaler Recorderhttps://www.rfc1437.de/2008/06/16/olympus-ls-10-digitaler-recorder/Fan Programming Languagehttps://www.rfc1437.de/2008/06/13/fan-programming-language/PLT Scheme Bloghttps://www.rfc1437.de/2008/06/13/plt-scheme-blog/Squeak on the iPhone!https://www.rfc1437.de/2008/06/12/squeak-on-the-iphone/Alice.orghttps://www.rfc1437.de/2008/06/11/alice-org/AVOX Antares Vocal Toolkithttps://www.rfc1437.de/2008/06/11/avox-antares-vocal-toolkit/Lunatic Pythonhttps://www.rfc1437.de/2008/06/11/lunatic-python/90% of Enviro Skeptic Books Have Think Tank Rootshttps://www.rfc1437.de/2008/06/09/90-of-enviro-skeptic-books-have-think-tank-roots/A Spellchecker Used to Be a Major Feat of Software Engineeringhttps://www.rfc1437.de/2008/06/09/a-spellchecker-used-to-be-a-major-feat-of/Algorithmic Botany: Publicationshttps://www.rfc1437.de/2008/06/09/algorithmic-botany-publications/Cog Bloghttps://www.rfc1437.de/2008/06/09/cog-blog/Factor: a practical stack language:https://www.rfc1437.de/2008/06/09/factor-a-practical-stack-language/Fractured YEARFRAC and Discounted DISChttps://www.rfc1437.de/2008/06/09/fractured-yearfrac-and-discounted-disc/TileStack - Your Creative Playgroundhttps://www.rfc1437.de/2008/06/09/tilestack-your-creative-playground/"An Exotic Matter"https://www.rfc1437.de/2008/06/06/an-exotic-matter/Anne gegen den politischen Willenhttps://www.rfc1437.de/2008/06/06/anne-gegen-den-politischen-willen/Introducing Gmail Labshttps://www.rfc1437.de/2008/06/06/introducing-gmail-labs/Regierung will persönliche Bürgerdaten an die USA liefernhttps://www.rfc1437.de/2008/06/06/regierung-will-persoenliche-buergerdaten-an-die/Toy Scheme interpreter in Jhttps://www.rfc1437.de/2008/06/06/toy-scheme-interpreter-in-j/Zukunft - nichts als ein großer Spaß | tagesschau.dehttps://www.rfc1437.de/2008/06/06/zukunft-nichts-als-ein-grosser-spass-tagesschau-de/ruby-processinghttps://www.rfc1437.de/2008/06/05/ruby-processing/The Lew Languagehttps://www.rfc1437.de/2008/06/05/the-lew-language/PLT Scheme version 4.0 is Coming Soonhttps://www.rfc1437.de/2008/06/04/plt-scheme-version-4-0-is-coming-soon/Kalte Platte bei Kerzenscheinhttps://www.rfc1437.de/2008/06/03/kalte-platte-bei-kerzenschein/Dive Into Greasemonkeyhttps://www.rfc1437.de/2008/06/02/dive-into-greasemonkey/django-ae-utilshttps://www.rfc1437.de/2008/06/02/django-ae-utils/flickrfshttps://www.rfc1437.de/2008/06/02/flickrfs/Google will doch nur spielenhttps://www.rfc1437.de/2008/06/02/google-will-doch-nur-spielen/goosh.org - the unofficial google shell.https://www.rfc1437.de/2008/06/02/goosh-org-the-unofficial-google-shell/RetroShare: a secure combined file sharing-Chat-IM F2F servicehttps://www.rfc1437.de/2008/06/02/retroshare-a-secure-combined-file-sharing-chat-im/RWE will Kunden reinen Atomstrom-Tarif anbietenhttps://www.rfc1437.de/2008/06/02/rwe-will-kunden-reinen-atomstrom-tarif-anbieten/Arbeitgeber drohen mit Klage gegen Lohnnebenkostenhttps://www.rfc1437.de/2008/06/01/arbeitgeber-drohen-mit-klage-gegen-lohnnebenkosten/Conway's Game of Life in one line of APLhttps://www.rfc1437.de/2008/05/30/conway-s-game-of-life-in-one-line-of-apl/no-racism.net: Presseerklärung der Rechtshilfe zur Repressionswellehttps://www.rfc1437.de/2008/05/30/no-racism-net-presseerklaerung-der-rechtshilfe/Revision3 DOShttps://www.rfc1437.de/2008/05/30/revision3-dos/Best. Image. Ever.https://www.rfc1437.de/2008/05/26/best-image-ever/Cocoa Text Systemhttps://www.rfc1437.de/2008/05/26/cocoa-text-system/impromptuhttps://www.rfc1437.de/2008/05/26/impromptu/TP: Opfer auf dem Altar der Einheitlichkeithttps://www.rfc1437.de/2008/05/26/tp-opfer-auf-dem-altar-der-einheitlichkeit/Amazon byteflow: Hgshelvehttps://www.rfc1437.de/2008/05/19/amazon-byteflow-hgshelve/Yhc/Erlang/Proof of concepthttps://www.rfc1437.de/2008/05/19/yhc-erlang-proof-of-concept/Endgültiges Aus für Wahlcomputer in den Niederlanden - Golem.dehttps://www.rfc1437.de/2008/05/18/endgueltiges-aus-fuer-wahlcomputer-in-den/Radius Hornethttps://www.rfc1437.de/2008/05/18/radius-hornet/Sic Transit Gloria Laptopihttps://www.rfc1437.de/2008/05/17/sic-transit-gloria-laptopi/Consequences of the SSH/SSL weaknesshttps://www.rfc1437.de/2008/05/15/consequences-of-the-ssh-ssl-weakness/Debian OpenSSL Predictable PRNG Toyshttps://www.rfc1437.de/2008/05/15/debian-openssl-predictable-prng-toys/Fragwürdige Risikobewertung: Ist Gen-Futter gefährlich?https://www.rfc1437.de/2008/05/15/fragwuerdige-risikobewertung-ist-gen-futter/Getting Started with Processing.jshttps://www.rfc1437.de/2008/05/15/getting-started-with-processing-js/Google Doctypehttps://www.rfc1437.de/2008/05/15/google-doctype/Lilyhttps://www.rfc1437.de/2008/05/15/lily/Nudibranchshttps://www.rfc1437.de/2008/05/15/nudibranchs/processing.appjet.nethttps://www.rfc1437.de/2008/05/15/processing-appjet-net/Some Chrome For Pjshttps://www.rfc1437.de/2008/05/15/some-chrome-for-pjs/The Bla Pagehttps://www.rfc1437.de/2008/05/15/the-bla-page/Debian and OpenSSL: The Aftermathhttps://www.rfc1437.de/2008/05/14/debian-and-openssl-the-aftermath/Panoramafreiheit in Gefahrhttps://www.rfc1437.de/2008/05/14/panoramafreiheit-in-gefahr/Vendors Are Bad For Securityhttps://www.rfc1437.de/2008/05/14/vendors-are-bad-for-security/Wallraff deckt Missstände in Brotfabrik aufhttps://www.rfc1437.de/2008/05/14/wallraff-deckt-missstaende-in-brotfabrik-auf/Injektion gegen Lähmunghttps://www.rfc1437.de/2008/05/13/injektion-gegen-laehmung/Kameliahttps://www.rfc1437.de/2008/05/13/kamelia/pg8000 -- pure-Python PostgreSQL interface (w/ DBAPI 2.0 interface, no external dependencies)https://www.rfc1437.de/2008/05/13/pg8000-pure-python-postgresql-interface-w-dbapi-2/US-Offizier will Abschreckung im Cyberspacehttps://www.rfc1437.de/2008/05/13/us-offizier-will-abschreckung-im-cyberspace/Why your internet experience is slowhttps://www.rfc1437.de/2008/05/13/why-your-internet-experience-is-slow/Eine gewisse Schamlosigkeithttps://www.rfc1437.de/2008/05/09/eine-gewisse-schamlosigkeit/fseventerhttps://www.rfc1437.de/2008/05/09/fseventer/Münster steht kurz stillhttps://www.rfc1437.de/2008/05/09/muenster-steht-kurz-still/Taskpaperhttps://www.rfc1437.de/2008/05/09/taskpaper/Wurde Schrottbeton im Kernkraftwerk verbaut?https://www.rfc1437.de/2008/05/09/wurde-schrottbeton-im-kernkraftwerk-verbaut/hacksector.cc als Musterfall für § 202 c?https://www.rfc1437.de/2008/05/07/hacksector-cc-als-musterfall-fuer-202-c/Phisher gehen mit Vorladungen auf Walfanghttps://www.rfc1437.de/2008/05/07/phisher-gehen-mit-vorladungen-auf-walfang/SCM Integration Scriptshttps://www.rfc1437.de/2008/05/07/scm-integration-scripts/Telekom-Chef sieht Managerbezüge als angemessen anhttps://www.rfc1437.de/2008/05/07/telekom-chef-sieht-managerbezuege-als-angemessen/Sneaking Ruby Through Google App Engine (and Other Strictly Python Places)https://www.rfc1437.de/2008/05/06/sneaking-ruby-through-google-app-engine-and-other/vi in javascripthttps://www.rfc1437.de/2008/05/06/vi-in-javascript/Announcing Teh - the minimalist blog tool using Google App Enginehttps://www.rfc1437.de/2008/05/05/announcing-teh-the-minimalist-blog-tool-using/Fraghttps://www.rfc1437.de/2008/05/05/frag/Magmahttps://www.rfc1437.de/2008/05/05/magma/Ready Lisp: Common Lisp for Mac OS Xhttps://www.rfc1437.de/2008/05/05/ready-lisp-common-lisp-for-mac-os-x/DAZ Productions Hexagon 2.5https://www.rfc1437.de/2008/05/02/daz-productions-hexagon-2-5/GreaseKit - User Scripting for all WebKit applicationshttps://www.rfc1437.de/2008/05/02/greasekit-user-scripting-for-all-webkit/Mailplanehttps://www.rfc1437.de/2008/05/02/mailplane/Neue Version von VirtualBox läuft auch unter Mac OS X und Solaris (Update)https://www.rfc1437.de/2008/05/02/neue-version-von-virtualbox-laeuft-auch-unter-mac/TidBITS Entertainment: Thank You for Not Playing: Microsoft Expires Future Playback of DRM-Protected Musichttps://www.rfc1437.de/2008/05/02/tidbits-entertainment-thank-you-for-not-playing/Your personal data just got permanently cached at the US borderhttps://www.rfc1437.de/2008/05/02/your-personal-data-just-got-permanently-cached-at/How do I delete my Facebook accounthttps://www.rfc1437.de/2008/05/01/how-do-i-delete-my-facebook-account/USBOverdrivehttps://www.rfc1437.de/2008/04/28/usboverdrive/Limp: When You Need More Than Just a Lisphttps://www.rfc1437.de/2008/04/27/limp-when-you-need-more-than-just-a-lisp/Verlogenes Getue gegen Internetzensurhttps://www.rfc1437.de/2008/04/26/verlogenes-getue-gegen-internetzensur/Victorian All-in-One PChttps://www.rfc1437.de/2008/04/25/victorian-all-in-one-pc/Geplantes BKA-Gesetz Die Lidlisierung des Rechtshttps://www.rfc1437.de/2008/04/21/geplantes-bka-gesetz-die-lidlisierung-des-rechts/Programming Languages: Application and Interpretation by Shriram Krishnamurthihttps://www.rfc1437.de/2008/04/21/programming-languages-application-and/RFID System Mifare Classic geknackt?https://www.rfc1437.de/2008/04/21/rfid-system-mifare-classic-geknackt/BBC - Radio 4 - The Hitchhiker's Guide to the Galaxyhttps://www.rfc1437.de/2008/04/18/bbc-radio-4-the-hitchhiker-s-guide-to-the-galaxy/Milliways: Infocom's Unreleased Sequel to Hitchhiker's Guide to the Galaxy - Waxy.orghttps://www.rfc1437.de/2008/04/18/milliways-infocom-s-unreleased-sequel-to/Nikon D3 Reviewhttps://www.rfc1437.de/2008/04/18/nikon-d3-review/Stundenlöhne unter fünf Euro bruttohttps://www.rfc1437.de/2008/04/18/stundenloehne-unter-fuenf-euro-brutto/The Flying Meat Wiki: Acornhttps://www.rfc1437.de/2008/04/18/the-flying-meat-wiki-acorn/The Flying Meat Wiki: VoodooPadhttps://www.rfc1437.de/2008/04/18/the-flying-meat-wiki-voodoopad/AS3 Flash Physics Engine Box2DFlashAS3 2.0.0https://www.rfc1437.de/2008/04/17/as3-flash-physics-engine-box2dflashas3-2-0-0/Breaking News for sky afficionados: Apophis risk not increasedhttps://www.rfc1437.de/2008/04/17/breaking-news-for-sky-afficionados-apophis-risk/Infektionswerkzeug für SQL-Server und IIShttps://www.rfc1437.de/2008/04/17/infektionswerkzeug-fuer-sql-server-und-iis/Kirchliche Arbeitgeber wollen keinen Mindestlohnhttps://www.rfc1437.de/2008/04/17/kirchliche-arbeitgeber-wollen-keinen-mindestlohn/Lighthousehttps://www.rfc1437.de/2008/04/17/lighthouse/NASA Extends Saturn Mission for Another 2 Yearshttps://www.rfc1437.de/2008/04/17/nasa-extends-saturn-mission-for-another-2-years/Port Map and TCMPortMapperhttps://www.rfc1437.de/2008/04/17/port-map-and-tcmportmapper/Sleep - Java Scripting Languagehttps://www.rfc1437.de/2008/04/17/sleep-java-scripting-language/The iPhone SDK and free software: not a matchhttps://www.rfc1437.de/2008/04/17/the-iphone-sdk-and-free-software-not-a-match/Amazon Web Services Blog: Storage Space, The Final Frontierhttps://www.rfc1437.de/2008/04/14/amazon-web-services-blog-storage-space-the-final/CHDK in Briefhttps://www.rfc1437.de/2008/04/14/chdk-in-brief/Gericht: Anzeige von Thumbnails bei Suchmaschinen rechtswidrighttps://www.rfc1437.de/2008/04/14/gericht-anzeige-von-thumbnails-bei-suchmaschinen/Latest Advance in Artificial Intelligence: Computer Wins a Game Against a Go Masterhttps://www.rfc1437.de/2008/04/14/latest-advance-in-artificial-intelligence/SeasideXULhttps://www.rfc1437.de/2008/04/14/seasidexul/ARD und ZDF: Zurück ins Mittelalter?https://www.rfc1437.de/2008/04/11/ard-und-zdf-zurueck-ins-mittelalter/Digging into Factor’s compilerhttps://www.rfc1437.de/2008/04/11/digging-into-factor-s-compiler/Filesharing wird gefährlicher - oder auch nichthttps://www.rfc1437.de/2008/04/11/filesharing-wird-gefaehrlicher-oder-auch-nicht/GitHubhttps://www.rfc1437.de/2008/04/11/github/Google App Engine for developershttps://www.rfc1437.de/2008/04/11/google-app-engine-for-developers/Network Solutions: Not Just Thieves and Hijackers, Now Using Tactics That Can Get Your Site Banned From Googlehttps://www.rfc1437.de/2008/04/11/network-solutions-not-just-thieves-and-hijackers/Strange TCP-networking problems with Mac OS X 10.4 and Solaris 10https://www.rfc1437.de/2008/04/11/strange-tcp-networking-problems-with-mac-os-x-10/Unicode 5.1 enthält ß als Großbuchstabenhttps://www.rfc1437.de/2008/04/11/unicode-5-1-enthaelt-ss-als-grossbuchstaben/Google App Enginehttps://www.rfc1437.de/2008/04/09/google-app-engine/The world in virtual reality, VR city maps. 360 Cities. Prague, Moscow, Vancouver, Venice, London, Tokyo, Hong Kong, Vienna, Taipei, Seoul, L.A., Egypt, and many more....https://www.rfc1437.de/2008/04/04/the-world-in-virtual-reality-vr-city-maps-360/Der neue Geschäftsplan von SCO stösst schon im Vorfeld auf Ablehnunghttps://www.rfc1437.de/2008/04/03/der-neue-geschaeftsplan-von-sco-stoesst-schon-im/Magentahttps://www.rfc1437.de/2008/04/03/magenta/Pydevhttps://www.rfc1437.de/2008/04/03/pydev/Pydev Extensionshttps://www.rfc1437.de/2008/04/03/pydev-extensions/ral 4010 bf1773 - Google Searchhttps://www.rfc1437.de/2008/04/03/ral-4010-bf1773-google-search/ral 4010 C03F7D - Google Searchhttps://www.rfc1437.de/2008/04/03/ral-4010-c03f7d-google-search/Telekom Farbverwendunghttps://www.rfc1437.de/2008/04/03/telekom-farbverwendung/The Diaries of John Quincy Adams: A Digital Collectionhttps://www.rfc1437.de/2008/04/03/the-diaries-of-john-quincy-adams-a-digital/Thompson Rivers University Owlcamhttps://www.rfc1437.de/2008/04/03/thompson-rivers-university-owlcam/Towers of Hanoihttps://www.rfc1437.de/2008/04/03/towers-of-hanoi/Interview: "Die Bankenaufsicht hat versagt und ist überflüssig"https://www.rfc1437.de/2008/04/02/interview-die-bankenaufsicht-hat-versagt-und-ist/iTunes jetzt mit TV-Inhalten auch in Deutschlandhttps://www.rfc1437.de/2008/04/02/itunes-jetzt-mit-tv-inhalten-auch-in-deutschland/Kassenpatienten müssen länger auf Facharzttermine wartenhttps://www.rfc1437.de/2008/04/01/kassenpatienten-muessen-laenger-auf/Norway seeks to reverse Open XML vote at ISOhttps://www.rfc1437.de/2008/04/01/norway-seeks-to-reverse-open-xml-vote-at-iso/OOXML: Warten auf die ISO-Entscheidunghttps://www.rfc1437.de/2008/04/01/ooxml-warten-auf-die-iso-entscheidung/Python processinghttps://www.rfc1437.de/2008/04/01/python-processing/Türkei: Präsident und Premier müssen vor Gerichthttps://www.rfc1437.de/2008/04/01/tuerkei-praesident-und-premier-muessen-vor-gericht/CCC publiziert Schäubles Fingerabdruckhttps://www.rfc1437.de/2008/03/31/ccc-publiziert-schaeubles-fingerabdruck/cusphttps://www.rfc1437.de/2008/03/28/cusp/DIN sagt "Ja" zur ISO-Standardisierung von OOXMLhttps://www.rfc1437.de/2008/03/28/din-sagt-ja-zur-iso-standardisierung-von-ooxml/LispWithCusphttps://www.rfc1437.de/2008/03/28/lispwithcusp/TDD Proven Effective! Or is it?https://www.rfc1437.de/2008/03/28/tdd-proven-effective-or-is-it/Usability problems with .Mac synchttps://www.rfc1437.de/2008/03/28/usability-problems-with-mac-sync/SAP ist Müllhttps://www.rfc1437.de/2008/03/27/sap-ist-muell/Transrapid-Flop: Stoiber verwundert - Maget hämischhttps://www.rfc1437.de/2008/03/27/transrapid-flop-stoiber-verwundert-maget-haemisch/Spirit darf weiter den Mars erkundenhttps://www.rfc1437.de/2008/03/26/spirit-darf-weiter-den-mars-erkunden/Mars-Roboter Spirit wird stillgelegt?https://www.rfc1437.de/2008/03/25/mars-roboter-spirit-wird-stillgelegt/South Park Studioshttps://www.rfc1437.de/2008/03/25/south-park-studios/MCL 5.2 has been released as open sourcehttps://www.rfc1437.de/2008/03/22/mcl-5-2-has-been-released-as-open-source/After Security Update today: "Bus ...https://www.rfc1437.de/2008/03/21/after-security-update-today-bus/Banken und das Webhttps://www.rfc1437.de/2008/03/21/banken-und-das-web/iTimeMachinehttps://www.rfc1437.de/2008/03/21/itimemachine/fscklog: Firmware 7.3.1 für 802.11n-AirPort Stationen: Time Machine-Backup mit AirPort Extreme [Update]https://www.rfc1437.de/2008/03/20/fscklog-firmware-7-3-1-fuer-802-11n-airport/Rätsel um Saint-Exupéry gelöst?: „Ich bedauere es zutiefst, den verehrten Autor getötet zu haben“https://www.rfc1437.de/2008/03/18/raetsel-um-saint-exup-ry-geloest-ich-bedauere-es/Panda3d full featured open source python 3d enginehttps://www.rfc1437.de/2008/03/17/panda3d-full-featured-open-source-python-3d-engine/This is The End My Friend: Negroponte Says XP on XO in 60 Dayshttps://www.rfc1437.de/2008/03/17/this-is-the-end-my-friend-negroponte-says-xp-on/Ur-Scheme: A GPL self-hosting compiler from a subset of R5RS Scheme to fast Linux x86 asmhttps://www.rfc1437.de/2008/03/17/ur-scheme-a-gpl-self-hosting-compiler-from-a/Building a Codeless Language Module with BBEdit 8.5 and (Ir-)Regular Expressionshttps://www.rfc1437.de/2008/03/15/building-a-codeless-language-module-with-bbedit-8/Jill Bolte Taylor: My stroke of insight (video)https://www.rfc1437.de/2008/03/15/jill-bolte-taylor-my-stroke-of-insight-video/Hacking implanted defibrillators: shockingly easyhttps://www.rfc1437.de/2008/03/13/hacking-implanted-defibrillators-shockingly-easy/Wie Hessens Landeschef weiterregieren kann: Für immer Kochhttps://www.rfc1437.de/2008/03/13/wie-hessens-landeschef-weiterregieren-kann-fuer/MidiKeyshttps://www.rfc1437.de/2008/03/09/midikeys/NodeBox | Superfoliahttps://www.rfc1437.de/2008/03/09/nodebox-superfolia/Why is 37signals so arrogant?https://www.rfc1437.de/2008/03/09/why-is-37signals-so-arrogant/Fluid - Free Site Specific Browser for Mac OS X Leopardhttps://www.rfc1437.de/2008/03/08/fluid-free-site-specific-browser-for-mac-os-x/Prismhttps://www.rfc1437.de/2008/03/08/prism/Grenzen des Wissens Wir gegen die Gierhttps://www.rfc1437.de/2008/03/07/grenzen-des-wissens-wir-gegen-die-gier/iPhone Developer Program Detailshttps://www.rfc1437.de/2008/03/07/iphone-developer-program-details/Seaside development with GNU Smalltalkhttps://www.rfc1437.de/2008/03/07/seaside-development-with-gnu-smalltalk/The Secret Diary of Steve Jobs: Happy now, bitches?https://www.rfc1437.de/2008/03/07/the-secret-diary-of-steve-jobs-happy-now-bitches/Materialized Views in PostgreSQLhttps://www.rfc1437.de/2008/03/05/materialized-views-in-postgresql/Das RIPE analysiert das Youtube-Hijackinghttps://www.rfc1437.de/2008/03/03/das-ripe-analysiert-das-youtube-hijacking/Programming Nuhttps://www.rfc1437.de/2008/03/03/programming-nu/BKA Chef voll abgedrehthttps://www.rfc1437.de/2008/03/02/bka-chef-voll-abgedreht/PyGUIhttps://www.rfc1437.de/2008/03/02/pygui/vimperatorhttps://www.rfc1437.de/2008/03/02/vimperator/PyInjector - embed Python interpreter and object browser in Cocoa appshttps://www.rfc1437.de/2008/03/01/pyinjector-embed-python-interpreter-and-object/Abramowitz and Stegun: Handbook of Mathematical Functionshttps://www.rfc1437.de/2008/02/29/abramowitz-and-stegun-handbook-of-mathematical/Changeshttps://www.rfc1437.de/2008/02/29/changes/Flying Meat: Acornhttps://www.rfc1437.de/2008/02/29/flying-meat-acorn/iMaginatorhttps://www.rfc1437.de/2008/02/29/imaginator/Special report: Fixing short iPhone battery lifehttps://www.rfc1437.de/2008/02/29/special-report-fixing-short-iphone-battery-life/The Truth About Autism: Scientists Reconsider What They Think They Knowhttps://www.rfc1437.de/2008/02/29/the-truth-about-autism-scientists-reconsider-what/vi & TextMate together at lasthttps://www.rfc1437.de/2008/02/29/vi-textmate-together-at-last/ANT (ant is not TeX)https://www.rfc1437.de/2008/02/28/ant-ant-is-not-tex/Karlsruhe lässt kaum Raum für heimliche Online-Durchsuchungenhttps://www.rfc1437.de/2008/02/27/karlsruhe-laesst-kaum-raum-fuer-heimliche-online/abyssoft teleporthttps://www.rfc1437.de/2008/02/26/abyssoft-teleport/FSClass 3.0https://www.rfc1437.de/2008/02/26/fsclass-3-0/Learn F-Script in 20 Minutes...and Have Fun Playing with Core Imagehttps://www.rfc1437.de/2008/02/26/learn-f-script-in-20-minutes-and-have-fun-playing/LEGO Universe: ''LEGO Star Wars Multiplied By A Million''https://www.rfc1437.de/2008/02/26/lego-universe-lego-star-wars-multiplied-by-a/Mathomatichttps://www.rfc1437.de/2008/02/26/mathomatic/Murphy''s Law Strikes Again: AS7007https://www.rfc1437.de/2008/02/26/murphy-s-law-strikes-again-as7007/Rope, a python refactoring library ...https://www.rfc1437.de/2008/02/26/rope-a-python-refactoring-library/Steuer-Razzien: Bisher fast hundert Geständnissehttps://www.rfc1437.de/2008/02/26/steuer-razzien-bisher-fast-hundert-gestaendnisse/Django snippets: MintCachehttps://www.rfc1437.de/2008/02/25/django-snippets-mintcache/Obsolete Skills Wiki - The more you know...https://www.rfc1437.de/2008/02/25/obsolete-skills-wiki-the-more-you-know/Cryptanalysis of A5/1https://www.rfc1437.de/2008/02/22/cryptanalysis-of-a5-1/Erlwarehttps://www.rfc1437.de/2008/02/22/erlware/memcachedbhttps://www.rfc1437.de/2008/02/22/memcachedb/New Research Result: Cold Boot Attacks on Disk Encryptionhttps://www.rfc1437.de/2008/02/22/new-research-result-cold-boot-attacks-on-disk/AquaCurryhttps://www.rfc1437.de/2008/02/19/aquacurry/djapianhttps://www.rfc1437.de/2008/02/19/djapian/Harsche Kritik aus Liechtenstein wegen Steuer-Ermittlungenhttps://www.rfc1437.de/2008/02/19/harsche-kritik-aus-liechtenstein-wegen-steuer/Mysteries of computer from 65BC are solvedhttps://www.rfc1437.de/2008/02/19/mysteries-of-computer-from-65bc-are-solved/OS 2008 Hacker Editionhttps://www.rfc1437.de/2008/02/19/os-2008-hacker-edition/Rumänische Gewerkschaft rügt Nokias "neue Form der Sklaverei"https://www.rfc1437.de/2008/02/19/rumaenische-gewerkschaft-ruegt-nokias-neue-form/Thousand Parsechttps://www.rfc1437.de/2008/02/19/thousand-parsec/chumbyhttps://www.rfc1437.de/2008/02/18/chumby/Command line Haskell and error handling exampleshttps://www.rfc1437.de/2008/02/18/command-line-haskell-and-error-handling-examples/Cooperative Linuxhttps://www.rfc1437.de/2008/02/18/cooperative-linux/Kommentar: Stasi-Äußerung für Die Linke ein Super-GAUhttps://www.rfc1437.de/2008/02/18/kommentar-stasi-aeusserung-fuer-die-linke-ein/Pisa-Verlierer sind Opfer ihres Medienkonsumshttps://www.rfc1437.de/2008/02/18/pisa-verlierer-sind-opfer-ihres-medienkonsums/Steueraffäre: Mehr Fahnder und härtere Strafen geforderthttps://www.rfc1437.de/2008/02/18/steueraffaere-mehr-fahnder-und-haertere-strafen/WiebeTech Micro Storage Solutions - HotPlug - Move a computer to battery power and transport it without ever shutting it down.https://www.rfc1437.de/2008/02/18/wiebetech-micro-storage-solutions-hotplug-move-a/Become a Mac OS X Services Ninjahttps://www.rfc1437.de/2008/02/15/become-a-mac-os-x-services-ninja/SCO vs. Linux: Klagen bis zum Ende, doch ohne Darl McBridehttps://www.rfc1437.de/2008/02/15/sco-vs-linux-klagen-bis-zum-ende-doch-ohne-darl/Zumwinkel tritt als Postchef zurückhttps://www.rfc1437.de/2008/02/15/zumwinkel-tritt-als-postchef-zurueck/Atomic Commit In SQLitehttps://www.rfc1437.de/2008/02/14/atomic-commit-in-sqlite/Astana nicht zur Tour 2008https://www.rfc1437.de/2008/02/13/astana-nicht-zur-tour-2008/Bundesregierung hält "Big-Brother-Szenarien" bei RFID für weit hergeholthttps://www.rfc1437.de/2008/02/13/bundesregierung-haelt-big-brother-szenarien-bei/LG Hamburg will umfassendere Forenhaftung bei Verwendung von Pseudonymenhttps://www.rfc1437.de/2008/02/13/lg-hamburg-will-umfassendere-forenhaftung-bei/Zypries droht Haft oder Ordnungsgeld beim Speichern von IP-Adressenhttps://www.rfc1437.de/2008/02/13/zypries-droht-haft-oder-ordnungsgeld-beim/So you’re going to write an iPhone app…https://www.rfc1437.de/2008/02/12/so-you-re-going-to-write-an-iphone-app/Caecilianhttps://www.rfc1437.de/2008/02/11/caecilian/In-Depth TimeVault Review: Backing up in Ubuntu is Finally Made Simple!!https://www.rfc1437.de/2008/02/11/in-depth-timevault-review-backing-up-in-ubuntu-is/Polaroid verabschiedet sich vom Sofortbildfilmhttps://www.rfc1437.de/2008/02/11/polaroid-verabschiedet-sich-vom-sofortbildfilm/The world''s rubbish dump: a garbage tip that stretches from Hawaii to Japanhttps://www.rfc1437.de/2008/02/11/the-world-s-rubbish-dump-a-garbage-tip-that/CamlXhttps://www.rfc1437.de/2008/02/07/camlx/FastCGI Programmer''s Guide - Chapter 2, Developing FastCGI Applications in Chttps://www.rfc1437.de/2008/02/07/fastcgi-programmer-s-guide-chapter-2-developing/Tenerife Skunkworks: Parsing text and binary files with Erlanghttps://www.rfc1437.de/2008/02/06/tenerife-skunkworks-parsing-text-and-binary-files/Developing an iPhoto export pluginhttps://www.rfc1437.de/2008/02/01/developing-an-iphoto-export-plugin/Microsoft bereitet Übernahme von Yahoo vorhttps://www.rfc1437.de/2008/02/01/microsoft-bereitet-uebernahme-von-yahoo-vor/n8gray.org: ScriptExporthttps://www.rfc1437.de/2008/02/01/n8gray-org-scriptexport/Programming Nuhttps://www.rfc1437.de/2008/02/01/programming-nu-2/real programmershttps://www.rfc1437.de/2008/02/01/real-programmers/Upload with SCPhttps://www.rfc1437.de/2008/02/01/upload-with-scp/A9.com patentiert HTTP-Redirectshttps://www.rfc1437.de/2008/01/31/a9-com-patentiert-http-redirects/Archttps://www.rfc1437.de/2008/01/31/arc/Bei Shell sprudeln die Milliardenhttps://www.rfc1437.de/2008/01/31/bei-shell-sprudeln-die-milliarden/Jython 2.5https://www.rfc1437.de/2008/01/31/jython-2-5/Paten auf mobiles Unterhaltungsgerät mit Telefonhttps://www.rfc1437.de/2008/01/31/paten-auf-mobiles-unterhaltungsgeraet-mit-telefon/Post-Konkurrenten klagen gegen den Mindestlohnhttps://www.rfc1437.de/2008/01/31/post-konkurrenten-klagen-gegen-den-mindestlohn/Sigma announces DP1 to be available spring 2008https://www.rfc1437.de/2008/01/31/sigma-announces-dp1-to-be-available-spring-2008/Allegorithmic | MaPZonehttps://www.rfc1437.de/2008/01/28/allegorithmic-mapzone/Nokia: Hinweise auf Verstoß gegen Auflagenhttps://www.rfc1437.de/2008/01/28/nokia-hinweise-auf-verstoss-gegen-auflagen/Österreichische Auskunfteien müssen Bonitätsdaten auf Wunsch löschenhttps://www.rfc1437.de/2008/01/28/oesterreichische-auskunfteien-muessen/tunneling over ICMPhttps://www.rfc1437.de/2008/01/28/tunneling-over-icmp/Wahlbeobachter in Hessenhttps://www.rfc1437.de/2008/01/28/wahlbeobachter-in-hessen/#10919 (incorrect pluralization) - Rails Trachttps://www.rfc1437.de/2008/01/25/10919-incorrect-pluralization-rails-trac/OSXCrypt.org - Truecrypt for MAChttps://www.rfc1437.de/2008/01/24/osxcrypt-org-truecrypt-for-mac/Finanzhof: Gekürzte Pendlerpauschale verfassungswidrighttps://www.rfc1437.de/2008/01/23/finanzhof-gekuerzte-pendlerpauschale/Ich mag das Internet. Und meine Gene.https://www.rfc1437.de/2008/01/23/ich-mag-das-internet-und-meine-gene/Immer noch keine Klingeltöne in Deutschlandhttps://www.rfc1437.de/2008/01/23/immer-noch-keine-klingeltoene-in-deutschland/OLG Frankfurt: Provider müssen Inhalte nicht sperrenhttps://www.rfc1437.de/2008/01/23/olg-frankfurt-provider-muessen-inhalte-nicht/an offline Wikipedia reader for the iPhonehttps://www.rfc1437.de/2008/01/22/an-offline-wikipedia-reader-for-the-iphone/Durchbruch für CC-Musikhttps://www.rfc1437.de/2008/01/22/durchbruch-fuer-cc-musik/Evolution Major Vanishes From Approved Federal Listhttps://www.rfc1437.de/2008/01/22/evolution-major-vanishes-from-approved-federal/Japan wants to fly paper plane from International Space Station to earthhttps://www.rfc1437.de/2008/01/22/japan-wants-to-fly-paper-plane-from-international/Strasheelahttps://www.rfc1437.de/2008/01/22/strasheela/Unshaking and refocusing your photoshttps://www.rfc1437.de/2008/01/22/unshaking-and-refocusing-your-photos/60.000 Dollar Strafe für DNS-Abrufhttps://www.rfc1437.de/2008/01/21/60-000-dollar-strafe-fuer-dns-abruf/"Amerikas beste Hausfrau" düpiert deutsche Digital-Lifestyle-Konferenzhttps://www.rfc1437.de/2008/01/21/amerikas-beste-hausfrau-duepiert-deutsche-digital/CDU Hessen soll interne Schulamtsdaten für Wahlwerbung genutzt habenhttps://www.rfc1437.de/2008/01/21/cdu-hessen-soll-interne-schulamtsdaten-fuer/Der Carlos-Hoaxhttps://www.rfc1437.de/2008/01/21/der-carlos-hoax/Drei Verfassungsrichter rangeln um Zuständigkeit für Vorratsdatenspeicherunghttps://www.rfc1437.de/2008/01/21/drei-verfassungsrichter-rangeln-um-zustaendigkeit/Elephants Evolve Smaller Tusks Due to Poachinghttps://www.rfc1437.de/2008/01/21/elephants-evolve-smaller-tusks-due-to-poaching/Kapitalspritze für WestLBhttps://www.rfc1437.de/2008/01/21/kapitalspritze-fuer-westlb/Mac OS X und DTracehttps://www.rfc1437.de/2008/01/21/mac-os-x-und-dtrace/SPD debattiert über Maßnahmen gegen Clementhttps://www.rfc1437.de/2008/01/21/spd-debattiert-ueber-massnahmen-gegen-clement/The Tintypeshttps://www.rfc1437.de/2008/01/21/the-tintypes/The Unburdened Mindhttps://www.rfc1437.de/2008/01/21/the-unburdened-mind/Schäuble greift Verfassungsrichter Papier scharf anhttps://www.rfc1437.de/2008/01/20/schaeuble-greift-verfassungsrichter-papier-scharf/Bundestag setzt sich für regionale Top-Level-Domains einhttps://www.rfc1437.de/2008/01/18/bundestag-setzt-sich-fuer-regionale-top-level/Innenministerium sperrt Herausgabe der Buback-Aktenhttps://www.rfc1437.de/2008/01/18/innenministerium-sperrt-herausgabe-der-buback/SPD: Entscheidung für Online-Durchsuchung ist gefallenhttps://www.rfc1437.de/2008/01/18/spd-entscheidung-fuer-online-durchsuchung-ist/EU-Abgeordneter: Provider sollen bei Urheberrechtsverstößen die Leitung kappenhttps://www.rfc1437.de/2008/01/17/eu-abgeordneter-provider-sollen-bei/FireGPG - use GPG easily in Firefox !https://www.rfc1437.de/2008/01/17/firegpg-use-gpg-easily-in-firefox/Macworld: Carl Zeiss stellt eine Videobrille für iPods vorhttps://www.rfc1437.de/2008/01/17/macworld-carl-zeiss-stellt-eine-videobrille-fuer/Navy Wins Exemption From Bush to Continue Sonar Exercises in Calif.https://www.rfc1437.de/2008/01/17/navy-wins-exemption-from-bush-to-continue-sonar/Schäubles neue Pläne empören die Oppositionhttps://www.rfc1437.de/2008/01/17/schaeubles-neue-plaene-empoeren-die-opposition/DreamHost Blog"Um, Whoops."https://www.rfc1437.de/2008/01/16/dreamhost-blog-um-whoops/Bahn kündigt nach Einigung mit GDL Stellenabbau anhttps://www.rfc1437.de/2008/01/15/bahn-kuendigt-nach-einigung-mit-gdl-stellenabbau/USA wollen mit Verbündeten internationale biometrische Datenbank einrichtenhttps://www.rfc1437.de/2008/01/15/usa-wollen-mit-verbuendeten-internationale/Airfoil 3 Spreads Music Streaming Beyond AirPort Expresshttps://www.rfc1437.de/2008/01/11/airfoil-3-spreads-music-streaming-beyond-airport/Dryadhttps://www.rfc1437.de/2008/01/11/dryad/Struck lehnt Entschuldigung bei Koch abhttps://www.rfc1437.de/2008/01/11/struck-lehnt-entschuldigung-bei-koch-ab/The Definitive Four Fours Answer Key (by David A. Wheeler)https://www.rfc1437.de/2008/01/11/the-definitive-four-fours-answer-key-by-david-a/Ver.di kündigt Funktionär, die NPD ist erfreuthttps://www.rfc1437.de/2008/01/11/ver-di-kuendigt-funktionaer-die-npd-ist-erfreut/Why Crunch Mode Doesn't Workhttps://www.rfc1437.de/2008/01/11/why-crunch-mode-doesn-t-work/Wilber loves Applehttps://www.rfc1437.de/2008/01/09/wilber-loves-apple/Rüffel für "Existenz bedrohende" Warndatei der Versicherungswirtschafthttps://www.rfc1437.de/2008/01/08/rueffel-fuer-existenz-bedrohende-warndatei-der/Valued Lessons: Monads in Python (with nice syntax!)https://www.rfc1437.de/2008/01/08/valued-lessons-monads-in-python-with-nice-syntax/At a Loss for Wordshttps://www.rfc1437.de/2008/01/07/at-a-loss-for-words/Backscatterer.org, eine weitere asoziale und technisch dumme Sperrlistehttps://www.rfc1437.de/2008/01/07/backscatterer-org-eine-weitere-asoziale-und/base2https://www.rfc1437.de/2008/01/07/base2/Dean Edwards: IE7.js version 2.0 (beta)https://www.rfc1437.de/2008/01/07/dean-edwards-ie7-js-version-2-0-beta/Kinderpornografie: Firmen sollen Festplatten auswertenhttps://www.rfc1437.de/2008/01/07/kinderpornografie-firmen-sollen-festplatten/Marskollision wird wahrscheinlicherhttps://www.rfc1437.de/2008/01/07/marskollision-wird-wahrscheinlicher/Scratch Home imagine, program, sharehttps://www.rfc1437.de/2008/01/06/scratch-home-imagine-program-share/Adobe-Produkte kommunizieren über dubiose Web-Adressehttps://www.rfc1437.de/2008/01/04/adobe-produkte-kommunizieren-ueber-dubiose-web/BGH: Razzien gegen Globalisierungskritiker waren rechtswidrighttps://www.rfc1437.de/2008/01/04/bgh-razzien-gegen-globalisierungskritiker-waren/Django on Jython: Minding the Gaphttps://www.rfc1437.de/2008/01/04/django-on-jython-minding-the-gap/HD Monitor Causes DRM Issues with Netflixhttps://www.rfc1437.de/2008/01/04/hd-monitor-causes-drm-issues-with-netflix/iCab ist wieder dahttps://www.rfc1437.de/2008/01/04/icab-ist-wieder-da/Baut Australien eine Great Firewall?https://www.rfc1437.de/2008/01/03/baut-australien-eine-great-firewall/GrabFS: The Screenshot File Systemhttps://www.rfc1437.de/2008/01/03/grabfs-the-screenshot-file-system/OLPC-Technikchefin macht sich selbstständighttps://www.rfc1437.de/2008/01/03/olpc-technikchefin-macht-sich-selbststaendig/Gmail Filesystemhttps://www.rfc1437.de/2008/01/02/gmail-filesystem/Psychology Today: Dreams: Night Schoolhttps://www.rfc1437.de/2008/01/02/psychology-today-dreams-night-school/Varnishhttps://www.rfc1437.de/2007/12/27/varnish/Australia to enforce a "rating system" on web, track usershttps://www.rfc1437.de/2007/12/25/australia-to-enforce-a-rating-system-on-web-track/David Byrne's Survival Strategies for Emerging Artists — and Megastarshttps://www.rfc1437.de/2007/12/21/david-byrne-s-survival-strategies-for-emerging/More on widgets: When one e-mail is enough to break a system.https://www.rfc1437.de/2007/12/21/more-on-widgets-when-one-e-mail-is-enough-to/Samba Team Receives Microsoft Protocol Docshttps://www.rfc1437.de/2007/12/21/samba-team-receives-microsoft-protocol-docs/Surfen für 61,98 Euro pro Stundehttps://www.rfc1437.de/2007/12/21/surfen-fuer-61-98-euro-pro-stunde/A young blonde Icelandic woman's recent experience visiting the UShttps://www.rfc1437.de/2007/12/20/a-young-blonde-icelandic-woman-s-recent/Harvey Wasserman on New Ohio Voting Report: "The 2004 Election Was Stolen… Finally We Have Irrefutable Confirmation"https://www.rfc1437.de/2007/12/20/harvey-wasserman-on-new-ohio-voting-report-the/Creative Commons will EU-Schutzrecht für Datenbanken umgehenhttps://www.rfc1437.de/2007/12/19/creative-commons-will-eu-schutzrecht-fuer/Die Samariter-Definition der "Süddeutschen Zeitung" [Indiskretion Ehrensache]https://www.rfc1437.de/2007/12/19/die-samariter-definition-der-sueddeutschen/Neue Schlappe für Abmahnanwalt der Musikindustriehttps://www.rfc1437.de/2007/12/19/neue-schlappe-fuer-abmahnanwalt-der-musikindustrie/Colds - Alcohol - Medicine and Healthhttps://www.rfc1437.de/2007/12/18/colds-alcohol-medicine-and-health/Ping Tunnel - Send TCP traffic over ICMPhttps://www.rfc1437.de/2007/12/17/ping-tunnel-send-tcp-traffic-over-icmp/Run Python Scripthttps://www.rfc1437.de/2007/12/17/run-python-script/SPD-Innenpolitiker kündigt Zustimmung zu Online-Durchsuchungen anhttps://www.rfc1437.de/2007/12/17/spd-innenpolitiker-kuendigt-zustimmung-zu-online/TOR-Server durch Vorratsdatenspeicherung von Schließung bedrohthttps://www.rfc1437.de/2007/12/17/tor-server-durch-vorratsdatenspeicherung-von/129a: Lesereise hinter Gitterhttps://www.rfc1437.de/2007/12/14/129a-lesereise-hinter-gitter/Amazon Web Services: SimpleDBhttps://www.rfc1437.de/2007/12/14/amazon-web-services-simpledb/heise online - Erweiterte polizeiliche Abhörbefugnisse geforderthttps://www.rfc1437.de/2007/12/14/heise-online-erweiterte-polizeiliche/Shoe-Fitting Fluoroscopehttps://www.rfc1437.de/2007/12/14/shoe-fitting-fluoroscope/Doris Lessing - Nobel Lecturehttps://www.rfc1437.de/2007/12/11/doris-lessing-nobel-lecture/Experten bestätigen Zusammenhang zwischen AKW und Krebshttps://www.rfc1437.de/2007/12/11/experten-bestaetigen-zusammenhang-zwischen-akw/Nokia: Ogg-Formate im HTML-Standard? Nicht mit uns!https://www.rfc1437.de/2007/12/11/nokia-ogg-formate-im-html-standard-nicht-mit-uns/Skype on OS2007HE umm... working...https://www.rfc1437.de/2007/12/11/skype-on-os2007he-umm-working/The Glass Books of the Dream Eatershttps://www.rfc1437.de/2007/12/11/the-glass-books-of-the-dream-eaters/Foren-Haftung: LG Hamburg besteht auf Vorab-Kontrollehttps://www.rfc1437.de/2007/12/07/foren-haftung-lg-hamburg-besteht-auf-vorab/Kriminalisierung von Parallelimporten weiter umstrittenhttps://www.rfc1437.de/2007/12/07/kriminalisierung-von-parallelimporten-weiter/New version of Ready Lisp for Mac OS X availablehttps://www.rfc1437.de/2007/12/07/new-version-of-ready-lisp-for-mac-os-x-available/Objects Have Failedhttps://www.rfc1437.de/2007/12/07/objects-have-failed/Sie haben das Recht zu schweigenhttps://www.rfc1437.de/2007/12/07/sie-haben-das-recht-zu-schweigen/Ajatus manifestohttps://www.rfc1437.de/2007/12/06/ajatus-manifesto/Microsoft und OLPChttps://www.rfc1437.de/2007/12/06/microsoft-und-olpc/Mindestlohn-Streit: PIN entlässt fast 900 Mitarbeiterhttps://www.rfc1437.de/2007/12/06/mindestlohn-streit-pin-entlaesst-fast-900/Moonlight/Silverlight Unfughttps://www.rfc1437.de/2007/12/06/moonlight-silverlight-unfug/Programming CouchDB with Javascripthttps://www.rfc1437.de/2007/12/06/programming-couchdb-with-javascript/NodeBoxhttps://www.rfc1437.de/2007/12/05/nodebox/Solar + Tiny PC + Linux = Sweeeethttps://www.rfc1437.de/2007/12/05/solar-tiny-pc-linux-sweeeet/Standpauke vs. Requiemhttps://www.rfc1437.de/2007/12/05/standpauke-vs-requiem/Clojurehttps://www.rfc1437.de/2007/12/04/clojure/Getting Started on Natural Language Processing with Pythonhttps://www.rfc1437.de/2007/12/04/getting-started-on-natural-language-processing/JLinehttps://www.rfc1437.de/2007/12/04/jline/Saurier entpuppt sich als Muskelpakethttps://www.rfc1437.de/2007/12/04/saurier-entpuppt-sich-als-muskelpaket/VoIP-Signatur Patent für Fraunhoferhttps://www.rfc1437.de/2007/12/04/voip-signatur-patent-fuer-fraunhofer/iPhone in Deutschland: Warten aufs Gerichthttps://www.rfc1437.de/2007/12/03/iphone-in-deutschland-warten-aufs-gericht/BGH erklärt Kontrolle von Briefen in Hamburg für rechtswidrighttps://www.rfc1437.de/2007/11/30/bgh-erklaert-kontrolle-von-briefen-in-hamburg/Chromatron, by Silver Spaceship Softwarehttps://www.rfc1437.de/2007/11/30/chromatron-by-silver-spaceship-software/Cory Docterow über Facebookhttps://www.rfc1437.de/2007/11/30/cory-docterow-ueber-facebook/IRSeeking trouble...https://www.rfc1437.de/2007/11/30/irseeking-trouble/Warnung vor "unerträglicher Verschärfung" der Vorratsdatenspeicherunghttps://www.rfc1437.de/2007/11/29/warnung-vor-unertraeglicher-verschaerfung-der/BGH: "Militante Gruppe" keine terroristische Vereinigunghttps://www.rfc1437.de/2007/11/28/bgh-militante-gruppe-keine-terroristische/LKA-Direktor Hüttemann zurückgetretenhttps://www.rfc1437.de/2007/11/28/lka-direktor-huettemann-zurueckgetreten/Networkhttps://www.rfc1437.de/2007/11/28/network/OLPC in Nigeria wegen Patentverletzung verklagthttps://www.rfc1437.de/2007/11/28/olpc-in-nigeria-wegen-patentverletzung-verklagt/Richter hält Vorratsdatenspeicherung für verfassungswidrighttps://www.rfc1437.de/2007/11/28/richter-haelt-vorratsdatenspeicherung-fuer/Telekom steigt aus Radsport aushttps://www.rfc1437.de/2007/11/28/telekom-steigt-aus-radsport-aus/The Future of Reading (A Play in Six Acts)https://www.rfc1437.de/2007/11/26/the-future-of-reading-a-play-in-six-acts/Aloha--Ken Whartonhttps://www.rfc1437.de/2007/11/23/aloha-ken-wharton/Karnevalsverein mit TÜV-Siegelhttps://www.rfc1437.de/2007/11/23/karnevalsverein-mit-tuev-siegel/lxml.htmlhttps://www.rfc1437.de/2007/11/23/lxml-html/Bundestag nickt Abkommen zur Weitergabe von Fluggastdaten abhttps://www.rfc1437.de/2007/11/19/bundestag-nickt-abkommen-zur-weitergabe-von/Encrypted E-Mail Company Hushmail Spills to Fedshttps://www.rfc1437.de/2007/11/19/encrypted-e-mail-company-hushmail-spills-to-feds/iP2Fhttps://www.rfc1437.de/2007/11/19/ip2f/Patentklage gegen Apple, Microsoft und 21 weitere Unternehmenhttps://www.rfc1437.de/2007/11/19/patentklage-gegen-apple-microsoft-und-21-weitere/Schäuble fährt Softwareentwicklung hoch - Golem.dehttps://www.rfc1437.de/2007/11/19/schaeuble-faehrt-softwareentwicklung-hoch-golem-de/Tarimporterhttps://www.rfc1437.de/2007/11/19/tarimporter/Verschlüsselungsstandard unter Backdoor-Verdachthttps://www.rfc1437.de/2007/11/19/verschluesselungsstandard-unter-backdoor-verdacht/Warner-Music-Chef: Wir lagen falschhttps://www.rfc1437.de/2007/11/19/warner-music-chef-wir-lagen-falsch/Ziplight - Search ZIP Files with Spotlighthttps://www.rfc1437.de/2007/11/19/ziplight-search-zip-files-with-spotlight/Polizei gibt Rechner von Beschuldigten an Musikindustrie-Anwalt weiterhttps://www.rfc1437.de/2007/11/14/polizei-gibt-rechner-von-beschuldigten-an/Dirvishhttps://www.rfc1437.de/2007/11/12/dirvish/Kommt die Bundesabhörzentrale?https://www.rfc1437.de/2007/11/12/kommt-die-bundesabhoerzentrale/Rechnungshof verschwendet Millionenhttps://www.rfc1437.de/2007/11/12/rechnungshof-verschwendet-millionen/reinteracthttps://www.rfc1437.de/2007/11/12/reinteract/rsnapshothttps://www.rfc1437.de/2007/11/12/rsnapshot/Sicherheitsberater wegen Betreiben eines Bot-Netzes angeklagthttps://www.rfc1437.de/2007/11/12/sicherheitsberater-wegen-betreiben-eines-bot/The Terrifying Toothpick Fishhttps://www.rfc1437.de/2007/11/12/the-terrifying-toothpick-fish/Upside-Down-Ternethttps://www.rfc1437.de/2007/11/12/upside-down-ternet/E-Vergabe: Nutzer von Linux oder Mac müssen draußen bleibenhttps://www.rfc1437.de/2007/11/08/e-vergabe-nutzer-von-linux-oder-mac-muessen/Zope: Using UTF-8 in the Management Interface (ZMI)https://www.rfc1437.de/2007/11/06/zope-using-utf-8-in-the-management-interface-zmi/"Spiegel": Hinweise auf Absprachen der Stromkonzernehttps://www.rfc1437.de/2007/11/05/spiegel-hinweise-auf-absprachen-der-stromkonzerne/Zypries wirft Kritikern der Vorratsdatenspeicherung wenig Sachkunde vorhttps://www.rfc1437.de/2007/11/05/zypries-wirft-kritikern-der/Mac OS X 10.5 Leopard: the Ars Technica reviewhttps://www.rfc1437.de/2007/10/30/mac-os-x-10-5-leopard-the-ars-technica-review/Doing the Leopard Moanhttps://www.rfc1437.de/2007/10/29/doing-the-leopard-moan/TidBITS Macs & Mac OS X: Getting to Know Time Machinehttps://www.rfc1437.de/2007/10/29/tidbits-macs-mac-os-x-getting-to-know-time-machine/CCC hackt Hamburger Wahlstifthttps://www.rfc1437.de/2007/10/26/ccc-hackt-hamburger-wahlstift/Cowboy Programming: Mature Optimizationhttps://www.rfc1437.de/2007/10/23/cowboy-programming-mature-optimization/heise online -Softwarepatent-Gegner beklagen Deal der EU-Kommission mit Microsofthttps://www.rfc1437.de/2007/10/23/heise-online-softwarepatent-gegner-beklagen-deal/Ist die Inflationsrate wirklich bedrohlich?https://www.rfc1437.de/2007/10/23/ist-die-inflationsrate-wirklich-bedrohlich/Anwälte verbieten Ansicht des HTML-Codes ihrer Websitehttps://www.rfc1437.de/2007/10/22/anwaelte-verbieten-ansicht-des-html-codes-ihrer/Clozure CL IDE for Tigerhttps://www.rfc1437.de/2007/10/22/clozure-cl-ide-for-tiger/Arcor muss YouPorn sperrenhttps://www.rfc1437.de/2007/10/21/arcor-muss-youporn-sperren/Sorge um Nutzerrechte wegen Copyright-Filter fürs Web 2.0https://www.rfc1437.de/2007/10/20/sorge-um-nutzerrechte-wegen-copyright-filter/annalisthttps://www.rfc1437.de/2007/10/19/annalist/Wie wird man Terrorist?https://www.rfc1437.de/2007/10/19/wie-wird-man-terrorist/CL-OBJC projecthttps://www.rfc1437.de/2007/10/18/cl-objc-project/Hello, Bob. Hello Joe.https://www.rfc1437.de/2007/10/18/hello-bob-hello-joe/Jobs freut sich auf hunderte iPhone-Anwendungenhttps://www.rfc1437.de/2007/10/18/jobs-freut-sich-auf-hunderte-iphone-anwendungen/Nikon D3 First Impressionshttps://www.rfc1437.de/2007/10/18/nikon-d3-first-impressions/Wahlcomputer und die Grenzen der Informationsfreiheithttps://www.rfc1437.de/2007/10/18/wahlcomputer-und-die-grenzen-der/AG Köln: Öffentliches Singen ist keine Urheberrechtsverletzunghttps://www.rfc1437.de/2007/10/17/ag-koeln-oeffentliches-singen-ist-keine/Amazons Ein-Klick-Patent größtenteils für ungültig erklärthttps://www.rfc1437.de/2007/10/17/amazons-ein-klick-patent-groesstenteils-fuer/Dot-com fever stirs sense of déjà vuhttps://www.rfc1437.de/2007/10/17/dot-com-fever-stirs-sense-of-d-j-vu/It Only Tuesdayhttps://www.rfc1437.de/2007/10/17/it-only-tuesday/Nokia announces N810 Internet Tablet with GPS and OS 2008https://www.rfc1437.de/2007/10/17/nokia-announces-n810-internet-tablet-with-gps-and/OOXML Payback Time as Global Standards Work in SC 34 "Grinds to a Halt"https://www.rfc1437.de/2007/10/17/ooxml-payback-time-as-global-standards-work-in-sc/Biometrie-Gegner wegen Hausfriedensbruch angezeigthttps://www.rfc1437.de/2007/10/16/biometrie-gegner-wegen-hausfriedensbruch-angezeigt/Canon kündigt Objektive mit 200mm f/2 und 800mm f/5,6 anhttps://www.rfc1437.de/2007/10/16/canon-kuendigt-objektive-mit-200mm-f-2-und-800mm/''Second Earth'' found, 20 light years awayhttps://www.rfc1437.de/2007/10/16/second-earth-found-20-light-years-away/Patentklage wegen Linux-Desktopshttps://www.rfc1437.de/2007/10/12/patentklage-wegen-linux-desktops/Re: digitool MCL clozure OpenMCLhttps://www.rfc1437.de/2007/10/12/re-digitool-mcl-clozure-openmcl/Tale of Taleshttps://www.rfc1437.de/2007/10/11/tale-of-tales/Bevölkerung ab 16 soll für Perso Fingerabdrücke abgebenhttps://www.rfc1437.de/2007/10/10/bevoelkerung-ab-16-soll-fuer-perso/Kirch ist zurück auf der großen Bühnehttps://www.rfc1437.de/2007/10/10/kirch-ist-zurueck-auf-der-grossen-buehne/Text & Tabellen: Google hat kritisierte AGB nicht korrigierthttps://www.rfc1437.de/2007/10/05/text-tabellen-google-hat-kritisierte-agb-nicht/SWIFT entzieht EU-Daten dem einfachen Zugriff durch die USAhttps://www.rfc1437.de/2007/10/04/swift-entzieht-eu-daten-dem-einfachen-zugriff/Creative Commons verklagthttps://www.rfc1437.de/2007/10/02/creative-commons-verklagt/Berliner Amtsgericht verbietet Speichern von personenbezogenen Datenhttps://www.rfc1437.de/2007/10/01/berliner-amtsgericht-verbietet-speichern-von/Pandochttps://www.rfc1437.de/2007/10/01/pandoc/Vortragsfolien mit S5 - Cognitiones Publicaehttps://www.rfc1437.de/2007/10/01/vortragsfolien-mit-s5-cognitiones-publicae/Empörung über EU-Pläne für «Web-Zensur»https://www.rfc1437.de/2007/09/28/empoerung-ueber-eu-plaene-fuer-web-zensur/Flying Logic : Software for Visual Planning Supporthttps://www.rfc1437.de/2007/09/28/flying-logic-software-for-visual-planning-support/Niederlande: Aus für Nedap-Wahlcomputerhttps://www.rfc1437.de/2007/09/28/niederlande-aus-fuer-nedap-wahlcomputer/Schwarzgeldaffäre: Kanther kommt mit Geldstrafe davonhttps://www.rfc1437.de/2007/09/28/schwarzgeldaffaere-kanther-kommt-mit-geldstrafe/Tour: Rasmussen hatte künstliches EPO im Urinhttps://www.rfc1437.de/2007/09/28/tour-rasmussen-hatte-kuenstliches-epo-im-urin/Wie der Weltuntergang aussiehthttps://www.rfc1437.de/2007/09/28/wie-der-weltuntergang-aussieht/Bounce-Verbot für Bundes-Mailserverhttps://www.rfc1437.de/2007/09/24/bounce-verbot-fuer-bundes-mailserver/PIN-Code und Fingerabdruckhttps://www.rfc1437.de/2007/09/24/pin-code-und-fingerabdruck/Polizeizugriffe bei Demo gegen den Überwachungsstaathttps://www.rfc1437.de/2007/09/24/polizeizugriffe-bei-demo-gegen-den/Sachverständige haben erhebliche Bedenken gegen die Vorratsdatenspeicherunghttps://www.rfc1437.de/2007/09/24/sachverstaendige-haben-erhebliche-bedenken-gegen/Zwei OLPC-Notebooks kaufen, eines spendenhttps://www.rfc1437.de/2007/09/24/zwei-olpc-notebooks-kaufen-eines-spenden/Dolderer zurück an Denic-Spitzehttps://www.rfc1437.de/2007/09/20/dolderer-zurueck-an-denic-spitze/IE pwns SecondLifehttps://www.rfc1437.de/2007/09/17/ie-pwns-secondlife/Ozbus, London to Sydney Bus Travelhttps://www.rfc1437.de/2007/09/17/ozbus-london-to-sydney-bus-travel/Tor-Server-Betreiber stellt nach Razzia Anonymisierungsserver abhttps://www.rfc1437.de/2007/09/17/tor-server-betreiber-stellt-nach-razzia/Veröffentlichter Mailverkehr belastet Anti-Filesharing-Dienstleisterhttps://www.rfc1437.de/2007/09/17/veroeffentlichter-mailverkehr-belastet-anti/Merkel findet Debatte über Online-Razzien "bedenklich"https://www.rfc1437.de/2007/09/15/merkel-findet-debatte-ueber-online-razzien/SCO beantragt Gläubigerschutzhttps://www.rfc1437.de/2007/09/15/sco-beantragt-glaeubigerschutz/Anonymisierungsnetz Tor "abgephisht"https://www.rfc1437.de/2007/09/12/anonymisierungsnetz-tor-abgephisht/Anwalt Gravenreuth zu Haftstrafe verurteilthttps://www.rfc1437.de/2007/09/12/anwalt-gravenreuth-zu-haftstrafe-verurteilt/EU-Kommissar will "gefährliche Wörter" im Internet sperrenhttps://www.rfc1437.de/2007/09/12/eu-kommissar-will-gefaehrliche-woerter-im/Microsoft erhält Patent auf Benachrichtung über Änderungen in Datenschutzerklärungenhttps://www.rfc1437.de/2007/09/12/microsoft-erhaelt-patent-auf-benachrichtung-ueber/Bayern will schärfe Strafen für Gotteslästerunghttps://www.rfc1437.de/2007/09/10/bayern-will-schaerfe-strafen-fuer-gotteslaesterung/Leatherman Skeletool: The Lightweight Multi-Tool You''ll Actually Usehttps://www.rfc1437.de/2007/09/07/leatherman-skeletool-the-lightweight-multi-tool/Shadeshttps://www.rfc1437.de/2007/09/07/shades/External Filters from Erlanghttps://www.rfc1437.de/2007/09/05/external-filters-from-erlang/Mobile Processinghttps://www.rfc1437.de/2007/09/05/mobile-processing/NasaWorldWind in Processinghttps://www.rfc1437.de/2007/09/05/nasaworldwind-in-processing/Processing 1.0 (BETA)https://www.rfc1437.de/2007/09/05/processing-1-0-beta/World Wind JAVA SDKhttps://www.rfc1437.de/2007/09/05/world-wind-java-sdk/Tin-Foil-Hatshttps://www.rfc1437.de/2007/09/04/tin-foil-hats/BabelDjangohttps://www.rfc1437.de/2007/09/03/babeldjango/Microsoft Allegedly Bullies and Bribes to Make Office an International Standardhttps://www.rfc1437.de/2007/09/02/microsoft-allegedly-bullies-and-bribes-to-make/Abmahnung: GEZ untersagt "GEZ-Gebühren", "PC-Gebühren" und "GEZ-Anmeldung"https://www.rfc1437.de/2007/08/30/abmahnung-gez-untersagt-gez-gebuehren-pc/Court Rules: Novell owns the UNIX and UnixWare copyrights! Novell has right to waive!https://www.rfc1437.de/2007/08/11/court-rules-novell-owns-the-unix-and-unixware/The Shakespeare Programming Languagehttps://www.rfc1437.de/2007/08/10/the-shakespeare-programming-language/Wir alle haben Kommentarspam zugestimmthttps://www.rfc1437.de/2007/08/10/wir-alle-haben-kommentarspam-zugestimmt/BrandweekNRX: Red Cross sued over its - Red cross!https://www.rfc1437.de/2007/08/09/brandweeknrx-red-cross-sued-over-its-red-cross/MathTrek: Cracking the Cubehttps://www.rfc1437.de/2007/08/09/mathtrek-cracking-the-cube/New FCC rules may impact Linux-based deviceshttps://www.rfc1437.de/2007/08/09/new-fcc-rules-may-impact-linux-based-devices/TidBITS: New iLife ''08 Revealedhttps://www.rfc1437.de/2007/08/08/tidbits-new-ilife-08-revealed/Freie ERP- und CRM-Lösung für Linux, Windows und Mac OS Xhttps://www.rfc1437.de/2007/08/06/freie-erp-und-crm-loesung-fuer-linux-windows-und/Herber Rückschlag für US-Wahlmaschinenherstellerhttps://www.rfc1437.de/2007/08/06/herber-rueckschlag-fuer-us-wahlmaschinenhersteller/Light Blue Touchpaper » Electoral Commission releases e-voting and e-counting reportshttps://www.rfc1437.de/2007/08/06/light-blue-touchpaper-electoral-commission/m-e-c AS2 ::: Open source AS2 softwarehttps://www.rfc1437.de/2007/08/06/m-e-c-as2-open-source-as2-software/real-time GPS shark huntinghttps://www.rfc1437.de/2007/08/06/real-time-gps-shark-hunting/Amazon FPS, Amazon Flexible Payment Servicehttps://www.rfc1437.de/2007/08/03/amazon-fps-amazon-flexible-payment-service/Multiversehttps://www.rfc1437.de/2007/08/03/multiverse/Unter Hausarresthttps://www.rfc1437.de/2007/08/03/unter-hausarrest/US-Wahlcomputer können keine vertrauenswürdigen Wahlen garantierenhttps://www.rfc1437.de/2007/08/03/us-wahlcomputer-koennen-keine-vertrauenswuerdigen/Vimdoc : the online source for Vim documentationhttps://www.rfc1437.de/2007/08/03/vimdoc-the-online-source-for-vim-documentation/Virtualisierungs-Rootkit Blue Pill frei verfügbarhttps://www.rfc1437.de/2007/08/03/virtualisierungs-rootkit-blue-pill-frei-verfuegbar/Zypries verschärft Kritik an Online-Razzienhttps://www.rfc1437.de/2007/08/03/zypries-verschaerft-kritik-an-online-razzien/EU-Klage gegen deutsche Datenschutz-Gesetzehttps://www.rfc1437.de/2007/08/02/eu-klage-gegen-deutsche-datenschutz-gesetze/1.3 Megapixel USB Digital Microscopehttps://www.rfc1437.de/2007/08/01/1-3-megapixel-usb-digital-microscope/Leica M8 Review: 1. Introduction: Digital Photography Reviewhttps://www.rfc1437.de/2007/08/01/leica-m8-review-1-introduction-digital/Scan This Guy's E-Passport and Watch Your System Crashhttps://www.rfc1437.de/2007/08/01/scan-this-guy-s-e-passport-and-watch-your-system/Ergebnisse des größten "Hacker"-Tests für US-Wahlmaschinen liegen vorhttps://www.rfc1437.de/2007/07/31/ergebnisse-des-groessten-hacker-tests-fuer-us/Harter Kurs gegen Drogensünderhttps://www.rfc1437.de/2007/07/31/harter-kurs-gegen-drogensuender/Project Wonderlandhttps://www.rfc1437.de/2007/07/31/project-wonderland/Skeptical Science and Technology Quoteshttps://www.rfc1437.de/2007/07/31/skeptical-science-and-technology-quotes/The effects of data fragmentation in a mixed load database. Theoretical discussion and PostgreSQL benchmark.https://www.rfc1437.de/2007/07/31/the-effects-of-data-fragmentation-in-a-mixed-load/Totgesagte leben (nicht) länger: Kein Amiga-Center in Kenthttps://www.rfc1437.de/2007/07/31/totgesagte-leben-nicht-laenger-kein-amiga-center/Uh Oh. Another Smooth Move from Microsoft: Watch out, Ruby. Watch out OSI.https://www.rfc1437.de/2007/07/31/uh-oh-another-smooth-move-from-microsoft-watch/Anti-Grain Geometry - Texts Rasterization Exposureshttps://www.rfc1437.de/2007/07/30/anti-grain-geometry-texts-rasterization-exposures/Coding Horror: The Coming Software Patent Apocalypsehttps://www.rfc1437.de/2007/07/30/coding-horror-the-coming-software-patent/Top-Beamter der Bundespolizei ließ E-Mails seiner Mitarbeiter bespitzelnhttps://www.rfc1437.de/2007/07/30/top-beamter-der-bundespolizei-liess-e-mails/WGET 1.10.2 for Windows (win32)https://www.rfc1437.de/2007/07/30/wget-1-10-2-for-windows-win32/«Second Life» für Deutschehttps://www.rfc1437.de/2007/07/27/second-life-fuer-deutsche/Ermittlung des Anschlussinhabers bei Tauschbörsen-Strafverfahren ist unzulässighttps://www.rfc1437.de/2007/07/26/ermittlung-des-anschlussinhabers-bei/Japanese Watch Makerhttps://www.rfc1437.de/2007/07/26/japanese-watch-maker/Rasmussen gefeuert und aus der Tour genommenhttps://www.rfc1437.de/2007/07/26/rasmussen-gefeuert-und-aus-der-tour-genommen/Stackless Python soll Eve Online schneller machenhttps://www.rfc1437.de/2007/07/26/stackless-python-soll-eve-online-schneller-machen/The Church of the Latter-Day Dudehttps://www.rfc1437.de/2007/07/26/the-church-of-the-latter-day-dude/Antique engines inspire nano chiphttps://www.rfc1437.de/2007/07/25/antique-engines-inspire-nano-chip/Auf Nummer Sicher?https://www.rfc1437.de/2007/07/25/auf-nummer-sicher/Britische Musikindustrie greift Regierung anhttps://www.rfc1437.de/2007/07/25/britische-musikindustrie-greift-regierung-an/…free your imagination…https://www.rfc1437.de/2007/07/25/free-your-imagination/iPhoto Library Managerhttps://www.rfc1437.de/2007/07/25/iphoto-library-manager/Jamendo : Fabrice Collettehttps://www.rfc1437.de/2007/07/25/jamendo-fabrice-collette/Tour macht weiter, trotz aller Problemehttps://www.rfc1437.de/2007/07/25/tour-macht-weiter-trotz-aller-probleme/We're All Gonna Diehttps://www.rfc1437.de/2007/07/25/we-re-all-gonna-die/DarwiinRemotehttps://www.rfc1437.de/2007/07/24/darwiinremote/RE: question about Erlang''s futurehttps://www.rfc1437.de/2007/07/24/re-question-about-erlang-s-future/The Real Problem With Alexahttps://www.rfc1437.de/2007/07/24/the-real-problem-with-alexa/Urteil gegen Skype wegen GPL-Verletzunghttps://www.rfc1437.de/2007/07/24/urteil-gegen-skype-wegen-gpl-verletzung/David Carr: Deadlines, Overtime and Undertimehttps://www.rfc1437.de/2007/07/23/david-carr-deadlines-overtime-and-undertime/What Linspire Agreed Tohttps://www.rfc1437.de/2007/07/23/what-linspire-agreed-to/Bush Abolishes Fifth Amendmenthttps://www.rfc1437.de/2007/07/20/bush-abolishes-fifth-amendment/Chax - miscellaneous iChat improvementshttps://www.rfc1437.de/2007/07/20/chax-miscellaneous-ichat-improvements/Dame durchgespielthttps://www.rfc1437.de/2007/07/20/dame-durchgespielt/Dead Iron Monsters, Legacy Of Soviet Unionhttps://www.rfc1437.de/2007/07/20/dead-iron-monsters-legacy-of-soviet-union/Distel = Erlang-like Concurrency in Emacshttps://www.rfc1437.de/2007/07/20/distel-erlang-like-concurrency-in-emacs/iGlasses for iChat AVhttps://www.rfc1437.de/2007/07/20/iglasses-for-ichat-av/Learning from Dave Winerhttps://www.rfc1437.de/2007/07/20/learning-from-dave-winer/Tiny PC sips power, runs Linuxhttps://www.rfc1437.de/2007/07/20/tiny-pc-sips-power-runs-linux/Trojaner-Basteln für Dummyshttps://www.rfc1437.de/2007/07/20/trojaner-basteln-fuer-dummys/Jing Project: Visual conversation starts here. Mac or Windows.https://www.rfc1437.de/2007/07/19/jing-project-visual-conversation-starts-here-mac/Nokia veröffentlicht Browser für Maemohttps://www.rfc1437.de/2007/07/19/nokia-veroeffentlicht-browser-fuer-maemo/Project details for leJOShttps://www.rfc1437.de/2007/07/19/project-details-for-lejos/Schenk?https://www.rfc1437.de/2007/07/19/schenk/The History of Software Patents (BitLaw)https://www.rfc1437.de/2007/07/19/the-history-of-software-patents-bitlaw/Abmahngrund: Fotos vom Fotostudiohttps://www.rfc1437.de/2007/07/18/abmahngrund-fotos-vom-fotostudio/Absurditäten der Medienhttps://www.rfc1437.de/2007/07/18/absurditaeten-der-median/BrowseBack: Visual Web History You Can Searchhttps://www.rfc1437.de/2007/07/18/browseback-visual-web-history-you-can-search/"Amflora" kommt: EU will BASF-Kartoffel zulassenhttps://www.rfc1437.de/2007/07/17/amflora-kommt-eu-will-basf-kartoffel-zulassen/integer overflowshttps://www.rfc1437.de/2007/07/17/integer-overflows/Microsofts Digital Rights Management umgangenhttps://www.rfc1437.de/2007/07/17/microsofts-digital-rights-management-umgangen/iPod Operating Systemhttps://www.rfc1437.de/2007/07/16/ipod-operating-system/Linux Creator Calls GPLv3 Authors 'Hypocrites' As Open Source Debate Turns Nastyhttps://www.rfc1437.de/2007/07/16/linux-creator-calls-gplv3-authors-hypocrites-as/low-level network packets with pythonhttps://www.rfc1437.de/2007/07/16/low-level-network-packets-with-python/Tinderbox: Downloadshttps://www.rfc1437.de/2007/07/16/tinderbox-downloads/Bischof fordert Schöpfungslehre im Bio-Unterrichthttps://www.rfc1437.de/2007/07/13/bischof-fordert-schoepfungslehre-im-bio-unterricht/Face Blindness ( Prosopagnosia ) and stoneshttps://www.rfc1437.de/2007/07/13/face-blindness-prosopagnosia-and-stones/Why Spiders Aren''t Insects II: A Primer on Cladisticshttps://www.rfc1437.de/2007/07/13/why-spiders-aren-t-insects-ii-a-primer-on/AT&T Cingular Vertragsbedingungen für iPhone untersuchthttps://www.rfc1437.de/2007/07/11/at-t-cingular-vertragsbedingungen-fuer-iphone/Genera Conceptshttps://www.rfc1437.de/2007/07/11/genera-concepts/Ampache Web Musicboxhttps://www.rfc1437.de/2007/07/10/ampache-web-musicbox/EU bei Fluggastdaten "über den Tisch gezogen"https://www.rfc1437.de/2007/07/10/eu-bei-fluggastdaten-ueber-den-tisch-gezogen/Konrad Zuse - Turing's Alter Ego?https://www.rfc1437.de/2007/07/10/konrad-zuse-turing-s-alter-ego/Nokia Skypes its N800 Linux tablethttps://www.rfc1437.de/2007/07/09/nokia-skypes-its-n800-linux-tablet/Perlbalhttps://www.rfc1437.de/2007/07/09/perlbal/Popstars retten die Erdehttps://www.rfc1437.de/2007/07/09/popstars-retten-die-erde/Professional Fartershttps://www.rfc1437.de/2007/07/09/professional-farters/Schäuble fordert "Internierung", Internet- und Handyverbot für "Gefährder"https://www.rfc1437.de/2007/07/09/schaeuble-fordert-internierung-internet-und/SQLite performance and Djangohttps://www.rfc1437.de/2007/07/09/sqlite-performance-and-django/Union droht ARD und ZDF mit Werbeverbothttps://www.rfc1437.de/2007/07/09/union-droht-ard-und-zdf-mit-werbeverbot/WinMTRhttps://www.rfc1437.de/2007/07/08/winmtr/I Can''t Stop Thinking! #6https://www.rfc1437.de/2007/07/07/i-can-t-stop-thinking-6/BGH erleichtert Telefonauskünften Herausgabe von Datenhttps://www.rfc1437.de/2007/07/06/bgh-erleichtert-telefonauskuenften-herausgabe-von/MacFusion | The GUI for MacFUSEhttps://www.rfc1437.de/2007/07/06/macfusion-the-gui-for-macfuse/Performance Tuning PostgreSQLhttps://www.rfc1437.de/2007/07/06/performance-tuning-postgresql/Unternehmensnamen in Blog-Domains sind problematischhttps://www.rfc1437.de/2007/07/06/unternehmensnamen-in-blog-domains-sind/The story of Melhttps://www.rfc1437.de/2007/07/05/the-story-of-mel/Bush on overruling judgementshttps://www.rfc1437.de/2007/07/04/bush-on-overruling-judgements/Karlsruhe: Abgeordnete müssen erstmals Nebeneinkünfte offenlegenhttps://www.rfc1437.de/2007/07/04/karlsruhe-abgeordnete-muessen-erstmals/L''état, c''est moihttps://www.rfc1437.de/2007/07/04/l-tat-c-est-moi/Freace - Wieder das gleiche Musterhttps://www.rfc1437.de/2007/07/03/freace-wieder-das-gleiche-muster/Perian 1.0 macht Macs zu universellen Video-Abspielernhttps://www.rfc1437.de/2007/07/03/perian-1-0-macht-macs-zu-universellen-video/Python NetWorkSpaces and Parallel Programshttps://www.rfc1437.de/2007/07/03/python-networkspaces-and-parallel-programs/SOS: Bundestag soll Patentierte Standards abnicken - FiFF bittet um Mithilfehttps://www.rfc1437.de/2007/07/03/sos-bundestag-soll-patentierte-standards-abnicken/Terror suspects all linked to NHShttps://www.rfc1437.de/2007/07/03/terror-suspects-all-linked-to-nhs/Golfstrom droht spätestens 2100 zu versiegenhttps://www.rfc1437.de/2007/07/02/golfstrom-droht-spaetestens-2100-zu-versiegen/T-Online sperrt TCP-Port 8085https://www.rfc1437.de/2007/07/02/t-online-sperrt-tcp-port-8085/Thousands of rubber ducks to land on British shores after 15 year journeyhttps://www.rfc1437.de/2007/07/02/thousands-of-rubber-ducks-to-land-on-british/Giftiger Riesenbärenklau wird bekämpfthttps://www.rfc1437.de/2007/06/29/giftiger-riesenbaerenklau-wird-bekaempft/Linux-Smartphone OpenMoko ab Juli 2007 zu habenhttps://www.rfc1437.de/2007/06/29/linux-smartphone-openmoko-ab-juli-2007-zu-haben/Polizei entschärft Sprengsatz in Londonhttps://www.rfc1437.de/2007/06/29/polizei-entschaerft-sprengsatz-in-london/"Code kennt keine Fairness"https://www.rfc1437.de/2007/06/28/code-kennt-keine-fairness/EU und USA haben Vereinbarungen über Weitergabe von Flugpassagier- und Finanzdaten erzielthttps://www.rfc1437.de/2007/06/28/eu-und-usa-haben-vereinbarungen-ueber-weitergabe/''Intel Core 2''https://www.rfc1437.de/2007/06/28/intel-core-2/Millionenschaden durch manipulierte Geldautomatenhttps://www.rfc1437.de/2007/06/28/millionenschaden-durch-manipulierte-geldautomaten/When Sysadmins Ruled the Earth, by Cory Doctorowhttps://www.rfc1437.de/2007/06/28/when-sysadmins-ruled-the-earth-by-cory-doctorow/alte Domains raushttps://www.rfc1437.de/2007/06/27/alte-domains-raus/Ari Jaaksi on Nokia and Open Source and the N770https://www.rfc1437.de/2007/06/27/ari-jaaksi-on-nokia-and-open-source-and-the-n770/Kaczynski droht Bundesregierung wegen Karikaturhttps://www.rfc1437.de/2007/06/27/kaczynski-droht-bundesregierung-wegen-karikatur/The iPhone Matches Most of Its Hypehttps://www.rfc1437.de/2007/06/27/the-iphone-matches-most-of-its-hype/Banned By Gaussianhttps://www.rfc1437.de/2007/06/26/banned-by-gaussian/"Schwere Dopingvorwürfe gegen BDR"https://www.rfc1437.de/2007/06/26/schwere-dopingvorwuerfe-gegen-bdr/Zwangsausschluss von Aktionären verfassungsgemäßhttps://www.rfc1437.de/2007/06/26/zwangsausschluss-von-aktionaeren/Full map of Europe in year 1000https://www.rfc1437.de/2007/06/25/full-map-of-europe-in-year-1000/Google Mail will bei Vorratsdatenspeicherung zumachenhttps://www.rfc1437.de/2007/06/25/google-mail-will-bei-vorratsdatenspeicherung/Inhaltsfilter für Second Lifehttps://www.rfc1437.de/2007/06/25/inhaltsfilter-fuer-second-life/Schäuble hält Online-Durchsuchungen für "lebensnotwendig"https://www.rfc1437.de/2007/06/25/schaeuble-haelt-online-durchsuchungen-fuer/Try These Different ways to Become Invisiblehttps://www.rfc1437.de/2007/06/25/try-these-different-ways-to-become-invisible/Von tarifpolitischen Zukunftsperspektiven und politisch inszenierten Gnadenbrotenhttps://www.rfc1437.de/2007/06/25/von-tarifpolitischen-zukunftsperspektiven-und/XGPhttps://www.rfc1437.de/2007/06/25/xgp/Bald bei allen EU-Autos Höchstgeschwindigkeit ab Werk?https://www.rfc1437.de/2007/06/22/bald-bei-allen-eu-autos-hoechstgeschwindigkeit-ab/Binary marble adding machinehttps://www.rfc1437.de/2007/06/22/binary-marble-adding-machine/Paul Dowman » Ruby on Rails EC2 “Appliance”https://www.rfc1437.de/2007/06/22/paul-dowman-ruby-on-rails-ec2-appliance/Wettbewerbsbeschwerde gegen BBC wegen Videoformathttps://www.rfc1437.de/2007/06/22/wettbewerbsbeschwerde-gegen-bbc-wegen-videoformat/Yahoo Censoring Open Sourcehttps://www.rfc1437.de/2007/06/22/yahoo-censoring-open-source/Musikindustrie will schrankenlosen Zugriff auf Nutzerdatenhttps://www.rfc1437.de/2007/06/21/musikindustrie-will-schrankenlosen-zugriff-auf/Programming Experiments: Initial Release of my web toolshttps://www.rfc1437.de/2007/06/21/programming-experiments-initial-release-of-my-web/An analysis of EOS-1D Mark III autofocus performancehttps://www.rfc1437.de/2007/06/20/an-analysis-of-eos-1d-mark-iii-autofocus/Anthracitehttps://www.rfc1437.de/2007/06/20/anthracite/Spamhaus.org relativiert nic.at-Listinghttps://www.rfc1437.de/2007/06/20/spamhaus-org-relativiert-nic-at-listing/Python 3000 Status Update (Long!)https://www.rfc1437.de/2007/06/19/python-3000-status-update-long/Atombombenexplosion im tschechischen Frühstücksfernsehenhttps://www.rfc1437.de/2007/06/18/atombombenexplosion-im-tschechischen/"Skulptur Projekte Münster 07"https://www.rfc1437.de/2007/06/15/skulptur-projekte-muenster-07/Third Viewhttps://www.rfc1437.de/2007/06/15/third-view/Schneier on Security: Portrait of the Modern Terrorist as an Idiothttps://www.rfc1437.de/2007/06/14/schneier-on-security-portrait-of-the-modern/Ärger um neue Flickr-Filterhttps://www.rfc1437.de/2007/06/13/aerger-um-neue-flickr-filter/Yahoo-Aktionäre lehnen Menschenrechtsanträge abhttps://www.rfc1437.de/2007/06/13/yahoo-aktionaere-lehnen-menschenrechtsantraege-ab/ZFS ist in MacOS X 10.5 - Golem.dehttps://www.rfc1437.de/2007/06/13/zfs-ist-in-macos-x-10-5-golem-de/Gutachten bestätigt Manipulierbarkeit von Wahlcomputernhttps://www.rfc1437.de/2007/06/11/gutachten-bestaetigt-manipulierbarkeit-von/httplib2.pyhttps://www.rfc1437.de/2007/06/11/httplib2-py/Keine Kennzeichnung nötig: EU erlaubt Spuren von Gentech in Bio-Kosthttps://www.rfc1437.de/2007/06/11/keine-kennzeichnung-noetig-eu-erlaubt-spuren-von/Media-Saturn trennt sich von Anwalt Steinhöfelhttps://www.rfc1437.de/2007/06/11/media-saturn-trennt-sich-von-anwalt-steinhoefel/CSC stoppt möglicherweise Radsport-Sponsoringhttps://www.rfc1437.de/2007/06/08/csc-stoppt-moeglicherweise-radsport-sponsoring/Reportage: Zwanzig in einem Käfig, 24 Stunden Lichthttps://www.rfc1437.de/2007/06/08/reportage-zwanzig-in-einem-kaefig-24-stunden-licht/Sun: ZFS wird neues Dateisystem in Apples Leopardhttps://www.rfc1437.de/2007/06/08/sun-zfs-wird-neues-dateisystem-in-apples-leopard/Camino. Mozilla Power, Mac Stylehttps://www.rfc1437.de/2007/06/06/camino-mozilla-power-mac-style/MarsEdithttps://www.rfc1437.de/2007/06/06/marsedit/Microsoft threatens its Most Valuable Professionalhttps://www.rfc1437.de/2007/06/06/microsoft-threatens-its-most-valuable-professional/The contact lenses that could restore 20/20 visionhttps://www.rfc1437.de/2007/06/06/the-contact-lenses-that-could-restore-20-20-vision/3 awesome free Math programshttps://www.rfc1437.de/2007/06/05/3-awesome-free-math-programs/A 10 minute tutorial for solving Math problems with Maximahttps://www.rfc1437.de/2007/06/05/a-10-minute-tutorial-for-solving-math-problems/Linux.com | Encrypt and sign Gmail messages with FireGPGhttps://www.rfc1437.de/2007/06/05/linux-com-encrypt-and-sign-gmail-messages-with/MailTagshttps://www.rfc1437.de/2007/06/05/mailtags/Pistol Shrimphttps://www.rfc1437.de/2007/06/05/pistol-shrimp/Relocating iTunes Music Libraries to Removable/External Storage Mediahttps://www.rfc1437.de/2007/06/05/relocating-itunes-music-libraries-to-removable/wxMaximahttps://www.rfc1437.de/2007/06/05/wxmaxima/RTL will sich nicht kopieren lassenhttps://www.rfc1437.de/2007/06/04/rtl-will-sich-nicht-kopieren-lassen/TV Ad Sound Levelshttps://www.rfc1437.de/2007/06/04/tv-ad-sound-levels/UBERWACH!https://www.rfc1437.de/2007/06/04/uberwach/Astronomers Capture The First Image Of Surface Features On A Sun-like Starhttps://www.rfc1437.de/2007/06/01/astronomers-capture-the-first-image-of-surface/Google Gears for WebKithttps://www.rfc1437.de/2007/06/01/google-gears-for-webkit/HD-DVD und Blu-ray Disc wieder kopierbarhttps://www.rfc1437.de/2007/06/01/hd-dvd-und-blu-ray-disc-wieder-kopierbar/How to Swear in any languagehttps://www.rfc1437.de/2007/06/01/how-to-swear-in-any-language/Personal History: How I Spent the Warhttps://www.rfc1437.de/2007/06/01/personal-history-how-i-spent-the-war/Single spinning nuclei in diamond offer a stable quantum computing building blockhttps://www.rfc1437.de/2007/06/01/single-spinning-nuclei-in-diamond-offer-a-stable/trackbackhttps://www.rfc1437.de/2007/06/01/trackback/Bundesratsausschüsse für deutlichen Ausbau der TK-Überwachunghttps://www.rfc1437.de/2007/05/31/bundesratsausschuesse-fuer-deutlichen-ausbau-der/CSU: Seehofer droht Parteifreunden mit Sex-Enthüllungenhttps://www.rfc1437.de/2007/05/31/csu-seehofer-droht-parteifreunden-mit-sex/Don't Mess With Our Chocolatehttps://www.rfc1437.de/2007/05/31/don-t-mess-with-our-chocolate/Dumb, Dumber, Bush? Mooo!https://www.rfc1437.de/2007/05/31/dumb-dumber-bush-mooo/Exklusiv: Fatih Akins "Gegen die Wand" im Internethttps://www.rfc1437.de/2007/05/31/exklusiv-fatih-akins-gegen-die-wand-im-internet/Man described as a top spammer arrestedhttps://www.rfc1437.de/2007/05/31/man-described-as-a-top-spammer-arrested/Verwertungsgesellschaften kritisieren Commons-Projekt als urheberrechtsfeindlichhttps://www.rfc1437.de/2007/05/31/verwertungsgesellschaften-kritisieren-commons/20 Ways to Use Gmail Filtershttps://www.rfc1437.de/2007/05/30/20-ways-to-use-gmail-filters/ARD/ZDF wollen Tour-Vertrag vorerst nicht verlängernhttps://www.rfc1437.de/2007/05/30/ard-zdf-wollen-tour-vertrag-vorerst-nicht/Bundesregierung präzisiert Pflichten zur Archivierung von Netzinhaltenhttps://www.rfc1437.de/2007/05/30/bundesregierung-praezisiert-pflichten-zur/Diebe stehlen Seekabel vor Vietnamhttps://www.rfc1437.de/2007/05/30/diebe-stehlen-seekabel-vor-vietnam/duplicityhttps://www.rfc1437.de/2007/05/30/duplicity-2/Gericht untersagt Artikelversand per E-Mailhttps://www.rfc1437.de/2007/05/30/gericht-untersagt-artikelversand-per-e-mail/GVU und Ermittlungenhttps://www.rfc1437.de/2007/05/30/gvu-und-ermittlungen/Our oceans are turning into plastic...are we?https://www.rfc1437.de/2007/05/30/our-oceans-are-turning-into-plastic-are-we/Park Place, the Amazon-S3 clonehttps://www.rfc1437.de/2007/05/30/park-place-the-amazon-s3-clone/VI in JavaScripthttps://www.rfc1437.de/2007/05/30/vi-in-javascript-2/BKA-Ermittler fahnden im Biergartenhttps://www.rfc1437.de/2007/05/29/bka-ermittler-fahnden-im-biergarten/IT-Chronikhttps://www.rfc1437.de/2007/05/29/it-chronik/New database class - HyperDBhttps://www.rfc1437.de/2007/05/29/new-database-class-hyperdb/Studie: Atomstrom - weder billig noch gut fürs Klimahttps://www.rfc1437.de/2007/05/29/studie-atomstrom-weder-billig-noch-gut-fuers-klima/RFC gegen Spamhttps://www.rfc1437.de/2007/05/27/rfc-gegen-spam/Ein Terrorist wie du und ichhttps://www.rfc1437.de/2007/05/25/ein-terrorist-wie-du-und-ich/Einzelhandel frohlockt: Biometriebilder für Gesundheitskartehttps://www.rfc1437.de/2007/05/25/einzelhandel-frohlockt-biometriebilder-fuer/Undercover : Günter Wallraff ist zurückhttps://www.rfc1437.de/2007/05/25/undercover-guenter-wallraff-ist-zurueck/Amnesty international prangert "Politik der Angst" anhttps://www.rfc1437.de/2007/05/24/amnesty-international-prangert-politik-der-angst/Die ARD-Tonstörung namens Godefroot (Update 3)https://www.rfc1437.de/2007/05/24/die-ard-tonstoerung-namens-godefroot-update-3/Dietz, Henn, Böltz, Aldag, Ullrichhttps://www.rfc1437.de/2007/05/24/dietz-henn-boeltz-aldag-ullrich/Microsoft will den unbekannten Internetbenutzer identifizierenhttps://www.rfc1437.de/2007/05/24/microsoft-will-den-unbekannten-internetbenutzer/NDR zensiert Dietz Inteview bei Beckmannhttps://www.rfc1437.de/2007/05/24/ndr-zensiert-dietz-inteview-bei-beckmann/Ornithopters to Revolutionize Aircraft Designhttps://www.rfc1437.de/2007/05/24/ornithopters-to-revolutionize-aircraft-design/Wiesenhof steigt aushttps://www.rfc1437.de/2007/05/24/wiesenhof-steigt-aus/Bundesinnenminister warnt vor zunehmender Netzspionagehttps://www.rfc1437.de/2007/05/23/bundesinnenminister-warnt-vor-zunehmender/Cyborg-Feeling für jedermannhttps://www.rfc1437.de/2007/05/23/cyborg-feeling-fuer-jedermann/Google turns the page… in a bad way.https://www.rfc1437.de/2007/05/23/google-turns-the-page-in-a-bad-way/Inside the Monkeyspherehttps://www.rfc1437.de/2007/05/23/inside-the-monkeysphere/Introducing Mahlee™https://www.rfc1437.de/2007/05/23/introducing-mahlee/PyCellshttps://www.rfc1437.de/2007/05/23/pycells/Ex-Telekom-Profi beichtet Dopinghttps://www.rfc1437.de/2007/05/22/ex-telekom-profi-beichtet-doping/Innere Sicherheit: Der Duft des Terrorshttps://www.rfc1437.de/2007/05/22/innere-sicherheit-der-duft-des-terrors/The Birth Control of Yesteryearhttps://www.rfc1437.de/2007/05/22/the-birth-control-of-yesteryear/Warner legt bei EMI-Offerte nachhttps://www.rfc1437.de/2007/05/22/warner-legt-bei-emi-offerte-nach/Wirtschaftsprofessor fordert: "Wir brauchen einen regulierten Markt für Organe"https://www.rfc1437.de/2007/05/22/wirtschaftsprofessor-fordert-wir-brauchen-einen/100-Dollar-Laptop: Negroponte greift Intel scharf anhttps://www.rfc1437.de/2007/05/21/100-dollar-laptop-negroponte-greift-intel-scharf/CIA's Harsh Interrogation Techniques Describedhttps://www.rfc1437.de/2007/05/21/cia-s-harsh-interrogation-techniques-described/Diamonds Tell Tale Of Comet That Killed Off The Cavemenhttps://www.rfc1437.de/2007/05/21/diamonds-tell-tale-of-comet-that-killed-off-the/Jason Corso - Vi Input Manager Pluginhttps://www.rfc1437.de/2007/05/21/jason-corso-vi-input-manager-plugin/The Cerne Abbas Gianthttps://www.rfc1437.de/2007/05/21/the-cerne-abbas-giant/The Red Hot Erlang Bloghttps://www.rfc1437.de/2007/05/21/the-red-hot-erlang-blog/Uffington White Horsehttps://www.rfc1437.de/2007/05/21/uffington-white-horse/Wilmingtonhttps://www.rfc1437.de/2007/05/21/wilmington/Amazon kündigt DRM-freie MP3-Downloads anhttps://www.rfc1437.de/2007/05/18/amazon-kuendigt-drm-freie-mp3-downloads-an/Deutsche Telekom verabschiedet sich von Marke T-Comhttps://www.rfc1437.de/2007/05/18/deutsche-telekom-verabschiedet-sich-von-marke-t/Freitag 20 - Es geht um fast alleshttps://www.rfc1437.de/2007/05/18/freitag-20-es-geht-um-fast-alles/individual-i [de]https://www.rfc1437.de/2007/05/18/individual-i-de/JPC - Computer Virtualization in Javahttps://www.rfc1437.de/2007/05/18/jpc-computer-virtualization-in-java/Why, oh WHY, do those #?@! nutheads use vi?https://www.rfc1437.de/2007/05/18/why-oh-why-do-those-nutheads-use-vi/WMAP Mission: Resultshttps://www.rfc1437.de/2007/05/18/wmap-mission-results/Unterstützung für Globalisierungskritiker Geißler tritt Attac beihttps://www.rfc1437.de/2007/05/17/unterstuetzung-fuer-globalisierungskritiker/Atze Schröder und die Wikipediahttps://www.rfc1437.de/2007/05/16/atze-schroeder-und-die-wikipedia/capsulehotelhttps://www.rfc1437.de/2007/05/16/capsulehotel/MarcoPolo - Automatic location switching for Mac OS Xhttps://www.rfc1437.de/2007/05/16/marcopolo-automatic-location-switching-for-mac-os/Verwaltungsgericht: Honig muss vor Pollen von Gen-Mais geschützt werdenhttps://www.rfc1437.de/2007/05/16/verwaltungsgericht-honig-muss-vor-pollen-von-gen/Beautiful Soup: We called him Tortoise because he taught us.https://www.rfc1437.de/2007/05/15/beautiful-soup-we-called-him-tortoise-because-he/Create a Tumblr widget using Dashcodehttps://www.rfc1437.de/2007/05/15/create-a-tumblr-widget-using-dashcode/ISO-Arbeitsgruppe schlägt Unicode mit "ß" als Großbuchstaben vorhttps://www.rfc1437.de/2007/05/15/iso-arbeitsgruppe-schlaegt-unicode-mit-ss-als/twill: a simple scripting language for Web browsinghttps://www.rfc1437.de/2007/05/15/twill-a-simple-scripting-language-for-web-browsing-2/Apple und Microsoft sollen zu DRM-Einsatz gezwungen werdenhttps://www.rfc1437.de/2007/05/14/apple-und-microsoft-sollen-zu-drm-einsatz/Flickr → iPhotohttps://www.rfc1437.de/2007/05/14/flickr-iphoto/FlickrExporthttps://www.rfc1437.de/2007/05/14/flickrexport/Google will aus Online-Spielen psychologische Profile erstellenhttps://www.rfc1437.de/2007/05/14/google-will-aus-online-spielen-psychologische/Public Acceptance of Evolutionhttps://www.rfc1437.de/2007/05/11/public-acceptance-of-evolution/Stig's Inferno by Ty Templetonhttps://www.rfc1437.de/2007/05/11/stig-s-inferno-by-ty-templeton/XML Transformation in Schemehttps://www.rfc1437.de/2007/05/11/xml-transformation-in-scheme/Doping-Szene Deutschland: Heile Welt in Magentahttps://www.rfc1437.de/2007/05/10/doping-szene-deutschland-heile-welt-in-magenta/Escaping the data panopticon: Prof says computers must learn to "forget"https://www.rfc1437.de/2007/05/10/escaping-the-data-panopticon-prof-says-computers/Musikindustrie und Udo Jürgens setzen Kanzlerin unter Druckhttps://www.rfc1437.de/2007/05/10/musikindustrie-und-udo-juergens-setzen-kanzlerin/Streit bei Axel Springer: "WamS"-Kommentarchef attackiert "Bild"-Chefredakteurhttps://www.rfc1437.de/2007/05/10/streit-bei-axel-springer-wams-kommentarchef/Terror-Webseiten: Europol sucht Terroristen im Netzhttps://www.rfc1437.de/2007/05/10/terror-webseiten-europol-sucht-terroristen-im-netz/A MacFUSE-Based Process File System for Mac OS Xhttps://www.rfc1437.de/2007/05/09/a-macfuse-based-process-file-system-for-mac-os-x/Alligator Eggs!https://www.rfc1437.de/2007/05/09/alligator-eggs/Erlang For The Practical Manhttps://www.rfc1437.de/2007/05/09/erlang-for-the-practical-man/Ertrunken in der Datenflut - “Man kann mit solchen Maßnahmen nichts verhindern”https://www.rfc1437.de/2007/05/09/ertrunken-in-der-datenflut-man-kann-mit-solchen/Evolved Virtual Creatureshttps://www.rfc1437.de/2007/05/09/evolved-virtual-creatures/Lambda Associates Home Pagehttps://www.rfc1437.de/2007/05/09/lambda-associates-home-page/Linuxtag mit Schirmherr Wolfgang Schäublehttps://www.rfc1437.de/2007/05/09/linuxtag-mit-schirmherr-wolfgang-schaeuble/Philip Linden's Follyhttps://www.rfc1437.de/2007/05/09/philip-linden-s-folly/Reset Reloadedhttps://www.rfc1437.de/2007/05/09/reset-reloaded/US-Bürgerrechtler werfen Uri Geller Urheberrechtsbeugung vorhttps://www.rfc1437.de/2007/05/09/us-buergerrechtler-werfen-uri-geller/Basso gesteht Dopinghttps://www.rfc1437.de/2007/05/08/basso-gesteht-doping/Schäuble: Deutschland gehört "zu den sichersten Ländern der Welt"https://www.rfc1437.de/2007/05/08/schaeuble-deutschland-gehoert-zu-den-sichersten/Schäuble und Zypries wollen Paragraph 129 StGB auf Einzeltäter ausweitenhttps://www.rfc1437.de/2007/05/08/schaeuble-und-zypries-wollen-paragraph-129-stgb/T-Online, Adidas und Gumball 3000https://www.rfc1437.de/2007/05/08/t-online-adidas-und-gumball-3000/Desktop Factory kündigt Billig-3D-Drucker anhttps://www.rfc1437.de/2007/05/07/desktop-factory-kuendigt-billig-3d-drucker-an/impromptuhttps://www.rfc1437.de/2007/05/07/impromptu-2/JSONstore 0.2https://www.rfc1437.de/2007/05/07/jsonstore-0-2/Polizei setzt bei Kinderporno-Jagd auf private Dienstleisterhttps://www.rfc1437.de/2007/05/07/polizei-setzt-bei-kinderporno-jagd-auf-private/PyInstallerhttps://www.rfc1437.de/2007/05/07/pyinstaller/Chanalyzer Software und Wi-Spy Stickhttps://www.rfc1437.de/2007/05/06/chanalyzer-software-und-wi-spy-stick/Die Erfinder von Helmut Kohlhttps://www.rfc1437.de/2007/05/04/die-erfinder-von-helmut-kohl/JungleDisk - Reliable online storage powered by Amazon S3 ™https://www.rfc1437.de/2007/05/04/jungledisk-reliable-online-storage-powered-by/Rampant Layering Violationhttps://www.rfc1437.de/2007/05/04/rampant-layering-violation/Thursday: Biggest. Anti-Spam. Lawsuit. Ever.https://www.rfc1437.de/2007/05/04/thursday-biggest-anti-spam-lawsuit-ever/Transterpreterhttps://www.rfc1437.de/2007/05/04/transterpreter/ardourhttps://www.rfc1437.de/2007/05/03/ardour/ext3cowhttps://www.rfc1437.de/2007/05/03/ext3cow/Fraghttps://www.rfc1437.de/2007/05/03/frag-2/GLASS: Gemstone, Linux, Apache, Seaside and Smalltalkhttps://www.rfc1437.de/2007/05/03/glass-gemstone-linux-apache-seaside-and-smalltalk/Haskell vs. Erlang in einem Beispielprojekthttps://www.rfc1437.de/2007/05/03/haskell-vs-erlang-in-einem-beispielprojekt/Manually Adding DNS-SD Service Discovery Records to an Existing Name Serverhttps://www.rfc1437.de/2007/05/03/manually-adding-dns-sd-service-discovery-records/F-Scripthttps://www.rfc1437.de/2007/05/02/f-script/Vorsicht ist die Mutter der Porzelankistehttps://www.rfc1437.de/2007/05/02/vorsicht-ist-die-mutter-der-porzelankiste/fantasy mounts-Custom Creature Taxidermy-Gaffshttps://www.rfc1437.de/2007/04/27/fantasy-mounts-custom-creature-taxidermy-gaffs/Faster Page Loads With Image Concatenationhttps://www.rfc1437.de/2007/04/27/faster-page-loads-with-image-concatenation/Mark Jenkins: Street Installationshttps://www.rfc1437.de/2007/04/27/mark-jenkins-street-installations/AllegroGraphhttps://www.rfc1437.de/2007/04/26/allegrograph/Erde 2.0: ESO-Forscher entdecken bislang erdähnlichsten Exoplanetenhttps://www.rfc1437.de/2007/04/25/erde-2-0-eso-forscher-entdecken-bislang/Innenministerium: Online-Durchsuchungen längst Usushttps://www.rfc1437.de/2007/04/25/innenministerium-online-durchsuchungen-laengst/Introducing Dashcodehttps://www.rfc1437.de/2007/04/25/introducing-dashcode/Israel's 'modesty buses' draw firehttps://www.rfc1437.de/2007/04/25/israel-s-modesty-buses-draw-fire/Keine Sorge - wir passen schon gut auf Dich auf!https://www.rfc1437.de/2007/04/25/keine-sorge-wir-passen-schon-gut-auf-dich-auf/Seven JavaScript Techniques You Should Be Using Todayhttps://www.rfc1437.de/2007/04/25/seven-javascript-techniques-you-should-be-using/The Carina Nebula: Star Birth in the Extremehttps://www.rfc1437.de/2007/04/25/the-carina-nebula-star-birth-in-the-extreme/Vendetta Onlinehttps://www.rfc1437.de/2007/04/25/vendetta-online/Even CEO Can't Figure Out How RadioShack Still In Businesshttps://www.rfc1437.de/2007/04/24/even-ceo-can-t-figure-out-how-radioshack-still-in/Fingerabdrücke aus Reisepässen sollen nicht gespeichert werdenhttps://www.rfc1437.de/2007/04/24/fingerabdruecke-aus-reisepaessen-sollen-nicht/JavaScriptTemplateshttps://www.rfc1437.de/2007/04/24/javascripttemplates/major labels: the problem with musichttps://www.rfc1437.de/2007/04/24/major-labels-the-problem-with-music/terciohttps://www.rfc1437.de/2007/04/24/tercio/The Deephttps://www.rfc1437.de/2007/04/24/the-deep/The Side Effects of Truthhttps://www.rfc1437.de/2007/04/24/the-side-effects-of-truth/The universe is a string-net liquidhttps://www.rfc1437.de/2007/04/24/the-universe-is-a-string-net-liquid/Delibarhttps://www.rfc1437.de/2007/04/23/delibar/delimporthttps://www.rfc1437.de/2007/04/23/delimport/ETOS Compilerhttps://www.rfc1437.de/2007/04/23/etos-compiler/Greg Haerr's Nano-X Window System Page (previously Microwindows)https://www.rfc1437.de/2007/04/23/greg-haerr-s-nano-x-window-system-page-previously/Internet Verbindungen auf dem Machttps://www.rfc1437.de/2007/04/23/internet-verbindungen-auf-dem-mac/Last night's performance of INVINCIBLE SUMMER was disruptedhttps://www.rfc1437.de/2007/04/23/last-night-s-performance-of-invincible-summer-was/QuirksMode - for all your browser quirkshttps://www.rfc1437.de/2007/04/23/quirksmode-for-all-your-browser-quirks/Spoonhttps://www.rfc1437.de/2007/04/23/spoon/TextMate: Power Editing for the Machttps://www.rfc1437.de/2007/04/23/textmate-power-editing-for-the-mac/the messing link - home of a delicious widgethttps://www.rfc1437.de/2007/04/23/the-messing-link-home-of-a-delicious-widget/xmonad 0.1https://www.rfc1437.de/2007/04/23/xmonad-0-1/Freie Smalltalk Bücherhttps://www.rfc1437.de/2007/04/20/freie-smalltalk-buecher/Union will den "Schäuble-Katalog" in allen Punkten durchsetzenhttps://www.rfc1437.de/2007/04/20/union-will-den-schaeuble-katalog-in-allen-punkten/UseTheSource / Published Code Snippetshttps://www.rfc1437.de/2007/04/20/usethesource-published-code-snippets/Vista Smalltalk Wikihttps://www.rfc1437.de/2007/04/20/vista-smalltalk-wiki/Blacksburg: Amokläufer schickte Manifest an Senderhttps://www.rfc1437.de/2007/04/19/blacksburg-amoklaeufer-schickte-manifest-an-sender/Erlang Cookbookhttps://www.rfc1437.de/2007/04/19/erlang-cookbook/NPR : Giant Bats Snatch Birds from Night Skyhttps://www.rfc1437.de/2007/04/19/npr-giant-bats-snatch-birds-from-night-sky/Bundesinnenminister Schäuble will Grundsatz der Unschuldsvermutung aushebelnhttps://www.rfc1437.de/2007/04/18/bundesinnenminister-schaeuble-will-grundsatz-der/Gericht bestätigt Haftung des Admin-Chttps://www.rfc1437.de/2007/04/18/gericht-bestaetigt-haftung-des-admin-c/Kameliahttps://www.rfc1437.de/2007/04/18/kamelia-2/PragDave: Adding Concurrency to Our Erlang Programhttps://www.rfc1437.de/2007/04/18/pragdave-adding-concurrency-to-our-erlang-program/QuickCheck: An Automatic Testing Tool for Haskellhttps://www.rfc1437.de/2007/04/18/quickcheck-an-automatic-testing-tool-for-haskell/(The Scheme Way): Erlang or Gambit-C/Termite? A practitioner''s perspectivehttps://www.rfc1437.de/2007/04/18/the-scheme-way-erlang-or-gambit-c-termite-a/“What the fuck is informationelle Selbstbestimmung!?”https://www.rfc1437.de/2007/04/18/what-the-fuck-is-informationelle-selbstbestimmung/Wings3Dhttps://www.rfc1437.de/2007/04/18/wings3d/ChronoSynchttps://www.rfc1437.de/2007/04/17/chronosync/CouchDb Project Websitehttps://www.rfc1437.de/2007/04/17/couchdb-project-website/current workhttps://www.rfc1437.de/2007/04/17/current-work/History of the tildehttps://www.rfc1437.de/2007/04/17/history-of-the-tilde/HTML5, XHTML2, and the Future of the Webhttps://www.rfc1437.de/2007/04/17/html5-xhtml2-and-the-future-of-the-web/PragDave: A First Erlang Programhttps://www.rfc1437.de/2007/04/17/pragdave-a-first-erlang-program/Translation From PR-Speak to English of Selected Portions of Rails Developer David Heinemeier Hansson’s Response to Alex Payne’s Interviewhttps://www.rfc1437.de/2007/04/17/translation-from-pr-speak-to-english-of-selected/Why you should be using HTML 4.01 instead of XHTMLhttps://www.rfc1437.de/2007/04/17/why-you-should-be-using-html-4-01-instead-of-xhtml/Apple - Downloads - Mac OS X - Automator Actionshttps://www.rfc1437.de/2007/04/16/apple-downloads-mac-os-x-automator-actions/automator actionshttps://www.rfc1437.de/2007/04/16/automator-actions/Automator Worldhttps://www.rfc1437.de/2007/04/16/automator-world/Doug's AppleScripts for iTuneshttps://www.rfc1437.de/2007/04/16/doug-s-applescripts-for-itunes-2/Metaluahttps://www.rfc1437.de/2007/04/16/metalua/USB-To-Ethernet Adaptors for Mac OS Xhttps://www.rfc1437.de/2007/04/16/usb-to-ethernet-adaptors-for-mac-os-x/Write Your Own Automator Actionshttps://www.rfc1437.de/2007/04/16/write-your-own-automator-actions/Google kauft DoubleClickhttps://www.rfc1437.de/2007/04/14/google-kauft-doubleclick/Speakeasy - Speed Testhttps://www.rfc1437.de/2007/04/14/speakeasy-speed-test/Vinton Cerf denkt an Internet-Neustarthttps://www.rfc1437.de/2007/04/14/vinton-cerf-denkt-an-internet-neustart/Navigation Kit für das Nokia N800 Internet Tablethttps://www.rfc1437.de/2007/04/13/navigation-kit-fuer-das-nokia-n800-internet-tablet/5 Question Interview with Twitter Developer Alex Paynehttps://www.rfc1437.de/2007/04/12/5-question-interview-with-twitter-developer-alex/Door to Door Atheistshttps://www.rfc1437.de/2007/04/12/door-to-door-atheists/Polizei soll automatisch auf digitale Passfotos zugreifen könnenhttps://www.rfc1437.de/2007/04/12/polizei-soll-automatisch-auf-digitale-passfotos/senduithttps://www.rfc1437.de/2007/04/12/senduit/Hacker reißen neues Loch in AACS-Verschlüsselunghttps://www.rfc1437.de/2007/04/11/hacker-reissen-neues-loch-in-aacs-verschluesselung/MogileFShttps://www.rfc1437.de/2007/04/11/mogilefs/RabbitMQ - Open Source Enterprise Messaginghttps://www.rfc1437.de/2007/04/11/rabbitmq-open-source-enterprise-messaging/Datenschützer schlagen Alarm: US-Geheimdienst vor Kontrolle deutscher Bankdatenhttps://www.rfc1437.de/2007/04/10/datenschuetzer-schlagen-alarm-us-geheimdienst-vor/Debian 4.0 finally arrives!https://www.rfc1437.de/2007/04/10/debian-4-0-finally-arrives/IMified - Developer Communityhttps://www.rfc1437.de/2007/04/10/imified-developer-community/Just How Smart Are Ravens?https://www.rfc1437.de/2007/04/10/just-how-smart-are-ravens/kulerhttps://www.rfc1437.de/2007/04/10/kuler/Scribdhttps://www.rfc1437.de/2007/04/10/scribd/Debatte um Christian Klar: Wenn wir schon von Mord sprechenhttps://www.rfc1437.de/2007/04/06/debatte-um-christian-klar-wenn-wir-schon-von-mord/Breaking WEP in Under a Minutehttps://www.rfc1437.de/2007/04/05/breaking-wep-in-under-a-minute/Dabble DB Commonshttps://www.rfc1437.de/2007/04/05/dabble-db-commons/Genossenschaftsbanken und was draus wurdehttps://www.rfc1437.de/2007/04/05/genossenschaftsbanken-und-was-draus-wurde/Globulation2https://www.rfc1437.de/2007/04/05/globulation2/BKNRhttps://www.rfc1437.de/2007/04/04/bknr/CLiki : CommonLispPrevalencehttps://www.rfc1437.de/2007/04/04/cliki-commonlispprevalence/HUNCHENTOOT - The Common Lisp web server formerly known as TBNLhttps://www.rfc1437.de/2007/04/04/hunchentoot-the-common-lisp-web-server-formerly/Lispboxhttps://www.rfc1437.de/2007/04/04/lispbox/PLEAC - Programming Language Examples Alike Cookbookhttps://www.rfc1437.de/2007/04/04/pleac-programming-language-examples-alike-cookbook/The Elephant Persistent Object Metaprotocol and Databasehttps://www.rfc1437.de/2007/04/04/the-elephant-persistent-object-metaprotocol-and/USA reklamieren "absolutes Recht" auf persönliche Daten von Europäern bei der Einreisehttps://www.rfc1437.de/2007/04/04/usa-reklamieren-absolutes-recht-auf-persoenliche/Devicescape – Connect all your wi-fi devices to any hotspot or wifi network – automatically!https://www.rfc1437.de/2007/04/03/devicescape-connect-all-your-wi-fi-devices-to-any/Französische Bahn stellt Geschwindigkeitsrekord aufhttps://www.rfc1437.de/2007/04/03/franzoesische-bahn-stellt-geschwindigkeitsrekord/Locomotivehttps://www.rfc1437.de/2007/04/03/locomotive/Scheme 48https://www.rfc1437.de/2007/04/03/scheme-48/Vista Smalltalkhttps://www.rfc1437.de/2007/04/03/vista-smalltalk/EMI Music launches DRM-free superior sound quality downloads across its entire digital repertoirehttps://www.rfc1437.de/2007/04/02/emi-music-launches-drm-free-superior-sound/Good Math, Bad Math : Damn. Damn. Damn. Damn. DAMN IT! I''m an <b>idiot</b>!https://www.rfc1437.de/2007/04/02/good-math-bad-math-damn-damn-damn-damn-damn-it-i/DjangoKithttps://www.rfc1437.de/2007/03/29/djangokit/Industrie will Raubkopierer öffentlich machenhttps://www.rfc1437.de/2007/03/29/industrie-will-raubkopierer-oeffentlich-machen/Servalhttps://www.rfc1437.de/2007/03/29/serval/Tsunghttps://www.rfc1437.de/2007/03/29/tsung/What is Eddie?https://www.rfc1437.de/2007/03/29/what-is-eddie/Open Croquet SDK 1.0https://www.rfc1437.de/2007/03/28/open-croquet-sdk-1-0/Uni-verse Homehttps://www.rfc1437.de/2007/03/28/uni-verse-home/A Sign, a Flipped Structure, and a Scientific Flameout of Epic Proportionshttps://www.rfc1437.de/2007/03/27/a-sign-a-flipped-structure-and-a-scientific/appscripthttps://www.rfc1437.de/2007/03/27/appscript/Comprehensive Erlang Archive Networkhttps://www.rfc1437.de/2007/03/27/comprehensive-erlang-archive-network/IMified - Instant Productivityhttps://www.rfc1437.de/2007/03/27/imified-instant-productivity/Skeptico: Pretty soon…https://www.rfc1437.de/2007/03/27/skeptico-pretty-soon/Emergent Technologies Inc. -- LMI K-Machinehttps://www.rfc1437.de/2007/03/26/emergent-technologies-inc-lmi-k-machine/Gtk+ for Mac OS Xhttps://www.rfc1437.de/2007/03/26/gtk-for-mac-os-x/google-code-prettify - Google Codehttps://www.rfc1437.de/2007/03/23/google-code-prettify-google-code/LambdaVM - The Haskell to Java Translatorhttps://www.rfc1437.de/2007/03/23/lambdavm-the-haskell-to-java-translator/10 Most Magnificent Trees in the World.https://www.rfc1437.de/2007/03/22/10-most-magnificent-trees-in-the-world/Backhoehttps://www.rfc1437.de/2007/03/22/backhoe/Gymnasium verbannt Harry Potterhttps://www.rfc1437.de/2007/03/22/gymnasium-verbannt-harry-potter/"Koran-Urteil": Empörung über Frankfurter Richterinhttps://www.rfc1437.de/2007/03/22/koran-urteil-empoerung-ueber-frankfurter-richterin/Lift Web Frameworkhttps://www.rfc1437.de/2007/03/22/lift-web-framework/Maya -> Second Life : Beta versionhttps://www.rfc1437.de/2007/03/22/maya-second-life-beta-version/The Scala Programming Languagehttps://www.rfc1437.de/2007/03/22/the-scala-programming-language/HyperLook (aka HyperNeWS (aka GoodNeWS))https://www.rfc1437.de/2007/03/21/hyperlook-aka-hypernews-aka-goodnews/N800 & Video playbackhttps://www.rfc1437.de/2007/03/21/n800-video-playback/SPD-Sprecher: Online-Durchsuchungen kommen auf jeden Fallhttps://www.rfc1437.de/2007/03/21/spd-sprecher-online-durchsuchungen-kommen-auf/"Sprachlicher Verbraucherschutz": Union gegen Denglischhttps://www.rfc1437.de/2007/03/21/sprachlicher-verbraucherschutz-union-gegen/[sugar] Ideas for Sugar development environment from HyperLookSimCityhttps://www.rfc1437.de/2007/03/21/sugar-ideas-for-sugar-development-environment/Amnesty™ Singleshttps://www.rfc1437.de/2007/03/19/amnesty-singles/EURion constellationhttps://www.rfc1437.de/2007/03/19/eurion-constellation/SQLite Introductionhttps://www.rfc1437.de/2007/03/19/sqlite-introduction/weil sich ein paar Leute gewundert hattenhttps://www.rfc1437.de/2007/03/19/weil-sich-ein-paar-leute-gewundert-hatten/Federal Patent Court declares FAT patent of Microsoft null and voidhttps://www.rfc1437.de/2007/03/16/federal-patent-court-declares-fat-patent-of/JavaScript for the Macintoshhttps://www.rfc1437.de/2007/03/16/javascript-for-the-macintosh/Lingon by Peter Borghttps://www.rfc1437.de/2007/03/16/lingon-by-peter-borg/NetworkLocationhttps://www.rfc1437.de/2007/03/16/networklocation/Python, Django and DB2: we need your input!https://www.rfc1437.de/2007/03/16/python-django-and-db2-we-need-your-input/Script Debugger 4.0https://www.rfc1437.de/2007/03/16/script-debugger-4-0/LSL Module For BBEdit/TextWranglerhttps://www.rfc1437.de/2007/03/15/lsl-module-for-bbedit-textwrangler/Programming Erlanghttps://www.rfc1437.de/2007/03/15/programming-erlang/Shill (LSL syntax files)https://www.rfc1437.de/2007/03/15/shill-lsl-syntax-files/Bericht: OpenBSD-Entwickler wollten kritische Lücke kleinredenhttps://www.rfc1437.de/2007/03/14/bericht-openbsd-entwickler-wollten-kritische/Gen-Mais: Ratten zeigen Schäden an Leber und Nierenhttps://www.rfc1437.de/2007/03/14/gen-mais-ratten-zeigen-schaeden-an-leber-und/Mono on Nokia 770/800https://www.rfc1437.de/2007/03/14/mono-on-nokia-770-800/Nochmal PicoLisphttps://www.rfc1437.de/2007/03/14/nochmal-picolisp-2/Pico Lisphttps://www.rfc1437.de/2007/03/14/pico-lisp/Polen: Minister will "homosexuelle Agitation" verbietenhttps://www.rfc1437.de/2007/03/14/polen-minister-will-homosexuelle-agitation/SCIgen - An Automatic CS Paper Generatorhttps://www.rfc1437.de/2007/03/14/scigen-an-automatic-cs-paper-generator/Leica 25mm F1.4 Four Thirds lenshttps://www.rfc1437.de/2007/03/12/leica-25mm-f1-4-four-thirds-lens/Sigma DP1https://www.rfc1437.de/2007/03/12/sigma-dp1/Alioth: Debian Root Software Raid Documentation: Detail: 303419 XFS issue / solutionhttps://www.rfc1437.de/2007/03/11/alioth-debian-root-software-raid-documentation/Debian Administration :: Migrating To RAID1 Mirror on Sargehttps://www.rfc1437.de/2007/03/10/debian-administration-migrating-to-raid1-mirror/RAID-1, Part 2 | Linux Journalhttps://www.rfc1437.de/2007/03/10/raid-1-part-2-linux-journal/Cargo Cult Sciencehttps://www.rfc1437.de/2007/02/22/cargo-cult-science/Bewährungsstrafen für FTPWelt-Betreiberhttps://www.rfc1437.de/2007/02/21/bewaehrungsstrafen-fuer-ftpwelt-betreiber/Darwin Streaming Server unter Ubuntu/Debianhttps://www.rfc1437.de/2007/02/21/darwin-streaming-server-unter-ubuntu-debian/QuickTime Broadcasterhttps://www.rfc1437.de/2007/02/21/quicktime-broadcaster/rtsp.org: Real Time Streaming Protocol (RTSP) Information and Updateshttps://www.rfc1437.de/2007/02/21/rtsp-org-real-time-streaming-protocol-rtsp/Streaming mit Linuxhttps://www.rfc1437.de/2007/02/21/streaming-mit-linux/Using Nicecast with Streaming Serverhttps://www.rfc1437.de/2007/02/21/using-nicecast-with-streaming-server/Build Me A Tapewormhttps://www.rfc1437.de/2007/02/20/build-me-a-tapeworm/rziphttps://www.rfc1437.de/2007/02/20/rzip/Die Mehrheit der Schweigerhttps://www.rfc1437.de/2007/02/19/die-mehrheit-der-schweiger/Jungerl - a dense and chaotic Jungle of Erlang codehttps://www.rfc1437.de/2007/02/19/jungerl-a-dense-and-chaotic-jungle-of-erlang-code/personal computers will never have gigabytes of RAMhttps://www.rfc1437.de/2007/02/16/personal-computers-will-never-have-gigabytes-of/GrandPerspectivehttps://www.rfc1437.de/2007/02/15/grandperspective/The largest drain hole in the worldhttps://www.rfc1437.de/2007/02/14/the-largest-drain-hole-in-the-world/Schneier on DRM in Windows Vistahttps://www.rfc1437.de/2007/02/13/schneier-on-drm-in-windows-vista/Scientist finds new ocean in inner earthhttps://www.rfc1437.de/2007/02/13/scientist-finds-new-ocean-in-inner-earth/soaplibhttps://www.rfc1437.de/2007/02/13/soaplib/botohttps://www.rfc1437.de/2007/02/12/boto/Jython 2.2 Betahttps://www.rfc1437.de/2007/02/12/jython-2-2-beta/Caught in the Networkhttps://www.rfc1437.de/2007/02/09/caught-in-the-network/Politiker gegen Einbürgerung von Kurnazhttps://www.rfc1437.de/2007/02/09/politiker-gegen-einbuergerung-von-kurnaz/Schäuble: Trojaner sollen auch private Tagebücher durchsuchenhttps://www.rfc1437.de/2007/02/09/schaeuble-trojaner-sollen-auch-private/Yahoos kleine Mashup-Revolutionhttps://www.rfc1437.de/2007/02/09/yahoos-kleine-mashup-revolution/Asimov, "What is Intelligence?"https://www.rfc1437.de/2007/02/08/asimov-what-is-intelligence/» Wi-Fi hacking, with a handheld PDAhttps://www.rfc1437.de/2007/02/08/wi-fi-hacking-with-a-handheld-pda/Older than the sun, the meteorite scientists call ''the real time machine''https://www.rfc1437.de/2007/02/07/older-than-the-sun-the-meteorite-scientists-call/The Pi-Search Pagehttps://www.rfc1437.de/2007/02/07/the-pi-search-page/Useless Accounthttps://www.rfc1437.de/2007/02/07/useless-account/Linux-Vserver on Debian Testing (Etch), the easy wayhttps://www.rfc1437.de/2007/02/06/linux-vserver-on-debian-testing-etch-the-easy-way/Adiumhttps://www.rfc1437.de/2007/02/05/adium/DocuColor Tracking Dot Decoding Guidehttps://www.rfc1437.de/2007/02/05/docucolor-tracking-dot-decoding-guide/''Electric Slide'' on slippery DMCA slopehttps://www.rfc1437.de/2007/02/05/electric-slide-on-slippery-dmca-slope/Heimliche Online-Durchsuchungen sind unzulässighttps://www.rfc1437.de/2007/02/05/heimliche-online-durchsuchungen-sind-unzulaessig/Schäuble heizt nach BGH-Urteil Debatte um Online-Durchsuchung anhttps://www.rfc1437.de/2007/02/05/schaeuble-heizt-nach-bgh-urteil-debatte-um-online/Slimbox, the ultimate lightweight Lightbox clonehttps://www.rfc1437.de/2007/02/05/slimbox-the-ultimate-lightweight-lightbox-clone/Gothia Gazettehttps://www.rfc1437.de/2007/02/02/gothia-gazette/ModWsgihttps://www.rfc1437.de/2007/02/02/modwsgi/Non-Terrorist Embarrassment in Bostonhttps://www.rfc1437.de/2007/02/02/non-terrorist-embarrassment-in-boston/We need to remove this access barrier before it gets put up. (Incandescent lighting ban in California.)https://www.rfc1437.de/2007/02/02/we-need-to-remove-this-access-barrier-before-it/An Iron Curtain is Descending: And Most Americans Don''t Knowhttps://www.rfc1437.de/2007/02/01/an-iron-curtain-is-descending-and-most-americans/Courtney Love does the mathhttps://www.rfc1437.de/2007/02/01/courtney-love-does-the-math/King Mojohttps://www.rfc1437.de/2007/02/01/king-mojo/US urges scientists to block out sunhttps://www.rfc1437.de/2007/01/31/us-urges-scientists-to-block-out-sun/Village May Have Housed Builders of Stonehengehttps://www.rfc1437.de/2007/01/31/village-may-have-housed-builders-of-stonehenge/Worldmapper: The world as you''ve never seen it beforehttps://www.rfc1437.de/2007/01/31/worldmapper-the-world-as-you-ve-never-seen-it/Yes - in 10 years we may have no bananashttps://www.rfc1437.de/2007/01/31/yes-in-10-years-we-may-have-no-bananas/Auf in den Überwachungsstaathttps://www.rfc1437.de/2007/01/30/auf-in-den-ueberwachungsstaat/''Hobbit'' human ''is a new species''https://www.rfc1437.de/2007/01/30/hobbit-human-is-a-new-species/Legal wrangle puts India's generic drugs at riskhttps://www.rfc1437.de/2007/01/30/legal-wrangle-puts-india-s-generic-drugs-at-risk/Microsoft copies BlueJ, admits it, then patents ithttps://www.rfc1437.de/2007/01/29/microsoft-copies-bluej-admits-it-then-patents-it/SOLL & HABEN: Die Doppelmoral des Rechtsanwalts Joachim N. Steinhöfelhttps://www.rfc1437.de/2007/01/29/soll-haben-die-doppelmoral-des-rechtsanwalts/Blogs mit Link-Redirector haben doofe Ohrenhttps://www.rfc1437.de/2007/01/26/blogs-mit-link-redirector-haben-doofe-ohren/Life Is Complicatedhttps://www.rfc1437.de/2007/01/26/life-is-complicated/Mindestlöhne in Europahttps://www.rfc1437.de/2007/01/26/mindestloehne-in-europa/Musikindustrie: Regierung will Urheberrecht zum "zahnlosen Tiger" machenhttps://www.rfc1437.de/2007/01/26/musikindustrie-regierung-will-urheberrecht-zum/Willard Wigan :: Micro Sculptorhttps://www.rfc1437.de/2007/01/26/willard-wigan-micro-sculptor/Exotischer Tiefseehai ins Netz gegangenhttps://www.rfc1437.de/2007/01/25/exotischer-tiefseehai-ins-netz-gegangen/frozen waveshttps://www.rfc1437.de/2007/01/25/frozen-waves/Interview with muslix64, Developer of BackupHDDVDhttps://www.rfc1437.de/2007/01/25/interview-with-muslix64-developer-of-backuphddvd/"Münstersche Zeitung": Verleger stellt ganze Redaktion kalthttps://www.rfc1437.de/2007/01/25/muenstersche-zeitung-verleger-stellt-ganze/Reddit.com User Agreementhttps://www.rfc1437.de/2007/01/25/reddit-com-user-agreement/Regular Expression Matching Can Be Simple And Fasthttps://www.rfc1437.de/2007/01/25/regular-expression-matching-can-be-simple-and-fast/The Text Editor samhttps://www.rfc1437.de/2007/01/25/the-text-editor-sam/The truth about working in the IT industryhttps://www.rfc1437.de/2007/01/25/the-truth-about-working-in-the-it-industry/Literature and Latte - Scrivenerhttps://www.rfc1437.de/2007/01/24/literature-and-latte-scrivener/Pando (tree)https://www.rfc1437.de/2007/01/24/pando-tree/Bundestag: Abhörgeräte in Abgeordnetenbüro?https://www.rfc1437.de/2007/01/23/bundestag-abhoergeraete-in-abgeordnetenbuero/IronPython und libsecondlifehttps://www.rfc1437.de/2007/01/23/ironpython-und-libsecondlife/macfusehttps://www.rfc1437.de/2007/01/23/macfuse/.NET Languageshttps://www.rfc1437.de/2007/01/23/net-languages/News -Anfängerfehler in Mac OS Xhttps://www.rfc1437.de/2007/01/23/news-anfaengerfehler-in-mac-os-x/Rinderbraten und Brötchenhttps://www.rfc1437.de/2007/01/23/rinderbraten-und-broetchen/identiconhttps://www.rfc1437.de/2007/01/22/identicon/M is for monkeyhttps://www.rfc1437.de/2007/01/22/m-is-for-monkey/Geschichte ab 1945https://www.rfc1437.de/2007/01/19/geschichte-ab-1945/Pointless Sites - Useless Siteshttps://www.rfc1437.de/2007/01/19/pointless-sites-useless-sites/Polyglothttps://www.rfc1437.de/2007/01/19/polyglot/Tupper's Self-Referential Formulahttps://www.rfc1437.de/2007/01/19/tupper-s-self-referential-formula/Bill & M. Gates foundation for-profit investments harm the health & environment of the poorhttps://www.rfc1437.de/2007/01/18/bill-m-gates-foundation-for-profit-investments/Think Gloves!https://www.rfc1437.de/2007/01/18/think-gloves/Think Gloveshttps://www.rfc1437.de/2007/01/18/think-gloves-2/Nutzerdaten sollen zur Gefahrenabwehr freigeben werdenhttps://www.rfc1437.de/2007/01/17/nutzerdaten-sollen-zur-gefahrenabwehr-freigeben/Python for Maemohttps://www.rfc1437.de/2007/01/17/python-for-maemo/Second Life - warum?https://www.rfc1437.de/2007/01/17/second-life-warum/Take The AQ Testhttps://www.rfc1437.de/2007/01/16/take-the-aq-test/DIY Guide: Your own Supervillain Hideout aka tailrace tunnel of Niagarahttps://www.rfc1437.de/2007/01/15/diy-guide-your-own-supervillain-hideout-aka/Entity Crisis: Unity3D Evaluated. Wow.https://www.rfc1437.de/2007/01/15/entity-crisis-unity3d-evaluated-wow/Generalverdacht gegen alle Kreditkartenbesitzerhttps://www.rfc1437.de/2007/01/15/generalverdacht-gegen-alle-kreditkartenbesitzer/Photography of the Unexpected and Neglected Architecture - Yves Marchand & Romain Meffrehttps://www.rfc1437.de/2007/01/15/photography-of-the-unexpected-and-neglected/The Jaquet-Droz androids, three extraordinary automatonshttps://www.rfc1437.de/2007/01/15/the-jaquet-droz-androids-three-extraordinary/XO Wavehttps://www.rfc1437.de/2007/01/15/xo-wave/2006 Darwin Awardshttps://www.rfc1437.de/2007/01/12/2006-darwin-awards/macfusehttps://www.rfc1437.de/2007/01/12/macfuse-2/Mehr Schweine als Menschen in Niedersachsenhttps://www.rfc1437.de/2007/01/12/mehr-schweine-als-menschen-in-niedersachsen/Robert A. Wilson gestorbenhttps://www.rfc1437.de/2007/01/12/robert-a-wilson-gestorben/soviet roadside bus-stopshttps://www.rfc1437.de/2007/01/12/soviet-roadside-bus-stops/eBayhttps://www.rfc1437.de/2007/01/11/ebay/Mindestlohnhttps://www.rfc1437.de/2007/01/11/mindestlohn/StudiVZ: "Gegendarstellung" per Defacement [Update]https://www.rfc1437.de/2007/01/11/studivz-gegendarstellung-per-defacement-update/Tappt Blu-ray in die Anti-Porno-Falle?https://www.rfc1437.de/2007/01/11/tappt-blu-ray-in-die-anti-porno-falle/Zwei Programmierstellen für den "Bundestrojaner"https://www.rfc1437.de/2007/01/11/zwei-programmierstellen-fuer-den-bundestrojaner/Fab @ Homehttps://www.rfc1437.de/2007/01/10/fab-home/GeeXboX uShare UPnP A/V Media Server HomePagehttps://www.rfc1437.de/2007/01/10/geexbox-ushare-upnp-a-v-media-server-homepage/Magnatune: free MP3 music and music licensinghttps://www.rfc1437.de/2007/01/10/magnatune-free-mp3-music-and-music-licensing/Need a Painter?https://www.rfc1437.de/2007/01/10/need-a-painter/RepRaphttps://www.rfc1437.de/2007/01/10/reprap/towboathttps://www.rfc1437.de/2007/01/10/towboat/Wikipedia Skinshttps://www.rfc1437.de/2007/01/10/wikipedia-skins/Correo - a new mail client for OS Xhttps://www.rfc1437.de/2007/01/09/correo-a-new-mail-client-for-os-x/If You Don’t Have the Balls to be Hated, Then You Don’t Deserve to be Lovedhttps://www.rfc1437.de/2007/01/09/if-you-don-t-have-the-balls-to-be-hated-then-you/Kinderpornografie im Internet: Fahnder überprüfen erstmals alle deutschen Kreditkartenhttps://www.rfc1437.de/2007/01/09/kinderpornografie-im-internet-fahnder/chaostables - Ideas for firewallinghttps://www.rfc1437.de/2007/01/08/chaostables-ideas-for-firewalling/Free Will: Now You Have It, Now You Don’thttps://www.rfc1437.de/2007/01/08/free-will-now-you-have-it-now-you-don-t/Look around youhttps://www.rfc1437.de/2007/01/08/look-around-you/Max (Macintosh Audio for OS X)https://www.rfc1437.de/2007/01/08/max-macintosh-audio-for-os-x/Momofuku Andohttps://www.rfc1437.de/2007/01/08/momofuku-ando/Nokia N800 is now public & available!https://www.rfc1437.de/2007/01/08/nokia-n800-is-now-public-available/Ophcrackhttps://www.rfc1437.de/2007/01/08/ophcrack/Second life goes open sourcehttps://www.rfc1437.de/2007/01/08/second-life-goes-open-source/Skype für das Nokia Tablethttps://www.rfc1437.de/2007/01/08/skype-fuer-das-nokia-tablet/What really happened on Mars? -- Authoritative Accounthttps://www.rfc1437.de/2007/01/08/what-really-happened-on-mars-authoritative-account/GWUP - Willkommen bei den Skeptikern!https://www.rfc1437.de/2007/01/04/gwup-willkommen-bei-den-skeptikern/Health Of Brazilian Rainforest Depends On Dust From One Valley In Africahttps://www.rfc1437.de/2007/01/04/health-of-brazilian-rainforest-depends-on-dust/Amazon mystery: pricing of bookshttps://www.rfc1437.de/2007/01/03/amazon-mystery-pricing-of-books/Der VRS fördert minderjährige Raucher!https://www.rfc1437.de/2007/01/03/der-vrs-foerdert-minderjaehrige-raucher/FBI: Workers saw prisoner abuse at Guantanamohttps://www.rfc1437.de/2007/01/03/fbi-workers-saw-prisoner-abuse-at-guantanamo/Pegasus fliegt nicht mehrhttps://www.rfc1437.de/2007/01/03/pegasus-fliegt-nicht-mehr/soso, 2007 ...https://www.rfc1437.de/2007/01/03/soso-2007/cutmp3https://www.rfc1437.de/2006/12/29/cutmp3/Dallas Food - What's Noka Worth? (Part 1)https://www.rfc1437.de/2006/12/29/dallas-food-what-s-noka-worth-part-1/How Old is the Grand Canyon? Park Service Won't Say.https://www.rfc1437.de/2006/12/29/how-old-is-the-grand-canyon-park-service-won-t-say/Pushtunwali, Honour among themhttps://www.rfc1437.de/2006/12/28/pushtunwali-honour-among-them/SLeekhttps://www.rfc1437.de/2006/12/28/sleek/Der Große Bruder im privaten Computerhttps://www.rfc1437.de/2006/12/27/der-grosse-bruder-im-privaten-computer/"Billy''s Band - Clap Hands" Live at the 6th Russian Rock Festival in New Yorkhttps://www.rfc1437.de/2006/12/23/billy-s-band-clap-hands-live-at-the-6th-russian/Bildzeitung erscheint in Second Lifehttps://www.rfc1437.de/2006/12/15/bildzeitung-erscheint-in-second-life/Google Pagerank Algorithmhttps://www.rfc1437.de/2006/12/15/google-pagerank-algorithm/MySQL Quietly Drops Support for Most Linux Distributionshttps://www.rfc1437.de/2006/12/15/mysql-quietly-drops-support-for-most-linux/Olympische Abmahnung: Saftblog gibt aufhttps://www.rfc1437.de/2006/12/15/olympische-abmahnung-saftblog-gibt-auf/Real-World Passwordshttps://www.rfc1437.de/2006/12/15/real-world-passwords/john sore & his afro-safetyhttps://www.rfc1437.de/2006/12/14/john-sore-his-afro-safety/Man with no pulse considered a medical breakthroughhttps://www.rfc1437.de/2006/12/14/man-with-no-pulse-considered-a-medical/ajp-wsgihttps://www.rfc1437.de/2006/12/13/ajp-wsgi/EU-Parlament stimmt für Liberalisierung der Fernsehwerbunghttps://www.rfc1437.de/2006/12/13/eu-parlament-stimmt-fuer-liberalisierung-der/LibSecondLife-Javahttps://www.rfc1437.de/2006/12/13/libsecondlife-java/Object Debuggerhttps://www.rfc1437.de/2006/12/13/object-debugger/Retired from security@php.nethttps://www.rfc1437.de/2006/12/13/retired-from-security-php-net/BGH verbietet Online-Durchsuchung von Computersystemenhttps://www.rfc1437.de/2006/12/11/bgh-verbietet-online-durchsuchung-von/Map of the Internethttps://www.rfc1437.de/2006/12/11/map-of-the-internet/Schäuble: Internet ist "Fernuniversität und Trainingscamp" für Terroristenhttps://www.rfc1437.de/2006/12/11/schaeuble-internet-ist-fernuniversitaet-und/Fließend Wasser auf dem Marshttps://www.rfc1437.de/2006/12/07/fliessend-wasser-auf-dem-mars/Online-Durchsuchung von PCs durch Strafverfolger und Verfassungsschutzhttps://www.rfc1437.de/2006/12/07/online-durchsuchung-von-pcs-durch-strafverfolger/Putziges aus der Blogosphärehttps://www.rfc1437.de/2006/12/07/putziges-aus-der-blogosphaere/Angeblich 200.000 deutschsprachige Bombenbauanleitungen im Netzhttps://www.rfc1437.de/2006/12/06/angeblich-200-000-deutschsprachige/Crossroadshttps://www.rfc1437.de/2006/12/06/crossroads/Swivel Aims To Become The Internet Archive For Datahttps://www.rfc1437.de/2006/12/06/swivel-aims-to-become-the-internet-archive-for/Top 10 Marijuana Mythshttps://www.rfc1437.de/2006/12/06/top-10-marijuana-myths/Ball gegen Bahn: 1 zu 0https://www.rfc1437.de/2006/12/05/ball-gegen-bahn-1-zu-0/Giving It Awayhttps://www.rfc1437.de/2006/12/05/giving-it-away/Mecklenburg-Vorpommern bleibt auf Großteil der G8-Kosten sitzenhttps://www.rfc1437.de/2006/12/05/mecklenburg-vorpommern-bleibt-auf-grossteil-der/Musicovery : interactive webRadiohttps://www.rfc1437.de/2006/12/05/musicovery-interactive-webradio/You cannot rely on JavaScript being available. Period.https://www.rfc1437.de/2006/12/05/you-cannot-rely-on-javascript-being-available/Database test: dual Intel Xeon 5160 (6/6)https://www.rfc1437.de/2006/12/04/database-test-dual-intel-xeon-5160-6-6/Internationale Suche nach Hamburgs Ex-Senator Schillhttps://www.rfc1437.de/2006/12/04/internationale-suche-nach-hamburgs-ex-senator/Man kriegt es überallhttps://www.rfc1437.de/2006/12/04/man-kriegt-es-ueberall/Richard Dawkinshttps://www.rfc1437.de/2006/12/04/richard-dawkins/Sieben Milliarden für IT-Projekt der Bundeswehrhttps://www.rfc1437.de/2006/12/04/sieben-milliarden-fuer-it-projekt-der-bundeswehr/Siemens-Manager packt im Korruptionsskandal aushttps://www.rfc1437.de/2006/12/04/siemens-manager-packt-im-korruptionsskandal-aus/The Post-Rapture Post - Send Messages to Loved Ones!https://www.rfc1437.de/2006/12/04/the-post-rapture-post-send-messages-to-loved-ones/Verfassungssschützer würde Folter-Geständnisse nutzenhttps://www.rfc1437.de/2006/12/04/verfassungssschuetzer-wuerde-folter-gestaendnisse/Adobe Photoshop Textures and Patterns Tutorialshttps://www.rfc1437.de/2006/12/01/adobe-photoshop-textures-and-patterns-tutorials/"Satan and the Damned" schocken Kundenhttps://www.rfc1437.de/2006/12/01/satan-and-the-damned-schocken-kunden/Startling Discovery: The First Human Ritualhttps://www.rfc1437.de/2006/12/01/startling-discovery-the-first-human-ritual/VRML / X3D und 3D-Präsentationenhttps://www.rfc1437.de/2006/12/01/vrml-x3d-und-3d-praesentationen/Antike Feinmechanikhttps://www.rfc1437.de/2006/11/30/antike-feinmechanik/Firefoxhttps://www.rfc1437.de/2006/11/30/firefox/Kabinett beschließt Rente mit 67https://www.rfc1437.de/2006/11/30/kabinett-beschliesst-rente-mit-67/Sofanet startet Nachbarschafts-WLANhttps://www.rfc1437.de/2006/11/30/sofanet-startet-nachbarschafts-wlan/Stop Motion Piano And Drumshttps://www.rfc1437.de/2006/11/30/stop-motion-piano-and-drums/Zensurvorwürfe gegen EU-Bericht zur IT-Zukunfthttps://www.rfc1437.de/2006/11/30/zensurvorwuerfe-gegen-eu-bericht-zur-it-zukunft/3D Game Programming All in One with CDROM (Course Technology PTR Game Development Series): English Books: Kenneth C. Finneyhttps://www.rfc1437.de/2006/11/29/3d-game-programming-all-in-one-with-cdrom-course/A Leap Backhttps://www.rfc1437.de/2006/11/29/a-leap-back/The Official QuArK websitehttps://www.rfc1437.de/2006/11/29/the-official-quark-website/10 Minute Mailhttps://www.rfc1437.de/2006/11/28/10-minute-mail/4 Jahre bloggenhttps://www.rfc1437.de/2006/11/28/4-jahre-bloggen/Kopierschutz von Microsofts Zune geknackthttps://www.rfc1437.de/2006/11/28/kopierschutz-von-microsofts-zune-geknackt/3D-Atlas Gaia nicht mehr verfügbarhttps://www.rfc1437.de/2006/11/27/3d-atlas-gaia-nicht-mehr-verfuegbar/hexfiendhttps://www.rfc1437.de/2006/11/27/hexfiend/"Peinliche Pleite von Axel Schulz"https://www.rfc1437.de/2006/11/27/peinliche-pleite-von-axel-schulz/Rückkehr der Paper Disk: 256 GByte auf A4-Blatthttps://www.rfc1437.de/2006/11/27/rueckkehr-der-paper-disk-256-gbyte-auf-a4-blatt/Übereifrige Spam-Blockliste sperrt Server4You-Adressenhttps://www.rfc1437.de/2006/11/27/uebereifrige-spam-blockliste-sperrt-server4you/Wenn die Anti-Korruptionsabteilung bei der Korruption beteiligt isthttps://www.rfc1437.de/2006/11/27/wenn-die-anti-korruptionsabteilung-bei-der/EU darf Bankdaten nicht an die USA übermittelnhttps://www.rfc1437.de/2006/11/24/eu-darf-bankdaten-nicht-an-die-usa-uebermitteln/FairGamehttps://www.rfc1437.de/2006/11/24/fairgame/Gefälschte Waren gefährden Second Lifehttps://www.rfc1437.de/2006/11/24/gefaelschte-waren-gefaehrden-second-life/M8, a missed opportunityhttps://www.rfc1437.de/2006/11/24/m8-a-missed-opportunity/Mannesmann-Prozess vor dem Aushttps://www.rfc1437.de/2006/11/24/mannesmann-prozess-vor-dem-aus/StudiVZ: 700 Stalker und der Datenschutzhttps://www.rfc1437.de/2006/11/24/studivz-700-stalker-und-der-datenschutz/Owl Contenthttps://www.rfc1437.de/2006/11/23/owl-content-2/Tausende Strafverfahren gegen Internet-Kaffeekäuferhttps://www.rfc1437.de/2006/11/23/tausende-strafverfahren-gegen-internet/Flickr: Camera Finderhttps://www.rfc1437.de/2006/11/22/flickr-camera-finder/kontrollierte Heroinabgabe vor dem Aus?https://www.rfc1437.de/2006/11/22/kontrollierte-heroinabgabe-vor-dem-aus/SAP Network usehttps://www.rfc1437.de/2006/11/22/sap-network-use/The Rolex Awards: a cheap technique for food preservation, M. B. Abbahttps://www.rfc1437.de/2006/11/22/the-rolex-awards-a-cheap-technique-for-food/United States Patent Application: 0060242178https://www.rfc1437.de/2006/11/22/united-states-patent-application-0060242178/3D Game Textures: Create Professional Game Art Using Photoshop: Books: Luke Ahearnhttps://www.rfc1437.de/2006/11/21/3d-game-textures-create-professional-game-art/Coccinella | Jabber client with integrated whiteboardhttps://www.rfc1437.de/2006/11/21/coccinella-jabber-client-with-integrated/Forderungen nach Verbot von Killerspielen werden lauterhttps://www.rfc1437.de/2006/11/21/forderungen-nach-verbot-von-killerspielen-werden/The Dark Side of Game Texturing: Books: David Fransonhttps://www.rfc1437.de/2006/11/21/the-dark-side-of-game-texturing-books-david/Cracked it!https://www.rfc1437.de/2006/11/20/cracked-it/Getting Cute with the GPLhttps://www.rfc1437.de/2006/11/20/getting-cute-with-the-gpl/Microsoft-Chef: Linux "nutzt unser geistiges Eigentum"https://www.rfc1437.de/2006/11/20/microsoft-chef-linux-nutzt-unser-geistiges/Online-Preisvergleich für Zahnarztpatienten untersagthttps://www.rfc1437.de/2006/11/20/online-preisvergleich-fuer-zahnarztpatienten/Schiesserei an Schule in Emsdettenhttps://www.rfc1437.de/2006/11/20/schiesserei-an-schule-in-emsdetten/Stopping spam with the Anti-Spam-SMTP-Proxy (ASSP)https://www.rfc1437.de/2006/11/20/stopping-spam-with-the-anti-spam-smtp-proxy-assp/If I dig a very deep hole, where I go to stop?https://www.rfc1437.de/2006/11/16/if-i-dig-a-very-deep-hole-where-i-go-to-stop/The Zfone Projecthttps://www.rfc1437.de/2006/11/16/the-zfone-project/E-Mail-Konto nur noch gegen Personalausweis?https://www.rfc1437.de/2006/11/15/e-mail-konto-nur-noch-gegen-personalausweis/StudiVZ - Der Hitler-Screenshot und der Käufer Facebookhttps://www.rfc1437.de/2006/11/15/studivz-der-hitler-screenshot-und-der-kaeufer/Der Lotto-Zwangsproxyhttps://www.rfc1437.de/2006/11/13/der-lotto-zwangsproxy/E-Votinghttps://www.rfc1437.de/2006/11/13/e-voting/Freie Wähler fühlen sich erpresst: Koch weist Vorwürfe als "absurd" zurückhttps://www.rfc1437.de/2006/11/13/freie-waehler-fuehlen-sich-erpresst-koch-weist/Merkel plädiert für mehr Überwachung trotz hoher Sicherheithttps://www.rfc1437.de/2006/11/13/merkel-plaediert-fuer-mehr-ueberwachung-trotz/Guidelines for Platonic Friendshiphttps://www.rfc1437.de/2006/11/10/guidelines-for-platonic-friendship/JMRI Defense: Our Story So Farhttps://www.rfc1437.de/2006/11/10/jmri-defense-our-story-so-far/Richter stärken Datenschutz für Versichertehttps://www.rfc1437.de/2006/11/10/richter-staerken-datenschutz-fuer-versicherte/Basso zu Discoveryhttps://www.rfc1437.de/2006/11/09/basso-zu-discovery/Croatia - Plitvicka Jezera National Park - waterfalls, Plitvicka, Croatiahttps://www.rfc1437.de/2006/11/09/croatia-plitvicka-jezera-national-park-waterfalls/Innenminister Schünemann: T-Mobile behindert Strafverfolgunghttps://www.rfc1437.de/2006/11/09/innenminister-schuenemann-t-mobile-behindert/TEH INTERNETShttps://www.rfc1437.de/2006/11/09/teh-internets/Woo Math: Steiner and Theosophical Mathhttps://www.rfc1437.de/2006/11/09/woo-math-steiner-and-theosophical-math/CSSEdithttps://www.rfc1437.de/2006/11/08/cssedit/Die Mythen der Arbeitgeberhttps://www.rfc1437.de/2006/11/08/die-mythen-der-arbeitgeber/Fefe's Bloghttps://www.rfc1437.de/2006/11/08/fefe-s-blog/JumpBoxhttps://www.rfc1437.de/2006/11/08/jumpbox/Perian - The swiss-army knife of QuickTime® componentshttps://www.rfc1437.de/2006/11/08/perian-the-swiss-army-knife-of-quicktime/Statistiken über Copyright-Verstöße sind übertriebenhttps://www.rfc1437.de/2006/11/08/statistiken-ueber-copyright-verstoesse-sind/Studie: Jeder vierte Deutsche wünscht sich eine einzige Partei der “Volksgemeinschaft”https://www.rfc1437.de/2006/11/08/studie-jeder-vierte-deutsche-wuenscht-sich-eine/Datenschützer spricht offen vom Weg in den Überwachungsstaathttps://www.rfc1437.de/2006/11/07/datenschuetzer-spricht-offen-vom-weg-in-den/Efficient JavaScripthttps://www.rfc1437.de/2006/11/07/efficient-javascript/Fission for Mac OS Xhttps://www.rfc1437.de/2006/11/07/fission-for-mac-os-x/incheshttps://www.rfc1437.de/2006/11/07/inches/Light Zonehttps://www.rfc1437.de/2006/11/07/light-zone/Personalauswahl per Gesichtsanalyse: Verräterische Beule am Kopfhttps://www.rfc1437.de/2006/11/07/personalauswahl-per-gesichtsanalyse/Urteil: T-Online darf Verbindungsdaten nicht speichernhttps://www.rfc1437.de/2006/11/07/urteil-t-online-darf-verbindungsdaten-nicht/VIA schließt Treiberquellenhttps://www.rfc1437.de/2006/11/07/via-schliesst-treiberquellen/World Mysteries - Voynich Manuscripthttps://www.rfc1437.de/2006/11/07/world-mysteries-voynich-manuscript/Ballmer Invites Patent Talks with Competing Linux Vendorshttps://www.rfc1437.de/2006/11/06/ballmer-invites-patent-talks-with-competing-linux/Bill Gates warnt vor digitaler Spaltung in Deutschlandhttps://www.rfc1437.de/2006/11/06/bill-gates-warnt-vor-digitaler-spaltung-in/Brandenburg: Neonazis schlagen Journalistin niederhttps://www.rfc1437.de/2006/11/06/brandenburg-neonazis-schlagen-journalistin-nieder/Kündigungsschutz: Glos'' Pläne in der Kritikhttps://www.rfc1437.de/2006/11/06/kuendigungsschutz-glos-plaene-in-der-kritik/Millionen Europäer saßen im Dunkelnhttps://www.rfc1437.de/2006/11/06/millionen-europaeer-sassen-im-dunkeln/Programming in Colorhttps://www.rfc1437.de/2006/11/06/programming-in-color/Torque : TGEhttps://www.rfc1437.de/2006/11/06/torque-tge/Britischer Angriff auf die Telekomhttps://www.rfc1437.de/2006/11/03/britischer-angriff-auf-die-telekom/Das Ende von Second Life: Bild kommt!https://www.rfc1437.de/2006/11/03/das-ende-von-second-life-bild-kommt/Korrumpierte Pharma-Forschunghttps://www.rfc1437.de/2006/11/03/korrumpierte-pharma-forschung/Man removes sharp hand tool from rear at gunpointhttps://www.rfc1437.de/2006/11/03/man-removes-sharp-hand-tool-from-rear-at-gunpoint/THANK GOODNESS! by Daniel C Dennetthttps://www.rfc1437.de/2006/11/03/thank-goodness-by-daniel-c-dennett/The Parable of the Two Programmershttps://www.rfc1437.de/2006/11/03/the-parable-of-the-two-programmers/With Microscope and Tweezers: Chronologyhttps://www.rfc1437.de/2006/11/03/with-microscope-and-tweezers-chronology/Artists in Metal—Mark Hohttps://www.rfc1437.de/2006/11/02/artists-in-metal-mark-ho/Explosion erschüttert PayPal-Hauptquartierhttps://www.rfc1437.de/2006/11/02/explosion-erschuettert-paypal-hauptquartier/Geldscheine lösen sich aufhttps://www.rfc1437.de/2006/11/02/geldscheine-loesen-sich-auf/Jamendo : Mach die Ohren aufhttps://www.rfc1437.de/2006/11/02/jamendo-mach-die-ohren-auf/Nasa will Weltraumteleskop Hubble doch reparierenhttps://www.rfc1437.de/2006/11/02/nasa-will-weltraumteleskop-hubble-doch-reparieren/The "C is Efficient" Language Fallacyhttps://www.rfc1437.de/2006/11/02/the-c-is-efficient-language-fallacy/The Django Bookhttps://www.rfc1437.de/2006/11/02/the-django-book/Weniger Rechte für Personalräte im öffentlichen Diensthttps://www.rfc1437.de/2006/11/02/weniger-rechte-fuer-personalraete-im/World''s smallest fish title in dispute, new marine species is 20% smallerhttps://www.rfc1437.de/2006/11/02/world-s-smallest-fish-title-in-dispute-new-marine/Charlie's Diary: "The book is not that interesting, as tales of desperation and survival are actually quite common."https://www.rfc1437.de/2006/10/31/charlie-s-diary-the-book-is-not-that-interesting/Converting Pi to binaryhttps://www.rfc1437.de/2006/10/31/converting-pi-to-binary/Electronic Voting Machineshttps://www.rfc1437.de/2006/10/31/electronic-voting-machines/Leica M8 Reviewhttps://www.rfc1437.de/2006/10/31/leica-m8-review/SDU-Wahlcomputer von niederländischen Parlamentswahlen ausgeschlossenhttps://www.rfc1437.de/2006/10/31/sdu-wahlcomputer-von-niederlaendischen/Six Word Stories about Programming Languageshttps://www.rfc1437.de/2006/10/31/six-word-stories-about-programming-languages/Skandal um Protestaktion privater Krankenkassenhttps://www.rfc1437.de/2006/10/31/skandal-um-protestaktion-privater-krankenkassen/Small crimes against the planethttps://www.rfc1437.de/2006/10/31/small-crimes-against-the-planet/Staatsanwaltschaft darf GVU nicht bei Urheberrechtsermittlungen beiziehenhttps://www.rfc1437.de/2006/10/31/staatsanwaltschaft-darf-gvu-nicht-bei/Alice and Bobhttps://www.rfc1437.de/2006/10/30/alice-and-bob/Good Math, Bad Math : Pathological Programming: Ignorance is Bliss, or at least control.https://www.rfc1437.de/2006/10/30/good-math-bad-math-pathological-programming/Good Math, Bad Math : Prime Number Pathology: Fractranhttps://www.rfc1437.de/2006/10/30/good-math-bad-math-prime-number-pathology-fractran/Molecule of the Day: L-Methamphetamine (Would you believe this is over the counter?)https://www.rfc1437.de/2006/10/30/molecule-of-the-day-l-methamphetamine-would-you/"Push! push! push!"https://www.rfc1437.de/2006/10/30/push-push-push/WebSnaprhttps://www.rfc1437.de/2006/10/30/websnapr/Weichensteller krank: Bahnstrecke stundenlang gesperrthttps://www.rfc1437.de/2006/10/30/weichensteller-krank-bahnstrecke-stundenlang/Bundesregierung will Kundendaten für vorbeugende Straftatenbekämpfunghttps://www.rfc1437.de/2006/10/27/bundesregierung-will-kundendaten-fuer-vorbeugende/Der Wahlschrankhttps://www.rfc1437.de/2006/10/27/der-wahlschrank/Dubioser Verein mahnt massenhaft eBay-Händler abhttps://www.rfc1437.de/2006/10/27/dubioser-verein-mahnt-massenhaft-ebay-haendler-ab/Miss Congenialityhttps://www.rfc1437.de/2006/10/27/miss-congeniality/OpenGL Tools for Serious Graphics Developmenthttps://www.rfc1437.de/2006/10/27/opengl-tools-for-serious-graphics-development/Oracle Linux uncoveredhttps://www.rfc1437.de/2006/10/27/oracle-linux-uncovered/The elephant and the event horizonhttps://www.rfc1437.de/2006/10/27/the-elephant-and-the-event-horizon/The Victorian Internethttps://www.rfc1437.de/2006/10/27/the-victorian-internet/Analyse von SpamThruhttps://www.rfc1437.de/2006/10/25/analyse-von-spamthru/Bericht der CCC-Wahlbeobachtergruppe von der Oberbürgermeisterwahl in Cottbushttps://www.rfc1437.de/2006/10/25/bericht-der-ccc-wahlbeobachtergruppe-von-der/Elektrosmog : Heiße Gesprächehttps://www.rfc1437.de/2006/10/25/elektrosmog-heisse-gespraeche/LEG wird privatisierthttps://www.rfc1437.de/2006/10/25/leg-wird-privatisiert/Mac OS X "Leopard" mit erweiterter Zugriffskontrollehttps://www.rfc1437.de/2006/10/25/mac-os-x-leopard-mit-erweiterter-zugriffskontrolle/new snapshot tarballs finallyhttps://www.rfc1437.de/2006/10/25/new-snapshot-tarballs-finally/Error Message: Your Password Must Be at Least 18770 Characters and Cannot Repeat Any of Your Previous 30689 Passwordshttps://www.rfc1437.de/2006/10/24/error-message-your-password-must-be-at-least/Köhler stoppt Privatisierung der Flugsicherunghttps://www.rfc1437.de/2006/10/24/koehler-stoppt-privatisierung-der-flugsicherung/Ogogliohttps://www.rfc1437.de/2006/10/24/ogoglio/Pihttps://www.rfc1437.de/2006/10/24/pi/Pressefreiheit immer mehr bedrohthttps://www.rfc1437.de/2006/10/24/pressefreiheit-immer-mehr-bedroht/Towel Incident At The Westin Tokyohttps://www.rfc1437.de/2006/10/24/towel-incident-at-the-westin-tokyo/Fefe's Bloghttps://www.rfc1437.de/2006/10/23/fefe-s-blog-3/Fefe's Bloghttps://www.rfc1437.de/2006/10/23/fefe-s-blog-4/Kategorie Verbraucherschutz: Verband deutscher Versicherer — BigBrotherAwardshttps://www.rfc1437.de/2006/10/23/kategorie-verbraucherschutz-verband-deutscher/Unmut über Honorarsystem: Ärzte schließen Praxenhttps://www.rfc1437.de/2006/10/23/unmut-ueber-honorarsystem-aerzte-schliessen-praxen/Wohnungen sollen aus REIT-Gesetz gestrichen werdenhttps://www.rfc1437.de/2006/10/23/wohnungen-sollen-aus-reit-gesetz-gestrichen-werden/Bundestags-Petition gegen Wahlcomputerhttps://www.rfc1437.de/2006/10/20/bundestags-petition-gegen-wahlcomputer/Auch beim Bildblog rechnen Milchmädchenhttps://www.rfc1437.de/2006/10/18/auch-beim-bildblog-rechnen-milchmaedchen/Das Diktat der Meritokratenhttps://www.rfc1437.de/2006/10/18/das-diktat-der-meritokraten/Ralph Griswold diedhttps://www.rfc1437.de/2006/10/18/ralph-griswold-died/Teen Using MySpace to Lure Bands to Los Angeleshttps://www.rfc1437.de/2006/10/18/teen-using-myspace-to-lure-bands-to-los-angeles/Addressbook X LDAPhttps://www.rfc1437.de/2006/10/17/addressbook-x-ldap/Edelentmant: Lüge, Bestechung und Diffamierung statt Dialoghttps://www.rfc1437.de/2006/10/17/edelentmant-luege-bestechung-und-diffamierung/Unternehmen kehren reumütig aus dem Osten zurückhttps://www.rfc1437.de/2006/10/17/unternehmen-kehren-reumuetig-aus-dem-osten-zurueck/Glos will flexiblere Lehrlingehttps://www.rfc1437.de/2006/10/16/glos-will-flexiblere-lehrlinge/Innen-Staatssekretär: Internet wichtiges Mittel für Islamistenhttps://www.rfc1437.de/2006/10/16/innen-staatssekretaer-internet-wichtiges-mittel/Terror-Zahnärztehttps://www.rfc1437.de/2006/10/16/terror-zahnaerzte/Would you like fries with your spyware?https://www.rfc1437.de/2006/10/16/would-you-like-fries-with-your-spyware/Vista Licenses Limit OS Transfers, Ban VM Usehttps://www.rfc1437.de/2006/10/13/vista-licenses-limit-os-transfers-ban-vm-use/World’s worst use of a jpeghttps://www.rfc1437.de/2006/10/13/world-s-worst-use-of-a-jpeg/Concrete and Clayhttps://www.rfc1437.de/2006/10/12/concrete-and-clay/doctor paradox: the metaphysician.https://www.rfc1437.de/2006/10/12/doctor-paradox-the-metaphysician/G2Imagehttps://www.rfc1437.de/2006/10/12/g2image/HotBitchArsenalhttps://www.rfc1437.de/2006/10/12/hotbitcharsenal/Paulo Sacramento - creative commons soundtracks and photoshttps://www.rfc1437.de/2006/10/12/paulo-sacramento-creative-commons-soundtracks-and/Simple image manager/uploaderhttps://www.rfc1437.de/2006/10/12/simple-image-manager-uploader/Stromausfall beim Hoster Hetzner legte tausende Server lahmhttps://www.rfc1437.de/2006/10/12/stromausfall-beim-hoster-hetzner-legte-tausende/TinyMCE Javascript Content Editorhttps://www.rfc1437.de/2006/10/12/tinymce-javascript-content-editor/Schünemann fordert Verbot des Herunterladens von Hassbotschaftenhttps://www.rfc1437.de/2006/10/11/schuenemann-fordert-verbot-des-herunterladens-von/Bioresonanz, Psychotronik und Homöopathie: My hairy Asshttps://www.rfc1437.de/2006/10/10/bioresonanz-psychotronik-und-homoeopathie-my/Böse große Verlage, arme kleine Übersetzerhttps://www.rfc1437.de/2006/10/10/boese-grosse-verlage-arme-kleine-uebersetzer/Fabjectoryhttps://www.rfc1437.de/2006/10/10/fabjectory/Genealogische Datenbank: Vornamenhttps://www.rfc1437.de/2006/10/10/genealogische-datenbank-vornamen/Geonameshttps://www.rfc1437.de/2006/10/10/geonames/Google code searchhttps://www.rfc1437.de/2006/10/10/google-code-search/Lightning exits woman's bottomhttps://www.rfc1437.de/2006/10/10/lightning-exits-woman-s-bottom/MoinXhttps://www.rfc1437.de/2006/10/10/moinx/The Heath Robinson Rube Goldberg Computer, Part 1: Implementing a computer using a mixture of technologies from relays to fluidic logichttps://www.rfc1437.de/2006/10/10/the-heath-robinson-rube-goldberg-computer-part-1/100.000 Jahre alte Kamelknochen gefundenhttps://www.rfc1437.de/2006/10/09/100-000-jahre-alte-kamelknochen-gefunden/Chinas Billigwaren: Wer profitiert wirklich?https://www.rfc1437.de/2006/10/09/chinas-billigwaren-wer-profitiert-wirklich/Justizministerium sieht keinen Änderungsbedarf bei "Hacker-Tool"-Paragraphenhttps://www.rfc1437.de/2006/10/09/justizministerium-sieht-keinen-aenderungsbedarf/PTB: Keine Hinweise auf manipulierte Wahlcomputerhttps://www.rfc1437.de/2006/10/09/ptb-keine-hinweise-auf-manipulierte-wahlcomputer/Sicherheitslücke in Python 2.3 und aufwärtshttps://www.rfc1437.de/2006/10/09/sicherheitsluecke-in-python-2-3-und-aufwaerts/Uni Mannheim will Informatik-Institut schließenhttps://www.rfc1437.de/2006/10/09/uni-mannheim-will-informatik-institut-schliessen/Your Ancestors Disgust Mehttps://www.rfc1437.de/2006/10/09/your-ancestors-disgust-me/3D-Scanner aus Webcam und Laser für jedermannhttps://www.rfc1437.de/2006/10/06/3d-scanner-aus-webcam-und-laser-fuer-jedermann/6502asm.com - 6502 compatible compiler and emulator in javascripthttps://www.rfc1437.de/2006/10/06/6502asm-com-6502-compatible-compiler-and-emulator/Fefe's Bloghttps://www.rfc1437.de/2006/10/06/fefe-s-blog-2/How to create a new generation of scientists.https://www.rfc1437.de/2006/10/06/how-to-create-a-new-generation-of-scientists/Parallelport-Adapter mit USB und Bluetoothhttps://www.rfc1437.de/2006/10/06/parallelport-adapter-mit-usb-und-bluetooth/Scribus/Aquahttps://www.rfc1437.de/2006/10/06/scribus-aqua/Gizmondo's Spectacular Crack-uphttps://www.rfc1437.de/2006/10/05/gizmondo-s-spectacular-crack-up/iCalamus.nethttps://www.rfc1437.de/2006/10/05/icalamus-net/Nedap-Wahlcomputer gehackthttps://www.rfc1437.de/2006/10/05/nedap-wahlcomputer-gehackt/New drug blocks influenza, including bird flu virushttps://www.rfc1437.de/2006/10/05/new-drug-blocks-influenza-including-bird-flu-virus/Schachcomputerhttps://www.rfc1437.de/2006/10/05/schachcomputer/Verleger fordern schrankenlosen Auskunftsanspruch gegen Providerhttps://www.rfc1437.de/2006/10/05/verleger-fordern-schrankenlosen-auskunftsanspruch/Exploding Hello Kitty toys recalledhttps://www.rfc1437.de/2006/10/04/exploding-hello-kitty-toys-recalled/immaterial musichttps://www.rfc1437.de/2006/10/04/immaterial-music/Novell will SCO an die Kriegskassehttps://www.rfc1437.de/2006/10/04/novell-will-sco-an-die-kriegskasse/PubSigshttps://www.rfc1437.de/2006/10/04/pubsigs/Shearerhttps://www.rfc1437.de/2006/10/04/shearer/A-Bikehttps://www.rfc1437.de/2006/10/02/a-bike/ATI-Grafikchips falten Proteine schnellerhttps://www.rfc1437.de/2006/10/02/ati-grafikchips-falten-proteine-schneller/Teacher Fired Due to Dallas Museum of Art Fieldtriphttps://www.rfc1437.de/2006/10/02/teacher-fired-due-to-dallas-museum-of-art/Vmware how to - OSx86https://www.rfc1437.de/2006/10/02/vmware-how-to-osx86/Blender 3D: Noob to Prohttps://www.rfc1437.de/2006/09/29/blender-3d-noob-to-pro/Final Vote Results for Roll Call 491https://www.rfc1437.de/2006/09/29/final-vote-results-for-roll-call-491/Gewerkschaft sieht in BenQ-Mobile-Insolvenz einen "schmutzigen Trick"https://www.rfc1437.de/2006/09/29/gewerkschaft-sieht-in-benq-mobile-insolvenz-einen/Google Sketchup -> Second Life exporthttps://www.rfc1437.de/2006/09/29/google-sketchup-second-life-export/The GPL is not a compromisehttps://www.rfc1437.de/2006/09/29/the-gpl-is-not-a-compromise/tutorial - walk cyclehttps://www.rfc1437.de/2006/09/29/tutorial-walk-cycle/BenQ Mobile in Deutschland stellt Insolvenzantraghttps://www.rfc1437.de/2006/09/28/benq-mobile-in-deutschland-stellt-insolvenzantrag/Masonhttps://www.rfc1437.de/2006/09/28/mason/Siemens-Vorstand sieht Gefahr einer feindlichen Übernahmehttps://www.rfc1437.de/2006/09/28/siemens-vorstand-sieht-gefahr-einer-feindlichen/Types of Mazeshttps://www.rfc1437.de/2006/09/28/types-of-mazes/Welcome to the WorldForge Project.https://www.rfc1437.de/2006/09/28/welcome-to-the-worldforge-project/E.ON erhöht Endesa-Angebot auf 35 Euro je Aktiehttps://www.rfc1437.de/2006/09/27/e-on-erhoeht-endesa-angebot-auf-35-euro-je-aktie/Freeplay Energy Plc.https://www.rfc1437.de/2006/09/27/freeplay-energy-plc/Idiotic examples of corporate cost-cuttinghttps://www.rfc1437.de/2006/09/27/idiotic-examples-of-corporate-cost-cutting/One Planet Many Peoplehttps://www.rfc1437.de/2006/09/27/one-planet-many-people/Die Electronic Forntier Foundation stellt sich auf die Hinterbeine gegen die WIPOhttps://www.rfc1437.de/2006/09/26/die-electronic-forntier-foundation-stellt-sich/In Tiny Courts of N.Y., Abuses of Law and Powerhttps://www.rfc1437.de/2006/09/26/in-tiny-courts-of-n-y-abuses-of-law-and-power/Rübstiel (Stielmus)https://www.rfc1437.de/2006/09/26/ruebstiel-stielmus/Töpfer will Atomausstieg und rügt Industrienationenhttps://www.rfc1437.de/2006/09/25/toepfer-will-atomausstieg-und-ruegt/Rare Woodpecker Sends a Town Running for Its Chain Sawshttps://www.rfc1437.de/2006/09/24/rare-woodpecker-sends-a-town-running-for-its/SpamCop genauso inkompetent wie SORBShttps://www.rfc1437.de/2006/09/22/spamcop-genauso-inkompetent-wie-sorbs/Virtuelle Mode als Lebensunterhalthttps://www.rfc1437.de/2006/09/22/virtuelle-mode-als-lebensunterhalt/EU will Verbindungsdaten an die USA weitergebenhttps://www.rfc1437.de/2006/09/21/eu-will-verbindungsdaten-an-die-usa-weitergeben/Netzbetreiber ignorieren Thoben-Fristhttps://www.rfc1437.de/2006/09/21/netzbetreiber-ignorieren-thoben-frist/Popkomm: Musikwirtschaft will Zugangsanbieter zur Kasse bittenhttps://www.rfc1437.de/2006/09/21/popkomm-musikwirtschaft-will-zugangsanbieter-zur/Understanding HTML, XML and XHTMLhttps://www.rfc1437.de/2006/09/21/understanding-html-xml-and-xhtml/Microsoft's Masterpiece of FUDhttps://www.rfc1437.de/2006/09/20/microsoft-s-masterpiece-of-fud/Nova 1 photo selectionhttps://www.rfc1437.de/2006/09/20/nova-1-photo-selection/Regierung will "letzte Lücken" im Computerstrafrecht schließenhttps://www.rfc1437.de/2006/09/20/regierung-will-letzte-luecken-im/Seehofer verärgert Bauern und Gentech-Kritikerhttps://www.rfc1437.de/2006/09/20/seehofer-veraergert-bauern-und-gentech-kritiker/The denial industryhttps://www.rfc1437.de/2006/09/20/the-denial-industry/Von “kontrollierten” Abstürzen und “Bail-Out” Zonenhttps://www.rfc1437.de/2006/09/20/von-kontrollierten-abstuerzen-und-bail-out-zonen/Gutachten: Bagatellklausel bei Tauschbörsen ist unsinnighttps://www.rfc1437.de/2006/09/19/gutachten-bagatellklausel-bei-tauschboersen-ist/H I P P O P O T A M O U S Ehttps://www.rfc1437.de/2006/09/18/h-i-p-p-o-p-o-t-a-m-o-u-s-e/Internet Jäger des virtuellen Schatzeshttps://www.rfc1437.de/2006/09/18/internet-jaeger-des-virtuellen-schatzes/NETZEITUNG INTERNET: Google muss belgische Zeitungsartikel löschenhttps://www.rfc1437.de/2006/09/18/netzeitung-internet-google-muss-belgische/Spam-Gegner sollen 11 Millionen Dollar zahlenhttps://www.rfc1437.de/2006/09/18/spam-gegner-sollen-11-millionen-dollar-zahlen/The Perry Bible Fellowshiphttps://www.rfc1437.de/2006/09/18/the-perry-bible-fellowship/The "Triple-X" hack - an exclusive CSS filter for IE7https://www.rfc1437.de/2006/09/18/the-triple-x-hack-an-exclusive-css-filter-for-ie7/Little People - a tiny street art projecthttps://www.rfc1437.de/2006/09/15/little-people-a-tiny-street-art-project/Leica M8 Hands-on Previewhttps://www.rfc1437.de/2006/09/14/leica-m8-hands-on-preview/Strongtalk: A High-Performance Open Source Smalltalk With An Optional Type Systemhttps://www.rfc1437.de/2006/09/13/strongtalk-a-high-performance-open-source/Connecting with people in six stepshttps://www.rfc1437.de/2006/09/12/connecting-with-people-in-six-steps/elektrosmog: Three-in-onehttps://www.rfc1437.de/2006/09/12/elektrosmog-three-in-one/John Graham-Cumming: Did SoftScan, Sophos and Panda rip off my blog?https://www.rfc1437.de/2006/09/12/john-graham-cumming-did-softscan-sophos-and-panda/KETTLEhttps://www.rfc1437.de/2006/09/12/kettle/Wearing helmets 'more dangerous'https://www.rfc1437.de/2006/09/12/wearing-helmets-more-dangerous/Nigeria widows lose their fortunehttps://www.rfc1437.de/2006/09/11/nigeria-widows-lose-their-fortune/Staatsanwaltschaft beschlagnahmt Anonymisierungsserverhttps://www.rfc1437.de/2006/09/11/staatsanwaltschaft-beschlagnahmt/Unverschlüsseltes WLAN und Störerhaftung: LG Hamburg öffnet die Büchse der Pandorahttps://www.rfc1437.de/2006/09/11/unverschluesseltes-wlan-und-stoererhaftung-lg/Studie: Viel-Chatter haben häufig psychische Störungenhttps://www.rfc1437.de/2006/09/04/studie-viel-chatter-haben-haeufig-psychische/elektrosmog: Flickragenturhttps://www.rfc1437.de/2006/09/03/elektrosmog-flickragentur/FireWire-Ultra SCSI Converter FR1SX[RATOC]https://www.rfc1437.de/2006/09/02/firewire-ultra-scsi-converter-fr1sx-ratoc/Going for a Walkhttps://www.rfc1437.de/2006/08/29/going-for-a-walk/Pluto kein Planet mehrhttps://www.rfc1437.de/2006/08/25/pluto-kein-planet-mehr/Kieler Justizminister kritisiert Anonymisierungsdiensthttps://www.rfc1437.de/2006/08/23/kieler-justizminister-kritisiert/SPD debattiert über Kürzung der Witwenrentehttps://www.rfc1437.de/2006/08/23/spd-debattiert-ueber-kuerzung-der-witwenrente/Tom Cruise demnächst arbeitslos?https://www.rfc1437.de/2006/08/23/tom-cruise-demnaechst-arbeitslos/Boom der Riester-Rente hält anhttps://www.rfc1437.de/2006/08/18/boom-der-riester-rente-haelt-an/Sternwarte Bochum hat Originalaufzeichnungen der Apollomissionhttps://www.rfc1437.de/2006/08/17/sternwarte-bochum-hat-originalaufzeichnungen-der/Kurth rät Telekom zu Gesprächen über VDSLhttps://www.rfc1437.de/2006/08/16/kurth-raet-telekom-zu-gespraechen-ueber-vdsl/Unsicherheit über Rechtsgültigkeit von ElsterOnlinehttps://www.rfc1437.de/2006/08/16/unsicherheit-ueber-rechtsgueltigkeit-von/Vampire sea spiders suck on preyhttps://www.rfc1437.de/2006/08/16/vampire-sea-spiders-suck-on-prey/Verschollene Fischer nach neun Monaten gerettethttps://www.rfc1437.de/2006/08/16/verschollene-fischer-nach-neun-monaten-gerettet/Basic mit Come Fromhttps://www.rfc1437.de/2006/08/15/basic-mit-come-from/DM's Esoteric Programming Languages - Piet Sampleshttps://www.rfc1437.de/2006/08/15/dm-s-esoteric-programming-languages-piet-samples/OFFhttps://www.rfc1437.de/2006/08/15/off/Eine naive Ideehttps://www.rfc1437.de/2006/08/11/eine-naive-idee/If the liquid could be explosive, why are you dumping it in a crowd?https://www.rfc1437.de/2006/08/11/if-the-liquid-could-be-explosive-why-are-you/Merlin XU870 3G HSDPA 7.2 ExpressCardhttps://www.rfc1437.de/2006/08/11/merlin-xu870-3g-hsdpa-7-2-expresscard/AMD talks about ATIhttps://www.rfc1437.de/2006/08/10/amd-talks-about-ati/Bill Biggart's Final Exposureshttps://www.rfc1437.de/2006/08/10/bill-biggart-s-final-exposures/Escher's "Relativity" in LEGOhttps://www.rfc1437.de/2006/08/10/escher-s-relativity-in-lego/Idaho Observer: Aspartame - The World’s Best Ant Poisonhttps://www.rfc1437.de/2006/08/10/idaho-observer-aspartame-the-world-s-best-ant/A Face Is Exposed for AOL Searcher No. 4417749https://www.rfc1437.de/2006/08/09/a-face-is-exposed-for-aol-searcher-no-4417749/O'Reillys Liste der beliebtesten Programmiersprachenhttps://www.rfc1437.de/2006/08/09/o-reillys-liste-der-beliebtesten/Update beschleunigt Parallels Desktop für Mac OS Xhttps://www.rfc1437.de/2006/08/09/update-beschleunigt-parallels-desktop-fuer-mac-os/ApplicationRepositories - Maemo Wikihttps://www.rfc1437.de/2006/08/08/applicationrepositories-maemo-wiki/Star Trek Inspirational Postershttps://www.rfc1437.de/2006/08/08/star-trek-inspirational-posters/BS Exporter for Blenderhttps://www.rfc1437.de/2006/08/07/bs-exporter-for-blender/David Byrnehttps://www.rfc1437.de/2006/08/07/david-byrne/Der Staat geht, die Wirtschaft kommthttps://www.rfc1437.de/2006/08/07/der-staat-geht-die-wirtschaft-kommt/MacWeb3Dhttps://www.rfc1437.de/2006/08/07/macweb3d/Synthetisches Testosteronhttps://www.rfc1437.de/2006/08/07/synthetisches-testosteron/The Annotated VRML97 Reference Manualhttps://www.rfc1437.de/2006/08/07/the-annotated-vrml97-reference-manual/Voigt in Gelbhttps://www.rfc1437.de/2006/08/07/voigt-in-gelb/Voigt siegt und hält die Konkurrenz in Schachhttps://www.rfc1437.de/2006/08/07/voigt-siegt-und-haelt-die-konkurrenz-in-schach/VRML Primer and Tutorialhttps://www.rfc1437.de/2006/08/07/vrml-primer-and-tutorial/Wie die Bahn verhackstückt wirdhttps://www.rfc1437.de/2006/08/07/wie-die-bahn-verhackstueckt-wird/QAvimatorhttps://www.rfc1437.de/2006/08/05/qavimator/Hackers Clone RFID Passportshttps://www.rfc1437.de/2006/08/04/hackers-clone-rfid-passports/Neue "Web'n'Walk"-Datenoptionen bei T-Mobilehttps://www.rfc1437.de/2006/08/04/neue-web-n-walk-datenoptionen-bei-t-mobile/SLStats: Is Big Brother Watch-ing?https://www.rfc1437.de/2006/08/04/slstats-is-big-brother-watch-ing/The scientist whom history forgothttps://www.rfc1437.de/2006/08/04/the-scientist-whom-history-forgot/When did we forget our dreams?https://www.rfc1437.de/2006/08/04/when-did-we-forget-our-dreams/Amtliche Vorformulierung zum Online-Widerrufsrecht ist unwirksamhttps://www.rfc1437.de/2006/08/03/amtliche-vorformulierung-zum-online/Black Hat: MacBook via WLAN gehackthttps://www.rfc1437.de/2006/08/03/black-hat-macbook-via-wlan-gehackt/Girllovers - Hinter den Spiegelnhttps://www.rfc1437.de/2006/08/03/girllovers-hinter-den-spiegeln/Kinderschutzbund: "Kassen müssen für Narkosen zahlen"https://www.rfc1437.de/2006/08/03/kinderschutzbund-kassen-muessen-fuer-narkosen/Frankreich: iTunes-Gesetz verstößt gegen Menschenrechtehttps://www.rfc1437.de/2006/08/02/frankreich-itunes-gesetz-verstoesst-gegen/Apple - Support - Download TechTool Deluxehttps://www.rfc1437.de/2006/08/01/apple-support-download-techtool-deluxe/Cruel.Com: Ancient Chinese Secret, Huh?https://www.rfc1437.de/2006/08/01/cruel-com-ancient-chinese-secret-huh/Humorous Poems by Joachim Ringelnatzhttps://www.rfc1437.de/2006/08/01/humorous-poems-by-joachim-ringelnatz/Konsternation nach französischem Grundsatzurteil zum Urheberrechthttps://www.rfc1437.de/2006/08/01/konsternation-nach-franzoesischem-grundsatzurteil/Kriminalbeamte kritisieren Äußerungen des Bundesdatenschützers zu Massen-Gentestshttps://www.rfc1437.de/2006/08/01/kriminalbeamte-kritisieren-aeusserungen-des/Nonsense poetry by Christian Morgensternhttps://www.rfc1437.de/2006/08/01/nonsense-poetry-by-christian-morgenstern/SCO is Distributing ELF Under the GPL Still. Yes. Now. Today.https://www.rfc1437.de/2006/08/01/sco-is-distributing-elf-under-the-gpl-still-yes/Apple tauscht defekte Akkus bei MacBook Prohttps://www.rfc1437.de/2006/07/31/apple-tauscht-defekte-akkus-bei-macbook-pro/Atomic Rocket: Space War: Weaponshttps://www.rfc1437.de/2006/07/31/atomic-rocket-space-war-weapons/Banken: Vollstrecker aus Texashttps://www.rfc1437.de/2006/07/31/banken-vollstrecker-aus-texas/Free Movies Fallen out of Copyright (Public Domain)https://www.rfc1437.de/2006/07/31/free-movies-fallen-out-of-copyright-public-domain/How to Bypass Most Firewall Restrictions and Access the Internet Privatelyhttps://www.rfc1437.de/2006/07/31/how-to-bypass-most-firewall-restrictions-and/How To Criticizing Computer Scientistshttps://www.rfc1437.de/2006/07/31/how-to-criticizing-computer-scientists/Introducing Django 0.95https://www.rfc1437.de/2006/07/31/introducing-django-0-95/Leben mit Fehlern - der Schlüssel zum Scaleouthttps://www.rfc1437.de/2006/07/31/leben-mit-fehlern-der-schluessel-zum-scaleout/New in JavaScript 1.7https://www.rfc1437.de/2006/07/31/new-in-javascript-1-7/RIAA Will Drop Cases If You Point Out That An IP Address Isn't A Personhttps://www.rfc1437.de/2006/07/31/riaa-will-drop-cases-if-you-point-out-that-an-ip/Wings 3dhttps://www.rfc1437.de/2006/07/31/wings-3d/Intershop schreibt weiter Verlustehttps://www.rfc1437.de/2006/07/28/intershop-schreibt-weiter-verluste/Landis positivhttps://www.rfc1437.de/2006/07/28/landis-positiv/Ungewisse Zukunft für Fraunhofer-Institut in Darmstadthttps://www.rfc1437.de/2006/07/28/ungewisse-zukunft-fuer-fraunhofer-institut-in/WPHPhttps://www.rfc1437.de/2006/07/28/wphp/stop making fun of ushttps://www.rfc1437.de/2006/07/27/stop-making-fun-of-us/RWE will Strompreise erneut erhöhen | tagesschau.dehttps://www.rfc1437.de/2006/07/26/rwe-will-strompreise-erneut-erhoehen-tagesschau-de/Aldag als T-Mobile Sportchefhttps://www.rfc1437.de/2006/07/25/aldag-als-t-mobile-sportchef/Arbeitsamt: Erlasse im Netzhttps://www.rfc1437.de/2006/07/25/arbeitsamt-erlasse-im-netz/Der Computerclub ist wieder dahttps://www.rfc1437.de/2006/07/25/der-computerclub-ist-wieder-da/Metasploit: Internet Drive-By Shootingshttps://www.rfc1437.de/2006/07/24/metasploit-internet-drive-by-shootings/BlogHUD : Second Life blogging systemhttps://www.rfc1437.de/2006/07/21/bloghud-second-life-blogging-system/My Boring Ass Lifehttps://www.rfc1437.de/2006/07/21/my-boring-ass-life/Woe betide my Dellhttps://www.rfc1437.de/2006/07/21/woe-betide-my-dell/Landis ist zurückhttps://www.rfc1437.de/2006/07/20/landis-ist-zurueck/Billig und willighttps://www.rfc1437.de/2006/07/19/billig-und-willig/Rasmussen gewinnt, Landis bricht einhttps://www.rfc1437.de/2006/07/19/rasmussen-gewinnt-landis-bricht-ein/The Ugly Truth: Our President is an Imbecilehttps://www.rfc1437.de/2006/07/19/the-ugly-truth-our-president-is-an-imbecile/TLS Litehttps://www.rfc1437.de/2006/07/19/tls-lite/IT-Branchenverband will Zuwanderung gegen Fachkräftemangelhttps://www.rfc1437.de/2006/07/17/it-branchenverband-will-zuwanderung-gegen/Mal ne andere Meinunghttps://www.rfc1437.de/2006/07/17/mal-ne-andere-meinung/Numbers stationhttps://www.rfc1437.de/2006/07/17/numbers-station/Debian-Hack: Einbrecher kam über bekannte Lückehttps://www.rfc1437.de/2006/07/14/debian-hack-einbrecher-kam-ueber-bekannte-luecke/Garfield: Permanent Mondayhttps://www.rfc1437.de/2006/07/14/garfield-permanent-monday/Gizmo – A free phone for your computerhttps://www.rfc1437.de/2006/07/14/gizmo-a-free-phone-for-your-computer/Magnolia Hall Victorian Furniturehttps://www.rfc1437.de/2006/07/14/magnolia-hall-victorian-furniture/beaTunes ~ build better playlistshttps://www.rfc1437.de/2006/07/13/beatunes-build-better-playlists/Pink-Floyd-Mitbegründer Syd Barrett gestorbenhttps://www.rfc1437.de/2006/07/12/pink-floyd-mitbegruender-syd-barrett-gestorben/Blue People of Kentuckyhttps://www.rfc1437.de/2006/07/11/blue-people-of-kentucky/The Phrontistery: Obscure Words and Vocabulary Resourceshttps://www.rfc1437.de/2006/07/11/the-phrontistery-obscure-words-and-vocabulary/Enigma Homepagehttps://www.rfc1437.de/2006/07/10/enigma-homepage/Galileo Verschlüsselung geknackthttps://www.rfc1437.de/2006/07/10/galileo-verschluesselung-geknackt/Landis hat Osteonecrosehttps://www.rfc1437.de/2006/07/10/landis-hat-osteonecrose/Oxyd Extrahttps://www.rfc1437.de/2006/07/10/oxyd-extra/Patent auf Social Networkinghttps://www.rfc1437.de/2006/07/10/patent-auf-social-networking/Running Linux on the Sony UX-180phttps://www.rfc1437.de/2006/07/10/running-linux-on-the-sony-ux-180p/Suitable Systems / SeisMachttps://www.rfc1437.de/2006/07/10/suitable-systems-seismac/CLPython - an implementation of Python in Common Lisphttps://www.rfc1437.de/2006/07/05/clpython-an-implementation-of-python-in-common-2/Der Weltmeister in Grün und Gelbhttps://www.rfc1437.de/2006/07/05/der-weltmeister-in-gruen-und-gelb/Große Koalition über Verschärfung der Anti-Terrorgesetze einighttps://www.rfc1437.de/2006/07/04/grosse-koalition-ueber-verschaerfung-der-anti/Na also, geht doch!https://www.rfc1437.de/2006/07/04/na-also-geht-doch/Basso auch in Doping-Skandal verwickelt?https://www.rfc1437.de/2006/06/30/basso-auch-in-doping-skandal-verwickelt/Oberster Gerichtshof: Guantanamo-Tribunale illegalhttps://www.rfc1437.de/2006/06/30/oberster-gerichtshof-guantanamo-tribunale-illegal/Textureshophttps://www.rfc1437.de/2006/06/30/textureshop/Ullrich, Sevilla und Pevenage vorerst suspendierthttps://www.rfc1437.de/2006/06/30/ullrich-sevilla-und-pevenage-vorerst-suspendiert/heise online -Google wegen Links zu Produktfälschern verurteilthttps://www.rfc1437.de/2006/06/29/heise-online-googl-wgn-lnks-z-prdktflschrn-vrrtlt/OMG Girlz Don’t Exist on teh Intarweb!!!!1https://www.rfc1437.de/2006/06/29/omg-girlz-don-t-exist-on-teh-intarweb-1/Wells Grants in Part IBM's Motion to Limit SCO's Claims! In Large Part.https://www.rfc1437.de/2006/06/29/wells-grants-in-part-ibm-s-motion-to-limit-sco-s/Bankdaten von der SWIFT abgepressthttps://www.rfc1437.de/2006/06/28/bankdaten-von-der-swift-abgepresst/Conversation with Boston Volkswagenhttps://www.rfc1437.de/2006/06/28/conversation-with-boston-volkswagen/iView Multimedia von Microsoft aufgekaufthttps://www.rfc1437.de/2006/06/28/iview-multimedia-von-microsoft-aufgekauft/Tinderbox: Tinderbox 3.5https://www.rfc1437.de/2006/06/28/tinderbox-tinderbox-3-5/Schrumpfkur für Krankenkassen?https://www.rfc1437.de/2006/06/27/schrumpfkur-fuer-krankenkassen/30-Milliarden-Spende für Bill Gateshttps://www.rfc1437.de/2006/06/26/30-milliarden-spende-fuer-bill-gates/58 Profis in spanische Affäre verwickelthttps://www.rfc1437.de/2006/06/26/58-profis-in-spanische-affaere-verwickelt/Braunbär Bruno von Jägern getötethttps://www.rfc1437.de/2006/06/26/braunbaer-bruno-von-jaegern-getoetet/Der Staat entmachtet sich selbsthttps://www.rfc1437.de/2006/06/26/der-staat-entmachtet-sich-selbst/Exploring Cocoa with F-Scripthttps://www.rfc1437.de/2006/06/26/exploring-cocoa-with-f-script/Freenode gehackthttps://www.rfc1437.de/2006/06/26/freenode-gehackt/Hartz-IV-Missbrauch: ''Unser Menschenbild war zu positiv''https://www.rfc1437.de/2006/06/26/hartz-iv-missbrauch-unser-menschenbild-war-zu/Microsoft beerdigt WinFShttps://www.rfc1437.de/2006/06/26/microsoft-beerdigt-winfs/Python Cheese Shop : saprfc 0.08https://www.rfc1437.de/2006/06/26/python-cheese-shop-saprfc-0-08/Trotz steigender Umsätze baut Industrie Stellen abhttps://www.rfc1437.de/2006/06/26/trotz-steigender-umsaetze-baut-industrie-stellen/Verkauf von NRW-Unikliniken?https://www.rfc1437.de/2006/06/26/verkauf-von-nrw-unikliniken/DrSchemehttps://www.rfc1437.de/2006/06/19/drscheme-2/Generische Tabellenrelationenhttps://www.rfc1437.de/2006/06/19/generische-tabellenrelationen/Großer Rückschlag für Walfanggegnerhttps://www.rfc1437.de/2006/06/19/grosser-rueckschlag-fuer-walfanggegner/Handys sind Wegwerfproduktehttps://www.rfc1437.de/2006/06/19/handys-sind-wegwerfprodukte/Jan Ullrich legt aufhttps://www.rfc1437.de/2006/06/19/jan-ullrich-legt-auf/Wengophone: VoIP done righthttps://www.rfc1437.de/2006/06/19/wengophone-voip-done-right/Allegro Common Lisp Expresshttps://www.rfc1437.de/2006/06/16/allegro-common-lisp-express/Urteil: Vorabprüfung von Forenbeiträgen ist unzumutbarhttps://www.rfc1437.de/2006/06/16/urteil-vorabpruefung-von-forenbeitraegen-ist/Automatic Pickle Serialization and Deserialization with PostgreSQLhttps://www.rfc1437.de/2006/06/14/automatic-pickle-serialization-and/Bundestag beschließt staatlich verordnetes Verhungernhttps://www.rfc1437.de/2006/06/12/bundestag-beschliesst-staatlich-verordnetes/Die Welt nackt zu Gast bei Freundenhttps://www.rfc1437.de/2006/06/12/die-welt-nackt-zu-gast-bei-freunden/Früherer BND-Spitzel belastet Hanning | tagesschau.dehttps://www.rfc1437.de/2006/06/12/frueherer-bnd-spitzel-belastet-hanning-tagesschau/Microsoft's Calling Home Problemhttps://www.rfc1437.de/2006/06/12/microsoft-s-calling-home-problem/Speaking Frankly: From Leitz sublime to Leica splitsvillehttps://www.rfc1437.de/2006/06/12/speaking-frankly-from-leitz-sublime-to-leica/McDonald's Interactive Divisionhttps://www.rfc1437.de/2006/06/09/mcdonald-s-interactive-division/Tod eines Unschuldigen bleibt ohne juristische Folgehttps://www.rfc1437.de/2006/06/09/tod-eines-unschuldigen-bleibt-ohne-juristische/US-Repräsentantenhaus stimmt gegen "Netzneutralität"https://www.rfc1437.de/2006/06/09/us-repraesentantenhaus-stimmt-gegen/SkypeOut - Das Aushttps://www.rfc1437.de/2006/06/07/skypeout-das-aus/Create SL Objects in Blender — If You Darehttps://www.rfc1437.de/2006/06/06/create-sl-objects-in-blender-if-you-dare/Sony: 10-Megapixel-Kamera mit Staubwedel aus der alpha-Seriehttps://www.rfc1437.de/2006/06/06/sony-10-megapixel-kamera-mit-staubwedel-aus-der/Caller ID Spoofinghttps://www.rfc1437.de/2006/06/02/caller-id-spoofing/Rolling Stone : Was the 2004 Election Stolen?https://www.rfc1437.de/2006/06/02/rolling-stone-was-the-2004-election-stolen/OLG Frankfurt: Online-Demonstration ist keine Gewalthttps://www.rfc1437.de/2006/06/01/olg-frankfurt-online-demonstration-ist-keine/Digitale Messsucherkamera Epson R-D1s kommthttps://www.rfc1437.de/2006/05/31/digitale-messsucherkamera-epson-r-d1s-kommt/StepTalkhttps://www.rfc1437.de/2006/05/31/steptalk/The Illustrated Nethack Monstershttps://www.rfc1437.de/2006/05/31/the-illustrated-nethack-monsters/Basso deklassiert die Konkurrenzhttps://www.rfc1437.de/2006/05/29/basso-deklassiert-die-konkurrenz/Beleidigte italienische Leberwursthttps://www.rfc1437.de/2006/05/29/beleidigte-italienische-leberwurst/Die Quelltexte für UCSD-Pascal sind freihttps://www.rfc1437.de/2006/05/29/die-quelltexte-fuer-ucsd-pascal-sind-frei/Feedjack - A Django+Python Powered Feed Aggregator (Planet)https://www.rfc1437.de/2006/05/29/feedjack-a-django-python-powered-feed-aggregator/Microsoft möchte »kooperierende Redaktionen«https://www.rfc1437.de/2006/05/29/microsoft-moechte-kooperierende-redaktionen/PL/1 for GCChttps://www.rfc1437.de/2006/05/29/pl-1-for-gcc/PyCells and peak.eventshttps://www.rfc1437.de/2006/05/29/pycells-and-peak-events/Theorie für Tarnkappenhttps://www.rfc1437.de/2006/05/29/theorie-fuer-tarnkappen/US-Patentamt weist Ansprüche in Forgents JPEG-Patent zurückhttps://www.rfc1437.de/2006/05/29/us-patentamt-weist-ansprueche-in-forgents-jpeg/Medallia Blog: SmackBook Prohttps://www.rfc1437.de/2006/05/26/medallia-blog-smackbook-pro/O’Reilly trademarks “Web 2.0″ and sets lawyers on IT@Cork! » at Tom Raftery’s I.T. viewshttps://www.rfc1437.de/2006/05/26/o-reilly-trademarks-web-2-0-and-sets-lawyers-on/Safari Tidy pluginhttps://www.rfc1437.de/2006/05/26/safari-tidy-plugin/x48 emulatorhttps://www.rfc1437.de/2006/05/26/x48-emulator/Bild kneift vor Blümhttps://www.rfc1437.de/2006/05/24/bild-kneift-vor-bluem/Are you generic?https://www.rfc1437.de/2006/05/22/are-you-generic/Free42 for Zaurus X/Qt and Nokia 770https://www.rfc1437.de/2006/05/22/free42-for-zaurus-x-qt-and-nokia-770/MyTunesRSShttps://www.rfc1437.de/2006/05/22/mytunesrss/Rogue Amoeba - Nicecast for Mac OS Xhttps://www.rfc1437.de/2006/05/22/rogue-amoeba-nicecast-for-mac-os-x/Klinikstreik: Sind Kassenpatienten keine Notfälle?https://www.rfc1437.de/2006/05/19/klinikstreik-sind-kassenpatienten-keine-notfaelle/US-Richter weist Masris Folter-Klage gegen CIA abhttps://www.rfc1437.de/2006/05/19/us-richter-weist-masris-folter-klage-gegen-cia-ab/MGTalk - Google Talk for mobilehttps://www.rfc1437.de/2006/05/18/mgtalk-google-talk-for-mobile/What Happened To Dynamic Rangehttps://www.rfc1437.de/2006/05/18/what-happened-to-dynamic-range/Adactio: Journal - The ugly Americanhttps://www.rfc1437.de/2006/05/17/adactio-journal-the-ugly-american/Kauder warnt vor Veröffentlichung des BND-Berichtshttps://www.rfc1437.de/2006/05/17/kauder-warnt-vor-veroeffentlichung-des-bnd/Neue MacBookshttps://www.rfc1437.de/2006/05/17/neue-macbooks/Debunking Linus's Latesthttps://www.rfc1437.de/2006/05/16/debunking-linus-s-latest/Nokia Announces the Internet Tablet 2006 OS Updatehttps://www.rfc1437.de/2006/05/16/nokia-announces-the-internet-tablet-2006-os-update/Tanenbaum-Torvalds debate, Part IIhttps://www.rfc1437.de/2006/05/16/tanenbaum-torvalds-debate-part-ii/In den Mühlen der Fürsorgehttps://www.rfc1437.de/2006/05/15/in-den-muehlen-der-fuersorge/RWE: Der Profit, der aus der Kälte kamhttps://www.rfc1437.de/2006/05/15/rwe-der-profit-der-aus-der-kaelte-kam/Nokia will Google Talk vorinstallierenhttps://www.rfc1437.de/2006/05/14/nokia-will-google-talk-vorinstallieren/Schneier on Security: Major Vulnerability Found in Diebold Election Machineshttps://www.rfc1437.de/2006/05/12/schneier-on-security-major-vulnerability-found-in/Bluetooth SIG - Idioten am Ruderhttps://www.rfc1437.de/2006/05/09/bluetooth-sig-idioten-am-ruder/heise online - LG Düsseldorf: Forenhaftung erst ab Kenntnis des Rechtsverstoßeshttps://www.rfc1437.de/2006/05/09/heise-online-lg-duesseldorf-forenhaftung-erst-ab/Rotten Efforthttps://www.rfc1437.de/2006/05/09/rotten-effort/HashCamlhttps://www.rfc1437.de/2006/05/08/hashcaml/Ab in den Asozialstaat?https://www.rfc1437.de/2006/05/07/ab-in-den-asozialstaat/Django for non-programmershttps://www.rfc1437.de/2006/05/06/django-for-non-programmers/Aldag gewinnt eigenes Abschiedsrennenhttps://www.rfc1437.de/2006/05/02/aldag-gewinnt-eigenes-abschiedsrennen/Django Weblog "magic-removal" branch mergedhttps://www.rfc1437.de/2006/05/02/django-weblog-magic-removal-branch-merged/How to cure your asthma or hayfever using hookworm - a practical guide || kuro5hin.orghttps://www.rfc1437.de/2006/05/02/how-to-cure-your-asthma-or-hayfever-using/Workbench: Settlement Reached with Dave Winerhttps://www.rfc1437.de/2006/05/02/workbench-settlement-reached-with-dave-winer/Wenn Firmen ihren Doppelgänger treffenhttps://www.rfc1437.de/2006/04/29/wenn-firmen-ihren-doppelgaenger-treffen/Das waren die Roots: Wie das Internet nach Deutschland kamhttps://www.rfc1437.de/2006/04/28/das-waren-die-roots-wie-das-internet-nach/Gerücht: Apple hat Aperture-Entwicklungsteam aufgelösthttps://www.rfc1437.de/2006/04/27/geruecht-apple-hat-aperture-entwicklungsteam/Oberon Script. A Lightweight Compiler and Runtime System for the Webhttps://www.rfc1437.de/2006/04/27/oberon-script-a-lightweight-compiler-and-runtime/World Press Photos 2005: Deutschlandpremiere in Hamburghttps://www.rfc1437.de/2006/04/27/world-press-photos-2005-deutschlandpremiere-in/Mamiya to sell camera divisionhttps://www.rfc1437.de/2006/04/26/mamiya-to-sell-camera-division/WASG-Bundesvorstandsmitglied wechselt zur NPDhttps://www.rfc1437.de/2006/04/26/wasg-bundesvorstandsmitglied-wechselt-zur-npd/Hyperlink-Prozess: Netzaktivist erneut freigesprochenhttps://www.rfc1437.de/2006/04/24/hyperlink-prozess-netzaktivist-erneut/Netzwerk-Spielehttps://www.rfc1437.de/2006/04/24/netzwerk-spiele/Pur3d.de | TEXTURENhttps://www.rfc1437.de/2006/04/23/pur3d-de-texturen/UVMapperhttps://www.rfc1437.de/2006/04/23/uvmapper/AOL.de Zuganghttps://www.rfc1437.de/2006/04/22/aol-de-zugang/Kritische Sicherheitslücken in Mac OS Xhttps://www.rfc1437.de/2006/04/22/kritische-sicherheitsluecken-in-mac-os-x/Empörung über Schäublehttps://www.rfc1437.de/2006/04/21/empoerung-ueber-schaeuble/Gazprom droht EU mit Gas-Entzughttps://www.rfc1437.de/2006/04/21/gazprom-droht-eu-mit-gas-entzug/Metasploit: Exploit Development: GroupWise Messenger Serverhttps://www.rfc1437.de/2006/04/21/metasploit-exploit-development-groupwise/Neues von den Christianismus-Mullahshttps://www.rfc1437.de/2006/04/21/neues-von-den-christianismus-mullahs/''Pioneer-Anomalie'': Rätselhafte Kraft im Alhttps://www.rfc1437.de/2006/04/21/pioneer-anomalie-raetselhafte-kraft-im-al/YES, finally! me too!https://www.rfc1437.de/2006/04/21/yes-finally-me-too/Philips will Umschalten in Werbepausen verhindernhttps://www.rfc1437.de/2006/04/19/philips-will-umschalten-in-werbepausen-verhindern/Volksverhetzung Teil III - Staatsanwalt gegen Alvar Freudehttps://www.rfc1437.de/2006/04/19/volksverhetzung-teil-iii-staatsanwalt-gegen-alvar/Open Letter to D-Link about their NTP vandalismhttps://www.rfc1437.de/2006/04/18/open-letter-to-d-link-about-their-ntp-vandalism/SPD besteht auf Bagatellklausel für Kopienhttps://www.rfc1437.de/2006/04/18/spd-besteht-auf-bagatellklausel-fuer-kopien/Tibet bei Wikipedia - und FAZhttps://www.rfc1437.de/2006/04/18/tibet-bei-wikipedia-und-faz/Yummy mummy feeds young its skinhttps://www.rfc1437.de/2006/04/18/yummy-mummy-feeds-young-its-skin/Virtuelle Welten und Angriffsszenarienhttps://www.rfc1437.de/2006/04/16/virtuelle-welten-und-angriffsszenarien/Hamburger Landgericht: Forenbetreiber sind für Beiträge haftbarhttps://www.rfc1437.de/2006/04/14/hamburger-landgericht-forenbetreiber-sind-fuer/2003 UB313: "Zehnter Planet" kaum größer als Plutohttps://www.rfc1437.de/2006/04/13/2003-ub313-zehnter-planet-kaum-groesser-als-pluto/Get A-Life: Core Wars / Tierrahttps://www.rfc1437.de/2006/04/13/get-a-life-core-wars-tierra/Texas Judge Orders Medication for Inmatehttps://www.rfc1437.de/2006/04/13/texas-judge-orders-medication-for-inmate/UMTS über Vodafone und Sony Ericsson V600i / V600 via Bluetooth unter Mac OS X nutzenhttps://www.rfc1437.de/2006/04/11/umts-ueber-vodafone-und-sony-ericsson-v600i-v600/Bundesrat liebäugelt mit Softwarepatentenhttps://www.rfc1437.de/2006/04/10/bundesrat-liebaeugelt-mit-softwarepatenten/PHI, the golden ratiohttps://www.rfc1437.de/2006/04/10/phi-the-golden-ratio/The nonsense about AdSensehttps://www.rfc1437.de/2006/04/10/the-nonsense-about-adsense/Rechteinhaber wollen Auskunft von Providern ohne Richterbeschlusshttps://www.rfc1437.de/2006/04/08/rechteinhaber-wlln-sknft-vn-prvdrn-hn-rchtrbschlss/Experte: Google Earth gefährdet WM-Sicherheithttps://www.rfc1437.de/2006/04/07/experte-google-earth-gefaehrdet-wm-sicherheit/Eiffel-Entwicklungsumgebung wird Open Sourcehttps://www.rfc1437.de/2006/04/06/eiffel-entwicklungsumgebung-wird-open-source/Man Was Enduring the Dentist''s Drill 9,000 Years Agohttps://www.rfc1437.de/2006/04/06/man-was-enduring-the-dentist-s-drill-9-000-years/Patent Busting: EFF gegen Patent auf Online-Prüfungenhttps://www.rfc1437.de/2006/04/06/patent-busting-eff-gegen-patent-auf-online/Python 3000 - Adaptation or Generic Functions?https://www.rfc1437.de/2006/04/06/python-3000-adaptation-or-generic-functions/Things nobody tells you about the south polehttps://www.rfc1437.de/2006/04/06/things-nobody-tells-you-about-the-south-pole/Maemo Development Platform Roadmaphttps://www.rfc1437.de/2006/04/04/maemo-development-platform-roadmap/Colorblind Web Page Filterhttps://www.rfc1437.de/2006/04/02/colorblind-web-page-filter/Apple Converts Xserves from PowerPC to AMDhttps://www.rfc1437.de/2006/04/01/apple-converts-xserves-from-powerpc-to-amd/Deutsche Bahn wird zum DSL-Anbieterhttps://www.rfc1437.de/2006/04/01/deutsche-bahn-wird-zum-dsl-anbieter/IP-Adressen für die Eitelkeithttps://www.rfc1437.de/2006/04/01/ip-adressen-fuer-die-eitelkeit/WordPatternhttps://www.rfc1437.de/2006/04/01/wordpattern/Bildungsziel: Mythos statt Wissen!https://www.rfc1437.de/2006/03/31/bildungsziel-mythos-statt-wissen-pressemitteilngws/IBM offers bounty for Exchange customershttps://www.rfc1437.de/2006/03/31/ibm-offers-bounty-for-exchange-customers/python-constrainthttps://www.rfc1437.de/2006/03/31/python-constraint/Geogenhttps://www.rfc1437.de/2006/03/30/geogen/Merquery, Text Indexing and Search with a Focushttps://www.rfc1437.de/2006/03/30/merquery-text-indexing-and-search-with-a-focus/The Spider of Doomhttps://www.rfc1437.de/2006/03/30/the-spider-of-doom/Backfire für Transparency Internationalhttps://www.rfc1437.de/2006/03/29/backfire-fuer-transparency-international/Münte schickt Vereinbarung zum Kündigungsschutz zurück in den Koalitionsausschusshttps://www.rfc1437.de/2006/03/29/muente-schickt-vereinbarung-zum-kuendigungsschutz/Ullrich verschiebt Saisondebüthttps://www.rfc1437.de/2006/03/29/ullrich-verschiebt-saisondebuet/Microsoft-Drohung mit Patentklagen in den USA Warnsignal für Europahttps://www.rfc1437.de/2006/03/28/microsoft-drohung-mit-patentklagen-in-den-usa/Seed: Prime Numbers Get Hitchedhttps://www.rfc1437.de/2006/03/28/seed-prime-numbers-get-hitched-2/IQ-Forscher nennt Deutsche klügste Europäerhttps://www.rfc1437.de/2006/03/27/iq-forscher-nennt-deutsche-kluegste-europaeer/SPD-Fraktion lehnt neues Urheberrecht abhttps://www.rfc1437.de/2006/03/27/spd-fraktion-lehnt-neues-urheberrecht-ab/Nasa-Sonde macht Superfoto vom Marshttps://www.rfc1437.de/2006/03/26/nasa-sonde-macht-superfoto-vom-mars/ajaxWritehttps://www.rfc1437.de/2006/03/25/ajaxwrite/The Mac OS MUD Zone: Clientshttps://www.rfc1437.de/2006/03/25/the-mac-os-mud-zone-clients/transparency international mag keine kritik und schickt den anwalthttps://www.rfc1437.de/2006/03/25/trnsprncy-ntrntnl-mg-kn-krtk-nd-schckt-dn-nwlt-g/Virtueller Big Brotherhttps://www.rfc1437.de/2006/03/24/virtueller-big-brother/Bundesjustizministerin ohne Durchblickhttps://www.rfc1437.de/2006/03/23/bundesjustizministerin-ohne-durchblick/Empörung über drohendes Todesurteil gegen Ex-Muslimhttps://www.rfc1437.de/2006/03/22/empoerung-ueber-drohendes-todesurteil-gegen-x-mslm/Urteil: Dolzers "Domain-Engel" darf nicht zuschlagenhttps://www.rfc1437.de/2006/03/22/urteil-dolzers-domain-engel-darf-nicht-zuschlagen/Open Source Web Designhttps://www.rfc1437.de/2006/03/21/open-source-web-design/Abmahnwahn gibts überallhttps://www.rfc1437.de/2006/03/20/abmahnwahn-gibts-ueberall/Erschreckend ...https://www.rfc1437.de/2006/03/20/erschreckend/Meinungsfreiheit ala Eurowebhttps://www.rfc1437.de/2006/03/20/meinungsfreiheit-ala-euroweb/Und weil die Absurditäten noch nicht reichen ...https://www.rfc1437.de/2006/03/20/und-weil-die-absurditaeten-noch-nicht-reichen/Die Frösche machen einen schwindelighttps://www.rfc1437.de/2006/03/18/die-froesche-machen-einen-schwindelig/Münsterland-Giro als Profi-Rennenhttps://www.rfc1437.de/2006/03/18/muensterland-giro-als-profi-rennen/PS3 kommt mit Linuxhttps://www.rfc1437.de/2006/03/18/ps3-kommt-mit-linux/Tolles SAP Betriebsklimahttps://www.rfc1437.de/2006/03/18/tolles-sap-betriebsklima/Was machen wenn man verklagt wird?https://www.rfc1437.de/2006/03/18/was-machen-wenn-man-verklagt-wird/Dave Winer Breakdownhttps://www.rfc1437.de/2006/03/16/dave-winer-breakdown/Google kauft SketchUphttps://www.rfc1437.de/2006/03/16/google-kauft-sketchup/Horizonhttps://www.rfc1437.de/2006/03/16/horizon/TUD:OS - TU Dresden Operating Systemshttps://www.rfc1437.de/2006/03/16/tud-os-tu-dresden-operating-systems/Karlsruhe: Rezzo Schlauch berät EnBW - Nachrichten | SWR.dehttps://www.rfc1437.de/2006/03/14/karlsruhe-rezzo-schlauch-beraet-enbw-nachrichten/Avimatorhttps://www.rfc1437.de/2006/03/13/avimator/Demonstranten niederreiten ...https://www.rfc1437.de/2006/03/13/demonstranten-niederreiten/LambdaMOO (with LambdaMOO Map) An Introductionhttps://www.rfc1437.de/2006/03/13/lambdamoo-with-lambdamoo-map-an-introduction/MudWalker - A MUD Client for Mac OS Xhttps://www.rfc1437.de/2006/03/13/mudwalker-a-mud-client-for-mac-os-x/Naked Objects in Virtual Lifehttps://www.rfc1437.de/2006/03/13/naked-objects-in-virtual-life/Nicht mehr ganz so geheim ...https://www.rfc1437.de/2006/03/13/nicht-mehr-ganz-so-geheim/NPD-BLOGhttps://www.rfc1437.de/2006/03/13/npd-blog/Roamhttps://www.rfc1437.de/2006/03/13/roam/Technische Revolutionhttps://www.rfc1437.de/2006/03/13/technische-revolution/Gosling Didn’t Get The Memohttps://www.rfc1437.de/2006/03/12/gosling-didn-t-get-the-memo/Mal wieder ne Woche Münchenhttps://www.rfc1437.de/2006/03/12/mal-wieder-ne-woche-muenchen/Was Firmenchefs heute so lernen ...https://www.rfc1437.de/2006/03/12/was-firmenchefs-heute-so-lernen/Official Google Blog: Writely sohttps://www.rfc1437.de/2006/03/10/official-google-blog-writely-so/Apple beantragt Patente auf Feed-Viewer und Browserhttps://www.rfc1437.de/2006/03/09/apple-beantragt-patente-auf-feed-viewer-und/Cassini Finds Signs of Liquid Water on Saturn's Moonhttps://www.rfc1437.de/2006/03/09/cassini-finds-signs-of-liquid-water-on-saturn-s/Lego hats geschnallthttps://www.rfc1437.de/2006/03/09/lego-hats-geschnallt/Merkels neuer Kumpel?https://www.rfc1437.de/2006/03/09/merkels-neuer-kumpel-2/P.K.K. - Purzel-Kollektiv Kübelreiterhttps://www.rfc1437.de/2006/03/09/p-k-k-purzel-kollektiv-kuebelreiter/Shit hits Fan bei Debian?https://www.rfc1437.de/2006/03/09/shit-hits-fan-bei-debian/Waterfall 2006 - International Conference on Sequential Developmenthttps://www.rfc1437.de/2006/03/09/waterfall-2006-international-conference-on/Mac OS X Security Challengehttps://www.rfc1437.de/2006/03/07/mac-os-x-security-challenge/Aries - Umweltprodukte, Die Spezialisten für biologische Schädlingsbekämpfunghttps://www.rfc1437.de/2006/03/06/aries-umweltprodukte-die-spezialisten-fuer/MP3 Python Modulehttps://www.rfc1437.de/2006/03/06/mp3-python-module/OPUS - Zivilrechtliche Ansprüche gegen unerwünschte Mitbenutzer von privaten Funknetzenhttps://www.rfc1437.de/2006/03/06/opus-zivilrechtliche-ansprueche-gegen/Religion ist Opium fürs Volkhttps://www.rfc1437.de/2006/03/06/religion-ist-opium-fuers-volk/aspectes.tigris.orghttps://www.rfc1437.de/2006/03/05/aspectes-tigris-org/CPU/MEM with swap on/offhttps://www.rfc1437.de/2006/03/05/cpu-mem-with-swap-on-off/Hmm.https://www.rfc1437.de/2006/03/05/hmm/Lebowski Fest Westhttps://www.rfc1437.de/2006/03/04/lebowski-fest-west/MANaOS 0.1.2 is outhttps://www.rfc1437.de/2006/03/04/manaos-0-1-2-is-out/Netzneutralität und die Realitäthttps://www.rfc1437.de/2006/03/04/netzneutralitaet-und-die-realitaet/ob das eBay schmeckt?https://www.rfc1437.de/2006/03/04/ob-das-ebay-schmeckt/Principia Discordia the book of Chaos, Discord and Confusion Fnord!https://www.rfc1437.de/2006/03/04/principia-discordia-the-book-of-chaos-discord-and/SharedAppVNChttps://www.rfc1437.de/2006/03/04/sharedappvnc/UFRawhttps://www.rfc1437.de/2006/03/04/ufraw/Zurück zu den KZ-Hühnernhttps://www.rfc1437.de/2006/03/04/zurueck-zu-den-kz-huehnern/Land of the Stupid and Unfreehttps://www.rfc1437.de/2006/03/03/land-of-the-stupid-and-unfree/Larrys verzerrte Realitäthttps://www.rfc1437.de/2006/03/03/larrys-verzerrte-realitaet/Lernkurven diverser Editorenhttps://www.rfc1437.de/2006/03/03/lernkurven-diverser-unix-editoren/Datengier ist geil?https://www.rfc1437.de/2006/03/02/datengier-ist-geil/Warum ich PHP-Software nicht maghttps://www.rfc1437.de/2006/03/02/warum-ich-php-software-nicht-mag/Arbeitsplätze auf dem Altar des Aktienkurses opfernhttps://www.rfc1437.de/2006/03/01/arbeitsplaetze-auf-dem-altar-des-aktienkurses-pfrn/Bock zum Gärtner machenhttps://www.rfc1437.de/2006/03/01/bock-zum-gaertner-machen/Zensur per Anwalthttps://www.rfc1437.de/2006/03/01/zensur-per-anwalt/Blue Ball Machinehttps://www.rfc1437.de/2006/02/28/blue-ball-machine/BranchBasedDevelopmenthttps://www.rfc1437.de/2006/02/28/branchbaseddevelopment/Divmodhttps://www.rfc1437.de/2006/02/28/divmod/MacMini mit Core-Duohttps://www.rfc1437.de/2006/02/28/macmini-mit-core-duo/Mehr Bilder von der DMC-L1https://www.rfc1437.de/2006/02/28/mehr-bilder-von-der-dmc-l1/NASA World Windhttps://www.rfc1437.de/2006/02/28/nasa-world-wind/Pictures of a guy in a blue shirthttps://www.rfc1437.de/2006/02/28/pictures-of-a-guy-in-a-blue-shirt/Screencast über Web-Anwendungenhttps://www.rfc1437.de/2006/02/28/screencast-ueber-web-anwendungen/SonyStyle USA - PRS-500https://www.rfc1437.de/2006/02/28/sonystyle-usa-prs-500/Tail Call Optimization in Pythonhttps://www.rfc1437.de/2006/02/28/tail-call-optimization-in-python/Was sich Firmengründer so vorstellenhttps://www.rfc1437.de/2006/02/28/was-sich-firmengruender-so-vorstellen/Disk Inventory Xhttps://www.rfc1437.de/2006/02/27/disk-inventory-x/id-design, inc. | WhatSizehttps://www.rfc1437.de/2006/02/27/id-design-inc-whatsize/Monolingualhttps://www.rfc1437.de/2006/02/27/monolingual/Digi-Wunder-Chip von TI?https://www.rfc1437.de/2006/02/26/digi-wunder-chip-von-ti/Instant Community Buildinghttps://www.rfc1437.de/2006/02/26/instant-community-building/Leica und Panasonic mit Digi-SLR-Kombohttps://www.rfc1437.de/2006/02/26/leica-und-panasonic-mit-digi-slr-kombo/Textpanderhttps://www.rfc1437.de/2006/02/26/textpander/Hetima:SafariStandhttps://www.rfc1437.de/2006/02/25/hetima-safaristand/London 2.0 RC 4 - Monday 3rd Aprilhttps://www.rfc1437.de/2006/02/25/london-20-rc-4-monday-3rd-april/Pimp My Safarihttps://www.rfc1437.de/2006/02/25/pimp-my-safari/stripsquad.sehttps://www.rfc1437.de/2006/02/25/stripsquad-se/SurfRabbithttps://www.rfc1437.de/2006/02/25/surfrabbit/Wow.https://www.rfc1437.de/2006/02/25/wow/Angebliche Wettermanipulation?https://www.rfc1437.de/2006/02/24/angebliche-wettermanipulation/Democracy Playerhttps://www.rfc1437.de/2006/02/24/democracy-player/Google Macintosh Dashboard Widgetshttps://www.rfc1437.de/2006/02/24/google-macintosh-dashboard-widgets/Growl!https://www.rfc1437.de/2006/02/24/growl/Live Thumbnails: Watch ''em Growhttps://www.rfc1437.de/2006/02/24/live-thumbnails-watch-em-grow/The Little Calculist: JavaScript language levelhttps://www.rfc1437.de/2006/02/24/the-little-calculist-javascript-language-level/Water: the structure and properties of liquid waterhttps://www.rfc1437.de/2006/02/24/water-the-structure-and-properties-of-liquid-water/iWeb und sein Outputhttps://www.rfc1437.de/2006/02/23/iweb-und-sein-output/Nikon D200 Full Reviewhttps://www.rfc1437.de/2006/02/23/nikon-d200-full-review/Patentamtsidiotie in den USAhttps://www.rfc1437.de/2006/02/23/patentamtsidiotie-in-den-usa/RubyForge: Ruby Port to Nokia 770 Internet Tablet: Projektinfohttps://www.rfc1437.de/2006/02/23/rubyforge-ruby-port-to-nokia-770-internet-tablet/Scsh PhotoBasehttps://www.rfc1437.de/2006/02/23/scsh-photobase/So bescheisst man Kundenhttps://www.rfc1437.de/2006/02/23/so-bescheisst-man-kunden/Tomato Torrenthttps://www.rfc1437.de/2006/02/23/tomato-torrent/Tor GUI Competitionhttps://www.rfc1437.de/2006/02/23/tor-gui-competition/Verstrahlter Kochhttps://www.rfc1437.de/2006/02/23/verstrahlter-koch/Wasabi Systemshttps://www.rfc1437.de/2006/02/23/wasabi-systems/An die Content-Diebehttps://www.rfc1437.de/2006/02/22/an-die-content-diebe/Babylonische Erklärung für die Nebra-Himmelsscheibe?https://www.rfc1437.de/2006/02/22/babylonische-erklaerung-fuer-die-nebra-himmelsschb/Clim-Desktop projecthttps://www.rfc1437.de/2006/02/22/clim-desktop-project/Jetzt kommt IBM in Fahrthttps://www.rfc1437.de/2006/02/22/jetzt-kommt-ibm-in-fahrt/Musikindustrie verblödet immer mehrhttps://www.rfc1437.de/2006/02/22/musikindustrie-verbloedet-immer-mehr/Netz-Neutralität gefährdethttps://www.rfc1437.de/2006/02/22/netz-neutralitaet-gefaehrdet/Phollowing the Phlopping Phishhttps://www.rfc1437.de/2006/02/22/phollowing-the-phlopping-phish/The Linux Kernel Driver Interfacehttps://www.rfc1437.de/2006/02/22/the-linux-kernel-driver-interface/virtuelles Bluetooth Keyboardhttps://www.rfc1437.de/2006/02/22/virtuelles-bluetooth-keyboard/Zeichen der Krisehttps://www.rfc1437.de/2006/02/22/zeichen-der-krise/#4G European Grounded "Shuko" Adapter. Walkabout Travel Gear (tm)https://www.rfc1437.de/2006/02/21/4g-european-grounded-shuko-adapter-walkabout/8-p.info - Creammonkeyhttps://www.rfc1437.de/2006/02/21/8-p-info-creammonkey/Bluetooth Securityhttps://www.rfc1437.de/2006/02/21/bluetooth-security/Migrate apps from Internet Explorer to Mozillahttps://www.rfc1437.de/2006/02/21/migrate-apps-from-internet-explorer-to-mozilla/PlayDeluxe Shop - Online-Shophttps://www.rfc1437.de/2006/02/21/playdeluxe-shop-online-shop/Browser sind eben keine Programmstarterhttps://www.rfc1437.de/2006/02/20/browser-sind-eben-keine-programmstarter/Know Your Enemy: Learning with VMwarehttps://www.rfc1437.de/2006/02/20/know-your-enemy-learning-with-vmware/Snowballhttps://www.rfc1437.de/2006/02/20/snowball/Stéphane Ducasse :: Free Online Bookshttps://www.rfc1437.de/2006/02/20/st-phane-ducasse-free-online-books/ZNC - RottenBoyhttps://www.rfc1437.de/2006/02/20/znc-rottenboy/Bush und die Atomkrafthttps://www.rfc1437.de/2006/02/19/bush-und-die-atomkraft/United States of Absurdityhttps://www.rfc1437.de/2006/02/19/united-states-of-absurdity/Cocoa für Klammerfetischistenhttps://www.rfc1437.de/2006/02/18/cocoa-fuer-klammerfetischisten/Gauche:ObjectiveCBridgehttps://www.rfc1437.de/2006/02/18/gauche-objectivecbridge/HOC: A Haskell to Objective-C Bindinghttps://www.rfc1437.de/2006/02/18/hoc-a-haskell-to-objective-c-binding/Der wirkliche Grund hinter Hartz IV?https://www.rfc1437.de/2006/02/17/der-wirkliche-grund-hinter-hartz-iv/Dresdner war «Vertrauensbank der SS»https://www.rfc1437.de/2006/02/17/dresdner-war-vertrauensbank-der-ss/Nokia 770 and Virtual Bluetooth Keyboardhttps://www.rfc1437.de/2006/02/17/nokia-770-and-virtual-bluetooth-keyboard/OpenVPN on Maemohttps://www.rfc1437.de/2006/02/17/openvpn-on-maemo/Protzgehabe testosteron-geschädigter Prolethikerhttps://www.rfc1437.de/2006/02/17/protzgehabe-testosteron-geschaedigter-prolethiker/Bayrisches Innenministerium gegen das Grundgesetzhttps://www.rfc1437.de/2006/02/16/bayrisches-innenministerium-gegen-das-grundgesetz/Firewall-Anbieter, spitzt die Füller!https://www.rfc1437.de/2006/02/16/firewall-anbieter-spitzt-die-fueller/Schöne, neue RFID Welthttps://www.rfc1437.de/2006/02/16/schoene-neue-rfid-welt/Und wann gründen sie die Stasi neu?https://www.rfc1437.de/2006/02/16/und-wann-gruenden-sie-die-stasi-neu/Google Maps Plugin for Address Book - Brian Tothhttps://www.rfc1437.de/2006/02/15/google-maps-plugin-for-address-book-brian-toth/Karlsruhe kippt Luftsicherheitsgesetzhttps://www.rfc1437.de/2006/02/15/karlsruhe/Management by Stupidity or by Corruption?https://www.rfc1437.de/2006/02/15/management-by-stupidity-or-by-corruption/MUlliNER.ORG : Nokia770https://www.rfc1437.de/2006/02/15/mulliner-org-nokia770/SlimserverAndNokia770https://www.rfc1437.de/2006/02/15/slimserverandnokia770/Flagge zeigen gegen Nazishttps://www.rfc1437.de/2006/02/14/bnt-sttt-brn-bndns-fr-mnstr-ggn-rchtsrdklsms-t-n/Datenschutz und Sicherheitsinteressenhttps://www.rfc1437.de/2006/02/14/datenschutz-und-sicherheitsinteressen/Druck auf Hardware-Herstellerhttps://www.rfc1437.de/2006/02/14/druck-auf-hardware-hersteller/Ich mach den Job ja gerne...https://www.rfc1437.de/2006/02/14/ich-mach-den-job-ja-gerne/Mobil? 870 MB sind Mobil?https://www.rfc1437.de/2006/02/14/mobil-870-mb-sind-mobil/Peinliche SSL-Panne bei GeoTrusthttps://www.rfc1437.de/2006/02/14/peinliche-ssl-panne-bei-geotrust/pyOpenSSL - Python interface to the OpenSSL libraryhttps://www.rfc1437.de/2006/02/14/pyopenssl-python-interface-to-the-openssl-library/Sabrina und Twisterhttps://www.rfc1437.de/2006/02/14/sabrina-und-twister/Statistical programming with Rhttps://www.rfc1437.de/2006/02/14/statistical-programming-with-r-2/Yahoo! Design Pattern Libraryhttps://www.rfc1437.de/2006/02/14/yahoo-design-pattern-library/Yahoo! UI Libraryhttps://www.rfc1437.de/2006/02/14/yahoo-ui-library/Man muss Ask MetaFilter einfach liebenhttps://www.rfc1437.de/2006/02/13/man-muss-ask-metafilter-einfach-lieben/screen4DSLR : Changing Focusing screen for Canon DSLRhttps://www.rfc1437.de/2006/02/13/screen4dslr-changing-focusing-screen-for-canon/Spirit erreicht Homeplatehttps://www.rfc1437.de/2006/02/13/spirit-erreicht-homeplate/Kids ...https://www.rfc1437.de/2006/02/12/kids/Strategische Arbeitsmarktpolitikhttps://www.rfc1437.de/2006/02/12/strategische-arbeitsmarktpolitik/Aber bei uns hat ja keiner was gewussthttps://www.rfc1437.de/2006/02/11/aber-bei-uns-hat-ja-keiner-was-gewusst/Online-Luftbilder von Deutschlandhttps://www.rfc1437.de/2006/02/11/online-luftbilder-von-deutschland/I''m not a hater, I just flush a lot.https://www.rfc1437.de/2006/02/10/im-not-a-hater-i-just-flush-a-lot/Klar, ich pack Daten zu Google ...https://www.rfc1437.de/2006/02/10/klar-ich-pack-daten-zu-google/Language Design Is Not Just Solving Puzzleshttps://www.rfc1437.de/2006/02/10/language-design-is-not-just-solving-puzzles/Powerful Remote X Displays with FreeNXhttps://www.rfc1437.de/2006/02/10/powerful-remote-x-displays-with-freenx/RENAISSANCE Le site officiel du film de Christian Volckman - en salles en mars 2006.https://www.rfc1437.de/2006/02/10/renaissance-le-site-officiel-du-film-de-christian/Sin Cityhttps://www.rfc1437.de/2006/02/10/sin-city/VMware Server jetzt Freibierhttps://www.rfc1437.de/2006/02/10/vmware-server-jetzt-freibier/Django Templates are not limitedhttps://www.rfc1437.de/2006/02/09/django-templates-are-not-limited/.eu Domain Debakelhttps://www.rfc1437.de/2006/02/09/eu-domain-debakel/HolisTech Limited Free Software, pwsafehttps://www.rfc1437.de/2006/02/09/holistech-limited-free-software-pwsafe/Menschen den Märkten opfernhttps://www.rfc1437.de/2006/02/09/menschen-den-maerkten-opfern/Password Safehttps://www.rfc1437.de/2006/02/09/password-safe/pwsafe password databasehttps://www.rfc1437.de/2006/02/09/pwsafe-password-database/Spuren im Netzhttps://www.rfc1437.de/2006/02/09/spuren-im-netz/Benford's Lawhttps://www.rfc1437.de/2006/02/08/benford-s-law/EU verliert Gentechnik-Streit mit den USAhttps://www.rfc1437.de/2006/02/08/eu-verliert-gentechnik-streit-mit-den-usa/Hedgehoghttps://www.rfc1437.de/2006/02/08/hedgehog/LEGO Technic Difference Enginehttps://www.rfc1437.de/2006/02/08/lego-technic-difference-engine/Löcher im Java-Sandkastenhttps://www.rfc1437.de/2006/02/08/loecher-im-java-sandkasten/Scientists find new species in 'Garden of Eden'https://www.rfc1437.de/2006/02/08/scientists-find-new-species-in-garden-of-eden/CSS Fisheyehttps://www.rfc1437.de/2006/02/07/css-fisheye/GREYCSTORATIONhttps://www.rfc1437.de/2006/02/07/greycstoration/Lightbox JShttps://www.rfc1437.de/2006/02/07/lightbox-js/AVM könnte ja einfach Treiber unter GPL schreibenhttps://www.rfc1437.de/2006/02/06/avm-koennte-ja-einfach-treiber-unter-gpl-schreiben/HOWTO: Bluetooth GPS and GPSDrive on the Nokia 770https://www.rfc1437.de/2006/02/06/howto-bluetooth-gps-and-gpsdrive-on-the-nokia-770/Kommt einem alles so bekannt vorhttps://www.rfc1437.de/2006/02/06/kommt-einem-alles-so-bekannt-vor/lambda bleibt in Pythonhttps://www.rfc1437.de/2006/02/06/lambda-bleibt-in-python/Nennt mich einen Pessimisten ...https://www.rfc1437.de/2006/02/06/nennt-mich-einen-pessimisten/Ösi-Pässe auch anfällighttps://www.rfc1437.de/2006/02/06/oesi-paesse-auch-anfaellig/BMW bei Google rausgeworfenhttps://www.rfc1437.de/2006/02/05/bmw-bei-google-rausgeworfen/Console Password Managerhttps://www.rfc1437.de/2006/02/05/console-password-manager/The End of the Internet?https://www.rfc1437.de/2006/02/04/the-end-of-the-internet/Bielefelder Schienenklauhttps://www.rfc1437.de/2006/02/03/bielefelder-schienenklau/Zeichen von Intelligenzhttps://www.rfc1437.de/2006/02/03/zeichen-von-intelligenz/Book Review -- The Debian System: Concepts and Techniques | Linux Journalhttps://www.rfc1437.de/2006/02/02/book-review-the-debian-system-concepts-and/Die Lüge von der Informationsfreiheithttps://www.rfc1437.de/2006/02/02/die-luege-von-der-informationsfreiheit/Fischertechnik und der Machttps://www.rfc1437.de/2006/02/02/fischertechnik-und-der-mac/Internet Tablet Talk - Gnumeric 1.6.2 Releasedhttps://www.rfc1437.de/2006/02/02/internet-tablet-talk-gnumeric-1-6-2-released/Kopf in den Sandhttps://www.rfc1437.de/2006/02/02/kopf-in-den-sand/Man fühlt sich schon etwas missbraucht ...https://www.rfc1437.de/2006/02/02/man-fuehlt-sich-schon-etwas-missbraucht/Mandelbrot Set - Labixhttps://www.rfc1437.de/2006/02/02/mandelbrot-set-labix/Nokia 770 Internet Tablethttps://www.rfc1437.de/2006/02/02/nokia-770-internet-tablet/Schickt Münte in Rentehttps://www.rfc1437.de/2006/02/02/schickt-muente-in-rente/Verraten, überwacht und verkaufthttps://www.rfc1437.de/2006/02/02/verraten-ueberwacht-und-verkauft/Biometrischer Reisepass unsicherhttps://www.rfc1437.de/2006/02/01/biometrischer-reisepass-unsicher/Dummschwätzerhttps://www.rfc1437.de/2006/02/01/dummschwaetzer/Eiffel For OS Xhttps://www.rfc1437.de/2006/02/01/eiffel-for-os-x/Just-In-Time-Schemehttps://www.rfc1437.de/2006/02/01/just-in-time-scheme/Übergewichtighttps://www.rfc1437.de/2006/02/01/uebergewichtig/ApplicationCatalog - Maemo Wikihttps://www.rfc1437.de/2006/01/31/applicationcatalog-maemo-wiki/Springer und die Ministererlaubnishttps://www.rfc1437.de/2006/01/31/springer-und-die-ministererlaubnis/Domain-Engel wird pampighttps://www.rfc1437.de/2006/01/29/domain-engel-wird-pampig/Strickmoden - Stricken mit Strickmaschine, Strickdesign und Strickmusterhttps://www.rfc1437.de/2006/01/29/strickmoden-stricken-mit-strickmaschine/ThoughtFix on the Nokia 770: USB Power Injector 2https://www.rfc1437.de/2006/01/29/thoughtfix-on-the-nokia-770-usb-power-injector-2/Fussball-Leinwände und Webseitenhttps://www.rfc1437.de/2006/01/28/fussball-leinwaende-und-webseiten/Guido van Rossum und Web-Frameworkshttps://www.rfc1437.de/2006/01/28/guido-van-rossum-und-web-frameworks/"Bruder Johannes" gestorbenhttps://www.rfc1437.de/2006/01/27/bruder-johannes-gestorben/PythonForMaemo - Python for Maemohttps://www.rfc1437.de/2006/01/27/pythonformaemo-python-for-maemo/twill: a simple scripting language for Web browsinghttps://www.rfc1437.de/2006/01/27/twill-a-simple-scripting-language-for-web-browsing/Wir tun uns immer noch schwerhttps://www.rfc1437.de/2006/01/27/wir-tun-uns-immer-noch-schwer/Hirnfürze von Ex-Ministernhttps://www.rfc1437.de/2006/01/26/hirnfuerze-von-ex-ministern/Interessanter Hybride von Olympushttps://www.rfc1437.de/2006/01/26/interessanter-hybride-von-olympus/Leichte Übertreibungen bei der Netzzeitunghttps://www.rfc1437.de/2006/01/26/leichte-uebertreibungen-bei-der-netzzeitung/Spiele-Protokolle und Firewallshttps://www.rfc1437.de/2006/01/26/spiele-protokolle-und-firewalls/Torvalds: insert foot into mouthhttps://www.rfc1437.de/2006/01/26/torvalds-insert-foot-into-mouth/Windows-Source offenlegen?https://www.rfc1437.de/2006/01/26/windows-source-offenlegen/Opera Mini: Gratis HTML-Browser fürs Handy startet weltweit - Golem.dehttps://www.rfc1437.de/2006/01/25/opera-mini-gratis-html-browser-fuers-handy/Stigmatisierung von Jugendlichen schon in den Zeugnissenhttps://www.rfc1437.de/2006/01/25/stigmatisierung-von-jugendlichen-schon-n-dn-zgnssn/T-Online darf Nutzungsdaten nicht speichernhttps://www.rfc1437.de/2006/01/25/t-online-darf-nutzungsdaten-nicht-speichern/GVU soll Raubkopierer gesponsert habenhttps://www.rfc1437.de/2006/01/24/gvu-soll-raubkopierer-gesponsert-haben/Jean-Remy von Matt entkollert - dafür neidischhttps://www.rfc1437.de/2006/01/24/jean-remy-von-matt-entkollert-dafuer-neidisch/Microsoft macht die Schotten gegen OSS dichthttps://www.rfc1437.de/2006/01/24/microsoft-macht-die-schotten-gegen-oss-dicht/pyvm homehttps://www.rfc1437.de/2006/01/24/pyvm-home/A P R E S S . C O M : Practical Common Lisphttps://www.rfc1437.de/2006/01/23/a-p-r-e-s-s-c-o-m-practical-common-lisp/Bill Clementson's Blog: Update on Termite (A Lisp for Concurrent/Parallel Programming)https://www.rfc1437.de/2006/01/23/bill-clementson-s-blog-update-on-termite-a-lisp/BooCompanyhttps://www.rfc1437.de/2006/01/23/boocompany/Thinking Forthhttps://www.rfc1437.de/2006/01/23/thinking-forth-2/Unofficial documentation of iPhoto 6.0 photocasting feedshttps://www.rfc1437.de/2006/01/23/unofficial-documentation-of-iphoto-6-0/Wann entdecken Devs endlich Notebooks?https://www.rfc1437.de/2006/01/23/wann-entdecken-devs-endlich-notebooks/zum 20. Todestag von Joseph Beuyshttps://www.rfc1437.de/2006/01/23/zum-20-todestag-von-joseph-beuys/Unberechtigter Zugriff auf E-Mail ist halt unberechtigthttps://www.rfc1437.de/2006/01/22/hs-nln-nbrchtgtr-zgrff-f-ml-rchtfrtgt-frstls-kn/A list of open-source HTTP proxies written in pythonhttps://www.rfc1437.de/2006/01/21/a-list-of-open-source-http-proxies-written-in/runit - a UNIX init scheme with service supervisionhttps://www.rfc1437.de/2006/01/21/runit-a-unix-init-scheme-with-service-supervision/WebCleaner - a filtering HTTP proxyhttps://www.rfc1437.de/2006/01/21/webcleaner-a-filtering-http-proxy/Feed Icons - Help establish the new standardhttps://www.rfc1437.de/2006/01/20/feed-icons-help-establish-the-new-standard/HD? Nix da, sagt Hollywoodhttps://www.rfc1437.de/2006/01/20/hd-nix-da-sagt-hollywood/Hurring.com: Code: Python: PHP Serialize implemented in Pythonhttps://www.rfc1437.de/2006/01/20/hurring-com-code-python-php-serialize-implemented/Ok, Sandvox saugt nicht nur Hamsterhttps://www.rfc1437.de/2006/01/20/ok-sandvox-saugt-nicht-nur-hamster/Ross Barkman's Home Pagehttps://www.rfc1437.de/2006/01/20/ross-barkman-s-home-page/ScriptAculoUs - MochiKit - Trachttps://www.rfc1437.de/2006/01/20/scriptaculous-mochikit-trac/Sinar mhttps://www.rfc1437.de/2006/01/20/sinar-m/The Scanner Photography Projecthttps://www.rfc1437.de/2006/01/20/the-scanner-photography-project/US-Justiz will Google Datenhttps://www.rfc1437.de/2006/01/20/us-justiz-will-google-daten/Vertuschen, verleugnen und ignorierenhttps://www.rfc1437.de/2006/01/20/vertuschen-verleugnen-und-ignorieren/Monitor: Vorwürfe gegen Ratiopharmhttps://www.rfc1437.de/2006/01/19/monitor-vorwuerfe-gegen-ratiopharm/Putzige Werbefuzzishttps://www.rfc1437.de/2006/01/19/putzige-werbefuzzis/Und der nächste verlässt unshttps://www.rfc1437.de/2006/01/19/und-der-naechste-verlaesst-uns/Wikipedia.de derzeit abgeschaltethttps://www.rfc1437.de/2006/01/19/wikipediade-derzeit-abgeschaltet/Cosina ist das neue Contax, sort ofhttps://www.rfc1437.de/2006/01/18/cosina-ist-das-neue-contax-sort-of/Katz Eye Focusing Screen for the Canon 10D @ KatzEyeOptics.comhttps://www.rfc1437.de/2006/01/18/katz-eye-focusing-screen-for-the-canon-10d/RapidWeaver - das nächste Website-Toolhttps://www.rfc1437.de/2006/01/18/rapidweaver-das-naechste-website-tool/An alle Oberonistashttps://www.rfc1437.de/2006/01/17/an-alle-oberonistas/Erster Test mit Sandvoxhttps://www.rfc1437.de/2006/01/17/erster-test-mit-sandvox/FDP spannt sich vor die Musikindustriehttps://www.rfc1437.de/2006/01/17/fdp-spannt-sich-vor-die-musikindustrie/Plötzlich evangelischhttps://www.rfc1437.de/2006/01/17/junge-welt-vom-17012006-ploetzlich-evangelisch/Sandvox Test Teil 2https://www.rfc1437.de/2006/01/17/sandvox-test-teil-2/Du bist Blödhttps://www.rfc1437.de/2006/01/16/du-bist-bloed/Fiddling with iWebhttps://www.rfc1437.de/2006/01/15/fiddling-with-iweb/RFID-Zapper - 22C3https://www.rfc1437.de/2006/01/15/rfid-zapper-22c3/Ancient Languages: Perlhttps://www.rfc1437.de/2006/01/14/ancient-languages-perl/Auf Schilys Spurenhttps://www.rfc1437.de/2006/01/13/auf-schilys-spuren/Django Pastehttps://www.rfc1437.de/2006/01/13/django-paste/Europäisches Schulterklopfen auf Kosten der Bürgerrechtehttps://www.rfc1437.de/2006/01/13/europaeisches-schulterklopfen-auf-kstn-dr-brgrrcht/Products - Flip4Mac WMVhttps://www.rfc1437.de/2006/01/13/products-flip4mac-wmv/Apples Photocast Formathttps://www.rfc1437.de/2006/01/12/apples-photocast-format/Jetzt mal ganz ehrlich ...https://www.rfc1437.de/2006/01/12/jetzt-mal-ganz-ehrlich/MoinMoin Release 1.5https://www.rfc1437.de/2006/01/12/moinmoin-release-1-5/Das kalte Grausen packt einen ...https://www.rfc1437.de/2006/01/11/das-kalte-grausen-packt-einen/Feeds auf diesem Serverhttps://www.rfc1437.de/2006/01/11/feeds-auf-diesem-server/Microsoft behält FAT-Patentehttps://www.rfc1437.de/2006/01/11/microsoft-behaelt-fat-patente/ProGraph für OS Xhttps://www.rfc1437.de/2006/01/11/prograph-fuer-os-x//sandbox/spam-filter - The Trac Project - Trachttps://www.rfc1437.de/2006/01/11/sandbox-spam-filter-the-trac-project-trac/Was man so mit Arbeitslosen machen kannhttps://www.rfc1437.de/2006/01/11/was-man-so-mit-arbeitslosen-machen-kann/DotMac nervthttps://www.rfc1437.de/2006/01/10/dotmac-nervt/Efficient Editing With vim - Jonathan McPhersonhttps://www.rfc1437.de/2006/01/10/efficient-editing-with-vim-jonathan-mcpherson/Farbenfrohhttps://www.rfc1437.de/2006/01/10/farbenfroh/Freie Alternative zu Flash?https://www.rfc1437.de/2006/01/10/freie-alternative-zu-flash/Gerade einen Schreck gekriegt ...https://www.rfc1437.de/2006/01/10/gerade-einen-schreck-gekriegt/Kann mir bitte mal jemand erklären ...https://www.rfc1437.de/2006/01/10/kann-mir-bitte-mal-jemand-erklaeren/open sword - pixenhttps://www.rfc1437.de/2006/01/10/open-sword-pixen/Adobe Lightroom Beta: Digital Photography Reviewhttps://www.rfc1437.de/2006/01/09/adobe-lightroom-beta-digital-photography-review/Introducing Sandvox | Karelia Softwarehttps://www.rfc1437.de/2006/01/09/introducing-sandvox-karelia-software/Lightroom - erste Testshttps://www.rfc1437.de/2006/01/09/lightroom-erste-tests/Mancher Abmahnwahnsinn wird verständlich ...https://www.rfc1437.de/2006/01/09/mancher-abmahnwahnsinn-wird-verstaendlich/Mexico Bars Canadian over U.S. No-Fly Listhttps://www.rfc1437.de/2006/01/09/mexico-bars-canadian-over-us-no-fly-list/nadamac CamiScripthttps://www.rfc1437.de/2006/01/09/nadamac-camiscript/nadamac CamiScript - Script Repositoryhttps://www.rfc1437.de/2006/01/09/nadamac-camiscript-script-repository/PictureSync » Photo-sharing for Mac OS Xhttps://www.rfc1437.de/2006/01/09/picturesync-photo-sharing-for-mac-os-x/Polaris: OpenSolaris für den PowerPChttps://www.rfc1437.de/2006/01/09/polaris-opensolaris-fuer-den-powerpc/Billy's Band - polnische Rock-Polkahttps://www.rfc1437.de/2006/01/08/billys-band-polnische-rock-polka/Loading a ZX Spectrum from an iPodhttps://www.rfc1437.de/2006/01/08/loading-a-zx-spectrum-from-an-ipod/Gambit Scheme - eine neue Betahttps://www.rfc1437.de/2006/01/07/gambit-scheme-eine-neue-beta/Impotenz per Funk diagnostizierbarhttps://www.rfc1437.de/2006/01/07/impotenz-per-funk-diagnostizierbar/Nazi und SS-Mann Harrer verstorbenhttps://www.rfc1437.de/2006/01/07/nazi-und-ss-mann-harrer-verstorben/Nur die besten Absichten ...https://www.rfc1437.de/2006/01/07/nur-die-besten-absichten/Wahrung der Interessen des Senats?https://www.rfc1437.de/2006/01/07/wahrung-der-interessen-des-senats/Wiedereinführung des Schuldturmshttps://www.rfc1437.de/2006/01/07/wiedereinfuehrung-des-schuldturms/AES (Rijndael) Encryption Test in JavaScripthttps://www.rfc1437.de/2006/01/06/aes-rijndael-encryption-test-in-javascript/FUDMachine SCOhttps://www.rfc1437.de/2006/01/06/fudmachine-sco/Informationsfreiheitsgesetz und seine Umsetzunghttps://www.rfc1437.de/2006/01/06/informationsfreiheitsgesetz-und-seine-umsetzung/JavaScript Encryption Libraryhttps://www.rfc1437.de/2006/01/06/javascript-encryption-library/OpenPGP Message Encryption in JavaScripthttps://www.rfc1437.de/2006/01/06/openpgp-message-encryption-in-javascript/Pangasiushttps://www.rfc1437.de/2006/01/06/pangasius/PuTTY for Symbian OShttps://www.rfc1437.de/2006/01/06/putty-for-symbian-os/Rijndael in JavaScripthttps://www.rfc1437.de/2006/01/06/rijndael-in-javascript/Spekulationen um neue Atommeiler in NRWhttps://www.rfc1437.de/2006/01/06/spekulationen-um-neue-atommeiler-in-nrw/Terrorverdächtiger Hut?https://www.rfc1437.de/2006/01/06/terrorverdaechtiger-hut/twofish/javascripthttps://www.rfc1437.de/2006/01/06/twofish-javascript/code.enthought.com - Enthought Tool Suitehttps://www.rfc1437.de/2006/01/05/code-enthought-com-enthought-tool-suite/morons.org - Anti-Gay Preacher Arrested for Soliciting Sex from Male Undercover Cophttps://www.rfc1437.de/2006/01/05/morons-org-anti-gay-preacher-arrested-for//my/cssQuery/https://www.rfc1437.de/2006/01/05/my-cssquery/Neues von Lego Mindstormshttps://www.rfc1437.de/2006/01/05/neues-von-lego-mindstorms/Schmeissen wir doch gleich das Geld in den Tankhttps://www.rfc1437.de/2006/01/05/schmeissen-wir-doch-gleich-das-geld-in-den-tank/Aggregatoren und Referrer-Spamminghttps://www.rfc1437.de/2006/01/04/aggregatoren-und-referrer-spamming/Baden-Württemberg, das etwas deutschere Deutschland?https://www.rfc1437.de/2006/01/04/baden-wuerttemberg-das-etwas-deutschere-deutschlnd/Codevillehttps://www.rfc1437.de/2006/01/04/codeville/Crossroads 0.23https://www.rfc1437.de/2006/01/04/crossroads-0-23/CSU kann Gas und Strom nicht auseinanderhaltenhttps://www.rfc1437.de/2006/01/04/csu-kann-gas-und-strom-nicht-auseinanderhalten/Hat so ein RFID-Pass eigentlich Garantie?https://www.rfc1437.de/2006/01/04/hat-so-ein-rfid-pass-eigentlich-garantie/monotone: distributed version controlhttps://www.rfc1437.de/2006/01/04/monotone-distributed-version-control/xmledit - A filetype plugin to help edit XML, HTML, and SGML documents : vim onlinehttps://www.rfc1437.de/2006/01/04/xmledit-a-filetype-plugin-to-help-edit-xml-html/cucumber2: an object-relational mapping system for Python and PostgreSQLhttps://www.rfc1437.de/2006/01/03/cucumber2-an-object-relational-mapping-system-for/Folter-Hoax und die Aktzeptanzhttps://www.rfc1437.de/2006/01/03/folter-hoax-und-die-aktzeptanz/Schon seltsamhttps://www.rfc1437.de/2006/01/03/schon-seltsam/WAP, Internet & Multimedia Messaging (MMS) Einstellungen Netzbetreiber Deutschland - Telefon-Treffhttps://www.rfc1437.de/2006/01/03/wap-internet-multimedia-messaging-mms/Wie man sich vor Verantwortung drückthttps://www.rfc1437.de/2006/01/03/wie-man-sich-vor-verantwortung-drueckt/Camino Bookmarkletshttps://www.rfc1437.de/2006/01/02/camino-bookmarklets/Damit Softwarepatente nicht in Vergessenheit geratenhttps://www.rfc1437.de/2006/01/02/damit-softwarepatente-nicht-in-vergessenheit-gertn/FireFox ist schon strangehttps://www.rfc1437.de/2006/01/02/firefox-ist-schon-strange/Lisp at Light Speedhttps://www.rfc1437.de/2006/01/02/lisp-at-light-speed/nadamac CamiToolshttps://www.rfc1437.de/2006/01/02/nadamac-camitools/Noch mehr Abmahnereien zum neuen Jahrhttps://www.rfc1437.de/2006/01/02/noch-mehr-abmahnereien-zum-neuen-jahr/NoScript - Whitelist JavaScript blocking for a safer Firefox experience! - what is it? - InformActionhttps://www.rfc1437.de/2006/01/02/noscript-whitelist-javascript-blocking-for-a/Taste for the Webhttps://www.rfc1437.de/2006/01/02/taste-for-the-web/Verfassungsbeschwerde gegen Abhörbefugnisse des Zollshttps://www.rfc1437.de/2006/01/02/verfassungsbeschwerd-ggn-mstrttn-bhrbfgnss-ds-zlls/Web Developer Extensionhttps://www.rfc1437.de/2006/01/02/web-developer-extension/Forscher neigen zu Übertreibungenhttps://www.rfc1437.de/2005/12/31/forscher-neigen-zu-uebertreibungen/Re: Web application design: the REST of the storyhttps://www.rfc1437.de/2005/12/31/re-web-application-design-the-rest-of-the-story/Wiehernde Amtsschimmelhttps://www.rfc1437.de/2005/12/31/wiehernde-amtsschimmel/LGT: Lightweight Game Toolkit for Pythonhttps://www.rfc1437.de/2005/12/30/lgt-lightweight-game-toolkit-for-python/newsRiver - Aggregator für den OPML Editorhttps://www.rfc1437.de/2005/12/30/newsriver-aggregator-fuer-den-opml-editor/SIXTUS.NET - Blog | Papi, wo kommen eigenlich die ganzen Spam-Kommentare her? Die, mein Kind, kommen aus Lindlar, vom Sebastian Fosshttps://www.rfc1437.de/2005/12/30/sixtus-net-blog-papi-wo-kommen-eigenlich-die/TP: Noch nicht aus dem Vollen geschöpfthttps://www.rfc1437.de/2005/12/30/tp-noch-nicht-aus-dem-vollen-geschoepft/Webstemmerhttps://www.rfc1437.de/2005/12/30/webstemmer/RAW Developer Upgradehttps://www.rfc1437.de/2005/12/29/raw-developer-upgrade/Susanne Osthoff - und die Presse und Politikhttps://www.rfc1437.de/2005/12/29/susanne-osthoff-und-die-presse-und-politik/Wer ist denn jetzt hier der Hassprediger?https://www.rfc1437.de/2005/12/28/wer-ist-denn-jetzt-hier-der-hassprediger/Was ist los mit dem Glos?https://www.rfc1437.de/2005/12/27/was-ist-los-mit-dem-glos/Wettbewerb des Horrorshttps://www.rfc1437.de/2005/12/27/wettbewerb-des-horrors/Hwang soll alle Ergebnisse gefälscht habenhttps://www.rfc1437.de/2005/12/26/hwang-soll-alle-ergebnisse-gefaelscht-haben/Internet Explorer Suckshttps://www.rfc1437.de/2005/12/26/internet-explorer-sucks/Leica Digital Mhttps://www.rfc1437.de/2005/12/26/leica-digital-m/Neue Kleinbild-Optiken von Zeisshttps://www.rfc1437.de/2005/12/26/neue-kleinbild-optiken-von-zeiss/simple_json 1.0https://www.rfc1437.de/2005/12/26/simple-json-1-0/Strelitzia reginaehttps://www.rfc1437.de/2005/12/26/strelitzia-reginae/Nun habt doch mal Verständnis!https://www.rfc1437.de/2005/12/23/nun-habt-doch-mal-verstaendnis/SCO damit wohl bald besiegelthttps://www.rfc1437.de/2005/12/23/sco-damit-wohl-bald-besiegelt/Demontage von NRW geht voranhttps://www.rfc1437.de/2005/12/22/demontage-von-nrw-geht-voran/Ja watt denn nu?https://www.rfc1437.de/2005/12/22/ja-watt-denn-nu/Rennende Riesen Down Under?https://www.rfc1437.de/2005/12/22/rennende-riesen-down-under/CSS2/DOM - Styling an input type="file"https://www.rfc1437.de/2005/12/21/css2-dom-styling-an-input-type-file/Rechenspielchenhttps://www.rfc1437.de/2005/12/21/rechenspielchen/StickBlog » Blog Archive » Upload multiple files with a single file elementhttps://www.rfc1437.de/2005/12/21/stickblog-blog-archive-upload-multiple-files-with/Weblogshttps://www.rfc1437.de/2005/12/21/weblogs/Werft die Purschen zu Poden!https://www.rfc1437.de/2005/12/21/werft-die-purschen-zu-poden/Experten am Werkhttps://www.rfc1437.de/2005/12/20/experten-am-werk/Reichsarbeitsdiensthttps://www.rfc1437.de/2005/12/20/reichsarbeitsdienst/Verschollener Mars-Roboter "Beagle 2" entdeckthttps://www.rfc1437.de/2005/12/20/verschollener-mars-roboter-beagle-2-entdeckt/Dejavu - Trachttps://www.rfc1437.de/2005/12/19/dejavu-trac-2/Homebrew CPU Home Pagehttps://www.rfc1437.de/2005/12/19/homebrew-cpu-home-page/leichte Instabilität dieser Sitehttps://www.rfc1437.de/2005/12/19/leichte-instabilitaet-dieser-site/Download DrScheme v300https://www.rfc1437.de/2005/12/18/download-drscheme-v300/Elende Abzockerhttps://www.rfc1437.de/2005/12/18/elende-abzocker/Pandora - erste Spielereienhttps://www.rfc1437.de/2005/12/18/pandora-erste-spielereien/Qualitätssicherung im iTunes Music Storehttps://www.rfc1437.de/2005/12/18/qualitaetssicherung-im-itunes-music-store/SVG Has Landedhttps://www.rfc1437.de/2005/12/18/svg-has-landed/Wie wärs denn mal mit Ausbilden?https://www.rfc1437.de/2005/12/18/wie-waers-denn-mal-mit-ausbilden/AirTunes - nur ne halbe Sache?https://www.rfc1437.de/2005/12/17/airtunes-nur-ne-halbe-sache/Apple und Firewire - bald ein Ende?https://www.rfc1437.de/2005/12/17/apple-und-firewire-bald-ein-ende/appscripthttps://www.rfc1437.de/2005/12/17/appscript-3/Generische Funktionen mit Pythonhttps://www.rfc1437.de/2005/12/17/generische-funktionen-mit-python/LTK - The Lisp Toolkithttps://www.rfc1437.de/2005/12/17/ltk-the-lisp-toolkit/Sams Teach Yourself Shell Programming in 24 Hourshttps://www.rfc1437.de/2005/12/17/sams-teach-yourself-shell-programming-in-24-hours/Tonnenschwere Moore-Skulptur gestohlenhttps://www.rfc1437.de/2005/12/17/tonnenschwere-moore-skulptur-gestohlen/Bundestag verlängert Zoll-Befugnissehttps://www.rfc1437.de/2005/12/16/bundestag-verlaengert-zoll-befugnisse/Gen-Food-Dreck auch bald in Deutschland?https://www.rfc1437.de/2005/12/16/gen-food-dreck-auch-bald-in-deutschland/[GOODIE] Headless Squeak for OS X (Re: Mac VM 3.2.X)https://www.rfc1437.de/2005/12/16/goodie-headless-squeak-for-os-x-re-mac-vm-3-2-x/Hyper Estraier: a full-text search system for communitieshttps://www.rfc1437.de/2005/12/16/hyper-estraier-a-full-text-search-system-for/The Xapian Projecthttps://www.rfc1437.de/2005/12/16/the-xapian-project/Bankenskandal in Italien: keine kleinen Brötchenhttps://www.rfc1437.de/2005/12/15/bankenskandal-in-italien-keine-kleinen-broetchen/Inets 2.5.5https://www.rfc1437.de/2005/12/15/inets-2-5-5/Is Rails a DSL? What is a DSL, and is it possible in Python?https://www.rfc1437.de/2005/12/15/is-rails-a-dsl-what-is-a-dsl-and-is-it-possible/Niederlage für Strafanzeigen-Maschinerie gegen P2P-Nutzerhttps://www.rfc1437.de/2005/12/15/juristische-nidrlg-fr-strfnzgn-mschnr-ggn-p2p-ntzr/Linux Daemon Writing HOWTOhttps://www.rfc1437.de/2005/12/15/linux-daemon-writing-howto/Yawshttps://www.rfc1437.de/2005/12/15/yaws/Python Cheese Shop : python-fastcgi 1.0https://www.rfc1437.de/2005/12/14/python-cheese-shop-python-fastcgi-1-0/Python OpenID 1.0.1 Released — OpenID Enabledhttps://www.rfc1437.de/2005/12/14/python-openid-1-0-1-released-openid-enabled/Vorratsdatenspeicherung ist ein Skandalhttps://www.rfc1437.de/2005/12/14/vorratsdatenspeicherung-ist-ein-skandal/Brüssel will jetzt auch am Fernsehprogramm rumpfuschenhttps://www.rfc1437.de/2005/12/13/bruessel-will-jetzt-auch-am-fernsehprgrmm-rmpfschn/Hacking the jProject - The Daily WTFhttps://www.rfc1437.de/2005/12/13/hacking-the-jproject-the-daily-wtf/How-To Guide for Descriptorshttps://www.rfc1437.de/2005/12/13/how-to-guide-for-descriptors/jacobian.org : Django performance tipshttps://www.rfc1437.de/2005/12/13/jacobian-org-django-performance-tips/Nur so eine Überlegunghttps://www.rfc1437.de/2005/12/13/nur-so-eine-ueberlegung/pgpool pagehttps://www.rfc1437.de/2005/12/13/pgpool-page/Von Kontrolle redet mal wieder keinerhttps://www.rfc1437.de/2005/12/12/von-kontrolle-redet-mal-wieder-keiner/Westerwelle an Lächerlichkeit kaum zu überbietenhttps://www.rfc1437.de/2005/12/12/westerwelle-an-laecherlichkeit-kaum-zu-ueberbieten/Wikipedia verklagen?https://www.rfc1437.de/2005/12/12/wikipedia-verklagen/Seltsames iTunes Verhaltenhttps://www.rfc1437.de/2005/12/11/seltsames-itunes-verhalten/Guardian Unlimited Special reports How planespotters turned into the scourge of the CIAhttps://www.rfc1437.de/2005/12/10/guardian-unlimited-special-reports-how/Super-DRM-Architektur der Zukunfthttps://www.rfc1437.de/2005/12/10/super-drm-architektur-der-zukunft/Und wir machen alle Fehler erneuthttps://www.rfc1437.de/2005/12/10/und-wir-machen-alle-fehler-erneut/Deadlockhttps://www.rfc1437.de/2005/12/09/deadlock/Fragen, die man sich stellen musshttps://www.rfc1437.de/2005/12/09/fragen-die-man-sich-stellen-muss/Grössenwahnsinnige Musikverlagehttps://www.rfc1437.de/2005/12/09/groessenwahnsinnige-musikverlage/Kampfsprachehttps://www.rfc1437.de/2005/12/09/kampfsprache/Klimagipfel: USA drohen mit Vetohttps://www.rfc1437.de/2005/12/09/klimagipfel-usa-drohen-mit-veto/setting user passwords in adminhttps://www.rfc1437.de/2005/12/09/setting-user-passwords-in-admin/Sony fällt schon wieder aufhttps://www.rfc1437.de/2005/12/09/sony-faellt-schon-wieder-auf/SystemExit und exception handlershttps://www.rfc1437.de/2005/12/09/systemexit-und-exception-handlers/Vampirehttps://www.rfc1437.de/2005/12/09/vampire/Yellow-Box für Windowshttps://www.rfc1437.de/2005/12/09/yellow-box-fuer-windows/Apple Aperture Review - oder: Beware of Version 1.0 | Die Stimme der freien Welthttps://www.rfc1437.de/2005/12/08/apple-aperture-review-oder-beware-of-version-1-0/Erschreckend ist ...https://www.rfc1437.de/2005/12/08/erschreckend-ist/Learning Seasidehttps://www.rfc1437.de/2005/12/08/learning-seaside/Umschaltung kompletthttps://www.rfc1437.de/2005/12/08/umschaltung-komplett/Ajax Sucks Most of the Time (Jakob Nielsen's Alertbox December 2005)https://www.rfc1437.de/2005/12/07/ajax-sucks-most-of-the-time-jakob-nielsen-s/Commentaryhttps://www.rfc1437.de/2005/12/07/commentary/Frankreich will Urheberrecht verschärfenhttps://www.rfc1437.de/2005/12/07/frankreich-will-urheberrecht-verschaerfen/Kriegt Sony jetzt Ärger mit Apple?https://www.rfc1437.de/2005/12/07/kriegt-sony-jetzt-aerger-mit-apple/pyinotifyhttps://www.rfc1437.de/2005/12/07/pyinotify/Seltsame Äusserungen von Condoleezza Ricehttps://www.rfc1437.de/2005/12/07/seltsame-aeusserungen-von-condoleezza-rice/Discover Music - Pandorahttps://www.rfc1437.de/2005/12/06/discover-music-pandora/Kampagne gegen freie Software in Frankreichhttps://www.rfc1437.de/2005/12/06/kampagne-gegen-freie-software-in-frankreich/Unsterblicher Briefwechselhttps://www.rfc1437.de/2005/12/06/unsterblicher-briefwechsel/Weblog-Umzughttps://www.rfc1437.de/2005/12/06/weblog-umzug/Aperture bei Ars Technicahttps://www.rfc1437.de/2005/12/05/aperture-page-1/Oh Mann, bei solchen Richtern brauchen wir keine Verbrecher mehr ...https://www.rfc1437.de/2005/12/05/oh-mann-bei-solchen-rchtrn-brchn-wr-kn-vrbrchr-mhr/Paj''s Home: Cryptography: JavaScript MD5: sha1.jshttps://www.rfc1437.de/2005/12/05/paj-s-home-cryptography-javascript-md5-sha1-js/Und wech mit den Schrankenhttps://www.rfc1437.de/2005/12/05/und-wech-mit-den-schranken/Gehts Otto Orwell endlich an den Kragen?https://www.rfc1437.de/2005/12/04/gehts-otto-orwell-endlich-an-den-kragen/Geißler (und andere) über seine (und ihre) Parteihttps://www.rfc1437.de/2005/12/04/geisler-und-andere-uber-seine-und-ihre-partei/Trolle in Kommentaren - gescheitert am Intelligenztesthttps://www.rfc1437.de/2005/12/04/trolle-in-kommentaren-gescheitert-am-intellignztst/"Bild" als Kulturproblem von Gerhard Henschelhttps://www.rfc1437.de/2005/12/03/bild-als-kulturproblem-von-gerhard-henschel/Boßdorf fällt mal wieder aufhttps://www.rfc1437.de/2005/12/03/bosdorf-fallt-mal-wieder-auf/EU will Telefondaten sechs Monate speichernhttps://www.rfc1437.de/2005/12/03/eu-will-telefondaten-sechs-monate-speichern/Muss die FDP eine Millionenstrafe zahlen?https://www.rfc1437.de/2005/12/03/muss-die-fdp-eine-millionenstrafe-zahlen/Userscripts.org - Universal Repositoryhttps://www.rfc1437.de/2005/12/03/userscripts-org-universal-repository/Wusste RWE von Mängeln bei Strommasten?https://www.rfc1437.de/2005/12/03/wusste-rwe-von-maengeln-bei-strommasten/akismet.pyhttps://www.rfc1437.de/2005/12/02/akismet-py/Daten-Nichtschutz-Erklärungen bei Versicherungenhttps://www.rfc1437.de/2005/12/02/daten-nichtschutz-erklarungen-bei-versicherungen/Development « Akismethttps://www.rfc1437.de/2005/12/02/development-akismet/Louiehttps://www.rfc1437.de/2005/12/02/louie/Neue Gesundheitssystem-Beschnittehttps://www.rfc1437.de/2005/12/02/neue-gesundheitssystem-beschnitte/Manchmal zweifelt man an Applehttps://www.rfc1437.de/2005/12/01/manchmal-zweifelt-man-an-apple/SQLAlchemy READMEhttps://www.rfc1437.de/2005/12/01/sqlalchemy-readme/Vorratsspeicherung von TK-Daten: Die großen Fraktionen knicken einhttps://www.rfc1437.de/2005/12/01/vorratsspeicherung-vn-tk-dtn-d-grsn-frktnn-knckn-n/axentric. a web designer's “tackboard”.https://www.rfc1437.de/2005/11/30/axentric-a-web-designer-s-tackboard/Gericht verhandelt Bleiberecht des "Bremer Taliban"https://www.rfc1437.de/2005/11/30/gericht-verhandelt-bleiberecht-des-bremer-taliban/Overview of new features in Apache 2.2 - Apache HTTP Serverhttps://www.rfc1437.de/2005/11/30/overview-of-new-features-in-apache-2-2-apache/Privatsender über Satellit nur noch verschlüsselt?https://www.rfc1437.de/2005/11/30/privatsender-ueber-stllt-nr-nch-vrschlsslt-tgsschd/What’s New in WordPress 2.0? · Asymptomatichttps://www.rfc1437.de/2005/11/30/what-s-new-in-wordpress-2-0-asymptomatic/Mal wieder was von der Bastelfronthttps://www.rfc1437.de/2005/11/29/mal-wieder-was-von-der-bastelfront/Google Groups : microsoft.public.windowsmedia.drmhttps://www.rfc1437.de/2005/11/28/google-groups-microsoft-public-windowsmedia-drm/Kardinalssprüche gegen iPod und Co.https://www.rfc1437.de/2005/11/28/kardinalsspruche-gegen-ipod-und-co/Merkel legt die Gleitcreme aufhttps://www.rfc1437.de/2005/11/28/merkel-legt-die-gleitcreme-auf/Nur wenige Tage im Amt, aber korrupt bis ins Mark?https://www.rfc1437.de/2005/11/28/nur-wenige-tage-im-amt-aber-korrupt-bis-ins-mark/Warum unsere Politiker keine Volksbegehren wollenhttps://www.rfc1437.de/2005/11/28/warum-unsere-politiker-keine-volksbegehren-wollen/Another OPML server...https://www.rfc1437.de/2005/11/27/another-opml-server/JobControl - Django Projects - Trachttps://www.rfc1437.de/2005/11/27/jobcontrol-django-projects-trac/Das Versagen der RWEhttps://www.rfc1437.de/2005/11/26/das-versagen-der-rwe/Eine Schneeflocke fällt ...https://www.rfc1437.de/2005/11/26/eine-schneeflocke-fallt/Erster anstehender Abgang der Regierung?https://www.rfc1437.de/2005/11/26/erster-anstehender-abgang-der-regierung/Family-Updatehttps://www.rfc1437.de/2005/11/26/family-update/AirPort Bloghttps://www.rfc1437.de/2005/11/24/airport-blog/Auf in die totale Überwachunghttps://www.rfc1437.de/2005/11/24/auf-in-die-totale-uberwachung/DOPE Squad Securityhttps://www.rfc1437.de/2005/11/24/dope-squad-security/DragAndDrop - MochiKit - Trachttps://www.rfc1437.de/2005/11/24/draganddrop-mochikit-trac/Holografische Wechselmedien mit bis zu 1,6 Terabytehttps://www.rfc1437.de/2005/11/24/holografische-wechselmedien-mit-bis-zu-16-terabyte/How Secure is WEP, Anyway?https://www.rfc1437.de/2005/11/24/how-secure-is-wep-anyway/Weird Python 2.3 Bughttps://www.rfc1437.de/2005/11/24/weird-python-23-bug/Manchmal ist OS X etwas strangehttps://www.rfc1437.de/2005/11/23/manchmal-ist-os-x-etwas-strange/Microsoft to Standardize Office Formats in ECMAhttps://www.rfc1437.de/2005/11/23/microsoft-to-standardize-office-formats-in-ecma/The Vienna Conclusion: Sponsorship+Politics=Influencehttps://www.rfc1437.de/2005/11/23/the-vienna-conclusion-sponsorshippoliticsinfluence/Vatikan-Papier: Schwule dürfen keine Priester werdenhttps://www.rfc1437.de/2005/11/23/vatikan-papier-schwule-durfen-keine-priester-werdn/Web Development Bookmarkletshttps://www.rfc1437.de/2005/11/23/web-development-bookmarklets-2/Closures python,scheme,rubyhttps://www.rfc1437.de/2005/11/22/closures-python-scheme-ruby/EU Generalanwalt gegen Datenweitergabehttps://www.rfc1437.de/2005/11/22/eu-generalanwalt-gegen-datenweitergabe/Hab ich eigentlich schon gesagt, ...https://www.rfc1437.de/2005/11/22/hab-ich-eigentlich-schon-gesagt/Light Field Photography with a Hand-Held Plenoptic Camerahttps://www.rfc1437.de/2005/11/22/light-field-photography-with-a-hand-held/Linux on an Apple Powerbook G4https://www.rfc1437.de/2005/11/22/linux-on-an-apple-powerbook-g4/Routes 1.0 Releasedhttps://www.rfc1437.de/2005/11/22/routes-1-0-released/"The Whitespace Thing" for OCamlhttps://www.rfc1437.de/2005/11/22/the-whitespace-thing-for-ocaml/Ubuntu on the PowerBook G4 (powerbook5,6)https://www.rfc1437.de/2005/11/22/ubuntu-on-the-powerbook-g4-powerbook5-6/Ubuntu und Powerbookhttps://www.rfc1437.de/2005/11/22/ubuntu-und-powerbook/Dejavu - Trachttps://www.rfc1437.de/2005/11/21/dejavu-trac/Ein Marsjahr unterwegshttps://www.rfc1437.de/2005/11/21/ein-marsjahr-unterwegs/Na endlich gehts der Dialer-Verwertungskette mal an den Kragenhttps://www.rfc1437.de/2005/11/21/na-endlich-gehts-der-dilr-vrwrtngsktt-ml-n-dn-krgn/Rechtsstreit um ARD-Wahl-Grafiken beigelegthttps://www.rfc1437.de/2005/11/21/rechtsstreit-um-ard-wahl-grafiken-beigelegt/Deutschland - Waffenschieberhttps://www.rfc1437.de/2005/11/19/deutschland-waffenschieber/Hyperthreading hurts server performance, say developershttps://www.rfc1437.de/2005/11/19/hyperthreading-hurts-server-performance-say/Richard Stallman Gets in Trouble with UN Security for Wearing a Tin-Foil Hathttps://www.rfc1437.de/2005/11/19/richard-stallman-gets-in-trouble-with-un-security/Taxi 3https://www.rfc1437.de/2005/11/19/taxi-3/Widerwärtig ...https://www.rfc1437.de/2005/11/19/widerwartig/Definition: Peinlichhttps://www.rfc1437.de/2005/11/18/definition-peinlich/Betrug am Fussballhttps://www.rfc1437.de/2005/11/17/betrug-am-fussball/Hibernate on your non-brandnew Machttps://www.rfc1437.de/2005/11/17/hibernate-on-your-non-brandnew-mac/Kritische Lücke in Content Management System Mambohttps://www.rfc1437.de/2005/11/17/kritische-lucke-in-content-management-system-mambo/Ein Millimeterhttps://www.rfc1437.de/2005/11/16/ein-millimeter/Kaktusmilbehttps://www.rfc1437.de/2005/11/16/kaktusmilbe/Kaktusmilbe Revisitedhttps://www.rfc1437.de/2005/11/16/kaktusmilbe-revisited/Kaktusstachelpolsterhttps://www.rfc1437.de/2005/11/16/kaktusstachelpolster/e-Voting: Anfechtung der Bundestagswahl wegen Wahlcomputernhttps://www.rfc1437.de/2005/11/14/e-voting-anfechtung-der-bundestgswhl-wgn-whlcmptrn/Manches ärgert mich fürchterlichhttps://www.rfc1437.de/2005/11/14/manches-aergert-mich-fuerchterlich/Und dann war da noch ...https://www.rfc1437.de/2005/11/14/und-dann-war-da-noch/Apples WebObjects mit neuen Lizenzbedingungenhttps://www.rfc1437.de/2005/11/13/apples-webobjects-mit-neuen-lizenzbedingungen/Astgewirrhttps://www.rfc1437.de/2005/11/13/astgewirr/Beim Geocaching fotografierthttps://www.rfc1437.de/2005/11/13/beim-geocaching-fotografiert/Ein paar mehr Bilder ...https://www.rfc1437.de/2005/11/13/ein-paar-mehr-bilder/Esmeraldahttps://www.rfc1437.de/2005/11/13/esmeralda/Fliessender Flusshttps://www.rfc1437.de/2005/11/13/fliessender-fluss/Gefällter Baumhttps://www.rfc1437.de/2005/11/13/gefaellter-baum/Jäger und Beutehttps://www.rfc1437.de/2005/11/13/jaeger-und-beute/L.O.V.E.https://www.rfc1437.de/2005/11/13/love-2/Moorseehttps://www.rfc1437.de/2005/11/13/moorsee/Linux-Vserver on Debian Sargehttps://www.rfc1437.de/2005/11/12/linux-vserver-on-debian-sarge/Mac-on-Linuxhttps://www.rfc1437.de/2005/11/12/mac-on-linux/Mac-on-Machttps://www.rfc1437.de/2005/11/12/mac-on-mac/Traumtänzer at Workhttps://www.rfc1437.de/2005/11/12/traumtanzer-at-work/Boykottiert Sony-BMG!https://www.rfc1437.de/2005/11/11/boykottiert-sony-bmg/Phishing: Auch die iTAN bietet keinen Schutzhttps://www.rfc1437.de/2005/11/11/phishing-auch-die-itan-bietet-keinen-schutz/Realitätsverlust bei SAP-Vorständlernhttps://www.rfc1437.de/2005/11/11/realitatsverlust-bei-sap-vorstandlern/wikiCalchttps://www.rfc1437.de/2005/11/10/wikicalc/mal wieder ne Woche Münchenhttps://www.rfc1437.de/2005/11/07/mal-wieder-ne-woche-munchen/SPD verkauft den Kündigungsschutzhttps://www.rfc1437.de/2005/11/05/spd-verkauft-den-kundigungsschutz/sql relayhttps://www.rfc1437.de/2005/11/05/sql-relay/Auf in den Polizeitstaat Deutschland!https://www.rfc1437.de/2005/11/04/auf-in-den-polizeitstaat-deutschland/Mehrwertsteuer vs. Vermögenssteuerhttps://www.rfc1437.de/2005/11/04/mehrwertsteuer-vs-vermogenssteuer/Die Feigheit der SPDhttps://www.rfc1437.de/2005/11/02/die-feigheit-der-spd/Rumsfeld verweigert Uno Zugang zu Häftlingenhttps://www.rfc1437.de/2005/11/02/rumsfeld-verweigert-uno-zugang-zu-haftlingen/coveragehttps://www.rfc1437.de/2005/11/01/coverage/Sony BMGs Kopierschutz mit Rootkit-Funktionenhttps://www.rfc1437.de/2005/11/01/sony-bmgs-kopierschutz-mit-rootkit-funktionen/Stoiber hat ausgestaubthttps://www.rfc1437.de/2005/11/01/stoiber-hat-ausgestaubt/A Test Framework for Djangohttps://www.rfc1437.de/2005/10/31/a-test-framework-for-django/Bildung und Wohlstand - aber nicht für jedenhttps://www.rfc1437.de/2005/10/31/bildung-und-wohlstand-aber-nicht-fur-jeden/Müntes Abgang?https://www.rfc1437.de/2005/10/31/muntes-abgang/Seleniumhttps://www.rfc1437.de/2005/10/31/selenium/Stoiber kneift?https://www.rfc1437.de/2005/10/31/stoiber-kneift/Case/When/Otherwise for Djangohttps://www.rfc1437.de/2005/10/30/casewhenotherwise-for-django/Hochgestapelthttps://www.rfc1437.de/2005/10/29/hochgestapelt/Spaziergang am Kanalhttps://www.rfc1437.de/2005/10/29/spaziergang-am-kanal/Zugbrückehttps://www.rfc1437.de/2005/10/29/zugbruecke/Adhoc-Organization in CM-Systemshttps://www.rfc1437.de/2005/10/28/adhoc-organization-in-cm-systems/Werbebanner in 2005https://www.rfc1437.de/2005/10/28/werbebanner-in-2005/Aperture und Performancehttps://www.rfc1437.de/2005/10/27/aperture-und-performance/Bock: meet Gärtnerhttps://www.rfc1437.de/2005/10/27/bock-meet-gartner/cucumber2https://www.rfc1437.de/2005/10/27/cucumber2/Django Projecthttps://www.rfc1437.de/2005/10/27/django-project/PostgreSQL 8.1https://www.rfc1437.de/2005/10/27/postgresql-81/Unheimliche Allianzhttps://www.rfc1437.de/2005/10/27/unheimliche-allianz/XML unter Patentschutz?https://www.rfc1437.de/2005/10/27/xml-unter-patentschutz/Akismet - zentralistischer Anti-Spam-Filterhttps://www.rfc1437.de/2005/10/26/akismet-zentralistischer-anti-spam-filter/"Fitting on" some frameworkhttps://www.rfc1437.de/2005/10/26/fitting-on-some-framework/JavaScript Interactive Interpreterhttps://www.rfc1437.de/2005/10/26/javascript-interactive-interpreter/Markdown for Djangohttps://www.rfc1437.de/2005/10/26/markdown-for-django/Scatha and Glaurunghttps://www.rfc1437.de/2005/10/26/scatha-and-glaurung/Twisted Buch ist raushttps://www.rfc1437.de/2005/10/26/twisted-buch-ist-raus/akaDAV - Lightweight WebDAV server and python modulehttps://www.rfc1437.de/2005/10/25/akadav-lightweight-webdav-server-and-python-module/Googles Web Accelerator and Damagerhttps://www.rfc1437.de/2005/10/25/googles-web-accelerator-and-damager/python webdav serverhttps://www.rfc1437.de/2005/10/25/python-webdav-server/Spam-Blockliste lief Amokhttps://www.rfc1437.de/2005/10/25/spam-blockliste-lief-amok/Launch Boxhttps://www.rfc1437.de/2005/10/24/launch-box/Linux and RAW Digital Photographyhttps://www.rfc1437.de/2005/10/24/linux-and-raw-digital-photography/Lphotohttps://www.rfc1437.de/2005/10/24/lphoto/generic search service for Djangohttps://www.rfc1437.de/2005/10/23/generic-search-service-for-django/Ubuntu Breezy Badgerhttps://www.rfc1437.de/2005/10/23/ubuntu-breezy-badger/Nanomobil fährt auf Goldhttps://www.rfc1437.de/2005/10/22/nanomobil-faehrt-auf-gold/to flock - zusammenrottenhttps://www.rfc1437.de/2005/10/22/to-flock-zusammenrotten/Version Control with SVKhttps://www.rfc1437.de/2005/10/22/version-control-with-svk/very simple view functionshttps://www.rfc1437.de/2005/10/22/very-simple-view-functions/Mannesmann Prozess diesmal ohne Victory für Ackermann?https://www.rfc1437.de/2005/10/21/mannesmann-prozess-diesmal-ohne-victory-fur-ckrmnn/Module Hacking for Djangohttps://www.rfc1437.de/2005/10/21/module-hacking-for-django/Twisted Nameshttps://www.rfc1437.de/2005/10/21/twisted-names/AgfaPhoto adehttps://www.rfc1437.de/2005/10/20/agfaphoto-ade/Aperturehttps://www.rfc1437.de/2005/10/20/aperture/Tuckesburg in Münsterhttps://www.rfc1437.de/2005/10/20/tuckesburg/Tagging with Djangohttps://www.rfc1437.de/2005/10/19/tagging-with-django/Dooh!https://www.rfc1437.de/2005/10/18/dooh/Was soll der Namehttps://www.rfc1437.de/2005/10/18/name/The Coolest DHTML / JavaScript Calendarhttps://www.rfc1437.de/2005/10/18/the-coolest-dhtml-javascript-calendar/call of the noodlehttps://www.rfc1437.de/2005/10/17/call-of-the-noodle/Using Django as a CMShttps://www.rfc1437.de/2005/10/16/using-django-as-a-cms/Demontage des angeblichen Rettershttps://www.rfc1437.de/2005/10/15/demontage-des-angeblichen-retters/Doohhttps://www.rfc1437.de/2005/10/15/dooh-2/Kirchensteuer und konfessionslose Ehepartnerhttps://www.rfc1437.de/2005/10/15/kirchensteuer-und-konfessionslose-ehepartner/Matt Mullenweg und das Geldhttps://www.rfc1437.de/2005/10/15/matt-mullenweg-und-das-geld/Sonnenscheinhttps://www.rfc1437.de/2005/10/15/sonnenschein/wofür sich Medien so einsetzenhttps://www.rfc1437.de/2005/10/15/wofur-sich-medien-so-einsetzen/Auch son Modell für die Vollversager ...https://www.rfc1437.de/2005/10/14/auch-son-modell-fur-die-vollversager/Desktruktiv?https://www.rfc1437.de/2005/10/14/desktruktiv/Geschäftsmodell von Open Source ...https://www.rfc1437.de/2005/10/14/geschaftsmodell-von-open-source/IE7 und Auswirkungen auf CSS Hackshttps://www.rfc1437.de/2005/10/14/ie7-und-auswirkungen-auf-css-hacks/Seehofer stärkt die Position der SPD ...https://www.rfc1437.de/2005/10/14/seehofer-starkt-die-position-der-spd/Spyware in World of Warcraft?https://www.rfc1437.de/2005/10/14/spyware-in-world-of-warcraft/Tailor - Versionsvermittlerhttps://www.rfc1437.de/2005/10/14/tailor-versionsvermittler/Thatcherhttps://www.rfc1437.de/2005/10/14/thatcher/Trac on Darcshttps://www.rfc1437.de/2005/10/14/trac-on-darcs/Oracle/SQL Tutorialhttps://www.rfc1437.de/2005/10/13/oracle-sql-tutorial/SVK - Subversion distributedhttps://www.rfc1437.de/2005/10/13/svk-subversion-distributed/snippetsEmuhttps://www.rfc1437.de/2005/10/12/snippetsemu/vi meets Wordhttps://www.rfc1437.de/2005/10/12/vi-meets-word/Accent-Zeichen in ihr Basiszeichen umwandelthttps://www.rfc1437.de/2005/10/11/accent-zeichen-in-ihr-basiszeichen-umwandelt/Caching Tutorial for Web Authors and Webmastershttps://www.rfc1437.de/2005/10/11/caching-tutorial-for-web-authors-and-webmasters/Django i18n statushttps://www.rfc1437.de/2005/10/11/django-i18n-status/Ein Loch ist im Kanalhttps://www.rfc1437.de/2005/10/11/ein-loch-ist-im-kanal/Getting Nix Donehttps://www.rfc1437.de/2005/10/11/getting-nix-done/Innovationskraft von Softwarepatentenhttps://www.rfc1437.de/2005/10/11/innovationskraft-von-softwarepatenten/Kreationistenpesthttps://www.rfc1437.de/2005/10/11/kreationistenpest/Cryosat stürzt ins Eishttps://www.rfc1437.de/2005/10/09/cryosat-sturzt-ins-eis/von Galen, seine Seeligkeit und sein Widerstandhttps://www.rfc1437.de/2005/10/09/von-galen-seine-seeligkeit-und-sein-widerstand/Wetterbloggenhttps://www.rfc1437.de/2005/10/09/wetterbloggen/Zabels Abschied von T-Mobilehttps://www.rfc1437.de/2005/10/09/zabels-abschied-von-t-mobile/Ajax mal andershttps://www.rfc1437.de/2005/10/08/ajax-mal-anders/Blogcounter, Schwanzlängen und andere Lügenhttps://www.rfc1437.de/2005/10/08/blogcounter-schwanzlangen-und-andere-lugen/Vatikan weiter auf Anti-Gay-Kurshttps://www.rfc1437.de/2005/10/08/vatikan-weiter-auf-anti-gay-kurs/Wenn google schon einen neuen Feedreader baut ...https://www.rfc1437.de/2005/10/08/wenn-google-schon-einen-neuen-feedreader-baut/Nessus demnächst unbrauchbarhttps://www.rfc1437.de/2005/10/07/nessus-demnachst-unbrauchbar/Pragmatic Ajaxhttps://www.rfc1437.de/2005/10/07/pragmatic-ajax/weblogs.com an Verisign verkauft?https://www.rfc1437.de/2005/10/07/weblogscom-an-verisign-verkauft/WSGI and WSGI Middleware is Easyhttps://www.rfc1437.de/2005/10/07/wsgi-and-wsgi-middleware-is-easy/Die EU-Kommission mal wiederhttps://www.rfc1437.de/2005/10/06/die-eu-kommission-mal-wieder/diese komische Umfrage ...https://www.rfc1437.de/2005/10/06/diese-komische-umfrage/RobotFlowhttps://www.rfc1437.de/2005/10/06/robotflow/Autofahren macht blödhttps://www.rfc1437.de/2005/10/05/autofahren-macht-blod/OpenMCL 1.0https://www.rfc1437.de/2005/10/05/openmcl-1-0/Python Paste Powerhttps://www.rfc1437.de/2005/10/05/python-paste-power/IRC Logger updatehttps://www.rfc1437.de/2005/10/04/irc-logger-update/Medien, Statistiken und ihre "Interpretationen"https://www.rfc1437.de/2005/10/04/medien-statistiken-und-ihre-interpretationen/Radfahren macht impotenthttps://www.rfc1437.de/2005/10/04/radfahren-macht-impotent/37signals mal wiederhttps://www.rfc1437.de/2005/10/03/37signals-mal-wieder/Googles Blogsuche strohdummhttps://www.rfc1437.de/2005/10/03/googles-blogsuche-strohdumm/Retrocomputing - MIT CADR Lisp Machineshttps://www.rfc1437.de/2005/10/03/retrocomputing-mit-cadr-lisp-machines-2/IRC logger for #djangohttps://www.rfc1437.de/2005/10/02/irc-logger-for-django/Politiker und die Realitäthttps://www.rfc1437.de/2005/10/02/politiker-und-die-realitat/Leica - D-LUX 2https://www.rfc1437.de/2005/10/01/leica-d-lux-2/Lizenz zum Gelddruckenhttps://www.rfc1437.de/2005/10/01/lizenz-zum-gelddrucken/TwistedDAVhttps://www.rfc1437.de/2005/10/01/twisteddav/Gericht stärkt alte Rechtschreibunghttps://www.rfc1437.de/2005/09/30/gericht-starkt-alte-rechtschreibung/How-to get decimal.py if I have Python 2.3.xhttps://www.rfc1437.de/2005/09/30/how-to-get-decimal-py-if-i-have-python-2-3-x/Rechtsstreit über Kartoffelsorte "Linda" geht weiterhttps://www.rfc1437.de/2005/09/30/rechtsstreit-ueber-kartoffelsorte-linda-geht/Sonnenfinsternis am Tag der deutschen Einheithttps://www.rfc1437.de/2005/09/30/sonnenfinsternis-am-tag-der-deutschen-einheit/i18n and djangohttps://www.rfc1437.de/2005/09/29/i18n-and-django/Doch kein deutscher Boxweltmeister heutehttps://www.rfc1437.de/2005/09/28/doch-kein-deutscher-boxweltmeister-heute/HH-CDU und Demokratie? Is nich.https://www.rfc1437.de/2005/09/28/hh-cdu-und-demokratie-is-nich/Open Dylanhttps://www.rfc1437.de/2005/09/28/open-dylan/EU-Parlament lehnt Plan des EU-Rates zur Vorratsdatenspeicherung endgültig abhttps://www.rfc1437.de/2005/09/27/prlmnt-lhnt-pln-ds-rts-zr-vrrtsdtnspchrng-ndgltg/Routes für Pythonhttps://www.rfc1437.de/2005/09/27/routes-fur-python/Warum ich so bei Rails meine Zweifel habehttps://www.rfc1437.de/2005/09/27/warum-ich-so-bei-rails-meine-zweifel-habe/PocketMod - Mini-Papier-Organizerhttps://www.rfc1437.de/2005/09/25/pocketmod-mini-papier-organizer/Dusseliges Frage-Spiel aktivierthttps://www.rfc1437.de/2005/09/23/dusseliges-frage-spiel-aktiviert/TC Trustcenter insolventhttps://www.rfc1437.de/2005/09/23/tc-trustcenter-insolvent/Weiterer Spam-Fallout - kein Trackback und Pingback mehr bei mirhttps://www.rfc1437.de/2005/09/23/weiterer-spam-fallot-kn-trckbck-nd-pngbck-mhr-b-mr/InformixDBhttps://www.rfc1437.de/2005/09/22/informixdb/Feigheit oder Faulheit?https://www.rfc1437.de/2005/09/21/feigheit-oder-faulheit/peinlicher Spiegelhttps://www.rfc1437.de/2005/09/20/peinlicher-spiegel/Arme, unverstandene Medienhttps://www.rfc1437.de/2005/09/19/arme-unverstandene-medien/Wahlergebnisse oder Qualergebnisse?https://www.rfc1437.de/2005/09/19/wahlergebnisse-oder-qualergebnisse/Microsoft-Schleichwerbung beim NDRhttps://www.rfc1437.de/2005/09/17/microsoft-schleichwerbung-beim-ndr/What has Trusted Computing to do with Trust?https://www.rfc1437.de/2005/09/17/what-has-trusted-computing-to-do-with-trust/wxWindows Buchhttps://www.rfc1437.de/2005/09/17/wxwindows-buch/Medienkompetenz ala CSUhttps://www.rfc1437.de/2005/09/16/medienkompetenz-ala-csu/Nachschub für Astronomie-Freakshttps://www.rfc1437.de/2005/09/16/nachschub-fur-astronomie-freaks/Noch mehr Medien-Inkompetenz - diesmal CDUhttps://www.rfc1437.de/2005/09/16/noch-mehr-medien-inkompetenz-diesmal-cdu/Peter Lustig hört auf?https://www.rfc1437.de/2005/09/16/peter-lustig-hort-auf/RFID im Reisepass kein Sicherheitsmerkmalhttps://www.rfc1437.de/2005/09/16/rfid-im-reisepass-kein-sicherheitsmerkmal/Sie machen die gleiche Scheisse wie in den USAhttps://www.rfc1437.de/2005/09/16/sie-machen-die-gleiche-scheisse-wie-in-den-usa/Und urplötzlich fühlt man sich wieder junghttps://www.rfc1437.de/2005/09/16/und-urplotzlich-fuhlt-man-sich-wieder-jung/Yep, passt.https://www.rfc1437.de/2005/09/16/yep-passt/DjangoScgi - Django Projects - Trachttps://www.rfc1437.de/2005/09/15/djangoscgi-django-projects-trac/Gaspreiskalkulationen müssen offengelegt werdenhttps://www.rfc1437.de/2005/09/15/gaspreiskalkulationen-mussen-offengelegt-werden/Security by complete Stupidityhttps://www.rfc1437.de/2005/09/15/security-by-complete-stupidity/Google Blog Searchhttps://www.rfc1437.de/2005/09/14/google-blog-search/Doppelt blöd hält besser?https://www.rfc1437.de/2005/09/13/doppelt-blod-halt-besser/Lügen-Linssen und die Finanzenhttps://www.rfc1437.de/2005/09/13/lugen-linssen-und-die-finanzen/Hirnfürzehttps://www.rfc1437.de/2005/09/12/hirnfurze/Die Träumer von der BfAhttps://www.rfc1437.de/2005/09/10/die-traumer-von-der-bfa/The iTunes 5 Announcement From the Perspective of an Anthropomorphized Brushed Metal User Interface Themehttps://www.rfc1437.de/2005/09/10/the-itunes-5-announcement-from-the-perspective-of/Common Schemehttps://www.rfc1437.de/2005/09/09/common-scheme/I want one!https://www.rfc1437.de/2005/09/09/i-want-one/Beware the Monster Chick!https://www.rfc1437.de/2005/09/08/beware-the-monster-chick/Qualitätsjournalliehttps://www.rfc1437.de/2005/09/08/qualitatsjournallie/Erster Fallout von Schwarz-Gelbhttps://www.rfc1437.de/2005/09/07/erster-fallout-von-schwarz-gelb/Alles nur geklauthttps://www.rfc1437.de/2005/09/06/alles-nur-geklaut/Django Gallery Statushttps://www.rfc1437.de/2005/09/06/django-gallery-status/Manchmal spinnen die Debianistashttps://www.rfc1437.de/2005/09/04/manchmal-spinnen-die-debianistas/Nacht der Museen in Münsterhttps://www.rfc1437.de/2005/09/04/nacht-der-museen-in-munster/Parser für Python-ähnliche Konfigfileshttps://www.rfc1437.de/2005/09/04/parser-fur-python-ahnliche-konfigfiles/Prioritätenhttps://www.rfc1437.de/2005/09/03/prioritaten/ID ist grober Unfughttps://www.rfc1437.de/2005/09/02/id-ist-grober-unfug/MochiKit Tutorial Teil 1https://www.rfc1437.de/2005/09/02/mochikit-tutorial-teil-1/Und sie laufen immer nochhttps://www.rfc1437.de/2005/09/02/und-sie-laufen-immer-noch/Wahlkampfbeitrag?https://www.rfc1437.de/2005/09/02/wahlkampfbeitrag/geocaching Statushttps://www.rfc1437.de/2005/09/01/geocaching-status/GPS Receiver Information, Software, and Hardware Reviews of Garmin, Lowrance, Magellan and other GPS Receivershttps://www.rfc1437.de/2005/08/30/gps-receiver-information-software-and-hardware/Working with Garmin Receivers - A User Manualhttps://www.rfc1437.de/2005/08/30/working-with-garmin-receivers-a-user-manual/GEMA und das Internethttps://www.rfc1437.de/2005/08/29/gema-und-das-internet/Mauscheleien vor Gerichthttps://www.rfc1437.de/2005/08/29/mauscheleien-vor-gericht/Öffentliche Dienst-Nichtleistungenhttps://www.rfc1437.de/2005/08/29/offentliche-dienst-nichtleistungen/Musiklabelchefs immer noch völlig verblödethttps://www.rfc1437.de/2005/08/28/musiklabelchefs-immer-noch-vollig-verblodet/Montgolfiade in Münsterhttps://www.rfc1437.de/2005/08/27/montgolfiade-in-munster/Montgolfiade in Münsterhttps://www.rfc1437.de/2005/08/27/montgolfiade-in-munster-2/News from the Gallery projecthttps://www.rfc1437.de/2005/08/27/news-from-the-gallery-project/iTAN-Verfahren auch nicht sicherhttps://www.rfc1437.de/2005/08/26/itan-verfahren-auch-nicht-sicher/JavaScript + CSS Box-Modell Rätselhttps://www.rfc1437.de/2005/08/25/javascript-css-box-modell-ratsel/Karlsruhe macht Weg für Neuwahlen freihttps://www.rfc1437.de/2005/08/25/karlsruhe-macht-weg-fur-neuwahlen-frei/JavaScript und die escape() Funktionhttps://www.rfc1437.de/2005/08/24/javascript-und-die-escape-funktion/MochiKit – erste Erfahrungenhttps://www.rfc1437.de/2005/08/24/mochikit-erste-erfahrungen/Armstrong EPO-gedoped bei erstem Toursieg?https://www.rfc1437.de/2005/08/23/armstrong-epo-gedoped-bei-erstem-toursieg/Aldag hört auf?https://www.rfc1437.de/2005/08/22/aldag-hort-auf/Canon EOS 5D, full-frame 12.8 megapixelhttps://www.rfc1437.de/2005/08/22/canon-eos-5d-full-frame-128-megapixel/Armer Jörg Jaksche - schon wiederhttps://www.rfc1437.de/2005/08/21/armer-jorg-jaksche-schon-wieder/PostgresPyhttps://www.rfc1437.de/2005/08/21/postgrespy/DjangoGallery - sample app with sample installationhttps://www.rfc1437.de/2005/08/20/djangogallery-sample-app-with-sample-installation/Kibothttps://www.rfc1437.de/2005/08/20/kibot/Kompetenz, Inkompetenz, Inkontinenz?https://www.rfc1437.de/2005/08/20/kompetenz-inkompetenz-inkontinenz/Posting 5000https://www.rfc1437.de/2005/08/20/posting-5000/erste Django-Anwendung lifehttps://www.rfc1437.de/2005/08/19/erste-django-anwendung-life/ObjectiveCLIPShttps://www.rfc1437.de/2005/08/19/objectiveclips/RSS 3 - gleich zweimalhttps://www.rfc1437.de/2005/08/19/rss-3-gleich-zweimal/Writing PlugInshttps://www.rfc1437.de/2005/08/19/writing-plugins/SHA-1 geht weiter den Bach runterhttps://www.rfc1437.de/2005/08/18/sha-1-geht-weiter-den-bach-runter/1&1 spinnthttps://www.rfc1437.de/2005/08/17/11-spinnt/2029 geht die Welt unterhttps://www.rfc1437.de/2005/08/17/2029-geht-die-welt-unter/anonyme Sessionshttps://www.rfc1437.de/2005/08/17/anonyme-sessions/Cooperative Linuxhttps://www.rfc1437.de/2005/08/17/cooperative-linux-2/CRUD mit Djangohttps://www.rfc1437.de/2005/08/17/crud-mit-django/London: Zweifel an Polizeiversion im Fall Menezeshttps://www.rfc1437.de/2005/08/17/london-zweifel-an-polizeiversion-im-fall-menezes/Mal was interessantes in Railshttps://www.rfc1437.de/2005/08/17/mal-was-interessantes-in-rails/A comparison of Django with Railshttps://www.rfc1437.de/2005/08/16/a-comparison-of-django-with-rails/Armer Jörg Jakschehttps://www.rfc1437.de/2005/08/16/armer-jorg-jaksche/Lebende Datenhttps://www.rfc1437.de/2005/08/16/lebende-daten/wxWindows jetzt auch für Common Lisphttps://www.rfc1437.de/2005/08/16/wxwindows-jetzt-auch-fur-common-lisp/die seltsame Neigung der PHP-Programmierer zu evalhttps://www.rfc1437.de/2005/08/15/die-seltsame-neigung-der-php-programmierer-zu-eval/lahmes Posten in WordPresshttps://www.rfc1437.de/2005/08/14/lahmes-posten-in-wordpress/Seashorehttps://www.rfc1437.de/2005/08/14/seashore/spotlight auf Wechsellaufwerk ausschaltenhttps://www.rfc1437.de/2005/08/14/spotlight-auf-wechsellaufwerk-ausschalten/trac - Softwareprojektmanagement leicht gemachthttps://www.rfc1437.de/2005/08/14/trac-softwareprojektmanagement-leicht-gemacht/kenosishttps://www.rfc1437.de/2005/08/13/kenosis/Nitrohttps://www.rfc1437.de/2005/08/13/nitro/RBL Betreiber mal wiederhttps://www.rfc1437.de/2005/08/13/rbl-betreiber-mal-wieder/awstats.plhttps://www.rfc1437.de/2005/08/12/awstats-pl/Privacy-Update unter OS Xhttps://www.rfc1437.de/2005/08/12/privacy-update-unter-os-x/Zu dem Bayern-Getösehttps://www.rfc1437.de/2005/08/12/zu-dem-bayern-getose/Mac OS X Intel hacked to run on standard PCshttps://www.rfc1437.de/2005/08/11/mac-os-x-intel-hacked-to-run-on-standard-pcs/RIP last.fmhttps://www.rfc1437.de/2005/08/11/rip-lastfm/SCO-Patent-Fallout?https://www.rfc1437.de/2005/08/11/sco-patent-fallout/XchatPythonhttps://www.rfc1437.de/2005/08/11/xchatpython/Coooool!https://www.rfc1437.de/2005/08/10/coooool/Informationen zur Canon EOS 5D aufgetauchthttps://www.rfc1437.de/2005/08/10/informationen-zur-canon-eos-5d-aufgetaucht/Oracle Cluster File System 2 für Linuxhttps://www.rfc1437.de/2005/08/10/oracle-cluster-file-system-2-fur-linux/The Hidden Boot Code of the Xboxhttps://www.rfc1437.de/2005/08/10/the-hidden-boot-code-of-the-xbox/Und nun, Herr McBride?https://www.rfc1437.de/2005/08/09/und-nun-herr-mcbride/Yep. Macht Sinn.https://www.rfc1437.de/2005/08/09/yep-macht-sinn/EU-Kommission mal wieder im Alleinganghttps://www.rfc1437.de/2005/08/08/eu-kommission-mal-wieder-im-alleingang/Man reiche Darl McBride die Frog Pillshttps://www.rfc1437.de/2005/08/08/man-reiche-darl-mcbride-die-frog-pills/Mathematische Unkenntnisshttps://www.rfc1437.de/2005/08/08/mathematische-unkenntniss/International Components for Unicodehttps://www.rfc1437.de/2005/08/07/international-components-for-unicode/PyICUhttps://www.rfc1437.de/2005/08/07/pyicu/man lernt doch nie aushttps://www.rfc1437.de/2005/08/06/man-lernt-doch-nie-aus/auf dem Weg in die Medien-Monokulturhttps://www.rfc1437.de/2005/08/05/auf-dem-weg-in-die-medien-monokultur/Connecting databases to Python with SQLObjecthttps://www.rfc1437.de/2005/08/05/connecting-databases-to-python-with-sqlobject/Umwelt-Ausverkauf in D-Dorfhttps://www.rfc1437.de/2005/08/05/umwelt-ausverkauf-in-d-dorf/Unicode HOWTOhttps://www.rfc1437.de/2005/08/05/unicode-howto/Crypt::PasswdMD5https://www.rfc1437.de/2005/08/04/crypt-passwdmd5/md5crypt.pyhttps://www.rfc1437.de/2005/08/04/md5crypt-py/Passwörter als Hashes speichern - sicher?https://www.rfc1437.de/2005/08/04/passworter-als-hashes-speichern-sicher/Shoot-to-Kill Direktiven - und die Welt wird ein Egoshooterhttps://www.rfc1437.de/2005/08/04/shoot-to-kill-direktiven-und-die-welt-wird-n-gshtr/Treeviewhttps://www.rfc1437.de/2005/08/04/treeview/Ciscos Kundenpasswörter sind weghttps://www.rfc1437.de/2005/08/03/ciscos-kundenpasswoerter-sind-weg/Django, Apache and FCGIhttps://www.rfc1437.de/2005/08/03/django-apache-and-fcgi/EU-Hirnriss zu Urheberrechtsverletzungenhttps://www.rfc1437.de/2005/08/03/eu-hirnriss-zu-urheberrechtsverletzungen/Geocaching im Münsterlandhttps://www.rfc1437.de/2005/08/03/geocaching-im-munsterland/Mal wieder neues bei Djangohttps://www.rfc1437.de/2005/08/03/mal-wieder-neues-bei-django/Soziale Netzwerkereihttps://www.rfc1437.de/2005/08/03/soziale-netzwerkerei/was bei SQLObject derzeit passierthttps://www.rfc1437.de/2005/08/03/was-bei-sqlobject-derzeit-passiert/Aber Patente sind ja sooo toll ...https://www.rfc1437.de/2005/08/02/aber-patente-sind-ja-sooo-toll/Automatically mount dm-crypt encrypted home with pam_mounthttps://www.rfc1437.de/2005/08/02/automatically-mount-dm-crypt-encrypted-home-with/Coroutinen für Pythonhttps://www.rfc1437.de/2005/08/02/coroutinen-fur-python/ejabberdhttps://www.rfc1437.de/2005/08/02/ejabberd/Hell freezes over - a second timehttps://www.rfc1437.de/2005/08/02/hell-freezes-over-a-second-time/Linux-auf-Mac Storyhttps://www.rfc1437.de/2005/08/02/linux-auf-mac-story/Linux on an Apple Powerbook HOWTOhttps://www.rfc1437.de/2005/08/02/linux-on-an-apple-powerbook-howto/The Illusive setdefaultencodinghttps://www.rfc1437.de/2005/08/02/the-illusive-setdefaultencoding/(Un)trusted platform Apple?https://www.rfc1437.de/2005/08/02/untrusted-platform-apple/Wohin Abmahnwahn und vorauseilender Gehorsam führen könnenhttps://www.rfc1437.de/2005/08/02/wohin-abmahnwahn-und-vorauseilendr-ghrsm-fhrn-knnn/Auswirkungen von Gen-Raps und Co.https://www.rfc1437.de/2005/08/01/auswirkungen-von-gen-raps-und-co/Daves neuer OPML Editor mit Bloghttps://www.rfc1437.de/2005/07/31/daves-neuer-opml-editor-mit-blog/HEW Cyclassics 2005https://www.rfc1437.de/2005/07/31/hew-cyclassics-2005/Merkelnix krampft auchhttps://www.rfc1437.de/2005/07/31/merkelnix-krampft-auch/Softwarepatente - Kommentar bei der NY Timeshttps://www.rfc1437.de/2005/07/31/softwarepatente-kommentar-bei-der-ny-times/Wahlkampf, Wahlkrampf ...https://www.rfc1437.de/2005/07/31/wahlkampf-wahlkrampf/Writing a Simple Filesystem Browser with Djangohttps://www.rfc1437.de/2005/07/31/writing-a-simple-filesystem-browser-with-django/Zerospanhttps://www.rfc1437.de/2005/07/31/zerospan/Ausbildung als Billiglohnschienehttps://www.rfc1437.de/2005/07/30/ausbildung-als-billiglohnschiene/Beckstein on the Rollhttps://www.rfc1437.de/2005/07/30/beckstein-on-the-roll/Novell will SCO an den Kragenhttps://www.rfc1437.de/2005/07/30/novell-will-sco-an-den-kragen/Pluto raus oder ein Neuer rein?https://www.rfc1437.de/2005/07/30/pluto-raus-oder-ein-neuer-rein/PostgreSQL Extension for Frontierhttps://www.rfc1437.de/2005/07/30/postgresql-extension-for-frontier/Vom Umgang mit Securityhttps://www.rfc1437.de/2005/07/30/vom-umgang-mit-security/International standard date and time notationhttps://www.rfc1437.de/2005/07/29/international-standard-date-and-time-notation/Leichen im Kellerhttps://www.rfc1437.de/2005/07/29/leichen-im-keller/Linkhaftung nach dem Heise-Urteilhttps://www.rfc1437.de/2005/07/29/linkhaftung-nach-dem-heise-urteil/PysqliteFactorieshttps://www.rfc1437.de/2005/07/29/pysqlitefactories/Sysadmins Dayhttps://www.rfc1437.de/2005/07/29/sysadmins-day/Abridged guide to HTTP Cachinghttps://www.rfc1437.de/2005/07/28/abridged-guide-to-http-caching/JSANhttps://www.rfc1437.de/2005/07/28/jsan/Linux-VServerhttps://www.rfc1437.de/2005/07/28/linux-vserver/Tor Network Statushttps://www.rfc1437.de/2005/07/28/tor-network-status/typohttps://www.rfc1437.de/2005/07/28/typo/Und die Erde ist doch eine Scheibehttps://www.rfc1437.de/2005/07/28/und-die-erde-ist-doch-eine-scheibe/Django, lighttpd and FCGI, second takehttps://www.rfc1437.de/2005/07/27/django-lighttpd-and-fcgi-second-take/Eunuchshttps://www.rfc1437.de/2005/07/27/eunuchs/Noch son Fragebogenhttps://www.rfc1437.de/2005/07/27/noch-son-fragebogen/präventive Telefonüberwachung is nichhttps://www.rfc1437.de/2005/07/27/praventive-telefonuberwachung-is-nich/es gibt Tage da hasst mein Computer michhttps://www.rfc1437.de/2005/07/26/es-gibt-tage-da-hasst-mein-computer-mich/Higher-Order Perlhttps://www.rfc1437.de/2005/07/26/higher-order-perl/Running Django with FCGI and lighttpdhttps://www.rfc1437.de/2005/07/26/running-django-with-fcgi-and-lighttpd/flup: random Python WSGI stuffhttps://www.rfc1437.de/2005/07/24/flup-random-python-wsgi-stuff/Idiotische Patente die elfundelfzigstehttps://www.rfc1437.de/2005/07/24/idiotische-patente-die-elfundelfzigste/Leonardohttps://www.rfc1437.de/2005/07/24/leonardo/Python Pastehttps://www.rfc1437.de/2005/07/24/python-paste/Scotland Yard erschiesst Unschuldigenhttps://www.rfc1437.de/2005/07/24/scotland-yard-erschiesst-unschuldigen/Seasidehttps://www.rfc1437.de/2005/07/24/seaside/verpflichtetes Versicherungssponsoring durch den Staat?https://www.rfc1437.de/2005/07/24/verpflichtetes-versicherungssponsoring-drch-dn-stt/Verrückter Vinokourov ...https://www.rfc1437.de/2005/07/24/verruckter-vinokourov/Da wird Otto wieder schäumenhttps://www.rfc1437.de/2005/07/23/da-wird-otto-wieder-schaumen/GNU Modula-2https://www.rfc1437.de/2005/07/23/gnu-modula-2/MochiKithttps://www.rfc1437.de/2005/07/23/mochikit/Spitzenköche kämpfen für Lindahttps://www.rfc1437.de/2005/07/23/spitzenkoeche-kaempfen-fuer-linda/Von Pechvögeln und Favoritenhttps://www.rfc1437.de/2005/07/23/von-pechvogeln-und-favoriten/Und wieder mal Djangohttps://www.rfc1437.de/2005/07/22/und-wieder-mal-django/Internet-Pranger der US-Strafverfolgungsbehördenhttps://www.rfc1437.de/2005/07/21/internet-pranger-der-us-strafverfolgungsbehorden/Grosser Lauschangriff auch in Sachsen Verfassungswidrighttps://www.rfc1437.de/2005/07/21/sachsns-vrfgrssr-lschngrff-ch-n-schsn-vrfssngswdrg/Apache modauthtkthttps://www.rfc1437.de/2005/07/20/apache-modauthtkt/Doohan alias Scotty gestorbenhttps://www.rfc1437.de/2005/07/20/doohan-alias-scotty-gestorben/Wie die BWLer unter Bertelsmann in die Bildungspolitik einziehenhttps://www.rfc1437.de/2005/07/20/wie-die-bwler-unter-bertelsmnn-n-d-bldngspltk-nzhn/EU-Haftbefehl verfassungswidrighttps://www.rfc1437.de/2005/07/18/eu-haftbefehl-verfassungswidrig/Jython 2.2 in der Machehttps://www.rfc1437.de/2005/07/18/jython-22-in-der-mache/Erste Django Tutorials onlinehttps://www.rfc1437.de/2005/07/17/erste-django-tutorials-online/Erster Etappensieg für Gerolsteiner in der Tourhttps://www.rfc1437.de/2005/07/16/erster-etappensieg-fur-gerolsteiner-in-der-tour/Foundations of Python Network Programminghttps://www.rfc1437.de/2005/07/16/foundations-of-python-network-programming/HsShellScripthttps://www.rfc1437.de/2005/07/16/hsshellscript/mod_haskellhttps://www.rfc1437.de/2005/07/16/mod-haskell/PerlPadhttps://www.rfc1437.de/2005/07/16/perlpad/Regular Expressions in Haskellhttps://www.rfc1437.de/2005/07/16/regular-expressions-in-haskell/Web Authoring System Haskell (WASH)https://www.rfc1437.de/2005/07/16/web-authoring-system-haskell-wash-2/Django - neues Webframework für Pythonhttps://www.rfc1437.de/2005/07/15/django-neues-webframework-fur-python/SCO stolpert über die eigenen Füssehttps://www.rfc1437.de/2005/07/15/sco-stolpert-uber-die-eigenen-fusse/Patentierte Menschenhttps://www.rfc1437.de/2005/07/14/patentierte-menschen/Integrationssicherung oder Fremdenfeindlichkeit?https://www.rfc1437.de/2005/07/13/integrationssicherung-oder-fremdenfeindlichkeit/robots.txt als angeblicher Kopierschutzhttps://www.rfc1437.de/2005/07/13/robotstxt-als-angeblicher-kopierschutz/Tour trotz Armstrong spannendhttps://www.rfc1437.de/2005/07/13/tour-trotz-armstrong-spannend/Der Berg rufthttps://www.rfc1437.de/2005/07/12/der-berg-ruft/Kaum mit sauberen Mittelnhttps://www.rfc1437.de/2005/07/12/kaum-mit-sauberen-mitteln/Microsoft liebt SpyWarehttps://www.rfc1437.de/2005/07/11/microsoft-liebt-spyware/Strafverfolger fordern Zugang zu Whois-Datenhttps://www.rfc1437.de/2005/07/11/strafverfolger-fordern-zugang-zu-whois-daten/FineTuneshttps://www.rfc1437.de/2005/07/10/finetunes/JavaScript-Aktionen über CSS Selektoren zuordnenhttps://www.rfc1437.de/2005/07/10/javascript-aktionen-uber-css-selektoren-zuordnen/Jens Voigt in Gelbhttps://www.rfc1437.de/2005/07/10/jens-voigt-in-gelb/Juttahttps://www.rfc1437.de/2005/07/10/jutta/macminicolo Mac Mini colocationhttps://www.rfc1437.de/2005/07/10/macminicolo-mac-mini-colocation/Plash: the Principle of Least Authority shellhttps://www.rfc1437.de/2005/07/10/plash-the-principle-of-least-authority-shell/S5https://www.rfc1437.de/2005/07/10/s5/Schockwellenreiterhttps://www.rfc1437.de/2005/07/10/schockwellenreiter/Boot KNOPPIX from an USB Memory Stickhttps://www.rfc1437.de/2005/07/09/boot-knoppix-from-an-usb-memory-stick/Die katholische Kirche und die Evolutionhttps://www.rfc1437.de/2005/07/09/die-katholische-kirche-und-die-evolution/Keith Devens - Weblog: I hate PHP - August 13, 2003https://www.rfc1437.de/2005/07/09/keith-devens-weblog-i-hate-php-august-13-2003/Kidhttps://www.rfc1437.de/2005/07/09/kid/n3dst4.com: PHP Annoyanceshttps://www.rfc1437.de/2005/07/09/n3dst4-com-php-annoyances/SPB-Linuxhttps://www.rfc1437.de/2005/07/09/spb-linux/Spycehttps://www.rfc1437.de/2005/07/09/spyce/Spyced: Why PHP suckshttps://www.rfc1437.de/2005/07/09/spyced-why-php-sucks/Why PHP suckshttps://www.rfc1437.de/2005/07/09/why-php-sucks/deutschsprachigen Haskell Kurshttps://www.rfc1437.de/2005/07/08/deutschsprachigen-haskell-kurs/grössere Haskell-Sourcenhttps://www.rfc1437.de/2005/07/08/grossere-haskell-sourcen/Helium - Haskell-Lehr-Systemhttps://www.rfc1437.de/2005/07/08/helium-haskell-lehr-system/Manchmal treibt mich DarwinPorts zur Verzweiflunghttps://www.rfc1437.de/2005/07/08/manchmal-treibt-mich-darwinports-zur-verzweiflung/Monadshttps://www.rfc1437.de/2005/07/08/monads/Bombenserie in Londonhttps://www.rfc1437.de/2005/07/07/bombenserie-in-london/Shiira - alternativer WebKit Browserhttps://www.rfc1437.de/2005/07/07/shiira-alternativer-webkit-browser/SSL-VPN mit Browsersteuerunghttps://www.rfc1437.de/2005/07/07/ssl-vpn-mit-browsersteuerung/Hardened-PHP projecthttps://www.rfc1437.de/2005/07/06/hardened-php-project/Musikindustrie will Allofmp3.com tabuisierenhttps://www.rfc1437.de/2005/07/06/musikindustrie-will-allofmp3com-tabuisieren/Softwarepatente erstmal aufgehaltenhttps://www.rfc1437.de/2005/07/06/softwarepatente-erstmal-aufgehalten/Sozialabzocke verschärfthttps://www.rfc1437.de/2005/07/06/sozialabzocke-verscharft/Mexikos Besiedlung älter als bisher angenommenhttps://www.rfc1437.de/2005/07/05/mexikos-besiedlung-alter-als-bisher-angenommen/PHP-Serialize für Pythonhttps://www.rfc1437.de/2005/07/05/php-serialize-fur-python/Quengelköppe und Open Sourcehttps://www.rfc1437.de/2005/07/05/quengelkoppe-und-open-source/Sodann will in den Bundestaghttps://www.rfc1437.de/2005/07/05/sodann-will-in-den-bundestag/Softwarepatent-Richtlinie vor dem Aus?https://www.rfc1437.de/2005/07/05/softwarepatent-richtlinie-vor-dem-aus/Verstrickungen des Märzhasen?https://www.rfc1437.de/2005/07/05/verstrickungen-des-marzhasen/Treffer, versenkthttps://www.rfc1437.de/2005/07/04/treffer-versenkt/Every smile you fake ...https://www.rfc1437.de/2005/07/03/every-smile-you-fake/Objekte und Funktionen mit JavaScripthttps://www.rfc1437.de/2005/07/03/objekte-und-funktionen-mit-javascript/Open-Source-Dummschwätzerhttps://www.rfc1437.de/2005/07/03/open-source-dummschwatzer/Shit hits Fanhttps://www.rfc1437.de/2005/07/03/shit-hits-fan/T-Mobile ist dämlichhttps://www.rfc1437.de/2005/07/03/t-mobile-ist-damlich/Weitere Demontage des Rechtes auf Bildunghttps://www.rfc1437.de/2005/07/03/weitere-demontage-des-rechtes-auf-bildung/Auch so ein Stück aus dem Tollhaushttps://www.rfc1437.de/2005/07/01/auch-so-ein-stuck-aus-dem-tollhaus/GEMA im Grössenwahnhttps://www.rfc1437.de/2005/07/01/gema-im-grossenwahn/Kais Horrortools Flashbackhttps://www.rfc1437.de/2005/07/01/kais-horrortools-flashback/Nimm das, Otto!https://www.rfc1437.de/2005/07/01/nimm-das-otto/Zum heutigen Scharadenspielhttps://www.rfc1437.de/2005/07/01/zum-heutigen-scharadenspiel/Die Herberge zur verlorenen Freiheithttps://www.rfc1437.de/2005/06/30/die-herberge-zur-verlorenen-freiheit/Dänische Regierung für gravierende Änderungen an der Softwarepatent-Richtliniehttps://www.rfc1437.de/2005/06/30/dnsch-rgrng-fr-grvrnd-ndrngn-n-dr-sftwrptnt-rchtln/Heuschrecken am Wasserhahnhttps://www.rfc1437.de/2005/06/30/heuschrecken-am-wasserhahn/Microsoft lernts niehttps://www.rfc1437.de/2005/06/30/microsoft-lernts-nie/Pass-Chips und deren möglicher Missbrauchhttps://www.rfc1437.de/2005/06/30/pass-chips-und-deren-moglicher-missbrauch/Wenn Webdesigner ein Schimpfword isthttps://www.rfc1437.de/2005/06/30/wenn-webdesigner-ein-schimpfword-ist/Banalpatent mal wiederhttps://www.rfc1437.de/2005/06/29/banalpatent-mal-wieder/Immer noch komische Finder-Geschichtenhttps://www.rfc1437.de/2005/06/29/immer-noch-komische-finder-geschichten/Schily hält Datenschutz für Angstmachereihttps://www.rfc1437.de/2005/06/29/schily-halt-datenschutz-fur-angstmacherei/Wer mal wieder lachen will ...https://www.rfc1437.de/2005/06/29/wer-mal-wieder-lachen-will/WordPress 1.5.1.3https://www.rfc1437.de/2005/06/29/wordpress-1513/Amerikaner und Logikhttps://www.rfc1437.de/2005/06/28/amerikaner-und-logik/iTunes Podcasting nicht mit alten iPods?https://www.rfc1437.de/2005/06/28/itunes-podcasting-nicht-mit-alten-ipods/Pfahl ist geständighttps://www.rfc1437.de/2005/06/28/pfahl-ist-gestandig/Strucki hat wohl doch Schäden vom Schlaganfallhttps://www.rfc1437.de/2005/06/28/strucki-hat-wohl-doch-schaden-vom-schlaganfall/Unternehmer gegen Softwarepatentehttps://www.rfc1437.de/2005/06/28/unternehmer-gegen-softwarepatente/vcXMLRPChttps://www.rfc1437.de/2005/06/28/vcxmlrpc/Beruhigende Prioritätenhttps://www.rfc1437.de/2005/06/27/beruhigende-prioritaten/Kulturloser Landtag?https://www.rfc1437.de/2005/06/27/kulturloser-landtag/New Scientist SPACE - Breaking News - Hubble spies lord of the stellar ringshttps://www.rfc1437.de/2005/06/27/nw-scntst-spc-brkng-nws-hbbl-sps-lrd-f-th-stllr-rn/Seltsame Gerichtsentscheidungen sind Internationalhttps://www.rfc1437.de/2005/06/27/seltsame-gerichtsentscheidungen-sind-international/PEP 342 -- Coroutines via Enhanced Generatorshttps://www.rfc1437.de/2005/06/26/pep-342-coroutines-via-enhanced-generators/Satellitenfoto von Münsterhttps://www.rfc1437.de/2005/06/26/satellitenfoto-von-munster/Scatman Eddy als Aussenbeppelhttps://www.rfc1437.de/2005/06/26/scatman-eddy-als-aussenbeppel/Da geht er hin, der Datenschutzhttps://www.rfc1437.de/2005/06/25/da-geht-er-hin-der-datenschutz/John Cleese speakinghttps://www.rfc1437.de/2005/06/25/john-cleese-speaking/LinuxTag vorgestellthttps://www.rfc1437.de/2005/06/25/linuxtag-vorgestellt/LiveSearch mit WordPress klappthttps://www.rfc1437.de/2005/06/25/livesearch-mit-wordpress-klappt/Microsoft und RSShttps://www.rfc1437.de/2005/06/25/microsoft-und-rss/Safari und der Rabenhorsthttps://www.rfc1437.de/2005/06/25/safari-und-der-rabenhorst/Merkelmaulkorbhttps://www.rfc1437.de/2005/06/24/merkelmaulkorb/Umweltschützer kritisieren Walfangkommissionhttps://www.rfc1437.de/2005/06/24/umweltschutzer-kritisieren-walfangkommission/WebObjects 5.3 und Linux?https://www.rfc1437.de/2005/06/24/webobjects-53-und-linux/CardSystems Exposes 40 Million Identitieshttps://www.rfc1437.de/2005/06/23/cardsystems-exposes-40-million-identities/Frauen sind in der US-IT-Branche weiterhin unterrepräsentierthttps://www.rfc1437.de/2005/06/23/frauen-sind-in-der-us-it-branche-weiterhin/Microsofts Allmachtsphantasienhttps://www.rfc1437.de/2005/06/23/microsofts-allmachtsphantasien/OXlook - Open-XChange verbindet sich mit Outlookhttps://www.rfc1437.de/2005/06/23/oxlook-open-xchange-verbindet-sich-mit-outlook/Suchmaschinen haften nicht für gespeicherte Thumbnailshttps://www.rfc1437.de/2005/06/23/suchmaschinen-haften-nicht-fur-gespeichert-thmbnls/SwissBit Victorinox retroALOX 1GBhttps://www.rfc1437.de/2005/06/23/swissbit-victorinox-retroalox-1gb/The diaries of Franz Kafka, 1910-1923https://www.rfc1437.de/2005/06/23/the-diaries-of-franz-kafka-1910-1923/The Hitch Hiker's Guide to the Smalltalk Compilerhttps://www.rfc1437.de/2005/06/23/the-hitch-hiker-s-guide-to-the-smalltalk-compiler/Über Moleskines ...https://www.rfc1437.de/2005/06/23/uber-moleskines/Verlogene Heuchlerhttps://www.rfc1437.de/2005/06/23/verlogene-heuchler/Webspammer mit neuen Tricks?https://www.rfc1437.de/2005/06/23/webspammer-mit-neuen-tricks/NeoOffice/J 1.1 Final ist raushttps://www.rfc1437.de/2005/06/22/neoofficej-11-final-ist-raus/Altfühl-Surfinghttps://www.rfc1437.de/2005/06/21/altfuhl-surfing/Apple sued over iTunes interfacehttps://www.rfc1437.de/2005/06/21/apple-sued-over-itunes-interface/Der Horror von Sony DRMhttps://www.rfc1437.de/2005/06/21/der-horror-von-sony-drm/Der Staat sieht alleshttps://www.rfc1437.de/2005/06/21/der-staat-sieht-alles/Google Sitemap Generator for WordPresshttps://www.rfc1437.de/2005/06/21/google-sitemap-generator-for-wordpress/del.icio.us mal Wiki = Code Snippetshttps://www.rfc1437.de/2005/06/20/delicious-mal-wiki-code-snippets/Der Grundrechtereport 2005https://www.rfc1437.de/2005/06/20/der-grundrechtereport-2005/EU-Abgeordnete kippt bei Softwarepatentenhttps://www.rfc1437.de/2005/06/20/eu-abgeordnete-kippt-bei-softwarepatenten/Finn- und Buckelwale sollen wieder gejagt werden?https://www.rfc1437.de/2005/06/20/finn-und-buckelwale-sollen-wieder-gejagt-werden/Staats-GmbH für Steuersoftware wird aufgelösthttps://www.rfc1437.de/2005/06/20/staats-gmbh-fuer-steuersoftware-wird-aufgeloest/Studiengebühren in NRWhttps://www.rfc1437.de/2005/06/20/studiengebuhren-in-nrw/Uuuuups!!https://www.rfc1437.de/2005/06/20/uuuuups/Handwerk will Krankheitstage mit Urlaub verrechnenhttps://www.rfc1437.de/2005/06/19/handwerk-will-krankheitstag-mt-rlb-vrrchnn-tgsschd/Kassen: Streit um Verwendung des Sonderbeitragshttps://www.rfc1437.de/2005/06/19/kassen-streit-um-verwendung-des-sonderbeitrags/Softwarebeschreibung von metaowl.dehttps://www.rfc1437.de/2005/06/19/softwarebeschreibung-von-metaowlde/Ausgerechnet NRW ...https://www.rfc1437.de/2005/06/18/ausgerechnet-nrw/Mal ne Frage an die Mac-Spezishttps://www.rfc1437.de/2005/06/18/mal-ne-frage-an-die-mac-spezis/Über die Sicherheit von Kreditkarten ...https://www.rfc1437.de/2005/06/18/uber-die-sicherheit-von-kreditkarten/Veränderungen bei der Metaeulehttps://www.rfc1437.de/2005/06/18/veranderungen-bei-der-metaeule/wp-cache-2 und PHP Acceleratorhttps://www.rfc1437.de/2005/06/18/wp-cache-2-und-php-accelerator/Ego-Surfinghttps://www.rfc1437.de/2005/06/17/ego-surfing-2/Foren-Betreiber dürfen demnächst keinen Urlaub mehr machenhttps://www.rfc1437.de/2005/06/17/foren-betreiber-durfen-demnachst-kenn-rlb-mhr-mchn/Schily kämpft immer noch mit der Demokratiehttps://www.rfc1437.de/2005/06/17/schily-kampft-immer-noch-mit-der-demokratie/Sogenannte Experten ...https://www.rfc1437.de/2005/06/17/sogenannte-experten/US-Einreisebeamte sind demnächst Spannerhttps://www.rfc1437.de/2005/06/17/us-einreisebeamte-sind-demnachst-spanner/Die Überwachung ausweiten ist das Zielhttps://www.rfc1437.de/2005/06/16/die-uberwachung-ausweiten-ist-das-ziel/Mail.App Filter mit Tastencodes aufrufenhttps://www.rfc1437.de/2005/06/16/mailapp-filter-mit-tastencodes-aufrufen/Metaowl ist life!https://www.rfc1437.de/2005/06/16/metaowl-ist-life/Popularity Contesthttps://www.rfc1437.de/2005/06/16/popularity-contest/Vermutlich bald ein Platz in der Regierung freihttps://www.rfc1437.de/2005/06/16/vermutlich-bald-ein-platz-in-der-regierung-frei/Zabel nicht zur Tourhttps://www.rfc1437.de/2005/06/16/zabel-nicht-zur-tour/Auch mal ein gutes Urteil zu verkündenhttps://www.rfc1437.de/2005/06/15/auch-mal-ein-gutes-urteil-zu-verkunden/Mittagspause mit Makrohttps://www.rfc1437.de/2005/06/14/mittagspause-mit-makro/Mittagspause mit Makrohttps://www.rfc1437.de/2005/06/14/mittagspause-mit-makro-2/Wieder eine gefärbte Studie von Microsofthttps://www.rfc1437.de/2005/06/14/wieder-eine-gefarbte-studie-von-microsoft/Älteste Zivilisationsspuren in Sachsen gefundenhttps://www.rfc1437.de/2005/06/13/aelteste-zivilisationsspuren-in-sachsen-gefunden/Der Kampf gegen die freie Meinunghttps://www.rfc1437.de/2005/06/13/der-kampf-gegen-die-freie-meinung/RSS Language und WordPresshttps://www.rfc1437.de/2005/06/13/rss-language-und-wordpress/Triple XXXhttps://www.rfc1437.de/2005/06/13/triple-xxx/Tunnelblick - GUI for OpenVPN on the Machttps://www.rfc1437.de/2005/06/13/tunnelblick-gui-for-openvpn-on-the-mac/Audio-Timeshift-Recorder und mehrhttps://www.rfc1437.de/2005/06/12/audio-timeshift-recorder-und-mehr/Heute in Bloglandhttps://www.rfc1437.de/2005/06/12/heute-in-blogland/OWL Contenthttps://www.rfc1437.de/2005/06/12/owl-content/Markenrecht jetzt auch noch auf Benutzernamenhttps://www.rfc1437.de/2005/06/11/markenrecht-jetzt-auch-noch-auf-benutzernamen/Canon Optikenhttps://www.rfc1437.de/2005/06/10/canon-optiken/Dem ist nichts hinzuzufügenhttps://www.rfc1437.de/2005/06/10/dem-ist-nichts-hinzuzufugen/Schöner WordPressenhttps://www.rfc1437.de/2005/06/10/schoner-wordpressen/Schwarz-Gelb bricht Wahlversprechen schon vor der Regierungsbildunghttps://www.rfc1437.de/2005/06/10/schwrz-glb-brcht-whlvrsprchn-schn-vr-dr-rgrngsbldn/Vermutlich glauben sie sich selber sogar ...https://www.rfc1437.de/2005/06/10/vermutlich-glauben-sie-sich-selber-sogar/An Dreistigkeit kaum noch zu überbietenhttps://www.rfc1437.de/2005/06/09/an-dreistigkeit-kaum-noch-zu-uberbieten/BBC - Radio 3 - Beethoven Experiencehttps://www.rfc1437.de/2005/06/09/bbc-radio-3-beethoven-experience/Irgendwann in Mexikohttps://www.rfc1437.de/2005/06/09/irgendwann-in-mexiko/Kritik an Köhlerhttps://www.rfc1437.de/2005/06/09/kritik-an-kohler/Vinokurow in Form für die Tourhttps://www.rfc1437.de/2005/06/09/vinokurow-in-form-fur-die-tour/Zum Abschuss freigegebenhttps://www.rfc1437.de/2005/06/09/zum-abschuss-freigegeben/Auf in den Polizeistaathttps://www.rfc1437.de/2005/06/08/auf-in-den-polizeistaat/Enclosures im Bilderbloghttps://www.rfc1437.de/2005/06/08/enclosures-im-bilderblog/Grosse Brücke-Ausstellung in Berlinhttps://www.rfc1437.de/2005/06/08/grosse-brucke-ausstellung-in-berlin/Hula Girl - Dashboard - Musichttps://www.rfc1437.de/2005/06/08/hula-girl-dashboard-music/ICANN als Erfüllungsgehilfe für VeriSign-Monopolansprüchehttps://www.rfc1437.de/2005/06/08/icann-als-erfullungsgehilfe-fur-verisgn-mnplnsprch/VS Vertraulich nfD und Outlook?https://www.rfc1437.de/2005/06/08/vs-vertraulich-nfd-und-outlook/Was von Versprechungen der Wirtschaft zu halten isthttps://www.rfc1437.de/2005/06/08/was-von-versprechungen-der-wirtschaft-zu-halten-st/Clement will ALG-II-Empfänger schärfer kontrollierenhttps://www.rfc1437.de/2005/06/07/clement-will-alg-ii-empfanger-scharfer-kontrollirn/PodCasts und der Gouvernatorhttps://www.rfc1437.de/2005/06/07/podcasts-und-der-gouvernator/Supreme Court makes supreme blunderhttps://www.rfc1437.de/2005/06/07/supreme-court-makes-supreme-blunder/Systemupgrade auf simon.bofh.mshttps://www.rfc1437.de/2005/06/07/systemupgrade-auf-simonbofhms/Systemupgrade simon.bofh.ms Part 2https://www.rfc1437.de/2005/06/07/systemupgrade-simonbofhms-part-2/The Transporterhttps://www.rfc1437.de/2005/06/07/the-transporter/WebKit, WebCore und JavaScripCore - Open Sourcehttps://www.rfc1437.de/2005/06/07/webkit-webcore-und-javascripcore-open-source/WebObjects Bestandteil von XCode 2.1https://www.rfc1437.de/2005/06/07/webobjects-bestandteil-von-xcode-21/Debian GNU/Linux 3.1 releasedhttps://www.rfc1437.de/2005/06/06/debian-gnu-linux-3-1-released/Mac mit Intelhttps://www.rfc1437.de/2005/06/06/mac-mit-intel/Wie uns unsere Regierung mal wieder belügthttps://www.rfc1437.de/2005/06/06/wie-uns-unsere-regierung-mal-wieder-belugt/Emacs on the metalhttps://www.rfc1437.de/2005/06/05/emacs-on-the-metal/Mail.app unter 10.4 und self-signed certificateshttps://www.rfc1437.de/2005/06/05/mailapp-unter-104-und-self-signed-certificates/Verfassungsschutz will PDS weiter beobachtenhttps://www.rfc1437.de/2005/06/05/verfassungsschutz-will-pds-weiter-beobachten/Anacron for Mac OS v10.4 (Tiger)https://www.rfc1437.de/2005/06/04/anacron-for-mac-os-v104-tiger/Keine Anwaltsgebühren für Abmahnungen bei Mehrfachvertretunghttps://www.rfc1437.de/2005/06/04/keine-anwaltsgebuehren-fuer-abmahnungen-bei/Österreichische Gesundheitskarte verletzt den Datenschutz von Arbeitslosenhttps://www.rfc1437.de/2005/06/04/oesterreichische-gesundheitskarte-verletzt-den/SuperDuper! and FileVaulthttps://www.rfc1437.de/2005/06/04/superduper-and-filevault/Wie funktioniert FileVaulthttps://www.rfc1437.de/2005/06/04/wie-funktioniert-filevault/Brummselhttps://www.rfc1437.de/2005/06/02/brummsel/Schneckig ...https://www.rfc1437.de/2005/06/02/crw-0925crw/PGP Corporation stört PGP Freeware Mirrorhttps://www.rfc1437.de/2005/06/02/pgp-corporation-stort-pgp-freeware-mirror/Photon iPhoto Pluginhttps://www.rfc1437.de/2005/06/02/photon-iphoto-plugin/Anwalt als Serien-Bankräuberhttps://www.rfc1437.de/2005/06/01/anwalt-als-serien-bankraeuber/Neues Objektiv für meine Canonhttps://www.rfc1437.de/2005/06/01/neues-objektiv-fur-meine-canon/Schockwellenreiterhttps://www.rfc1437.de/2005/06/01/schockwellenreiter-2/Experten plädieren für Mehrwertsteuer-Erhöhunghttps://www.rfc1437.de/2005/05/31/experten-pladieren-fur-mehrwertsteuer-erhohung/FDP will Offenlegung von Managerbezügen blockierenhttps://www.rfc1437.de/2005/05/31/fdp-will-offenlegung-von-managerbezuegen/Im Namen der Sicherheit ergeht folgender Unfughttps://www.rfc1437.de/2005/05/31/im-namen-der-sicherheit-ergeht-folgender-unfug/Kodak confirm SLR/n and SLR/c discontinuedhttps://www.rfc1437.de/2005/05/31/kodak-confirm-slr-n-and-slr-c-discontinued/Neuer unsinniger Pseudo-Kopierschutzhttps://www.rfc1437.de/2005/05/31/neuer-unsinniger-pseudo-kopierschutz/PC-Systeme auf dem Machttps://www.rfc1437.de/2005/05/31/pc-systeme-auf-dem-mac/The CHICKEN Scheme Compilerhttps://www.rfc1437.de/2005/05/31/the-chicken-scheme-compiler/Typisch Mac-User ist ...https://www.rfc1437.de/2005/05/31/typisch-mac-user-ist/Upgrade auf WordPress 1.5.1.2https://www.rfc1437.de/2005/05/31/upgrade-auf-wordpress-1512/Gleis 22 zum besten Musikclub Deutschlands gewählthttps://www.rfc1437.de/2005/05/30/gleis-22-zum-besten-musikclub-deutschlands-gewahlt/Licht und Schattenhttps://www.rfc1437.de/2005/05/30/licht-und-schatten/Licht und Schattenhttps://www.rfc1437.de/2005/05/30/licht-und-schatten-2/Schröder und Fischer bedauern Frankreichs Votumhttps://www.rfc1437.de/2005/05/30/schroder-und-fischer-bedauern-frankreichs-votum/Aber Atomkraft ist ja soooo sicherhttps://www.rfc1437.de/2005/05/29/aber-atomkraft-ist-ja-soooo-sicher/PageRank ist seit ein paar Tagen nicht mehr verfügbarhttps://www.rfc1437.de/2005/05/29/pagerank-ist-seit-ein-paar-tagen-nicht-mehr-vrfgbr/Unsere Computer gehören uns - nochhttps://www.rfc1437.de/2005/05/29/unsere-computer-gehoren-uns-noch/Algol 68 Genie - An Algol 68 interpreterhttps://www.rfc1437.de/2005/05/28/algol-68-genie-an-algol-68-interpreter/Giro in verdammt spannendhttps://www.rfc1437.de/2005/05/28/giro-in-verdammt-spannend/PDF Browser Pluginhttps://www.rfc1437.de/2005/05/28/pdf-browser-plugin/PithHelmethttps://www.rfc1437.de/2005/05/28/pithhelmet/Safari WebDevAdditionshttps://www.rfc1437.de/2005/05/28/safari-webdevadditions/safthttps://www.rfc1437.de/2005/05/28/saft/Scharping kandidiert nicht mehr für Bundestaghttps://www.rfc1437.de/2005/05/28/scharping-kandidiert-nicht-mehr-fuer-bundestag/Agfa-Photo GmbH geht in Insolvenzhttps://www.rfc1437.de/2005/05/27/agfa-photo-gmbh-geht-in-insolvenz/Basso again!https://www.rfc1437.de/2005/05/27/basso-again/Bitte nicht rubbelnhttps://www.rfc1437.de/2005/05/27/bitte-nicht-rubbeln/Blechtrommeln machen Lärmhttps://www.rfc1437.de/2005/05/27/blechtrommeln-machen-laerm/Digibux - Digitale Bibliothek setzt auf Open Sourcehttps://www.rfc1437.de/2005/05/27/digibux-digitale-bibliothek-setzt-auf-open-source/LispWorks Personal 4.4.5https://www.rfc1437.de/2005/05/27/lispworks-personal-445/Prozessorlüfter beim Powerbook 12"https://www.rfc1437.de/2005/05/27/prozessorlufter-beim-powerbook-12/X.4 Dashboard (Quarter Life Crisis)https://www.rfc1437.de/2005/05/27/x-4-dashboard-quarter-life-crisis/Apple ist auch manchmal strange ...https://www.rfc1437.de/2005/05/26/apple-ist-auch-manchmal-strange/Delicious Libraryhttps://www.rfc1437.de/2005/05/26/delicious-library/Einstweilige Verfügung gegen Googles Mail-Diensthttps://www.rfc1437.de/2005/05/26/einstweilige-verfugung-gegen-googles-mail-dienst/Kranke Software ...https://www.rfc1437.de/2005/05/26/kranke-software/Lauter kleine Otto Orwellshttps://www.rfc1437.de/2005/05/26/lauter-kleine-otto-orwells/Niedersächsische Regierung schwächt Einfluss des Datenschutzbeauftragtenhttps://www.rfc1437.de/2005/05/26/nidrschssch-rgrng-schwcht-nflss-ds-dtnschtzbftrgtn/Noch ein Tiger-Verlust?https://www.rfc1437.de/2005/05/26/noch-ein-tiger-verlust/Noch was zu Spotlighthttps://www.rfc1437.de/2005/05/26/noch-was-zu-spotlight/Performance vom Tigerhttps://www.rfc1437.de/2005/05/26/performance-vom-tiger/Shoeboxhttps://www.rfc1437.de/2005/05/26/shoebox/Spotlight support in VoodooPadhttps://www.rfc1437.de/2005/05/26/spotlight-support-in-voodoopad/DRM ist und bleibt Scheissehttps://www.rfc1437.de/2005/05/25/drm-ist-und-bleibt-scheisse/TBNL - A Toolkit for Dynamic Lisp Websiteshttps://www.rfc1437.de/2005/05/25/tbnl-a-toolkit-for-dynamic-lisp-websites/Tigerattackehttps://www.rfc1437.de/2005/05/25/tigerattacke/Voyager erreicht die Grenze des Sonnensystemshttps://www.rfc1437.de/2005/05/25/voyager-erreicht-die-grenze-des-sonnensystems/Bulgarian twin spammershttps://www.rfc1437.de/2005/05/24/bulgarian-twin-spammers/Nofollow revisitedhttps://www.rfc1437.de/2005/05/24/nofollow-revisited/Und die Abzocke geht weiterhttps://www.rfc1437.de/2005/05/23/und-die-abzocke-geht-weiter/US-Justizministerium stellt landesweites Sexualstraftäter-Register ins Netzhttps://www.rfc1437.de/2005/05/23/us-justizministerium-stellt-landesweites/Wahlen in NRWhttps://www.rfc1437.de/2005/05/22/wahlen-in-nrw/Kassenbeiträge werden wieder nicht sinkenhttps://www.rfc1437.de/2005/05/21/kassenbeitrage-werden-wieder-nicht-sinken/Blogbücher schreiben, aber RSS nicht kapierenhttps://www.rfc1437.de/2005/05/20/blogbucher-schreiben-aber-rss-nicht-kapieren/Dive Into Greasemonkeyhttps://www.rfc1437.de/2005/05/20/dive-into-greasemonkey-2/FramerDhttps://www.rfc1437.de/2005/05/20/framerd/Tim Pritlovehttps://www.rfc1437.de/2005/05/20/tim-pritlove/Jubel-Äum oder sohttps://www.rfc1437.de/2005/05/19/jubel-aum-oder-so/Paypal verschickt Phishing-Mailshttps://www.rfc1437.de/2005/05/19/paypal-verschickt-phishing-mails/Ackermann zur Kapitalismusdebattehttps://www.rfc1437.de/2005/05/18/ackermann-zur-kapitalismusdebatte/Das Keyboard - UberGeeks Onlyhttps://www.rfc1437.de/2005/05/18/das-keyboard-ubergeeks-only/Feuerwehr zerschneidet falsches Autohttps://www.rfc1437.de/2005/05/18/feuerwehr-zerschneidet-falsches-auto/CamlServhttps://www.rfc1437.de/2005/05/17/camlserv/Quartus Forth 2.0.0https://www.rfc1437.de/2005/05/17/quartus-forth-2-0-0/yadis: yet another distributed identity systemhttps://www.rfc1437.de/2005/05/17/yadis-yet-another-distributed-identity-system/Ende einer Kartoffel-Sorte: bald keine Linda mehrhttps://www.rfc1437.de/2005/05/16/ende-einer-kartoffel-sorte-bald-keine-linda-mehr/Free Pascal 2.0 ist raushttps://www.rfc1437.de/2005/05/16/free-pascal-20-ist-raus/Softwarepatente in realer Anwendunghttps://www.rfc1437.de/2005/05/16/softwarepatente-in-realer-anwendung/apropos Hirnfürzehttps://www.rfc1437.de/2005/05/15/apropos-hirnfurze/Unwahrscheinlich positivhttps://www.rfc1437.de/2005/05/15/unwahrscheinlich-positiv/OpenCOBOL - a COBOL compilerhttps://www.rfc1437.de/2005/05/14/opencobol-a-cobol-compiler/Schlüsselklau auf Hyperthreading-Systemenhttps://www.rfc1437.de/2005/05/14/schluesselklau-auf-hyperthreading-systemen/Bill Gates Hirnfürzehttps://www.rfc1437.de/2005/05/12/bill-gates-hirnfurze/Ping TopicExchange von WordPresshttps://www.rfc1437.de/2005/05/12/ping-topicexchange-von-wordpress/XDS Modula-2 / Oberon-2 Compilerhttps://www.rfc1437.de/2005/05/12/xds-modula-2-oberon-2-compiler/Polizeitstaat Hessenhttps://www.rfc1437.de/2005/05/10/polizeitstaat-hessen/Probleme mit dem Newsfeed bei WordPresshttps://www.rfc1437.de/2005/05/09/probleme-mit-dem-newsfeed-bei-wordpress/Back in Townhttps://www.rfc1437.de/2005/05/08/back-in-town/Bilder aus Flensburghttps://www.rfc1437.de/2005/05/08/bilder-aus-flensburg/Schily will Anti-Terror-Gesetze unbegrenzt verlängernhttps://www.rfc1437.de/2005/05/08/schily-will-anti-terror-gesetze-unbegrenzt-vrlngrn/Sparkline PHP Graphing Libraryhttps://www.rfc1437.de/2005/05/02/sparkline-php-graphing-library/Urlaub!https://www.rfc1437.de/2005/05/02/urlaub/Hitchhikers Guide als Filmhttps://www.rfc1437.de/2005/05/01/hitchhikers-guide-als-film/Zabel gewinnt Henninger Turmhttps://www.rfc1437.de/2005/05/01/zabel-gewinnt-henninger-turm/Ex-Bush-Ministerin Veneman wird Unicef-Chefinhttps://www.rfc1437.de/2005/04/30/ex-bush-ministerin-veneman-wird-unicef-chefin/RBL-Betreiber entweder Soziopathen oder inkompetenthttps://www.rfc1437.de/2005/04/30/rbl-betreiber-entweder-soziopathen-oder-inkompetnt/Apple-Nutzer in Parlamenten beklagen Diskriminierunghttps://www.rfc1437.de/2005/04/29/apple-nutzer-in-parlamenten-beklagen/Firefox erhält SVG-Unterstützunghttps://www.rfc1437.de/2005/04/29/firefox-erhaelt-svg-unterstuetzung/Gentechnik - es geht nicht nur um die Wursthttps://www.rfc1437.de/2005/04/29/gentechnik-es-geht-nicht-nur-um-die-wurst/KDE-Entwickler verärgert über Applehttps://www.rfc1437.de/2005/04/29/kde-entwickler-veraergert-ueber-apple/Neues Leica Objektivhttps://www.rfc1437.de/2005/04/29/neues-leica-objektiv/Da Vinci Crockhttps://www.rfc1437.de/2005/04/27/da-vinci-crock/Diplom Bürokaufmannhttps://www.rfc1437.de/2005/04/27/diplom-burokaufmann/Rechts von der Union ist die Unionhttps://www.rfc1437.de/2005/04/27/rechts-von-der-union-ist-die-union/Microsoft: alles nur geklauthttps://www.rfc1437.de/2005/04/26/microsoft-alles-nur-geklaut/Spielerei mit neuen Themehttps://www.rfc1437.de/2005/04/26/spielerei-mit-neuen-theme/Degradiert ...https://www.rfc1437.de/2005/04/25/degradiert/Erster Trojaner für Mac OS X gesichtethttps://www.rfc1437.de/2005/04/25/erster-trojaner-fuer-mac-os-x-gesichtet/OpenRAW - Digital Image Preservation Through Open Documentationhttps://www.rfc1437.de/2005/04/25/openraw-digital-image-preservatin-thrgh-pn-dcmnttn/Softwarepatente: Industrielobbying mit gezinkten Karten?https://www.rfc1437.de/2005/04/25/softwarepatente-industrielobbying-mit-gezinkten/AquaMacshttps://www.rfc1437.de/2005/04/24/aquamacs/.emacs Filehttps://www.rfc1437.de/2005/04/24/emacs-file/PostgreSQLXhttps://www.rfc1437.de/2005/04/24/postgresqlx/SPE-OSXhttps://www.rfc1437.de/2005/04/24/spe-osx/sproutlinerhttps://www.rfc1437.de/2005/04/24/sproutliner/Auch das ist Münsterhttps://www.rfc1437.de/2005/04/23/auch-das-ist-munster/Borland open sources JBuilderhttps://www.rfc1437.de/2005/04/23/borland-open-sources-jbuilder/Nikon respond to RAW WB concernshttps://www.rfc1437.de/2005/04/23/nikon-respond-to-raw-wb-concerns/Streifenkalender für WordPresshttps://www.rfc1437.de/2005/04/23/streifenkalender-fur-wordpress/virtuelle Hosts mit WordPresshttps://www.rfc1437.de/2005/04/23/virtuelle-hosts-mit-wordpress/WordPress Versioning Pluginhttps://www.rfc1437.de/2005/04/23/wordpress-versioning-plugin/Barroso mehrfach auf Yacht zu Gasthttps://www.rfc1437.de/2005/04/22/barroso-mehrfach-auf-yacht-zu-gast/NASA Is Said to Loosen Risk Standards for Shuttlehttps://www.rfc1437.de/2005/04/22/nasa-is-said-to-loosen-risk-standards-for-shuttle/Hinterhältige Ameisenhttps://www.rfc1437.de/2005/04/21/hinterhaeltige-ameisen/Practical Common Lisphttps://www.rfc1437.de/2005/04/21/practical-common-lisp/Schily und die Demokratiehttps://www.rfc1437.de/2005/04/20/schily-und-die-demokratie/Contax – RIP or Resurrectionhttps://www.rfc1437.de/2005/04/19/contax-rip-or-resurrection/Nikon Encrypts D2X and D2Hs White Balance Datahttps://www.rfc1437.de/2005/04/19/nikon-encrypts-d2x-and-d2hs-white-balance-data/Parlament in Kuwait stimmt Frauenwahlrecht zuhttps://www.rfc1437.de/2005/04/19/parlament-in-kuwait-stimmt-frauenwahlrecht-zu/Spam unter Strafe stellen?https://www.rfc1437.de/2005/04/19/spam-unter-strafe-stellen/Urteil gegen Kantherhttps://www.rfc1437.de/2005/04/19/urteil-gegen-kanther/Vorbereitende Fragehttps://www.rfc1437.de/2005/04/19/vorbereitende-frage/Was von der BZÖ zu erwarten isthttps://www.rfc1437.de/2005/04/19/was-von-der-bzo-zu-erwarten-ist/Adobe übernimmt Macromedia für 3,4 Milliarden Dollarhttps://www.rfc1437.de/2005/04/18/adobe-uebernimmt-macromedia-fuer-3-4-milliarden/Ging mir gerade durch den Kopf ...https://www.rfc1437.de/2005/04/18/ging-mir-gerade-durch-den-kopf/typochttps://www.rfc1437.de/2005/04/18/typoc/Bistro Introhttps://www.rfc1437.de/2005/04/17/bistro-intro/Seashorehttps://www.rfc1437.de/2005/04/17/seashore-2/Westerwelle will nicht mehr Kanzler werdenhttps://www.rfc1437.de/2005/04/17/westerwelle-will-nicht-mehr-kanzler-werden/''Cool it, Linus'' - Bruce Perenshttps://www.rfc1437.de/2005/04/16/cool-it-linus-bruce-perens/Grüne geben Widerstand gegen Raketenabwehrsystem aufhttps://www.rfc1437.de/2005/04/16/grune-geben-widerstand-ggn-rktnbwhrsystm-f-tgsschd/Servernamenhttps://www.rfc1437.de/2005/04/16/servernamen/Lafontaine steht offenbar vor Austritt aus der SPDhttps://www.rfc1437.de/2005/04/15/lafontaine-steht-offenbar-vor-austritt-aus-der-spd/Widerstand unter Kardinälen gegen Ratzinger wächsthttps://www.rfc1437.de/2005/04/15/widerstand-unter-kardinaelen-gegen-ratzinger/"Auch Hondos B-Proben positiv "https://www.rfc1437.de/2005/04/14/auch-hondos-b-proben-positiv/Eröffnung des Hauses der Photographie in Hamburghttps://www.rfc1437.de/2005/04/14/eroeffnung-des-hauses-der-photographie-in-hamburg/Selbstgemachtes System als BitKeeper-Ersatzhttps://www.rfc1437.de/2005/04/14/selbstgemachtes-system-als-bitkeeper-ersatz/Visa-Missbrauch schon im Kohl-Kabinett ein Thema?https://www.rfc1437.de/2005/04/14/visa-missbrauch-schon-im-kohl-kabinett-ein-thema/Goldhamsterstorieshttps://www.rfc1437.de/2005/04/13/abteilung-offentlichkeitsarbeit-mlu-halle-wittnbrg/Achja, der Wahlkampf hat angefangen ...https://www.rfc1437.de/2005/04/13/achja-der-wahlkampf-hat-angefangen/Es gibt so Tage ...https://www.rfc1437.de/2005/04/13/es-gibt-so-tage/Nur so als Hinweis ...https://www.rfc1437.de/2005/04/13/nur-so-als-hinweis/Contax brand comes to an endhttps://www.rfc1437.de/2005/04/12/contax-brand-comes-to-an-end/dvddisasterhttps://www.rfc1437.de/2005/04/12/dvddisaster/Geeignet ab 6 Jahrehttps://www.rfc1437.de/2005/04/12/geeignet-ab-6-jahre/PostgreSQL 8.0.2 released with patent fixhttps://www.rfc1437.de/2005/04/12/postgresql-802-released-with-patent-fix/Dauerthema SORBShttps://www.rfc1437.de/2005/04/11/dauerthema-sorbs//IE7/https://www.rfc1437.de/2005/04/11/ie7/Netzbuchhttps://www.rfc1437.de/2005/04/11/netzbuch/Simulation von :before mit content: in IE6https://www.rfc1437.de/2005/04/11/simulation-von-before-mit-content-in-ie6/delicious:dayshttps://www.rfc1437.de/2005/04/10/delicious-days/Lickr: Flickr, without the Flashhttps://www.rfc1437.de/2005/04/10/lickr-flickr-without-the-flash/Meine Firefox-Erweiterungenhttps://www.rfc1437.de/2005/04/10/meine-firefox-erweiterungen/Multimap - nettes Spielzeughttps://www.rfc1437.de/2005/04/10/multimap-nettes-spielzeug/SISC - Second Interpreter of Scheme Codehttps://www.rfc1437.de/2005/04/10/sisc-second-interpreter-of-scheme-code/Studs MVC Frameworkhttps://www.rfc1437.de/2005/04/10/studs-mvc-framework/Tags aus Termshttps://www.rfc1437.de/2005/04/10/tags-aus-terms/Aus für Berliner Symphonikerhttps://www.rfc1437.de/2005/04/09/aus-fuer-berliner-symphoniker/Resizeable Textareahttps://www.rfc1437.de/2005/04/09/resizeable-textarea/SLR-Objektive an der Leica M benutzenhttps://www.rfc1437.de/2005/04/09/slr-objektive-an-der-leica-m-benutzen/XFN Graphhttps://www.rfc1437.de/2005/04/09/xfn-graph/Schily will Sprayer mit Hubschraubern verfolgenhttps://www.rfc1437.de/2005/04/08/schily-will-sprayer-mit-hubschraubern-verfolgen/VIA legt EPIA-Treiber offenhttps://www.rfc1437.de/2005/04/08/via-legt-epia-treiber-offen/Datenschützer: Anonymität im Netz ein gesetzlich verbrieftes Rechthttps://www.rfc1437.de/2005/04/07/datenschutzer-annymtt-m-ntz-n-gstzlch-vrbrfts-rcht/FeedWordPresshttps://www.rfc1437.de/2005/04/07/feedwordpress/Jamba vor Problemen in den USA?https://www.rfc1437.de/2005/04/07/jamba-vor-problemen-in-den-usa/Die Seite fuer Ural und Dnepr Fahrerhttps://www.rfc1437.de/2005/04/06/die-seite-fuer-ural-und-dnepr-fahrer/Polizei fürchtet Anonymität und Kryptographie im Netzhttps://www.rfc1437.de/2005/04/06/polizei-furchtet-anonymitat-und-kryptographi-m-ntz/Source-Verwaltungssystem BitKeeper nur noch kommerziellhttps://www.rfc1437.de/2005/04/06/source-verwaltungssystem-bitkeeper-nur-noch/Sun bemäkelt die GPLhttps://www.rfc1437.de/2005/04/06/sun-bemakelt-die-gpl/TheMonadReaderhttps://www.rfc1437.de/2005/04/06/themonadreader/Ego-Surfinghttps://www.rfc1437.de/2005/04/05/ego-surfing/Öffentlich Rechtlicher Unfughttps://www.rfc1437.de/2005/04/05/offentlich-rechtlicher-unfug/Onlinemagazine und journalistische Ehrlichkeithttps://www.rfc1437.de/2005/04/05/onlinemagazine-und-journalistische-ehrlichkeit/Pugs - pugscodehttps://www.rfc1437.de/2005/04/05/pugs-pugscode/Urteil in Sachen Musikindustrie gegen heise onlinehttps://www.rfc1437.de/2005/04/05/urteil-in-sachen-musikindustrie-gegen-heise-online/Zeugen Jehovas: Bald Kirche in NRW?https://www.rfc1437.de/2005/04/05/zeugen-jehovas-bald-kirche-in-nrw/Okay, We Give Up -- We feel so ashamedhttps://www.rfc1437.de/2005/04/04/okay-we-give-up-we-feel-so-ashamed/Papst-Pontifikat: Kritik aus Politik und Kirchehttps://www.rfc1437.de/2005/04/04/papst-pontifikat-kritik-aus-politik-und-kirche/Regierungsstudie warnt vor Blockade durch Softwarepatentehttps://www.rfc1437.de/2005/04/04/regierungsstudie-warnt-vor-blockade-drch-sftwrptnt/Systemhaus BOG stellt Insolvenzantraghttps://www.rfc1437.de/2005/04/04/systemhaus-bog-stellt-insolvenzantrag/Ist eigentlich schon mal jemandem aufgefallen ...https://www.rfc1437.de/2005/04/03/ist-eigentlich-schon-mal-jemandem-aufgefallen/Javascript Windowshttps://www.rfc1437.de/2005/04/03/javascript-windows/Von Biometrie, Vorratsdatenspeicherung, Wissenschaft und Zensurhttps://www.rfc1437.de/2005/04/03/vn-bmtr-vrrtsdtnspchrng-wssnschft-nd-znsr-bntrlch/Epson R-D1 Reviewhttps://www.rfc1437.de/2005/04/02/epson-r-d1-review/HP Photosmart 8750 Photo Printerhttps://www.rfc1437.de/2005/04/02/hp-photosmart-8750-photo-printer/A Response to the Noisehttps://www.rfc1437.de/2005/04/01/a-response-to-the-noise/Danilo Hondo positiv auf Doping getestet?https://www.rfc1437.de/2005/04/01/danilo-hondo-positiv-auf-doping-getestet/Html Validator for Firefox and Mozillahttps://www.rfc1437.de/2005/04/01/html-validator-for-firefox-and-mozilla/Jubiläumsangebote der Lufthansa bringen Webserver zum Stillstandhttps://www.rfc1437.de/2005/04/01/jubilaeumsangebote-der-lufthansa-bringen/RFC4041: Requirements for Morality Sections in Routing Area Drafts. A....https://www.rfc1437.de/2005/04/01/rfc4041-requirements-for-morality-sections-in/Sicherheitsrisiko Passwortschutz bei Festplattenhttps://www.rfc1437.de/2005/04/01/sicherheitsrisiko-passwortschutz-bei-festplatten/upcoming change in PLT Scheme v300https://www.rfc1437.de/2005/04/01/upcoming-change-in-plt-scheme-v300/America: Where A Bumper Sticker Gets You Bannedhttps://www.rfc1437.de/2005/03/31/america-where-a-bumper-sticker-gets-you-banned/Brüssel steuert auf Eklat bei der Vorratsdatenspeicherung zuhttps://www.rfc1437.de/2005/03/31/bruessel-steuert-auf-eklat-bei-der/Ruf nach strikter Regelung bei Organspendenhttps://www.rfc1437.de/2005/03/31/ruf-nach-strikter-regelung-be-rgnspndn-wdrd-gsndht/Stollwerck schließt Schoko-Produktionhttps://www.rfc1437.de/2005/03/31/stollwerck-schliesst-schoko-produktion/Wordpress Website's Search Engine Spamhttps://www.rfc1437.de/2005/03/31/wordpress-websites-search-engine-spam/class.jabber.phphttps://www.rfc1437.de/2005/03/30/class-jabber-php/Preserve Code Formattinghttps://www.rfc1437.de/2005/03/30/preserve-code-formatting/Schröder: Waffenlieferungen an China auch gegen Willen des Bundestagshttps://www.rfc1437.de/2005/03/30/schroder-waffenlfrngn-n-chn-ch-ggn-wlln-ds-bndstgs/Antwort vom BMWA auf mein Faxhttps://www.rfc1437.de/2005/03/29/antwort-vom-bmwa-auf-mein-fax/deNic bei .net-Bewerbung draussen?https://www.rfc1437.de/2005/03/29/denic-bei-net-bewerbung-draussen/Freitag 08.09.2000: Tröpfe und -innen - Die drei Protokollisten heben sich den Zynismus für die Fortsetzungsgeschichte aufhttps://www.rfc1437.de/2005/03/29/freitag-08-09-2000-troepfe-und-innen-die-drei/Leichter Zugriff der Geheimdienste auf Konten und Reisedaten geforderthttps://www.rfc1437.de/2005/03/29/leichter-zugriff-der-geheimdienste-auf-konten-und/Studie bescheinigt Windows bessere Sicherheit als Linuxhttps://www.rfc1437.de/2005/03/29/studie-bescheinigt-windows-bessere-sicherht-ls-lnx/The SimCam: Film and Digital Camera Simulatorhttps://www.rfc1437.de/2005/03/29/the-simcam-film-and-digital-camera-simulator/Vertragsbedingungen für Sperr-Rufnummer publizierthttps://www.rfc1437.de/2005/03/29/vertragsbedingungen-fuer-sperr-rufnummer/Yahoo 360 Gradhttps://www.rfc1437.de/2005/03/29/yahoo-360-grad/BBEdit 8.1 brings Subversion supporthttps://www.rfc1437.de/2005/03/28/bbedit-8-1-brings-subversion-support/Cat2Tag Pluginhttps://www.rfc1437.de/2005/03/28/cat2tag-plugin/Pheed RSS Specificationhttps://www.rfc1437.de/2005/03/28/pheed-rss-specification/Rund um Köln ...https://www.rfc1437.de/2005/03/28/rund-um-koln/SCO Uses Legal Documents from Groklaw and Tuxrockshttps://www.rfc1437.de/2005/03/28/sco-uses-legal-documents-from-groklaw-and-tuxrocks/APLX Version 2: The exciting cross-platform APLhttps://www.rfc1437.de/2005/03/27/aplx-version-2-the-exciting-cross-platform-apl/PowerBook macht Zickenhttps://www.rfc1437.de/2005/03/27/powerbook-macht-zicken/Time Zone (WP Plugin)https://www.rfc1437.de/2005/03/27/time-zone-wp-plugin/Alicehttps://www.rfc1437.de/2005/03/26/alice/DrScheme 300er Seriehttps://www.rfc1437.de/2005/03/26/drscheme-300er-serie/Grundlagen Wellenausbreitung und Antennenbauhttps://www.rfc1437.de/2005/03/26/grundlagen-wellenausbreitung-und-antennenbau/Revanche des Karteikastenshttps://www.rfc1437.de/2005/03/26/revanche-des-karteikastens/Mac Mini auf der Arbeit angekommenhttps://www.rfc1437.de/2005/03/24/mac-mini-auf-der-arbeit-angekommen/Mein neues Fotoblog - und der erste Marienkäferhttps://www.rfc1437.de/2005/03/24/mein-neues-fotoblog-und-der-erste-marienkafer/Mein neues Fotoblog - und der erste Marienkäferhttps://www.rfc1437.de/2005/03/24/mein-neues-fotoblog-und-der-erste-marienkafer-2/Microsoft auf Patentraubzughttps://www.rfc1437.de/2005/03/24/microsoft-auf-patentraubzug/Hackers re-enable PyMusique access to iTMShttps://www.rfc1437.de/2005/03/23/hackers-re-enable-pymusique-access-to-itms/Journalism is a jokehttps://www.rfc1437.de/2005/03/23/journalism-is-a-joke/PythonEggshttps://www.rfc1437.de/2005/03/23/pythoneggs/Sybase stoppt Veröffentlichung von Details zu Sicherheitslückenhttps://www.rfc1437.de/2005/03/23/sybase-stoppt-veroeffentlichung-von-details-zu/Ajaxing the Railshttps://www.rfc1437.de/2005/03/22/ajaxing-the-rails/All Complex Ecosystems Have Parasiteshttps://www.rfc1437.de/2005/03/22/all-complex-ecosystems-have-parasites/Antwort des BMJ zu Softwarepatentenhttps://www.rfc1437.de/2005/03/22/antwort-des-bmj-zu-softwarepatenten/TidBITS: What You Get Is What You CSS, With Style Master 4.0https://www.rfc1437.de/2005/03/22/tidbits-what-you-get-is-what-you-css-with-style/Advanced Bash-Scripting Guidehttps://www.rfc1437.de/2005/03/21/advanced-bash-scripting-guide/BFI-Banker zu fast sechs Jahren Haft verurteilthttps://www.rfc1437.de/2005/03/21/bfi-banker-zu-fast-sechs-jahren-haft-verurteilt/Der Fall Schiavo - Trauerspiel zwischen Leben und Tod | tagesschau.dehttps://www.rfc1437.de/2005/03/21/der-fall-schiavo-traurspl-zwschn-lbn-nd-td-tgsschd/Hastymailhttps://www.rfc1437.de/2005/03/21/hastymail/Know your Enemy: Tracking Botnetshttps://www.rfc1437.de/2005/03/21/know-your-enemy-tracking-botnets/photomatthttps://www.rfc1437.de/2005/03/21/photomatt/Strafbefehl gegen Stefan Raabhttps://www.rfc1437.de/2005/03/21/strafbefehl-gegen-stefan-raab/Was ich pervers finde ...https://www.rfc1437.de/2005/03/21/was-ich-pervers-finde/Yahoo kauft wirklich Flickrhttps://www.rfc1437.de/2005/03/21/yahoo-kauft-wirklich-flickr/Schwarzes Loch im Laborhttps://www.rfc1437.de/2005/03/20/schwarzes-loch-im-labor/Stolpe empfiehlt: Autobahnen für den Aufschwunghttps://www.rfc1437.de/2005/03/20/stolpe-empfiehlt-autobahnen-fur-den-aufschwung/The Man in Blue > Experiments > widgEditorhttps://www.rfc1437.de/2005/03/20/the-man-in-blue-experiments-widgeditor/Hondo ist Zweiter bei Mailand - San Remohttps://www.rfc1437.de/2005/03/19/hondo-ist-zweiter-bei-mailand-san-remo/ARD-Anstalten contra jWhttps://www.rfc1437.de/2005/03/18/ard-anstalten-contra-jw/Bildbeschneidung mit DHTMLhttps://www.rfc1437.de/2005/03/18/bildbeschneidung-mit-dhtml/Metasuchmaschinen-Betreiber muss für ehrverletzende Einträge einstehenhttps://www.rfc1437.de/2005/03/18/metasuchmaschinn-btrbr-mss-fr-hrvrltznd-ntrg-nsthn/Agata Reporthttps://www.rfc1437.de/2005/03/17/agata-report/Contax rausverkaufhttps://www.rfc1437.de/2005/03/17/contax-rausverkauf/Der Industriekanzler und die Konzeptlosigkeithttps://www.rfc1437.de/2005/03/17/der-industriekanzler-und-die-konzeptlosigkeit/Ein Grundrecht ohne Grund und Bodenhttps://www.rfc1437.de/2005/03/17/ein-grundrecht-ohne-grund-und-boden/FUD Kampagne gegen Linuxhttps://www.rfc1437.de/2005/03/17/fud-kampagne-gegen-linux/Gmail-Einladungen: Erste einstweilige Verfügunghttps://www.rfc1437.de/2005/03/17/gmail-einladungen-erste-einstweilige-verfuegung/ihr albernes Trikothttps://www.rfc1437.de/2005/03/17/ihr-albernes-trikot/Kurztripp nach Kölnhttps://www.rfc1437.de/2005/03/17/kurztripp-nach-koln/Kurztripp nach Kölnhttps://www.rfc1437.de/2005/03/17/kurztripp-nach-koln-2/Nach dem Job-Gipfel: Hirnlosigkeithttps://www.rfc1437.de/2005/03/17/nach-dem-job-gipfel-hirnlosigkeit/Onlinesysteme ohne Useabilityhttps://www.rfc1437.de/2005/03/17/onlinesysteme-ohne-useability/The horror of software patentshttps://www.rfc1437.de/2005/03/17/the-horror-of-software-patents/Unverständnis und Kritik nach Wolfowitz-Nominierunghttps://www.rfc1437.de/2005/03/17/unverstandnis-und-kritik-nach-wolfowitz-nominierng/US-Senat segnet Ölbohrungen in Alaska abhttps://www.rfc1437.de/2005/03/17/us-senat-segnet-oelbohrungen-in-alaska-ab/Wahldebakel in Kielhttps://www.rfc1437.de/2005/03/17/wahldebakel-in-kiel/Aktionsbündnis gegen Spamhttps://www.rfc1437.de/2005/03/16/aktionsbundnis-gegen-spam/Bayerns Blinde sollen gefälligst zu Hause bleibenhttps://www.rfc1437.de/2005/03/16/bayerns-blinde-sollen-gefaelligst-zu-hause-bleiben/Clement kapiert Demokratie nichthttps://www.rfc1437.de/2005/03/16/clement-kapiert-demokratie-nicht/CLiki : cl-ajaxhttps://www.rfc1437.de/2005/03/16/cliki-cl-ajax/ein Java Applet eine Signatur hathttps://www.rfc1437.de/2005/03/16/ein-java-applet-eine-signatur-hat/Google mit eigenen Waffen schlagenhttps://www.rfc1437.de/2005/03/16/google-mit-eigenen-waffen-schlagen/Naked Objectshttps://www.rfc1437.de/2005/03/16/naked-objects/O2 mahnt Sauerstoff-Abfüller abhttps://www.rfc1437.de/2005/03/16/o2-mahnt-sauerstoff-abfueller-ab/SAJAX - Simple Ajax Toolkit by ModernMethod - XMLHTTPRequest Toolkit for PHPhttps://www.rfc1437.de/2005/03/16/sajax-simple-ajax-toolkit-by-modernmethod/SCO OpenServer 6 mit viel Open Sourcehttps://www.rfc1437.de/2005/03/16/sco-openserver-6-mit-viel-open-source/Usable XMLHttpRequest in Practicehttps://www.rfc1437.de/2005/03/16/usable-xmlhttprequest-in-practice/iTunes 4.7.1 quietly brings sharing restrictionshttps://www.rfc1437.de/2005/03/15/itunes-4-7-1-quietly-brings-sharing-restrictions/ParenScripthttps://www.rfc1437.de/2005/03/15/parenscript/Arbeitgeber legen Sofortprogramm vorhttps://www.rfc1437.de/2005/03/14/arbeitgeber-legen-sofortprogramm-vor/CherryFlow - Continuations in Pythonhttps://www.rfc1437.de/2005/03/14/cherryflow-continuations-in-python/Debian plant Verringerung der Architekturanzahlhttps://www.rfc1437.de/2005/03/14/debian-plant-verringerung-der-architekturanzahl/Firefox Help: Tips & Trickshttps://www.rfc1437.de/2005/03/14/firefox-help-tips-tricks/Absprachen über Vorratsdatenspeicherung lösen Empörung aushttps://www.rfc1437.de/2005/03/14/heise-onlin-bsprchn-br-vrrtsdtnspchrng-lsn-mprng-s/Markenname "Milka" siegt gegen Frau Milkahttps://www.rfc1437.de/2005/03/14/markenname-milka-siegt-gegen-frau-milka/Schräger Ottohttps://www.rfc1437.de/2005/03/14/schrager-otto/Urlaub für Mai gebucht ...https://www.rfc1437.de/2005/03/14/urlaub-fur-mai-gebucht/Was man so auf Dächern findet ...https://www.rfc1437.de/2005/03/14/was-man-so-auf-dachern-findet/Wird Zeit iChat rauszuwerfenhttps://www.rfc1437.de/2005/03/14/wird-zeit-ichat-rauszuwerfen/Orwell mit Verspätunghttps://www.rfc1437.de/2005/03/13/orwell-mit-verspatung/Zypries will DNA-Tests ausweitenhttps://www.rfc1437.de/2005/03/13/zypries-will-dna-tests-ausweiten/Poly/ML Home Pagehttps://www.rfc1437.de/2005/03/11/polyml-home-page/Ruby stuff for Macshttps://www.rfc1437.de/2005/03/11/ruby-stuff-for-macs/The fate of reduce() in Python 3000https://www.rfc1437.de/2005/03/11/the-fate-of-reduce-in-python-3000/UnCommon Web Tutorialhttps://www.rfc1437.de/2005/03/11/uncommon-web-tutorial/WP: Gravatar Signup [ Tempus Fugit | TxFx.net ]https://www.rfc1437.de/2005/03/11/wp-gravatar-signup-tempus-fugit-txfx-net/Abzockstar Laurenz Meyerhttps://www.rfc1437.de/2005/03/10/abzockstar-laurenz-meyer/Borderline Chaoshttps://www.rfc1437.de/2005/03/10/borderline-chaos/CherryOS verletzt die GPLhttps://www.rfc1437.de/2005/03/10/cherryos-verletzt-die-gpl/Iridient Digital - RAW Developerhttps://www.rfc1437.de/2005/03/10/iridient-digital-raw-developer/Perverse Geschmacksverirrungenhttps://www.rfc1437.de/2005/03/10/perverse-geschmacksverirrungen/Schmidt droht Kassen wegen hoher Beitragssätzehttps://www.rfc1437.de/2005/03/10/schmidt-droht-kassen-wegen-hoher-beitragssaetze/Musikindustrie und ihr angebliches Interesse für Musikerrechtehttps://www.rfc1437.de/2005/03/09/musikindustrie-und-ihr-angeblchs-ntrss-fr-mskrrcht/Was die Harvard Business School unter Hacking verstehthttps://www.rfc1437.de/2005/03/09/was-die-harvard-business-school-unter-hckng-vrstht/Armut ist weiblichhttps://www.rfc1437.de/2005/03/08/armut-ist-weiblich/Hedgehoghttps://www.rfc1437.de/2005/03/08/hedgehog-2/Rechte auf dem Weg in die Mittehttps://www.rfc1437.de/2005/03/08/rechte-auf-dem-weg-in-die-mitte/Social Software und un-Social Behaviourhttps://www.rfc1437.de/2005/03/08/social-software-und-un-social-behaviour/Uralter LAND-Angriff funktioniert wieder im aktuellen Windowshttps://www.rfc1437.de/2005/03/08/uralter-land-angriff-funktioniert-wieder-im/Weiterer Fehler in Linux-Sicherheitserweiterung grsecurityhttps://www.rfc1437.de/2005/03/08/weiterer-fehler-in-linux-sicherheitserweiterung/Wladimir Kaminer über Einreise nach Deutschlandhttps://www.rfc1437.de/2005/03/08/wladimir-kaminer-uber-einreise-nach-deutschland/Authentication Plugins Patchhttps://www.rfc1437.de/2005/03/07/authentication-plugins-patch/EU-Ministerrat für Kompromiss zu Software-Patentenhttps://www.rfc1437.de/2005/03/07/eu-ministerrat-fur-kompromiss-zu-software-patenten/Münchner Landgericht verbietet Link auf Kopiersoftware-Herstellerhttps://www.rfc1437.de/2005/03/07/munchner-landgericht-verbtt-lnk-f-kprsftwr-hrstllr/OSERhttps://www.rfc1437.de/2005/03/07/oser/Top Level Domain .at hat keinen zwingenden Bezug zu Österreichhttps://www.rfc1437.de/2005/03/07/top-level-domain-at-hat-keinn-zwngndn-bzg-z-strrch/Umstrittene Kfz-Kennzeichen-Patent ist für nichtig erklärthttps://www.rfc1437.de/2005/03/07/umstrittene-kfz-kennzeichen-patent-ist-fuer/cyrusharmon.org: More GCC-XML (new and improved -- now with pr0n!)https://www.rfc1437.de/2005/03/06/cyrusharmon-org-more-gcc-xml-new-and-improved-now/Graffiti und Kunsthttps://www.rfc1437.de/2005/03/06/graffiti-und-kunst/Graffiti und Kunst - 2https://www.rfc1437.de/2005/03/06/graffiti-und-kunst-2/Graffiti und Kunst - 3https://www.rfc1437.de/2005/03/06/graffiti-und-kunst-3/Graffiti und Kunst - 1https://www.rfc1437.de/2005/03/06/graffiti-und-kunst-4/Keine Bananenunion Europahttps://www.rfc1437.de/2005/03/06/keine-bananenunion-europa-keine-softwarepatente/Schneeblumenhttps://www.rfc1437.de/2005/03/06/schneeblumen/Schneeblumen - 1https://www.rfc1437.de/2005/03/06/schneeblumen-2/Schneeblumen - 2https://www.rfc1437.de/2005/03/06/schneeblumen-2-2/Strandguthütte am Kanal?https://www.rfc1437.de/2005/03/06/strandguthutte-am-kanal/was wir aufgrund der schwarzen Liste gegen Korruption in NRWhttps://www.rfc1437.de/2005/03/06/was-wir-aufgrund-der-schwarzen-liste-gegen/grsecurity installierenhttps://www.rfc1437.de/2005/03/05/grsecurity-installieren/Münsterlandeshttps://www.rfc1437.de/2005/03/05/muensterlandes/WordPress Theme: Gilahttps://www.rfc1437.de/2005/03/05/wordpress-theme-gila/Empörung über Aussage von JuLi-Vorsitzendemhttps://www.rfc1437.de/2005/03/04/empoerung-ueber-aussage-von-juli-vorsitzendem/How to setup WebObjects 5.1 on Linuxhttps://www.rfc1437.de/2005/03/04/how-to-setup-webobjects-51-on-linux/OpenACShttps://www.rfc1437.de/2005/03/04/openacs/Softwarepatente: Die Zeichen stehen auf Neuverhandlung im EU-Rathttps://www.rfc1437.de/2005/03/04/softwarepatente-die-zeichen-sthn-f-nvrhndlng-m-rt/Tabakindustrie bestach Wissenschaftlerhttps://www.rfc1437.de/2005/03/04/tabakindustrie-bestach-wissenschaftler/Backup mit halben Daten?https://www.rfc1437.de/2005/03/03/backup-mit-halben-daten/Ekelerregendhttps://www.rfc1437.de/2005/03/03/ekelerregend/Forscher erzeugen unterschiedliche X.509-Zertifikate mit gleichem MD5-Hashhttps://www.rfc1437.de/2005/03/03/forscher-erzeugen-unterschiedliche-x-509/Kyocera to end camera productionhttps://www.rfc1437.de/2005/03/03/kyocera-to-end-camera-production/man kann diese mit einem simplen Magneten knackenhttps://www.rfc1437.de/2005/03/03/man-kann-diese-mit-einem-simplen-magneten-knacken/Nr. 1737 und ein Vetohttps://www.rfc1437.de/2005/03/03/nr-1737-und-ein-veto/Offiziell genehmigtes Datamining einer Geheimdienst-Mailinglistehttps://www.rfc1437.de/2005/03/03/offiziell-genehmigtes-datamining-einer/SCO vs. Linux: SCO verlangt Einsicht in IBMs Konstruktionsplänehttps://www.rfc1437.de/2005/03/03/sco-vs-linux-sco-verlangt-einsicht-in-ibms/SKYRiX Object Publishing Environmenthttps://www.rfc1437.de/2005/03/03/skyrix-object-publishing-environment/SOS-Kinderdörfer warten auf Spende von Laurenz Meyerhttps://www.rfc1437.de/2005/03/03/sos-kinderdoerfer-warten-auf-spende-von-laurenz/Stu Nicholls Cutting Edge CSS An amazing CSS puzzlehttps://www.rfc1437.de/2005/03/03/stu-nicholls-cutting-edge-css-an-amazing-css/TB Quickmove und QuickFilehttps://www.rfc1437.de/2005/03/03/tb-quickmove-und-quickfile/Aranha server monitorhttps://www.rfc1437.de/2005/03/02/aranha-server-monitor/blo.gs: for salehttps://www.rfc1437.de/2005/03/02/blo-gs-for-sale/BlogFox: alles nur geklauthttps://www.rfc1437.de/2005/03/02/blogfox-alles-nur-geklaut/Gericht bestätigt Störerhaftung des Admin-Chttps://www.rfc1437.de/2005/03/02/gericht-bestatigt-storerhaftung-des-admin-c/Kyocera Hamburg am Ende?https://www.rfc1437.de/2005/03/02/kyocera-hamburg-am-ende/Microsoft setzt bei «Longhorn» auf Marketinghttps://www.rfc1437.de/2005/03/02/microsoft-setzt-bei-longhorn-auf-marketing/PIXELPOST - Small Photoblog Softwarehttps://www.rfc1437.de/2005/03/02/pixelpost-small-photoblog-software/SmartEiffel The GNU Eiffel Compilerhttps://www.rfc1437.de/2005/03/02/smarteiffel-the-gnu-eiffel-compiler/Abrechnung via IP?https://www.rfc1437.de/2005/03/01/abrechnung-via-ip/Back to the Future: The Story of Squeakhttps://www.rfc1437.de/2005/03/01/back-to-the-future-the-story-of-squeak/concord.antville.orghttps://www.rfc1437.de/2005/03/01/concord-antville-org/erinnert sich noch jemand an SoftRAM95https://www.rfc1437.de/2005/03/01/erinnert-sich-noch-jemand-an-softram95/Frostküttelhttps://www.rfc1437.de/2005/03/01/frostkuttel/Gigantische Erdzeichnungen in Peru entdeckthttps://www.rfc1437.de/2005/03/01/gigantische-erdzeichnungen-in-peru-entdeckt/Gut isoliert.https://www.rfc1437.de/2005/03/01/gut-isoliert/Leer: Freilandforschung mit Knüppeltötunghttps://www.rfc1437.de/2005/03/01/leer-freilandforschung-mit-knuppeltotung/Rolling Stonehttps://www.rfc1437.de/2005/03/01/rolling-stone/Sind Überstunden Pflicht?https://www.rfc1437.de/2005/03/01/sind-uberstunden-pflicht/Skidoo Too : Ruthsarian Layoutshttps://www.rfc1437.de/2005/03/01/skidoo-too-ruthsarian-layouts/SPD: "Kein Steuernachlass für ausländische Spitzenverdiener"https://www.rfc1437.de/2005/03/01/spd-kein-steuernachlass-fuer-auslaendische/Wir werden alle entlassen werdenhttps://www.rfc1437.de/2005/03/01/wir-werden-alle-entlassen-werden/Blogs! Warum Verisign bzw. Jamba Six Apart und Livejournal kaufen wirdhttps://www.rfc1437.de/2005/02/28/blogs-warum-verisign-bzw-jamba-six-apart-und/Böötchen vs. Bötchenhttps://www.rfc1437.de/2005/02/28/bootchen-vs-botchen/GeoURL (2.0)https://www.rfc1437.de/2005/02/28/geourl-2-0/JustBlogIt with a simple right-click.https://www.rfc1437.de/2005/02/28/justblogit-with-a-simple-right-click/Kentucky Student Charged with Felony Thoughtcrimehttps://www.rfc1437.de/2005/02/28/kentucky-student-charged-with-felony-thoughtcrime/NZZ Folio: DIN A4https://www.rfc1437.de/2005/02/28/nzz-folio-din-a4/Plattenfirmen erwägen Preiserhöhung für Musik-Downloadshttps://www.rfc1437.de/2005/02/28/plattenfirmen-erwaegen-preiserhoehung-fuer-musik/Softwarepatente: EU-Kommission weist Richtlinienneustart offiziell zurückhttps://www.rfc1437.de/2005/02/28/softwarepatente-eu-kommission-weist/speed up WordPress l10nhttps://www.rfc1437.de/2005/02/28/speed-up-wordpress-l10n/Staatliche Gen-Kontrolleure werben für Gen-Maishttps://www.rfc1437.de/2005/02/28/staatliche-gen-kontrolleure-werben-fur-gen-mais/Verkaufsplan: Bahn will Pannen-ICEs gen Österreich abschiebenhttps://www.rfc1437.de/2005/02/28/verkaufsplan-bahn-will-pannen-ices-gen/ARD-Hörfunk schaltet ARI-Verkehrsfunksystem abhttps://www.rfc1437.de/2005/02/27/ard-hoerfunk-schaltet-ari-verkehrsfunksystem-ab/Die Union und ihre angebliche Moralhttps://www.rfc1437.de/2005/02/27/die-union-und-ihre-angebliche-moral/IBM to drop Itanium supporthttps://www.rfc1437.de/2005/02/27/ibm-to-drop-itanium-support/Kommunen zocken den Bund bei Hartz IV abhttps://www.rfc1437.de/2005/02/27/kommunen-zocken-den-bund-bei-hartz-iv-ab/PL/I for GCChttps://www.rfc1437.de/2005/02/27/pl-i-for-gcc/Söder? Allerunterster politischer Bodensatz.https://www.rfc1437.de/2005/02/27/soder-allerunterster-politischer-bodensatz/Trackbacks generell moderierenhttps://www.rfc1437.de/2005/02/27/trackbacks-generell-moderieren/Koch kapiert mal wieder Demokratie nichthttps://www.rfc1437.de/2005/02/26/koch-kapiert-mal-wieder-demokratie-nicht/LetterHead Themehttps://www.rfc1437.de/2005/02/26/letterhead-theme/UNMÖGLICH - von wegen ...https://www.rfc1437.de/2005/02/26/unmoglich-von-wegen/Computerteile Rücksendungen dokumentierthttps://www.rfc1437.de/2005/02/25/computerteile-rucksendungen-dokumentiert/Disclaimerwahnsinn ...https://www.rfc1437.de/2005/02/25/disclaimerwahnsinn/Holocaust-Leugner Zündel wird ausgelieferthttps://www.rfc1437.de/2005/02/25/holocaust-leugner-zuendel-wird-ausgeliefert/Künast: Nächsten Montag geht die Richtlinie durch den Rathttps://www.rfc1437.de/2005/02/25/kunast-nachsten-montag-geht-die-richtln-drch-dn-rt/Microsoft schränkt Windows-XP-Aktivierung per Internet einhttps://www.rfc1437.de/2005/02/25/microsoft-schraenkt-windows-xp-aktivierung-per/R-Archiv - Diskussionsforen Abmahnunghttps://www.rfc1437.de/2005/02/25/r-archiv-diskussionsforen-abmahnung/Was man so in seinen Kommentaren findet ...https://www.rfc1437.de/2005/02/25/was-man-so-in-seinen-kommentaren-findet/WordPress IP to Country Pluginhttps://www.rfc1437.de/2005/02/25/wordpress-ip-to-country-plugin/BA soll Accenture bei Online-Jobbörse begünstigt habenhttps://www.rfc1437.de/2005/02/24/ba-soll-accenture-bei-online-jobborse-begnstgt-hbn/Der Elefant der Maus wird 30https://www.rfc1437.de/2005/02/24/der-elefant-der-maus-wird-30/Energiedrink für RWE - auf unsere Kostenhttps://www.rfc1437.de/2005/02/24/energiedrink-fur-rwe-auf-unsere-kosten/Künstler der Brücke in Essenhttps://www.rfc1437.de/2005/02/24/kuenstler-der-bruecke-in-essen/US-Ministerium beruft Adware-Hersteller als Datenschutz-Beraterhttps://www.rfc1437.de/2005/02/24/us-ministerium-beruft-adware-hersteller-als/Virtualisierte Server unter Linuxhttps://www.rfc1437.de/2005/02/24/virtualisierte-server-unter-linux/Vorsicht bei kostenlosen SSL-Zertifikatenhttps://www.rfc1437.de/2005/02/24/vorsicht-bei-kostenlosen-ssl-zertifikaten/A Call to Action in OASIShttps://www.rfc1437.de/2005/02/23/a-call-to-action-in-oasis/Abmahnungen für Gmail-Einladungenhttps://www.rfc1437.de/2005/02/23/abmahnungen-fur-gmail-einladungen/BA will Betreuung älterer ostdeutscher Arbeitsloser abgebenhttps://www.rfc1437.de/2005/02/23/ba-will-betreuung-aelterer-ostdeutscher/Bush in Mainzhttps://www.rfc1437.de/2005/02/23/bush-in-mainz/Dialerwahn - die nächste Phasehttps://www.rfc1437.de/2005/02/23/dialerwahn-die-nachste-phase/EU-Parlament beschließt Aus für Papierführerscheinehttps://www.rfc1437.de/2005/02/23/eu-parlament-beschliesst-aus-fuer/Freier multidimensionaler OLAP-Server für Linux angekündigthttps://www.rfc1437.de/2005/02/23/freier-multidimensionaler-olap-server-fuer-linux/Neue iPod-Modelle zu günstigeren Preisenhttps://www.rfc1437.de/2005/02/23/neue-ipod-modelle-zu-guenstigeren-preisen/Ole von Beust für einen Nordstaathttps://www.rfc1437.de/2005/02/23/ole-von-beust-fur-einen-nordstaat/Optic Nerve Cameras for the Blindhttps://www.rfc1437.de/2005/02/23/optic-nerve-cameras-for-the-blind/Plugin API for WordPresshttps://www.rfc1437.de/2005/02/23/plugin-api-for-wordpress/Spruchband zum 23.2.2005https://www.rfc1437.de/2005/02/23/spruchband-zum-2322005/T-Online die angebliche Marktführerschaft von Musicload ableitethttps://www.rfc1437.de/2005/02/23/t-online-die-angebliche-marktfuehrerschaft-von/Apache2, php5-fcgi, php4-fcgi, mod_fastcgi HowTohttps://www.rfc1437.de/2005/02/22/apache2-php5-fcgi-php4-fcgi-mod-fastcgi-howto/Apehttps://www.rfc1437.de/2005/02/22/ape/Die Schill-Partei in Hamburg löst sich aufhttps://www.rfc1437.de/2005/02/22/die-schill-partei-in-hamburg-loest-sich-auf/Fairsharing Unterschriftensammlunghttps://www.rfc1437.de/2005/02/22/fairsharing-unterschriftensammlung/FileSystemView vs. LocalFShttps://www.rfc1437.de/2005/02/22/filesystemview-vs-localfs/Leica in financial crisishttps://www.rfc1437.de/2005/02/22/leica-in-financial-crisis/Microsoft will Ungleich-Befehl für Basic erfunden habenhttps://www.rfc1437.de/2005/02/22/microsoft-will-ungleich-befehl-fuer-basic/mod_fastcgi und mod_rewritehttps://www.rfc1437.de/2005/02/22/mod-fastcgi-und-mod-rewrite/Put Your Money Where Your Mouth is ...https://www.rfc1437.de/2005/02/22/put-your-money-where-your-mouth-is/Sony steigt komplett aus dem PDA-Geschäft aushttps://www.rfc1437.de/2005/02/22/sony-steigt-komplett-aus-dem-pda-geschaeft-aus/Von Firefox wieder auf Camino ...https://www.rfc1437.de/2005/02/22/von-firefox-wieder-auf-camino/Zukünftiges Badeparadies Mars?https://www.rfc1437.de/2005/02/22/zukunftiges-badeparadies-mars/750 Stimmen ...https://www.rfc1437.de/2005/02/21/750-stimmen/Batch Categories 0.9https://www.rfc1437.de/2005/02/21/batch-categories-0-9/Brüderle droht mit antidänischen Ressentimentshttps://www.rfc1437.de/2005/02/21/bruderle-droht-mit-antidanischen-ressentiments/Entwarnung: Mozilla schaltet Umlaut-Domains nicht abhttps://www.rfc1437.de/2005/02/21/entwarnung-mozilla-schaltet-umlaut-domains-nicht/Hack a Bike - keep on hacking in a free world!https://www.rfc1437.de/2005/02/21/hack-a-bike-keep-on-hacking-in-a-free-world/Image Headlines Plugin for WordPress 1.5https://www.rfc1437.de/2005/02/21/image-headlines-plugin-for-wordpress-1-5/Knüppel zwischen die Beine geworfen bekommenhttps://www.rfc1437.de/2005/02/21/knuppel-zwischen-die-beine-geworfen-bekommen/OpenPGPComment für WordPresshttps://www.rfc1437.de/2005/02/21/openpgpcomment-fur-wordpress/Paranoia, fortgeschrittenehttps://www.rfc1437.de/2005/02/21/paranoia-fortgeschrittene/rdiff-backup und duplicityhttps://www.rfc1437.de/2005/02/21/rdiff-backup-und-duplicity/Spammer sind wirklich ziemlich blöd ...https://www.rfc1437.de/2005/02/21/spammer-sind-wirklich-ziemlich-blod/Tollwut (Rabies, Lyssa)https://www.rfc1437.de/2005/02/21/tollwut-rabies-lyssa/Apache Rivethttps://www.rfc1437.de/2005/02/20/apache-rivet/Die Wahlen in S.-H.https://www.rfc1437.de/2005/02/20/die-wahlen-in-s-h/Google-Whack: gemölter möllemannhttps://www.rfc1437.de/2005/02/20/google-whack-gemolter-mollemann/mod_dosevasivehttps://www.rfc1437.de/2005/02/20/mod-dosevasive/Red Alt - Kubrickrhttps://www.rfc1437.de/2005/02/20/red-alt-kubrickr/Terragen - Landschaftsgeneratorhttps://www.rfc1437.de/2005/02/20/terragen-landschaftsgenerator/Terragen - Landschaftsgenerator - 1https://www.rfc1437.de/2005/02/20/terragen-landschaftsgenerator-2/Terragen - Landschaftsgenerator - 2https://www.rfc1437.de/2005/02/20/terragen-landschaftsgenerator-2-2/Bei Nebenwirkungen schlagen Sie Ihren Softwarehersteller ...https://www.rfc1437.de/2005/02/19/bei-nebenwirkungen-schlagen-sie-ihren-sftwrhrstllr/Bernd das Brot als GDM Themehttps://www.rfc1437.de/2005/02/19/bernd-das-brot-als-gdm-theme/Ethical Hacking and Computer Forensics: Secret Service hacker, how did he do it?https://www.rfc1437.de/2005/02/19/ethical-hacking-and-computer-forensics-secret/Google pagerank extension for firefox and mozillahttps://www.rfc1437.de/2005/02/19/google-pagerank-extension-for-firefox-and-mozilla/HP Photosmart 8750 Printer Announcedhttps://www.rfc1437.de/2005/02/19/hp-photosmart-8750-printer-announced/heise Security - Know-how - Konsequenzen der erfolgreichen Angriffe auf SHA-1https://www.rfc1437.de/2005/02/18/heise-security-know-how-konsequenzen-der/Papst vergleicht Abtreibung mit Holocausthttps://www.rfc1437.de/2005/02/18/papst-vergleicht-abtreibung-mit-holocaust/Alternative Rewrite Ruleshttps://www.rfc1437.de/2005/02/17/alternative-rewrite-rules/Canon EF-S 60 mm F2.8 macro lenshttps://www.rfc1437.de/2005/02/17/canon-ef-s-60-mm-f2-8-macro-lens/Der Heuchler des Abends?https://www.rfc1437.de/2005/02/17/der-heuchler-des-abends/heise online - Wenn Computer-Oldies nicht mehr wollen [Update]https://www.rfc1437.de/2005/02/17/heise-online-wenn-computer-oldies-nicht-mehr/Introducing sIFR: The Healthy Alternative to Browser Texthttps://www.rfc1437.de/2005/02/17/introducing-sifr-the-healthy-alternatv-t-brwsr-txt/Technorati Plugin Betahttps://www.rfc1437.de/2005/02/17/technorati-plugin-beta/BAStats Pre-Release für WordPress 1.5https://www.rfc1437.de/2005/02/16/bastats-pre-release-fur-wordpress-15/Commodore 64 als Anzeigetafelcontrollerhttps://www.rfc1437.de/2005/02/16/commodore-64-als-anzeigetafelcontroller/Kryptoverfahren SHA-1 geknackthttps://www.rfc1437.de/2005/02/16/kryptoverfahren-sha-1-geknackt/Neues Spiel, neues Glück: b2evolutionhttps://www.rfc1437.de/2005/02/16/neues-spiel-neues-gluck-b2evolution/Nikon Face-Priority AFhttps://www.rfc1437.de/2005/02/16/nikon-face-priority-af/Positivliste soll Marketing-Mails an Spam-Filtern vorbeischleusenhttps://www.rfc1437.de/2005/02/16/positivliste-soll-marketing-mails-an-spam-filtern/sohu-search ist ein seltsamer Bothttps://www.rfc1437.de/2005/02/16/sohu-search-ist-ein-seltsamer-bot/Studie: Vioxx verdoppelte das Herzinfarkt-Risikohttps://www.rfc1437.de/2005/02/16/studie-vioxx-verdoppelte-das-herzinfarkt-risiko/Workaround for IDN Spoofing Issuehttps://www.rfc1437.de/2005/02/16/workaround-for-idn-spoofing-issue/APOD: 2005 January 21 - Metal on the Plains of Marshttps://www.rfc1437.de/2005/02/15/apod-2005-january-21-metal-on-the-plains-of-mars/Bill Gates versucht Dänemark zu erpressenhttps://www.rfc1437.de/2005/02/15/bill-gates-versucht-danemark-zu-erpressen/Brandora, R/C X-UFOhttps://www.rfc1437.de/2005/02/15/brandora-r-c-x-ufo/Die Ausbildung wird verstaatlichthttps://www.rfc1437.de/2005/02/15/die-ausbildung-wird-verstaatlicht/Fischer wird NRW-Wahlkampfthemahttps://www.rfc1437.de/2005/02/15/fischer-wird-nrw-wahlkampfthema/::: heimstatt jochen wegner - BAUER POPPE UND DIE GOOGLEISIERUNGhttps://www.rfc1437.de/2005/02/15/heimstatt-jochen-wegner-bauer-poppe-und-die/Internet Explorer 7 beta due out this summerhttps://www.rfc1437.de/2005/02/15/internet-explorer-7-beta-due-out-this-summer/junge welt vom 15.02.2005 - Hungerlohn für Nachhilfehttps://www.rfc1437.de/2005/02/15/junge-welt-vom-15-02-2005-hungerlohn-fuer/Mozilla entfernt Unterstützung für Umlaut-Domainshttps://www.rfc1437.de/2005/02/15/mozilla-entfernt-unterstutzung-fur-umlaut-domains/Neohapsis Archives - Full Disclosure List - #0258 - [Full-Disclosure] Advisory: Awstats official workaround flawhttps://www.rfc1437.de/2005/02/15/neohapsis-archives-full-disclosure-list-0258-full/News.Individual.DE ab 1.4. nicht mehr kostenloshttps://www.rfc1437.de/2005/02/15/newsindividualde-ab-14-nicht-mehr-kostenlos/PageRank Echtheit prüfenhttps://www.rfc1437.de/2005/02/15/pagerank-echtheit-prufen/phpOpenTrackerhttps://www.rfc1437.de/2005/02/15/phpopentracker/Weniger Politik für mehr GEZ-Gebühren [raben.horst]https://www.rfc1437.de/2005/02/15/weniger-politik-fur-mehr-gez-gebuhren-rabenhorst/WordPress 1.5 ist raushttps://www.rfc1437.de/2005/02/15/wordpress-15-ist-raus/Canon EOS 20Da, Japan Onlyhttps://www.rfc1437.de/2005/02/14/canon-eos-20da-japan-only/Cooperative Linuxhttps://www.rfc1437.de/2005/02/14/cooperative-linux-3/Des oanzige was zählt auf dera Welthttps://www.rfc1437.de/2005/02/14/des-oanzige-was-zahlt-auf-dera-welt/Es wirkt ein wenig wie Fluchthttps://www.rfc1437.de/2005/02/14/es-wirkt-ein-wenig-wie-flucht/Etomite Content Management Systemhttps://www.rfc1437.de/2005/02/14/etomite-content-management-system/Filter soll Internet-Filmtausch stoppenhttps://www.rfc1437.de/2005/02/14/filter-soll-internet-filmtausch-stoppen/Freitag 06 - Die Plünderer kommenhttps://www.rfc1437.de/2005/02/14/freitag-06-die-plunderer-kommen/Howstuffworks "How Van de Graaff Generators Work"https://www.rfc1437.de/2005/02/14/howstuffworks-how-van-de-graaff-generators-work/javascript:xmlhttprequest [JPSPAN]https://www.rfc1437.de/2005/02/14/javascript-xmlhttprequest-jpspan/Norweger kriminalisieren jetzt Musikbesitzerhttps://www.rfc1437.de/2005/02/14/norweger-kriminalisieren-jetzt-musikbesitzer/Sigma: 30-mm-Objektiv mit F1.4 für Digitalkamerashttps://www.rfc1437.de/2005/02/14/sigma-30-mm-objektiv-mit-f1-4-fuer-digitalkameras/Vytorin Self-Stirring Mughttps://www.rfc1437.de/2005/02/14/vytorin-self-stirring-mug/Wacom Cintiq 21UX Touch Screen Flat-Panelhttps://www.rfc1437.de/2005/02/14/wacom-cintiq-21ux-touch-screen-flat-panel/aus einer dynamischen IP-Adresse ermittelthttps://www.rfc1437.de/2005/02/13/aus-einer-dynamischen-ip-adresse-ermittelt/Aus gegebenem Anlass ...https://www.rfc1437.de/2005/02/13/aus-gegebenem-anlass/CSS und IE und Safari 1.0https://www.rfc1437.de/2005/02/13/css-und-ie-und-safari-10/Gravatars in den Kommentarenhttps://www.rfc1437.de/2005/02/13/gravatars-in-den-kommentaren/Jens Voigt räumt bei der Mittelmeer-Rundfahrt abhttps://www.rfc1437.de/2005/02/13/jens-voigt-raeumt-bei-der-mittelmeer-rundfahrt-ab/mozdev.org - conkerorhttps://www.rfc1437.de/2005/02/13/mozdevorg-conkeror/Suchmaschinenpromoter nix findenhttps://www.rfc1437.de/2005/02/13/suchmaschinenpromoter-nix-finden/Und nochmal Logfileshttps://www.rfc1437.de/2005/02/13/und-nochmal-logfiles/vermutlich verkleideter Bot in den Logshttps://www.rfc1437.de/2005/02/13/vermutlich-verkleideter-bot-in-den-logs/Was guckst du?https://www.rfc1437.de/2005/02/13/was-guckst-du/Weblog Tools Collection leidet unter Referer Spam DoShttps://www.rfc1437.de/2005/02/13/weblog-tools-collection-leidet-unter-referer-spam/CSS DropShadows erzeugthttps://www.rfc1437.de/2005/02/12/css-dropshadows-erzeugt/DGB-Chef akzeptiert Umbau des Sozialstaatshttps://www.rfc1437.de/2005/02/12/dgb-chef-akzeptiert-umbau-des-sozialstaats/Neue Polaroid 600 SEhttps://www.rfc1437.de/2005/02/12/neue-polaroid-600-se/Nicht über den Inhalt meines Weblogs wundern ...https://www.rfc1437.de/2005/02/12/nicht-uber-den-inhalt-meines-weblogs-wundern/wenn man MySQL 4.0 auf 4.1 aktualisierthttps://www.rfc1437.de/2005/02/12/wenn-man-mysql-4-0-auf-4-1-aktualisiert/WordPress Localizationhttps://www.rfc1437.de/2005/02/12/wordpress-localization/Anrufbeantworter nehmen R-Gespräche anhttps://www.rfc1437.de/2005/02/11/anrufbeantworter-nehmen-r-gespraeche-an/Microsoft Interoperabilityhttps://www.rfc1437.de/2005/02/11/microsoft-interoperability/Schilys neue Initiative für Flüchtlingslager in Afrikahttps://www.rfc1437.de/2005/02/11/schilys-neue-initiative-fur-fluchtlingslager-n-frk/Schwere Zeiten für Kofi Annanhttps://www.rfc1437.de/2005/02/11/schwere-zeiten-fuer-kofi-annan/Deep Links finden in Logfileshttps://www.rfc1437.de/2005/02/10/deep-links-finden-in-logfiles/Mach mir den Ackermannhttps://www.rfc1437.de/2005/02/10/haut-den-josef/Podcasts? Nö.https://www.rfc1437.de/2005/02/10/podcasts-no/Weiteres zu Drupalhttps://www.rfc1437.de/2005/02/10/weiteres-zu-drupal/Wordpress Dateien und Ladereihenfolgehttps://www.rfc1437.de/2005/02/10/wordpress-dateien-und-ladereihenfolge/Wordpress to Drupal Migration Scripthttps://www.rfc1437.de/2005/02/10/wordpress-to-drupal-migration-script/wp-style-switcherhttps://www.rfc1437.de/2005/02/10/wp-style-switcher/Arbeitgeber wollen neue Studienfinanzierunghttps://www.rfc1437.de/2005/02/09/arbeitgeber-wollen-neue-studienfinanzierung/Buffer Overflow in zahlreichen Produkten von Symantechttps://www.rfc1437.de/2005/02/09/buffer-overflow-in-zahlreichen-produkten-von/China: Hinrichtungen für den sozialen Frieden?https://www.rfc1437.de/2005/02/09/china-hinrichtungen-fuer-den-sozialen-frieden/Google-Suche: gemölterhttps://www.rfc1437.de/2005/02/09/google-suche-gemolter/HP-Chefin tritt überraschend zurückhttps://www.rfc1437.de/2005/02/09/hp-chefin-tritt-ueberraschend-zurueck/In Parton wurde ein Mini-Loch-Ness-Monsterhttps://www.rfc1437.de/2005/02/09/in-parton-wurde-ein-mini-loch-ness-monster/liquid design auf em/ex Basishttps://www.rfc1437.de/2005/02/09/liquid-design-auf-emex-basis/Wer hat Schuld am braunen Mann?https://www.rfc1437.de/2005/02/09/wer-hat-schuld-am-braunen-mann/Chefvolkswirt Walter liest Deutschen die Levitenhttps://www.rfc1437.de/2005/02/08/chefvolkswirt-walter-liest-deutschen-die-leviten/Die arme Filmindustrie und die Bagetellgrenzehttps://www.rfc1437.de/2005/02/08/die-arme-filmindustrie-und-die-bagetellgrenze/Don't reset existing password on request, prevent DoS password reset abuse | drupal.orghttps://www.rfc1437.de/2005/02/08/dnt-rst-xstng-psswrd-n-rqst-prvnt-ds-psswrd-rst-bs/Firefox - IDN - 0 Info - 0 Transparenzhttps://www.rfc1437.de/2005/02/08/firefox-idn-0-info-0-transparenz/Gen-Pflanzen Forschung in Münsterhttps://www.rfc1437.de/2005/02/08/gen-pflanzen-forschung-in-munster/Jupp, Drupal will mich in den Wahnsinn treibenhttps://www.rfc1437.de/2005/02/08/jupp-drupal-will-mich-in-den-wahnsinn-treiben/Manche Projekte wollen mich in den Wahnsinn treibenhttps://www.rfc1437.de/2005/02/08/manche-projekte-wollen-mich-in-den-wahnsinn-treibn/Rat der EU ignoriert Forderung des Parlamentshttps://www.rfc1437.de/2005/02/08/rat-der-eu-ignoriert-forderung-des-parlaments/Spreeblick: Sweety Recordshttps://www.rfc1437.de/2005/02/08/spreeblick-sweety-records/"Von der GPL"https://www.rfc1437.de/2005/02/08/von-der-gpl/Hartz-IV-Urban-Legendhttps://www.rfc1437.de/2005/02/07/hartz-iv-urban-legend/Microsoft erhält Patent auf Koordinaten in URLshttps://www.rfc1437.de/2005/02/07/microsoft-erhaelt-patent-auf-koordinaten-in-urls/Neuer Phishing-Angriff in vielen Web-Browsern möglichhttps://www.rfc1437.de/2005/02/07/neuer-phishing-angriff-in-vielen-web-browsrn-mglch/Smog könnte Allergien fördernhttps://www.rfc1437.de/2005/02/07/smog-koennte-allergien-foerdern/The MBROLA PROJECT HOMEPAGEhttps://www.rfc1437.de/2005/02/07/the-mbrola-project-homepage/Clement für Anhebung des Rentenaltershttps://www.rfc1437.de/2005/02/06/clement-fur-anhebung-des-rentenalters/Doing the GNUstep two-stephttps://www.rfc1437.de/2005/02/06/doing-the-gnustep-two-step/dotproject - Open Source Project and Task Management Softwarehttps://www.rfc1437.de/2005/02/06/dotproject-open-source-project-and-task/GeoURL ist wieder dahttps://www.rfc1437.de/2005/02/06/geourl-ist-wieder-da/Optimization Surpriseshttps://www.rfc1437.de/2005/02/06/optimization-surprises/Oralux: Linux für Blindehttps://www.rfc1437.de/2005/02/06/oralux-linux-fur-blinde/Spongebob promoted Schwulsein?https://www.rfc1437.de/2005/02/06/spongebob-promoted-schwulsein/Bloglines an Ask Jeeves verkaufthttps://www.rfc1437.de/2005/02/05/bloglines-an-ask-jeeves-verkauft/Bookmarklets und FireFoxhttps://www.rfc1437.de/2005/02/05/bookmarklets-und-firefox/Pentagon-"News"-Webseitenhttps://www.rfc1437.de/2005/02/05/pentagon-news-webseiten/Spammer in Vorbereitunghttps://www.rfc1437.de/2005/02/05/spammer-in-vorbereitung/Stoiber: Rot/Grün schuld am NPD-Erfolghttps://www.rfc1437.de/2005/02/05/stoiber-rotgrun-schuld-am-npd-erfolg/Tagging bei blogg.dehttps://www.rfc1437.de/2005/02/05/tagging-bei-bloggde/Und wieder mal Markenwahnsinnhttps://www.rfc1437.de/2005/02/05/und-wieder-mal-markenwahnsinn/US-Musikindustrie hat Verstorbene des Dateitauschs bezichtigthttps://www.rfc1437.de/2005/02/05/us-musikindustrie-hat-verstorbn-ds-dttschs-bzchtgt/Weiterer Todesfall in georgischer Regierunghttps://www.rfc1437.de/2005/02/05/weiterer-todesfall-in-georgischer-regierung/Bill Gates bekennt sich zur Interoperabilitäthttps://www.rfc1437.de/2005/02/04/bill-gates-bekennt-sich-zur-interoperabilitaet/Empörung über Deutsche Bankhttps://www.rfc1437.de/2005/02/04/emporung-uber-deutsche-bank/Kosmischer Streifschuss in 24 Jahrenhttps://www.rfc1437.de/2005/02/04/kosmischer-streifschuss-in-24-jahren/NZZ Online-Archiv nicht mehr frei verfügbarhttps://www.rfc1437.de/2005/02/04/nzz-online-archiv-nicht-mehr-frei-verfuegbar/Trackback Thinkinghttps://www.rfc1437.de/2005/02/04/trackback-thinking/unzureichende Zahl von Sunniten getötethttps://www.rfc1437.de/2005/02/04/unzureichende-zahl-von-sunniten-getoetet/Erster Fallout von rel="nofollow"https://www.rfc1437.de/2005/02/03/erster-fallout-von-relnofollow/fallback-reboothttps://www.rfc1437.de/2005/02/03/fallback-reboot/Gigablasthttps://www.rfc1437.de/2005/02/03/gigablast/Plötzlich und unerwartet: 25 Minuten mit Bushhttps://www.rfc1437.de/2005/02/03/ploetzlich-und-unerwartet-25-minuten-mit-bush/Softwarepatentrichtlinie: EU-Parlament verlangt Neustart des Verfahrenshttps://www.rfc1437.de/2005/02/03/softwarepatentrichtlinie-eu-parlament-verlangt/Vereinsnamen verpfänden?https://www.rfc1437.de/2005/02/03/vereinsnamen-verpfanden/Voll bekloppt: der Sherry-Einlaufhttps://www.rfc1437.de/2005/02/03/voll-bekloppt-der-sherry-einlauf/Zope.org - FileStorageBackuphttps://www.rfc1437.de/2005/02/03/zope-org-filestoragebackup/AOL aims to secure surfing with new Netscape browserhttps://www.rfc1437.de/2005/02/02/aol-aims-to-secure-surfing-with-new-netscape-brwsr/Mannesmann Prozess: Der Freispruch muss reichenhttps://www.rfc1437.de/2005/02/02/mannesmann-prozess-der-freispruch-muss-reichen/Microsoft: Fehler in Buffer-Overflow-Schutz ist keine Schwachstellehttps://www.rfc1437.de/2005/02/02/microsoft-fehler-in-buffer-overflow-schutz-ist/Nur ein Test für Anführungszeichenhttps://www.rfc1437.de/2005/02/02/nur-ein-test-fur-anfuhrungszeichen/Scharping als BDR-Präsident bewirbthttps://www.rfc1437.de/2005/02/02/scharping-als-bdr-praesident-bewirbt/schnelle kleine Webserverhttps://www.rfc1437.de/2005/02/02/schnelle-kleine-webserver/Seltsame Business-Ideen bei Providernhttps://www.rfc1437.de/2005/02/02/seltsame-business-ideen-bei-providern/Auch Affen zahlen für schöne Frauenhttps://www.rfc1437.de/2005/02/01/auch-affen-zahlen-fuer-schoene-frauen/Die Allmachtsphantastereien der Innenmisterhttps://www.rfc1437.de/2005/02/01/die-allmachtsphantastereien-der-innenmister/eAcceleratorhttps://www.rfc1437.de/2005/02/01/eaccelerator/Esser will 200.000 Euro von NRWhttps://www.rfc1437.de/2005/02/01/esser-will-200-000-euro-von-nrw/Gizmodo : Epson HX-20 Portable Computerhttps://www.rfc1437.de/2005/02/01/gizmodo-epson-hx-20-portable-computer/Heise.de wegen DDOS untenhttps://www.rfc1437.de/2005/02/01/heisede-wegen-ddos-unten/Huch? Mediazahlen im Januar ...https://www.rfc1437.de/2005/02/01/huch-mediazahlen-im-januar/IBM zieht Intel in den SCO-Fall mit reinhttps://www.rfc1437.de/2005/02/01/ibm-zieht-intel-in-den-sco-fall-mit-rein/Kanther droht Strafehttps://www.rfc1437.de/2005/02/01/kanther-droht-strafe/Kostenlose Rechtsberatung für Open-Source-Entwicklerhttps://www.rfc1437.de/2005/02/01/kostenlose-rechtsberatung-fuer-open-source/Microsoft und Macrovision wollen die "analoge Lücke" schließenhttps://www.rfc1437.de/2005/02/01/microsoft-und-macrovision-wollen-die-analoge/Nuclear Elephant: DSPAMhttps://www.rfc1437.de/2005/02/01/nuclear-elephant-dspam/Schneier on Securityhttps://www.rfc1437.de/2005/02/01/schneier-on-security/Solaris 10 steht ab sofort kostenlos zum Download bereithttps://www.rfc1437.de/2005/02/01/solaris-10-steht-ab-sofort-kostenlos-zum-download/Weg mit Trackbackhttps://www.rfc1437.de/2005/02/01/weg-mit-trackback/Interview with a link spammer | The Registerhttps://www.rfc1437.de/2005/01/31/interview-with-a-link-spammer-the-register/IT Manager's Journal | Bitter struggle to control SCO Group parent companyhttps://www.rfc1437.de/2005/01/31/it-manager-s-journal-bitter-struggle-to-control/law blog » GELD ZURÜCK VON JAMBA & CO.https://www.rfc1437.de/2005/01/31/law-blog-geld-zurueck-von-jamba-co/Orange Data Mininghttps://www.rfc1437.de/2005/01/31/orange-data-mining/phil ringnalda dot com: How do you stand it?https://www.rfc1437.de/2005/01/31/phil-ringnalda-dot-com-how-do-you-stand-it/Reihe kleiner netter Freewaretoolshttps://www.rfc1437.de/2005/01/31/reihe-kleiner-netter-freewaretools/SSH auf dem Handyhttps://www.rfc1437.de/2005/01/31/ssh-auf-dem-handy/US-Gericht: Guantanamo-Tribunale sind unrechtmäßig | tagesschau.dehttps://www.rfc1437.de/2005/01/31/us-gericht-guantanamo-tribunale-sind/WordPress Related Entries pluginhttps://www.rfc1437.de/2005/01/31/wordpress-related-entries-plugin/Bill Gates will das Internet sicherer machenhttps://www.rfc1437.de/2005/01/29/bill-gates-will-das-internet-sicherer-machen/Camera Bellows and Hoodshttps://www.rfc1437.de/2005/01/29/camera-bellows-and-hoods/Camera Bellows Restoration Trickhttps://www.rfc1437.de/2005/01/29/camera-bellows-restoration-trick/darcs - Distributed Versioninghttps://www.rfc1437.de/2005/01/29/darcs-distributed-versioning/Reprinted Repair Manualshttps://www.rfc1437.de/2005/01/29/reprinted-repair-manuals/Schüler muss wegen Computerwurms für anderthalb Jahre ins Gefängnishttps://www.rfc1437.de/2005/01/29/schueler-muss-wegen-computerwurms-fuer-anderthalb/8 Stück Winterhttps://www.rfc1437.de/2005/01/28/8-stuck-winter/8 Stück Winter - 2https://www.rfc1437.de/2005/01/28/8-stuck-winter-2/8 Stück Winter - 3https://www.rfc1437.de/2005/01/28/8-stuck-winter-3/8 Stück Winter - 4https://www.rfc1437.de/2005/01/28/8-stuck-winter-4/8 Stück Winter - 5https://www.rfc1437.de/2005/01/28/8-stuck-winter-5/8 Stück Winter - 6https://www.rfc1437.de/2005/01/28/8-stuck-winter-6/8 Stück Winter - 7https://www.rfc1437.de/2005/01/28/8-stuck-winter-7/8 Stück Winter - 8https://www.rfc1437.de/2005/01/28/8-stuck-winter-8/8 Stück Winter - 1https://www.rfc1437.de/2005/01/28/8-stuck-winter-9/"Bild" verletzt Menschenwürdehttps://www.rfc1437.de/2005/01/28/bild-verletzt-menschenwurde/fjf's (Cocoa) AbiWord for Mac (MacOSX)https://www.rfc1437.de/2005/01/28/fjf-s-cocoa-abiword-for-mac-macosx/Musikindustrie mahnt heise online wegen Bericht über Kopiersoftware abhttps://www.rfc1437.de/2005/01/28/musikindustrie-mhnt-hs-nln-wgn-brcht-br-kprsftwr-b/Tempus Fugit TxFx.net WordPress Hack: Notify Users of Moderationhttps://www.rfc1437.de/2005/01/28/tempus-fugit-txfx-net-wordpress-hack-notify-users/Blöder Spambot am Werkehttps://www.rfc1437.de/2005/01/27/bloder-spambot-am-werke/DNA-Analyse im Bundestaghttps://www.rfc1437.de/2005/01/27/dna-analyse-im-bundestag/Using the .Mac SDKhttps://www.rfc1437.de/2005/01/27/using-the-mac-sdk/Copyscape - Website Plagiarism Search - Web Site Content Copyright Protectionhttps://www.rfc1437.de/2005/01/26/copyscape-website-plagiarism-search-web-site/Keinen direkten Zugriff auf Newsgroups mehr bei AOLhttps://www.rfc1437.de/2005/01/26/keinen-direkten-zugriff-auf-newsgroups-mehr-bei/Rechtsausschuss des Bundestags stimmt gegen Softwarepatentehttps://www.rfc1437.de/2005/01/26/rechtsausschuss-des-bundestags-stmmt-ggn-sftwrptnt/SCO vs. Linux: SCO findet IBMs Code-Forderungen unzumutbarhttps://www.rfc1437.de/2005/01/26/sco-vs-linux-sco-findet-ibms-code-forderngn-nzmtbr/Verfassungsgericht hebt Verbot für Studiengebühren aufhttps://www.rfc1437.de/2005/01/26/verfassungsgericht-hebt-verbot-fur-studiengebhrn-f/WP-Questionnaire Pluginhttps://www.rfc1437.de/2005/01/26/wp-questionnaire-plugin/Zitate von Karl Valentin in Vorlesungsskripten unter Auflagen erlaubthttps://www.rfc1437.de/2005/01/26/zitate-von-karl-valentin-in-vorlesungsskripten/Aus meinen Suchmaschinenreferrernhttps://www.rfc1437.de/2005/01/25/aus-meinen-suchmaschinenreferrern/Die Abzockhilfe der Politik für die Stromerzeugerhttps://www.rfc1437.de/2005/01/25/die-abzockhilfe-der-politik-fur-die-stromerzeuger/Ein Plätzchen im Grünen?https://www.rfc1437.de/2005/01/25/ein-platzchen-im-grunen/Einstand als CDU-General - und durchgefallenhttps://www.rfc1437.de/2005/01/25/einstand-als-cdu-general-und-durchgefallen/Eric''s Archived Thoughts: WP-Gatekeeperhttps://www.rfc1437.de/2005/01/25/erics-archived-thoughts-wp-gatekeeper/FDP-Vorstellung zur Bildungspolitikhttps://www.rfc1437.de/2005/01/25/fdp-vorstellung-zur-bildungspolitik/freshmeat.net: Project details for JRubyhttps://www.rfc1437.de/2005/01/25/freshmeat-net-project-details-for-jruby/heute.de - Die ungleichen Brüderhttps://www.rfc1437.de/2005/01/25/heute-de-die-ungleichen-brueder/Internet Explorer nach Patch immer noch verwundbarhttps://www.rfc1437.de/2005/01/25/internet-explorer-nach-patch-immer-noch-verwundbar/Introducing JSONhttps://www.rfc1437.de/2005/01/25/introducing-json/JSch for J2MEhttps://www.rfc1437.de/2005/01/25/jsch-for-j2me/.: json-rpc.org :.https://www.rfc1437.de/2005/01/25/json-rpc-org/Junge Union lädt Ex-CDU-Politiker Hohmann einhttps://www.rfc1437.de/2005/01/25/junge-union-ladt-ex-cdu-politiker-hohmann-ein/Klingelton-Hitparade ab Aprilhttps://www.rfc1437.de/2005/01/25/klingelton-hitparade-ab-april/MIDI Bagpipe Rounduphttps://www.rfc1437.de/2005/01/25/midi-bagpipe-roundup/mit dem Link-Kondomhttps://www.rfc1437.de/2005/01/25/mit-dem-link-kondom/ModSecurity - Web Intrusion Detection And Prevention / mod_securityhttps://www.rfc1437.de/2005/01/25/modsecurity-web-intrusion-detection-and/MT-Blacklist -> Hijacked comments.cgihttps://www.rfc1437.de/2005/01/25/mt-blacklist-hijacked-commentscgi/Wühlmaus-Monogamiehttps://www.rfc1437.de/2005/01/25/wuhlmaus-monogamie/Asymptomatic » New “Secret” Projecthttps://www.rfc1437.de/2005/01/24/asymptomatic-new-secret-project/DNA-Debatte: Müntefering stellt sich hinter Schilyhttps://www.rfc1437.de/2005/01/24/dna-debatte-muntefering-stellt-sich-hinter-schily/Erste Winterbilderhttps://www.rfc1437.de/2005/01/24/erste-winterbilder/Erste Winterbilder - 2https://www.rfc1437.de/2005/01/24/erste-winterbilder-2/Erste Winterbilder - 1https://www.rfc1437.de/2005/01/24/erste-winterbilder-3/IT&W rekonstruiert Mac-Videohttps://www.rfc1437.de/2005/01/24/itw-rekonstruiert-mac-video/RSS 1.1 und Postals Lawhttps://www.rfc1437.de/2005/01/24/rss-11-und-postals-law/Staatsanwaltschaft wird nicht gegen NPD ermittelnhttps://www.rfc1437.de/2005/01/24/staatsanwaltschaft-wird-nicht-gegen-npd-ermitteln/Thinking Forthhttps://www.rfc1437.de/2005/01/24/thinking-forth/Audioscrobbler :: Development - Last.fm Streaming APIhttps://www.rfc1437.de/2005/01/23/audioscrobbler-development-last-fm-streaming-api/Build me money making website pleasehttps://www.rfc1437.de/2005/01/23/build-me-money-making-website-please/Python Beispiel in Frontierhttps://www.rfc1437.de/2005/01/23/python-beispiel-in-frontier/die NPD-Tiraden in Sachsenhttps://www.rfc1437.de/2005/01/22/die-npd-tiraden-in-sachsen/heise online - Hohe Geldstrafe für Studentenvertretung wegen Hyperlinkshttps://www.rfc1437.de/2005/01/22/heise-nln-hh-gldstrf-fr-stdntnvrtrtng-wgn-hyprlnks/Subwayhttps://www.rfc1437.de/2005/01/22/subway/WordPress und rel="nofollow"https://www.rfc1437.de/2005/01/22/wordpress-und-relnofollow/Die ct und das trojanische Pferdhttps://www.rfc1437.de/2005/01/21/die-ct-und-das-trojanische-pferd/MDR.DE: NPD verweigert NS- und Kriegsopfern Gedenkminutehttps://www.rfc1437.de/2005/01/21/mdrde-npd-verweigert-ns-und-kriegsopfern-gedenkmnt/Microsoft entlässt Windows-Testerhttps://www.rfc1437.de/2005/01/21/microsoft-entlaesst-windows-tester/nofollow no dohttps://www.rfc1437.de/2005/01/21/nofollow-no-do/Red Alt - WordPress Index Builderhttps://www.rfc1437.de/2005/01/21/red-alt-wordpress-index-builder/Struck will Milliarden für Rüstungsprojekte ausgebenhttps://www.rfc1437.de/2005/01/21/struck-will-milliarden-fuer-ruestungsprojekte/Virtualisierung für Desktop-Prozessorenhttps://www.rfc1437.de/2005/01/21/virtualisierung-fuer-desktop-prozessoren/Weil Gier ist Geil ...https://www.rfc1437.de/2005/01/21/weil-gier-ist-geil/WordPress : Tackling Comment Spamhttps://www.rfc1437.de/2005/01/21/wordpress-tackling-comment-spam/Der Papst und die Gummitütchenhttps://www.rfc1437.de/2005/01/20/der-papst-und-die-gummitutchen/heise online - EU-Rat will weiteren Anlauf bei Softwarepatenten wagenhttps://www.rfc1437.de/2005/01/20/heise-online-eu-rat-will-wtrn-nlf-b-sftwrptntn-wgn/Menschenverachtende Idee des Tageshttps://www.rfc1437.de/2005/01/20/menschenverachtende-idee-des-tages/Outlook zusammen mit Hotmail-Zugang zur Mietehttps://www.rfc1437.de/2005/01/20/outlook-zusammen-mit-hotmail-zugang-zur-miete/SCO vs. Linux: SCO bekommt weiteres Materialhttps://www.rfc1437.de/2005/01/20/sco-vs-linux-sco-bekommt-weiteres-material/Seltsame Haltung von Planetopiahttps://www.rfc1437.de/2005/01/20/seltsame-haltung-von-planetopia/Staatsakt für die Flutopfer im Bundestaghttps://www.rfc1437.de/2005/01/20/staatsakt-fuer-die-flutopfer-im-bundestag/Versicherungen wollen Einblick in Gentestergebnissehttps://www.rfc1437.de/2005/01/20/versicherungen-wollen-einblick-in-gentestergebniss/Beitrag 4000https://www.rfc1437.de/2005/01/19/beitrag-4000/bigempty.comhttps://www.rfc1437.de/2005/01/19/bigempty-com/Bundesgrenzschutz heißt bald Bundespolizeihttps://www.rfc1437.de/2005/01/19/bundesgrenzschutz-heisst-bald-bundespolizei/Fotos folternder Soldaten im Irak schockieren die Britenhttps://www.rfc1437.de/2005/01/19/fotos-folternder-soldaten-im-irak-schockieren-die/Got New Spam Tactic Figuredhttps://www.rfc1437.de/2005/01/19/got-new-spam-tactic-figured/Offenbar härtere Strafen für Drängler geplanthttps://www.rfc1437.de/2005/01/19/offenbar-haertere-strafen-fuer-draengler-geplant/RSS 1.1: RDF Site Summary (DRAFT)https://www.rfc1437.de/2005/01/19/rss-11-rdf-site-summary-draft/Schwarzenegger lehnt Gnadengesuch abhttps://www.rfc1437.de/2005/01/19/schwarzenegger-lehnt-gnadengesuch-ab/Sicher und anonym im Internet mit Proxyshttps://www.rfc1437.de/2005/01/19/sicher-und-anonym-im-internet-mit-proxys/Subtraction: New, Improved Original Flavor!https://www.rfc1437.de/2005/01/19/subtraction-new-improved-original-flavor/WordPress NoFollow Pluginhttps://www.rfc1437.de/2005/01/19/wordpress-nofollow-plugin/Zope Hosting and Performance - English Versionhttps://www.rfc1437.de/2005/01/19/zope-hosting-and-performance-english-version/DNA-Analysen: Bayern startet Bundesratsinitiativehttps://www.rfc1437.de/2005/01/18/dna-analysen-bayern-startet-bundesratsinitiative/Grafediahttps://www.rfc1437.de/2005/01/18/grafedia/LynuxWorks Introduces First User-Mode Linux Software for Apple PowerPC G5 Based on the Linux 2.6 Kernelhttps://www.rfc1437.de/2005/01/18/lynuxworks-introduces-first-user-mode-linux/MathWorld News: The Mathematics of Tsunamishttps://www.rfc1437.de/2005/01/18/mathworld-news-the-mathematics-of-tsunamis/Organizer Overloadhttps://www.rfc1437.de/2005/01/18/organizer-overload/QuickSilver: Act Without Doinghttps://www.rfc1437.de/2005/01/18/quicksilver-act-without-doing/Save Think Secret's Nicholas Ciarelli Petitionhttps://www.rfc1437.de/2005/01/18/save-think-secrets-nicholas-ciarelli-petition/The Temboz RSS aggregatorhttps://www.rfc1437.de/2005/01/18/the-temboz-rss-aggregator/Tötet Schnappihttps://www.rfc1437.de/2005/01/18/totet-schnappi/Working with Automatorhttps://www.rfc1437.de/2005/01/18/working-with-automator/Zope Hosting und Performancehttps://www.rfc1437.de/2005/01/18/zope-hosting-und-performance/Zyklische Dependencieshttps://www.rfc1437.de/2005/01/18/zyklische-dependencies/D Programming Languagehttps://www.rfc1437.de/2005/01/17/d-programming-language/E-Mails dürfen nicht gefiltert werdenhttps://www.rfc1437.de/2005/01/17/e-mails-durfen-nicht-gefiltert-werden/ein Code39 Barcode Generatorhttps://www.rfc1437.de/2005/01/17/ein-code39-barcode-generator/Entwicklung der Aqua-Variante von OpenOffice für Macintosh eingestellthttps://www.rfc1437.de/2005/01/17/entwicklung-der-aqua-variante-von-openoffice-fuer/Das Unwort 2004https://www.rfc1437.de/2005/01/17/ihr-unwort-2004/Nach Fahndungserfolg im Fall Moshammer: Ruf nach Ausweitung der DNA-Analyse - wdr.de - Panoramahttps://www.rfc1437.de/2005/01/17/nach-fahndungserfolg-im-fall-moshammer-ruf-nach/Planteopia - Wissenverbiegungsmagazinhttps://www.rfc1437.de/2005/01/17/planteopia-wissenverbiegungsmagazin/ChapterZero » IllustRenderhttps://www.rfc1437.de/2005/01/16/chapterzero-illustrender/Clark Dalton gestorben?https://www.rfc1437.de/2005/01/16/das-weblog-von-textlab/Kallisys | Newton | Einstein Projecthttps://www.rfc1437.de/2005/01/16/kallisys-newton-einstein-project/Loch gegen Raab: Konto gesperrt, Gerichtsvollzieher bestellthttps://www.rfc1437.de/2005/01/16/loch-gegen-raab-konto-gesperrt-gerichtsvollzieher/Longhandhttps://www.rfc1437.de/2005/01/16/longhand/MonkeyTyping - The PEAK Developers' Centerhttps://www.rfc1437.de/2005/01/16/monkeytyping-the-peak-developers-center/TextWrangler jetzt frei wie Freibierhttps://www.rfc1437.de/2005/01/16/textwrangler-jetzt-frei-wie-freibier/Using LaTeX in WordPress » LatexRender as a pluginhttps://www.rfc1437.de/2005/01/16/using-latex-in-wordpress-latexrender-as-a-plugin/Die Achse der Frommen: Lebt denn d''r alte Darwin noch?https://www.rfc1437.de/2005/01/15/die-achse-der-frommen-lebt-denn-dr-alte-darwin-nch/heise online - Huygens Countdown: The day afterhttps://www.rfc1437.de/2005/01/15/heise-online-huygens-countdown-the-day-after/Martin Schwimmer vom Trademark Blog Bloglineshttps://www.rfc1437.de/2005/01/15/martin-schwimmer-vom-trademark-blog-bloglines/Morganically Grown » MiniPosts Plugin for WordPresshttps://www.rfc1437.de/2005/01/15/morganically-grown-miniposts-plugin-for-wordpress/no status quo » RunPHP WordPress Pluginhttps://www.rfc1437.de/2005/01/15/no-status-quo-runphp-wordpress-plugin/PHP Markdownhttps://www.rfc1437.de/2005/01/15/php-markdown/argh!https://www.rfc1437.de/2005/01/14/argh/Blogs - die neue Geldmaschine?https://www.rfc1437.de/2005/01/14/blugs-d-ie-neue-geldmaschine/DNS Stuff: DNS tools, WHOIS, tracert, ping, and other network tools.https://www.rfc1437.de/2005/01/14/dns-stuff-dns-tools-whs-trcrt-png-nd-thr-ntwrk-tls/ESA - Cassini-Huygens - First image from Titanhttps://www.rfc1437.de/2005/01/14/esa-cassini-huygens-first-image-from-titan/FBI versenkt 170 Mio Dollar Software Projekthttps://www.rfc1437.de/2005/01/14/fbi-versenkt-170-mio-dollar-software-projekt/Gericht stoppt Anzeigenkampagne von Krebsarzt Rathhttps://www.rfc1437.de/2005/01/14/gericht-stoppt-anzeigenkampagne-von-krebsarzt-rath/Google bekommt Patent auf Suchbegriffhervorhebunghttps://www.rfc1437.de/2005/01/14/google-bekommt-patent-auf-suchbegriffhervorhebung/heise online - Huygens-Countdown +8h: Doch ein paar Wermutstropfenhttps://www.rfc1437.de/2005/01/14/heise-online-huygens-countdown-8h-doch-ein-paar/heise online - Neue Zürcher Zeitung digitalisiert alle Jahrgänge seit 1780https://www.rfc1437.de/2005/01/14/heise-online-neue-zuercher-zeitung-digitalisiert/Mordermittlungen: Modemacher Moshammer ist tot | tagesschau.dehttps://www.rfc1437.de/2005/01/14/mordermittlungen-modemacher-moshammer-ist-tot/PECL :: Package :: APChttps://www.rfc1437.de/2005/01/14/pecl-package-apc/Raumsonde «Huygens» sendet Datenhttps://www.rfc1437.de/2005/01/14/raumsonde-huygens-sendet-daten/Suchbegriffs Zeitgeist ist wieder dahttps://www.rfc1437.de/2005/01/14/suchbegriffs-zeitgeist-ist-wieder-da/SURBL -- Spam URI Realtime Blocklistshttps://www.rfc1437.de/2005/01/14/surbl-spam-uri-realtime-blocklists/VW-Zahlungen: Bundestagsabgeordneter tritt zurückhttps://www.rfc1437.de/2005/01/14/vw-zahlungen-bundestagsabgeordneter-tritt-zuruck/Caching für PHP Systemehttps://www.rfc1437.de/2005/01/13/caching-fur-php-systeme/Vesper gegen Ausbau von FMOhttps://www.rfc1437.de/2005/01/13/vesper-gegen-ausb-vn-flghfn-mnstrsnbrck-wdrd-vrkhr/Apple - iLifehttps://www.rfc1437.de/2005/01/12/apple-ilife/böse heimliche Vaterschaftstestshttps://www.rfc1437.de/2005/01/12/ba-bose-heimliche-vaterschaftstests/das er auch nichts von heimlichen Vaterschaftstests hälthttps://www.rfc1437.de/2005/01/12/das-er-auch-nichts-von-heimlichen/Geheime VW-Richtlinie für Zahlungen an Politiker?https://www.rfc1437.de/2005/01/12/geheime-vw-richtlinie-fur-zahlungen-an-politiker/Glossary für WordPresshttps://www.rfc1437.de/2005/01/12/glossary-fur-wordpress/heise Security - News - Aufgedeckt und angeklagthttps://www.rfc1437.de/2005/01/12/heise-security-news-aufgedeckt-und-angeklagt/Kommentarspamhttps://www.rfc1437.de/2005/01/12/kommentarspam/Noch ein sinnvolles Urteilhttps://www.rfc1437.de/2005/01/12/noch-ein-sinnvolles-urteil/Rund und gesund: Jan Ullrich auf Mallorcahttps://www.rfc1437.de/2005/01/12/rund-und-gesund-jan-ullrich-auf-mallorca/Second p0st: cElementTreehttps://www.rfc1437.de/2005/01/12/second-p0st-celementtree/symbolics.com ist die älteste noch registrierte Domainhttps://www.rfc1437.de/2005/01/12/symbolics-com-ist-die-aelteste-noch-registrierte/Und mal wieder Handy-Krampfhttps://www.rfc1437.de/2005/01/12/und-mal-wieder-handy-krampf/Wired News: Verizon''s E-Mail Embargo Enrageshttps://www.rfc1437.de/2005/01/12/wired-news-verizons-e-mail-embargo-enrages/Andere Apple-Neuigkeitenhttps://www.rfc1437.de/2005/01/11/andere-apple-neuigkeiten/Apple - Mac minihttps://www.rfc1437.de/2005/01/11/apple-mac-mini/dirtSimple.org: CLOS-style Method Combination for Generic Functionshttps://www.rfc1437.de/2005/01/11/dirtsimpleorg-clos-styl-mthd-cmbntn-fr-gnrc-fnctns/IBM on Software Patentshttps://www.rfc1437.de/2005/01/11/ibm-on-software-patents/Creative Communistshttps://www.rfc1437.de/2005/01/10/creative-communists/Friendly Fuedalism - The Tibet Mythhttps://www.rfc1437.de/2005/01/10/friendly-fuedalism-the-tibet-myth/Liste von Domainregistries für verschiedene Topleveldomainshttps://www.rfc1437.de/2005/01/10/liste-von-domainregistries-fuer-verschiedene/Mile-high Konto [zeitwissen:log]https://www.rfc1437.de/2005/01/10/mile-high-konto-zeitwissenlog/:: t e k t o n i c a ::https://www.rfc1437.de/2005/01/10/t-e-k-t-o-n-i-c-a-2/Canned !! -- my Atropine » iG:Syntax Hiliterhttps://www.rfc1437.de/2005/01/09/canned-my-atropine-ig-syntax-hiliter/. clare fader & the vaudevillains . cabaret for the 21st century .https://www.rfc1437.de/2005/01/09/clare-fader-the-vaudevillans-cbrt-fr-th-21st-cntry/doom3.jpg (JPEG Image, 800x600 pixels)https://www.rfc1437.de/2005/01/09/doom3jpg-jpeg-image-800x600-pixels/GeSHi - Generic Syntax Highlighter :: Homehttps://www.rfc1437.de/2005/01/09/geshi-generic-syntax-highlighter-home/hobix&you!! feel yeah!!https://www.rfc1437.de/2005/01/09/hobixyou-feel-yeah/kasia in a nutshell: Spam breeds more spamhttps://www.rfc1437.de/2005/01/09/kasia-in-a-nutshell-spam-breeds-more-spam/Linux: Tuning The Kernel With A Genetic Algorithmhttps://www.rfc1437.de/2005/01/09/linux-tuning-the-kernel-with-a-genetic-algorithm/N Korea wages war on long hairhttps://www.rfc1437.de/2005/01/09/n-korea-wages-war-on-long-hair/sYp » Syntax Highlighting with Enscript in WordPresshttps://www.rfc1437.de/2005/01/09/syp-syntax-highlighting-with-enscript-in-wordpress/Test für das Syntax-Highlightinghttps://www.rfc1437.de/2005/01/09/test-fur-das-syntax-highlighting/Validierung von Wordpress Postings und Kommentarehttps://www.rfc1437.de/2005/01/09/validierung-von-wordpress-postings-und-kommentare/Wonkohttps://www.rfc1437.de/2005/01/09/wonko/Clement rechnet mit 20 Prozent weniger Arbeitslosenhttps://www.rfc1437.de/2005/01/08/clement-rechnet-mit-20-prozent-weniger-arbeitslosn/Plugins/Staticize « WordPress Codexhttps://www.rfc1437.de/2005/01/08/plugins-staticize-wordpress-codex/Steves Digicams - Konica Minolta MAXXUM 7D - User Reviewhttps://www.rfc1437.de/2005/01/08/steves-digicams-konica-minolta-maxxum-7d-user-revw/Was ist denn hier passiert?https://www.rfc1437.de/2005/01/08/was-ist-denn-hier-passiert/Grüne gegen Verbot heimlicher Vaterschaftstestshttps://www.rfc1437.de/2005/01/07/gruene-gegen-verbot-heimlicher-vaterschaftstests/Heftige Kritik an Meisners Vergleichhttps://www.rfc1437.de/2005/01/07/heftige-kritik-an-meisners-vergleich/Optional Static Typing -- Stop the Flames!https://www.rfc1437.de/2005/01/07/optional-static-typing-stop-the-flames/Probleme mit Firefox und Thunderbird auf OS X 10.2https://www.rfc1437.de/2005/01/07/probleme-mit-firefox-und-thunderbird-auf-os-x-102/QEMU CPU Emulatorhttps://www.rfc1437.de/2005/01/07/qemu-cpu-emulator/RBL Prüfungsseiten für viele RBLs auf einmalhttps://www.rfc1437.de/2005/01/07/rbl-pruefungsseiten-fuer-viele-rbls-auf-einmal/The Implementation of Functional Programming Languageshttps://www.rfc1437.de/2005/01/07/the-implementation-of-functional-programming-lnggs/Flying Meat: VoodooPadhttps://www.rfc1437.de/2005/01/06/flying-meat-voodoopad/Gaspreise steigen wohl noch weiterhttps://www.rfc1437.de/2005/01/06/gaspreise-steigen-wohl-noch-weiter/Kayak mit Walhttps://www.rfc1437.de/2005/01/06/kayak-mit-wal/KODAK EASYSHARE-ONE Zoom Digital Camerahttps://www.rfc1437.de/2005/01/06/kodak-easyshare-one-zoom-digital-camera/NPD-Funktionäre bei Gewalttaten gefilmthttps://www.rfc1437.de/2005/01/06/npd-funktionaere-bei-gewalttaten-gefilmt/Staatsanwalt: Dominik starb an Krebshttps://www.rfc1437.de/2005/01/06/staatsanwalt-dominik-starb-an-krebs/First Animation of the World Found In Burnt Cityhttps://www.rfc1437.de/2005/01/05/first-animation-of-the-world-found-in-burnt-city/LXer: RANT_MODE=1: Current generation shells -- Will Microsoft Ever Fill The Needs of the Enter ...https://www.rfc1437.de/2005/01/05/lxr-rnt-md1-crrnt-gnrtn-shlls-wll-mcrsft-vr-fll-th/Modal Web Server Example Part 1https://www.rfc1437.de/2005/01/05/modal-web-server-example-part-1/Shutting Down the GPS Networkhttps://www.rfc1437.de/2005/01/05/shutting-down-the-gps-network/Ukraine: Janukowitsch klagt erneut gegen Wahlergebnishttps://www.rfc1437.de/2005/01/05/ukraine-janukowitsch-klagt-erneut-gegen-wahlergbns/Aquariumhttps://www.rfc1437.de/2005/01/04/aquarium/Borges Homehttps://www.rfc1437.de/2005/01/04/borges-home/BottomFeeder - Cross-platform RSS/Atom News Aggregatorhttps://www.rfc1437.de/2005/01/04/bottomfeeder-cross-platform-rss-atom-news/Continuations mit Pythonhttps://www.rfc1437.de/2005/01/04/continuations-mit-python/Glorp.orghttps://www.rfc1437.de/2005/01/04/glorp-org/smart stuffhttps://www.rfc1437.de/2005/01/04/smart-stuff/appscripthttps://www.rfc1437.de/2005/01/03/appscript-2/Corgis lassen Queen sanft fallenhttps://www.rfc1437.de/2005/01/03/corgis-lassen-queen-sanft-fallen/Easy-to-Remember PINshttps://www.rfc1437.de/2005/01/03/easy-to-remember-pins/Lebenslange Haft für Terrorverdächtige?https://www.rfc1437.de/2005/01/03/lebenslange-haft-fuer-terrorverdaechtige/pikabellechu: Yes I am a PikaHolic and Proud of It...https://www.rfc1437.de/2005/01/03/pikabellechu-yes-i-am-a-pikaholic-and-proud-of-it/Sicherheitrisiken in 2005https://www.rfc1437.de/2005/01/03/sicherheitrisiken-in-2005/Springer hetzt (mal wieder)https://www.rfc1437.de/2005/01/03/springer-hetzt-mal-wieder/CincomSmalltalkWiki: Seaside Tutorialhttps://www.rfc1437.de/2005/01/02/cincomsmalltalkwiki-seaside-tutorial/Impostorhttps://www.rfc1437.de/2005/01/02/impostor/Lisa Appshttps://www.rfc1437.de/2005/01/02/lisa-apps/Lisa wird Zweiundzwanzighttps://www.rfc1437.de/2005/01/02/lisa-wird-zweiundzwanzig/Revision 8033: /user/arigo/greenlethttps://www.rfc1437.de/2005/01/02/revision-8033-user-arigo-greenlet/VisualWorks: StORE for PostgreSQL Documentationhttps://www.rfc1437.de/2005/01/02/visualworks-store-for-postgresql-documentation/PNGCRUSHhttps://www.rfc1437.de/2005/01/01/pngcrush/ASPN : Python Cookbook : A meta-class that provides class behavior like Rubyhttps://www.rfc1437.de/2004/12/31/aspn-python-cookbook-a-meta-class-that-provides/Gus Mueller's Websitehttps://www.rfc1437.de/2004/12/31/gus-mueller-s-website/recondite: You don''t tug on Superman''s cape...https://www.rfc1437.de/2004/12/31/recondite-you-don-t-tug-on-superman-s-cape/Ukraine: Janukowitsch gibt aufhttps://www.rfc1437.de/2004/12/31/ukraine-janukowitsch-gibt-auf/Wem gehört der Bundestag?https://www.rfc1437.de/2004/12/31/wem-gehoert-der-bundestag/Hartz IV: GAU bei der Arbeitslosengeld-II-Zahlung [Update]https://www.rfc1437.de/2004/12/30/hartz-iv-gau-bei-der-arbeitslosengeld-ii-zhlng-pdt/Hilfsmaßnahmen: Es droht Streit zwischen Uno und USAhttps://www.rfc1437.de/2004/12/30/hilfsmassnahmen-es-droht-streit-zwischen-uno-und-s/Seebeben verschob die Erdachsehttps://www.rfc1437.de/2004/12/30/seebeben-verschob-die-erdachse/Kyocera Discontinues Some 35mm Film Productshttps://www.rfc1437.de/2004/12/29/kyocera-discontinues-some-35mm-film-products/Logilab.org - Aspects documentationhttps://www.rfc1437.de/2004/12/28/logilab-org-aspects-documentation/TVO: The Vim Outlinerhttps://www.rfc1437.de/2004/12/28/tvo-the-vim-outliner/Alice - funktionale Sprache und Umgebunghttps://www.rfc1437.de/2004/12/27/alice-funktionale-sprache-und-umgebung/Codewalker für Pytonhttps://www.rfc1437.de/2004/12/27/codewalker-fuer-pyton/dirtSimple.org: More forward-chaining twistshttps://www.rfc1437.de/2004/12/27/dirtsimpleorg-more-forward-chaining-twists/Südasienhttps://www.rfc1437.de/2004/12/27/suedasien/The Graphing Calculator Storyhttps://www.rfc1437.de/2004/12/27/the-graphing-calculator-story/Xoltar Python Pagehttps://www.rfc1437.de/2004/12/27/xoltar-python-page-2/Python is a weakly typed language, which as any experienced Python programmer knows has both good and bad pointshttps://www.rfc1437.de/2004/12/26/python-is-a-weakly-typed-language-which-as-any/Seebeben tötet tausende Menschen in Südostasienhttps://www.rfc1437.de/2004/12/26/seebeben-toetet-tausende-menschen-in-suedostasien/Snurf: a Python-based Blogging Systemhttps://www.rfc1437.de/2004/12/26/snurf-a-python-based-blogging-system/Verzögerte Ausführung mit Pythonhttps://www.rfc1437.de/2004/12/26/story-verzoegerte-ausfuehrung-mit-python/Verzögerte Ausführung mit Pythonhttps://www.rfc1437.de/2004/12/26/verzoegerte-ausfuehrung-mit-python/Brian Mastenbrook: Forth pornhttps://www.rfc1437.de/2004/12/25/brian-mastenbrook-forth-porn/Erfolgreiche Trennung von Cassini und Huygenshttps://www.rfc1437.de/2004/12/25/erfolgreiche-trennung-von-cassini-und-huygens/Charming Python: Implementing "weightless threads" with Python generatorshttps://www.rfc1437.de/2004/12/24/charming-python-implementing-weightless-threads/Contracts for Pythonhttps://www.rfc1437.de/2004/12/24/contracts-for-python/Fotos erhärten Misshandlungen bei der Bundeswehrhttps://www.rfc1437.de/2004/12/24/fotos-erhaerten-misshandlungen-bei-der-bundeswehr/Microsoft attempts to patent object persistencehttps://www.rfc1437.de/2004/12/24/microsoft-attempts-to-patent-object-persistence/Adding Optional Static Typing to Pythonhttps://www.rfc1437.de/2004/12/23/adding-optional-static-typing-to-python/Asteroid in unmittelbarer Erdnähe entdeckthttps://www.rfc1437.de/2004/12/23/asteroid-in-unmittelbarer-erdnaehe-entdeckt/Der »Danke Polen!«-Briefhttps://www.rfc1437.de/2004/12/23/der-danke-polen-brief/eBay konnte Passwortklau nicht verhindernhttps://www.rfc1437.de/2004/12/23/ebay-konnte-passwortklau-nicht-verhindern/Siemens-Chef kündigt schmerzhafte Einschnitte in Kommunikationssparte anhttps://www.rfc1437.de/2004/12/23/simns-chf-kndgt-schmrzhft-nschntt-n-kmmnktnssprt-n/Why's (Poignant) Guide to Rubyhttps://www.rfc1437.de/2004/12/23/whys-poignant-guide-to-ruby/Alles neu für OS/2https://www.rfc1437.de/2004/12/22/alles-neu-fuer-os2/Bellhop 1.0.1b4https://www.rfc1437.de/2004/12/22/bellhop-101b4/Cadmium-Akkus künftig (teilweise) verbotenhttps://www.rfc1437.de/2004/12/22/cadmium-akkus-kuenftig-teilweise-verboten/Deutsche WordPress Communityhttps://www.rfc1437.de/2004/12/22/deutsche-wordpress-community/EFF & TORhttps://www.rfc1437.de/2004/12/22/eff-tor/EU-Gerichtspräsident bestätigt Sanktionen gegen Microsoft [Update]https://www.rfc1437.de/2004/12/22/eu-gerichtspraesident-bsttgt-snktnn-ggn-mcrsft-pdt/IRC, identd und Privacyhttps://www.rfc1437.de/2004/12/22/irc-identd-und-privacy/Kartellamt leitet Untersuchung gegen Gasversorger einhttps://www.rfc1437.de/2004/12/22/kartellamt-leitet-untersuchung-gegen-gasversorgr-n/Kein Ende bei Kopierschutz-Abmahnwelle in Sichthttps://www.rfc1437.de/2004/12/22/kein-ende-bei-kopierschutz-abmahnwelle-in-sicht/Larry Hagman über ein hysterisches Landhttps://www.rfc1437.de/2004/12/22/larry-hagman-ueber-ein-hysterisches-land/Laurenz Meyer tritt zurückhttps://www.rfc1437.de/2004/12/22/laurenz-meyer-tritt-zurueck/NeolithicOffice/J: OpenOffice deriavative for OS Xhttps://www.rfc1437.de/2004/12/22/neolithicofficej-openoffice-deriavative-for-os-x/Paolo Amoroso: McCLIM works with CLISPhttps://www.rfc1437.de/2004/12/22/paolo-amoroso-mcclim-works-with-clisp/Pornobilder auf Polizeicomputernhttps://www.rfc1437.de/2004/12/22/pornobilder-auf-polizeicomputern/SCO vs. Linux: Die Achterbahn ist ein schlechtes Geschäfthttps://www.rfc1437.de/2004/12/22/sco-vs-linux-die-achterbahn-ist-en-schlchts-gschft/Ann: Revival of the BytecodeHackshttps://www.rfc1437.de/2004/12/21/ann-revival-of-the-bytecodehacks/...raus aus den Kartoffeln: Softwarepatente vertagthttps://www.rfc1437.de/2004/12/21/raus-aus-den-kartoffeln-softwarepatente-vertagt/Enzensberger stellt seine "Andere Bibliothek" einhttps://www.rfc1437.de/2004/12/20/enzensberger-stellt-seine-andere-bibliothek-ein/LG Hamburg: Top Level Domain .at ohne Bezug zu Österreichhttps://www.rfc1437.de/2004/12/20/lg-hamburg-top-level-domain-at-ohne-bezug-z-strrch/SnakeSQL -- Pure Python SQL database supporting NULLs and Joinshttps://www.rfc1437.de/2004/12/20/snakesql-pure-python-sql-datbs-spprtng-nlls-nd-jns/Brian Mastenbrook: Old Newshttps://www.rfc1437.de/2004/12/19/brian-mastenbrook-old-news/No Software Patentshttps://www.rfc1437.de/2004/12/19/no-software-patents/ReportLab - PyRXPhttps://www.rfc1437.de/2004/12/19/reportlab-pyrxp/GNU Development Tools for the Renesas H8/300[HS] Serieshttps://www.rfc1437.de/2004/12/18/gnu-development-tools-for-the-renesas-h8-300-hs/Lego-Mindstorms Simulatorhttps://www.rfc1437.de/2004/12/18/lego-mindstorms-simulator/Noch ein Update: wie man rcxcomm auch mit OS X 10.2 zum Laufen kriegthttps://www.rfc1437.de/2004/12/18/noch-ein-pdt-w-mn-rcxcmm-ch-mt-s-x-102-zm-lfn-krgt/The leJOS Tutorialhttps://www.rfc1437.de/2004/12/18/the-lejos-tutorial/Update zur Mindstorms-System-Übersichthttps://www.rfc1437.de/2004/12/18/update-zur-mindstorms-system-uebersicht/XS: Lisp on Lego MindStormshttps://www.rfc1437.de/2004/12/18/xs-lisp-on-lego-mindstorms/Spitzenjuristen unter Meineidsverdachthttps://www.rfc1437.de/2004/12/17/spitzenjuristen-unter-meineidsverdacht/Datenschützer: Sicherheitslücken bei Steuersoftwarehttps://www.rfc1437.de/2004/12/16/datenschuetzer-sicherheitsluecken-bei-steuersoftwr/Deutsche Musik: Rot-Grün setzt sich für Radioquote ein - Kultur - SPIEGEL ONLINEhttps://www.rfc1437.de/2004/12/16/detsch-msk-rt-grn-stzt-sch-fr-rdqt-n-kltr-spgl-nln/Energiekonzerne verteidigen Erdgaspreisehttps://www.rfc1437.de/2004/12/16/energiekonzerne-verteidigen-erdgaspreise/GadflyB5: SQL Relational Database in Pythonhttps://www.rfc1437.de/2004/12/16/gadflyb5-sql-relational-database-in-python/Hessen dehnt Polizeibefugnisse deutlich aushttps://www.rfc1437.de/2004/12/16/hessen-dehnt-polizeibefugnisse-deutlich-aus/Signal auf Grün für Softwarepatentrichtlinie des EU-Rateshttps://www.rfc1437.de/2004/12/16/signal-auf-gruen-fuer-softwarepatentrchtln-ds-rts/Rot-Grün macht Ernst mit dem Akteneinsichtsrechthttps://www.rfc1437.de/2004/12/15/rot-gruen-macht-ernst-mit-dem-akteneinsichtsrecht/Al Qaida, Ku-Klux-Klan - und PDShttps://www.rfc1437.de/2004/12/14/al-qaida-ku-klux-klan-und-pds/Barebones pure-Python PostgreSQL clienthttps://www.rfc1437.de/2004/12/14/barebones-pure-python-postgresql-client/Captchahttps://www.rfc1437.de/2004/12/14/captcha/Hamsterfrage? Höhn hat eine Antworthttps://www.rfc1437.de/2004/12/14/hamsterfrage-hoehn-hat-eine-antwort/Pirates Response to DreamWorkshttps://www.rfc1437.de/2004/12/14/pirates-response-to-dreamworks/REgurgitatehttps://www.rfc1437.de/2004/12/14/regurgitate/StupidSheethttps://www.rfc1437.de/2004/12/14/stupidsheet/The Daily Whim: MT Plus Comment Spam Equals Dead Sitehttps://www.rfc1437.de/2004/12/14/the-daily-whim-mt-plus-comment-spam-equals-dead-st/US-Filmindustrie will gegen BitTorrent vorgehenhttps://www.rfc1437.de/2004/12/14/us-filmindustrie-will-gegen-bittorrent-vorgehen/Who says safe computing must remain a pipe dream?https://www.rfc1437.de/2004/12/14/who-says-safe-computing-must-remain-a-pipe-dream/Duales System wechselt Besitzerhttps://www.rfc1437.de/2004/12/13/duales-system-wechselt-besitzer/BBC NEWS | Europe | Ukraine candidate 'was poisoned'https://www.rfc1437.de/2004/12/12/bbc-news-europe-ukraine-candidate-was-poisoned/Dive Into Accessibilityhttps://www.rfc1437.de/2004/12/12/dive-into-accessibility/gb - CIAhttps://www.rfc1437.de/2004/12/12/gb-cia/Languages for the Java VMhttps://www.rfc1437.de/2004/12/12/languages-for-the-java-vm/PyX - Python graphics packagehttps://www.rfc1437.de/2004/12/12/pyx-python-graphics-package/SLAVEGROOVEhttps://www.rfc1437.de/2004/12/12/slavegroove/Bill Clementson: LispWorks 4.4 releasedhttps://www.rfc1437.de/2004/12/10/bill-clementson-lispworks-44-released/Durushttps://www.rfc1437.de/2004/12/10/durus/Statement coverage for Pythonhttps://www.rfc1437.de/2004/12/10/statement-coverage-for-python/Australien: Umstrittenes Hilfsprogramm für Aborigineshttps://www.rfc1437.de/2004/12/09/australien-umstrittenes-hilfsprogramm-fuer-aborgns/Bundeswehr: Struck meldet neue Misshandlungsfällehttps://www.rfc1437.de/2004/12/09/bundeswehr-struck-meldet-neue-misshandlungsfaelle/Folter-Androhung: Staatsanwalt fordert Geldstrafe für Daschnerhttps://www.rfc1437.de/2004/12/09/folter-androhung-statsnwlt-frdrt-gldstrf-fr-dschnr/Galaktisches Baby vor unserer kosmischen Haustürhttps://www.rfc1437.de/2004/12/09/galaktisches-baby-vor-unserer-kosmischen-haustuer/IPython - An enhanced Interactive Pythonhttps://www.rfc1437.de/2004/12/09/ipython-an-enhanced-interactive-python/Logix Homehttps://www.rfc1437.de/2004/12/09/logix-home/Pakete und Päckchen werden teurerhttps://www.rfc1437.de/2004/12/09/pakete-und-paeckchen-werden-teurer/Sensation in Münster: Säugetier entdeckthttps://www.rfc1437.de/2004/12/09/sensation-in-muenster-saeugetier-entdeckt/Vermittlungsausschuss: Stiegler droht mit Alleinganghttps://www.rfc1437.de/2004/12/09/vermittlungsausschuss-stiegler-droht-mit-alleingng/xmltramp: Make XML documents easily accessible.https://www.rfc1437.de/2004/12/09/xmltramp-make-xml-documents-easily-accessible/RDFLib 2.0.4 Readmehttps://www.rfc1437.de/2004/12/08/rdflib-2-0-4-readme/Ein Lisp-Comic der Makros erklärthttps://www.rfc1437.de/2004/12/07/ein-lisp-comic-der-makros-erklaert/TP: Wahlbetrug in Florida?https://www.rfc1437.de/2004/12/07/tp-wahlbetrug-in-florida/CDU-Parteitag billigt Gesundheitskompromisshttps://www.rfc1437.de/2004/12/06/cdu-parteitag-billigt-gesundheitskompromiss/Knuth: Open Letter to Condolezza Ricehttps://www.rfc1437.de/2004/12/06/knuth-open-letter-to-condolezza-rice/Mal was entgegen dem XML-Hypehttps://www.rfc1437.de/2004/12/06/mal-was-entgegen-dem-xml-hype/Nur 88,41 Prozent für Merkelhttps://www.rfc1437.de/2004/12/06/nur-8841-prozent-fuer-merkel/Language-Independent Types for YAMLhttps://www.rfc1437.de/2004/12/05/language-independent-types-for-yaml/Pixeloghttps://www.rfc1437.de/2004/12/05/pixelog/ASPN : Python Cookbook : Spreadsheethttps://www.rfc1437.de/2004/12/04/aspn-python-cookbook-spreadsheet/E.ON und RWE wollen Strompreise erhöhenhttps://www.rfc1437.de/2004/12/04/eon-und-rwe-wollen-strompreise-erhoehen/Bundesgerichtshof spricht Urteil zu Domain-Grabbinghttps://www.rfc1437.de/2004/12/03/bundesgerichtshof-spricht-urteil-zu-domain-grabbng/Living Codehttps://www.rfc1437.de/2004/12/03/living-code/M-Audio Ozonic Keyboard and FireWire Interfacehttps://www.rfc1437.de/2004/12/03/m-audio-ozonic-keyboard-and-firewire-interface/Renaissancehttps://www.rfc1437.de/2004/12/03/renaissance/SCO vs. Linux: Eine journalistische Offenbarunghttps://www.rfc1437.de/2004/12/03/sco-vs-linux-eine-journalistische-offenbarung/Pyco - Tiny Python Distributionshttps://www.rfc1437.de/2004/12/02/pyco-tiny-python-distributions/Lasso - Soukhttps://www.rfc1437.de/2004/12/01/lasso-souk/Filmstiftung ehrt Künstler und Kinoshttps://www.rfc1437.de/2004/11/30/filmstiftung-ehrt-kuenstler-und-kinos/Module Pycamlhttps://www.rfc1437.de/2004/11/30/module-pycaml/Python 2.4https://www.rfc1437.de/2004/11/30/python-24/Auf Saturnmond Titan zielen und ... loslassenhttps://www.rfc1437.de/2004/11/29/auf-saturnmond-titan-zielen-und-loslassen/Ooopshttps://www.rfc1437.de/2004/11/29/ooops/Pro-Linux News: Daffodil Replicator wird freie Softwarehttps://www.rfc1437.de/2004/11/29/pro-linux-news-daffodil-replicator-wird-freie/Python Packages Index: pyDB2 0.996ahttps://www.rfc1437.de/2004/11/29/python-packages-index-pydb2-0-996a/Debatte über Integration neu entfachthttps://www.rfc1437.de/2004/11/28/debatte-ueber-integration-neu-entfacht/Fangs: The Firefox Screen Reader Emulator Extension - Standards-schmandardshttps://www.rfc1437.de/2004/11/28/fngs-th-frfx-scrn-rdr-mltr-xtnsn-stndrds-schmndrds/tsearch-v2-introhttps://www.rfc1437.de/2004/11/28/tsearch-v2-intro/Tsearch2 - full text extension for PostgreSQLhttps://www.rfc1437.de/2004/11/28/tsearch2-full-text-extension-for-postgresql/Aldipod bei Heisehttps://www.rfc1437.de/2004/11/27/aldipod-bei-heise/Luminous Landscape field test the R-D1https://www.rfc1437.de/2004/11/27/luminous-landscape-field-test-the-r-d1/Noch son Projekt in Pythonhttps://www.rfc1437.de/2004/11/27/noch-son-projekt-in-python/Toolserver Framework for Python - Folienhttps://www.rfc1437.de/2004/11/27/toolserver-framework-for-python-folien/Eine halbe Million Euro Strafe für Prinz Ernst Augusthttps://www.rfc1437.de/2004/11/26/eine-halbe-million-euro-strafe-fuer-prinz-rnst-gst/Großer Lauschangriff auf den Internet Relay Chathttps://www.rfc1437.de/2004/11/26/grosser-lauschangriff-auf-den-internet-relay-chat/Kritik an Vorschlägen der ITU zur Netzverwaltunghttps://www.rfc1437.de/2004/11/26/kritik-an-vorschlaegen-der-itu-zur-netzverwaltung/NRW-FDP: Der Pleite-Generalhttps://www.rfc1437.de/2004/11/25/nrw-fdp-der-pleite-general/SimpleTALhttps://www.rfc1437.de/2004/11/25/simpletal-2/Bankomat als Spielkonsole!https://www.rfc1437.de/2004/11/23/bankomat-als-spielkonsole/Infinity-to-the-Power-of-Infinityhttps://www.rfc1437.de/2004/11/23/infinity-to-the-power-of-infinity/Lücke in Suns Java Plug-ins gewährt Zugriff auf das Systemhttps://www.rfc1437.de/2004/11/23/luecke-in-suns-java-plug-ns-gwhrt-zgrff-f-ds-systm/VW zahlt wohl wieder keine Gewerbesteuerhttps://www.rfc1437.de/2004/11/23/vw-zahlt-wohl-wieder-keine-gewerbesteuer/ADAC warnt vor Leichtmobilenhttps://www.rfc1437.de/2004/11/22/adac-warnt-vor-leichtmobilen/Digital Lumber, Inc.https://www.rfc1437.de/2004/11/22/digital-lumber-inc/Patents Should Meet BASIC Tests of Reasonhttps://www.rfc1437.de/2004/11/22/patents-should-meet-basic-tests-of-reason/pyeBay - Use the eBay API from Pythonhttps://www.rfc1437.de/2004/11/22/pyebay-use-the-ebay-api-from-python/Python IAQ: Infrequently Answered Questionshttps://www.rfc1437.de/2004/11/22/python-iaq-infrequently-answered-questions/Schrempps Luxus-Mercedes gestohlenhttps://www.rfc1437.de/2004/11/22/schrempps-luxus-mercedes-gestohlen/Seehofer tritt als Fraktionsvize zurückhttps://www.rfc1437.de/2004/11/22/seehofer-tritt-als-fraktionsvize-zurueck/Slate Language Websitehttps://www.rfc1437.de/2004/11/22/slate-language-website-2/Solar Powered iPod Backuphttps://www.rfc1437.de/2004/11/22/solar-powered-ipod-backup/The Curl Projecthttps://www.rfc1437.de/2004/11/22/the-curl-project/Water -- Waterlanguage.orghttps://www.rfc1437.de/2004/11/22/water-waterlanguageorg/Welcome to read4me project pagehttps://www.rfc1437.de/2004/11/22/welcome-to-read4me-project-page/wxPython and wxGlade Tutorialhttps://www.rfc1437.de/2004/11/22/wxpython-and-wxglade-tutorial/2Entwine | FotoBuzz Viewlethttps://www.rfc1437.de/2004/11/21/2entwine-fotobuzz-viewlet/Arachne GPL 1.73 WWW Browser (glennmcc)https://www.rfc1437.de/2004/11/21/arachne-gpl-1-73-www-browser-glennmcc/Bundeswehr-Rekruten angeblich mit Stromstößen gequälthttps://www.rfc1437.de/2004/11/21/bundeswehr-rekruten-angeblich-mit-stromstossn-gqlt/"DOS Solutions"https://www.rfc1437.de/2004/11/21/dos-solutions/Download Actahttps://www.rfc1437.de/2004/11/21/download-acta/ONLamp.com: Introducing Slonyhttps://www.rfc1437.de/2004/11/21/onlamp-com-introducing-slony/Reader-Submitted: Are You an Internet Porn Addict? Congress to Your Rescue!https://www.rfc1437.de/2004/11/21/reader-sbmttd-r-y-n-ntrnt-prn-ddct-cngrss-t-yr-rsc/Microsoft: Angeblicher Soundforge-Crack ein "Platzhalter"https://www.rfc1437.de/2004/11/19/microsoft-angeblicher-soundforge-crack-en-pltzhltr/Siemens-Chef: Euro-Hoch ist ein Problemhttps://www.rfc1437.de/2004/11/19/siemens-chef-euro-hoch-ist-ein-problem/Vorschlag zur Gütehttps://www.rfc1437.de/2004/11/19/vorschlag-zur-guumlte/What's New in Python 2.4https://www.rfc1437.de/2004/11/19/whats-new-in-python-24/CSU: Seehofer bleibt Vize in Partei und Fraktionhttps://www.rfc1437.de/2004/11/18/csu-seehofer-bleibt-vize-in-partei-und-fraktion/Gopher: offlineimaphttps://www.rfc1437.de/2004/11/18/gopher-offlineimap/Microsoft-Chef warnt asiatische Regierungen vor dem Einsatz von Linuxhttps://www.rfc1437.de/2004/11/18/microsoft-chef-wrnt-stsch-rgrngn-vr-dm-nstz-vn-lnx/Webserviceshttps://www.rfc1437.de/2004/11/18/webservices/Frontier Scriptinghttps://www.rfc1437.de/2004/11/17/frontier-scripting/Frontier Tutorialshttps://www.rfc1437.de/2004/11/17/frontier-tutorials/Linde verliert medizinisch wichtiges Patenthttps://www.rfc1437.de/2004/11/17/linde-verliert-medizinisch-wichtiges-patent/Russland will neue Atomwaffe entwickelnhttps://www.rfc1437.de/2004/11/17/russland-will-neue-atomwaffe-entwickeln/Serious First Steps In UserTalk Scriptinghttps://www.rfc1437.de/2004/11/17/serious-first-steps-in-usertalk-scripting/Table of Contents for Matt's Frontier Bookhttps://www.rfc1437.de/2004/11/17/table-of-contents-for-matt-s-frontier-book/Up and Running with Frontier Web Site Managementhttps://www.rfc1437.de/2004/11/17/up-and-running-with-frontier-web-site-management/Hartz IV und die Folgenhttps://www.rfc1437.de/2004/11/16/hartz-iv-und-die-folgen/In der Matrixhttps://www.rfc1437.de/2004/11/16/in-der-matrix/Ludwigshafen: Festakt für Kohl abgeblasenhttps://www.rfc1437.de/2004/11/16/ludwigshafen-festakt-fuer-kohl-abgeblasen/Rechnungshof: Scharfe Kritik an Eichels Politikhttps://www.rfc1437.de/2004/11/16/rechnungshof-scharfe-kritik-an-eichels-politik/Y2K Probleme bei Lotus Agenda und Think Tankhttps://www.rfc1437.de/2004/11/16/y2k-probleme-bei-lotus-agenda-und-think-tank/686 Black cross stud tool belt - hats belts - extremepie.comhttps://www.rfc1437.de/2004/11/15/686-black-cross-stud-tool-belt-hats-belts-extrmpcm/Firefox 1.0https://www.rfc1437.de/2004/11/15/firefox-10/HPLX.NET FAQs: THE FAQhttps://www.rfc1437.de/2004/11/15/hplx-net-faqs-the-faq/Microsoft im Lizenzrauschhttps://www.rfc1437.de/2004/11/15/microsoft-im-lizenzrausch/Mikel Evins: RAD Skaterhttps://www.rfc1437.de/2004/11/15/mikel-evins-rad-skater/Pro-Linux: DNS entschlackthttps://www.rfc1437.de/2004/11/15/pro-linux-dns-entschlackt/Dauphin DTR-1 Fileshttps://www.rfc1437.de/2004/11/14/dauphin-dtr-1-files/HP 100LX/200LX Technical Informationhttps://www.rfc1437.de/2004/11/14/hp-100lx-200lx-technical-information/ITU will Regulierung übernehmenhttps://www.rfc1437.de/2004/11/14/itu-will-regulierung-uebernehmen/Lohnsenkungsdebatte: Raucherpausen sollen künftig vom Lohn abgezogen werden - Wirtschaft - SPI ...https://www.rfc1437.de/2004/11/14/lhnsnkngsdbtt-rchrpsn-slln-knftg-vm-lhn-bgzgn-wrdn/Lotus Agenda lauffähig für den HP 200 LXhttps://www.rfc1437.de/2004/11/14/lotus-agenda-lauffaehig-fuer-den-hp-200-lx/MAXDOShttps://www.rfc1437.de/2004/11/14/maxdos/NEWSBLITZ: drahtloses iPod-Mediensystem patentierthttps://www.rfc1437.de/2004/11/14/newsblitz-drahtloses-ipod-mediensystem-patentiert/OmniGo Softwarehttps://www.rfc1437.de/2004/11/14/omnigo-software/Palmtop Info Central News Serverhttps://www.rfc1437.de/2004/11/14/palmtop-info-central-news-server/Palmtop LED lighthttps://www.rfc1437.de/2004/11/14/palmtop-led-light/Revision 7229: /user/arigo/greenlethttps://www.rfc1437.de/2004/11/14/revision-7229-user-arigo-greenlet/S.U.P.E.R. - The Largest 200LX Software Archivehttps://www.rfc1437.de/2004/11/14/s-u-p-e-r-the-largest-200lx-software-archive/the Degree Confluence Projecthttps://www.rfc1437.de/2004/11/14/the-degree-confluence-project/WWW/LX - the Internet Solution in Your Pocket!https://www.rfc1437.de/2004/11/14/www-lx-the-internet-solution-in-your-pocket/CDU-Politiker wollen Partei nach "rechts" öffnenhttps://www.rfc1437.de/2004/11/13/cdu-politiker-wollen-partei-nach-rechts-oeffnen/CSU will Kündigungsschutz offenbar stark einschränkenhttps://www.rfc1437.de/2004/11/13/csu-will-kuendigungsschutz-offenbar-stark-nschrnkn/dirtSimple.org: Using 2.4 decorators with 2.2 and 2.3https://www.rfc1437.de/2004/11/13/dirtsimple-org-using-2-4-decorators-with-2-2-and/Schnüffeldienst warnt Firmen bei Erwähnung in Weblogshttps://www.rfc1437.de/2004/11/13/schnueffeldienst-warnt-firmen-bei-erwahnng-n-wblgs/Staatsanwältin fordert acht Jahre für Berlusconihttps://www.rfc1437.de/2004/11/13/staatsanwaeltin-fordert-acht-jahre-fuer-berlusconi/Deutscher Internetpreis verliehenhttps://www.rfc1437.de/2004/11/12/deutscher-internetpreis-verliehen/Die Wut des Heiner Geisslerhttps://www.rfc1437.de/2004/11/12/die-wut-des-heiner-geissler/Gratis-Tabletten für AKW-Anwohnerhttps://www.rfc1437.de/2004/11/12/gratis-tabletten-fuer-akw-anwohner/Japan startet Walfangaktionhttps://www.rfc1437.de/2004/11/12/japan-startet-walfangaktion/Microsoft: Internet Explorer so sicher und komfortabel wie alle anderen Browserhttps://www.rfc1437.de/2004/11/12/mcrsft-ntrnt-xplrr-s-schr-nd-kmfrtbl-w-ll-ndrn-brw/Rechnungshof kritisiert Toll Collecthttps://www.rfc1437.de/2004/11/12/rechnungshof-kritisiert-toll-collect/Studie: Betrug kostet Gesundheitssektor Milliardenhttps://www.rfc1437.de/2004/11/12/studie-betrug-kostet-gesundheitssektor-milliarden/Condor Project Homepagehttps://www.rfc1437.de/2004/11/11/condor-project-homepage/dirtSimple.org: Generic Functions have Landedhttps://www.rfc1437.de/2004/11/11/dirtsimple-org-generic-functions-have-landed/Shibazuke Serializationhttps://www.rfc1437.de/2004/11/11/shibazuke-serialization/Tanks greet protesters in Americahttps://www.rfc1437.de/2004/11/11/tanks-greet-protesters-in-america/The More Things Change...https://www.rfc1437.de/2004/11/11/the-more-things-change/SCO vs. Linux: Novell präsentiert weitere Beweisehttps://www.rfc1437.de/2004/11/10/sco-vs-linux-novell-praesentiert-weitere-beweise/US-Bundesrichter stoppt Guantanamo-Tribunalhttps://www.rfc1437.de/2004/11/10/us-bundesrichter-stoppt-guantanamo-tribunal/Die Anweisung "Vorsichtige Fahrt" wurde nicht gegebenhttps://www.rfc1437.de/2004/11/09/die-anweisung-vorsichtige-fahrt-wurde-nicht-gegebn/iListen - hat jemand damit Erfahrung?https://www.rfc1437.de/2004/11/09/ilisten-hat-jemand-damit-erfahrung/Mal wieder ein neuer GPG Keyhttps://www.rfc1437.de/2004/11/09/mal-wieder-ein-neuer-gpg-key/Stolpert Open Source in der Verwaltung übers Vergaberecht?https://www.rfc1437.de/2004/11/09/stolpert-open-source-in-der-verwaltng-brs-vrgbrcht/Alle (!) EU-Rechtsdokumente in einer Internet-Datenbankhttps://www.rfc1437.de/2004/11/08/alle-eu-rechtsdokumente-in-einer-internet-datenbnk/ASPN : Python Cookbook : Language detection using character trigramshttps://www.rfc1437.de/2004/11/08/aspn-python-cookbook-language-detection-using/Confidential! - Confidential?https://www.rfc1437.de/2004/11/08/confidential-confidential/Das Klima der Angsthttps://www.rfc1437.de/2004/11/08/das-klima-der-angst/Debatte um längere Arbeitszeit hält anhttps://www.rfc1437.de/2004/11/08/debatte-um-laengere-arbeitszeit-haelt-an/Erste teilprivatisierte Haftanstalt in Deutschlandhttps://www.rfc1437.de/2004/11/08/erste-teilprivatisierte-haftanstalt-in-deutschland/Frontier Kernelhttps://www.rfc1437.de/2004/11/08/frontier-kernel/PyLog -- A first order logic library in Pythonhttps://www.rfc1437.de/2004/11/08/pylog-a-first-order-logic-library-in-python-2/Zope.org - ZopeX3-3.0.0https://www.rfc1437.de/2004/11/08/zopeorg-zopex3-300/Atomkraftgegner bei Unfall mit Castor-Zug getötethttps://www.rfc1437.de/2004/11/07/atomkraftgegner-bei-unfall-mit-castor-zug-getoetet/Factor programming languagehttps://www.rfc1437.de/2004/11/07/factor-programming-language/Medienexperte: Journalisten vertrauen zu oft auf Internet-Recherchehttps://www.rfc1437.de/2004/11/07/medienexperte-journalstn-vrtrn-z-ft-f-ntrnt-rchrch/Python Object Sharing (POSH)https://www.rfc1437.de/2004/11/07/python-object-sharing-posh/Auf welchen Feiertag könnten Sie verzichten?https://www.rfc1437.de/2004/11/06/auf-welchen-feiertag-koennten-sie-verzichten/Debatte über Wehrpflicht neu entbrannthttps://www.rfc1437.de/2004/11/06/debatte-ueber-wehrpflicht-neu-entbrannt/do you remember this?https://www.rfc1437.de/2004/11/06/do-you-remember-this/Gesunde Kindersnacks?https://www.rfc1437.de/2004/11/06/gesunde-kindersnacks/Ohio isn't over yet.https://www.rfc1437.de/2004/11/06/ohio-isnt-over-yet/Python Memory Managementhttps://www.rfc1437.de/2004/11/06/python-memory-management/Religion - the Tragedy of Mankindhttps://www.rfc1437.de/2004/11/06/religion-the-tragedy-of-mankind/Verpflichtung zur E-Mail-Überwachung trifft die Providerbranche harthttps://www.rfc1437.de/2004/11/06/verpflichtng-zr-ml-brwchng-trfft-d-prvdrbrnch-hrt/Crystal VST Instrumenthttps://www.rfc1437.de/2004/11/05/crystal-vst-instrument/Erfahrungen mit pycryptohttps://www.rfc1437.de/2004/11/05/erfahrungen-mit-pycrypto/MidiKeyshttps://www.rfc1437.de/2004/11/05/midikeys-2/Seekbot Seitentesthttps://www.rfc1437.de/2004/11/05/seekbot-seitentest/Sprachloshttps://www.rfc1437.de/2004/11/05/sprachlos/Arafats Zustand dramatisch verschlechterthttps://www.rfc1437.de/2004/11/04/arafats-zustand-dramatisch-verschlechtert/Current Electoral Vote Predictor 2004https://www.rfc1437.de/2004/11/04/current-electoral-vote-predictor-2004/Dowserhttps://www.rfc1437.de/2004/11/04/dowser/M2Crypto Installer for Python 2.3 - Installer for M2Crypto - an open source Python crypto &amp; SSL toolkit. - python, cryptography, SSL, S/MIME, ZServerSSL, ZSmime, PKI, Zopehttps://www.rfc1437.de/2004/11/04/m2crypto-installer-for-python-2-3-installer-for/Python Cryptography Toolkithttps://www.rfc1437.de/2004/11/04/python-cryptography-toolkit/TLS Litehttps://www.rfc1437.de/2004/11/04/tls-lite-2/Vergangenheitsbewältigung mit der Abrißbirnehttps://www.rfc1437.de/2004/11/04/vergangenheitsbewaeltigung-mit-der-abrissbirne/Bei der Auftragsvergabe für die Online-Jobbörse der BA wurden nicht bestochenhttps://www.rfc1437.de/2004/11/03/b-dr-ftrgsvrgb-fr-d-nln-jbbrs-dr-b-wrdn-ncht-bstch/Bush sieht sich als Sieger | Politik | Deutsche Welle |https://www.rfc1437.de/2004/11/03/bush-sieht-sich-als-sieger-politik-deutsche-welle/CRN | Breaking News | Shadows Loom Over Sun's Open Source Planshttps://www.rfc1437.de/2004/11/03/crn-breaking-news-shadows-loom-ovr-sns-pn-src-plns/IRCnet.org Webchat Loginhttps://www.rfc1437.de/2004/11/03/ircnet-org-webchat-login/Jubiläum - zwei Jahre Hugos House of Weblog Horrorhttps://www.rfc1437.de/2004/11/03/jubilaeum-zwei-jahre-hugos-house-of-weblog-horror/Käufer bei Ebay genießen Widerrufsrechthttps://www.rfc1437.de/2004/11/03/kaeufer-bei-ebay-geniessen-widerrufsrecht/Lücke im Internet Explorer ermöglicht vollen Systemzugriffhttps://www.rfc1437.de/2004/11/03/luecke-im-internet-explorr-rmglcht-vlln-systmzgrff/Schröder und Eichel wollen Tag der Einheit kippenhttps://www.rfc1437.de/2004/11/03/schroeder-und-eichel-wollen-tag-der-einheit-kippen/Update: Das Weiße Haus erklärt Bush zum Wahlsiegerhttps://www.rfc1437.de/2004/11/03/update-das-weisse-haus-erklaert-bush-zum-wahlsiegr/Useful VIM featureshttps://www.rfc1437.de/2004/11/03/useful-vim-features/Airspeed - Trachttps://www.rfc1437.de/2004/11/02/airspeed-trac/ECL v0.9d releasedhttps://www.rfc1437.de/2004/11/02/ecl-v09d-released/Planet Planet!https://www.rfc1437.de/2004/11/02/planet-planet/Python ipqueuehttps://www.rfc1437.de/2004/11/02/python-ipqueue/Shrek IIhttps://www.rfc1437.de/2004/11/02/shrek-ii/taz 3.11.04 Akte X in der Elbmarschhttps://www.rfc1437.de/2004/11/02/taz-31104-akte-x-in-der-elbmarsch/Datenschleuder - Hacking biometric systemshttps://www.rfc1437.de/2004/11/01/datenschleuder-hacking-biometric-systems/freshmeat.net: Project details for Kernel TCP Virtual Serverhttps://www.rfc1437.de/2004/11/01/freshmeat-net-project-details-for-kernel-tcp/freshmeat.net: Project details for ProxSMTPhttps://www.rfc1437.de/2004/11/01/freshmeat-net-project-details-for-proxsmtp/Ich© liebe" Dich®https://www.rfc1437.de/2004/11/01/ichcopy-liebe-dichreg/Kreaturenhttps://www.rfc1437.de/2004/11/01/kreaturen/Linux: In Kernel GUIhttps://www.rfc1437.de/2004/11/01/linux-in-kernel-gui/Pasta: text pasting service for del.icio.ushttps://www.rfc1437.de/2004/11/01/pasta-text-pasting-service-for-del-icio-us/Polareis schmilzt schneller als erwartethttps://www.rfc1437.de/2004/11/01/polareis-schmilzt-schneller-als-erwartet/#python discussion of how to implement the Halting Problemhttps://www.rfc1437.de/2004/11/01/python-discussion-of-how-to-implmnt-th-hltng-prblm/Abmahnung des Kefk Network durch die Kanzlei Waldorfhttps://www.rfc1437.de/2004/10/31/abmahnung-des-kefk-network-durch-die-kanzlei-wldrf/Holocore / Mac OS X Software / OnDeckhttps://www.rfc1437.de/2004/10/31/holocore-mac-os-x-software-ondeck/OkayRpcProtocol - YAML Implementors Sitehttps://www.rfc1437.de/2004/10/31/okayrpcprotocol-yaml-implementors-site/PyYaml - Trachttps://www.rfc1437.de/2004/10/31/pyyaml-trac/SLiP &lt;&lt; Projects &lt;&lt; very simple website for Scott Sweeneyhttps://www.rfc1437.de/2004/10/31/slip-lt-lt-projects-lt-lt-very-simple-website-for/( Syck ): YAML for Ruby, Python, PHP and OCamlhttps://www.rfc1437.de/2004/10/31/syck-yaml-for-ruby-python-php-and-ocaml/Winterzeitumstellunghttps://www.rfc1437.de/2004/10/31/winterzeitumstellung/YAML Ain't Markup Languagehttps://www.rfc1437.de/2004/10/31/yaml-ain-t-markup-language/Backbone - a GNUstep-based desktop environmenthttps://www.rfc1437.de/2004/10/30/backbone-a-gnustep-based-desktop-environment/Index of /data/gnustep/https://www.rfc1437.de/2004/10/30/index-of-data-gnustep/Initiative Neue Soziale Marktwirtschafthttps://www.rfc1437.de/2004/10/30/initiative-neue-soziale-marktwirtschaft/Paar ließ sich kaum trennenhttps://www.rfc1437.de/2004/10/30/paar-liess-sich-kaum-trennen/BSA-Chef: Software-Piraten geht es verstärkt an den Kragenhttps://www.rfc1437.de/2004/10/29/bsa-chef-software-piraten-geht-s-vrstrkt-n-dn-krgn/Fuji Discontinues Medium Format Camerashttps://www.rfc1437.de/2004/10/29/fuji-discontinues-medium-format-cameras/Gibson droht: «Arnold, ich warte!»https://www.rfc1437.de/2004/10/29/gibson-droht-arnold-ich-warte/Links werden kriminalisierthttps://www.rfc1437.de/2004/10/29/links-werden-kriminalisiert/Musikindustrie gegen Radiomitschnitthttps://www.rfc1437.de/2004/10/29/musikindustrie-gegen-radiomitschnitt/"Nicht genug Soldaten da? Na und \x96 wo ist der Photoshop?"https://www.rfc1437.de/2004/10/29/nicht-genug-soldaten-da-na-und-wo-ist-der-photoshp/projekt: darkwavehttps://www.rfc1437.de/2004/10/29/projekt-darkwave/SanDisk's budget 2GB Secure Digital cardhttps://www.rfc1437.de/2004/10/29/sandisks-budget-2gb-secure-digital-card/SLIME: The Superior Lisp Interaction Mode for Emacshttps://www.rfc1437.de/2004/10/29/slime-the-superior-lisp-interaction-mode-for-emacs/The Security of Checks and Balanceshttps://www.rfc1437.de/2004/10/29/the-security-of-checks-and-balances/58.000 Wahlzettel in Florida verschwundenhttps://www.rfc1437.de/2004/10/28/58000-wahlzettel-in-florida-verschwunden/iDrum - The Drum Machine for Mac OS Xhttps://www.rfc1437.de/2004/10/28/idrum-the-drum-machine-for-mac-os-x/Opel-Krise: Konkurrenz mit Schweden um den Vectrahttps://www.rfc1437.de/2004/10/28/opel-krise-konkurrenz-mit-schweden-um-den-vectra/TuneFinder Xhttps://www.rfc1437.de/2004/10/28/tunefinder-x/Vermittlungsausschuss: Versandkunden sollen Rücksendekosten tragenhttps://www.rfc1437.de/2004/10/28/vermittlungsasschss-vrsndkndn-slln-rcksndkstn-trgn/Website-Betreiber wegen Hardware-Meldung abgemahnthttps://www.rfc1437.de/2004/10/28/website-betreiber-wegen-hardware-meldung-abgemahnt/Barroso will Kommission umbildenhttps://www.rfc1437.de/2004/10/27/barroso-will-kommission-umbilden/iDive 1.1https://www.rfc1437.de/2004/10/27/idive-1-1/OpenPsion - Linux for Psion Computershttps://www.rfc1437.de/2004/10/27/openpsion-linux-for-psion-computers/OpenZaurus 3.5.1 is released! :: OpenZaurus ::https://www.rfc1437.de/2004/10/27/openzaurus-351-is-released-openzaurus/PhpWiki - Open Zaurus Collie Install Guidehttps://www.rfc1437.de/2004/10/27/phpwiki-open-zaurus-collie-install-guide/S5: A Simple Standards-Based Slide Show Systemhttps://www.rfc1437.de/2004/10/27/s5-a-simple-standards-based-slide-show-system/Bill Clementson: Allegro CL 7.0 releasedhttps://www.rfc1437.de/2004/10/26/bill-clementson-allegro-cl-70-released/Bundesregierung befürchtet Imageverlusthttps://www.rfc1437.de/2004/10/26/bundesregierung-befuerchtet-imageverlust/Das E-Business Weblog: Die Nervensägehttps://www.rfc1437.de/2004/10/26/das-e-business-weblog-die-nervensaege/Double Your Data Volume with the PROshift+ Adapterhttps://www.rfc1437.de/2004/10/26/double-your-data-volume-with-the-proshift-adapter/iPod Photo, doesn''t rock?https://www.rfc1437.de/2004/10/26/ipod-photo-doesnt-rock/Auf der Lauer Ihttps://www.rfc1437.de/2004/10/26/pic-auf-der-lauer-i/Auf der Lauer IIhttps://www.rfc1437.de/2004/10/26/pic-auf-der-lauer-ii/Herbstbilder Ihttps://www.rfc1437.de/2004/10/26/pic-herbstbilder-i/Herbstbilder IIhttps://www.rfc1437.de/2004/10/26/pic-herbstbilder-ii/Herbstbilder IIIhttps://www.rfc1437.de/2004/10/26/pic-herbstbilder-iii/Herbstbilder IVhttps://www.rfc1437.de/2004/10/26/pic-herbstbilder-iv/Herbstbilder Vhttps://www.rfc1437.de/2004/10/26/pic-herbstbilder-v/Herbstbilder VIhttps://www.rfc1437.de/2004/10/26/pic-herbstbilder-vi/Herbstbilder VIIhttps://www.rfc1437.de/2004/10/26/pic-herbstbilder-vii/Sonde Cassini näherte sich Saturn-Mond Titanhttps://www.rfc1437.de/2004/10/26/sonde-cassini-naeherte-sich-saturn-mond-titan/"Eine Partei, in der jeder alles werden kann"https://www.rfc1437.de/2004/10/25/eine-partei-in-der-jeder-alles-werden-kann/Fred Miranda Releases Velvia Vision Plug-inhttps://www.rfc1437.de/2004/10/25/fred-miranda-releases-velvia-vision-plug-in/James Tauber : Cleesehttps://www.rfc1437.de/2004/10/25/james-tauber-cleese/Stuttgart: Staatsminister ohrfeigt Parteikollegenhttps://www.rfc1437.de/2004/10/25/stuttgart-staatsminister-ohrfeigt-parteikollegen/Sarah McLachlan - World On Firehttps://www.rfc1437.de/2004/10/24/sarah-mclachlan-world-on-fire/Blöde Userhttps://www.rfc1437.de/2004/10/23/bloede-user/ETOS Compilerhttps://www.rfc1437.de/2004/10/23/etos-compiler-2/EU-Kommissarin will Castro sterben sehenhttps://www.rfc1437.de/2004/10/23/eu-kommissarin-will-castro-sterben-sehen/Gambit Scheme 4.0 beta 10 released!https://www.rfc1437.de/2004/10/23/gambit-scheme-40-beta-10-released/Gambit Scheme Systemhttps://www.rfc1437.de/2004/10/23/gambit-scheme-system/iMovie FAQ - Homehttps://www.rfc1437.de/2004/10/23/imovie-faq-home/Retrocomputing - MIT CADR Lisp Machineshttps://www.rfc1437.de/2004/10/23/retrocomputing-mit-cadr-lisp-machines/Genscher unterschrieb irrtümlich CSU-Mitgliedsantraghttps://www.rfc1437.de/2004/10/22/genscher-unterschrieb-irrtuemlich-csu-mitglidsntrg/Java-Vorläufer hat Geburtstag: 30 Jahre p-Systemhttps://www.rfc1437.de/2004/10/22/java-vorlaeufer-hat-geburtstag-30-jahre-p-system/Ken Iverson ist gestorbenhttps://www.rfc1437.de/2004/10/22/ken-iverson-ist-gestorben/Send in Münsterhttps://www.rfc1437.de/2004/10/22/pic-send-in-muenster/Retrocomputing - Symbolics Lisp Machine Emulationhttps://www.rfc1437.de/2004/10/22/retrocomputing-symbolics-lisp-machine-emulation/XShelf 1.1.2 for MacOS Xhttps://www.rfc1437.de/2004/10/22/xshelf-1-1-2-for-macos-x/Akupunktur bald Kassenleistung?https://www.rfc1437.de/2004/10/21/akupunktur-bald-kassenleistung/Die Suggestivfrage des Betriebsratshttps://www.rfc1437.de/2004/10/21/die-suggestivfrage-des-betriebsrats/lispmeister: A booting CADR emulatorhttps://www.rfc1437.de/2004/10/21/lispmeister-a-booting-cadr-emulator/Allerletzte Blumenhttps://www.rfc1437.de/2004/10/21/pic-allerletzte-blumen/Herbstfarbenhttps://www.rfc1437.de/2004/10/21/pic-herbstfarben/Raupehttps://www.rfc1437.de/2004/10/21/pic-raupe/Trauerweidehttps://www.rfc1437.de/2004/10/21/pic-trauerweide/TAOhttps://www.rfc1437.de/2004/10/21/tao/Münster ist weltweit lebenswerteste Stadthttps://www.rfc1437.de/2004/10/20/muenster-ist-weltweit-lebenswerteste-stadt/Opel-Abstimmung mit Trickshttps://www.rfc1437.de/2004/10/20/opel-abstimmung-mit-tricks/Pyro - Abouthttps://www.rfc1437.de/2004/10/20/pyro-about/Studie: Weniger Kündigungsschutz schafft keine neuen Jobshttps://www.rfc1437.de/2004/10/20/studie-weniger-kuendigungsschutz-schafft-kn-nn-jbs/Sharp Kills US Zaurus Linehttps://www.rfc1437.de/2004/10/19/sharp-kills-us-zaurus-line/Slashdot | IP Tunneling Through Nameservershttps://www.rfc1437.de/2004/10/19/slashdot-ip-tunneling-through-nameservers/Ändert die Brennweite die Perspektive?https://www.rfc1437.de/2004/10/18/aendert-die-brennweite-die-perspektive/Psychehttps://www.rfc1437.de/2004/10/18/psyche/schemonhttps://www.rfc1437.de/2004/10/18/schemon/STUDY WHAT WE DOhttps://www.rfc1437.de/2004/10/18/study-what-we-do/Was ist "Perspektive"? (2)https://www.rfc1437.de/2004/10/18/was-ist-perspektive-2/A Logging System for Pythonhttps://www.rfc1437.de/2004/10/17/a-logging-system-for-python/Animal Planet :: Corwin''s Carnival of Creatureshttps://www.rfc1437.de/2004/10/17/animal-planet-corwins-carnival-of-creatures/Path ... where is my application's home dir?https://www.rfc1437.de/2004/10/17/path-where-is-my-application-s-home-dir/syslog.pyhttps://www.rfc1437.de/2004/10/17/syslog-py/[Web-SIG] Draft of server/gateway base class now availablehttps://www.rfc1437.de/2004/10/17/web-sig-draft-of-server-gateway-base-class-now/Bibble Labs - Professional Photo-Manipulation Softwarehttps://www.rfc1437.de/2004/10/16/bibble-labs-professional-photo-manipulation-softwr/F#, a functional language for .Nethttps://www.rfc1437.de/2004/10/16/f-a-functional-language-for-net/Photo Matt - Bizarre Windows Behaviorhttps://www.rfc1437.de/2004/10/16/photo-matt-bizarre-windows-behavior/10.000 Stellen werden gestrichenhttps://www.rfc1437.de/2004/10/15/10000-stellen-werden-gestrichen/EU-Energiekommisar durchgefallenhttps://www.rfc1437.de/2004/10/15/eu-energiekommisar-durchgefallen/Journalisten und Blogger sind keine Konkurrenzhttps://www.rfc1437.de/2004/10/15/journalisten-und-blogger-sind-keine-konkurrenz/Kanzlei Heyms & Dr. Bahr: OLG Hamm: Kein Urheberrecht an Webseiten?https://www.rfc1437.de/2004/10/15/kanzlei-heyms-dr-bahr-olg-hamm-kn-rhbrrcht-n-wbstn/Merz: Rückzug ist endgültighttps://www.rfc1437.de/2004/10/15/merz-rueckzug-ist-endgueltig/Rel: an open source implementation of Date & Darwen''s Tutorial Dhttps://www.rfc1437.de/2004/10/15/rel-an-open-source-implementatin-f-dt-drwns-ttrl-d/SCO vs. Linux: Bild dir eine Meinunghttps://www.rfc1437.de/2004/10/15/sco-vs-linux-bild-dir-eine-meinung/ffmpegX a VCD, SVCD, CVD, VOB, DivX, XviD encoder for Mac OSXhttps://www.rfc1437.de/2004/10/11/ffmpegx-a-vcd-svcd-cvd-vob-divx-xvid-encoder-for/Gericht genehmigt Atom-Transporte nach NRWhttps://www.rfc1437.de/2004/10/11/gericht-genehmigt-atom-transporte-nach-nrw/Münster: Tillmann bleibt Oberbürgermeisterhttps://www.rfc1437.de/2004/10/11/muenster-tillmann-bleibt-oberbuergermeister/Parlamentsausschuss lehnt EU-Justizkommissar abhttps://www.rfc1437.de/2004/10/11/parlamentsausschuss-lehnt-eu-justizkommissar-ab/Provider haftet für Domain-Verlusthttps://www.rfc1437.de/2004/10/11/provider-haftet-fuer-domain-verlust/"Schlag ins Gesicht der T-Online-Aktionäre"https://www.rfc1437.de/2004/10/11/schlag-ins-gesicht-der-t-online-aktionaere/wxAcceleratorTablehttps://www.rfc1437.de/2004/10/11/wxacceleratortable/wxValidator overviewhttps://www.rfc1437.de/2004/10/11/wxvalidator-overview/Copy and Paste Urteil fuer Webseitenhttps://www.rfc1437.de/2004/10/10/copy-and-paste-urteil-fuer-webseiten/FTD - Ifo-Chef will Sozialhilfe um 30 Prozent kürzenhttps://www.rfc1437.de/2004/10/10/ftd-ifo-chef-will-sozialhilfe-um-30-prozent-kuerzn/Daniel Barlow: Araneida 0.9 releasedhttps://www.rfc1437.de/2004/10/09/daniel-barlow-araneida-09-released/GEZ-Gebühr für Internet-PCs kommthttps://www.rfc1437.de/2004/10/09/gez-gebuehr-fuer-internet-pcs-kommt/awaretek.com :: Python Tutorialshttps://www.rfc1437.de/2004/10/08/awaretek-com-python-tutorials/gmail atom feedhttps://www.rfc1437.de/2004/10/08/gmail-atom-feed/Laszlo - Productshttps://www.rfc1437.de/2004/10/08/laszlo-products/SQLite 3.0.7https://www.rfc1437.de/2004/10/08/sqlite-307/Und noch eine kleine Änderung am RSS Feedhttps://www.rfc1437.de/2004/10/08/und-noch-eine-kleine-aenderung-am-rss-feed/Abschied vom Gewerbegebiethttps://www.rfc1437.de/2004/10/07/abschied-vom-gewerbegebiet/CIA-Bericht: Der Irak besaß keine ABC-Waffenhttps://www.rfc1437.de/2004/10/07/cia-bericht-der-irak-besass-keine-abc-waffen/Debakel der Schach-Großmeister gegen die Schach-Maschinenhttps://www.rfc1437.de/2004/10/07/debakel-der-schach-grossmeister-ggn-d-schch-mschnn/Kunde haftet bei PIN-Missbrauchhttps://www.rfc1437.de/2004/10/07/kunde-haftet-bei-pin-missbrauch/Microsoft-Chef: Auf iPods landet hauptsächlich gestohlene Musikhttps://www.rfc1437.de/2004/10/07/microsoft-chef-auf-ipods-lndt-hptschlch-gsthln-msk/Netzaktivist wegen Hyperlinks zu Geldstrafe verurteilthttps://www.rfc1437.de/2004/10/07/netzaktivist-wegen-hyperlinks-zu-geldstrafe-vrrtlt/NRW-Gefängnisse testen Teilprivatisierunghttps://www.rfc1437.de/2004/10/07/nrw-gefaengnisse-testen-teilprivatisierung/Rollei Announces Rolleiflex MiniDigihttps://www.rfc1437.de/2004/10/07/rollei-announces-rolleiflex-minidigi/Saisonaus für Zabelhttps://www.rfc1437.de/2004/10/07/saisonaus-fuer-zabel/Schreckliche Echse im Federkleidhttps://www.rfc1437.de/2004/10/07/schreckliche-echse-im-federkleid/SCO vs. Linux: Anträge abgelehnt, Frist verlängerthttps://www.rfc1437.de/2004/10/07/sco-vs-linux-antraege-abgelehnt-frist-verlaengert/Wirtschaftsspitzen fordern schnelle Steuerreformhttps://www.rfc1437.de/2004/10/07/wirtschaftsspitzen-fordern-schnelle-steuerreform/Zensur in Deutschlandhttps://www.rfc1437.de/2004/10/07/zensur-in-deutschland/eines der Landshuter Wahrzeichenhttps://www.rfc1437.de/2004/10/05/eines-der-landshuter-wahrzeichen/Das Ende der Welthttps://www.rfc1437.de/2004/10/04/das-ende-der-welt/Das Hotel am Ende der Welthttps://www.rfc1437.de/2004/10/04/das-hotel-am-ende-der-welt/Die ungewollten Stimmenhttps://www.rfc1437.de/2004/10/03/die-ungewollten-stimmen/Erik Zabel ist Vizeweltmeister im Strassenrennenhttps://www.rfc1437.de/2004/10/03/erik-zabel-ist-vizeweltmeister-im-strassenrennen/iPod Information Center - the ultimative site @ http://www.cilly.dyndns.org/iPod/https://www.rfc1437.de/2004/10/03/ipod-information-center-the-ultimative-site-http/Mal wieder Münchenhttps://www.rfc1437.de/2004/10/03/mal-wieder-muenchen/Papst spricht letzten Habsburg-Kaiser selighttps://www.rfc1437.de/2004/10/03/papst-spricht-letzten-habsburg-kaiser-selig/Warez-Razzia: Die Story um FTPWelthttps://www.rfc1437.de/2004/10/03/warez-razzia-die-story-um-ftpwelt/Judith Arndt Weltmeisterin: "Großer Tag"https://www.rfc1437.de/2004/10/02/judith-arndt-weltmeisterin-grosser-tag/Leica - a la cartehttps://www.rfc1437.de/2004/10/02/leica-a-la-carte/Blumenhttps://www.rfc1437.de/2004/10/02/pic-blumen/Distelhttps://www.rfc1437.de/2004/10/02/pic-distel/Herbst - Zeit der Früchte und Samenhttps://www.rfc1437.de/2004/10/02/pic-herbst-zeit-der-fruechte-und-samen/Pilzehttps://www.rfc1437.de/2004/10/02/pic-pilze/Richtungsweisendhttps://www.rfc1437.de/2004/10/02/pic-richtungsweisend/Schräglagehttps://www.rfc1437.de/2004/10/02/pic-schraeglage/Spidermanhttps://www.rfc1437.de/2004/10/02/pic-spiderman/und immer wieder Regenhttps://www.rfc1437.de/2004/10/02/pic-und-immer-wieder-regen/US-Regierung zeigt kaum Interesse für Computersicherheithttps://www.rfc1437.de/2004/10/02/us-regierung-zeigt-kaum-interesse-fuer-cmptrschrht/"Argentinier" Rebellin darf nicht bei WM startenhttps://www.rfc1437.de/2004/10/01/argentinier-rebellin-darf-nicht-bei-wm-starten/Instikihttps://www.rfc1437.de/2004/10/01/instiki/Java Runtime Properties for Mac OS Xhttps://www.rfc1437.de/2004/10/01/java-runtime-properties-for-mac-os-x/Merck ruft Medikament zurück - Aktie eingebrochenhttps://www.rfc1437.de/2004/10/01/merck-ruft-medikament-zurueck-aktie-eingebrochen/PythonCard Home Pagehttps://www.rfc1437.de/2004/10/01/pythoncard-home-page/Red Robin - Jythonhttps://www.rfc1437.de/2004/10/01/red-robin-jython/Schmerz-Patientin darf kein Cannabis anbauenhttps://www.rfc1437.de/2004/10/01/schmerz-patientin-darf-kein-cannabis-anbauen/SPE - Stani's Python Editorhttps://www.rfc1437.de/2004/10/01/spe-stani-s-python-editor/Sportarzt Ferrari zu Bewährungsstrafe verurteilthttps://www.rfc1437.de/2004/10/01/sportarzt-ferrari-zu-bewaehrungsstrafe-verurteilt/TvBrowser und Mac OS Xhttps://www.rfc1437.de/2004/10/01/tvbrowser-und-mac-os-x/US-Ministerium wird jeden zweiten Tag gehackthttps://www.rfc1437.de/2004/10/01/us-ministerium-wird-jeden-zweiten-tag-gehackt/wxGlade: a GUI builder for wxWidgets/wxPythonhttps://www.rfc1437.de/2004/10/01/wxglade-a-gui-builder-for-wxwidgets-wxpython/3 ZEOhttps://www.rfc1437.de/2004/09/30/3-zeo/Arachnids and Pachydermshttps://www.rfc1437.de/2004/09/30/arachnids-and-pachyderms/Blogmarks mit im Weblog RSS Feedhttps://www.rfc1437.de/2004/09/30/blogmarks-mit-im-weblog-rss-feed/Anthroposophen: "Der Weltenplan vollzieht sich unerbittlich" - Archiv - SPIEGEL ONLINEhttps://www.rfc1437.de/2004/09/30/nthrpsphn-dr-wltnpln-vllzht-sch-nrbttlch-rchv-spgl/About Dabohttps://www.rfc1437.de/2004/09/29/about-dabo/Angriff auf freie Netzstrukturenhttps://www.rfc1437.de/2004/09/29/angriff-auf-freie-netzstrukturen/BGH prüft Widerrufsmöglichkeit bei ebay-Auktionenhttps://www.rfc1437.de/2004/09/29/bgh-prueft-widerrufsmoeglichkeit-bei-ebay-auktionn/CLiki : Araneidahttps://www.rfc1437.de/2004/09/29/cliki-araneida/Commodore 32 - Standalone Z-Machinehttps://www.rfc1437.de/2004/09/29/commodore-32-standalone-z-machine/CSU will Lernmittelfreiheit doch nicht abschaffenhttps://www.rfc1437.de/2004/09/29/csu-will-lernmittelfreiheit-doch-nicht-abschaffen/Frontier Open Source ist dahttps://www.rfc1437.de/2004/09/29/frontier-open-source-ist-da/Gibt ja manchmal doch noch positives ...https://www.rfc1437.de/2004/09/29/gibt-ja-manchmal-doch-noch-positives/Hasselblad to Distribute New Zeiss Ikon Camera Systemhttps://www.rfc1437.de/2004/09/29/hasselblad-to-distribute-new-zeiss-ikon-camr-systm/Mamiya ZD and digital backhttps://www.rfc1437.de/2004/09/29/mamiya-zd-and-digital-back/Mamiya ZD Datenblatt bei digitalkamera.dehttps://www.rfc1437.de/2004/09/29/mamiya-zd-datenblatt-bei-digitalkamerade/Mehr Platz für .Machttps://www.rfc1437.de/2004/09/29/mehr-platz-fuer-mac/Schiefer Turm von Kölnhttps://www.rfc1437.de/2004/09/29/schiefer-turm-von-koeln/Schiefer Turm von Köln: Ermittlungenhttps://www.rfc1437.de/2004/09/29/schiefer-turm-von-koeln-ermittlungen/Anwalt bestreitet Kenntnis von den Handlungen der FTPWelt-Betreiberhttps://www.rfc1437.de/2004/09/28/anwalt-bstrtt-knntns-vn-dn-hndlngn-dr-ftpwlt-btrbr/Bundesamt für Strahlenschutz: Vorsicht beim Umgang mit Handyshttps://www.rfc1437.de/2004/09/28/bundesamt-fuer-strhlnschtz-vrscht-bm-mgng-mt-hndys/CDU plant Abbau von Arbeitnehmerrechtenhttps://www.rfc1437.de/2004/09/28/cdu-plant-abbau-von-arbeitnehmerrechten/Contax i4Rhttps://www.rfc1437.de/2004/09/28/contax-i4r/Rollei runderneuerthttps://www.rfc1437.de/2004/09/28/rollei-runderneuert/Adobe will einheitliches Format für Digitalkamera-Rohdaten etablierenhttps://www.rfc1437.de/2004/09/27/adobe-will-einheitlchs-frmt-fr-dgtlkmr-rhdtn-tblrn/Four-Thirds-Nachwuchs: Olympus E-300https://www.rfc1437.de/2004/09/27/four-thirds-nachwuchs-olympus-e-300/Gewaltiger Asteroid fliegt nahe an der Erde vorbeihttps://www.rfc1437.de/2004/09/27/gewaltiger-asteroid-fliegt-nahe-an-der-erde-vorbei/Janus Softwarehttps://www.rfc1437.de/2004/09/27/janus-software/pcphttps://www.rfc1437.de/2004/09/27/pcp/SFTP Chroot Howtohttps://www.rfc1437.de/2004/09/27/sftp-chroot-howto/Sicherheitslücke war eBay lange bekannthttps://www.rfc1437.de/2004/09/27/sicherheitsluecke-war-ebay-lange-bekannt/Süße Überraschung im Gas- und Staubnebelhttps://www.rfc1437.de/2004/09/27/suesse-ueberraschung-im-gas-und-staubnebel/Ullrich withdraws from world's TThttps://www.rfc1437.de/2004/09/27/ullrich-withdraws-from-worlds-tt/BetterHTMLExporthttps://www.rfc1437.de/2004/09/26/betterhtmlexport/Embedding Gallery Into An Existing Communityhttps://www.rfc1437.de/2004/09/26/embedding-gallery-into-an-existing-community/Gallery :: your photos on your websitehttps://www.rfc1437.de/2004/09/26/gallery-your-photos-on-your-website/iPhotoToGalleryhttps://www.rfc1437.de/2004/09/26/iphototogallery/Kommunalwahlen Münsterhttps://www.rfc1437.de/2004/09/26/kommunalwahlen-muenster/Myriad: Galleriehttps://www.rfc1437.de/2004/09/26/myriad-gallerie/PHP/SWF Chartshttps://www.rfc1437.de/2004/09/26/php-swf-charts/T-Mobile mit neuer Führung ab 2006https://www.rfc1437.de/2004/09/26/t-mobile-mit-neuer-fuehrung-ab-2006/Big tours pull from ProTourhttps://www.rfc1437.de/2004/09/25/big-tours-pull-from-protour/Chapter 2. Building OpenMCL from its Source Codehttps://www.rfc1437.de/2004/09/25/chapter-2-building-openmcl-from-its-source-code/Gravierende Sicherheitslücke bei Ebayhttps://www.rfc1437.de/2004/09/25/gravierende-sicherheitsluecke-bei-ebay/mel-basehttps://www.rfc1437.de/2004/09/25/mel-base/Schily: Mehr Macht beim Bund im Anti-Terror-Kampfhttps://www.rfc1437.de/2004/09/25/schily-mehr-macht-beim-bund-im-anti-terror-kampf/Bayescl -- cvs-prereleasehttps://www.rfc1437.de/2004/09/24/bayescl-cvs-prerelease/BDR-Präsidentin Sylvia Schenk tritt zurückhttps://www.rfc1437.de/2004/09/24/bdr-praesidentin-sylvia-schenk-tritt-zurueck/Chronik Massenkarambolage im Allhttps://www.rfc1437.de/2004/09/24/chronik-massenkarambolage-im-all/CL-PREVALENCEhttps://www.rfc1437.de/2004/09/24/cl-prevalence/GROKLAW - SCO hat nie die aktuellen Sourcen verglichenhttps://www.rfc1437.de/2004/09/24/groklaw-sco-hat-nie-die-aktuellen-sourcen-verglchn/heise online - Anti-Spam-Arbeitsgruppe MARID der IETF streicht die Segelhttps://www.rfc1437.de/2004/09/24/heise-onlin-nt-spm-rbtsgrpp-mrd-dr-tf-strcht-d-sgl/Intel gegen «Inside»-Websiteshttps://www.rfc1437.de/2004/09/24/intel-gegen-inside-websites/Lispix Table of Contentshttps://www.rfc1437.de/2004/09/24/lispix-table-of-contents/MetaOCaml Homepagehttps://www.rfc1437.de/2004/09/24/metaocaml-homepage/Persistent Lisp OBjectshttps://www.rfc1437.de/2004/09/24/persistent-lisp-objects/Pg: a Common Lisp interface to PostgreSQLhttps://www.rfc1437.de/2004/09/24/pg-a-common-lisp-interface-to-postgresql/Projects at Common-Lisp.nethttps://www.rfc1437.de/2004/09/24/projects-at-common-lisp-net/py2app builds its first .apphttps://www.rfc1437.de/2004/09/24/py2app-builds-its-first-app/Sam Ruby: Copy and Pastehttps://www.rfc1437.de/2004/09/24/sam-ruby-copy-and-paste/SZOn - "Sammlung Cremer" geht nach Münsterhttps://www.rfc1437.de/2004/09/24/szon-sammlung-cremer-geht-nach-muenster/VIPS image processing library home pagehttps://www.rfc1437.de/2004/09/24/vips-image-processing-library-home-page/AllegroServe - a Web Application Serverhttps://www.rfc1437.de/2004/09/23/allegroserve-a-web-application-server/Bayern schafft Lernmittelfreiheit abhttps://www.rfc1437.de/2004/09/23/bayern-schafft-lernmittelfreiheit-ab/Clean Corpushttps://www.rfc1437.de/2004/09/23/clean-corpus/Common Lisp Hypermedia Server (CL-HTTP)https://www.rfc1437.de/2004/09/23/common-lisp-hypermedia-server-cl-http/Common Lisp Opensource Centerhttps://www.rfc1437.de/2004/09/23/common-lisp-opensource-center/Fall Hamilton: Vuelta-B-Probe positivhttps://www.rfc1437.de/2004/09/23/fall-hamilton-vuelta-b-probe-positiv/Jenoptik Announces 22 Megapixel Eyelike eMotion²² Digital Backhttps://www.rfc1437.de/2004/09/23/jenoptik-announces-22-megapixel-eyelk-mtn-dgtl-bck/Lisp news von Rainer Joswighttps://www.rfc1437.de/2004/09/23/lisp-news-von-rainer-joswig/lisp tools for xmlhttps://www.rfc1437.de/2004/09/23/lisp-tools-for-xml/LyX WikiWiki - LyX.Machttps://www.rfc1437.de/2004/09/23/lyx-wikiwiki-lyxmac/OpenMCL-McCLIM-beagle-backend.jpghttps://www.rfc1437.de/2004/09/23/openmcl-mcclim-beagle-backendjpg/Portable AllegroServehttps://www.rfc1437.de/2004/09/23/portable-allegroserve/S-XMLhttps://www.rfc1437.de/2004/09/23/s-xml/S-XML-RPChttps://www.rfc1437.de/2004/09/23/s-xml-rpc/Statistical programming with Rhttps://www.rfc1437.de/2004/09/23/statistical-programming-with-r/Suchmaschinen-Eintrag &amp; Optimierunghttps://www.rfc1437.de/2004/09/23/suchmaschinen-eintrag-amp-optimierung/TeX on Mac OS Xhttps://www.rfc1437.de/2004/09/23/tex-on-mac-os-x/woodshed productions: Dialog zwischen Webdesigner und Suchmaschinen-Robothttps://www.rfc1437.de/2004/09/23/wodshd-prdctns-dlg-zwschn-wbdsgnr-nd-schmschnn-rbt/woodshed productions: Beratung: Suchmaschinen-Optimierunghttps://www.rfc1437.de/2004/09/23/woodshed-productions-beratung-suchmaschinen/XML/HTML parsershttps://www.rfc1437.de/2004/09/23/xml-html-parsers/Zum Kotzen ...https://www.rfc1437.de/2004/09/23/zum-kotzen/Bürofrusthttps://www.rfc1437.de/2004/09/22/buerofrust/datt is der Joerschhttps://www.rfc1437.de/2004/09/22/datt-is-der-joersch/ImageWellhttps://www.rfc1437.de/2004/09/22/imagewell/Inventory: you have no teahttps://www.rfc1437.de/2004/09/22/inventory-you-have-no-tea/lispmeister: Assembler Guru: Randall Hydehttps://www.rfc1437.de/2004/09/22/lispmeister-assembler-guru-randall-hyde/Make hard drives in to speakershttps://www.rfc1437.de/2004/09/22/make-hard-drives-in-to-speakers/Microsoft announces MTP protocolhttps://www.rfc1437.de/2004/09/22/microsoft-announces-mtp-protocol/Der Stift ist stärkerhttps://www.rfc1437.de/2004/09/22/pic-der-stift-ist-staerker/Fahrradparkhaus Münsterhttps://www.rfc1437.de/2004/09/22/pic-fahrradparkhaus-muenster/Krimskramshttps://www.rfc1437.de/2004/09/22/pic-krimskrams/Licht und Schattenhttps://www.rfc1437.de/2004/09/22/pic-licht-und-schatten/Tarnfarbenhttps://www.rfc1437.de/2004/09/22/pic-tarnfarben/Wuschel Seggehttps://www.rfc1437.de/2004/09/22/pic-wuschel-segge/:: radiant data ::https://www.rfc1437.de/2004/09/22/radiant-data/Bosco HOWTOhttps://www.rfc1437.de/2004/09/21/bosco-howto-2/Hamilton der Blut-Transfusion überführthttps://www.rfc1437.de/2004/09/21/hamilton-der-blut-transfusion-ueberfuehrt/Hessen-CDU finanzierte sich zeitweise aus Schwarzgeldhttps://www.rfc1437.de/2004/09/21/hessen-cdu-finanzierte-sich-zeitweise-as-schwrzgld/Microsoft: Keine Lizenz - keine Flickenhttps://www.rfc1437.de/2004/09/21/microsoft-keine-lizenz-keine-flicken/NASA vergibt Großauftrag zum Bau des Atom-Raumschiffs JIMOhttps://www.rfc1437.de/2004/09/21/nasa-vergibt-grossauftrag-zum-ba-ds-tm-rmschffs-jm/Neue Version des PDA-Systems OpenZaurus fertig gestellthttps://www.rfc1437.de/2004/09/21/neue-version-des-pda-systems-openzaurs-frtg-gstllt/Rechte Websites hacken? Hacken?https://www.rfc1437.de/2004/09/21/rechte-websites-hacken-hacken/Voigtlander Bessa R2A R3Ahttps://www.rfc1437.de/2004/09/21/voigtlander-bessa-r2a-r3a/Der Nacktmull: www.kultvieh.de.vuhttps://www.rfc1437.de/2004/09/20/der-nacktmull-wwwkultviehdevu/Digitale Rückwand für Leica-Kamerashttps://www.rfc1437.de/2004/09/20/digitale-rueckwand-fuer-leica-kameras/Flickr Serviceshttps://www.rfc1437.de/2004/09/20/flickr-services/Fortran: 50 Jahre go tohttps://www.rfc1437.de/2004/09/20/fortran-50-jahre-go-to/ITMS Link Makerhttps://www.rfc1437.de/2004/09/20/itms-link-maker/LISA - Intelligent Software Agents for Common Lisphttps://www.rfc1437.de/2004/09/20/lisa-intelligent-software-agents-for-common-lisp/Logilab.org - Constrainthttps://www.rfc1437.de/2004/09/20/logilab-org-constraint/pirate (python on parrot)https://www.rfc1437.de/2004/09/20/pirate-python-on-parrot/PyLog -- A first order logic library in Pythonhttps://www.rfc1437.de/2004/09/20/pylog-a-first-order-logic-library-in-python/Vorwurf des Code-Diebstahls an Mambo-Projekthttps://www.rfc1437.de/2004/09/20/vorwurf-des-code-diebstahls-an-mambo-projekt/Edgewall | Trachttps://www.rfc1437.de/2004/09/19/edgewall-trac/Ian Bickings Wikihttps://www.rfc1437.de/2004/09/19/ian-bickings-wiki/Neuer Hochstrom-Akku von Hamahttps://www.rfc1437.de/2004/09/19/neuer-hochstrom-akku-von-hama/Playboys Open Source Mirrorhttps://www.rfc1437.de/2004/09/19/playboys-open-source-mirror/Sergei Mikhailovich Prokudin-Gorskiihttps://www.rfc1437.de/2004/09/19/sergei-mikhailovich-prokudin-gorskii/Wahlen in Brandenburg und Sachsenhttps://www.rfc1437.de/2004/09/19/wahlen-in-brandenburg-und-sachsen/isnoop.net gmail invite spoolerhttps://www.rfc1437.de/2004/09/18/isnoopnet-gmail-invite-spooler/Microsofts Patent bedroht weiterhin möglichen Anti-Spam-Standardhttps://www.rfc1437.de/2004/09/18/microsofts-patent-bdrht-wtrhn-mglchn-nt-spm-stndrd/osxAudio.comhttps://www.rfc1437.de/2004/09/18/osxaudio-com/Des Kanzlers neue Ideenhttps://www.rfc1437.de/2004/09/17/des-kanzlers-neue-ideen/Factor Beispielserverhttps://www.rfc1437.de/2004/09/17/factor-beispielserver/IO auf Symbian Nokia Handyshttps://www.rfc1437.de/2004/09/17/io-auf-symbian-nokia-handys/Schily: Verfassungsgericht ist schuld am NPD-Erfolghttps://www.rfc1437.de/2004/09/17/schily-verfassungsgericht-ist-schuld-am-npd-erfolg/The GBBopen Projecthttps://www.rfc1437.de/2004/09/17/the-gbbopen-project/Warez-Razzia: FTPWelt-Nutzer müssen mit Strafverfahren rechnenhttps://www.rfc1437.de/2004/09/17/warez-razzia-ftpwelt-ntzr-mssn-mt-strfvrfhrn-rchnn/Zeiss Ikon Kamera mit M Bajonett von Cosina?https://www.rfc1437.de/2004/09/17/zeiss-ikon-kamera-mit-m-bajonett-von-cosina/Bernhard Syndikus in Haft?https://www.rfc1437.de/2004/09/16/bernhard-syndikus-in-haft/Britisches Unterhaus verbietet Fuchsjagdhttps://www.rfc1437.de/2004/09/16/britisches-unterhaus-verbietet-fuchsjagd/GOOhttps://www.rfc1437.de/2004/09/16/goo/TNPI - Homemade (Do It Yourself) .mac using mod_dav and Apachehttps://www.rfc1437.de/2004/09/16/tnpi-homemade-do-it-yourself-mac-using-mod-dav/Aktuelle Gesetzehttps://www.rfc1437.de/2004/09/15/aktuelle-gesetze/Aquariumhttps://www.rfc1437.de/2004/09/15/aquarium-2/Digitaler Vergrößerer für Fotopapierhttps://www.rfc1437.de/2004/09/15/digitaler-vergroesserer-fuer-fotopapier/::jamesoff:: » Check RBL for WordPress 0.1https://www.rfc1437.de/2004/09/15/jamesoff-check-rbl-for-wordpress-0-1/Juristen fordern kostenlose Gesetze für allehttps://www.rfc1437.de/2004/09/15/juristen-fordern-kostenlose-gesetze-fuer-alle/Kodak 35 Rangefinderhttps://www.rfc1437.de/2004/09/15/kodak-35-rangefinder/Konica Minolta Announces Dynax 7D DSLRhttps://www.rfc1437.de/2004/09/15/konica-minolta-announces-dynax-7d-dslr/Kryptonite Evolution 2000 U- Lock hacked by a Bic penhttps://www.rfc1437.de/2004/09/15/kryptonite-evolution-2000-u-lock-hacked-by-a-bc-pn/lemonodor: Lisp for the Mindstormhttps://www.rfc1437.de/2004/09/15/lemonodor-lisp-for-the-mindstorm/MrEd Designerhttps://www.rfc1437.de/2004/09/15/mred-designer/The Robinson House | RSS and Delta Encodinghttps://www.rfc1437.de/2004/09/15/the-robinson-house-rss-and-delta-encoding/Carbon Cannibal: Breaking it down for the hard drivehttps://www.rfc1437.de/2004/09/14/carbon-cannibal-breaking-it-down-for-the-hard-driv/Cayman Updatehttps://www.rfc1437.de/2004/09/14/cayman-update/elephanthttps://www.rfc1437.de/2004/09/14/elephant/newLisp: A better Lisp/Scheme Fusion...https://www.rfc1437.de/2004/09/14/newlisp-a-better-lispscheme-fusion/paranoidfish.org/projects/webkit2pnghttps://www.rfc1437.de/2004/09/14/paranoidfish-org-projects-webkit2png/Schwächen im MIME-Standardhttps://www.rfc1437.de/2004/09/14/schwaechen-im-mime-standard/SCO vs. Linux: Mehr Zeit und mehr Zeilen für SCOhttps://www.rfc1437.de/2004/09/14/sco-vs-linux-mehr-zeit-und-mehr-zeilen-fuer-sco/Streit um Privatkopie und Auskunftsansprüche spitzt sich zuhttps://www.rfc1437.de/2004/09/14/streit-um-privatkopie-und-sknftsnsprch-sptzt-sch-z/USA: Angriffswaffen ab heute wieder legalhttps://www.rfc1437.de/2004/09/14/usa-angriffswaffen-ab-heute-wieder-legal/Wer besticht, kommt auf die Listehttps://www.rfc1437.de/2004/09/14/wer-besticht-kommt-auf-die-liste/2 GB Daten hochgeladenhttps://www.rfc1437.de/2004/09/13/2-gb-daten-hochgeladen/BBC Radio Playerhttps://www.rfc1437.de/2004/09/13/bbc-radio-player/Collations and Linguistic Sortinghttps://www.rfc1437.de/2004/09/13/collations-and-linguistic-sorting/Der letzte Weißwal Europas ist ausgewanderthttps://www.rfc1437.de/2004/09/13/der-letzte-weisswal-europas-ist-ausgewandert/Die Leica und ihre Geschichte - Leica IIIghttps://www.rfc1437.de/2004/09/13/die-leica-und-ihre-geschichte-leica-iiig/Emacs on Aquahttps://www.rfc1437.de/2004/09/13/emacs-on-aqua/Kuchenvernichtung ...https://www.rfc1437.de/2004/09/13/kuchenvernichtung/Mal wieder RSS Bandbreitehttps://www.rfc1437.de/2004/09/13/mal-wieder-rss-bandbreite/mindlube software / developer / revclipshttps://www.rfc1437.de/2004/09/13/mindlube-software-developer-revclips-2/mindlube software / developer / revzeroconfhttps://www.rfc1437.de/2004/09/13/mindlube-software-developer-revzeroconf/mindlube software / emacs for os xhttps://www.rfc1437.de/2004/09/13/mindlube-software-emacs-for-os-x/Kuchenvernichtung ...https://www.rfc1437.de/2004/09/13/pic-kuchenvernichtung/Porkrind Dot Org: Carbon Emacs Porthttps://www.rfc1437.de/2004/09/13/porkrind-dot-org-carbon-emacs-port/Schwarze Katze, Weisser Katerhttps://www.rfc1437.de/2004/09/13/schwarze-katze-weisser-kater-2/Shelltools aus alten Tagenhttps://www.rfc1437.de/2004/09/13/shelltools-aus-alten-tagen/Vim (Vi IMproved) for Mac OSXhttps://www.rfc1437.de/2004/09/13/vim-vi-improved-for-mac-osx/Voigtlander 35/1.2https://www.rfc1437.de/2004/09/13/voigtlander-3512/Moblogging Testhttps://www.rfc1437.de/2004/09/12/moblogging-test/OzTeXhttps://www.rfc1437.de/2004/09/12/oztex/9-11https://www.rfc1437.de/2004/09/11/9-11/RFC 2229https://www.rfc1437.de/2004/09/11/rfc-2229/Squawks of the Parrot: Suboptimal optimizinghttps://www.rfc1437.de/2004/09/11/squawks-of-the-parrot-suboptimal-optimizing/Das Web ist kleinhttps://www.rfc1437.de/2004/09/10/das-web-ist-klein/Kölner Stollwerck-Fabrik wird geschlossenhttps://www.rfc1437.de/2004/09/10/koelner-stollwerck-fabrik-wird-geschlossen/More on Nokia's 9300 Communicatorhttps://www.rfc1437.de/2004/09/10/more-on-nokias-9300-communicator/Rolleiflex Thttps://www.rfc1437.de/2004/09/10/rolleiflex-t/Sony hat doofe Ohrenhttps://www.rfc1437.de/2004/09/10/sony-hat-doofe-ohren/Back ...https://www.rfc1437.de/2004/09/09/back/Nasa-Raumsonde Genesis stürzthttps://www.rfc1437.de/2004/09/09/nasa-raumsonde-genesis-stuerzt/Bloglaub bis Donnerstag Nachthttps://www.rfc1437.de/2004/09/04/bloglaub-bis-donnerstag-nacht/HyperPAD - Application Development Software published by Brightbill-Roberts and IQ Technologies.https://www.rfc1437.de/2004/09/04/hyprpd-pplctn-dvlpmnt-sftwr-pblshd-by-brghtbll-rbr/Perversion, diesmal öffentlich-rechtlichhttps://www.rfc1437.de/2004/09/03/perversion-diesmal-oeffentlich-rechtlich/Streit um Microsofts Patentansprüche lässt Anti-Spam-Standard wackelnhttps://www.rfc1437.de/2004/09/03/strt-m-mcrsfts-ptntnsprch-lsst-nt-spm-stndrd-wckln/Was für einen Scheiss man auf eBay alles finden kannhttps://www.rfc1437.de/2004/09/03/was-fuer-einen-scheiss-man-auf-ebay-alles-fndn-knn/Leica - OBE - Prototyp 2https://www.rfc1437.de/2004/09/02/leica-obe-prototyp-2/Milosevic darf sich nicht mehr selbst verteidigenhttps://www.rfc1437.de/2004/09/02/milosevic-darf-sich-nicht-mehr-selbst-verteidigen/Aufruf zum Trackbackinghttps://www.rfc1437.de/2004/09/01/aufruf-zum-trackbacking/Dialerseite tippt "OK" im Dialer ein [Update]https://www.rfc1437.de/2004/09/01/dialerseite-tippt-ok-im-dialer-ein-update/Dreamcard offers Hypercard-like environmenthttps://www.rfc1437.de/2004/09/01/dreamcard-offers-hypercard-like-environment/Morons in the News: Diebold Machines Appear to Have Built-in Code for Fraudhttps://www.rfc1437.de/2004/09/01/morns-n-th-nws-dbld-mchns-ppr-t-hv-blt-n-cd-fr-frd/Rebellin wird Argentinier: Mit neuem Pass zur WMhttps://www.rfc1437.de/2004/09/01/rebellin-wird-argentinier-mit-neuem-pass-zur-wm/Smalltalk/X - das vergessene Smalltalkhttps://www.rfc1437.de/2004/09/01/smalltalkx-das-vergessene-smalltalk/WebHome - Cookbook - s c h e m a t i c s : c o o k b o o khttps://www.rfc1437.de/2004/09/01/webhome-cookbook-s-c-h-e-m-a-t-i-c-s-c-o-o-k-b-o/Zweifel an der Zuverlässigkeit von eBays Sicherheitskonzepthttps://www.rfc1437.de/2004/09/01/zweifel-an-der-zuverlaessigket-vn-bys-schrhtsknzpt/Apache 2.0 module mod_macrohttps://www.rfc1437.de/2004/08/31/apache-2-0-module-mod-macro/Carvware Softwarehttps://www.rfc1437.de/2004/08/31/carvware-software/eBay.de: Domain-Kapern leicht gemachthttps://www.rfc1437.de/2004/08/31/ebayde-domain-kapern-leicht-gemacht/Google-Mail-Invites-Invasionhttps://www.rfc1437.de/2004/08/31/google-mail-invites-invasion/Hamburger Senat im Law-and-Order-Wahnhttps://www.rfc1437.de/2004/08/31/hamburger-senat-im-law-and-order-wahn/Handys bald mit atomgenauer Uhrzeithttps://www.rfc1437.de/2004/08/31/handys-bald-mit-atomgenauer-uhrzeit/lemonodor: PlaneThttps://www.rfc1437.de/2004/08/31/lemonodor-planet/Project Schematicshttps://www.rfc1437.de/2004/08/31/project-schematics/Shitcannedhttps://www.rfc1437.de/2004/08/31/shitcanned/Skype - Download Skype for Mac OS Xhttps://www.rfc1437.de/2004/08/31/skype-download-skype-for-mac-os-x/spgsqlhttps://www.rfc1437.de/2004/08/31/spgsql/Zach Beanehttps://www.rfc1437.de/2004/08/31/zach-beane/Berlinerin klagt in Karlsruhe gegen Hartzhttps://www.rfc1437.de/2004/08/30/berlinerin-klagt-in-karlsruhe-gegen-hartz/Iohttps://www.rfc1437.de/2004/08/30/io/Powerbook: 1, God: 0https://www.rfc1437.de/2004/08/30/powerbook-1-god-0/Raser unter sichhttps://www.rfc1437.de/2004/08/30/raser-unter-sich/Sony Announces 7 Megapixel Cyber-shot DSC-V3https://www.rfc1437.de/2004/08/30/sony-announces-7-megapixel-cyber-shot-dsc-v3/Visual Studio Magazine - Guest Opinion - Save the Hobbyist Programmerhttps://www.rfc1437.de/2004/08/30/visual-studio-magazin-gst-pnn-sv-th-hbbyst-prgrmmr/Why Most Landscapes Suckhttps://www.rfc1437.de/2004/08/30/why-most-landscapes-suck/Zitat des Tageshttps://www.rfc1437.de/2004/08/30/zitat-des-tages/eBay wird von einem Haufen Idioten betriebenhttps://www.rfc1437.de/2004/08/29/ebay-wird-von-einem-haufen-idioten-betrieben/GmailFS - Gmail Filesystemhttps://www.rfc1437.de/2004/08/29/gmailfs-gmail-filesystem/vnc2swf - Screen Recorderhttps://www.rfc1437.de/2004/08/29/vnc2swf-screen-recorder/Der neue Duden ist dahttps://www.rfc1437.de/2004/08/28/der-neue-duden-ist-da/Ihr wißt es sowieso schon allehttps://www.rfc1437.de/2004/08/28/ihr-wisst-es-sowieso-schon-alle/Leica Announces CM ZOOM Film Camerahttps://www.rfc1437.de/2004/08/28/leica-announces-cm-zoom-film-camera/Maut gegen die Wand fahrenhttps://www.rfc1437.de/2004/08/28/maut-gegen-die-wand-fahren/USB-Cams: Der K(r)ampf mit der GPLhttps://www.rfc1437.de/2004/08/28/usb-cams-der-krampf-mit-der-gpl/Kieferknochen aus Rückenmuskel verpflanzthttps://www.rfc1437.de/2004/08/27/kieferknochen-aus-rueckenmuskel-verpflanzt/librephttps://www.rfc1437.de/2004/08/27/librep/Lush: Lisp Universal SHellhttps://www.rfc1437.de/2004/08/27/lush-lisp-universal-shell/mod_rephttps://www.rfc1437.de/2004/08/27/mod-rep/Rhizomehttps://www.rfc1437.de/2004/08/27/rhizome/SourceForge.net: Project Info - Common Lisp JPEG Libraryhttps://www.rfc1437.de/2004/08/27/sourceforge-net-project-info-common-lisp-jpeg/thunk webserverhttps://www.rfc1437.de/2004/08/27/thunk-webserver/Bigloo homepagehttps://www.rfc1437.de/2004/08/26/bigloo-homepage/Entwickler und ihr Unverständnis von Open Sourcehttps://www.rfc1437.de/2004/08/26/entwickler-und-ihr-unverstaendnis-von-open-source/Linda and Service Oriented Architectureshttps://www.rfc1437.de/2004/08/26/linda-and-service-oriented-architectures/Optimal syntax for Python decoratorshttps://www.rfc1437.de/2004/08/26/optimal-syntax-for-python-decorators/Psychehttps://www.rfc1437.de/2004/08/26/psyche-2/QSchemehttps://www.rfc1437.de/2004/08/26/qscheme/Schemixhttps://www.rfc1437.de/2004/08/26/schemix/Welcome to Myghty!https://www.rfc1437.de/2004/08/26/welcome-to-myghty/A Conversation with Manfrend von Thunhttps://www.rfc1437.de/2004/08/25/a-conversation-with-manfrend-von-thun/Candygramhttps://www.rfc1437.de/2004/08/25/candygram/Debian Backportshttps://www.rfc1437.de/2004/08/25/debian-backports/Google Mail Invites verfügbarhttps://www.rfc1437.de/2004/08/25/google-mail-invites-verfuegbar/Main page for the programming language JOYhttps://www.rfc1437.de/2004/08/25/main-page-for-the-programming-language-joy/The Pentax OptioXhttps://www.rfc1437.de/2004/08/25/the-pentax-optiox/Ilford Goes Into Administrationhttps://www.rfc1437.de/2004/08/24/ilford-goes-into-administration/Microsoft bekommt "sudo-Patent" zugeteilthttps://www.rfc1437.de/2004/08/23/microsoft-bekommt-sudo-patent-zugeteilt/News: Ärger um cdrecordhttps://www.rfc1437.de/2004/08/23/news-aerger-um-cdrecord/SourceForge.net: Project Info - DoXFS Document Management Systemhttps://www.rfc1437.de/2004/08/23/sourceforge-net-project-info-doxfs-document/vnunet.com - Micro Focus lifts and shifts Cobol to Linuxhttps://www.rfc1437.de/2004/08/23/vnunetcom-micro-focus-lifts-and-shifts-cobol-t-lnx/Das Wort zum Montaghttps://www.rfc1437.de/2004/08/22/das-wort-zum-montag/Flambierter Saphirhttps://www.rfc1437.de/2004/08/22/flambierter-saphir/Paolo Amoroso: Update on McCLIM''s Beagle backendhttps://www.rfc1437.de/2004/08/22/paolo-amoroso-update-on-mcclims-beagle-backend/Zukünftige EU-Kommissarin machte Bill Gates zum Ehrendoktorhttps://www.rfc1437.de/2004/08/22/zukuenftige-eu-kommissarin-mcht-bll-gts-zm-hrndktr/Deutschland verliert zwei Goldmedaillen - olympia.ARD.dehttps://www.rfc1437.de/2004/08/21/deutschland-verliert-zwei-goldmedaillen-olympiardd/Form submission and the ENTER key?https://www.rfc1437.de/2004/08/20/form-submission-and-the-enter-key/Hacker-Anriff auf Forschungsstation am Südpolhttps://www.rfc1437.de/2004/08/20/hacker-anriff-auf-forschungsstation-am-suedpol/Internet-Telefonie nicht mit beliebiger Vorwahlhttps://www.rfc1437.de/2004/08/20/internet-telefonie-nicht-mit-beliebiger-vorwahl/PmWiki - sehr weit ausgebautes Wikihttps://www.rfc1437.de/2004/08/20/pmwiki-sehr-weit-ausgebautes-wiki/Zeitung: Behörden können ab 2005 Bankkonten einsehenhttps://www.rfc1437.de/2004/08/20/zeitung-behoerden-koennen-ab-2005-bankkonten-enshn/Agfa knipst Fotogeschäft aushttps://www.rfc1437.de/2004/08/19/agfa-knipst-fotogeschaeft-aus/"Coffee and Cigarettes" - der neue Film von Jim Jarmuschhttps://www.rfc1437.de/2004/08/19/coffee-and-cigarettes-der-neue-film-von-jim-jrmsch/details about the shebang mechanismhttps://www.rfc1437.de/2004/08/19/details-about-the-shebang-mechanism/Infektion durch Fehler im Internet Explorer trotz Service Pack 2https://www.rfc1437.de/2004/08/19/infektion-durch-fhlr-m-ntrnt-xplrr-trtz-srvc-pck-2/Modeling Object-Relational Bridge for pythonhttps://www.rfc1437.de/2004/08/19/modeling-object-relational-bridge-for-python/SCO vs. Linux: IBM schlägt zurückhttps://www.rfc1437.de/2004/08/19/sco-vs-linux-ibm-schlaegt-zurueck/Debakel im Kampf gegen die Uhr - olympia.ARD.dehttps://www.rfc1437.de/2004/08/18/debakel-im-kampf-gegen-die-uhr-olympiaardde/"Ein-Euro-Job" - was ist das?https://www.rfc1437.de/2004/08/18/ein-euro-job-was-ist-das/NewsForge |https://www.rfc1437.de/2004/08/18/newsforge/Olympische Spiele: Leontien Van Moorsels glanzvoller Abschiedhttps://www.rfc1437.de/2004/08/18/olympische-spiele-leontien-vn-mrsls-glnzvllr-bschd/Things to make you go "Ow, stop, my head hurts!"https://www.rfc1437.de/2004/08/18/things-to-make-you-go-ow-stop-my-head-hurts/@https://www.rfc1437.de/2004/08/17/2/Arbeitgeber wollen Beamtenpensionen kürzenhttps://www.rfc1437.de/2004/08/17/arbeitgeber-wollen-beamtenpensionen-kuerzen/FastMail: Fast free or paid IMAP webmail with SMTP, POP & IMAP accesshttps://www.rfc1437.de/2004/08/17/fastmail-fast-fre-r-pd-mp-wbml-wth-smtp-pp-mp-ccss/Google-Suche: Georg Bauerhttps://www.rfc1437.de/2004/08/17/google-suche-georg-bauer/Kinder von Straftätern sollen vom Kindergartenalter ab erfasst und überwacht werdenhttps://www.rfc1437.de/2004/08/17/kndr-vn-strfttrn-slln-vm-kndrgrtnltr-b-rfsst-nd-br/Kanther vor Gericht: "Linke Speerspitze stumpf gemacht" - Politik - SPIEGEL ONLINEhttps://www.rfc1437.de/2004/08/17/knthr-vr-grcht-lnk-sprsptz-stmpf-gmcht-pltk-spgl-n/NPD im Sächsischen Landtag?https://www.rfc1437.de/2004/08/17/npd-im-saechsischen-landtag/Patent auf Verzögerung bei User-Registrierunghttps://www.rfc1437.de/2004/08/17/patent-auf-verzoegerung-bei-user-registrierung/Perl.com: The Evolution of Perl Email Handlinghttps://www.rfc1437.de/2004/08/17/perlcom-the-evolution-of-perl-email-handling/Prozess gegen Kanther beginnthttps://www.rfc1437.de/2004/08/17/prozess-gegen-kanther-beginnt/Schmu bei Steinzeit-Schädeln | stern.de | Wissenschaft&Gesundheit | Menschhttps://www.rfc1437.de/2004/08/17/schmu-bei-stnzt-schdln-strnd-wssnschftgsndht-mnsch/Tauschgeschäftehttps://www.rfc1437.de/2004/08/17/tauschgeschaefte/USA erkennen Sieg von Chavez nicht anhttps://www.rfc1437.de/2004/08/17/usa-erkennen-sieg-von-chavez-nicht-an/Wirbel um Verbraucherschutz-Forum Snakecityhttps://www.rfc1437.de/2004/08/17/wirbel-um-verbraucherschutz-forum-snakecity/Google Search: blogtimes.pnghttps://www.rfc1437.de/2004/08/16/google-search-blogtimespng/GROKLAW zum Businessweek-Artikel über GPLhttps://www.rfc1437.de/2004/08/16/groklaw-zum-businessweek-artikel-ueber-gpl/Index of /pub/sun3arc/BootTapes/3.5https://www.rfc1437.de/2004/08/16/index-of-pub-sun3arc-boottapes-3-5/Index of /pub/sun3arc/BootTapes/Sun3https://www.rfc1437.de/2004/08/16/index-of-pub-sun3arc-boottapes-sun3/Internationale Domains und Wordpresshttps://www.rfc1437.de/2004/08/16/internationale-domains-und-wordpress/Lorem Ipsum - The Motherlodehttps://www.rfc1437.de/2004/08/16/lorem-ipsum-the-motherlode/Metropolitan vor dem Aus?https://www.rfc1437.de/2004/08/16/metropolitan-vor-dem-aus/P2P als Update-Hilfe für Windows unerwünschthttps://www.rfc1437.de/2004/08/16/p2p-als-update-hilfe-fuer-windows-unerwuenscht/The rescue Archiveshttps://www.rfc1437.de/2004/08/16/the-rescue-archives/Zijlaard-van Moorsel still questionable for TThttps://www.rfc1437.de/2004/08/16/zijlaard-van-moorsel-still-questionable-for-tt/brickOS at SourceForgehttps://www.rfc1437.de/2004/08/15/brickos-at-sourceforge/DVD RW/ R/-R[W] for Linuxhttps://www.rfc1437.de/2004/08/15/dvd-rw-r-r-w-for-linux/Erste Eindrücke von Textpatternhttps://www.rfc1437.de/2004/08/15/erste-eindruecke-von-textpattern/mySTEP - aktuelle Version 1.7https://www.rfc1437.de/2004/08/15/mystep-aktuelle-version-17/Olympisches Strassenrennen der Frauenhttps://www.rfc1437.de/2004/08/15/olympisches-strassenrennen-der-frauen/Textpattern und punycodehttps://www.rfc1437.de/2004/08/15/textpattern-und-punycode/Tie-a-Tie.net | Learn How to Tie a Tiehttps://www.rfc1437.de/2004/08/15/tie-a-tie-net-learn-how-to-tie-a-tie/Writing DVDs under Debian GNU/LINUXhttps://www.rfc1437.de/2004/08/15/writing-dvds-under-debian-gnu-linux/Der Mensch als kommerzielle Markehttps://www.rfc1437.de/2004/08/14/der-mensch-als-kommerzielle-marke/Dogma (1999)https://www.rfc1437.de/2004/08/14/dogma-1999/Geschichten aus dem orthografischen Märchenwaldhttps://www.rfc1437.de/2004/08/14/geschichten-aus-dem-orthografischen-maerchenwald/Treble - Ramagananahttps://www.rfc1437.de/2004/08/14/treble-ramaganana/From Python to PLT Schemehttps://www.rfc1437.de/2004/08/13/from-python-to-plt-scheme/Genmanipulation macht Affen zu Workaholicshttps://www.rfc1437.de/2004/08/13/genmanipulation-macht-affen-zu-workaholics/Hasselblad and Imacon Mergehttps://www.rfc1437.de/2004/08/13/hasselblad-and-imacon-merge/"Ich bin für diesen Job nicht qualifiziert"https://www.rfc1437.de/2004/08/13/ich-bin-fuer-diesen-job-nicht-qualifiziert/SCO vs. Linux: Analyse der Analystenhttps://www.rfc1437.de/2004/08/13/sco-vs-linux-analyse-der-analysten/Systemupgrades und ihre Freudenhttps://www.rfc1437.de/2004/08/13/systemupgrades-und-ihre-freuden/The Python Paradoxhttps://www.rfc1437.de/2004/08/13/the-python-paradox/Add-on lenses for your cameraphonehttps://www.rfc1437.de/2004/08/12/add-on-lenses-for-your-cameraphone/Databases and Scshhttps://www.rfc1437.de/2004/08/12/databases-and-scsh/Ein schwarzer Tag für die Menschenrechte in Großbritannienhttps://www.rfc1437.de/2004/08/12/ein-schwarzer-tag-fuer-die-mnschnrcht-n-grssbrtnnn/iPod vs. The Cassettehttps://www.rfc1437.de/2004/08/12/ipod-vs-the-cassette/Scheme Underground Network Packagehttps://www.rfc1437.de/2004/08/12/scheme-underground-network-package/Serverumzug erfolgthttps://www.rfc1437.de/2004/08/12/serverumzug-erfolgt/Stu Nicholls | Cutting Edge CSS | A CSS fonthttps://www.rfc1437.de/2004/08/12/stu-nicholls-cutting-edge-css-a-css-font/The IE weblog makes me laughhttps://www.rfc1437.de/2004/08/12/the-ie-weblog-makes-me-laugh/Tsearch2 - full text extension for PostgreSQLhttps://www.rfc1437.de/2004/08/12/tsearch2-full-text-extension-for-postgresql-2/Bill Clementson: Mandelbrot Set ASCII arthttps://www.rfc1437.de/2004/08/11/bill-clementson-mandelbrot-set-ascii-art/Two terabyte memory cardhttps://www.rfc1437.de/2004/08/11/two-terabyte-memory-card/CLiki : Armed Bear Lisphttps://www.rfc1437.de/2004/08/10/cliki-armed-bear-lisp/MzTake - a Scriptable Debuggerhttps://www.rfc1437.de/2004/08/10/mztake-a-scriptable-debugger/Python on Smalltalk VM?https://www.rfc1437.de/2004/08/10/python-on-smalltalk-vm/Schon gegen Heuschnupfen geimpft?https://www.rfc1437.de/2004/08/10/schon-gegen-heuschnupfen-geimpft/blog: bknr-develhttps://www.rfc1437.de/2004/08/09/blog-bknr-devel/Bluetooth-Attacken auf Handys aus fast 2 km Entfernung - Golem.dehttps://www.rfc1437.de/2004/08/09/bluetooth-attacken-f-hndys-s-fst-2-km-ntfrnng-glmd/Mikel Evins: Clotho statushttps://www.rfc1437.de/2004/08/09/mikel-evins-clotho-status/phil ringnalda dot com: First look at MSN blogshttps://www.rfc1437.de/2004/08/09/phil-ringnalda-dot-com-first-look-at-msn-blogs/Unwetter fluten Teile von NRWhttps://www.rfc1437.de/2004/08/08/unwetter-fluten-teile-von-nrw/Beckstein begrüßt geplante Flüchtlingslager in Afrikahttps://www.rfc1437.de/2004/08/07/beckstein-begruesst-geplante-fluechtlingslgr-n-frk/Lafontaine droht mit Engagement bei Linksparteihttps://www.rfc1437.de/2004/08/07/lafontaine-droht-mit-engagement-bei-linkspartei/NETZEITUNG MUSIC: Pink Floyds «The Wall» wird Musicalhttps://www.rfc1437.de/2004/08/07/netzeitung-music-pink-floyds-the-wall-wird-musical/NETZEITUNG SPORT: Voigt weiter im Gelben Trikothttps://www.rfc1437.de/2004/08/07/netzeitung-sport-voigt-weiter-im-gelben-trikot/Serverumzug verzögert sich etwashttps://www.rfc1437.de/2004/08/07/serverumzug-verzoegert-sich-etwas/Zehntausenden Versicherten wird Rechtsschutz gekündigthttps://www.rfc1437.de/2004/08/07/zehntausenden-versicherten-wird-rechtsschtz-gkndgt/Zur Lage der "Nation Blog" [blogosfear.org]https://www.rfc1437.de/2004/08/07/zur-lage-der-nation-blog-blogosfearorg/Capitol Hill Blue: Dubya Does It Again!https://www.rfc1437.de/2004/08/06/capitol-hill-blue-dubya-does-it-again/SCO vs. Linux: Nach dem Code kommen die Lizenzenhttps://www.rfc1437.de/2004/08/06/sco-vs-linux-nach-dem-code-kommen-die-lizenzen/Simulators: Virtual Machines of the Past (and Future)https://www.rfc1437.de/2004/08/06/simulators-virtual-machines-of-the-past-and-future/Spiegel und Springer: Schreiben wie früherhttps://www.rfc1437.de/2004/08/06/spiegel-und-springer-schreiben-wie-frueher/Strato-Rechenzentren vom TÜV zertifizierthttps://www.rfc1437.de/2004/08/06/strato-rechenzentren-vom-tuev-zertifiziert/T-Systems öffnet Spam-Schleusehttps://www.rfc1437.de/2004/08/06/t-systems-oeffnet-spam-schleuse/Warmhttps://www.rfc1437.de/2004/08/06/warm/Benneter: Anti-Schröder-Brief ist unverschämthttps://www.rfc1437.de/2004/08/05/benneter-anti-schroeder-brief-ist-unverschaemt/Cyclonehttps://www.rfc1437.de/2004/08/04/cyclone/dude, where''s my python?https://www.rfc1437.de/2004/08/04/dude-wheres-my-python/Henri Cartier-Bresson ist tothttps://www.rfc1437.de/2004/08/04/henri-cartier-bresson-ist-tot/iMovie entfernt Kopierschutz von Apples Kaufmusikhttps://www.rfc1437.de/2004/08/04/imovie-entfernt-kopierschutz-von-apples-kaufmusik/News: München legt LiMux aufs Eishttps://www.rfc1437.de/2004/08/04/news-muenchen-legt-limux-aufs-eis/Sicherheitsleck erlaubt Lesen des Linux-Kernel-Speichershttps://www.rfc1437.de/2004/08/04/sicherheitsleck-erlaubt-lesen-des-linx-krnl-spchrs/ALG II: Auch Kinder-Sparbücher werden überprüfthttps://www.rfc1437.de/2004/08/03/alg-ii-auch-kinder-sparbuecher-werden-ueberprueft/Amigo-Vorwürfe gegen Hohlmeiers Bürohttps://www.rfc1437.de/2004/08/03/amigo-vorwuerfe-gegen-hohlmeiers-buero/c't - Artikel-Recherchehttps://www.rfc1437.de/2004/08/03/ct-artikel-recherche/Gmail Full!https://www.rfc1437.de/2004/08/03/gmail-full/Jugendmedienschutz: Alterskontrolle per PostIdent reicht nichthttps://www.rfc1437.de/2004/08/03/jugendmedienschutz-altrskntrll-pr-pstdnt-rcht-ncht/Kabeljau stirbt langsam aushttps://www.rfc1437.de/2004/08/03/kabeljau-stirbt-langsam-aus/Panasonic R3 Reviewhttps://www.rfc1437.de/2004/08/03/panasonic-r3-review/Protesters Once More Arrested for Protesting Bushhttps://www.rfc1437.de/2004/08/03/protesters-once-more-arrested-for-protesting-bush/Bahn will hunderte Ticketschalter schließenhttps://www.rfc1437.de/2004/08/02/bahn-will-hunderte-ticketschalter-schliessen/"Im Zweifelsfall gegen den Angeklagten"https://www.rfc1437.de/2004/08/02/im-zweifelsfall-gegen-den-angeklagten/Klöden zögert mit Vertragsverlängerunghttps://www.rfc1437.de/2004/08/02/kloeden-zoegert-mit-vertragsverlaengerung/Serverarbeiten an meinem Serverhttps://www.rfc1437.de/2004/08/02/serverarbeiten-an-meinem-server/USES AND APPLICATIONS OF 35mm LENSEShttps://www.rfc1437.de/2004/08/01/uses-and-applications-of-35mm-lenses/Ambrai Smalltalkhttps://www.rfc1437.de/2004/07/31/ambrai-smalltalk/Keine Piraten auf dem (T)Raumschiffhttps://www.rfc1437.de/2004/07/31/keine-piraten-auf-dem-traumschiff/Kritik an Vatikan-Brief zu Feminismushttps://www.rfc1437.de/2004/07/31/kritik-an-vatikan-brief-zu-feminismus/Paarzeitfahren in Bühl: Sieg an CSC-Duo Voigt und Julichhttps://www.rfc1437.de/2004/07/31/paarzeitfahren-in-buehl-sieg-an-csc-du-vgt-nd-jlch/Ein Hoch auf die Systemadministratoren ...https://www.rfc1437.de/2004/07/30/ein-hoch-auf-die-systemadministratoren/Finanzdaten online -- unerreichbarhttps://www.rfc1437.de/2004/07/30/finanzdaten-online-unerreichbar/Hightech-Konzerne wollen "JPEG-Patent" kippenhttps://www.rfc1437.de/2004/07/30/hightech-konzerne-wollen-jpeg-patent-kippen/Musikgruppe Rammstein lässt Rammsteinfan.de schließenhttps://www.rfc1437.de/2004/07/30/musikgruppe-rammstein-laesst-rammsteinfand-schlssn/That Gunk on Your Carhttps://www.rfc1437.de/2004/07/30/that-gunk-on-your-car/Bosco HOWTOhttps://www.rfc1437.de/2004/07/29/bosco-howto/IronPython - A fast Python implementation for .NET and Monohttps://www.rfc1437.de/2004/07/29/ironpython-a-fast-python-implementatin-fr-nt-nd-mn/Jake Ludington's Digital Lifestyle - Using the tools that make computing fun.https://www.rfc1437.de/2004/07/29/jk-ldngtns-dgtl-lfstyl-sng-th-tls-tht-mk-cmptng-fn/Last.FM - Your personal music network - Personalised online radio stationhttps://www.rfc1437.de/2004/07/29/lastfm-your-personal-msc-ntwrk-prsnlsd-nln-rd-sttn/safeurl.dehttps://www.rfc1437.de/2004/07/29/safeurlde/Siemens überrascht mit Gewinnsprunghttps://www.rfc1437.de/2004/07/29/siemens-ueberrascht-mit-gewinnsprung/Kommunen klagen über Pflicht zu barrierefreien Internetseitenhttps://www.rfc1437.de/2004/07/28/kommunen-klagen-ueber-pflicht-zu-barrrfrn-ntrntstn/Castro attackiert Bush: Kuba kein Ziel für Sextouristenhttps://www.rfc1437.de/2004/07/27/castro-attackiert-bush-kuba-kein-ziel-fuer-sxtrstn/Current Books about Iconhttps://www.rfc1437.de/2004/07/27/current-books-about-icon/Hagen Boßdorf und das journalistische Selbstverständnishttps://www.rfc1437.de/2004/07/27/hagen-bossdorf-und-das-journalistsch-slbstvrstndns/Österreichische Außenministerin wird EU-Kommissarinhttps://www.rfc1437.de/2004/07/27/oesterreichische-aussenministerin-wird-eu-kommssrn/Statistisches Bundesamt: Euro kein Teurohttps://www.rfc1437.de/2004/07/27/statistisches-bundesamt-euro-kein-teuro/Streit bei T-Mobile spitzt sich zuhttps://www.rfc1437.de/2004/07/27/streit-bei-t-mobile-spitzt-sich-zu/Unicon.org - the Unicon Programming Language Home Pagehttps://www.rfc1437.de/2004/07/27/uniconorg-the-unicon-programming-language-home-pag/Debatte über Arbeitsrecht wird schärferhttps://www.rfc1437.de/2004/07/26/debatte-ueber-arbeitsrecht-wird-schaerfer/Geoffroy-Klammeraffehttps://www.rfc1437.de/2004/07/26/geoffroy-klammeraffe/Re: Sender-ID and free softwarehttps://www.rfc1437.de/2004/07/26/re-sender-id-and-free-software/Schwerwiegende Sicherheitsmängel bei T-Comhttps://www.rfc1437.de/2004/07/26/schwerwiegende-sicherheitsmaengel-bei-t-com/The Piri Reis Maphttps://www.rfc1437.de/2004/07/26/the-piri-reis-map/Big Lebowski, The (1998)https://www.rfc1437.de/2004/07/25/big-lebowski-the-1998/Going all loopy about loupeshttps://www.rfc1437.de/2004/07/25/going-all-loopy-about-loupes/Tja, Tour 2004 zuendehttps://www.rfc1437.de/2004/07/25/tja-tour-2004-zuende/Guantanamo-Feeling: Die falschen Stempel im Passhttps://www.rfc1437.de/2004/07/24/guantanamo-feeling-die-falschen-stempel-im-pass/Phishing ist ja nix neues ...https://www.rfc1437.de/2004/07/24/phishing-ist-ja-nix-neues/Salmonellen-Keim in Putenfleisch entdeckthttps://www.rfc1437.de/2004/07/24/salmonellen-keim-in-putenfleisch-entdeckt/SCO vs. Linux: BayStar will Klage einreichenhttps://www.rfc1437.de/2004/07/24/sco-vs-linux-baystar-will-klage-einreichen/The Cyborg Name Generator: HUGOhttps://www.rfc1437.de/2004/07/24/the-cyborg-name-generator-hugo/Deutsches Gericht bestätigt Wirksamkeit der GPLhttps://www.rfc1437.de/2004/07/23/deutsches-gericht-bestaetigt-wirksamkeit-der-gpl/"Judas" Voigt: "Ich hätte heulen können"https://www.rfc1437.de/2004/07/22/judas-voigt-ich-haette-heulen-koennen/Monitor gucken macht depressivhttps://www.rfc1437.de/2004/07/22/monitor-gucken-macht-depressiv/Nach Freispruch bleiben moralische Zweifelhttps://www.rfc1437.de/2004/07/22/nach-freispruch-bleiben-moralische-zweifel/Run, baby, run - Armstrong-Freundin Sheryl Crow bei der Tourhttps://www.rfc1437.de/2004/07/22/run-baby-run-armstrong-freundin-sheryl-crw-b-dr-tr/Spammer ignoriere ich ja üblicherweise ...https://www.rfc1437.de/2004/07/22/spammer-ignoriere-ich-ja-ueblicherweise/Blog-Dienst 20six übernimmt myBlog.dehttps://www.rfc1437.de/2004/07/21/blog-dienst-20six-uebernimmt-myblogde/Den "Radsportfans" ins Stammbuchhttps://www.rfc1437.de/2004/07/21/den-radsportfans-ins-stammbuch/SCO Claims Linux Lifted ELF (LinuxWorld)https://www.rfc1437.de/2004/07/21/sco-claims-linux-lifted-elf-linuxworld/Web-Loch beim Sat.1-Internetexpertenhttps://www.rfc1437.de/2004/07/21/web-loch-beim-sat1-internetexperten/Alles meckert über Armstrong ...https://www.rfc1437.de/2004/07/20/alles-meckert-ueber-armstrong/Japan droht mit Austritt aus Walfangkommissionhttps://www.rfc1437.de/2004/07/20/japan-droht-mit-austritt-aus-walfangkommission/Nur mal so am Randehttps://www.rfc1437.de/2004/07/20/nur-mal-so-am-rande/Urteil zu AG-Domains verschärfthttps://www.rfc1437.de/2004/07/20/urteil-zu-ag-domains-verschaerft/Wenn die rosa Rennwurst platzthttps://www.rfc1437.de/2004/07/20/wenn-die-rosa-rennwurst-platzt/Wo ich gerade bei Verlogenheit binhttps://www.rfc1437.de/2004/07/20/wo-ich-gerade-bei-verlogenheit-bin/Derek''s Rantings and Musings: Those Little Oval Stickers on Carshttps://www.rfc1437.de/2004/07/19/dereks-rantings-and-msngs-ths-lttl-vl-stckrs-n-crs/Emotionale Entscheidunghttps://www.rfc1437.de/2004/07/19/emotionale-entscheidung/Firefox - Switchhttps://www.rfc1437.de/2004/07/19/firefox-switch/Publizieren im Internet lohnt sichhttps://www.rfc1437.de/2004/07/19/publizieren-im-internet-lohnt-sich/Stehradlerhttps://www.rfc1437.de/2004/07/19/stehradler/Ein nationaler Held der USA wird festgenommenhttps://www.rfc1437.de/2004/07/18/ein-nationaler-held-der-usa-wird-festgenommen/English or nothttps://www.rfc1437.de/2004/07/18/english-or-not/Gott spricht durch Bush?https://www.rfc1437.de/2004/07/18/gott-spricht-durch-bush/"She''s lost control"https://www.rfc1437.de/2004/07/18/shes-lost-control/Bundesagentur für Arbeit: Ungereimtheiten um Millionen-Auftraghttps://www.rfc1437.de/2004/07/17/bundesagentur-fuer-arbeit-ungeremthtn-m-mllnn-ftrg/Erster Virus für Windows Mobile/Pocket PChttps://www.rfc1437.de/2004/07/17/erster-virus-fuer-windows-mobilepocket-pc/Marsroboter "Spirit" und "Opportunity" weiterhin einsatzfähighttps://www.rfc1437.de/2004/07/17/marsroboter-spirit-und-opportunity-weitrhn-nstzfhg/Sheriff Kochs und Deputy Bouffiers Possehttps://www.rfc1437.de/2004/07/17/sheriff-kochs-und-deputy-bouffiers-posse/Voeckler und Voigt - zwei klasse Kämpferhttps://www.rfc1437.de/2004/07/17/voeckler-und-voigt-zwei-klasse-kaempfer/Boo - Homehttps://www.rfc1437.de/2004/07/16/boo-home/Deutsche Bank warnt vor Softwarepatentenhttps://www.rfc1437.de/2004/07/16/deutsche-bank-warnt-vor-softwarepatenten/Mal wieder nur Ticker, aber ...https://www.rfc1437.de/2004/07/16/mal-wieder-nur-ticker-aber/Die Zeiten werden wohl sehr hart ...https://www.rfc1437.de/2004/07/15/die-zeiten-werden-wohl-sehr-hart/Schwangerenberatung auch ohne Schein förderwürdighttps://www.rfc1437.de/2004/07/15/schwangerenberatung-auch-ohne-schein-foerderwuerdg/Leider nur Ticker, aber die Etappe war wohl Klassehttps://www.rfc1437.de/2004/07/14/leider-nur-ticker-aber-die-etappe-war-wohl-klasse/Patentstreithttps://www.rfc1437.de/2004/07/14/patentstreit/Qualitätsjournalismus de Luxehttps://www.rfc1437.de/2004/07/14/qualitaetsjournalismus-de-luxe/The Discovery of Umamihttps://www.rfc1437.de/2004/07/14/the-discovery-of-umami/The Long Now Foundation: Feynman und die Connection Machinehttps://www.rfc1437.de/2004/07/14/the-long-now-foundation-feynman-und-di-cnnctn-mchn/classic camerahttps://www.rfc1437.de/2004/07/13/classic-camera/gmail ist seltsamhttps://www.rfc1437.de/2004/07/13/gmail-ist-seltsam/McEwen mag ich den Sieg heute nicht gönnenhttps://www.rfc1437.de/2004/07/13/mcewen-mag-ich-den-sieg-heute-nicht-goennen/Syd Barretthttps://www.rfc1437.de/2004/07/13/syd-barrett/Wegmanns Tour-Premiere: "Da hatte ich einen kleinen Schock "https://www.rfc1437.de/2004/07/13/wegmanns-tour-premiere-da-hatte-ich-enn-klnn-schck/Windows XP sicherer als Linux und Mac OSX!https://www.rfc1437.de/2004/07/13/windows-xp-sicherer-als-linux-und-mac-osx/Aids-Konferenz streitet über Kondomehttps://www.rfc1437.de/2004/07/12/aids-konferenz-streitet-ueber-kondome/Bush will »notfalls« US-Wahlen verschiebenhttps://www.rfc1437.de/2004/07/12/bush-will-notfalls-us-wahlen-verschieben/DaimlerChrysler droht mit Produktionsverlagerunghttps://www.rfc1437.de/2004/07/12/daimlerchrysler-droht-mit-produktionsverlagerung/FCKeditor - The text editor for Internethttps://www.rfc1437.de/2004/07/12/fckeditor-the-text-editor-for-internet/gppl's nesthttps://www.rfc1437.de/2004/07/12/gppl-s-nest/gut getroffenhttps://www.rfc1437.de/2004/07/12/gut-getroffen/Gwydion Dylan: Overviewhttps://www.rfc1437.de/2004/07/12/gwydion-dylan-overview/ICANN bleibt beim Sitefinder harthttps://www.rfc1437.de/2004/07/12/icann-bleibt-beim-sitefinder-hart/LWN: Oracle patents content management systemshttps://www.rfc1437.de/2004/07/12/lwn-oracle-patents-content-management-systems/Marlais Sourceforge Projecthttps://www.rfc1437.de/2004/07/12/marlais-sourceforge-project/Missbrauchsskandal an österreichischem Priesterseminarhttps://www.rfc1437.de/2004/07/12/missbrauchsskandal-an-oesterreichischem-pristrsmnr/Rent A Coder - Automated Form Fillerhttps://www.rfc1437.de/2004/07/12/rent-a-coder-automated-form-filler/Sinnkrisen bei Bloggern?https://www.rfc1437.de/2004/07/12/sinnkrisen-bei-bloggern/%u2018Building Accessible Websites%u2019 serializationhttps://www.rfc1437.de/2004/07/12/u2018building-accessible-websites-u2019/Wer ruft denn da an?https://www.rfc1437.de/2004/07/12/wer-ruft-denn-da-an/Coriolis Systems :: Products :: iPartitionhttps://www.rfc1437.de/2004/07/11/coriolis-systems-products-ipartition/SubrosaSoft.com - Product Informationhttps://www.rfc1437.de/2004/07/11/subrosasoft-com-product-information/Arbeitgeber kritisieren Vorschläge zur Urlaubskürzunghttps://www.rfc1437.de/2004/07/10/arbeitgeber-kritisieren-vorschlaege-zur-urlbskrzng/Haselbacher: Gebrochener Lenker Sturzursachehttps://www.rfc1437.de/2004/07/10/haselbacher-gebrochener-lenker-sturzursache/Sensor Brushhttps://www.rfc1437.de/2004/07/10/sensor-brush/Fast Ego-Blogginghttps://www.rfc1437.de/2004/07/09/fast-ego-blogging/Hamilton erlitt schwere Prellungenhttps://www.rfc1437.de/2004/07/09/hamilton-erlitt-schwere-prellungen/Haselbacher: Kein Becken- oder Beinbruchhttps://www.rfc1437.de/2004/07/09/haselbacher-kein-becken-oder-beinbruch/Indien und Bangladesch streiten um Elefanten im Grenzgebiethttps://www.rfc1437.de/2004/07/09/indien-und-bangladesch-streiten-um-lfntn-m-grnzgbt/Klage gegen Adobe wegen Patentverletzung durch Acrobathttps://www.rfc1437.de/2004/07/09/klage-gegen-adobe-wegen-patentverletzung-drch-crbt/Man Accused of AltaVista Theft Working on MSN Search?https://www.rfc1437.de/2004/07/09/man-accused-of-altavista-theft-working-on-msn-srch/Petacchi and Cipollini both leave Tourhttps://www.rfc1437.de/2004/07/09/petacchi-and-cipollini-both-leave-tour/Professoren wegen Online-Betrug vor Gerichthttps://www.rfc1437.de/2004/07/09/professoren-wegen-online-betrug-vor-gericht/SCO vs. Linux: SCO fordert ungehinderten Zugang zu den Beweisenhttps://www.rfc1437.de/2004/07/09/sco-vs-linux-sco-fordert-ungehndrtn-zgng-z-dn-bwsn/Urteil: Besitz kleiner Cannabis-Mengen weiter strafbarhttps://www.rfc1437.de/2004/07/09/urteil-besitz-kleiner-cannabis-mengen-weitr-strfbr/XHTML Validator to RSS : Ben Hammersleyhttps://www.rfc1437.de/2004/07/09/xhtml-validator-to-rss-ben-hammersley/Abkommen über Spam unter der Ägide der ITU?https://www.rfc1437.de/2004/07/08/abkommen-ueber-spam-unter-der-aegide-der-itu/BDI fordert eine Woche Urlaub wenigerhttps://www.rfc1437.de/2004/07/08/bdi-fordert-eine-woche-urlaub-weniger/Epson RD-1 Beispielehttps://www.rfc1437.de/2004/07/08/epson-rd-1-beispiele/Wenn sich Sprinter belauern ...https://www.rfc1437.de/2004/07/08/wenn-sich-sprinter-belauern/Zafira nach Polen wegen Rüstungsdeal?https://www.rfc1437.de/2004/07/08/zafira-nach-polen-wegen-ruestungsdeal/PyLindahttps://www.rfc1437.de/2004/07/07/pylinda/Rettung für Hamburger Filmförderunghttps://www.rfc1437.de/2004/07/07/rettung-fuer-hamburger-filmfoerderung/Tour de France: Iban Mayo erlebt sein Waterloohttps://www.rfc1437.de/2004/07/07/tour-de-france-iban-mayo-erlebt-sein-waterloo/UN: Spam-Problem in zwei Jahren lösbarhttps://www.rfc1437.de/2004/07/07/un-spam-problem-in-zwei-jahren-loesbar/Bundeskanzler: Patente stärken Innovationswillen und Investitionsbereitschafthttps://www.rfc1437.de/2004/07/06/bndsknzlr-ptnt-strkn-nnvtnswlln-nd-nvsttnsbrtschft/Dialer-Abzocke mit dem Namen c't unterbundenhttps://www.rfc1437.de/2004/07/06/dialer-abzocke-mit-dem-namen-ct-unterbunden/Ex-Kulturhauptstadtskandidat ohne Kulturdezernenten?https://www.rfc1437.de/2004/07/06/ex-kulturhauptstadtskandidat-ohne-kulturdezernentn/iPods a security risk, warns complete idiothttps://www.rfc1437.de/2004/07/06/ipods-a-security-risk-warns-complete-idiot/The internet is shithttps://www.rfc1437.de/2004/07/06/the-internet-is-shit/Weils gestern um Online-Oldies ging ...https://www.rfc1437.de/2004/07/06/weils-gestern-um-online-oldies-ging/Widerstand gegen 50-Stunden-Wochehttps://www.rfc1437.de/2004/07/06/widerstand-gegen-50-stunden-woche/Alte Säcke onlinehttps://www.rfc1437.de/2004/07/05/alte-saecke-online/Ego-Blogginghttps://www.rfc1437.de/2004/07/05/ego-blogging/MUTE: Simple, Anonymous File Sharinghttps://www.rfc1437.de/2004/07/05/mute-simple-anonymous-file-sharing/Schröder regt Entlastung der Pharmaindustrie anhttps://www.rfc1437.de/2004/07/05/schroeder-regt-entlastung-der-pharmaindustrie-an/Steffen Wesemann von Auto angefahrenhttps://www.rfc1437.de/2004/07/05/steffen-wesemann-von-auto-angefahren/Backlight-Kits für HP Handhelds | backlight4you.comhttps://www.rfc1437.de/2004/07/04/backlight-kits-fuer-hp-handhelds-backlight4you-com/Bericht: Software-Projekt für Finanzämter gescheiterthttps://www.rfc1437.de/2004/07/04/bericht-software-projekt-fuer-finanzaemter-gschtrt/Digital Research's GEM (Intel 8086 version!)https://www.rfc1437.de/2004/07/04/digital-research-s-gem-intel-8086-version/DOS Palmtopshttps://www.rfc1437.de/2004/07/04/dos-palmtops/GEM for HP200LXhttps://www.rfc1437.de/2004/07/04/gem-for-hp200lx/HP 100LX/200LX Technical Informationhttps://www.rfc1437.de/2004/07/04/hp-100lx-200lx-technical-information-2/HP 200 LXhttps://www.rfc1437.de/2004/07/04/hp-200-lx/Index of /ftp/software/lotu[...]/Magellan/2.x/mischttps://www.rfc1437.de/2004/07/04/index-of-ftp-software-lotu-magellan-2-x-misc/Index of /ftp/software/lotu[...]top/Agenda/dos/2.0https://www.rfc1437.de/2004/07/04/index-of-ftp-software-lotu-top-agenda-dos-2-0/Infrared communication with the palmtop HP 200LXhttps://www.rfc1437.de/2004/07/04/infrared-communication-with-the-palmtop-hp-200lx/MindMap/LX - MM/LXhttps://www.rfc1437.de/2004/07/04/mindmap-lx-mm-lx/Morons in the News: Conservative response to Fahrenheit 9/11: A conservative film festivalhttps://www.rfc1437.de/2004/07/04/mrns-n-th-nws-cnsrvtv-rspns-t-fhrnht-911-cnsrvtv/The S.U.P.E.R. Site by Categoryhttps://www.rfc1437.de/2004/07/04/the-s-u-p-e-r-site-by-category/WWW/LX - the Internet Solution in Your Pocket!https://www.rfc1437.de/2004/07/04/www-lx-the-internet-solution-in-your-pocket-2/Zypries plant Abgabe auf PCs und Druckerhttps://www.rfc1437.de/2004/07/04/zypries-plant-abgabe-auf-pcs-und-drucker/BSI stellt Behörden-Desktop zum Download bereithttps://www.rfc1437.de/2004/07/03/bsi-stellt-behoerden-desktop-zum-download-bereit/Gewerkschafter und SPD-Kritiker gründen Linksbündnishttps://www.rfc1437.de/2004/07/03/gewerkschafter-und-spd-kritiker-gruenden-lnksbndns/Index of /afs/cs.cmu.edu/pr[...]ng/scheme/impl/s88https://www.rfc1437.de/2004/07/03/index-of-afs-cs-cmu-edu-pr-ng-scheme-impl-s88/Index of /afs/cs.cmu.edu/pr[...]pl/pcscheme/genevahttps://www.rfc1437.de/2004/07/03/index-of-afs-cs-cmu-edu-pr-pl-pcscheme-geneva/Index of /pub/scheme-repository/imp/pcschemehttps://www.rfc1437.de/2004/07/03/index-of-pub-scheme-repository-imp-pcscheme/LX2Palmhttps://www.rfc1437.de/2004/07/03/lx2palm/Palmtop Information Centralhttps://www.rfc1437.de/2004/07/03/palmtop-information-central/SPD-Politiker kehren ver.di den Rückenhttps://www.rfc1437.de/2004/07/03/spd-politiker-kehren-verdi-den-ruecken/The HP Palmtop Paper Onlinehttps://www.rfc1437.de/2004/07/03/the-hp-palmtop-paper-online/The HP200LX TCP/IP Suite Home Pagehttps://www.rfc1437.de/2004/07/03/the-hp200lx-tcp-ip-suite-home-page/The Mysterious Web Page of Dr. Dubshttps://www.rfc1437.de/2004/07/03/the-mysterious-web-page-of-dr-dubs/The PAL Pagehttps://www.rfc1437.de/2004/07/03/the-pal-page/TuxMobil: UniX on the HP200LX Palmtophttps://www.rfc1437.de/2004/07/03/tuxmobil-unix-on-the-hp200lx-palmtop/Weniger Urlaub für mehr Jobs?https://www.rfc1437.de/2004/07/03/weniger-urlaub-fuer-mehr-jobs/Agenda Links Pagehttps://www.rfc1437.de/2004/07/02/agenda-links-page/Antrittsredehttps://www.rfc1437.de/2004/07/02/antrittsrede/Clothohttps://www.rfc1437.de/2004/07/02/clotho/Dashboard IIIhttps://www.rfc1437.de/2004/07/02/dashboard-iii/Glibc-based Debian GNU/kFreeBSDhttps://www.rfc1437.de/2004/07/02/glibc-based-debian-gnu-kfreebsd/Open Source Applications Foundationhttps://www.rfc1437.de/2004/07/02/open-source-applications-foundation/Aahattanhttps://www.rfc1437.de/2004/07/02/pic-aahattan/Blauer Wuschelhttps://www.rfc1437.de/2004/07/02/pic-blauer-wuschel/Ein nicht ganz weites Feldhttps://www.rfc1437.de/2004/07/02/pic-ein-nicht-ganz-weites-feld/Rosa Wuschelhttps://www.rfc1437.de/2004/07/02/pic-rosa-wuschel/Symbolkräftige Entscheidung gegen Softwarepatente in Den Haaghttps://www.rfc1437.de/2004/07/02/symbolkraeftige-entscheidung-ggn-sftwrptnt-n-dn-hg/Knowledge management, data mining and information mapping with Grokker.https://www.rfc1437.de/2004/07/01/knowledge-management-data-mining-and-information/Leica Announces Summilux-M f/1.4/50mm ASPH. Lenshttps://www.rfc1437.de/2004/07/01/leica-announces-summilux-m-f1450mm-asph-lens/"Lord of the Rings" hat jetzt künstlichen Trabantenhttps://www.rfc1437.de/2004/07/01/lord-of-the-rings-hat-jetzt-kuenstlichen-trabanten/Sicherheitsloch in iptables bei Linux-Kernel 2.6https://www.rfc1437.de/2004/07/01/sicherheitsloch-in-iptables-bei-linux-kernel-26/Verspielt Siemens seinen guten Ruf?https://www.rfc1437.de/2004/07/01/verspielt-siemens-seinen-guten-ruf/Xanalys LispWorks Press Releasehttps://www.rfc1437.de/2004/07/01/xanalys-lispworks-press-release/Dashboardhttps://www.rfc1437.de/2004/06/30/dashboard/Justizministerium will Online-Kopierern weitere Steine in den Weg legenhttps://www.rfc1437.de/2004/06/30/justizministerim-wll-nln-kprrn-wtr-stn-n-dn-wg-lgn/Tour-Aus für Jaksche nach Trainingsunfallhttps://www.rfc1437.de/2004/06/30/tour-aus-fuer-jaksche-nach-trainingsunfall/Bergen Linux User Grouphttps://www.rfc1437.de/2004/06/29/bergen-linux-user-group/Rechtsfreie Räume sind illegalhttps://www.rfc1437.de/2004/06/29/rechtsfreie-raeume-sind-illegal/Save the iPodhttps://www.rfc1437.de/2004/06/29/save-the-ipod/Urteil: Beamtenbesoldung nach Leistung ist rechtenshttps://www.rfc1437.de/2004/06/29/urteil-beamtenbesoldung-nach-leistung-ist-rechtens/Cupertino, start your photocopiers!https://www.rfc1437.de/2004/06/28/cupertino-start-your-photocopiers/Eingeschränkte Microdrives in Creatives MP3-Player Muvohttps://www.rfc1437.de/2004/06/28/eingeschraenkte-microdrives-in-creatvs-mp3-plyr-mv/Kate Bush Discography - Albums - This Woman's Workhttps://www.rfc1437.de/2004/06/28/kate-bush-discography-albums-this-woman-s-work/Levenshteinhttps://www.rfc1437.de/2004/06/28/levenshtein/mono » Fast Company's Linking Policyhttps://www.rfc1437.de/2004/06/28/mono-fast-companys-linking-policy/Weitere Bilder vom Taschentuchbaumhttps://www.rfc1437.de/2004/06/28/weitere-bilder-vom-taschentuchbaum/Blackbox wird Open Sourcehttps://www.rfc1437.de/2004/06/27/blackbox-wird-open-source/»Eisbär« gehört Grönemeyerhttps://www.rfc1437.de/2004/06/27/eisbaer-gehoert-groenemeyer/Ärzte laufen Sturm gegen Bürgerversicherunghttps://www.rfc1437.de/2004/06/26/aerzte-laufen-sturm-gegen-buergerversicherung/"Bernd das Brot" muss nur noch tagsüber leidenhttps://www.rfc1437.de/2004/06/26/bernd-das-brot-muss-nur-noch-tagsueber-leiden/Digital Camera with 30x Optical Zoomhttps://www.rfc1437.de/2004/06/26/digital-camera-with-30x-optical-zoom/Größte Blüten-Produktion seit Euro-Einführung entdeckthttps://www.rfc1437.de/2004/06/26/groesste-blueten-produktion-seit-eur-nfhrng-ntdckt/idw - Uni Bremen: Frühe Bausteine des Genoms im Meteoriten entdeckthttps://www.rfc1437.de/2004/06/26/idw-uni-bremen-fruehe-bastn-ds-gnms-m-mtrtn-ntdckt/LinuxTag: Global File System unter GPLhttps://www.rfc1437.de/2004/06/26/linuxtag-global-file-system-unter-gpl/Mark/Space launches The Missing Sync 4.0https://www.rfc1437.de/2004/06/26/markspace-launches-the-missing-sync-40/Mehr Arbeit, weniger Geldhttps://www.rfc1437.de/2004/06/26/mehr-arbeit-weniger-geld/Union fordert mehr Sexhttps://www.rfc1437.de/2004/06/26/union-fordert-mehr-sex/Berlusconi will Wahl nicht verloren habenhttps://www.rfc1437.de/2004/06/22/berlusconi-will-wahl-nicht-verloren-haben/OpenMCL Documentationhttps://www.rfc1437.de/2004/06/22/openmcl-documentation/PostgreSQL News 3rd Beta of Slony Master -&gt; Multi-slave replication systemhttps://www.rfc1437.de/2004/06/22/postgresql-news-3rd-beta-of-slony-master-gt-multi/Free fonts by the tons at Fontazm! M Fontshttps://www.rfc1437.de/2004/06/21/free-fonts-by-the-tons-at-fontazm-m-fonts/Image theft htaccess and online aggregators from Ben Hammersley's Dangerous Precedenthttps://www.rfc1437.de/2004/06/21/mg-thft-htccss-nd-nln-ggrgtrs-frm-bn-hmmrslys-dngr/Apple - RSS Informationhttps://www.rfc1437.de/2004/06/20/apple-rss-information/Canon EOS 10D - un-funktionales Designhttps://www.rfc1437.de/2004/06/20/canon-eos-10d-un-funktionales-design/Medication Nationhttps://www.rfc1437.de/2004/06/20/medication-nation/Ullrich gewinnt Tour de Suisse im Zeitfahrenhttps://www.rfc1437.de/2004/06/20/ullrich-gewinnt-tour-de-suisse-im-zeitfahren/XchemeRPChttps://www.rfc1437.de/2004/06/20/xchemerpc-2/Nochmal iTunes - diesmal Problemehttps://www.rfc1437.de/2004/06/18/nochmal-itunes-diesmal-probleme/Satine for Pythonhttps://www.rfc1437.de/2004/06/18/satine-for-python/Stimmungsmache für Studiengebührenhttps://www.rfc1437.de/2004/06/18/stimmungsmache-fuer-studiengebuehren/This is a "stress position"https://www.rfc1437.de/2004/06/18/this-is-a-stress-position/Tour de Suisse: Ullrich weiter im Gelben Trikothttps://www.rfc1437.de/2004/06/18/tour-de-suisse-ullrich-weiter-im-gelben-trikot/Herkulesstaude - eine brennende Gefahrhttps://www.rfc1437.de/2004/06/17/herkulesstaude-eine-brennende-gefahr/iTunes Music Store RSS Generatorhttps://www.rfc1437.de/2004/06/17/itunes-music-store-rss-generator/News: Microsoft distanziert sich von AdTI-Studiehttps://www.rfc1437.de/2004/06/17/news-microsoft-distanziert-sich-von-adti-studie/Auto Bellows PC für Contaxhttps://www.rfc1437.de/2004/06/16/auto-bellows-pc-fuer-contax/Tour de France-Aus für Vinokourovhttps://www.rfc1437.de/2004/06/16/tour-de-france-aus-fuer-vinokourov/Gravierende Sicherheitslücke im Linux-Kernel 2.4 und 2.6https://www.rfc1437.de/2004/06/15/gravierende-sicherheitsluecke-im-lnx-krnl-24-nd-26/iTunes Music Storehttps://www.rfc1437.de/2004/06/15/itunes-music-store/Secret Code: 00000000https://www.rfc1437.de/2004/06/15/secret-code-00000000/Tony's Taschenrechner-Sammlunghttps://www.rfc1437.de/2004/06/15/tonys-taschenrechner-sammlung/Just posted! Canon EOS-1D Mark II Reviewhttps://www.rfc1437.de/2004/06/14/just-posted-canon-eos-1d-mark-ii-review/Vinokourov mit Verdacht auf Brüchehttps://www.rfc1437.de/2004/06/14/vinokourov-mit-verdacht-auf-brueche/Contax RTS Macro Photography - Part Ihttps://www.rfc1437.de/2004/06/13/contax-rts-macro-photography-part-i/Contax RTS Series SLR Camera Modelshttps://www.rfc1437.de/2004/06/13/contax-rts-series-slr-camera-models/EU Wahl fast rumhttps://www.rfc1437.de/2004/06/13/eu-wahl-fast-rum/Radio UserLand: Bootstrap: How to redirect an RSS feedhttps://www.rfc1437.de/2004/06/13/radio-userland-bootstrap-how-to-redirect-an-rss/Blauer Brief für den Bundeswahlleiterhttps://www.rfc1437.de/2004/06/12/blauer-brief-fuer-den-bundeswahlleiter/Dunkler einsamer Saturnmond bekam irdischen Besuchhttps://www.rfc1437.de/2004/06/12/dunkler-einsamer-saturnmond-bekam-irdischen-besuch/Ehlert und Partnerhttps://www.rfc1437.de/2004/06/12/ehlert-und-partner/German licenses launchedhttps://www.rfc1437.de/2004/06/12/german-licenses-launched/Heute vor einem Jahrhttps://www.rfc1437.de/2004/06/12/heute-vor-einem-jahr-2/IBM erhält Patent für Statusanzeige der Feststelltaste bei PC-Tastaturenhttps://www.rfc1437.de/2004/06/12/ibm-rhlt-ptnt-fr-sttsnzg-dr-fststlltst-b-pc-tsttrn/Lupen - Lupe, Handlupen, Taschenlupen, Leuchtlupen, Messlupen, Standlupen, Einschlaglupen, Arbeitslupen, uvm. im Lupen Online Shophttps://www.rfc1437.de/2004/06/12/lupen-lupe-handlupen-taschenlupen-leuchtlupen/Radford photographer to face trial in Jan.https://www.rfc1437.de/2004/06/12/radford-photographer-to-face-trial-in-jan/UserFriendly: They took the "We" out of "Weblog"https://www.rfc1437.de/2004/06/12/userfriendly-they-took-the-we-out-of-weblog/Zurück in der Zukunfthttps://www.rfc1437.de/2004/06/12/zurueck-in-der-zukunft/ASCII - ISO 8859-1 Table with HTML Entity Nameshttps://www.rfc1437.de/2004/06/11/ascii-iso-8859-1-table-with-html-entity-names/Heute vor einem Jahrhttps://www.rfc1437.de/2004/06/11/heute-vor-einem-jahr/Katastrophe! Weltuntergang! Anarchie!https://www.rfc1437.de/2004/06/11/katastrophe-weltuntergang-anarchie/New image gallery plugin - needs testershttps://www.rfc1437.de/2004/06/11/new-image-gallery-plugin-needs-testers/Ray Charles gestorbenhttps://www.rfc1437.de/2004/06/11/ray-charles-gestorben/The 'process' Python modulehttps://www.rfc1437.de/2004/06/11/the-process-python-module/Threadframe: multithreaded stack frame extraction for Pythonhttps://www.rfc1437.de/2004/06/11/threadframe-multithreaded-stack-frame-extraction/Vino schneller als die Polizei erlaubt: Führerschein weghttps://www.rfc1437.de/2004/06/11/vino-schneller-als-die-polizei-erlaubt-fhrrschn-wg/Makroaufnahmen mal etwas andershttps://www.rfc1437.de/2004/06/10/makroaufnahmen-mal-etwas-anders/microlen.htmhttps://www.rfc1437.de/2004/06/10/microlen-htm/Naturkunde mit dem Mikroskop als Hobbyhttps://www.rfc1437.de/2004/06/10/naturkunde-mit-dem-mikroskop-als-hobby/Netzbetreiber bauen Kostenfallen ins Handy einhttps://www.rfc1437.de/2004/06/10/netzbetreiber-bauen-kostenfallen-ins-handy-ein/Stachelansatz eines Kaktushttps://www.rfc1437.de/2004/06/10/pic-stachelansatz-eines-kaktus/Schärfentiefe-, Abbildungsmaßstab und Nahlinsenrechnerhttps://www.rfc1437.de/2004/06/10/schaerfentiefe-abbildungsmassstab-und/Kaktusmilbehttps://www.rfc1437.de/2004/06/10/story-kaktusmilbe/Bus- und Bahnfahren für Behinderte teurer?https://www.rfc1437.de/2004/06/09/bus-und-bahnfahren-fuer-behinderte-teurer/Kino: Unnötige Heldenhttps://www.rfc1437.de/2004/06/09/kino-unnoetige-helden/Koch für neue Atomkraftwerke in Deutschlandhttps://www.rfc1437.de/2004/06/09/koch-fuer-neue-atomkraftwerke-in-deutschland/PyWorkhttps://www.rfc1437.de/2004/06/09/pywork/Xoltar Python Pagehttps://www.rfc1437.de/2004/06/09/xoltar-python-page/Blümchenbilderhttps://www.rfc1437.de/2004/06/08/bluemchenbilder/Europawahl - geht hin und wählt!https://www.rfc1437.de/2004/06/08/europawahl-geht-hin-und-waehlt/Angleridylle und Hochhäuserhttps://www.rfc1437.de/2004/06/08/pic-angleridylle-und-hochhaeuser/Blömkeshttps://www.rfc1437.de/2004/06/08/pic-bloemkes/Hauseingängehttps://www.rfc1437.de/2004/06/08/pic-hauseingaenge/PS/2 and MCA Historyhttps://www.rfc1437.de/2004/06/08/ps-2-and-mca-history/Rebuttal to Ken Brownhttps://www.rfc1437.de/2004/06/08/rebuttal-to-ken-brown/iSync ist Moppelkotzehttps://www.rfc1437.de/2004/06/07/isync-ist-moppelkotze/QDB: Quote #330261https://www.rfc1437.de/2004/06/07/qdb-quote-330261/Reagan und die Sowjetshttps://www.rfc1437.de/2004/06/07/reagan-und-die-sowjets/Another Awesome Algorithm Archivehttps://www.rfc1437.de/2004/06/06/another-awesome-algorithm-archive/Berlusconi will den Kalender ändernhttps://www.rfc1437.de/2004/06/06/berlusconi-will-den-kalender-aendern/Burningbird » Glory Days: The Parable of the Languageshttps://www.rfc1437.de/2004/06/06/burningbird-glory-days-the-parable-of-the-languags/Canon EOS 300D Digital Rebel Tips and Trickshttps://www.rfc1437.de/2004/06/06/canon-eos-300d-digital-rebel-tips-and-tricks/Ian's Shoelace Site - Slipping Shoelace Knots?https://www.rfc1437.de/2004/06/06/ians-shoelace-site-slipping-shoelace-knots/Merkel will AKW-Laufzeiten verlängernhttps://www.rfc1437.de/2004/06/06/merkel-will-akw-laufzeiten-verlaengern/PyPerSyst - Orbtech Wikihttps://www.rfc1437.de/2004/06/06/pypersyst-orbtech-wiki/The Spinning Cube of Potential Doomhttps://www.rfc1437.de/2004/06/06/the-spinning-cube-of-potential-doom/Upcoming Qonos Scientific PDAhttps://www.rfc1437.de/2004/06/06/upcoming-qonos-scientific-pda/Adapters: Olympus E-1https://www.rfc1437.de/2004/06/05/adapters-olympus-e-1/digitale Fine Art Prints - Barytabzug - Iris Giclee Printshttps://www.rfc1437.de/2004/06/05/digitale-fine-art-prints-barytabzug-iris-giclee/Fiskus drohen Steuerausfälle wegen Falls der Mannesmann-Aktienhttps://www.rfc1437.de/2004/06/05/fiskus-drohen-steuerausfll-wgn-flls-dr-mnnsmnn-ktn/Schwarzweiss-Magazin Wollstein 6/2003https://www.rfc1437.de/2004/06/05/schwarzweiss-magazin-wollstein-6-2003/Wahnsinnig spannende Deutschlandtour-Etappehttps://www.rfc1437.de/2004/06/05/wahnsinnig-spannende-deutschlandtour-etappe/BugMeNot.comhttps://www.rfc1437.de/2004/06/04/bugmenotcom/E-MailRelay -- SMTP proxy and store-and-forward MTAhttps://www.rfc1437.de/2004/06/04/e-mailrelay-smtp-proxy-and-store-and-forward-mta/fotoKASTEN - Digitale Fotoentwicklung im Internet - //https://www.rfc1437.de/2004/06/04/fotokasten-digitale-fotoentwicklung-im-internet/mtaproxy.py - Teergrube utuility for SpamBayeshttps://www.rfc1437.de/2004/06/04/mtaproxy-py-teergrube-utuility-for-spambayes/RoughingIT - pyblosxom 1.0 Releasehttps://www.rfc1437.de/2004/06/04/roughingit-pyblosxom-10-release/STIM - MouseSitehttps://www.rfc1437.de/2004/06/04/stim-mousesite/Stopping spam with the Anti-Spam-SMTP-Proxy (ASSP)https://www.rfc1437.de/2004/06/04/stopping-spam-with-the-anti-spam-smtp-proxy-assp-2/Toll Collect: Mauthöhe kann nicht geändert werdenhttps://www.rfc1437.de/2004/06/04/toll-collect-mauthoehe-kann-nicht-geaendert-werden/Tollef Fog Heen : tech/Debian/2004-03-14-15-55_greylistinghttps://www.rfc1437.de/2004/06/04/tollef-fog-heen-tech-debian-2004-03-14-15-55/Tollef Fog Heen : Yahoo Breaking SMTP Standardshttps://www.rfc1437.de/2004/06/04/tollef-fog-heen-yahoo-breaking-smtp-standards/Gallery :: your photos on your websitehttps://www.rfc1437.de/2004/06/03/gallery-your-photos-on-your-website-2/Girls are Evil - mathematischer Beweishttps://www.rfc1437.de/2004/06/03/girls-are-evil-mathematischer-beweis/Omikron Basic 8.0 runs natively on Mac OS Xhttps://www.rfc1437.de/2004/06/03/omikron-basic-80-runs-natively-on-mac-os-x/Photo Organizerhttps://www.rfc1437.de/2004/06/03/photo-organizer/SCO vs. Linux: Mission impossiblehttps://www.rfc1437.de/2004/06/03/sco-vs-linux-mission-impossible/Silverlab Partnerprogrammhttps://www.rfc1437.de/2004/06/03/silverlab-partnerprogramm/Symantec-Chef: Windows ist nicht unsicherer als Linuxhttps://www.rfc1437.de/2004/06/03/symantec-chef-windows-ist-nicht-unsicherer-als-lnx/United States Patent: 6,727,830https://www.rfc1437.de/2004/06/03/united-states-patent-6727830/EditThisPagePHPhttps://www.rfc1437.de/2004/06/02/editthispagephp/SCO vs. Linux: Investor Baystar steigt aushttps://www.rfc1437.de/2004/06/02/sco-vs-linux-investor-baystar-steigt-aus/SF-Autor Bradbury: "Michael Moore ist ein fürchterlicher Mensch" - Kultur - SPIEGEL ONLINEhttps://www.rfc1437.de/2004/06/02/sf-tr-brdbry-mchl-mr-st-n-frchtrlchr-mnsch-kltr-sp/Vellum: a weblogging system in Pythonhttps://www.rfc1437.de/2004/06/02/vellum-a-weblogging-system-in-python/Abenteuer Erde - Zum Geierhttps://www.rfc1437.de/2004/06/01/abenteuer-erde-zum-geier/drbs - Distributed Replicated Blob Serverhttps://www.rfc1437.de/2004/06/01/drbs-distributed-replicated-blob-server/GDL - GNU Data Languagehttps://www.rfc1437.de/2004/06/01/gdl-gnu-data-language/Maypole / Apache::MVChttps://www.rfc1437.de/2004/06/01/maypole-apache-mvc/mnot%u2019s Web log: Ubiquitious Fragment Identifiershttps://www.rfc1437.de/2004/06/01/mnot-u2019s-web-log-ubiquitious-fragment/paramiko: ssh2 protocol for pythonhttps://www.rfc1437.de/2004/06/01/paramiko-ssh2-protocol-for-python/PYSH: A Python Shellhttps://www.rfc1437.de/2004/06/01/pysh-a-python-shell/SoftPear - PC/Mac Interoperabilityhttps://www.rfc1437.de/2004/06/01/softpear-pcmac-interoperability/Sonys Clié nimmt Abschiedhttps://www.rfc1437.de/2004/06/01/sonys-cli-nimmt-abschied/Sun Insists that Red Hat Linux is Proprietaryhttps://www.rfc1437.de/2004/06/01/sun-insists-that-red-hat-linux-is-proprietary/Telekom will Kundendaten von Internetnutzern einsammelnhttps://www.rfc1437.de/2004/06/01/telekom-will-kundendaten-von-internetnutzrn-nsmmln/Acratech, Inc: Precision Machining &amp; Photographic Equipmenthttps://www.rfc1437.de/2004/05/31/acratech-inc-precision-machining-amp-photographic/Curdled (1996)https://www.rfc1437.de/2004/05/31/curdled-1996/Jan Ullrich in der Deutschlandtourhttps://www.rfc1437.de/2004/05/31/jan-ullrich-in-der-deutschlandtour/KODAK PROFESSIONAL READYLOAD Einzelblatt-Packs und Holderhttps://www.rfc1437.de/2004/05/31/kodak-professional-readyload-einzelblatt-packs/Lycos - webhostinghttps://www.rfc1437.de/2004/05/31/lycos-webhosting/Mark Lentczner's Journalhttps://www.rfc1437.de/2004/05/31/mark-lentczners-journal/Syndication-Formate Ursache fortschreitender Demenz?https://www.rfc1437.de/2004/05/31/syndication-formate-ursache-fortschreitender-demnz/Taxi (1998)https://www.rfc1437.de/2004/05/31/taxi-1998/The Contiki Operating Systemhttps://www.rfc1437.de/2004/05/31/the-contiki-operating-system/Web Development Bookmarkletshttps://www.rfc1437.de/2004/05/31/web-development-bookmarklets/79.Hainleite-Rundfahrt: Wrolich gewinnt - Ullrich Fünfterhttps://www.rfc1437.de/2004/05/30/79hainleite-rundfahrt-wrolich-gewinnt-ullrch-fnftr/Gerolsteiner verlängert Sponsoren-Vertrag bis 2008https://www.rfc1437.de/2004/05/30/gerolsteiner-verlaengert-sponsoren-vertrag-bs-2008/Kamera-Speicherkarte für 12500 Eurohttps://www.rfc1437.de/2004/05/30/kamera-speicherkarte-fuer-12500-euro/Altes Schiffshebewerk Henrichenburghttps://www.rfc1437.de/2004/05/29/altes-schiffshebewerk-henrichenburg/Dampfmaschinehttps://www.rfc1437.de/2004/05/29/pic-dampfmaschine/Papachristoshttps://www.rfc1437.de/2004/05/29/pic-papachristos/Schiffshebewerk Henrichenburghttps://www.rfc1437.de/2004/05/29/pic-schiffshebewerk-henrichenburg/0190-Betreiber mahnt Dialerschutz.de abhttps://www.rfc1437.de/2004/05/28/0190-betreiber-mahnt-dialerschutzde-ab/Allergienhttps://www.rfc1437.de/2004/05/28/allergien/Der Kalif von Kölle, der Staatsfeind Nr.1!https://www.rfc1437.de/2004/05/28/der-kalif-von-koelle-der-staatsfeind-nr1/Jim Jarmusch mal wiederhttps://www.rfc1437.de/2004/05/28/jim-jarmusch-mal-wieder/Justizministerin verteidigt Software-Patentehttps://www.rfc1437.de/2004/05/28/justizministerin-verteidigt-software-patente/Umfrage: Deutschland bei Top-Managern beliebthttps://www.rfc1437.de/2004/05/28/umfrage-deutschland-bei-top-managern-beliebt/=F6 über Debian ...https://www.rfc1437.de/2004/05/27/f6-ueber-debian/Eigentümer von ish stimmen Verkauf an Kabel Deutschland zuhttps://www.rfc1437.de/2004/05/26/eigentuemer-von-ish-stimmen-verkf-n-kbl-dtschlnd-z/Mal wieder ein paar Bilderhttps://www.rfc1437.de/2004/05/26/mal-wieder-ein-paar-bilder/Blütenstandhttps://www.rfc1437.de/2004/05/26/pic-bluetenstand/Stadthaushttps://www.rfc1437.de/2004/05/26/pic-stadthaus/Stühlehttps://www.rfc1437.de/2004/05/26/pic-stuehle/Datenbank Ingres wird Open Sourcehttps://www.rfc1437.de/2004/05/25/datenbank-ingres-wird-open-source/digitalkamera.de: DxO Optics Pro-Bildkorrektursoftware jetzt erhältlichhttps://www.rfc1437.de/2004/05/25/digitalkmrd-dx-ptcs-pr-bldkrrktrsftwr-jtzt-rhltlch/Enblendhttps://www.rfc1437.de/2004/05/25/enblend/Haeufige Augenkrankheitenhttps://www.rfc1437.de/2004/05/25/haeufige-augenkrankheiten/Little Snitchhttps://www.rfc1437.de/2004/05/25/little-snitch-2/Noise Ninja 2.0 Betahttps://www.rfc1437.de/2004/05/25/noise-ninja-2-0-beta/Skype for Mac OS X announced by developerhttps://www.rfc1437.de/2004/05/25/skype-for-mac-os-x-announced-by-developer/Xblendhttps://www.rfc1437.de/2004/05/25/xblend/Kann mal jemand das Internet reparieren?https://www.rfc1437.de/2004/05/24/kann-mal-jemand-das-internet-reparieren/Malformed Proteins Found in Sheep Musclehttps://www.rfc1437.de/2004/05/24/malformed-proteins-found-in-sheep-muscle/Prothonhttps://www.rfc1437.de/2004/05/24/prothon/randomthoughts: PyLucenehttps://www.rfc1437.de/2004/05/24/randomthoughts-pylucene/Telefon-Spamming bleibt verbotenhttps://www.rfc1437.de/2004/05/24/telefon-spamming-bleibt-verboten/Was TV-Magazine angeht...https://www.rfc1437.de/2004/05/24/was-tv-magazine-angeht/Die schlimmste aller Susenhttps://www.rfc1437.de/2004/05/23/die-schlimmste-aller-susen/Giro: Montgomery brach sich Schulterblatthttps://www.rfc1437.de/2004/05/23/giro-montgomery-brach-sich-schulterblatt/tagesschau.de: Der Triumph des Horst Köhlerhttps://www.rfc1437.de/2004/05/23/tagesschaude-der-triumph-des-horst-koehler/Eurocity Stadtfest in Münsterhttps://www.rfc1437.de/2004/05/22/eurocity-stadtfest-in-muenster/Moores "Fahrenheit 9/11" gewinnt Goldene Palmehttps://www.rfc1437.de/2004/05/22/moores-fahrenheit-911-gewinnt-goldene-palme/Eurocity Stadtfest Münsterhttps://www.rfc1437.de/2004/05/22/pic-eurocity-stadtfest-muenster/Kitschhttps://www.rfc1437.de/2004/05/22/pic-kitsch/Soundstickshttps://www.rfc1437.de/2004/05/22/pic-soundsticks/Rubicode - RCDefaultApphttps://www.rfc1437.de/2004/05/22/rubicode-rcdefaultapp/WordPress 1.2https://www.rfc1437.de/2004/05/22/wordpress-12/Canon Releases EOS Viewer Utilityhttps://www.rfc1437.de/2004/05/21/canon-releases-eos-viewer-utility/Die Geschichte der Programmiersprachenhttps://www.rfc1437.de/2004/05/21/die-geschichte-der-programmiersprachen/Kubrick für Kaninchenhttps://www.rfc1437.de/2004/05/21/kubrick-fuer-kaninchen/Last Man Standinghttps://www.rfc1437.de/2004/05/21/last-man-standing/NeuroKode Labs, LLC: remoteDhttps://www.rfc1437.de/2004/05/21/neurokode-labs-llc-remoted/Tausende Briten mit BSE-Variante infiziert?https://www.rfc1437.de/2004/05/21/tausende-briten-mit-bse-variante-infiziert/Wissenschaftler im Clinch mit Software-Anbieterhttps://www.rfc1437.de/2004/05/21/wissenschaftler-im-clinch-mit-software-anbieter/ASPN : Python Cookbook : Finding out the number of values the caller is expectinghttps://www.rfc1437.de/2004/05/20/aspn-python-cookbook-finding-out-the-number-of/Bildernachschubhttps://www.rfc1437.de/2004/05/20/bildernachschub/E-Mail-Server der Bundesregierung nahezu lahm gelegthttps://www.rfc1437.de/2004/05/20/e-mail-server-der-bundesregierung-nahezu-lahm-glgt/Köln, Essen oder Münster?https://www.rfc1437.de/2004/05/20/koeln-essen-oder-muenster/Alt und Neuhttps://www.rfc1437.de/2004/05/20/pic-alt-und-neu/Baggerarmhttps://www.rfc1437.de/2004/05/20/pic-baggerarm/Die Schraube ist nicht locker ...https://www.rfc1437.de/2004/05/20/pic-die-schraube-ist-nicht-locker/Fundushttps://www.rfc1437.de/2004/05/20/pic-fundus/Harley Davidsonhttps://www.rfc1437.de/2004/05/20/pic-harley-davidson/Holzmöbelhttps://www.rfc1437.de/2004/05/20/pic-holzmoebel/Schön am Vatertag, schaurig am Wochenendehttps://www.rfc1437.de/2004/05/20/schoen-am-vatertag-schaurig-am-wochenende/SCO vs. Linux: SCO fordert Offenlegung der FSFhttps://www.rfc1437.de/2004/05/20/sco-vs-linux-sco-fordert-offenlegung-der-fsf/Softwarepatentgegner werfen Brüssel Verlogenheit vorhttps://www.rfc1437.de/2004/05/20/softwarepatentgegner-werfen-bruessel-verlogenht-vr/"Von Null auf Linux in 6 Monaten? Nur durch kopierten Code."https://www.rfc1437.de/2004/05/20/von-null-auf-linux-in-6-monaten-nur-durch-kprtn-cd/WordPress Spielereienhttps://www.rfc1437.de/2004/05/20/wordpress-spielereien/WordPress Support %u203A Static "like" pageshttps://www.rfc1437.de/2004/05/20/wordpress-support-u203a-static-like-pages/ASPN : Python Cookbook : Transactionable Objectshttps://www.rfc1437.de/2004/05/19/aspn-python-cookbook-transactionable-objects/drupal.orghttps://www.rfc1437.de/2004/05/19/drupalorg/Python MQI Interface - pymqi. Version 0.5chttps://www.rfc1437.de/2004/05/19/python-mqi-interface-pymqi-version-0-5c/Releases | drupal.orghttps://www.rfc1437.de/2004/05/19/releases-drupal-org/Daring Fireball: Markdown Syntax Documentationhttps://www.rfc1437.de/2004/05/18/daring-fireball-markdown-syntax-documentation/Eine Ohrfeige für den Kanzlerhttps://www.rfc1437.de/2004/05/18/eine-ohrfeige-fuer-den-kanzler/EU-Staaten über Softwarepatente einig [Update]https://www.rfc1437.de/2004/05/18/eu-staaten-ueber-softwarepatente-einig-update/Hausärzte drohen Krankenkassen-Boykotthttps://www.rfc1437.de/2004/05/18/hausaerzte-drohen-krankenkassen-boykott/Nu Cardboard: Kangapy: Componentshttps://www.rfc1437.de/2004/05/18/nu-cardboard-kangapy-components/papercut.org - nntp server for the masseshttps://www.rfc1437.de/2004/05/18/papercut-org-nntp-server-for-the-masses/Rob Galbraith DPI: Digital Photo Professional, EOS Viewer Utility coming May 20https://www.rfc1437.de/2004/05/18/rb-glbrth-dp-dgtl-pht-prfssnl-s-vwr-tlty-cmng-my-2/Shrook 2 - RSS and Atom for Mac OS Xhttps://www.rfc1437.de/2004/05/18/shrook-2-rss-and-atom-for-mac-os-x/Struck: Keine Strafe für Wolffsohnhttps://www.rfc1437.de/2004/05/18/struck-keine-strafe-fuer-wolffsohn/Akte X Wiederholungenhttps://www.rfc1437.de/2004/05/17/akte-x-wiederholungen/b2evolution: Homehttps://www.rfc1437.de/2004/05/17/b2evolution-home/Computation Streaming in Pythonhttps://www.rfc1437.de/2004/05/17/computation-streaming-in-python/entrian.com - goto for Python - goto for Pythonhttps://www.rfc1437.de/2004/05/17/entrian-com-goto-for-python-goto-for-python-2/EU genehmigt Verkauf von Genmaishttps://www.rfc1437.de/2004/05/17/eu-genehmigt-verkauf-von-genmais/EU-Kommission gibt Flugpassagierdaten für USA freihttps://www.rfc1437.de/2004/05/17/eu-kommission-gibt-flugpassagierdaten-fuer-usa-fre/Exchange verliert Mailshttps://www.rfc1437.de/2004/05/17/exchange-verliert-mails/Open Source release of Frontier?https://www.rfc1437.de/2004/05/17/open-source-release-of-frontier/PyOne - one-liner helper for Pythonhttps://www.rfc1437.de/2004/05/17/pyone-one-liner-helper-for-python/SourceForge: pyawkhttps://www.rfc1437.de/2004/05/17/sourceforge-pyawk/WordPress Wiki - Comment Moderation Pluginhttps://www.rfc1437.de/2004/05/17/wordpress-wiki-comment-moderation-plugin/WordPress Wiki - WP Pluginshttps://www.rfc1437.de/2004/05/17/wordpress-wiki-wp-plugins/Der Taschentuchbaum ...https://www.rfc1437.de/2004/05/16/der-taschentuchbaum/Freedom 0 [dive into mark]https://www.rfc1437.de/2004/05/16/freedom-0-dive-into-mark/Freshly Squeezed Software - PulpFiction - Advanced News Reader/Aggregator for Mac OS Xhttps://www.rfc1437.de/2004/05/16/freshly-squeezed-software-pulpfiction-advanced/Longhorn goes to pieces | CNET News.comhttps://www.rfc1437.de/2004/05/16/longhorn-goes-to-pieces-cnet-newscom/Metakit stats/verify utilityhttps://www.rfc1437.de/2004/05/16/metakit-stats-verify-utility/Botanischer Garten Münsterhttps://www.rfc1437.de/2004/05/16/pic-botanischer-garten-muenster/Der Taschentuchbaumhttps://www.rfc1437.de/2004/05/16/pic-der-taschentuchbaum/Und noch ein paar mehr Bilder aus dem Botanischen Gartenhttps://www.rfc1437.de/2004/05/16/und-noch-ein-paar-mehr-bilder-aus-dem-btnschn-grtn/Beware Mac OS X Trojan AppleScript applethttps://www.rfc1437.de/2004/05/14/beware-mac-os-x-trojan-applescript-applet/Das geheime Hollywood-Filmstudiohttps://www.rfc1437.de/2004/05/14/das-geheime-hollywood-filmstudio/Friedensfahrt: Zabel gewinnt siebte Etappehttps://www.rfc1437.de/2004/05/14/friedensfahrt-zabel-gewinnt-siebte-etappe/Unsicheres Surfen mit Safarihttps://www.rfc1437.de/2004/05/14/unsicheres-surfen-mit-safari/Vatikan warnt vor christlich-muslimischer Ehehttps://www.rfc1437.de/2004/05/14/vatikan-warnt-vor-christlich-muslimischer-ehe/Vermisst in NRW: Knapp eine Milliarde Eurohttps://www.rfc1437.de/2004/05/14/vermisst-in-nrw-knapp-eine-milliarde-euro/Bundesregierung im Lager der Softwarepatentkritikerhttps://www.rfc1437.de/2004/05/13/bundesregierung-im-lager-der-softwarepatentkritikr/Fünf Freunde des Sasser-Autors unter Verdachthttps://www.rfc1437.de/2004/05/13/fuenf-freunde-des-sasser-autors-unter-verdacht/Googlespammer sind auch Erpresserhttps://www.rfc1437.de/2004/05/13/googlespammer-sind-auch-erpresser/Grüne fordern Rauswurf von Wolffsohnhttps://www.rfc1437.de/2004/05/13/gruene-fordern-rauswurf-von-wolffsohn/Hackers and Paintershttps://www.rfc1437.de/2004/05/13/hackers-and-painters/HTMLTemplatehttps://www.rfc1437.de/2004/05/13/htmltemplate/Jim Jarmusch ist ein Kinogotthttps://www.rfc1437.de/2004/05/13/jim-jarmusch-ist-ein-kinogott/Kfz-Kennzeichen-Abmahner zieht vor Gerichthttps://www.rfc1437.de/2004/05/13/kfz-kennzeichen-abmahner-zieht-vor-gericht/News: »Debian GNU/Linux« ist wieder dahttps://www.rfc1437.de/2004/05/13/news-debian-gnulinux-ist-wieder-da/OpenBSD-Chef de Raadt kritisiert patentierten TCP-Fixhttps://www.rfc1437.de/2004/05/13/openbsd-chef-de-raadt-kritisiert-patentirtn-tcp-fx/The Joy of Specshttps://www.rfc1437.de/2004/05/13/the-joy-of-specs/BBC develops 'alternative' codec | The Registerhttps://www.rfc1437.de/2004/05/12/bbc-develops-alternative-codec-the-register/Emu48 for Mac OS Xhttps://www.rfc1437.de/2004/05/12/emu48-for-mac-os-x/Firewalls und Komplexitäthttps://www.rfc1437.de/2004/05/12/firewalls-und-komplexitaet/IKRK: Unsere Diskretion schützt Menschenlebenhttps://www.rfc1437.de/2004/05/12/ikrk-unsere-diskretion-schuetzt-menschenleben/iSync und Tagesterminehttps://www.rfc1437.de/2004/05/12/isync-und-tagestermine/Rau mahnt Eliten: "Alle Maßstäbe verloren"https://www.rfc1437.de/2004/05/12/rau-mahnt-eliten-alle-massstaebe-verloren/Weitere Bluetooth-Handys gegen Hacker-Angriffe anfällighttps://www.rfc1437.de/2004/05/12/weitere-bluetooth-handys-gegen-hacker-angrff-nfllg/iTunes-Knacker: Neuer Name, neuer Versuchhttps://www.rfc1437.de/2004/05/11/itunes-knacker-neuer-name-neuer-versuch/Neues Handy - neue Problemehttps://www.rfc1437.de/2004/05/11/neues-handy-neue-probleme/PearPC - Abouthttps://www.rfc1437.de/2004/05/11/pearpc-about/Photographic Solutions, Inc. - New Productshttps://www.rfc1437.de/2004/05/11/photographic-solutions-inc-new-products/Der Preis ist heißhttps://www.rfc1437.de/2004/05/10/der-preis-ist-heiss/Just posted! Leica Digilux 2 reviewhttps://www.rfc1437.de/2004/05/10/just-posted-leica-digilux-2-review/Spätestens ...https://www.rfc1437.de/2004/05/10/spaetestens/PyInvokehttps://www.rfc1437.de/2004/05/09/pyinvoke/Rsync Vault Managerhttps://www.rfc1437.de/2004/05/09/rsync-vault-manager/SCO vs. Linux: Die Royal Bank of Canada will aussteigenhttps://www.rfc1437.de/2004/05/08/sco-vs-linux-die-royal-bank-of-canada-will-ausstgn/Sven J hat verschissen...https://www.rfc1437.de/2004/05/08/sven-j-hat-verschissen/TimeCopy Conduithttps://www.rfc1437.de/2004/05/08/timecopy-conduit/Schöner rechnenhttps://www.rfc1437.de/2004/05/07/schoener-rechnen/Suse Live CD offen für Angriffe übers Netzhttps://www.rfc1437.de/2004/05/07/suse-live-cd-offen-fuer-angriffe-uebers-netz/Calerga - SysQuakehttps://www.rfc1437.de/2004/05/06/calerga-sysquake/Du rückständiger Besucher unserer Homepage!https://www.rfc1437.de/2004/05/06/du-rueckstaendiger-besucher-unserer-homepage/LispMe Homepagehttps://www.rfc1437.de/2004/05/06/lispme-homepage/Schröder drängt Banken zu Fusionenhttps://www.rfc1437.de/2004/05/06/schroeder-draengt-banken-zu-fusionen/There are marks at the base of my PowerBook's display screenhttps://www.rfc1437.de/2004/05/06/there-are-marks-at-the-base-f-my-pwrbks-dsply-scrn/Wirtschaft lehnt Ausbildungspakt abhttps://www.rfc1437.de/2004/05/06/wirtschaft-lehnt-ausbildungspakt-ab/A.L.Digital : The Bunker : Presshttps://www.rfc1437.de/2004/05/05/a-l-digital-the-bunker-press/Art of B/W #005 @Digital Outback Photohttps://www.rfc1437.de/2004/05/05/art-of-bw-005-digital-outback-photo/Boyz need Toyz: Sony Clie PEG TH55https://www.rfc1437.de/2004/05/05/boyz-need-toyz-sony-clie-peg-th55/«Longhorn» nur für Super-PCshttps://www.rfc1437.de/2004/05/05/longhorn-nur-fuer-super-pcs/Security Corporation - Nokia 6310ihttps://www.rfc1437.de/2004/05/05/security-corporation-nokia-6310i/smittyware.com - upIRC - IRC Client for Palm OS®https://www.rfc1437.de/2004/05/05/smittyware-com-upirc-irc-client-for-palm-os/:: t e k t o n i c a ::https://www.rfc1437.de/2004/05/05/t-e-k-t-o-n-i-c-a/Vagablog - Blogging for Palm Deviceshttps://www.rfc1437.de/2004/05/05/vagablog-blogging-for-palm-devices/Was so aus ehemals interessanten Websites wirdhttps://www.rfc1437.de/2004/05/05/was-so-aus-ehemals-interessanten-websites-wird/Bin wieder dahttps://www.rfc1437.de/2004/05/04/bin-wieder-da/Es wird immer schlimmerhttps://www.rfc1437.de/2004/05/01/es-wird-immer-schlimmer/Hondo hatte doch nicht ganz die Beinehttps://www.rfc1437.de/2004/05/01/hondo-hatte-doch-nicht-ganz-die-beine/Dell dreht durchhttps://www.rfc1437.de/2004/04/30/dell-dreht-durch/EU-Rat nickt neue Regelungen zum Schutz geistigen Eigentums abhttps://www.rfc1437.de/2004/04/29/eu-rat-nickt-neue-regelungn-zm-schtz-gstgn-gntms-b/PyLindahttps://www.rfc1437.de/2004/04/29/pylinda-2/Rund um den Henninger Turm: Zabel will Rebellin stoppenhttps://www.rfc1437.de/2004/04/29/rund-um-den-henninger-turm-zabel-will-reblln-stppn/Accessfs: permission filesystem for linuxhttps://www.rfc1437.de/2004/04/28/accessfs-permission-filesystem-for-linux/Ear Monitors (R) brand by Future Sonics, Inc.https://www.rfc1437.de/2004/04/28/ear-monitors-r-brand-by-future-sonics-inc/Hybrid RAW Conversionhttps://www.rfc1437.de/2004/04/28/hybrid-raw-conversion/Leck in Heliumtank der Sojushttps://www.rfc1437.de/2004/04/28/leck-in-heliumtank-der-sojus/Liebesrufe aus der Tiefehttps://www.rfc1437.de/2004/04/28/liebesrufe-aus-der-tiefe/rssh - restricted shell for scp/sftphttps://www.rfc1437.de/2004/04/28/rssh-restricted-shell-for-scp-sftp/scponly homepagehttps://www.rfc1437.de/2004/04/28/scponly-homepage/Specification for Fault Code Interoperabilityhttps://www.rfc1437.de/2004/04/28/specification-for-fault-code-interoperability/Auch Opportunity ist über der Zielliniehttps://www.rfc1437.de/2004/04/27/auch-opportunity-ist-252ber-der-ziellinie/Debian: Freier, aber verspätethttps://www.rfc1437.de/2004/04/27/debian-freier-aber-verspaetet/heise Security - News - Microsoft wollte Veröffentlichung von Exploit gegen IIS verhindernhttps://www.rfc1437.de/2004/04/27/hs-scrty-nws-mcrsft-wllt-vrffntlchng-vn-xplt-ggn-s/Hugos House etwas angehübschthttps://www.rfc1437.de/2004/04/27/hugos-house-etwas-angehuebscht/[I18n-sig] Unicode surrogates: just say no!https://www.rfc1437.de/2004/04/27/i18n-sig-unicode-surrogates-just-say-no/Bibble Labs - Professional Photo-Manipulation Softwarehttps://www.rfc1437.de/2004/04/26/bibble-labs-professional-photo-manipulation/Boyz need Toyzhttps://www.rfc1437.de/2004/04/26/boyz-need-toyz/Das muss ein Fake sein.https://www.rfc1437.de/2004/04/26/das-muss-ein-fake-sein/DeDRMS knackt Apples iTunes-Kopierschutzhttps://www.rfc1437.de/2004/04/26/dedrms-knackt-apples-itunes-kopierschutz/EU will Gen-Mais zulassenhttps://www.rfc1437.de/2004/04/26/eu-will-gen-mais-zulassen/Little Snobhttps://www.rfc1437.de/2004/04/26/little-snob/Steinbrück kritisiert Schornsteinfeger-Monopolhttps://www.rfc1437.de/2004/04/26/steinbrueck-kritisiert-schornsteinfeger-monopol/The Omni Group - Applications - OmniWeb - Betahttps://www.rfc1437.de/2004/04/26/the-omni-group-applications-omniweb-beta-2/DIGITAL RADIO - DAB Empfängerhttps://www.rfc1437.de/2004/04/25/digital-radio-dab-empfaenger/DIGITAL RADIO WEST | Ihr Sendernetzbetreiber in NRWhttps://www.rfc1437.de/2004/04/25/digital-radio-west-ihr-sendernetzbetreiber-in-nrw/Heute war die Digi mal kooperativhttps://www.rfc1437.de/2004/04/25/heute-war-die-digi-mal-kooperativ/Blau-Bären?https://www.rfc1437.de/2004/04/25/pic-blau-baeren/Blütenmeerhttps://www.rfc1437.de/2004/04/25/pic-bluetenmeer/Die Farbe Rosahttps://www.rfc1437.de/2004/04/25/pic-die-farbe-rosa/Ein weites Feld ...https://www.rfc1437.de/2004/04/25/pic-ein-weites-feld/Frühlingsgrün 1https://www.rfc1437.de/2004/04/25/pic-fruehlingsgruen-1/Frühlingsgrün 2https://www.rfc1437.de/2004/04/25/pic-fruehlingsgruen-2/Noch mehr Grünhttps://www.rfc1437.de/2004/04/25/pic-noch-mehr-gruen/Ökologische Nischehttps://www.rfc1437.de/2004/04/25/pic-oekologische-nische/Pompoms wachsen auf Bäumen?https://www.rfc1437.de/2004/04/25/pic-pompoms-wachsen-auf-baeumen/Valles Parieshttps://www.rfc1437.de/2004/04/25/pic-valles-paries/Wirtschaftsanbau der Josephs-Kirchehttps://www.rfc1437.de/2004/04/25/pic-wirtschaftsanbau-der-josephs-kirche/Forgent sues 31 companies over JPEGhttps://www.rfc1437.de/2004/04/24/forgent-sues-31-companies-over-jpeg/Nikon Coolwalker MSV-01 Digital Photo Storage Viewer First Lookhttps://www.rfc1437.de/2004/04/24/nikon-coolwalker-msv-01-digtl-pht-strg-vwr-frst-lk/Wolfram's Future Mathhttps://www.rfc1437.de/2004/04/24/wolframs-future-math/Kill Bill Vol. 1 - DVDhttps://www.rfc1437.de/2004/04/23/kill-bill-vol-1-dvd/Neues von der Digi des Satanshttps://www.rfc1437.de/2004/04/23/neues-von-der-digi-des-satans/UNIX Historyhttps://www.rfc1437.de/2004/04/23/unix-history/CD-RW besser für Archivierung als CD-R?https://www.rfc1437.de/2004/04/22/cd-rw-besser-fuer-archivierung-als-cd-r/Kino:Tod im Kinderzimmerhttps://www.rfc1437.de/2004/04/22/kinotod-im-kinderzimmer/Ullrich sagt Lüttich und Henninger Turm abhttps://www.rfc1437.de/2004/04/22/ullrich-sagt-luettich-und-henninger-turm-ab/A, B, C, ... D! The Programming Language - OSNews.comhttps://www.rfc1437.de/2004/04/21/a-b-c-d-the-programming-language-osnews-com/Alan Kay to receive Turing Awardhttps://www.rfc1437.de/2004/04/21/alan-kay-to-receive-turing-award/Castor-Transporte: NRW klagt, Sachsen grollthttps://www.rfc1437.de/2004/04/21/castor-transporte-nrw-klagt-sachsen-grollt/iamphet.nm.ru - Scheme stuff (MzVim)https://www.rfc1437.de/2004/04/21/iamphet-nm-ru-scheme-stuff-mzvim/Ministerin Schmidt sieht "Bildungskatastrophe" kommenhttps://www.rfc1437.de/2004/04/21/ministerin-schmidt-sieht-bildungskatastrophe-kommn/Wallonischer Pfeil: Ullrich steigt nach 100km vom Radhttps://www.rfc1437.de/2004/04/21/wallonischer-pfeil-ullrich-steigt-nach-100km-vm-rd/dkbza - pydothttps://www.rfc1437.de/2004/04/20/dkbza-pydot/Apple Xsan: ein Überblickhttps://www.rfc1437.de/2004/04/19/apple-xsan-ein-ueberblick/Die neue Macht der Autorenhttps://www.rfc1437.de/2004/04/19/die-neue-macht-der-autoren/MS Explorer-»Patch«: entweder 14 Löcher oder kein SSLhttps://www.rfc1437.de/2004/04/19/ms-explorer-patch-entweder-14-loecher-oder-ken-ssl/Apple's jackboots step on PlayFair in India.https://www.rfc1437.de/2004/04/18/apples-jackboots-step-on-playfair-in-india/Calzonehttps://www.rfc1437.de/2004/04/18/calzone/DarwinPorts Homehttps://www.rfc1437.de/2004/04/18/darwinports-home/SCO vs. Linux: Baystar Capital will Investment in SCO beendenhttps://www.rfc1437.de/2004/04/17/sco-vs-linux-baystar-capital-wll-nvstmnt-n-sc-bndn/Deutsche Buchstabiertafelhttps://www.rfc1437.de/2004/04/15/deutsche-buchstabiertafel/Dürfen Abmahner nicht mehr absahnen?https://www.rfc1437.de/2004/04/15/duerfen-abmahner-nicht-mehr-absahnen/Etappensieg für Darwin-Gegnerhttps://www.rfc1437.de/2004/04/14/etappensieg-fuer-darwin-gegner/Schanghai: Transrapid-Trasse sinkt, kaum Fahrgästehttps://www.rfc1437.de/2004/04/14/schanghai-transrapid-trasse-sinkt-kaum-fahrgaeste/GROKLAW - Linux als Security Risiko und die Antworten draufhttps://www.rfc1437.de/2004/04/13/groklaw-linux-als-security-risiko-und-d-ntwrtn-drf/Linux 2.6 and mISDN HowTohttps://www.rfc1437.de/2004/04/13/linux-2-6-and-misdn-howto/Embedded-Systems-Entwickler: "Linux ist ein Sicherheitsrisiko"https://www.rfc1437.de/2004/04/12/embedded-systems-entwickler-linux-ist-n-schrhtsrsk/Erik Zabel gewinnt Rund um Kölnhttps://www.rfc1437.de/2004/04/12/erik-zabel-gewinnt-rund-um-koeln/Meine Digital SLR ist jetzt wohl tothttps://www.rfc1437.de/2004/04/12/meine-digital-slr-ist-jetzt-wohl-tot/Mit Steuervorteilen Kirchenaustritte stoppenhttps://www.rfc1437.de/2004/04/12/mit-steuervorteilen-kirchenaustritte-stoppen/Wiki Software bei Webwarehttps://www.rfc1437.de/2004/04/12/wiki-software-bei-webware/Zope.org - Readme file for ZopeEditManager 0.9.3https://www.rfc1437.de/2004/04/12/zope-org-readme-file-for-zopeeditmanager-0-9-3/30-Meter-Tanne für Osterfeuerhttps://www.rfc1437.de/2004/04/11/30-meter-tanne-fuer-osterfeuer/Apple schützt sich vor »Playfair«https://www.rfc1437.de/2004/04/11/apple-schuetzt-sich-vor-playfair/Für Radioprogrammiererhttps://www.rfc1437.de/2004/04/11/fuer-radioprogrammierer/Sun stellt Entwicklung von UltraSparc V einhttps://www.rfc1437.de/2004/04/11/sun-stellt-entwicklung-von-ultrasparc-v-ein/Bush wußte Wochen vor 9/11 Bescheidhttps://www.rfc1437.de/2004/04/10/bush-wusste-wochen-vor-911-bescheid/Notebook-Brennstoffzelle für zehn Stunden Laufzeithttps://www.rfc1437.de/2004/04/10/notebook-brennstoffzelle-fuer-zehn-stunden-laufzet/MacBiffhttps://www.rfc1437.de/2004/04/09/macbiff/PLT Spy - Neuigkeitenhttps://www.rfc1437.de/2004/04/09/plt-spy-neuigkeiten/Rasterfahndung führt nicht zum Erfolghttps://www.rfc1437.de/2004/04/09/rasterfahndung-fuehrt-nicht-zum-erfolg/Spyware-Hersteller will an die Börsehttps://www.rfc1437.de/2004/04/09/spyware-hersteller-will-an-die-boerse/Divmod.Org :: Home :: Projectshttps://www.rfc1437.de/2004/04/08/divmod-org-home-projects/Dnsmasq - a DNS forwarder for NAT firewalls.https://www.rfc1437.de/2004/04/08/dnsmasq-a-dns-forwarder-for-nat-firewalls/Logilab.org - Aspectshttps://www.rfc1437.de/2004/04/08/logilab-org-aspects/Schrempp trotz Aktionärsschelte bestätigthttps://www.rfc1437.de/2004/04/08/schrempp-trotz-aktionaersschelte-bestaetigt/Einführung neuer Ausweispapiere als "gigantischer Labortest"https://www.rfc1437.de/2004/04/07/einfuehrung-neuer-ausweispapier-ls-ggntschr-lbrtst/Experiences with the Krasnogorsk FT-2 Panoramic Camerahttps://www.rfc1437.de/2004/04/07/experiences-with-the-krasnogorsk-ft-2-panoramc-cmr/The Fantabulous Icon-O-Matic!https://www.rfc1437.de/2004/04/07/the-fantabulous-icon-o-matic/Aids-Medikamente für Entwicklungsländer günstigerhttps://www.rfc1437.de/2004/04/06/aids-medikamente-fuer-entwicklungslaender-guenstgr/Amadeus II - Sounds bearbeitenhttps://www.rfc1437.de/2004/04/06/amadeus-ii-sounds-bearbeiten/Drop Target for my Brainhttps://www.rfc1437.de/2004/04/06/drop-target-for-my-brain/Erstmals Gen-Weizen in Deutschland ausgesäthttps://www.rfc1437.de/2004/04/06/erstmals-gen-weizen-in-deutschland-ausgesaet/Fastpath und schnellerer Upstream für T-DSL ohne Einrichtungsgebührhttps://www.rfc1437.de/2004/04/06/fastpth-nd-schnllrr-pstrm-fr-t-dsl-hn-nrchtngsgbhr/ICANN verteidigt Verbot von VeriSigns Sitefinderhttps://www.rfc1437.de/2004/04/06/icann-verteidigt-verbot-von-verisigns-sitefinder/Wellenkraftwerk geht ans Netzhttps://www.rfc1437.de/2004/04/06/wellenkraftwerk-geht-ans-netz/Greenpeace protestiert gegen «Baby-Patent»https://www.rfc1437.de/2004/04/05/greenpeace-protestiert-gegen-baby-patent/Meine Digital SLR ist krankhttps://www.rfc1437.de/2004/04/05/meine-digital-slr-ist-krank/New utility strips DRM from iTunes Music Store trackshttps://www.rfc1437.de/2004/04/05/new-utility-strips-drm-from-itunes-music-str-trcks/Audible.com - audio that speaks to you wherever you arehttps://www.rfc1437.de/2004/04/04/audiblecom-audio-that-speaks-to-you-wherever-you-r/ICE-Katastrophe in letzter Sekunde verhinderthttps://www.rfc1437.de/2004/04/04/ice-katastrophe-in-letzter-sekunde-verhindert/iPod too hard to usehttps://www.rfc1437.de/2004/04/04/ipod-too-hard-to-use/Wenn die Wirtschaft Regie führthttps://www.rfc1437.de/2004/04/04/wenn-die-wirtschaft-regie-fuehrt/Idiotische Mailserverkonfigurationen mal wiederhttps://www.rfc1437.de/2004/04/03/idiotische-mailserverkonfigurationen-mal-wieder/Index of /~erich/bricolagehttps://www.rfc1437.de/2004/04/03/index-of-erich-bricolage/Lösung für vorheriges Problemhttps://www.rfc1437.de/2004/04/03/loesung-fuer-vorheriges-problem/Randall D. Beer - FPC-PPChttps://www.rfc1437.de/2004/04/03/randall-d-beer-fpc-ppc/The Mason Bookhttps://www.rfc1437.de/2004/04/03/the-mason-book/Autobahn 1 "Kunstharz-versiegelt"https://www.rfc1437.de/2004/04/02/autobahn-1-kunstharz-versiegelt/Bundesrat lehnt TKG-Gesetzentwurf abhttps://www.rfc1437.de/2004/04/02/bundesrat-lehnt-tkg-gesetzentwurf-ab/Ein bischen Frühlinghttps://www.rfc1437.de/2004/04/02/ein-bischen-fruehling/Festgefressene Situation ...https://www.rfc1437.de/2004/04/02/festgefressene-situation/Kabel Deutschland zahlt 2,6 Milliarden für Übernahme der Konkurrenzhttps://www.rfc1437.de/2004/04/02/kabel-detschlnd-zhlt-26-mllrdn-fr-brnhm-dr-knkrrnz/Der Frühling ...https://www.rfc1437.de/2004/04/02/pic-der-fruehling/Schraube Locker?https://www.rfc1437.de/2004/04/02/pic-schraube-locker/Unflexibelhttps://www.rfc1437.de/2004/04/02/pic-unflexibel/Unflexibelhttps://www.rfc1437.de/2004/04/02/unflexibel/Debian GNU/Linux -- apt-buildhttps://www.rfc1437.de/2004/04/01/debian-gnulinux-apt-build/Debian Sarge auf 12 CDshttps://www.rfc1437.de/2004/04/01/debian-sarge-auf-12-cds/Lego und die Kundenfreundlichkeithttps://www.rfc1437.de/2004/04/01/lego-und-die-kundenfreundlichkeit/Oetker darf noch mehr Bier brauenhttps://www.rfc1437.de/2004/04/01/oetker-darf-noch-mehr-bier-brauen/PyOXIDE - pythonmac.org wikihttps://www.rfc1437.de/2004/04/01/pyoxide-pythonmac-org-wiki/ThinkGraph: Introductionhttps://www.rfc1437.de/2004/04/01/thinkgraph-introduction/Various bits of softwarehttps://www.rfc1437.de/2004/04/01/various-bits-of-software/Wo wir doch gerade über Anfragen an Firmen ...https://www.rfc1437.de/2004/04/01/wo-wir-doch-gerade-ueber-anfragen-an-firmen/EU-Parlament protestiert gegen Flugdaten-Transfairhttps://www.rfc1437.de/2004/03/31/eu-parlament-protestiert-gegen-flugdaten-transfair/Garzweiler II: Neuer Streit um Obstwiesehttps://www.rfc1437.de/2004/03/31/garzweiler-ii-neuer-streit-um-obstwiese/MacWarriors TrailBlazerhttps://www.rfc1437.de/2004/03/31/macwarriors-trailblazer/SCO vs. Linux: IBM sieht Copyright-Verletzungen am Werkhttps://www.rfc1437.de/2004/03/31/sco-vs-linux-ibm-sieht-copyright-verletzungn-m-wrk/Teen Arrested for Sexually Abusing Herselfhttps://www.rfc1437.de/2004/03/31/teen-arrested-for-sexually-abusing-herself/TP: Windenergie hat Zukunfthttps://www.rfc1437.de/2004/03/31/tp-windenergie-hat-zukunft/Translucent Inter-Process Service Migrationhttps://www.rfc1437.de/2004/03/31/translucent-inter-process-service-migration/Wurm «Witty»: Sicherheitspatch nur gegen Geldhttps://www.rfc1437.de/2004/03/31/wurm-witty-sicherheitspatch-nur-gegen-geld/Bill Gates: In 10 Jahren sind viele wichtige IT-Probleme gelösthttps://www.rfc1437.de/2004/03/30/bill-gates-in-10-jahren-sind-vl-wchtg-t-prblm-glst/Fahrradfahrenhttps://www.rfc1437.de/2004/03/30/fahrradfahren/Musikindustrie klagt Tauschbörsen-User anhttps://www.rfc1437.de/2004/03/30/musikindustrie-klagt-tauschboersen-user-an/PyWX: Python for AOLserverhttps://www.rfc1437.de/2004/03/30/pywx-python-for-aolserver/Willkür des Justiz-Senators in Hamburghttps://www.rfc1437.de/2004/03/30/willkuer-des-justiz-senators-in-hamburg/Rüttgers fordert private Zwangsrente für allehttps://www.rfc1437.de/2004/03/29/ruettgers-fordert-private-zwangsrente-fuer-alle/Bütikofer: Clement stellt Koalition in Fragehttps://www.rfc1437.de/2004/03/28/buetikofer-clement-stellt-koalition-in-frage/Duden-Homepagehttps://www.rfc1437.de/2004/03/28/duden-homepage/Kapitalistenknechthttps://www.rfc1437.de/2004/03/28/kapitalistenknecht/Forschung gegen den Abmahnwahnhttps://www.rfc1437.de/2004/03/27/forschung-gegen-den-abmahnwahn/Google-Suche:https://www.rfc1437.de/2004/03/27/google-suche/Prothonhttps://www.rfc1437.de/2004/03/27/prothon-2/dp-now.com - News - Epson reveals digital rangefinder secretshttps://www.rfc1437.de/2004/03/26/dp-nowcom-news-epson-reveals-digital-rngfndr-scrts/Ich mag Debian ...https://www.rfc1437.de/2004/03/26/ich-mag-debian/Python Package Index Tutorialhttps://www.rfc1437.de/2004/03/26/python-package-index-tutorial/Sommerzeithttps://www.rfc1437.de/2004/03/26/sommerzeit/Am 22. April ...https://www.rfc1437.de/2004/03/25/am-22-april/Branchenverband Bitkom möchte Privatkopie abschaffenhttps://www.rfc1437.de/2004/03/25/branchenverband-bitkom-moechte-privatkopie-bschffn/Index of /~vorlon/d-i/xfshttps://www.rfc1437.de/2004/03/25/index-of-vorlon-d-i-xfs/Leben ausser Kontrollehttps://www.rfc1437.de/2004/03/25/leben-ausser-kontrolle/Nerd-Orgasmushttps://www.rfc1437.de/2004/03/25/nerd-orgasmus/Schröder mit Reformkurs zufriedenhttps://www.rfc1437.de/2004/03/25/schroeder-mit-reformkurs-zufrieden/Static Type Inference (for Python) with Starkillerhttps://www.rfc1437.de/2004/03/25/static-type-inference-for-python-with-starkiller/Telekom-Vorstand Josef Brauner tritt wegen Maut-Debakel zurückhttps://www.rfc1437.de/2004/03/25/telekom-vorstand-josef-branr-trtt-wgn-mt-dbkl-zrck/The Guardian hammers RSShttps://www.rfc1437.de/2004/03/25/the-guardian-hammers-rss/Warnung vor totalem Überwachungsstaathttps://www.rfc1437.de/2004/03/25/warnung-vor-totalem-ueberwachungsstaat/Der Herr der Gridshttps://www.rfc1437.de/2004/03/24/der-herr-der-grids/Microsoft: Entscheidung der EU-Kommission nicht im Sinne der Verbraucherhttps://www.rfc1437.de/2004/03/24/microsft-ntschdng-dr-kmmssn-ncht-m-snn-dr-vrbrchr/Neun Krankenkassen senken die Beitragssätzehttps://www.rfc1437.de/2004/03/24/neun-krankenkassen-senken-die-beitragssaetze/RealNetworks CEO pushes Apple to open iPodhttps://www.rfc1437.de/2004/03/24/realnetworks-ceo-pushes-apple-to-open-ipod/Ron Sommer und die Wahltaktikhttps://www.rfc1437.de/2004/03/24/ron-sommer-und-die-wahltaktik/Telekom senkt Wochenarbeitszeit auf 34 Stundenhttps://www.rfc1437.de/2004/03/24/telekom-senkt-wochenarbeitszeit-auf-34-stunden/Fahrkartenschalter bald nur noch in Städten?https://www.rfc1437.de/2004/03/23/fahrkartenschalter-bald-nur-noch-in-staedten/Freibier macht Bürgermeisterwahl ungültighttps://www.rfc1437.de/2004/03/23/freibier-macht-buergermeisterwahl-ungueltig/loafhttps://www.rfc1437.de/2004/03/23/loaf/XMLmind XML Editor: XMLmind XML Editorhttps://www.rfc1437.de/2004/03/23/xmlmind-xml-editor-xmlmind-xml-editor/Beleidigte Dünnbrettbohrerhttps://www.rfc1437.de/2004/03/22/beleidigte-duennbrettbohrer/Der 11. September hätte verhindert werden können.https://www.rfc1437.de/2004/03/22/der-11-september-haette-verhindert-werden-koennen/EU fordert Rekordstrafe von Microsofthttps://www.rfc1437.de/2004/03/22/eu-fordert-rekordstrafe-von-microsoft/Israel tötet Hamas-Führer Jassinhttps://www.rfc1437.de/2004/03/22/israel-toetet-hamas-fuehrer-jassin/Kopfbälle machen blödhttps://www.rfc1437.de/2004/03/22/kopfbaelle-machen-bloed/MovableType wie Windowshttps://www.rfc1437.de/2004/03/22/movabletype-wie-windows/Spamassassin Custom Rule Emporiumhttps://www.rfc1437.de/2004/03/22/spamassassin-custom-rule-emporium/SPD plant Anti-Spam-Gesetzhttps://www.rfc1437.de/2004/03/22/spd-plant-anti-spam-gesetz/TP: "Matsushita ist eine Sch...firma"https://www.rfc1437.de/2004/03/22/tp-matsushita-ist-eine-schfirma/Digital Camera Battery - Manufacturers of the most powerfull professional camera battery on the markethttps://www.rfc1437.de/2004/03/21/digital-camera-battery-manufacturers-of-the-most/DIHK-Chef rät zur Produktion im Auslandhttps://www.rfc1437.de/2004/03/21/dihk-chef-raet-zur-produktion-im-ausland/Eisbär, Der (1998)https://www.rfc1437.de/2004/03/21/eisbaer-der-1998/Mehr Überwachung gewünschthttps://www.rfc1437.de/2004/03/21/mehr-ueberwachung-gewuenscht/Peeron: Robotics Invention System 2.0 (#3804-1)https://www.rfc1437.de/2004/03/21/peeron-robotics-invention-system-2-0-3804-1/Schröder: "Wir halten Kurs"https://www.rfc1437.de/2004/03/21/schroeder-wir-halten-kurs/Tuple Spacehttps://www.rfc1437.de/2004/03/21/tuple-space/Kleinkarierte Kritik - Rechtliche Inkompetenz - Ebay und das neue EU-Rechthttps://www.rfc1437.de/2004/03/20/kleinkarierte-kritik-rechtliche-inkompetenz-ebay/BBC NEWS | Science/Nature | UFO streaks through Martian skyhttps://www.rfc1437.de/2004/03/19/bbc-news-sciencenature-ufo-streaks-throgh-mrtn-sky/Deutsche Zope User Grouphttps://www.rfc1437.de/2004/03/19/deutsche-zope-user-group/Erste Open-Source-Lizenz made for Germanyhttps://www.rfc1437.de/2004/03/19/erste-open-source-lizenz-made-for-germany/Little Snitchhttps://www.rfc1437.de/2004/03/19/little-snitch/placenamehere.com projects pnhtoolbarhttps://www.rfc1437.de/2004/03/19/placenamehere-com-projects-pnhtoolbar/10 aus 1350https://www.rfc1437.de/2004/03/18/10-aus-1350/Verschlusssachehttps://www.rfc1437.de/2004/03/18/pic-verschlusssache/Zweisamkeithttps://www.rfc1437.de/2004/03/18/pic-zweisamkeit/Verschlusssachehttps://www.rfc1437.de/2004/03/18/verschlusssache/Zweisamkeithttps://www.rfc1437.de/2004/03/18/zweisamkeit/Apple stellt »Spoken Interface« vorhttps://www.rfc1437.de/2004/03/17/apple-stellt-spoken-interface-vor/Nochmal zu SORBShttps://www.rfc1437.de/2004/03/17/nochmal-zu-sorbs/Amiga Inc ohne AmigaOShttps://www.rfc1437.de/2004/03/16/amiga-inc-ohne-amigaos/Der Erlrouterhttps://www.rfc1437.de/2004/03/16/der-erlrouter/Leica Digilux 2 Review. Part Twohttps://www.rfc1437.de/2004/03/16/leica-digilux-2-review-part-two/Astronomen entdecken Planet «Sedna»https://www.rfc1437.de/2004/03/15/astronomen-entdecken-planet-sedna/Chinesen enttäuscht: Große Mauer ganz kleinhttps://www.rfc1437.de/2004/03/15/chinesen-enttaeuscht-grosse-mauer-ganz-klein/Freenet AG: Abmahnungen statt Websperrenhttps://www.rfc1437.de/2004/03/15/freenet-ag-abmahnungen-statt-websperren/GraphicConverter 5.0 delivers dozens of new featureshttps://www.rfc1437.de/2004/03/15/graphicconverter-50-delivers-dozens-of-new-featurs/Korruptionsverdacht bei der Bahnhttps://www.rfc1437.de/2004/03/15/korruptionsverdacht-bei-der-bahn/Machtwechsel in Spanienhttps://www.rfc1437.de/2004/03/15/machtwechsel-in-spanien/MySQL und die Lizenzenhttps://www.rfc1437.de/2004/03/15/mysql-und-die-lizenzen/PyProtocolshttps://www.rfc1437.de/2004/03/15/pyprotocols/Vitamine gegen Krebs: Anzeige erstattethttps://www.rfc1437.de/2004/03/15/vitamine-gegen-krebs-anzeige-erstattet/Frühling bahnt sich an ...https://www.rfc1437.de/2004/03/14/fruehling-bahnt-sich-an/IsaViz Overviewhttps://www.rfc1437.de/2004/03/14/isaviz-overview/Is jetzt Frühling, oder was?https://www.rfc1437.de/2004/03/14/pic-is-jetzt-fruehling-oder-was/Unruhe in Union nach Köhler-Äußerungenhttps://www.rfc1437.de/2004/03/14/unruhe-in-union-nach-koehler-aeusserungen/Vino' wins another as Jaksche wraps up Paris-Nicehttps://www.rfc1437.de/2004/03/14/vino-wins-another-as-jaksche-wraps-up-paris-nice/Flüge in die USA nur noch als gläserner Passagierhttps://www.rfc1437.de/2004/03/13/fluege-in-die-usa-nur-noch-als-glaeserner-passagir/myelin: Feed Normalizerhttps://www.rfc1437.de/2004/03/13/myelin-feed-normalizer/Französin wird Außenministerin Georgienshttps://www.rfc1437.de/2004/03/12/franzoesin-wird-aussenministerin-georgiens/SPD verliert Zustimmung in NRWhttps://www.rfc1437.de/2004/03/12/spd-verliert-zustimmung-in-nrw/Ziel erreichthttps://www.rfc1437.de/2004/03/12/ziel-erreicht/11.03 - 18:17: Impressumhttps://www.rfc1437.de/2004/03/11/1103-1817-impressum/A Busy Developers Guide to WSDL 1.1https://www.rfc1437.de/2004/03/11/a-busy-developers-guide-to-wsdl-1-1/Affrus 1.0https://www.rfc1437.de/2004/03/11/affrus-10/Eizell-Dogma widerlegthttps://www.rfc1437.de/2004/03/11/eizell-dogma-widerlegt/Epson R-D1 Digital Rangefinder Camerahttps://www.rfc1437.de/2004/03/11/epson-r-d1-digital-rangefinder-camera/Eudora Spywarehttps://www.rfc1437.de/2004/03/11/eudora-spyware/Generic SOAP Clienthttps://www.rfc1437.de/2004/03/11/generic-soap-client/Hakenwürmer gegen Allergienhttps://www.rfc1437.de/2004/03/11/hakenwuermer-gegen-allergien/lython - lisp for pythonhttps://www.rfc1437.de/2004/03/11/lython-lisp-for-python-2/Microsoft stuft Outlook-Loch als kritisch einhttps://www.rfc1437.de/2004/03/11/microsoft-stuft-outlook-loch-als-kritisch-ein/Neue Großspende Möllemanns aufgetauchthttps://www.rfc1437.de/2004/03/11/neue-grossspende-moellemanns-aufgetaucht/Paul Nevai's PaulComputing (www.paulcomputing.com)https://www.rfc1437.de/2004/03/11/paul-nevai-s-paulcomputing-www-paulcomputing-com/RUS-CERT warnt vor Mozillahttps://www.rfc1437.de/2004/03/11/rus-cert-warnt-vor-mozilla/Was ich so an Tools benutzehttps://www.rfc1437.de/2004/03/11/was-ich-so-an-tools-benutze/Ab 2005: Abi nach zwölf Jahrenhttps://www.rfc1437.de/2004/03/10/ab-2005-abi-nach-zwoelf-jahren/Die Dialer-Abzocker machen weiterhttps://www.rfc1437.de/2004/03/10/die-dialer-abzocker-machen-weiter/Oracle ...https://www.rfc1437.de/2004/03/10/oracle/Telekom-Chef Ricke: Personal wird weiter abgebauthttps://www.rfc1437.de/2004/03/10/telekom-chef-ricke-personal-wird-weiter-abgebaut/Textil-Kette Boecker ist pleitehttps://www.rfc1437.de/2004/03/10/textil-kette-boecker-ist-pleite/Divmod.Org :: Home :: Projects :: Quotienthttps://www.rfc1437.de/2004/03/09/divmod-org-home-projects-quotient/Digilux 2 Review - Part 1https://www.rfc1437.de/2004/03/08/digilux-2-review-part-1/Emmanuel Renieris's Software Pagehttps://www.rfc1437.de/2004/03/08/emmanuel-renieris-s-software-page/Falschmünzer im wilden Domain-Westenhttps://www.rfc1437.de/2004/03/08/falschmuenzer-im-wilden-domain-westen/FDP muss Europaparteitag neu abhaltenhttps://www.rfc1437.de/2004/03/08/fdp-muss-europaparteitag-neu-abhalten/gnutellavision: introhttps://www.rfc1437.de/2004/03/08/gnutellavision-intro/Graphvizhttps://www.rfc1437.de/2004/03/08/graphviz/MacNQChttps://www.rfc1437.de/2004/03/08/macnqc/mfGraph Library Homepagehttps://www.rfc1437.de/2004/03/08/mfgraph-library-homepage/My blogging space - eine Memehttps://www.rfc1437.de/2004/03/08/my-blogging-space-eine-meme/Parser-SIG - SIG on Parser Generation for Pythonhttps://www.rfc1437.de/2004/03/08/parser-sig-sig-on-parser-generation-for-python/Hamburg Hauptbahnhof Nord, U2https://www.rfc1437.de/2004/03/08/pic-hamburg-hauptbahnhof-nord-u2/My Bloggingspacehttps://www.rfc1437.de/2004/03/08/pic-my-bloggingspace/pyparsing -- a class library for text processing in Pythonhttps://www.rfc1437.de/2004/03/08/pyparsing-a-class-library-for-text-processing-in/Scalable Vector Graphics (SVG) 1.1 Specificationhttps://www.rfc1437.de/2004/03/08/scalable-vector-graphics-svg-1-1-specification/TAMS Home Pagehttps://www.rfc1437.de/2004/03/08/tams-home-page/WAVE 3.0 - Web Accessibility Versatile Evaluatorhttps://www.rfc1437.de/2004/03/08/wave-3-0-web-accessibility-versatile-evaluator/Worms wechselt von Sendmail zu Microsoft Exchangehttps://www.rfc1437.de/2004/03/08/worms-wechselt-von-sendmail-zu-microsoft-exchange/Bahnbrechendes Urteil: BGH beendet den Dialer-Wahnsinn - Netzwelt - SPIEGEL ONLINEhttps://www.rfc1437.de/2004/03/06/bhnbrchnds-rtl-bgh-bndt-dn-dlr-whnsnn-ntzwlt-spgl/heute.t-online.de - Union will offenbar Tarif- und Arbeitsrecht lockernhttps://www.rfc1437.de/2004/03/06/heutet-onlinede-nn-wll-ffnbr-trf-nd-rbtsrcht-lckrn/Linux-Magazin - CUPShttps://www.rfc1437.de/2004/03/06/linux-magazin-cups/LWN: The GPL Is a License, not a Contracthttps://www.rfc1437.de/2004/03/06/lwn-the-gpl-is-a-license-not-a-contract/Rollei MiniDigi TLR Digicamhttps://www.rfc1437.de/2004/03/06/rollei-minidigi-tlr-digicam/Jaguar langsam beim Kontextmenühttps://www.rfc1437.de/2004/03/05/jaguar-langsam-beim-kontextmenue/Open Source Initiative OSI - Doc10:Halloween Documentshttps://www.rfc1437.de/2004/03/05/open-source-initiative-osi-doc10halloween-documnts/Python: module inspecthttps://www.rfc1437.de/2004/03/05/python-module-inspect/Was die Bild-Zeitung kann, das können wir auch!https://www.rfc1437.de/2004/03/05/was-die-bild-zeitung-kann-das-koennen-wir-auch/Canto - Digital Asset Management with Cumulus - Products & Serviceshttps://www.rfc1437.de/2004/03/04/canto-digital-asset-managmnt-wth-cmls-prdcts-srvcs/Delirium, das die Zeilen füllthttps://www.rfc1437.de/2004/03/04/delirium-das-die-zeilen-fuellt/Extensis Portfolio - Digital Asset Managementhttps://www.rfc1437.de/2004/03/04/extensis-portfolio-digital-asset-management/GROKLAW - Deadline für SCOhttps://www.rfc1437.de/2004/03/04/groklaw-deadline-fuer-sco/IHMC CmapTools - Concept Mapping Software Toolkithttps://www.rfc1437.de/2004/03/04/ihmc-cmaptools-concept-mapping-software-toolkit/Kein XXL mehr bei McDonaldshttps://www.rfc1437.de/2004/03/04/kein-xxl-mehr-bei-mcdonalds/Mod-pubsub bloghttps://www.rfc1437.de/2004/03/04/mod-pubsub-blog/Philips Fluid Lenseshttps://www.rfc1437.de/2004/03/04/philips-fluid-lenses/Peinliches Geständnis: Coca-Cola verkauft Leitungswasser - Wirtschaft - SPIEGEL ONLINEhttps://www.rfc1437.de/2004/03/04/pnlchs-gstndns-cc-cl-vrkft-ltngswssr-wrtschft-spgl/PyTable RDBMS Middlewarehttps://www.rfc1437.de/2004/03/04/pytable-rdbms-middleware/RFC: Subscriptions harmonizerhttps://www.rfc1437.de/2004/03/04/rfc-subscriptions-harmonizer/Sehr geehrter Herr Bundesstaatsanwalthttps://www.rfc1437.de/2004/03/04/sehr-geehrter-herr-bundesstaatsanwalt/SORBS - mal wieder eine dumme Implementation von RBLhttps://www.rfc1437.de/2004/03/04/sorbs-mal-wieder-eine-dumme-implementation-von-rbl/Vulkanausbruch auf Montserrathttps://www.rfc1437.de/2004/03/04/vulkanausbruch-auf-montserrat/Welcome Pagehttps://www.rfc1437.de/2004/03/04/welcome-page/Cacheability Enginehttps://www.rfc1437.de/2004/03/03/cacheability-engine/c''t aktuell-Lauschangriff vermasselt: Teilsieg für die Bürgerrechtehttps://www.rfc1437.de/2004/03/03/ct-aktuell-lauschangrff-vrmsslt-tlsg-fr-d-brgrrcht/Großer Lauschangriff verfassungswidrighttps://www.rfc1437.de/2004/03/03/grosser-lauschangriff-verfassungswidrig/iPhoto Mailer Patcherhttps://www.rfc1437.de/2004/03/03/iphoto-mailer-patcher/iView | Media Management Made Easyhttps://www.rfc1437.de/2004/03/03/iview-media-management-made-easy/Schröder redet nicht mehr mit der "Bild"https://www.rfc1437.de/2004/03/03/schroeder-redet-nicht-mehr-mit-der-bild/SCO vs. Linux: SCO verklagt Autoteile-Händler wegen Linux-Nutzunghttps://www.rfc1437.de/2004/03/03/sco-vs-linux-sco-verklagt-attl-hndlr-wgn-lnx-ntzng/Writing PlugInshttps://www.rfc1437.de/2004/03/03/writing-plugins-2/Auf dem Mars soll es Wasser gegeben habenhttps://www.rfc1437.de/2004/03/02/auf-dem-mars-soll-es-wasser-gegeben-haben/Browser oder binärer Schrotthaufen ...https://www.rfc1437.de/2004/03/02/browser-oder-binaerer-schrotthaufen/Kein Interesse an kritischen Verbrauchernhttps://www.rfc1437.de/2004/03/02/kein-interesse-an-kritischen-verbrauchern/Track or Backhttps://www.rfc1437.de/2004/03/02/track-or-back/Was man so in Logfiles findet ...https://www.rfc1437.de/2004/03/02/was-man-so-in-logfiles-findet/elspy: Exim local_scan()with Pythonhttps://www.rfc1437.de/2004/03/01/elspy-exim-local-scan-with-python/Gentium Linuxhttps://www.rfc1437.de/2004/03/01/gentium-linux/Neuer Netsky-Wurm verbreitet sich schnellhttps://www.rfc1437.de/2004/03/01/neuer-netsky-wurm-verbreitet-sich-schnell/Online-Jobbörse: BA-Chef Weise soll von Kostenexplosion gewusst haben | COMPUTERWOCHE Onlinehttps://www.rfc1437.de/2004/03/01/nln-jbbrs-b-chf-ws-sll-vn-kstnxplsn-gwsst-hbn-cmpt/Scan incoming mail with Pythonhttps://www.rfc1437.de/2004/03/01/scan-incoming-mail-with-python/Die japanischen Schriftzeichenhttps://www.rfc1437.de/2004/02/29/die-japanischen-schriftzeichen/Die Welt der Sprache - Die Sprachen der Welthttps://www.rfc1437.de/2004/02/29/die-welt-der-sprache-die-sprachen-der-welt/Exotische Schriften lernen - leicht gemachthttps://www.rfc1437.de/2004/02/29/exotische-schriften-lernen-leicht-gemacht/iBeeZz.com - Homehttps://www.rfc1437.de/2004/02/29/ibeezz-com-home/Ihr Weg zu uns...erer Abmahnunghttps://www.rfc1437.de/2004/02/29/ihr-weg-zu-unserer-abmahnung/Isolierte Sprachenhttps://www.rfc1437.de/2004/02/29/isolierte-sprachen/Teurer Spaßhttps://www.rfc1437.de/2004/02/29/teurer-spass/Geschichten aus dem Leben von Bild-Autorenhttps://www.rfc1437.de/2004/02/27/geschichten-aus-dem-leben-von-bild-autoren/GROKLAW - Eben Moglens Antwort auf McBrides Rede in Harvardhttps://www.rfc1437.de/2004/02/27/groklaw-eben-moglens-antwort-auf-mcbrds-rd-n-hrvrd/heise online: Adorno online, Reemtsma und der Haftbefehlhttps://www.rfc1437.de/2004/02/27/heise-online-adorno-online-reemtsma-und-dr-hftbfhl/Argumente für den Atheismushttps://www.rfc1437.de/2004/02/26/argumente-fuer-den-atheismus/Dickes Ding ...https://www.rfc1437.de/2004/02/26/dickes-ding/Ex-CDU-Schatzmeisterin packt aushttps://www.rfc1437.de/2004/02/26/ex-cdu-schatzmeisterin-packt-aus/HIV - natürlicher Abwehrstoff entdeckt?https://www.rfc1437.de/2004/02/26/hiv-natuerlicher-abwehrstoff-entdeckt/iPod Volume Booster (German)https://www.rfc1437.de/2004/02/26/ipod-volume-booster-german/News: Microsoft will »Pager« patentierenhttps://www.rfc1437.de/2004/02/26/news-microsoft-will-pager-patentieren/Panorama: US-Soldaten schossen auf Verwundetehttps://www.rfc1437.de/2004/02/26/panorama-us-soldaten-schossen-auf-verwundete/SCO vs. Linux: Boykott der Meinungsfreiheit?https://www.rfc1437.de/2004/02/26/sco-vs-linux-boykott-der-meinungsfreiheit/T-Com beschleunigt T-DSLhttps://www.rfc1437.de/2004/02/26/t-com-beschleunigt-t-dsl/Microsofts Alleingang im Anti-Spam-Kampfhttps://www.rfc1437.de/2004/02/25/microsofts-alleingang-im-anti-spam-kampf/PocketMac iPod | Call Toll Free 1-866-POCK-MAChttps://www.rfc1437.de/2004/02/25/pocketmac-ipod-call-toll-free-1-866-pock-mac/Safari Extender by Ricardo Batistahttps://www.rfc1437.de/2004/02/25/safari-extender-by-ricardo-batista/Version Control with Subversionhttps://www.rfc1437.de/2004/02/25/version-control-with-subversion/Apple - RSS Informationhttps://www.rfc1437.de/2004/02/24/apple-rss-information-2/EU-Kommissar Bolkestein setzt sich im Kartellverfahren für Microsoft einhttps://www.rfc1437.de/2004/02/24/e-kmmssr-blkstn-stzt-sch-m-krtllvrfhrn-fr-mcrsft-n/Briefmarke für E-Mailshttps://www.rfc1437.de/2004/02/23/briefmarke-fuer-e-mails/EU-Rat macht sich für grenzenlose Softwarepatente starkhttps://www.rfc1437.de/2004/02/23/eu-rat-macht-sich-fuer-grenzenlose-softwrptnt-strk/iPoding | What's that in your pocket?https://www.rfc1437.de/2004/02/23/ipoding-whats-that-in-your-pocket/Lügen, grosse Lügen und Statistikenhttps://www.rfc1437.de/2004/02/23/luegen-grosse-luegen-und-statistiken/Omniorb Python Bindingshttps://www.rfc1437.de/2004/02/23/omniorb-python-bindings/Postkunden in Hamburg vor verschlossenen Türenhttps://www.rfc1437.de/2004/02/23/postkunden-in-hamburg-vor-verschlossenen-tueren/ai.planet - Weltsimulation unter Windowshttps://www.rfc1437.de/2004/02/22/aiplanet-weltsimulation-unter-windows/ARD und ZDF kündigen Vertrag mit Kabel Deutschlandhttps://www.rfc1437.de/2004/02/22/ard-und-zdf-kuendigen-vertrag-mit-kabel-deutschlnd/Eine Weltmacht, nicht ganz von dieser Welthttps://www.rfc1437.de/2004/02/22/eine-weltmacht-nicht-ganz-von-dieser-welt/Folklore.org: Macintosh Stories: Hungarianhttps://www.rfc1437.de/2004/02/22/folkloreorg-macintosh-stories-hungarian/Hartbleihttps://www.rfc1437.de/2004/02/22/hartblei/Steve Roy, Software Design : Action Helperhttps://www.rfc1437.de/2004/02/22/steve-roy-software-design-action-helper/Schwarzenegger will Homo-Hochzeiten stoppenhttps://www.rfc1437.de/2004/02/21/schwarzenegger-will-homo-hochzeiten-stoppen/asynchttp - Asynconronous HTTP Clienthttps://www.rfc1437.de/2004/02/20/asynchttp-asynconronous-http-client/hOp - Haskell Micro-Kernelhttps://www.rfc1437.de/2004/02/20/hop-haskell-micro-kernel/Smileys ...https://www.rfc1437.de/2004/02/20/smileys/Using the iPod Hold switch to prolong battery lifehttps://www.rfc1437.de/2004/02/20/using-the-ipod-hold-switch-to-prolong-battery-life/GROKLAW - RedHat steigt auch einhttps://www.rfc1437.de/2004/02/19/groklaw-redhat-steigt-auch-ein/ModelingObject-Relational Bridge for pythonhttps://www.rfc1437.de/2004/02/19/modelingobject-relational-bridge-for-python/Interview: "Die Gier hat den Verstand vernebelt"https://www.rfc1437.de/2004/02/17/interview-die-gier-hat-den-verstand-vernebelt/Toll Collect muss gehen - Stolpe nichthttps://www.rfc1437.de/2004/02/17/toll-collect-muss-gehen-stolpe-nicht/Verpflichtung zur Zensur?https://www.rfc1437.de/2004/02/17/verpflichtung-zur-zensur/3.3 weakref -- Weak referenceshttps://www.rfc1437.de/2004/02/16/3-3-weakref-weak-references/dp-now.com - News - Epson shows retro-style Leica rangefinder-compatible digicams at PMAhttps://www.rfc1437.de/2004/02/16/dp-nwcm-nws-psn-shws-rtr-styl-lc-rngfndr-cmptbl-dg/my-zope - LocalFS-1-1-0.tgzhttps://www.rfc1437.de/2004/02/16/my-zope-localfs-1-1-0-tgz/Python Dispatch Packagehttps://www.rfc1437.de/2004/02/16/python-dispatch-package/XML-RPC Client/Server Protocol Referencehttps://www.rfc1437.de/2004/02/16/xml-rpc-client-server-protocol-reference/BBC - OneMusic Sample Bank - Drumshttps://www.rfc1437.de/2004/02/15/bbc-onemusic-sample-bank-drums/Dent du Midi - MIDI File Converter for GarageBandhttps://www.rfc1437.de/2004/02/15/dent-du-midi-midi-file-converter-for-garageband/Der Apfelbaumhttps://www.rfc1437.de/2004/02/15/der-apfelbaum/Elfenkönige und Hubschrauber -- zum 70. Geburtstag von Niklaus Wirthhttps://www.rfc1437.de/2004/02/15/elfenkoenig-nd-hbschrbr-zm-70-gbrtstg-vn-nkls-wrth/Langzeitarbeitslose sollen Zivildienst leistenhttps://www.rfc1437.de/2004/02/15/langzeitarbeitslose-sollen-zivildienst-leisten/myelin: Feed Normalizerhttps://www.rfc1437.de/2004/02/15/myelin-feed-normalizer-2/Pantani found dead in Italian hotelhttps://www.rfc1437.de/2004/02/15/pantani-found-dead-in-italian-hotel/"Sunday Times": BBC soll zerschlagen werdenhttps://www.rfc1437.de/2004/02/15/sunday-times-bbc-soll-zerschlagen-werden/Violin loops,Fiddle loops,violin sampleshttps://www.rfc1437.de/2004/02/15/violin-loops-fiddle-loops-violin-samples/Das Geheimherz der Lügenfabrikhttps://www.rfc1437.de/2004/02/14/das-geheimherz-der-luegenfabrik/del.icio.us API documentationhttps://www.rfc1437.de/2004/02/14/del-icio-us-api-documentation/macosxhints - More info about remote wake and sleephttps://www.rfc1437.de/2004/02/14/macosxhints-more-info-about-remote-wake-and-sleep/macosxhints - Wake a sleeping Mac from the networkhttps://www.rfc1437.de/2004/02/14/macosxhints-wake-a-sleeping-mac-from-the-network/The Common Lisp Cookbookhttps://www.rfc1437.de/2004/02/14/the-common-lisp-cookbook/Von den "Opfern einer weltweiten Religion"https://www.rfc1437.de/2004/02/14/von-den-opfern-einer-weltweiten-religion/Wake550 Helphttps://www.rfc1437.de/2004/02/14/wake550-help/GROKLAW - Novell setzt nachhttps://www.rfc1437.de/2004/02/13/groklaw-novell-setzt-nach/ITmedia PCUPdate: Epson, worldwide first "range finder type digital camera"https://www.rfc1437.de/2004/02/13/itmedi-pcpdt-psn-wrldwd-frst-rng-fndr-typ-dgtl-cmr/"Mit Polizeikanonen auf Alternativspatzen geschossen"https://www.rfc1437.de/2004/02/13/mit-polizeikanonen-auf-alternativspatzen-geschossn/Wofür manche Anwälte so im Netz ihren Namen hergebenhttps://www.rfc1437.de/2004/02/13/wofuer-manche-anwaelte-so-im-netz-ihren-namn-hrgbn/«Domain-Kidnapping» kommt wiederhttps://www.rfc1437.de/2004/02/12/domain-kidnapping-kommt-wieder/Fernsehen:Denn sie wissen nicht, was sie tunhttps://www.rfc1437.de/2004/02/12/fernsehendenn-sie-wissen-nicht-was-sie-tun/Firefox ist ja ganz nett, aber ...https://www.rfc1437.de/2004/02/12/firefox-ist-ja-ganz-nett-aber/Gravenreuth-Kanzlei mahnt P2P-Portal emule.de abhttps://www.rfc1437.de/2004/02/12/gravenreuth-kanzlei-mahnt-p2p-portal-emulede-ab/Konica Minolta Maxxum 7 Digitalhttps://www.rfc1437.de/2004/02/12/konica-minolta-maxxum-7-digital/Mars Express schickt neue Fotoshttps://www.rfc1437.de/2004/02/12/mars-express-schickt-neue-fotos/PalmSource dropping Mac supporthttps://www.rfc1437.de/2004/02/12/palmsource-dropping-mac-support/Polaroid bringt neues Polaroid Material raushttps://www.rfc1437.de/2004/02/12/polaroid-bringt-neues-polaroid-material-raus/The Omni Group - Applications - OmniWeb - Betahttps://www.rfc1437.de/2004/02/12/the-omni-group-applications-omniweb-beta/Behavior Engineering - BE - AiShttps://www.rfc1437.de/2004/02/11/behavior-engineering-be-ais/Der Feind der ganzen Welthttps://www.rfc1437.de/2004/02/11/der-feind-der-ganzen-welt/GROKLAW - Novell mischt immer noch mithttps://www.rfc1437.de/2004/02/11/groklaw-novell-mischt-immer-noch-mit/Kabinett ebnet Weg für Gen-Foodhttps://www.rfc1437.de/2004/02/11/kabinett-ebnet-weg-fuer-gen-food/Kulturhauptstadt 2010: "Münster macht''s"https://www.rfc1437.de/2004/02/11/kulturhauptstadt-2010-muenster-macht039s/OpenMCL 0.14.1 - jetzt mit Cocoa-Bridge!https://www.rfc1437.de/2004/02/11/openmcl-0141-jetzt-mit-cocoa-bridge/Workbench: Tuesday, February 10, 2004https://www.rfc1437.de/2004/02/11/workbench-tuesday-february-10-2004/CLORB - a Common Lisp ORBhttps://www.rfc1437.de/2004/02/10/clorb-a-common-lisp-orb/Development Of Leica's Digital 'M' To Take About 2 Yearshttps://www.rfc1437.de/2004/02/10/development-of-leicas-digital-m-to-take-abot-2-yrs/Die Macht sind wirhttps://www.rfc1437.de/2004/02/10/die-macht-sind-wir/Katholiken finden die BBC gar nicht lustighttps://www.rfc1437.de/2004/02/10/katholiken-finden-die-bbc-gar-nicht-lustig/NETZEITUNG WELTRAUM: ISS-Besatzung sichtet Ufohttps://www.rfc1437.de/2004/02/10/netzeitung-weltraum-iss-besatzung-sichtet-ufo/Palm OS in zwei Versionenhttps://www.rfc1437.de/2004/02/10/palm-os-in-zwei-versionen/PycURL Home Pagehttps://www.rfc1437.de/2004/02/10/pycurl-home-page/shwebyhshandler.pyhttps://www.rfc1437.de/2004/02/10/shwebyhshandler-py/Sorglos-Paket für iPod-Upgraderhttps://www.rfc1437.de/2004/02/10/sorglos-paket-fuer-ipod-upgrader/Leica To Develop Digital "M" Camera - Sourcehttps://www.rfc1437.de/2004/02/09/leica-to-develop-digital-m-camera-source/RFC 1864 (rfc1864) - The Content-MD5 Header Fieldhttps://www.rfc1437.de/2004/02/09/rfc-1864-rfc1864-the-content-md5-header-field/Was schämenhttps://www.rfc1437.de/2004/02/09/was-schaemen/GROKLAW - SCO gegen IBM, 0:1?https://www.rfc1437.de/2004/02/08/groklaw-sco-gegen-ibm-01/PLT Spy - Python in Schemehttps://www.rfc1437.de/2004/02/08/plt-spy-python-in-scheme/0700-Rufnummern im Impressum abgemahnthttps://www.rfc1437.de/2004/02/06/0700-rufnummern-im-impressum-abgemahnt/Music industry raids Kazaahttps://www.rfc1437.de/2004/02/06/music-industry-raids-kazaa/Opposition sieht Regierung am Endehttps://www.rfc1437.de/2004/02/06/opposition-sieht-regierung-am-ende/RFC 2445 - vCalendarhttps://www.rfc1437.de/2004/02/06/rfc-2445-vcalendar/Schröder tritt als SPD-Vorsitzender abhttps://www.rfc1437.de/2004/02/06/schroeder-tritt-als-spd-vorsitzender-ab/SCO vs. Linux: Copyright-Klage gegen IBMhttps://www.rfc1437.de/2004/02/06/sco-vs-linux-copyright-klage-gegen-ibm/Toolserver Framework for Pythonhttps://www.rfc1437.de/2004/02/06/toolserver-framework-for-python/booklooker.de - gebrauchte Bücher kaufen und verkaufen. Riesenauswahl &amp; viele Schnäppchen!https://www.rfc1437.de/2004/02/05/booklooker-de-gebrauchte-buecher-kaufen-und/DevChannel | The Affero GPL: Closing the Distribution Loopholehttps://www.rfc1437.de/2004/02/05/devchannel-the-affero-gpl-closing-the/.:index deutsch:.https://www.rfc1437.de/2004/02/05/index-deutsch/OS X Options Now Include CMUCLhttps://www.rfc1437.de/2004/02/05/os-x-options-now-include-cmucl/PEP 324 -- popen5 - New POSIX process modulehttps://www.rfc1437.de/2004/02/05/pep-324-popen5-new-posix-process-module/Weise soll neuer BA-Chef werdenhttps://www.rfc1437.de/2004/02/05/weise-soll-neuer-ba-chef-werden/Dont Try This at Home Kids...https://www.rfc1437.de/2004/02/04/dont-try-this-at-home-kids/Eidetic Document Management Systemhttps://www.rfc1437.de/2004/02/04/eidetic-document-management-system/Leo's Home Pagehttps://www.rfc1437.de/2004/02/04/leo-s-home-page/ATPM 10.02 - ATPO: Outliner User Interfaceshttps://www.rfc1437.de/2004/02/03/atpm-1002-atpo-outliner-user-interfaces/GraphPath Languagehttps://www.rfc1437.de/2004/02/03/graphpath-language/RSS Feeds für Apple Knowledgebasehttps://www.rfc1437.de/2004/02/03/rss-feeds-fuer-apple-knowledgebase/SecurityFocus HOME Columnists: A Visit from the FBIhttps://www.rfc1437.de/2004/02/03/securityfocus-home-columnists-a-visit-from-the-fbi/Why your Movable Type blog must diehttps://www.rfc1437.de/2004/02/03/why-your-movable-type-blog-must-die/A Retrospective on PAIPhttps://www.rfc1437.de/2004/02/02/a-retrospective-on-paip/André Simon - Startseitehttps://www.rfc1437.de/2004/02/02/andr-simon-startseite/Astronauten sollten notfalls auch ihr Leben opfernhttps://www.rfc1437.de/2004/02/02/astronauten-sollten-notfalls-auch-ihr-leben-opfern/Ausbeutung genetischer Ressourcen in der Antarktishttps://www.rfc1437.de/2004/02/02/ausbeutung-genetischer-ressourcen-in-der-antarktis/Continuations Made Simple and Illustratedhttps://www.rfc1437.de/2004/02/02/continuations-made-simple-and-illustrated/Keine Zuzahlungserleichterung für Heimwohnerhttps://www.rfc1437.de/2004/02/02/keine-zuzahlungserleichterung-fuer-heimwohner/PEP 327 -- Decimal Data Typehttps://www.rfc1437.de/2004/02/02/pep-327-decimal-data-type/Python for Lisp Programmershttps://www.rfc1437.de/2004/02/02/python-for-lisp-programmers/pyXLWriterhttps://www.rfc1437.de/2004/02/02/pyxlwriter/SourceForge.net: Project Info - bytecodehackshttps://www.rfc1437.de/2004/02/02/sourceforge-net-project-info-bytecodehacks/WADhttps://www.rfc1437.de/2004/02/02/wad/Benutzerhandbuch für Radio Userland 8.0.8https://www.rfc1437.de/2004/02/01/benutzerhandbuch-fuer-radio-userland-8-0-8/camlFloathttps://www.rfc1437.de/2004/02/01/camlfloat/Freie Software zwischen Privat- und Gemeineigentumhttps://www.rfc1437.de/2004/02/01/freie-software-zwischen-privat-und-gemeineigentum/Geschichten aus dem Service ...https://www.rfc1437.de/2004/02/01/geschichten-aus-dem-service/Kästner ./. Schluhttps://www.rfc1437.de/2004/02/01/kaestner-schlu/Minolta DiMAGE A2, Z2 and XG Rumouredhttps://www.rfc1437.de/2004/02/01/minolta-dimage-a2-z2-and-xg-rumoured/MozPythonhttps://www.rfc1437.de/2004/02/01/mozpython/Pod2Gohttps://www.rfc1437.de/2004/02/01/pod2go/tagesschau.de : Fata Morgana in Eis und Schneehttps://www.rfc1437.de/2004/02/01/tagesschaude-fata-morgana-in-eis-und-schnee/www. is deprecated.https://www.rfc1437.de/2004/02/01/www-is-deprecated/cmp blog: Announcing SCPlugin | Goin'' to the chapel...https://www.rfc1437.de/2004/01/31/cmp-blog-announcing-scplugin-goin-to-the-chapel/CSU bestreitet Finanzproblemehttps://www.rfc1437.de/2004/01/31/csu-bestreitet-finanzprobleme/DP Essentials #05 - Improving "Presence" in Digital Imageshttps://www.rfc1437.de/2004/01/31/dp-essentials-05-improving-presence-in-digital-mgs/German Keyboard Layouthttps://www.rfc1437.de/2004/01/31/german-keyboard-layout/Kampfroboterhttps://www.rfc1437.de/2004/01/31/kampfroboter/Nur mal so gesagt haben wollen ...https://www.rfc1437.de/2004/01/31/nur-mal-so-gesagt-haben-wollen/Rainer Brockerhoff :: USInternationalhttps://www.rfc1437.de/2004/01/31/rainer-brockerhoff-usinternational/Splasm Software - Brightness Controlhttps://www.rfc1437.de/2004/01/31/splasm-software-brightness-control/XPde desktop environmenthttps://www.rfc1437.de/2004/01/31/xpde-desktop-environment/BA-Interimschef verhinderte Entlastung Gerstershttps://www.rfc1437.de/2004/01/30/ba-interimschef-verhinderte-entlastung-gersters/Hüter des verlorenen Satzes - sueddeutsche.de - Kulturhttps://www.rfc1437.de/2004/01/30/hueter-des-verlorenen-satzes-sueddeutschede-kultur/NASA will Entscheidung über Hubble-Aufgabe überdenkenhttps://www.rfc1437.de/2004/01/30/nasa-will-entscheidung-252ber-hubble-fgb-252brdnkn/News: Wird XFree86 GPL inkompatibel?https://www.rfc1437.de/2004/01/30/news-wird-xfree86-gpl-inkompatibel/Python Apocryphahttps://www.rfc1437.de/2004/01/30/python-apocrypha/Wegwerf-DVD entpuppt sich als Ladenhüterhttps://www.rfc1437.de/2004/01/30/wegwerf-dvd-entpuppt-sich-als-ladenhueter/Yahoo! News - Decomposing Whale Explodes on Streethttps://www.rfc1437.de/2004/01/30/yahoo-news-decomposing-whale-explodes-on-street/833786 - Schritte, die helfen können, gefälschte ("Spoof"-) Websites und böswillige Hyperlin ...https://www.rfc1437.de/2004/01/29/833786-schrtt-d-hlfn-knnn-gflscht-spf-wbsts-nd-bsw/Chuzpe - das Blog zur Sendunghttps://www.rfc1437.de/2004/01/29/chuzpe-das-blog-zur-sendung/Dirk Olbertz :: Blog: Umgang mit öffentlicher Kritikhttps://www.rfc1437.de/2004/01/29/dirk-olbertz-blog-umgang-mit-oeffentlicher-kritik/FAQTs - Knowledge Base - View Entry - Is there a way I can use staticmethod and classmethod in Python 2.1?https://www.rfc1437.de/2004/01/29/faqts-knowledge-base-view-entry-is-there-a-way-i/NeoOffice/J Homehttps://www.rfc1437.de/2004/01/29/neooffice-j-home/T-DSL soll schneller werdenhttps://www.rfc1437.de/2004/01/29/t-dsl-soll-schneller-werden/EU-Rat drängt auf Kriminalisierung leichter Urheberrechtsverstößehttps://www.rfc1437.de/2004/01/27/eu-rat-draengt-auf-krmnlsrng-lchtr-rhbrrchtsvrstss/MultiSync - A Synchronization Toolhttps://www.rfc1437.de/2004/01/27/multisync-a-synchronization-tool/NETZEITUNG PEOPLE: Ex-Mitglied von Jethro Tull ist jetzt eine Frauhttps://www.rfc1437.de/2004/01/27/netzeitung-people-x-mtgld-vn-jthr-tll-st-jtzt-n-fr/Nochmal zum IE Bughttps://www.rfc1437.de/2004/01/27/nochmal-zum-ie-bug/Public Image Unlimitedhttps://www.rfc1437.de/2004/01/27/public-image-unlimited/Rätsel um IE-Problem wohl gelösthttps://www.rfc1437.de/2004/01/27/raetsel-um-ie-problem-wohl-geloest/Steuerreform: Union zweifelt an den eigenen Möglichkeitenhttps://www.rfc1437.de/2004/01/27/steuerreform-union-zweifelt-an-den-eigenn-mglchktn/Abgeordnete kriegen 1.950 Euro mehrhttps://www.rfc1437.de/2004/01/26/abgeordnete-kriegen-1950-euro-mehr/ASPN : Python Cookbook : Syntax-highlighted code blocks for docutilshttps://www.rfc1437.de/2004/01/26/aspn-python-cookbook-syntax-highlighted-code/Bill Gates prophezeit erfolgreichen Kampf gegen Spamhttps://www.rfc1437.de/2004/01/26/bill-gates-prophezeit-erfolgreichen-kampf-gegn-spm/Color managementhttps://www.rfc1437.de/2004/01/26/color-management/Dunkle Schokolade mit überraschender Nebenwirkunghttps://www.rfc1437.de/2004/01/26/dunkle-schokolade-mit-ueberraschender-nebenwirkung/Ende des Managementshttps://www.rfc1437.de/2004/01/26/ende-des-managements/Fast-Food-Experimenthttps://www.rfc1437.de/2004/01/26/fast-food-experiment/Französischer Kulturminister fordert Gesetze gegen illegalen Musiktauschhttps://www.rfc1437.de/2004/01/26/franzosschr-kltrmnstr-frdrt-gstz-ggn-llgln-msktsch/Gerster sieht sich als Opfer einer Kampagnehttps://www.rfc1437.de/2004/01/26/gerster-sieht-sich-als-opfer-einer-kampagne/Ich brauch mal einen CSS Experten mit IE 6 Win Erfahrungenhttps://www.rfc1437.de/2004/01/26/ich-brauch-mal-einen-css-experten-mt-6-wn-rfhrngn/Linux-Kernel auf Windowshttps://www.rfc1437.de/2004/01/26/linux-kernel-auf-windows/01.24.04 - Spirit Condition Upgraded As Twin Rover Nears Marshttps://www.rfc1437.de/2004/01/25/012404-spirit-condition-upgraded-s-twn-rvr-nrs-mrs/Contax N Digital Reviewhttps://www.rfc1437.de/2004/01/25/contax-n-digital-review/John McCarthyhttps://www.rfc1437.de/2004/01/25/john-mccarthy/Oswald Metzger hat es geschafft!https://www.rfc1437.de/2004/01/25/oswald-metzger-hat-es-geschafft/path Python modulehttps://www.rfc1437.de/2004/01/25/path-python-module/Post vom Versuchslaborhttps://www.rfc1437.de/2004/01/25/post-vom-versuchslabor/At first I thought I was going mad.https://www.rfc1437.de/2004/01/24/at-first-i-thought-i-was-going-mad/Cheney: "Ideologien der Gewalt bei Wurzel packen"https://www.rfc1437.de/2004/01/24/cheney-ideologien-der-gewalt-bei-wurzel-packen/Genug Wasser für eine bemannte Mars-Missionhttps://www.rfc1437.de/2004/01/24/genug-wasser-fuer-eine-bemannte-mars-mission/Krankenkassen nehmen Abschied von 13,6 Prozenthttps://www.rfc1437.de/2004/01/24/krankenkassen-nehmen-abschied-von-136-prozent/MDR.DE: Starfotograf Helmut Newton bei Autounfall getötethttps://www.rfc1437.de/2004/01/24/mdrde-starfotograf-helmut-newton-bei-autonfll-gttt/Mein erster Mac....https://www.rfc1437.de/2004/01/24/mein-erster-mac/Plastinator wusste von Hinrichtungsopfernhttps://www.rfc1437.de/2004/01/24/plastinator-wusste-von-hinrichtungsopfern/Ranchero Software: Big Cat Scripts Pluginhttps://www.rfc1437.de/2004/01/24/ranchero-software-big-cat-scripts-plugin/SPD-Politiker: Erhöhung des Soli-Zuschlags möglichhttps://www.rfc1437.de/2004/01/24/spd-politiker-erhoehung-des-soli-zuschlags-moeglch/Bahnfahren wird teurer - erstmals Höchstpreishttps://www.rfc1437.de/2004/01/23/bahnfahren-wird-teurer-erstmals-hoechstpreis/Cardinal says gays are perverts but brothels are OKhttps://www.rfc1437.de/2004/01/23/cardinal-says-gays-are-perverts-but-brothels-are-k/DVD-Industrie macht Rückzieher im DeCSS-Rechtsstreithttps://www.rfc1437.de/2004/01/23/dvd-industrie-macht-rueckzieher-im-decss-rchtsstrt/ESA - Mars Express - Mars Express sees its first waterhttps://www.rfc1437.de/2004/01/23/esa-mars-express-mars-express-sees-its-first-water/Gerolsteiner will vor allem Top-Team bleibenhttps://www.rfc1437.de/2004/01/23/gerolsteiner-will-vor-allem-top-team-bleiben/Gerster offenbar weitgehend entlastethttps://www.rfc1437.de/2004/01/23/gerster-offenbar-weitgehend-entlastet/Halliburton gibt Bestechung bei Irak-Aufträgen zuhttps://www.rfc1437.de/2004/01/23/halliburton-gibt-bestechung-bei-irak-auftraegen-zu/Imaging Resource: Kanguru FC-RWhttps://www.rfc1437.de/2004/01/23/imaging-resource-kanguru-fc-rw/Markenrechts-Anwalt soll von dubiosen Internetseiten profitierenhttps://www.rfc1437.de/2004/01/23/markenrechts-anwalt-soll-von-dubsn-ntrntstn-prftrn/Neue Farbenhttps://www.rfc1437.de/2004/01/23/neue-farben/Novell sagt adieu zu United Linuxhttps://www.rfc1437.de/2004/01/23/novell-sagt-adieu-zu-united-linux/Regulierungsbehörde schaltet Standortdatenbank zu Funkanlagen freihttps://www.rfc1437.de/2004/01/23/regulierungsbehrd-schltt-stndrtdtnbnk-z-fnknlgn-fr/Reindeer Graphics, Inc. - Productshttps://www.rfc1437.de/2004/01/23/reindeer-graphics-inc-products/RSS-Newsfeed: Immer wissen, was es Neues gibt - Der Tag - SPIEGEL ONLINEhttps://www.rfc1437.de/2004/01/23/rss-newsfeed-immer-wssn-ws-s-ns-gbt-dr-tg-spgl-nln/Simple Python Aggregatorhttps://www.rfc1437.de/2004/01/23/simple-python-aggregator/XML.com: Lightweight XML Search Servers [Jan. 21, 2004]https://www.rfc1437.de/2004/01/23/xml-com-lightweight-xml-search-servers-jan-21-2004/Adobe Photoshop: Plugins for Adobe Photoshophttps://www.rfc1437.de/2004/01/22/adobe-photoshop-plugins-for-adobe-photoshop/Beamter unbemerkt verstorbenhttps://www.rfc1437.de/2004/01/22/beamter-unbemerkt-verstorben/CIA Bot - CIAhttps://www.rfc1437.de/2004/01/22/cia-bot-cia/d2r: comment spam filtering - it''s all about the IPshttps://www.rfc1437.de/2004/01/22/d2r-comment-spam-filtering-it-s-all-about-the-ips/heise online: Bluetooth zum Telefonieren und Surfenhttps://www.rfc1437.de/2004/01/22/heise-online-bluetooth-zum-telefonieren-und-surfen/IBM won''t indemnify, plans to win suithttps://www.rfc1437.de/2004/01/22/ibm-wont-indemnify-plans-to-win-suit/Mars-Rover "Spirit" meldet sich nichthttps://www.rfc1437.de/2004/01/22/mars-rover-spirit-meldet-sich-nicht/Photoshop plugins for professional photo retouchinghttps://www.rfc1437.de/2004/01/22/photoshop-plugins-for-professional-photo/PyChecker: a python source code checking toolhttps://www.rfc1437.de/2004/01/22/pychecker-a-python-source-code-checking-tool/RAW vs JPG © 2004 KenRockwell.comhttps://www.rfc1437.de/2004/01/22/raw-vs-jpg-2004-kenrockwellcom/Test des iX-Spamfilters per E-Mailhttps://www.rfc1437.de/2004/01/22/test-des-ix-spamfilters-per-e-mail/Wegen Gerster: CDU sieht einen Fall Clementhttps://www.rfc1437.de/2004/01/22/wegen-gerster-cdu-sieht-einen-fall-clement/DGB will längere Lebensarbeitszeit zulassenhttps://www.rfc1437.de/2004/01/21/dgb-will-laengere-lebensarbeitszeit-zulassen/dp-now.com - Features - Printer reviews - HP Photosmart 7960https://www.rfc1437.de/2004/01/21/dp-now-com-features-printer-reviews-hp-photosmart/LaTeX Equation Editorhttps://www.rfc1437.de/2004/01/21/latex-equation-editor/McKinsey: Schlecht beraten - manager-magazin.dehttps://www.rfc1437.de/2004/01/21/mckinsey-schlecht-beraten-manager-magazinde/News: SCO verklagt Novellhttps://www.rfc1437.de/2004/01/21/news-sco-verklagt-novell/Nopastehttps://www.rfc1437.de/2004/01/21/nopaste/Patentstreit um Musik-Download in Europa beigelegthttps://www.rfc1437.de/2004/01/21/patentstreit-um-musik-download-in-europa-beigelegt/Rau-Nachfolge: Kanzler ärgert Unionhttps://www.rfc1437.de/2004/01/21/rau-nachfolge-kanzler-aergert-union/xgpatsf.gthttps://www.rfc1437.de/2004/01/21/xgpatsf-gt/Bundesagentur für Arbeit: Beweise offenbar manipulierthttps://www.rfc1437.de/2004/01/20/bundesagentur-fuer-arbeit-beweise-offenbar-manplrt/CSU will Abtreibung auf Staatskosten stoppenhttps://www.rfc1437.de/2004/01/20/csu-will-abtreibung-auf-staatskosten-stoppen/Essentielle Killer-Tips für GarageBandhttps://www.rfc1437.de/2004/01/20/essentielle-killer-tips-fuer-garageband/Kodak Discontinues DCS Pro Backshttps://www.rfc1437.de/2004/01/20/kodak-discontinues-dcs-pro-backs/Lob für den Opa bringt Merz in die Bredouillehttps://www.rfc1437.de/2004/01/20/lob-fuer-den-opa-bringt-merz-in-die-bredouille/Massachusetts Senator Gets Lift for the Race in New Hampshirehttps://www.rfc1437.de/2004/01/20/massachusetts-senator-gts-lft-fr-th-rc-n-nw-hmpshr/Rückendeckung für Gersterhttps://www.rfc1437.de/2004/01/20/rueckendeckung-fuer-gerster/Sun will Hardware für Windows zertifizieren lassen [Update]https://www.rfc1437.de/2004/01/20/sun-will-hardware-fuer-windows-zertifizrn-lssn-pdt/The Game Is Overhttps://www.rfc1437.de/2004/01/20/the-game-is-over/Betrug leicht gemacht: Sicherheits-Lücke bei Ebayhttps://www.rfc1437.de/2004/01/19/betrug-leicht-gemacht-sicherheits-luecke-bei-ebay/BottomFeeder - Cross-platform RSS/Atom News Aggregatorhttps://www.rfc1437.de/2004/01/19/bottomfeeder-cross-platform-rss-atom-news-2/Domain-Recht: Wenn zwei sich streiten, bekommt keiner was...https://www.rfc1437.de/2004/01/19/domain-recht-wenn-zwei-sich-streiten-bekmmt-knr-ws/ESA - Mars Expresshttps://www.rfc1437.de/2004/01/19/esa-mars-express/GTK OSXhttps://www.rfc1437.de/2004/01/19/gtk-osx/NSI nimmt Strato-Kundendomains aus dem DNShttps://www.rfc1437.de/2004/01/19/nsi-nimmt-strato-kundendomains-aus-dem-dns/Strafanzeige gegen Ulla Schmidt nach Tod eines Nierenkrankenhttps://www.rfc1437.de/2004/01/19/strafanzeige-gegen-ulla-schmidt-nch-td-ns-nrnkrnkn/Tapestry - Your Favourite Comics by RSS | dwlt.nethttps://www.rfc1437.de/2004/01/19/tapestry-your-favourite-comics-by-rss-dwlt-net/VisualWorks: VisualWorks TypeLess IRC Clienthttps://www.rfc1437.de/2004/01/19/visualworks-visualworks-typeless-irc-client/Trittin wirft Energieversorger "Abzockerei" vorhttps://www.rfc1437.de/2004/01/18/trittin-wirft-energieversorger-abzockerei-vor/Bilder aus der Kodak DCS 520https://www.rfc1437.de/2004/01/17/bilder-aus-der-kodak-dcs-520/Digital Secrets: How Spirit Makes Great Photoshttps://www.rfc1437.de/2004/01/17/digital-secrets-how-spirit-makes-great-photos/Network Solutions und Register.com wegen Patentverletzung verklagthttps://www.rfc1437.de/2004/01/17/network-solutins-nd-rgstrcm-wgn-ptntvrltzng-vrklgt/Speno's Pythonic Avocado 16.1.2004https://www.rfc1437.de/2004/01/17/speno-s-pythonic-avocado-16-1-2004/Von Sorben und Helmenhttps://www.rfc1437.de/2004/01/17/von-sorben-und-helmen/Berichte: Gerster schloss weiteren Beratervertrag abhttps://www.rfc1437.de/2004/01/16/berichte-gerster-schloss-weiteren-beratervertrag-b/Digital Camera batterieshttps://www.rfc1437.de/2004/01/16/digital-camera-batteries/Europas PR-Crash auf dem Marshttps://www.rfc1437.de/2004/01/16/europas-pr-crash-auf-dem-mars/FavIcon Generatorhttps://www.rfc1437.de/2004/01/16/favicon-generator/GROKLAW - Kommentare zu den "Beweisen" von SCOhttps://www.rfc1437.de/2004/01/16/groklaw-kommentare-zu-den-beweisen-von-sco/iPod Battery FAQhttps://www.rfc1437.de/2004/01/16/ipod-battery-faq/Krebs durch Kunstlichthttps://www.rfc1437.de/2004/01/16/krebs-durch-kunstlicht/Simon Willison: This could be the most ludicrous tech patent yethttps://www.rfc1437.de/2004/01/16/simon-willison-this-cld-b-th-mst-ldcrs-tch-ptnt-yt/Tear Your iPod mini Open To Get The 4GB Hard Drive?https://www.rfc1437.de/2004/01/16/tear-your-ipod-mini-open-to-get-the-4gb-hard-drive/The New Pythonhttps://www.rfc1437.de/2004/01/16/the-new-python/Unifying types and classes in Python 2.2https://www.rfc1437.de/2004/01/16/unifying-types-and-classes-in-python-2-2/Voigtlander Bessa R2S R2Chttps://www.rfc1437.de/2004/01/16/voigtlander-bessa-r2s-r2c/Bayern will Unterrichtsstoff um 60 Prozent verringernhttps://www.rfc1437.de/2004/01/15/bayern-will-unterrichtsstoff-um-60-prozent-vrrngrn/Canon 100mm Macro USM vs Tamron 90mm Macrohttps://www.rfc1437.de/2004/01/15/canon-100mm-macro-usm-vs-tamron-90mm-macro/Canon UK - EF 50mm f/2.5 Macrohttps://www.rfc1437.de/2004/01/15/canon-uk-ef-50mm-f-2-5-macro/debtakeover - Konvertierung nach Debianhttps://www.rfc1437.de/2004/01/15/debtakeover-konvertierung-nach-debian/FingerWorks - Product Overview - Portable, Programmable, USB Touchpads and Keyboardshttps://www.rfc1437.de/2004/01/15/fingerworks-product-overview-portable/FM Softwarehttps://www.rfc1437.de/2004/01/15/fm-software/Objektiv-Testübersichthttps://www.rfc1437.de/2004/01/15/objektiv-testuebersicht/Registrierungsdaten per Bookmarklethttps://www.rfc1437.de/2004/01/15/registrierungsdaten-per-bookmarklet/Uff. Mindstorms wird es weiterhin geben.https://www.rfc1437.de/2004/01/15/uff-mindstorms-wird-es-weiterhin-geben/Anti-counterfeit software: implications for Open Sourcehttps://www.rfc1437.de/2004/01/14/anti-counterfeit-software-implications-for-opn-src/CDU-Politiker: Feiertage mit Urlaub verrechnenhttps://www.rfc1437.de/2004/01/14/cdu-politiker-feiertage-mit-urlaub-verrechnen/Deutsche Bahn AG: Das Sorgenkind feiert Jubiläumhttps://www.rfc1437.de/2004/01/14/deutsche-bahn-ag-das-sorgenkind-feiert-jubilaeum/Deutsche Wirtschaft hofft doch noch auf Irak-Aufträgehttps://www.rfc1437.de/2004/01/14/deutsche-wirtschaft-hofft-doch-noch-auf-irak-aftrg/Digital Black and Whitehttps://www.rfc1437.de/2004/01/14/digital-black-and-white/Eichel macht weniger Schulden als befürchtethttps://www.rfc1437.de/2004/01/14/eichel-macht-weniger-schulden-als-befuerchtet/Hanau: Verfahren gegen Ex-Oberbürgermeisterin eingestellthttps://www.rfc1437.de/2004/01/14/hanau-verfahren-gegen-ex-oberbuergermestrn-ngstllt/Jaap Weel's Homepagehttps://www.rfc1437.de/2004/01/14/jaap-weel-s-homepage/PanoTools plug-inshttps://www.rfc1437.de/2004/01/14/panotools-plug-ins/SCO vs. Linux: ... und dann kam der Weihnachtsmannhttps://www.rfc1437.de/2004/01/14/sco-vs-linux-und-dann-kam-der-weihnachtsmann/Grinsekatzen forever?https://www.rfc1437.de/2004/01/13/grinsekatzen-forever/Immunität für Berlusconi aufgehobenhttps://www.rfc1437.de/2004/01/13/immunitaet-fuer-berlusconi-aufgehoben/Kanther, Sain-Wittgenstein und Weyrauch kommen vor Gerichthttps://www.rfc1437.de/2004/01/13/kanther-sain-wittgenstein-und-weyrch-kmmn-vr-grcht/Klasse, Jörg Schönenbornhttps://www.rfc1437.de/2004/01/13/klasse-joerg-schoenenborn/MySQL 5 kennt Stored Procedureshttps://www.rfc1437.de/2004/01/13/mysql-5-kennt-stored-procedures/News: Red Hat überträgt eCos-Urheberrechte an FSFhttps://www.rfc1437.de/2004/01/13/news-red-hat-uebertraegt-ecos-urheberrechte-an-fsf/PROGRAMMATIC INTERFACEShttps://www.rfc1437.de/2004/01/13/programmatic-interfaces/SubrosaSoft.com Ltd - Product Informationhttps://www.rfc1437.de/2004/01/13/subrosasoft-com-ltd-product-information/TV-Nostalgie: "Die Waltons" sind zurückhttps://www.rfc1437.de/2004/01/13/tv-nostalgie-die-waltons-sind-zurueck/Ben Bucksch - Projects - Various - TV Movie als XMLTVhttps://www.rfc1437.de/2004/01/12/ben-bucksch-projects-various-tv-movie-als-xmltv/DVD-Player-Hersteller KiSS wehrt sich gegen Vorwürfe von MPlayer-Entwicklernhttps://www.rfc1437.de/2004/01/12/dvd-plyr-hrstllr-kss-whrt-sch-ggn-vrwrf-vn-mplyr-n/Genveränderter Mais bald in Supermarkt-Regalenhttps://www.rfc1437.de/2004/01/12/genveraenderter-mais-bald-in-supermarkt-regalen/Html sucks completely - Manualhttps://www.rfc1437.de/2004/01/12/html-sucks-completely-manual/Intel contributes to anti-SCO Linux fundhttps://www.rfc1437.de/2004/01/12/intel-contributes-to-anti-sco-linux-fund/LizardTech, Inc - Genuine Fractalshttps://www.rfc1437.de/2004/01/12/lizardtech-inc-genuine-fractals/Localfeeds: Münster(50)https://www.rfc1437.de/2004/01/12/localfeeds-muenster50/Nachlese zum Ablauf der Verisign-Zertifikatehttps://www.rfc1437.de/2004/01/12/nachlese-zum-ablauf-der-verisign-zertifikate/News: Nochmal Silvester für Unix-Benutzerhttps://www.rfc1437.de/2004/01/12/news-nochmal-silvester-fuer-unix-benutzer/Rob Galbraith DPI: Photo transmission from Kodak cameras nearing releasehttps://www.rfc1437.de/2004/01/12/rob-galbraith-dpi-photo-transmission-from-kodak/Rob Galbraith DPI: Resuscitating Kodak DCS NiMH batterieshttps://www.rfc1437.de/2004/01/12/rob-galbraith-dpi-resuscitating-kodak-dcs-nimh/The E3 Projecthttps://www.rfc1437.de/2004/01/12/the-e3-project/The E3 Projecthttps://www.rfc1437.de/2004/01/12/the-e3-project-2/US-Bomber wirft versehentlich Bombe über Großbritannien abhttps://www.rfc1437.de/2004/01/12/us-bomber-wirft-versehentlich-bomb-br-grssbrtnnn-b/VPWiki Spec 0.1https://www.rfc1437.de/2004/01/12/vpwiki-spec-0-1/Vorsitzender der Innenminister-Konferenz fordert mehr genetische Fingerabdrückehttps://www.rfc1437.de/2004/01/12/vrstzndr-dr-nnnmnstr-knfrnz-frdrt-mhr-gntsch-fngrb/"Wir werden gezwungen, Gentechnik zu unterstützen"https://www.rfc1437.de/2004/01/12/wir-werden-gezwungen-gentechnik-zu-unterstuetzen/FDP-Politiker für Abschaffung von Feiertagenhttps://www.rfc1437.de/2004/01/11/fdp-politiker-fuer-abschaffung-von-feiertagen/Lego baut wieder auf Steinehttps://www.rfc1437.de/2004/01/11/lego-baut-wieder-auf-steine/LinkTagMeaning - Atom Wikihttps://www.rfc1437.de/2004/01/11/linktagmeaning-atom-wiki/Praxisgebühr: Mitgehangen, mitgefangenhttps://www.rfc1437.de/2004/01/11/praxisgebuehr-mitgehangen-mitgefangen/Schleswig Holsteins Innenminister will Polizei-Zugriff auf Internet-Kundendatenhttps://www.rfc1437.de/2004/01/11/schlswg-hlstns-nnnmnstr-wll-plz-zgrff-f-ntrnt-kndn/Traffic-Kosten bei grösseren Hostingprojektenhttps://www.rfc1437.de/2004/01/11/traffic-kosten-bei-groesseren-hostingprojekten/Befürchtungen zum Europäischen Haftbefehl werden übertroffenhttps://www.rfc1437.de/2004/01/10/befuerchtungen-zum-europaschn-hftbfhl-wrdn-brtrffn/Der HP-iPodhttps://www.rfc1437.de/2004/01/10/der-hp-ipod/Die Decke fällt uns auf den Kopf ...https://www.rfc1437.de/2004/01/10/die-decke-faellt-uns-auf-den-kopf/Elmo - The Electronic Mail Operatorhttps://www.rfc1437.de/2004/01/10/elmo-the-electronic-mail-operator/Project info for Jellybeanhttps://www.rfc1437.de/2004/01/10/project-info-for-jellybean/Rapid Application development using PyQt and Eric3 ... in realtime!https://www.rfc1437.de/2004/01/10/rapid-application-development-using-pyqt-and/Blogger APIhttps://www.rfc1437.de/2004/01/09/blogger-api/chaotic intransient prose bursts: ecto is here!https://www.rfc1437.de/2004/01/09/chaotic-intransient-prose-bursts-ecto-is-here/Hochdruck: Wenn der Pinguin mal musshttps://www.rfc1437.de/2004/01/09/hochdruck-wenn-der-pinguin-mal-muss/Kinder-DNA-Datei für "Klau-Kids"https://www.rfc1437.de/2004/01/09/kinder-dna-datei-fuer-klau-kids/quickSubhttps://www.rfc1437.de/2004/01/09/quicksub/RFC: MetaWeblog APIhttps://www.rfc1437.de/2004/01/09/rfc-metaweblog-api/RFC: Really Simple Discoverability 1.0https://www.rfc1437.de/2004/01/09/rfc-really-simple-discoverability-1-0/Auf Lügen programmierthttps://www.rfc1437.de/2004/01/08/auf-luegen-programmiert/Esa schreibt "Beagle 2" abhttps://www.rfc1437.de/2004/01/08/esa-schreibt-beagle-2-ab/Keyspan launches USB Device Serverhttps://www.rfc1437.de/2004/01/08/keyspan-launches-usb-device-server/KODAK: Cleaning Imager Coverglass and Filtershttps://www.rfc1437.de/2004/01/08/kodak-cleaning-imager-coverglass-and-filters/Kodak DCS 520https://www.rfc1437.de/2004/01/08/kodak-dcs-520/Mehrheit der Deutschen hält Politiker für korrupthttps://www.rfc1437.de/2004/01/08/mehrheit-der-deutschen-haelt-politiker-fuer-korrpt/NRW droht Grippewellehttps://www.rfc1437.de/2004/01/08/nrw-droht-grippewelle/Photoshop: keine Lizenz zum Gelddruckenhttps://www.rfc1437.de/2004/01/08/photoshop-keine-lizenz-zum-gelddrucken/Rau-Nachfolge: "Der Schäuble, der kann''s"https://www.rfc1437.de/2004/01/08/rau-nachfolge-der-schaeuble-der-kanns/Vorabversion von Gimp 2.0 verfügbarhttps://www.rfc1437.de/2004/01/08/vorabversion-von-gimp-20-verfuegbar/ACEROLA Fruit Factshttps://www.rfc1437.de/2004/01/07/acerola-fruit-facts/Adunahttps://www.rfc1437.de/2004/01/07/aduna/AsciiDoc Home Pagehttps://www.rfc1437.de/2004/01/07/asciidoc-home-page/Bizarrer Zwilling enthüllt sein Geheimnishttps://www.rfc1437.de/2004/01/07/bizarrer-zwilling-enthuellt-sein-geheimnis/blogroll visualizedhttps://www.rfc1437.de/2004/01/07/blogroll-visualized/CL-SDL: Common Lisp bindings for SDLhttps://www.rfc1437.de/2004/01/07/cl-sdl-common-lisp-bindings-for-sdl/DrPythonhttps://www.rfc1437.de/2004/01/07/drpython/Hören und Sehen nur noch für Betuchte?https://www.rfc1437.de/2004/01/07/hoeren-und-sehen-nur-noch-fuer-betuchte/HP-12C für Mac OS Xhttps://www.rfc1437.de/2004/01/07/hp-12c-fuer-mac-os-x/Mambo at the Yardhttps://www.rfc1437.de/2004/01/07/mambo-at-the-yard/Movitz: A Common Lisp OS development platformhttps://www.rfc1437.de/2004/01/07/movitz-a-common-lisp-os-development-platform/OpenVPN - An Open Source VPN Solution by James Yonanhttps://www.rfc1437.de/2004/01/07/openvpn-an-open-source-vpn-solution-by-james-yonan/Photo.net Reviews HP Photosmart 7960https://www.rfc1437.de/2004/01/07/photonet-reviews-hp-photosmart-7960/What is Mac OS X?https://www.rfc1437.de/2004/01/07/what-is-mac-os-x/Advanced Bash-Scripting Guidehttps://www.rfc1437.de/2004/01/06/advanced-bash-scripting-guide-2/Ein Zehntel der Praxisgebühr für Bürokratiehttps://www.rfc1437.de/2004/01/06/ein-zehntel-der-praxisgebuehr-fuer-buerokratie/Mambo Open Sourcehttps://www.rfc1437.de/2004/01/06/mambo-open-source/MamboOS Documentation : Home Pagehttps://www.rfc1437.de/2004/01/06/mamboos-documentation-home-page/Mamboportal.com - Mambo Open Source CMS Portalhttps://www.rfc1437.de/2004/01/06/mamboportal-com-mambo-open-source-cms-portal/MOShttps://www.rfc1437.de/2004/01/06/mos/mt-daapd - Home Pagehttps://www.rfc1437.de/2004/01/06/mt-daapd-home-page/NASA: Die ISS hat möglicherweise ein Leckhttps://www.rfc1437.de/2004/01/06/nasa-die-iss-hat-moeglicherweise-ein-leck/Registrar Network Solutions verunsichert Strato-Kundenhttps://www.rfc1437.de/2004/01/06/registrar-network-solutions-verunsichert-strt-kndn/RWE bittet Privatkunden zur Kassehttps://www.rfc1437.de/2004/01/06/rwe-bittet-privatkunden-zur-kasse/SCG / Stéphane Ducasse / Free Bookshttps://www.rfc1437.de/2004/01/06/scg-st-phane-ducasse-free-books/Schützt Kaffee vor Diabetes?https://www.rfc1437.de/2004/01/06/schuetzt-kaffee-vor-diabetes/UADE - Unix Amiga Delitracker Emulator - an amiga music file player for unixhttps://www.rfc1437.de/2004/01/06/uade-unix-amiga-delitracker-emulator-an-amiga/Webgreshttps://www.rfc1437.de/2004/01/06/webgres/WhatOS: Free Real-time Operating System (RTOS) Solutionhttps://www.rfc1437.de/2004/01/06/whatos-free-real-time-operating-system-rtos/yops.de ::: what are you waiting for?https://www.rfc1437.de/2004/01/06/yops-de-what-are-you-waiting-for/Commerzbank kündigt Betriebsrentenhttps://www.rfc1437.de/2004/01/05/commerzbank-kuendigt-betriebsrenten/CVS Module for Apachehttps://www.rfc1437.de/2004/01/05/cvs-module-for-apache/Daten aus der Steckdose - Müll im Funkhttps://www.rfc1437.de/2004/01/05/daten-aus-der-steckdose-muell-im-funk/Die unerträgliche Leichtigkeit des Steins, Teil 2https://www.rfc1437.de/2004/01/05/die-unertraegliche-leichtigkeit-des-steins-teil-2/mailman-discard homehttps://www.rfc1437.de/2004/01/05/mailman-discard-home/NeoOffice/J Homehttps://www.rfc1437.de/2004/01/05/neooffice-j-home-2/News: Verletzung der GPL durch KISS-Technologyhttps://www.rfc1437.de/2004/01/05/news-verletzung-der-gpl-durch-kiss-technology/Seven See Offending SCO Code (LinuxWorld Feedback)https://www.rfc1437.de/2004/01/05/seven-see-offending-sco-code-linuxworld-feedback/The Best Page In The Universe.https://www.rfc1437.de/2004/01/05/the-best-page-in-the-universe/www.alscher.ch &gt; podboardhttps://www.rfc1437.de/2004/01/05/www-alscher-ch-gt-podboard/Canonware Onyxhttps://www.rfc1437.de/2004/01/04/canonware-onyx/Cooperating Systems HelloWorld Overviewhttps://www.rfc1437.de/2004/01/04/cooperating-systems-helloworld-overview/[Gd-hackers] XCode and Dylanhttps://www.rfc1437.de/2004/01/04/gd-hackers-xcode-and-dylan/Gesund dank Schokoladehttps://www.rfc1437.de/2004/01/04/gesund-dank-schokolade/Hausarrest für alle Kinder unter 14 Jahrenhttps://www.rfc1437.de/2004/01/04/hausarrest-fuer-alle-kinder-unter-14-jahren/OmniWeb 5 Previewhttps://www.rfc1437.de/2004/01/04/omniweb-5-preview/Originalanleitung Yashica FX 103 Programmhttps://www.rfc1437.de/2004/01/04/originalanleitung-yashica-fx-103-programm/Snakelets - simple Python web app serverhttps://www.rfc1437.de/2004/01/04/snakelets-simple-python-web-app-server/Adapters: Leica R or Nikon F to EOS&nbsp;https://www.rfc1437.de/2004/01/03/adapters-leica-r-or-nikon-f-to-eos-nbsp/Die Deutschen sollen länger schuftenhttps://www.rfc1437.de/2004/01/03/die-deutschen-sollen-laenger-schuften/fauxidenthttps://www.rfc1437.de/2004/01/03/fauxident/Hosting at Common-Lisp.nethttps://www.rfc1437.de/2004/01/03/hosting-at-common-lisp-net/Panoramafreiheit mit Lücken?https://www.rfc1437.de/2004/01/03/panoramafreiheit-mit-luecken/Rollei 6008i Camera Reviewhttps://www.rfc1437.de/2004/01/03/rollei-6008i-camera-review/T-Mobile Teamhttps://www.rfc1437.de/2004/01/03/t-mobile-team/THE BASTARD OPERATOR FROM HELL OFFICIAL ARCHIVEhttps://www.rfc1437.de/2004/01/03/the-bastard-operator-from-hell-official-archive/Übergang von Telekom zu T-Mobile mit Pannenhttps://www.rfc1437.de/2004/01/03/uebergang-von-telekom-zu-t-mobile-mit-pannen/Ari Paparo Dot Com: Big List of Blog Search Engineshttps://www.rfc1437.de/2004/01/02/ari-paparo-dot-com-big-list-of-blog-search-engines/Augenuntersuchung kostet nicht extrahttps://www.rfc1437.de/2004/01/02/augenuntersuchung-kostet-nicht-extra/Bahntarifdschungelhttps://www.rfc1437.de/2004/01/02/bahntarifdschungel/Bis zu zehn Prozent der Milchstraße bewohnbarhttps://www.rfc1437.de/2004/01/02/bis-zu-zehn-prozent-der-milchstrasse-bewohnbar/CLISP - an ANSI Common Lisphttps://www.rfc1437.de/2004/01/02/clisp-an-ansi-common-lisp/Der Wankelmotor und sein Erfinder, Felix Wankelhttps://www.rfc1437.de/2004/01/02/der-wankelmotor-und-sein-erfinder-felix-wankel/GNUnethttps://www.rfc1437.de/2004/01/02/gnunet/GROKLAW - ein bischen Hintergrund zu der ABI Behauptung von SCOhttps://www.rfc1437.de/2004/01/02/groklaw-ein-bischen-hintergrnd-z-dr-b-bhptng-vn-sc/Homonym-Alarmhttps://www.rfc1437.de/2004/01/02/homonym-alarm/IPython - An enhanced Interactive Pythonhttps://www.rfc1437.de/2004/01/02/ipython-an-enhanced-interactive-python-2/Kabissa - Browse the World Wide Web by Email!https://www.rfc1437.de/2004/01/02/kabissa-browse-the-world-wide-web-by-email/LinuxWorld | Linux's other file sharing softwarehttps://www.rfc1437.de/2004/01/02/linuxworld-linuxs-other-file-sharing-software/SPD-Politiker Maas stachelt Kopftuchstreit anhttps://www.rfc1437.de/2004/01/02/spd-politiker-maas-stachelt-kopftuchstreit-an/Substanz im Rotwein wirkt gegen Krebshttps://www.rfc1437.de/2004/01/02/substanz-im-rotwein-wirkt-gegen-krebs/URL · Python software · LivingLogic AGhttps://www.rfc1437.de/2004/01/02/url-python-software-livinglogic-ag/Adobe Photoshop 7: Sketch Effecthttps://www.rfc1437.de/2004/01/01/adobe-photoshop-7-sketch-effect/Das A und O der Terrorsuchehttps://www.rfc1437.de/2004/01/01/das-a-und-o-der-terrorsuche/Feed Parser [dive into mark]https://www.rfc1437.de/2004/01/01/feed-parser-dive-into-mark/Fighting to Save Hubble Telescope From Fiery Deathhttps://www.rfc1437.de/2004/01/01/fighting-to-save-hubble-telescope-from-fiery-death/Forbes.com: Linux''s Hit Menhttps://www.rfc1437.de/2004/01/01/forbescom-linuxs-hit-men/Nyetwork Wiki: MiniWikihttps://www.rfc1437.de/2004/01/01/nyetwork-wiki-miniwiki/Perl Monks - The Monastery Gateshttps://www.rfc1437.de/2004/01/01/perl-monks-the-monastery-gates/Core Team von XFree86 löst sich aufhttps://www.rfc1437.de/2003/12/31/core-team-von-xfree86-loest-sich-auf/Ein überdimensionales Fanbuch frisst die Ärzte aufhttps://www.rfc1437.de/2003/12/31/ein-ueberdimensionales-fanbuch-frisst-die-aerzte-f/mindlube software / developer / revclipshttps://www.rfc1437.de/2003/12/31/mindlube-software-developer-revclips/Ritterschlag für Web-Erfinder Tim Berners-Leehttps://www.rfc1437.de/2003/12/31/ritterschlag-fuer-web-erfinder-tim-berners-lee/Runtime Revolution - User-Centric Software Developmenthttps://www.rfc1437.de/2003/12/31/runtime-revolution-user-centric-software/lython - lisp for pythonhttps://www.rfc1437.de/2003/12/30/lython-lisp-for-python/Berlusconis merkwürdige Definition eines Triumphshttps://www.rfc1437.de/2003/12/29/berlusconis-merkwuerdige-definition-eines-triumphs/Linux-Magazin - sshhttps://www.rfc1437.de/2003/12/29/linux-magazin-ssh/Rules for Bookmarkletshttps://www.rfc1437.de/2003/12/29/rules-for-bookmarklets/Bundespräsident Rau redet Klartexthttps://www.rfc1437.de/2003/12/28/bundespraesident-rau-redet-klartext/Ricke Brothers: Matrix XPhttps://www.rfc1437.de/2003/12/28/ricke-brothers-matrix-xp/Studienportal Bachelor Kulturwissenschaften - FernUniversität Hagen - Fachbereich Kultur- und Sozialwissenschaftenhttps://www.rfc1437.de/2003/12/28/studienportal-bachelor-kulturwissenschaften/AWM - Abfallwirtschaftsbetriebe Münsterhttps://www.rfc1437.de/2003/12/27/awm-abfallwirtschaftsbetriebe-muenster/Bundesrechnungshof rügt Finanzierung der Steuerreformhttps://www.rfc1437.de/2003/12/27/bundesrechnungshof-ruegt-finanzierung-der-sterrfrm/Clement: Noch 18.000 ohne Lehrstellehttps://www.rfc1437.de/2003/12/27/clement-noch-18000-ohne-lehrstelle/fabFORCE.nethttps://www.rfc1437.de/2003/12/27/fabforce-net/Land der Häuptlingehttps://www.rfc1437.de/2003/12/27/land-der-haeuptlinge/macosxhints - Share an internet connection with a Bluetooth devicehttps://www.rfc1437.de/2003/12/27/macosxhints-share-an-internet-connection-with-a/Nussknackerhttps://www.rfc1437.de/2003/12/27/nussknacker/Reiskugeln in Mangosaucehttps://www.rfc1437.de/2003/12/27/reiskugeln-in-mangosauce/*{TechnoHappyMeal}: Sharing Your Mac''s Internet Connection via Bluetoothhttps://www.rfc1437.de/2003/12/27/technohappymeal-sharing-your-mac-s-internet/Vorwärts, dem Vergessen entgegen!https://www.rfc1437.de/2003/12/27/vorwaerts-dem-vergessen-entgegen/Ein religiöses Gefängnishttps://www.rfc1437.de/2003/12/26/ein-religioeses-gefaengnis/Lachen wirkt wie Kokainhttps://www.rfc1437.de/2003/12/26/lachen-wirkt-wie-kokain/Mars-Mission: ESA zittert um den "Beagle"https://www.rfc1437.de/2003/12/26/mars-mission-esa-zittert-um-den-beagle/Toothpasteworld - World's Largest Toothpaste Collectionhttps://www.rfc1437.de/2003/12/26/toothpasteworld-world-s-largest-toothpaste/Bah, Humbug!https://www.rfc1437.de/2003/12/25/bah-humbug/GSI-Lizenzen: Schöne Bescherung für Fassa Bortolohttps://www.rfc1437.de/2003/12/25/gsi-lizenzen-schoene-bescherung-fuer-fassa-bortolo/Open Source Open Genera?https://www.rfc1437.de/2003/12/25/open-source-open-genera/Way Out of the Boxhttps://www.rfc1437.de/2003/12/25/way-out-of-the-box/Welcome to ERights.Orghttps://www.rfc1437.de/2003/12/25/welcome-to-erights-org/The MGR Window System HOWTOhttps://www.rfc1437.de/2003/12/24/the-mgr-window-system-howto/WindowShade Xhttps://www.rfc1437.de/2003/12/24/windowshade-x/Anke Engelke wird der neue Harald Schmidthttps://www.rfc1437.de/2003/12/23/anke-engelke-wird-der-neue-harald-schmidt/CMake Cross Platform Makehttps://www.rfc1437.de/2003/12/23/cmake-cross-platform-make/Divmod Lupy Overviewhttps://www.rfc1437.de/2003/12/23/divmod-lupy-overview/DocIndexerhttps://www.rfc1437.de/2003/12/23/docindexer/GROKLAW - Linus Kommentare zu angeblichen SCO-Fileshttps://www.rfc1437.de/2003/12/23/groklaw-linus-kommentare-zu-angeblichen-sco-files/LWN: SCO''s copyright letterhttps://www.rfc1437.de/2003/12/23/lwn-scos-copyright-letter/MBS: Temperature Monitorhttps://www.rfc1437.de/2003/12/23/mbs-temperature-monitor/moviemistakes.com - welcome!https://www.rfc1437.de/2003/12/23/moviemistakes-com-welcome/Novell Registers Unix Copyrightshttps://www.rfc1437.de/2003/12/23/novell-registers-unix-copyrights/NSF - OLPA - PR 03-147: RESEARCHERS DEVELOP NANOSCALE FIBERS THAT ARE THINNER THAN THE WAVELENG ...https://www.rfc1437.de/2003/12/23/nsf-lp-pr-03-147-rsrchrs-dvlp-nnscl-fbrs-tht-r-thn/Powerbook-Lüfter und Safari-Tabshttps://www.rfc1437.de/2003/12/23/powerbook-luefter-und-safari-tabs/PreFab UI Browserhttps://www.rfc1437.de/2003/12/23/prefab-ui-browser/Taco Software - Freeware for Mac OS Xhttps://www.rfc1437.de/2003/12/23/taco-software-freeware-for-mac-os-x/Unreliable Guide To Lockinghttps://www.rfc1437.de/2003/12/23/unreliable-guide-to-locking/D. Souflis - TinyScheme Download sitehttps://www.rfc1437.de/2003/12/22/d-souflis-tinyscheme-download-site/Lego schließt 2003 wieder mit Minus abhttps://www.rfc1437.de/2003/12/22/lego-schliesst-2003-wieder-mit-minus-ab/SCO vs. Linux: Loyale Kundenhttps://www.rfc1437.de/2003/12/22/sco-vs-linux-loyale-kunden/ARD-Buffet - Teledoktor: Speichelsteinehttps://www.rfc1437.de/2003/12/21/ard-buffet-teledoktor-speichelsteine/Blogging and Publicityhttps://www.rfc1437.de/2003/12/21/blogging-and-publicity/Correcting myths from Bjørn Lomborghttps://www.rfc1437.de/2003/12/21/correcting-myths-from-bjrn-lomborg/hobbythek - Düfte des Orients: Weihrauch und Myrrhehttps://www.rfc1437.de/2003/12/21/hobbythek-duefte-des-orients-weihrauch-und-myrrhe/IGM - Mac OS Flight Sim Resourcehttps://www.rfc1437.de/2003/12/21/igm-mac-os-flight-sim-resource/Medicine-Worldwide: Speicheldrüsen-Entzündung, Speichelsteinhttps://www.rfc1437.de/2003/12/21/medicine-worldwide-speicheldruesen-entzuendung/OpenMCLhttps://www.rfc1437.de/2003/12/21/openmcl/Polaroid Dust &amp; Scratch Removalhttps://www.rfc1437.de/2003/12/21/polaroid-dust-amp-scratch-removal/Scientific American: A Response to Lomborg''s Rebuttalhttps://www.rfc1437.de/2003/12/21/scientific-american-a-response-to-lomborgs-rebuttl/Speichelsteinehttps://www.rfc1437.de/2003/12/21/speichelsteine/Speichelsteinehttps://www.rfc1437.de/2003/12/21/speichelsteine-2/Stereo-Photographie im Mittelformathttps://www.rfc1437.de/2003/12/21/stereo-photographie-im-mittelformat/Weihnachtsmützenhandel ...https://www.rfc1437.de/2003/12/21/weihnachtsmuetzenhandel/X-Planehttps://www.rfc1437.de/2003/12/21/x-plane/Aus alt mach neu und teurerhttps://www.rfc1437.de/2003/12/20/aus-alt-mach-neu-und-teurer/Musizierenhttps://www.rfc1437.de/2003/12/20/musizieren/freshmeat.net: Project details for PostgreSQL Log Analyzerhttps://www.rfc1437.de/2003/12/19/freshmeat-net-project-details-for-postgresql-log/Fujifilm''s 20 megapixels, at a price: Digital Photography Reviewhttps://www.rfc1437.de/2003/12/19/fujifilms-20-megapixels-at-a-prc-dgtl-phtgrphy-rvw/Lost Highwayhttps://www.rfc1437.de/2003/12/19/lost-highway/News: USA verbieten Export von Linux in den Irakhttps://www.rfc1437.de/2003/12/19/news-usa-verbieten-export-von-linux-in-den-irak/search.cpan.org: Richard Clamp / perl-1.0_16https://www.rfc1437.de/2003/12/19/searchcpanorg-richard-clamp-perl-10-16/Ticker: Mars Express - wdr.de - Forschunghttps://www.rfc1437.de/2003/12/19/ticker-mars-express-wdrde-forschung/welcome to macscripter.net | applescript and script resourcehttps://www.rfc1437.de/2003/12/19/welcome-to-macscripter-net-applescript-and-script/Apple releases Battery Update 1.1 for portableshttps://www.rfc1437.de/2003/12/18/apple-releases-battery-update-11-for-portables/Concurrent Versions Librarianhttps://www.rfc1437.de/2003/12/18/concurrent-versions-librarian/Errico Malatestahttps://www.rfc1437.de/2003/12/18/errico-malatesta/Examples of Complex Renderinghttps://www.rfc1437.de/2003/12/18/examples-of-complex-rendering/HyperNext Homehttps://www.rfc1437.de/2003/12/18/hypernext-home/MacOS X Smalltalkhttps://www.rfc1437.de/2003/12/18/macos-x-smalltalk/ASPN : Python Cookbook : Complex Boolean Regular Expression Classhttps://www.rfc1437.de/2003/12/17/aspn-python-cookbook-complex-boolean-regular/ASPN : Python Cookbook : Length-limited O(1) LRU Cache implementationhttps://www.rfc1437.de/2003/12/17/aspn-python-cookbook-length-limited-o-1-lru-cache/Der Euro ist ein Teurohttps://www.rfc1437.de/2003/12/17/der-euro-ist-ein-teuro/freshmeat.net: freshmeat - freshmeat XML-RPC API availablehttps://www.rfc1437.de/2003/12/17/freshmeat-net-freshmeat-freshmeat-xml-rpc-api/Ich-Ag:Leben auf eigene Rechnunghttps://www.rfc1437.de/2003/12/17/ich-agleben-auf-eigene-rechnung/LaunchBar for Mac OS Xhttps://www.rfc1437.de/2003/12/17/launchbar-for-mac-os-x/NdisWrapperhttps://www.rfc1437.de/2003/12/17/ndiswrapper/Schill aus eigener Partei geflogenhttps://www.rfc1437.de/2003/12/17/schill-aus-eigener-partei-geflogen/D-Link Deutschland GmbH - DBT-900APhttps://www.rfc1437.de/2003/12/16/d-link-deutschland-gmbh-dbt-900ap/Eastgate Tinderbox: the tool for noteshttps://www.rfc1437.de/2003/12/16/eastgate-tinderbox-the-tool-for-notes/Endgültiger Rauswurf von Schill?https://www.rfc1437.de/2003/12/16/endgueltiger-rauswurf-von-schill/Entzauberung der Open Source Entwickler Mythenhttps://www.rfc1437.de/2003/12/16/entzauberung-der-open-source-entwickler-mythen/Get the scoop on.. Scoop! :: Open Source Directory :: OSDir.com :: Open Source Software, Reviews &amp; Newshttps://www.rfc1437.de/2003/12/16/get-the-scoop-on-scoop-open-source-directory/Hugs 98https://www.rfc1437.de/2003/12/16/hugs-98/Kästner raus aus den Schulen?https://www.rfc1437.de/2003/12/16/kaestner-raus-aus-den-schulen/PyObjC - Homehttps://www.rfc1437.de/2003/12/16/pyobjc-home/The HarvestMan WebCrawler Robothttps://www.rfc1437.de/2003/12/16/the-harvestman-webcrawler-robot/Armstrong: Heißer Flirt mit Sheryl Crowhttps://www.rfc1437.de/2003/12/15/armstrong-heisser-flirt-mit-sheryl-crow/Fotografie: Willem Wernsen - Webloghttps://www.rfc1437.de/2003/12/15/fotografie-willem-wernsen-weblog/GROKLAW - Dokumentation eines weiteren SCO-Linux-Hackershttps://www.rfc1437.de/2003/12/15/groklaw-dokumentation-eines-weiteren-sco-lnx-hckrs/mDNkit installation guidehttps://www.rfc1437.de/2003/12/15/mdnkit-installation-guide/Medienrevolution oder Tagebücherhttps://www.rfc1437.de/2003/12/15/medienrevolution-oder-tagebuecher/RFC 3492 - Punicodehttps://www.rfc1437.de/2003/12/15/rfc-3492-punicode/SuperDrivehttps://www.rfc1437.de/2003/12/15/superdrive/Hooray for Hewlett-Packard!https://www.rfc1437.de/2003/12/14/hooray-for-hewlett-packard/[Inkjet-list] HP Inkjet Linux Driver 1.5 Releasehttps://www.rfc1437.de/2003/12/14/inkjet-list-hp-inkjet-linux-driver-1-5-release/Lucky Strike Originals - Tivoli Model Three.https://www.rfc1437.de/2003/12/14/lucky-strike-originals-tivoli-model-three/Macht PowerPoint blöd?https://www.rfc1437.de/2003/12/14/macht-powerpoint-bloed/Radio Dayshttps://www.rfc1437.de/2003/12/14/radio-days/Second p0st: Repairing MetaKit databaseshttps://www.rfc1437.de/2003/12/14/second-p0st-repairing-metakit-databases/The Museum of HP Calculatorshttps://www.rfc1437.de/2003/12/14/the-museum-of-hp-calculators/Wiki Calculators - Main.HomePagehttps://www.rfc1437.de/2003/12/14/wiki-calculators-main-homepage/Saubere Entsorgung: Bazillus hat Hunger auf Atommüll - Wissenschaft - SPIEGEL ONLINEhttps://www.rfc1437.de/2003/12/13/saubere-entsorgung-bazillus-hat-hunger-auf/Die Zeit 30 / 2003 - (c) DIE ZEIT : Artikeltitel der ZEIT in Ihrer Websitehttps://www.rfc1437.de/2003/12/12/die-zeit-30-2003-c-die-zeit-artikeltitel-der-zeit/"Die Zeit" mit RSShttps://www.rfc1437.de/2003/12/12/die-zeit-mit-rss/GROKLAW - die Mitschrift des Gerichtsterminshttps://www.rfc1437.de/2003/12/12/groklaw-die-mitschrift-des-gerichtstermins/iPodhead.comhttps://www.rfc1437.de/2003/12/12/ipodhead-com/Leica Digilux 2 - the bigger picture: Digital Photography Reviewhttps://www.rfc1437.de/2003/12/12/leica-digilux-2-the-bigger-picture-digital/Minolta Digital SLR next year and morehttps://www.rfc1437.de/2003/12/12/minolta-digital-slr-next-year-and-more/Put the curser automatically in a forms fieldhttps://www.rfc1437.de/2003/12/12/put-the-curser-automatically-in-a-forms-field/Schill-Fraktion ohne Schillhttps://www.rfc1437.de/2003/12/12/schill-fraktion-ohne-schill/Supybothttps://www.rfc1437.de/2003/12/12/supybot/The Onion | CEO's Marital Duties Outsourced To Mexican Groundskeeperhttps://www.rfc1437.de/2003/12/12/the-onion-ceo-s-marital-duties-outsourced-to/xsdb html indexhttps://www.rfc1437.de/2003/12/12/xsdb-html-index/A garbage collector for C and C++https://www.rfc1437.de/2003/12/11/a-garbage-collector-for-c-and-c/"AppleScript: The Definitive Guide" releasedhttps://www.rfc1437.de/2003/12/11/applescript-the-definitive-guide-released/Atom-Raumschiff soll Leben findenhttps://www.rfc1437.de/2003/12/11/atom-raumschiff-soll-leben-finden/FocusFixer by FixerLabshttps://www.rfc1437.de/2003/12/11/focusfixer-by-fixerlabs/GROKLAW über SCOs angebliche Opferrolle eines DDOS Angriffshttps://www.rfc1437.de/2003/12/11/groklaw-ueber-scos-angebliche-pfrrll-ns-dds-ngrffs/JSch -- Java Secure Channelhttps://www.rfc1437.de/2003/12/11/jsch-java-secure-channel/look, Ma: I didnt make it one more timehttps://www.rfc1437.de/2003/12/11/look-ma-i-didnt-make-it-one-more-time/LUFS-Pythonhttps://www.rfc1437.de/2003/12/11/lufs-python/NETZEITUNG IRAK: Fotograf Nachtwey bei Angriff in Irak verletzthttps://www.rfc1437.de/2003/12/11/netzeitung-irak-fotogrf-nchtwy-b-ngrff-n-rk-vrltzt/Neues Feature: Blogmarkshttps://www.rfc1437.de/2003/12/11/neues-feature-blogmarks/Perthon -- Python to Perl Language Translationhttps://www.rfc1437.de/2003/12/11/perthon-python-to-perl-language-translation/ScummVMhttps://www.rfc1437.de/2003/12/11/scummvm/Smile von Satimage-softwarehttps://www.rfc1437.de/2003/12/11/smile-von-satimage-software/TrueBlur by FixerLabshttps://www.rfc1437.de/2003/12/11/trueblur-by-fixerlabs/Tucholsky hat eben immer noch Rechthttps://www.rfc1437.de/2003/12/11/tucholsky-hat-eben-immer-noch-recht/Gefälschte URLs im Internet Explorerhttps://www.rfc1437.de/2003/12/10/gefaelschte-urls-im-internet-explorer/Harald Schmidt hört auf - na und?https://www.rfc1437.de/2003/12/10/harald-schmidt-hoert-auf-na-und/IronPython Benchmarkshttps://www.rfc1437.de/2003/12/10/ironpython-benchmarks/News: Microsoft der Motor - Linux die Bremse?https://www.rfc1437.de/2003/12/10/news-microsoft-der-motor-linux-die-bremse/Verwirrung um Microsoft-Patcheshttps://www.rfc1437.de/2003/12/10/verwirrung-um-microsoft-patches/GROKLAW erklärt was genau SCO alles IBM vorlegen musshttps://www.rfc1437.de/2003/12/09/groklaw-erklaert-was-genau-sco-alles-ibm-vrlgn-mss/Insekten-Aktion: Rettet den Baumhummer! - Wissenschaft - SPIEGEL ONLINEhttps://www.rfc1437.de/2003/12/09/insekten-aktion-rettt-dn-bmhmmr-wssnschft-spgl-nln/Medley Lisphttps://www.rfc1437.de/2003/12/09/medley-lisp/Neuwahlen in Hamburghttps://www.rfc1437.de/2003/12/09/neuwahlen-in-hamburg/Pädophilie: Ab jetzt sind die Opfer schuld!https://www.rfc1437.de/2003/12/09/paedophilie-ab-jetzt-sind-die-opfer-schuld/Slate Language Websitehttps://www.rfc1437.de/2003/12/09/slate-language-website/ATPM 9.12 - ATPO: Outliner Use Patternshttps://www.rfc1437.de/2003/12/08/atpm-912-atpo-outliner-use-patterns/Aus der Traum vom Brötchenservice im Zughttps://www.rfc1437.de/2003/12/08/aus-der-traum-vom-broetchenservice-im-zug/RSA-576 geknackthttps://www.rfc1437.de/2003/12/08/rsa-576-geknackt/Schill ignoriert Entmachtunghttps://www.rfc1437.de/2003/12/08/schill-ignoriert-entmachtung/SCO releases draconian NDAhttps://www.rfc1437.de/2003/12/08/sco-releases-draconian-nda/Britische Gefangene sollen in Guantánamo bleibenhttps://www.rfc1437.de/2003/12/07/britische-gefangene-sollen-in-guantnamo-bleiben/Niedrigfrequenzhttps://www.rfc1437.de/2003/12/07/niedrigfrequenz/SCO verschiebt Bilanzkonferenz zum dritten Quartalhttps://www.rfc1437.de/2003/12/07/sco-verschiebt-bilanzkonferenz-zum-dritten-quartal/Cruel and Tender: Fotografie und das Wirklichehttps://www.rfc1437.de/2003/12/06/cruel-and-tender-fotografie-und-das-wirkliche/Schill entmachtet Schillhttps://www.rfc1437.de/2003/12/06/schill-entmachtet-schill/Schwarze Löcher im Miniformathttps://www.rfc1437.de/2003/12/06/schwarze-loecher-im-miniformat/Security? What security?https://www.rfc1437.de/2003/12/05/security-what-security/Software-Aktualisierung wird aktualisierthttps://www.rfc1437.de/2003/12/05/software-aktualisierung-wird-aktualisiert/Deutsche Schule: sechs, setzenhttps://www.rfc1437.de/2003/12/04/deutsche-schule-sechs-setzen/Microsoft's FAT chargeshttps://www.rfc1437.de/2003/12/04/microsofts-fat-charges/rsync übers Netz verwundbarhttps://www.rfc1437.de/2003/12/04/rsync-uebers-netz-verwundbar/What The Copywright Law Really Says (Score:0)https://www.rfc1437.de/2003/12/04/what-the-copywright-law-really-says-score0/Der amerikanische Dissidenthttps://www.rfc1437.de/2003/12/03/der-amerikanische-dissident/Deutschland sucht das Superblog - ohne michhttps://www.rfc1437.de/2003/12/03/deutschland-sucht-das-superblog-ohne-mich/GROKLAW - SCOs eigene Beteiligung an den angeblichen Lizenzverstössenhttps://www.rfc1437.de/2003/12/03/groklaw-scos-eigen-btlgng-n-dn-ngblchn-lznzvrstssn/Kuhl: Spenden kamen von Möllemannhttps://www.rfc1437.de/2003/12/03/kuhl-spenden-kamen-von-moellemann/Marca: Heras will zu Libertyhttps://www.rfc1437.de/2003/12/03/marca-heras-will-zu-liberty/USA drohen "Schurkenstaaten" mit Konsequenzenhttps://www.rfc1437.de/2003/12/03/usa-drohen-schurkenstaaten-mit-konsequenzen/Bug im Linux-Kernel ermöglichte Einbruch in Debian-Serverhttps://www.rfc1437.de/2003/12/02/bug-im-linux-kernel-ermoeglichte-enbrch-n-dbn-srvr/Delfinblut taucht das Meer in tiefes Rothttps://www.rfc1437.de/2003/12/02/delfinblut-taucht-das-meer-in-tiefes-rot/Kfz-Kennzeichen-Abmahner zieht Forderungen gegen Domain-Inhaber zurückhttps://www.rfc1437.de/2003/12/02/kfz-kennzeichn-bmhnr-zht-frdrngn-ggn-dmn-nhbr-zrck/Pharma-Unternehmen wird Hauptsponsor des BDRhttps://www.rfc1437.de/2003/12/02/pharma-unternehmen-wird-hauptsponsor-des-bdr/Apache: mod_auth_remotehttps://www.rfc1437.de/2003/12/01/apache-mod-auth-remote/Leica Digilux 2https://www.rfc1437.de/2003/12/01/leica-digilux-2/Schufte und verzichte - für das deutsche Vaterlandhttps://www.rfc1437.de/2003/12/01/schufte-und-verzichte-fuer-das-deutsche-vaterland/SPD-Arbeitskreis: "Filmindustrie zeigt menschenverachtendes Weltbild"https://www.rfc1437.de/2003/12/01/spd-arbeitskres-flmndstr-zgt-mnschnvrchtnds-wltbld/Bill Kearney: MacOS doesn''t cut it in the Enterprisehttps://www.rfc1437.de/2003/11/30/bill-kearney-macos-doesnt-cut-it-in-the-enterprise/MkSQL - SQL für Metakit in Pythonhttps://www.rfc1437.de/2003/11/30/mksql-sql-fuer-metakit-in-python/What the heck is: A typehttps://www.rfc1437.de/2003/11/30/what-the-heck-is-a-type/Der Beste kommt aus NRWhttps://www.rfc1437.de/2003/11/29/der-beste-kommt-aus-nrw/Entwickler von File-Sharing-Software verhaftethttps://www.rfc1437.de/2003/11/29/entwickler-von-file-sharing-software-verhaftet/Just posted! Olympus E-1 full reviewhttps://www.rfc1437.de/2003/11/29/just-posted-olympus-e-1-full-review/Anwalt gegen Anwalt - holt schon mal Cola und Popcornhttps://www.rfc1437.de/2003/11/28/anwalt-gegen-anwalt-holt-schon-mal-cola-und-popcrn/Das E-Business Weblog: Das Ende des Bloggens?https://www.rfc1437.de/2003/11/28/das-e-business-weblog-das-ende-des-bloggens/Europa gibt auf - Galileo wird abhängig von den USAhttps://www.rfc1437.de/2003/11/28/europa-gibt-auf-galileo-wird-abhaengig-von-den-usa/GROKLAW - der Brief von SCO an IBM aus dem Maihttps://www.rfc1437.de/2003/11/28/groklaw-der-brief-von-sco-an-ibm-aus-dem-mai/Interview mit Danilo Hondo: "Ich denke ans Grüne Trikot"https://www.rfc1437.de/2003/11/28/interview-mit-danilo-hondo-ich-denke-ans-grun-trkt/iPod - Akku - Spiegelhttps://www.rfc1437.de/2003/11/28/ipod-akku-spiegel/Konflikt zwischen Blog und Arbeitgeberhttps://www.rfc1437.de/2003/11/28/konflikt-zwischen-blog-und-arbeitgeber/The Early History of Smalltalkhttps://www.rfc1437.de/2003/11/28/the-early-history-of-smalltalk/Urteil gegen Domains mit Städtenamen rechtskräftighttps://www.rfc1437.de/2003/11/28/urteil-gegen-domains-mit-staedtenamen-rechtskraftg/Contax SL300R T* Announcedhttps://www.rfc1437.de/2003/11/27/contax-sl300r-t-announced/Das Ergebnis des Untersuchungsausschusses zum Wahlbetrughttps://www.rfc1437.de/2003/11/27/das-ergebnis-des-untersuchungsausschsss-zm-whlbtrg/Interview mit Friedhelm Hengsbachhttps://www.rfc1437.de/2003/11/27/interview-mit-friedhelm-hengsbach/Patienten prozessieren wegen Roboter-Pfuschhttps://www.rfc1437.de/2003/11/27/patienten-prozessieren-wegen-roboter-pfusch/Polizeiübergriffe auf linke Medien in Hamburg?https://www.rfc1437.de/2003/11/27/polizeiuebergriffe-auf-linke-medien-in-hamburg/Schwerwiegender Fehler in Verschlüsselungs-Software GnuPGhttps://www.rfc1437.de/2003/11/27/schwerwiegender-fehler-in-verschlsslngs-sftwr-gnpg/Staatsministerin: Illegales Kopieren ist wie eine böse Krankheithttps://www.rfc1437.de/2003/11/27/staatsministerin-illegales-kopirn-st-w-n-bs-krnkht/Wysiwyg-Pionier Simonyi will das Programmieren revolutionierenhttps://www.rfc1437.de/2003/11/27/wysiwyg-pionier-simonyi-will-das-progrmmrn-rvltnrn/Personal Firewall verursacht DNS-Störunghttps://www.rfc1437.de/2003/11/26/personal-firewall-verursacht-dns-stoerung/Sicherheitsloch in Moveable Typehttps://www.rfc1437.de/2003/11/26/sicherheitsloch-in-moveable-type/Weblog spam [dive into mark]https://www.rfc1437.de/2003/11/26/weblog-spam-dive-into-mark/AROS: Amiga® Research Operating Systemhttps://www.rfc1437.de/2003/11/25/aros-amiga-research-operating-system/Genetische Information soll nicht patentierbar seinhttps://www.rfc1437.de/2003/11/25/genetische-information-soll-nicht-patentierbar-sen/Hamster grub älteste Speisekammer der Welthttps://www.rfc1437.de/2003/11/25/hamster-grub-aelteste-speisekammer-der-welt/Hier kommt der Graus!https://www.rfc1437.de/2003/11/25/hier-kommt-der-graus/Internet Explorer wieder verwundbarhttps://www.rfc1437.de/2003/11/25/internet-explorer-wieder-verwundbar/Kritik an Webserver-Statistikhttps://www.rfc1437.de/2003/11/25/kritik-an-webserver-statistik/McBride intimates code cleanup in Linux nigh impossiblehttps://www.rfc1437.de/2003/11/25/mcbride-intimates-code-cleanup-in-linux-ngh-mpssbl/Steuerparadies Rotlichtmilieuhttps://www.rfc1437.de/2003/11/25/steuerparadies-rotlichtmilieu/Burg Vischering in Lüdinghausenhttps://www.rfc1437.de/2003/11/24/burg-vischering-in-luedinghausen/Negativrekord bei Ausbildungsplätzenhttps://www.rfc1437.de/2003/11/24/negativrekord-bei-ausbildungsplaetzen/Scharon: "Kollektiver Antisemitismus" in Europahttps://www.rfc1437.de/2003/11/24/scharon-kollektiver-antisemitismus-in-europa/"...sehe ich mich gezwungen, rechtliche Schritte einzuleiten"https://www.rfc1437.de/2003/11/24/sehe-ich-mich-gezwungen-rechtliche-schritte-enzltn/Which side of the road do they drive on?https://www.rfc1437.de/2003/11/24/which-side-of-the-road-do-they-drive-on/Wirbel um Gerster-Behördehttps://www.rfc1437.de/2003/11/24/wirbel-um-gerster-behoerde/i d l y . o r g :: Porn Sites Hiding Behind Blogshttps://www.rfc1437.de/2003/11/23/i-d-l-y-o-r-g-porn-sites-hiding-behind-blogs/Metro-Konzern weiterhin im Abmahn-Fieberhttps://www.rfc1437.de/2003/11/23/metro-konzern-weiterhin-im-abmahn-fieber/"Not amused": Bush-Besuch hinterlässt Spurenhttps://www.rfc1437.de/2003/11/23/not-amused-bush-besuch-hinterlaesst-spuren/Rondayview: Da Funk and Da Noisehttps://www.rfc1437.de/2003/11/23/rondayview-da-funk-and-da-noise/Inhaftierte Globalisierungskritiker im Hungerstreikhttps://www.rfc1437.de/2003/11/22/inhaftierte-globalisierungskritiker-im-hungerstrek/LEICA DIGILUX 2 - mehr Details zum Kandidatenhttps://www.rfc1437.de/2003/11/22/leica-digilux-2-mehr-details-zum-kandidaten/Namensstreit mit Red Hat um Fedorahttps://www.rfc1437.de/2003/11/22/namensstreit-mit-red-hat-um-fedora/Rechtsextremismusverdacht beim Bund der Selbstständigenhttps://www.rfc1437.de/2003/11/22/rechtsextremismusverdacht-beim-bund-dr-slbststndgn/Wirbel um TV-Dopingbeichte in Italienhttps://www.rfc1437.de/2003/11/22/wirbel-um-tv-dopingbeichte-in-italien/AT&T verklagt eBay und PayPalhttps://www.rfc1437.de/2003/11/21/att-verklagt-ebay-und-paypal/debian.org gehackt [Update]https://www.rfc1437.de/2003/11/21/debianorg-gehackt-update/Deutschland, die verspätete Nationhttps://www.rfc1437.de/2003/11/21/deutschland-die-verspaetete-nation/Die Legende vom Salzstockhttps://www.rfc1437.de/2003/11/21/die-legende-vom-salzstock/New LUMIX camera DMC-LC1 scheduled for spring 2004https://www.rfc1437.de/2003/11/21/new-lumix-camera-dmc-lc1-scheduled-for-spring-2004/Zoff bei den GNUshttps://www.rfc1437.de/2003/11/21/zoff-bei-den-gnus/Computerpanne und schlechte Ausbildung führten zu US-Blackouthttps://www.rfc1437.de/2003/11/20/computerpanne-und-schlechte-sbldng-fhrtn-z-s-blckt/Open Content und verwandte Lizenzenhttps://www.rfc1437.de/2003/11/20/open-content-und-verwandte-lizenzen/Die ARD auf Geisterjagdhttps://www.rfc1437.de/2003/11/19/die-ard-auf-geisterjagd/Hochhäuser bringen Schanghai zum Sinkenhttps://www.rfc1437.de/2003/11/19/hochhaeuser-bringen-schanghai-zum-sinken/Kanzler über Vorstandswahl-Ergebnisse verärgert: "Sauerei"https://www.rfc1437.de/2003/11/19/kanzler-ueber-vorstandswahl-ergebnisse-verargrt-sr/Kopierschutzdebakel möglicherweise auch bei Video-DVDshttps://www.rfc1437.de/2003/11/19/kopierschutzdebakel-moeglicherweise-auch-b-vd-dvds/Lizenzgebühren für jede einzelne Bohnehttps://www.rfc1437.de/2003/11/19/lizenzgebuehren-fuer-jede-einzelne-bohne/SCO-Chef: Diese Welt braucht proprietäre Systemehttps://www.rfc1437.de/2003/11/19/sco-chef-diese-welt-braucht-proprietaere-systeme/SCO claims world software market under threathttps://www.rfc1437.de/2003/11/19/sco-claims-world-software-market-under-threat/SCO Hints at *BSD Lawsuits Next Year, And Morehttps://www.rfc1437.de/2003/11/19/sco-hints-at-bsd-lawsuits-next-year-and-more/They found Nemo ...https://www.rfc1437.de/2003/11/19/they-found-nemo/InfoWorld: SCO CEO: Novell-SuSE breaks SCO contract: November 18, 2003: By : Platformshttps://www.rfc1437.de/2003/11/18/nfwrld-sc-c-nvll-ss-brks-sc-cntrct-nvmbr-18-2003-b/Python und AppleScripthttps://www.rfc1437.de/2003/11/18/python-und-applescript/SCO erweitert Zusammenarbeit mit seinen Anwältenhttps://www.rfc1437.de/2003/11/18/sco-erweitert-zusammenarbeit-mit-seinen-anwaelten/SPD bangt um Nordrhein-Westfalenhttps://www.rfc1437.de/2003/11/18/spd-bangt-um-nordrhein-westfalen/Heise News-Ticker: PostgreSQL in Version 7.4 veröffentlichthttps://www.rfc1437.de/2003/11/17/heise-news-ticker-postgresql-in-vrsn-74-vrffntlcht/Serious Mac OS X file-save bug could delete fileshttps://www.rfc1437.de/2003/11/17/serious-mac-os-x-file-save-bug-could-delete-files/Union hält die Regierung des Wahlbetrugs für schuldighttps://www.rfc1437.de/2003/11/17/union-haelt-die-regierung-des-wahlbetrgs-fr-schldg/Verfassungsbeschwerde gegen 0190-Gesetzhttps://www.rfc1437.de/2003/11/16/verfassungsbeschwerde-gegen-0190-gesetz/20 Jahre c''t: Geschichte mit Häkchenhttps://www.rfc1437.de/2003/11/15/20-jahre-ct-geschichte-mit-haekchen/Ex-Geheimdienstchefs Israels kritisieren Scharonhttps://www.rfc1437.de/2003/11/14/ex-geheimdienstchefs-israels-kritisieren-scharon/GROKLAW - warum IBM vielleicht Analysten ins Verfahren zitierthttps://www.rfc1437.de/2003/11/14/groklaw-warum-ibm-vielleicht-nlystn-ns-vrfhrn-ztrt/Phonak will es wissen: Mit neun Neuen zur Tourhttps://www.rfc1437.de/2003/11/14/phonak-will-es-wissen-mit-neun-neuen-zur-tour/BBEdit 7.1 raushttps://www.rfc1437.de/2003/11/13/bbedit-71-raus/Panorama über Hohmann und den rechten Rand der CDUhttps://www.rfc1437.de/2003/11/13/panorama-ueber-hohmann-und-den-rechten-rand-der-cd/Stimme der Mehrheit?https://www.rfc1437.de/2003/11/13/stimme-der-mehrheit/High Performance Computing for Mac OS Xhttps://www.rfc1437.de/2003/11/12/high-performance-computing-for-mac-os-x/InfoWorld: Microsoft prepares security assault on Linux: November 11, 2003: By Kieren McCarthy, ...https://www.rfc1437.de/2003/11/12/nfwrld-mcrsft-prprs-scrty-sslt-n-lnx-nvmbr-11-2003/Steinbrück: Bürger müssen mehr für Alter und Pflege ausgebenhttps://www.rfc1437.de/2003/11/12/steinbrueck-buerger-muessn-mhr-fr-ltr-nd-pflg-sgbn/Union und FDP wollen Kündigungsschutz weiter aufweichenhttps://www.rfc1437.de/2003/11/12/union-und-fdp-wollen-kuendigungsschutz-weitr-fwchn/Zerstörung der Öffentlich-Rechtlichen?https://www.rfc1437.de/2003/11/12/zerstoerung-der-oeffentlich-rechtlichen/Apple bringt Update auf Mac OS X 10.3.1https://www.rfc1437.de/2003/11/11/apple-bringt-update-auf-mac-os-x-1031/Kill Billhttps://www.rfc1437.de/2003/11/11/kill-bill/Schnelles Ende im neuen Kimble-Prozesshttps://www.rfc1437.de/2003/11/11/schnelles-ende-im-neuen-kimble-prozess/You call that a Monad? This HEREs a Monad.... And a Shell.https://www.rfc1437.de/2003/11/11/you-call-that-a-monad-this-heres-a-monad-and-shll/Hohmann vielleicht doch vor die Tür?https://www.rfc1437.de/2003/11/10/hohmann-vielleicht-doch-vor-die-tuer/Koch und Merkel einig: Hohmann vor Rauswurfhttps://www.rfc1437.de/2003/11/10/koch-und-merkel-einig-hohmann-vor-rauswurf/Mac OS X 10.3: Zip-Funktion des Finder nicht kompatibelhttps://www.rfc1437.de/2003/11/10/mac-os-x-103-zip-funktion-des-finder-nicht-komptbl/Rebel With A Causehttps://www.rfc1437.de/2003/11/10/rebel-with-a-cause/Simoni challenges Armstrong to Giro-Tour duelhttps://www.rfc1437.de/2003/11/10/simoni-challenges-armstrong-to-giro-tour-duel/Security Focus hat RSS Feedshttps://www.rfc1437.de/2003/11/09/security-focus-hat-rss-feeds/CSU plant Basisrente für Kinderlosehttps://www.rfc1437.de/2003/11/08/csu-plant-basisrente-fuer-kinderlose/"Gier hinter der Maske des Wohltäters"https://www.rfc1437.de/2003/11/08/gier-hinter-der-maske-des-wohltaeters/Grüne lehnen Kryptoverbot weiterhin abhttps://www.rfc1437.de/2003/11/08/gruene-lehnen-kryptoverbot-weiterhin-ab/Harry Potter macht doofhttps://www.rfc1437.de/2003/11/08/harry-potter-macht-doof/It had to start sometime...https://www.rfc1437.de/2003/11/08/it-had-to-start-sometime/SCO versus Linux: All your code are belong to ushttps://www.rfc1437.de/2003/11/08/sco-versus-linux-all-your-code-are-belong-to-us/Spammed by your routerhttps://www.rfc1437.de/2003/11/08/spammed-by-your-router/Stoiber droht Hohmann mit Rauswurfhttps://www.rfc1437.de/2003/11/08/stoiber-droht-hohmann-mit-rauswurf/Test des Einflusses von Googlespamming auf Bloghosting-Nutzerhttps://www.rfc1437.de/2003/11/08/test-des-einflusses-von-goglspmmng-f-blghstng-ntzr/de.indymedia.org | USA: Wählerbetrug und Unterlassungsklagenhttps://www.rfc1437.de/2003/11/07/deindymediaorg-usa-waehlerbetrug-und-ntrlssngsklgn/110 rechtsextreme Vorfälle in der Bundeswehr in zehn Monatenhttps://www.rfc1437.de/2003/11/06/110-rechtsextreme-vorfaell-n-dr-bndswhr-n-zhn-mntn/Die Zeit 46 / 2003 - M.Moore: "Nicht ganz Amerika ist verrückt"https://www.rfc1437.de/2003/11/06/die-zeit-46-2003-mmoore-nicht-ganz-amerk-st-vrrckt/fashion victims paradise - abmahnwahn, auweia!: abmahnwahn jetzt auch vor deiner haustuer...https://www.rfc1437.de/2003/11/06/fshn-vctms-prds-bmhnwhn-w-bmhnwhn-jtzt-ch-vr-dnr-h/Großer Hund von Milchstraße zerrissenhttps://www.rfc1437.de/2003/11/06/grosser-hund-von-milchstrasse-zerrissen/Merkel lehnt weitere Sanktionen gegen Hohmann abhttps://www.rfc1437.de/2003/11/06/merkel-lehnt-weitere-sanktionen-gegen-hohmann-ab/Panther *könnte* auf Intel laufenhttps://www.rfc1437.de/2003/11/06/panther-koennte-auf-intel-laufen/Saddam wollte Frieden in letzter Minutehttps://www.rfc1437.de/2003/11/06/saddam-wollte-frieden-in-letzter-minute/NRW-Landesverwaltung stellt auf Microsofts Office 2003 umhttps://www.rfc1437.de/2003/11/05/nrw-landesverwaltung-stellt-auf-mcrsfts-ffc-2003-m/Google Indexing IRC?https://www.rfc1437.de/2003/11/04/google-indexing-irc/Netzwerkspezialist Novell kauft Linux-Distributor SuSE [Update]https://www.rfc1437.de/2003/11/04/netzwerkspezialist-novell-kauft-lnx-dstrbtr-ss-pdt/Thierse: Themen wie "Florida-Rolf" bedrohen Demokratiehttps://www.rfc1437.de/2003/11/04/thierse-themen-wie-florida-rolf-bedrohen-demokrati/Von Generälen und Abgeordnetenhttps://www.rfc1437.de/2003/11/04/von-generaelen-und-abgeordneten/Warum lassen Fische Luft aus dem After blubbern?https://www.rfc1437.de/2003/11/04/warum-lassen-fische-luft-aus-dem-after-blubbern/Es geht los...https://www.rfc1437.de/2003/11/03/es-geht-los/GROKLAW - diesmal verstösst SCO gegen die GPLhttps://www.rfc1437.de/2003/11/03/groklaw-diesmal-verstoesst-sco-gegen-die-gpl/Home of the 4tH compilerhttps://www.rfc1437.de/2003/11/03/home-of-the-4th-compiler/Immer lustigerhttps://www.rfc1437.de/2003/11/03/immer-lustiger/Jubiläum - ein Jahr Hugos House of Weblog Horrorhttps://www.rfc1437.de/2003/11/03/jubilaeum-ein-jahr-hugos-house-of-weblog-horror/Kommunen steht das Wasser bis zum Halshttps://www.rfc1437.de/2003/11/03/kommunen-steht-das-wasser-bis-zum-hals/Laubbläser ...https://www.rfc1437.de/2003/11/03/laubblaeser/Wired News: Anti-Copy Bill Slams Codershttps://www.rfc1437.de/2003/11/03/wired-news-anti-copy-bill-slams-coders/Das Gift der "Inquisition light"https://www.rfc1437.de/2003/11/02/das-gift-der-inquisition-light/Gestatten, Hohmann, Volksvertreter!https://www.rfc1437.de/2003/11/01/gestatten-hohmann-volksvertreter/Ronald Schill will Bundespolitik aufmischenhttps://www.rfc1437.de/2003/11/01/ronald-schill-will-bundespolitik-aufmischen/Heise News-Ticker: DNS-Verwirrung durch neuen Ländercodehttps://www.rfc1437.de/2003/10/31/heise-news-ticker-dns-verwirrung-durch-neun-lndrcd/Linux ist für DATEV keine Alternativehttps://www.rfc1437.de/2003/10/31/linux-ist-fuer-datev-keine-alternative/SCO bietet Unix-Lizenz für Linux-Nutzerhttps://www.rfc1437.de/2003/10/31/sco-bietet-unix-lizenz-fuer-linux-nutzer/CDU-Abgeordneter nennt Juden "Tätervolk"https://www.rfc1437.de/2003/10/30/cdu-abgeordneter-nennt-juden-taetervolk/GROKLAW - erste Reaktionen auf die letzten SCO-Textehttps://www.rfc1437.de/2003/10/30/groklaw-erste-reaktionen-auf-die-letzten-sco-texte/Probleme mit Java unter Mac OS X 10.3https://www.rfc1437.de/2003/10/30/probleme-mit-java-unter-mac-os-x-103/US-Forscher züchten tödliche Pockenvirenhttps://www.rfc1437.de/2003/10/30/us-forscher-zuechten-toedliche-pockenviren/Starker geomagnetischer Sturm trifft die Erde [Update]https://www.rfc1437.de/2003/10/29/starker-geomagnetischer-sturm-trifft-die-erde-updt/GROKLAW - die nächste Runde an Dokumentenhttps://www.rfc1437.de/2003/10/28/groklaw-die-naechste-runde-an-dokumenten/Paulus tritt Middelhoff nachträglich in die Eierhttps://www.rfc1437.de/2003/10/28/paulus-tritt-middelhoff-nachtraeglich-in-die-eier/Telekom verlangt Einkommensverzicht für geringeren Personalabbauhttps://www.rfc1437.de/2003/10/28/telekom-verlangt-einkommnsvrzcht-fr-grngrn-prsnlbb/Bald ist das Verzeichnis vollhttps://www.rfc1437.de/2003/10/27/bald-ist-das-verzeichnis-voll/Cannabis-Affäre: Pieper wettert gegen Kubickihttps://www.rfc1437.de/2003/10/27/cannabis-affaere-pieper-wettert-gegen-kubicki/GROKLAW zerlegt SCOs neueste Verbaltänzehttps://www.rfc1437.de/2003/10/27/groklaw-zerlegt-scos-neueste-verbaltaenze/Internet Explorer gefährdet Windowshttps://www.rfc1437.de/2003/10/27/internet-explorer-gefaehrdet-windows/Nochmal KFZ-Abmahnungenhttps://www.rfc1437.de/2003/10/27/nochmal-kfz-abmahnungen/Regulierungsbehörde räumt bei 0190er-Nummern aufhttps://www.rfc1437.de/2003/10/27/regulierungsbehoerde-raeumt-bei-0190er-nummern-auf/Steinzeitsiedlung in der Ostsee entdeckthttps://www.rfc1437.de/2003/10/27/steinzeitsiedlung-in-der-ostsee-entdeckt/Kfz-Kennzeichen-Abmahnungen: "Betrugsverdacht absolut haltlos"https://www.rfc1437.de/2003/10/26/kfz-kennzeichen-abmahnungen-btrgsvrdcht-bslt-hltls/MC Hawking's Cribhttps://www.rfc1437.de/2003/10/26/mc-hawkings-crib/Paket in IC gefundenhttps://www.rfc1437.de/2003/10/26/paket-in-ic-gefunden/Baustopp am Holocaust-Mahnmalhttps://www.rfc1437.de/2003/10/25/baustopp-am-holocaust-mahnmal/Zwei Millionen Dollar Strafe für Spammerhttps://www.rfc1437.de/2003/10/25/zwei-millionen-dollar-strafe-fuer-spammer/Beware of the duckhttps://www.rfc1437.de/2003/10/24/beware-of-the-duck/Es wird Ernst mit den Jugendschutzbestimmungen im Internethttps://www.rfc1437.de/2003/10/24/es-wird-ernst-mit-den-jugendschutzbstmmngn-m-ntrnt/"Juroren ohne Kompetenz"https://www.rfc1437.de/2003/10/24/juroren-ohne-kompetenz/Neue Privilegien: Otto Schily darf betrunken in London randalierenhttps://www.rfc1437.de/2003/10/24/neue-privilegien-tt-schly-drf-btrnkn-n-lndn-rndlrn/Polizei sucht im Haus von FDP-Generalsekretärin Pieper nach Haschhttps://www.rfc1437.de/2003/10/24/polizei-sucht-im-hs-vn-fdp-gnrlskrtrn-ppr-nch-hsch/Schools Sell Curriculum to RIAAhttps://www.rfc1437.de/2003/10/24/schools-sell-curriculum-to-riaa/Wenn Arbeit knapp wird...https://www.rfc1437.de/2003/10/24/wenn-arbeit-knapp-wird/Bericht: Regierung erwägt Erhöhung der Mehrwertsteuerhttps://www.rfc1437.de/2003/10/23/bericht-regierung-erwaegt-erhoehung-der-mehrwrtstr/CSU- und FDP-Schatzmeister sollen illegale Spende akzeptiert habenhttps://www.rfc1437.de/2003/10/23/csu-und-fdp-schatzmeistr-slln-llgl-spnd-kzptrt-hbn/Gator will sich nicht Spyware-Hersteller nennen lassenhttps://www.rfc1437.de/2003/10/23/gator-will-sich-nicht-spyware-hersteller-nnnn-lssn/Gerolsteiner: Bölts wird Sportlicher Leiterhttps://www.rfc1437.de/2003/10/23/gerolsteiner-boelts-wird-sportlicher-leiter/Größte indische Lebensversicherung wechselt von SCO zu Linuxhttps://www.rfc1437.de/2003/10/23/groesste-indische-lebnsvrschrng-wchslt-vn-sc-z-lnx/Israels Armee: "Arafat tot oder lebendig"https://www.rfc1437.de/2003/10/23/israels-armee-arafat-tot-oder-lebendig/Massives Sicherheitsproblem auf der ISShttps://www.rfc1437.de/2003/10/23/massives-sicherheitsproblem-auf-der-iss/Rot-Grün bessert bei Rentenplänen minimal nachhttps://www.rfc1437.de/2003/10/23/rot-gruen-bessert-bei-rentenplaenen-minimal-nach/Rot-grüner Streit um Gentechnik-Gesetzhttps://www.rfc1437.de/2003/10/23/rot-gruener-streit-um-gentechnik-gesetz/Uni Paderborn bietet Golf als Hauptfach anhttps://www.rfc1437.de/2003/10/23/uni-paderborn-bietet-golf-als-hauptfach-an/Unsignierte Java-Applets brechen aus Sandbox aus[Update]https://www.rfc1437.de/2003/10/23/unsignierte-java-applets-brechen-aus-sandbox-aspdt/Die Baby Boomer in Deutschlandhttps://www.rfc1437.de/2003/10/22/die-baby-boomer-in-deutschland/EU-Leitfaden für den Umstieg auf Open Sourcehttps://www.rfc1437.de/2003/10/22/eu-leitfaden-fuer-den-umstieg-auf-open-source/Gefunden: Kodex für Suchmaschinenhttps://www.rfc1437.de/2003/10/22/gefunden-kodex-fuer-suchmaschinen/Saban fordert Werbeverbot für ARD und ZDFhttps://www.rfc1437.de/2003/10/22/saban-fordert-werbeverbot-fuer-ard-und-zdf/Softwarepatente: IT-Verband ruft EU auf den "rechten Weg" zurückhttps://www.rfc1437.de/2003/10/22/softwarepatente-it-verband-rft-f-dn-rchtn-wg-zrck/Trojanisches Pferd der Atomkriegehttps://www.rfc1437.de/2003/10/22/trojanisches-pferd-der-atomkriege/US-Patent auf Systemverwaltung per Internethttps://www.rfc1437.de/2003/10/22/us-patent-auf-systemverwaltung-per-internet/Windows kollidiert mit Urheberrechthttps://www.rfc1437.de/2003/10/22/windows-kollidiert-mit-urheberrecht/Zensur in Düsseldorfhttps://www.rfc1437.de/2003/10/22/zensur-in-duesseldorf/Ende der Unschuld?https://www.rfc1437.de/2003/10/21/ende-der-unschuld/Kampagne für Genfoodhttps://www.rfc1437.de/2003/10/21/kampagne-fuer-genfood/Kinderlose sollen mehr für Pflegeversicherung zahlenhttps://www.rfc1437.de/2003/10/21/kinderlose-sollen-mehr-fuer-pflegeversicherng-zhln/Kontroverse um Fußfesseln für Schulschwänzerhttps://www.rfc1437.de/2003/10/21/kontroverse-um-fussfesseln-fuer-schulschwaenzer/Steuerzahlerbund: Pensionen von Politikern kürzenhttps://www.rfc1437.de/2003/10/21/steuerzahlerbund-pensionen-von-politikern-kuerzen/Unions-Nachwuchs will radikale Reformenhttps://www.rfc1437.de/2003/10/21/unions-nachwuchs-will-radikale-reformen/Zu viel Kaffee schuld an Blairs Herzrasen?https://www.rfc1437.de/2003/10/21/zu-viel-kaffee-schuld-an-blairs-herzrasen/AppleInsider - IBM introduced its POWER5https://www.rfc1437.de/2003/10/20/appleinsider-ibm-introduced-its-power5/CDU-Linie: Merkel setzt sich gegen Koch durchhttps://www.rfc1437.de/2003/10/20/cdu-linie-merkel-setzt-sich-gegen-koch-durch/Domain-Namen und KFZ-Kennzeichen: Gegenwelle gegen Abmahnungenhttps://www.rfc1437.de/2003/10/20/domain-namen-und-kfz-kennzeichn-ggnwll-ggn-bmhnngn/Online-Backup für kleine und mittlere Unternehmenhttps://www.rfc1437.de/2003/10/20/online-backup-fuer-kleine-und-mittlere-unternehmen/SPD setzt auf Verwaltungssoftware auf Basis von Microsoft Business Solutionshttps://www.rfc1437.de/2003/10/20/spd-stzt-f-vrwltngssftwr-f-bss-vn-mcrsft-bsnss-slt/Bericht: Online-Banking geknackthttps://www.rfc1437.de/2003/10/19/bericht-online-banking-geknackt/Bundestagswahl: Westerwelle ruft sich zum Spitzenkandidaten aushttps://www.rfc1437.de/2003/10/19/bundestagswahl-westerwell-rft-sch-zm-sptznknddtn-s/Leiden 28 Millionen US-Bürger unter Blähungen?https://www.rfc1437.de/2003/10/19/leiden-28-millionen-us-buerger-unter-blaehungen/Porno-Anbieter protestieren gegen Jugendschutz im Webhttps://www.rfc1437.de/2003/10/19/porno-anbieter-protestieren-gegen-jugendschtz-m-wb/Studie: Jeder dritte Schulschwänzer wird kriminellhttps://www.rfc1437.de/2003/10/19/studie-jeder-dritte-schulschwaenzer-wird-kriminell/Urheberrecht gegen Kritikerhttps://www.rfc1437.de/2003/10/19/urheberrecht-gegen-kritiker/Zur Seligsprechung von Agnes Gonxha Bojaxhiu, alias Mutter Teresahttps://www.rfc1437.de/2003/10/19/zur-seligsprechung-von-agnes-gnxh-bjxh-ls-mttr-trs/PowerBook-Käufer klagen über Display-Fehlerhttps://www.rfc1437.de/2003/10/18/powerbook-kaeufer-klagen-ueber-display-fehler/SCO vs. Linux: Kriegskasse aufgefüllthttps://www.rfc1437.de/2003/10/18/sco-vs-linux-kriegskasse-aufgefuellt/Abmahnungen wegen Kfz-Kennzeichen in Domain-Namenhttps://www.rfc1437.de/2003/10/17/abmahnungen-wegen-kfz-kennzeichen-in-domain-namen/Atom APIhttps://www.rfc1437.de/2003/10/17/atom-api/BND-Mitarbeiter wegen Spionage verhaftethttps://www.rfc1437.de/2003/10/17/bnd-mitarbeiter-wegen-spionage-verhaftet/Bush erkennt Parallelen zu "Arnie"https://www.rfc1437.de/2003/10/17/bush-erkennt-parallelen-zu-arnie/Das Beeindruckende am heutigen Tag ...https://www.rfc1437.de/2003/10/17/das-beeindruckende-am-heutigen-tag/First Look: Belkin Media Reader For iPodhttps://www.rfc1437.de/2003/10/17/first-look-belkin-media-reader-for-ipod/Krieg gegen Terror Kampf mit dem Satanhttps://www.rfc1437.de/2003/10/17/krieg-gegen-terror-kampf-mit-dem-satan/LKW-Maut: Vertrag wird offen gelegthttps://www.rfc1437.de/2003/10/17/lkw-maut-vertrag-wird-offen-gelegt/Microsoft erhält Patent für Cookieshttps://www.rfc1437.de/2003/10/17/microsoft-erhaelt-patent-fuer-cookies/Rollup-Pack für Windows XP läutet neue Update-Politik von Microsoft einhttps://www.rfc1437.de/2003/10/17/rollup-pack-fr-wndws-xp-ltt-n-pdt-pltk-vn-mcrsft-n/Staatsanwalt droht Netzaktivist mit Berufsverbothttps://www.rfc1437.de/2003/10/17/staatsanwalt-droht-netzaktivist-mit-berufsverbot/Telekom beklagt massive Entwertung des Fernmeldegeheimnisseshttps://www.rfc1437.de/2003/10/17/telekom-beklagt-massive-entwertng-ds-frnmldghmnsss/Mautkorb für den Bundestaghttps://www.rfc1437.de/2003/10/16/mautkorb-fuer-den-bundestag/Phonak: Sevilla wird rechte Hand von Hamiltonhttps://www.rfc1437.de/2003/10/16/phonak-sevilla-wird-rechte-hand-von-hamilton/Saban dirigiert Streichkonzert bei N24https://www.rfc1437.de/2003/10/16/saban-dirigiert-streichkonzert-bei-n24/Schwachstellen in Exchange Serverhttps://www.rfc1437.de/2003/10/16/schwachstellen-in-exchange-server/Stopping Spamhttps://www.rfc1437.de/2003/10/16/stopping-spam/The Resurrection of SimplyGNUstep - OSNews.comhttps://www.rfc1437.de/2003/10/16/the-resurrection-of-simplygnustep-osnewscom/Abmahner und Absahner: Anwälte packen aushttps://www.rfc1437.de/2003/10/15/abmahner-und-absahner-anwaelte-packen-aus/Karlsruhe weist Klage gegen Tischgebet im Kindergarten abhttps://www.rfc1437.de/2003/10/15/karlsruhe-weist-klage-gegen-tischgebt-m-kndrgrtn-b/Mobbing wegen missliebiger Internetseitehttps://www.rfc1437.de/2003/10/15/mobbing-wegen-missliebiger-internetseite/Offener Brief an Martin Walserhttps://www.rfc1437.de/2003/10/15/offener-brief-an-martin-walser/Samba 3 schneller als Windows 2003 Serverhttps://www.rfc1437.de/2003/10/15/samba-3-schneller-als-windows-2003-server/US-Justizministerium geht gegen Greenpeace vorhttps://www.rfc1437.de/2003/10/15/us-justizministerium-geht-gegen-greenpeace-vor/US-Marine schränkt Sonar-Gebrauch einhttps://www.rfc1437.de/2003/10/15/us-marine-schraenkt-sonar-gebrauch-ein/USA verhindern Resolution gegen Israel durch Vetohttps://www.rfc1437.de/2003/10/15/usa-verhindern-resolution-gegen-israel-durch-veto/W3C verabschiedet neue Web-Formularehttps://www.rfc1437.de/2003/10/15/w3c-verabschiedet-neue-web-formulare/Wie man den ODEM-Gründer mundtot machen willhttps://www.rfc1437.de/2003/10/15/wie-man-den-odem-gruender-mundtot-machen-will/Andrew Grumet's Kommtar zu Kommentarspamhttps://www.rfc1437.de/2003/10/14/andrew-grumets-kommtar-zu-kommentarspam/Deutschland wieder Exportweltmeisterhttps://www.rfc1437.de/2003/10/14/deutschland-wieder-exportweltmeister/E-Data strengt Prozess wegen Patentrechtsverletzung anhttps://www.rfc1437.de/2003/10/14/e-data-strengt-prozess-wegen-patentrechtsvrltzng-n/Kölner CDU räumt Spendenvergehen einhttps://www.rfc1437.de/2003/10/14/koelner-cdu-raeumt-spendenvergehen-ein/Reichmann in the Rockieshttps://www.rfc1437.de/2003/10/14/reichmann-in-the-rockies/Guter Apple, böser PChttps://www.rfc1437.de/2003/10/13/guter-apple-boeser-pc/Loadbalancer in Pythonhttps://www.rfc1437.de/2003/10/13/loadbalancer-in-python/Nicht "vorsorglich" aufs Klohttps://www.rfc1437.de/2003/10/13/nicht-vorsorglich-aufs-klo/Twiki APIhttps://www.rfc1437.de/2003/10/13/twiki-api/Ödnis in Ödenfeldhttps://www.rfc1437.de/2003/10/12/oednis-in-oedenfeld/Zur Rechristianisierung des Westenshttps://www.rfc1437.de/2003/10/12/zur-rechristianisierung-des-westens/Israel hat aus Deutschland stammende U-Boote mit Atombomben ausgestattethttps://www.rfc1437.de/2003/10/11/israel-hat-s-dtschlnd-stmmnd-bt-mt-tmbmbn-sgstttt/Kopierschutz-Anbieter zieht Klagedrohung zurückhttps://www.rfc1437.de/2003/10/11/kopierschutz-anbieter-zieht-klagedrohung-zurueck/Zabel gereizt nach Ullrich-Rückkehr: Kein Pausen-Clownhttps://www.rfc1437.de/2003/10/11/zabel-gereizt-nach-ullrich-rueckkehr-kein-psn-clwn/Kopierschutzhersteller will Doktorand verklagenhttps://www.rfc1437.de/2003/10/10/kopierschutzhersteller-will-doktorand-verklagen/Militärsonar ließ Wale strandenhttps://www.rfc1437.de/2003/10/10/militaersonar-liess-wale-stranden/No Napster 2.0 for the iPodhttps://www.rfc1437.de/2003/10/10/no-napster-20-for-the-ipod/Radsport-WM: Bronze im Zeitfahren für Peschelhttps://www.rfc1437.de/2003/10/10/radsport-wm-bronze-im-zeitfahren-fuer-peschel/Spaß mit der Nigeria-Connectionhttps://www.rfc1437.de/2003/10/10/spaszlig-mit-der-nigeria-connection/Religion ist Kokain für's Volkhttps://www.rfc1437.de/2003/10/09/religion-ist-kokain-fuumlrs-volk/Schnellweg zum Warenkorbhttps://www.rfc1437.de/2003/10/09/schnellweg-zum-warenkorb/Sculley: Apple should have used Intel chipshttps://www.rfc1437.de/2003/10/09/sculley-apple-should-have-used-intel-chips/Bill Bondhttps://www.rfc1437.de/2003/10/08/bill-bond/Building a Balancing Scooterhttps://www.rfc1437.de/2003/10/08/building-a-balancing-scooter/07.10 - 05:03: Farbenblindhttps://www.rfc1437.de/2003/10/07/0710-0503-farbenblind/Microsoft ändert Internet Explorer wegen Eolas-Patentenhttps://www.rfc1437.de/2003/10/07/microsoft-aendert-internet-explorer-wegen-ls-ptntn/Neuer Schachzug gegen Urheberrecht und für Kopierprogrammehttps://www.rfc1437.de/2003/10/07/neuer-schachzug-gegen-urheberrecht-nd-fr-kprprgrmm/Technische Inkompetenz oder Wunschdenken?https://www.rfc1437.de/2003/10/07/technische-inkompetenz-oder-wunschdenken/VeriSign verteidigt Sitefinderhttps://www.rfc1437.de/2003/10/07/verisign-verteidigt-sitefinder/Weltrangliste: Zabel wieder vor Bettinihttps://www.rfc1437.de/2003/10/07/weltrangliste-zabel-wieder-vor-bettini/Asteroid verfehlte die Erde nur knapphttps://www.rfc1437.de/2003/10/06/asteroid-verfehlte-die-erde-nur-knapp/Das nenn ich Case-Modding!https://www.rfc1437.de/2003/10/06/das-nenn-ich-case-modding/Die VeriSign-Sondersitzung nahthttps://www.rfc1437.de/2003/10/06/die-verisign-sondersitzung-naht/Europäischer iTMS im Mai 2004?https://www.rfc1437.de/2003/10/06/europaeischer-itms-im-mai-2004/Gute Fragehttps://www.rfc1437.de/2003/10/06/gute-frage/Multithreaded Python für DOShttps://www.rfc1437.de/2003/10/06/multithreaded-python-fuer-dos/Schöner codenhttps://www.rfc1437.de/2003/10/06/schoumlner-coden/System der Info-Bildschirme in Hamburger U-Bahnen geknackthttps://www.rfc1437.de/2003/10/06/system-der-info-bildschirme-in-hmbrgr-bhnn-gknckt/Unerhört falsche Annahmenhttps://www.rfc1437.de/2003/10/06/unerhoert-falsche-annahmen/Warum ich Microsoft hasse ...https://www.rfc1437.de/2003/10/06/warum-ich-microsoft-hasse/ES5-Entwickler entfernen Hintertürhttps://www.rfc1437.de/2003/10/05/es5-entwickler-entfernen-hintertuer/Grafmatic Sheet Film Holderhttps://www.rfc1437.de/2003/10/05/grafmatic-sheet-film-holder/Kampf gegen Windmühle[...]e>Schornsteinfegerhttps://www.rfc1437.de/2003/10/05/kampf-gegen-strikewindmuehlenstrikeschornsteinfegr/Kill Bill - neuer Tarantino im Kinohttps://www.rfc1437.de/2003/10/04/kill-bill-neuer-tarantino-im-kino/Quellcode geklauthttps://www.rfc1437.de/2003/10/04/quellcode-geklaut/Scientologist's Treatments Lure Firefightershttps://www.rfc1437.de/2003/10/04/scientologists-treatments-lure-firefighters/SPD-Abweichlern mit Abwahl gedrohthttps://www.rfc1437.de/2003/10/04/spd-abweichlern-mit-abwahl-gedroht/Systemabstürze durch defekte Elkoshttps://www.rfc1437.de/2003/10/04/systemabstuerze-durch-defekte-elkos/Ullrich angeblich doch mit Telekom einighttps://www.rfc1437.de/2003/10/04/ullrich-angeblich-doch-mit-telekom-einig/VeriSign nimmt Site Finder vom Netzhttps://www.rfc1437.de/2003/10/04/verisign-nimmt-site-finder-vom-netz/Versenkbares 90mm Objektiv für Leica Mhttps://www.rfc1437.de/2003/10/04/versenkbares-90mm-objektiv-fuer-leica-m/Größtmögliche Gemeinheithttps://www.rfc1437.de/2003/10/03/groesstmoegliche-gemeinheit/Iwanow: Russischer Erstschlag nicht ausgeschlossenhttps://www.rfc1437.de/2003/10/03/iwanow-russischer-erstschlag-nicht-ausgeschlossen/Microsoft hält Patent auf Fehlerreportshttps://www.rfc1437.de/2003/10/03/microsoft-haelt-patent-auf-fehlerreports/Panasonic Lumix DMC-LC1 at CEATEChttps://www.rfc1437.de/2003/10/03/panasonic-lumix-dmc-lc1-at-ceatec/Signs of Intelligence: ICANN Demands Verisign Kill SiteFinderhttps://www.rfc1437.de/2003/10/03/signs-of-intelligence-icann-dmnds-vrsgn-kll-stfndr/Auch mal Statistikhttps://www.rfc1437.de/2003/10/02/auch-mal-statistik/Ermittlungen wegen Kanzleramtsakten eingestellthttps://www.rfc1437.de/2003/10/02/ermittlungen-wegen-kanzleramtsakten-eingestellt/Panasonic Lumix DMC-FZ10https://www.rfc1437.de/2003/10/02/panasonic-lumix-dmc-fz10/PyDS 0.6.0 ist raushttps://www.rfc1437.de/2003/10/02/pyds-060-ist-raus/Replikation für PostgreSQLhttps://www.rfc1437.de/2003/10/02/replikation-fuer-postgresql/Security? Oder Feature?https://www.rfc1437.de/2003/10/02/security-oder-feature/TIBCO threatens developers over Rendezvoushttps://www.rfc1437.de/2003/10/02/tibco-threatens-developers-over-rendezvous/Trojaner leitet Browser auf falsche Seitenhttps://www.rfc1437.de/2003/10/02/trojaner-leitet-browser-auf-falsche-seiten/VIA Boards und Chips für kleine, stromsparende Systemehttps://www.rfc1437.de/2003/10/02/via-boards-und-chips-fuer-kleine-stromsparnd-systm/Abteilung seltsame Versionsnummernhttps://www.rfc1437.de/2003/10/01/abteilung-seltsame-versionsnummern/grafisches Betriebssystem mit TCP/IP Stack für C64https://www.rfc1437.de/2003/10/01/grafisches-betriebssystem-mit-tcpip-stack-fuer-c64/Haben will ...https://www.rfc1437.de/2003/10/01/haben-will/"Öko-Test": Hohe Strahlung bei WLAN-Netzwerkenhttps://www.rfc1437.de/2003/10/01/oeko-test-hohe-strahlung-bei-wlan-netzwerken/Ransom Love über SCOs Aktivitätenhttps://www.rfc1437.de/2003/10/01/ransom-love-ueber-scos-aktivitaeten/RegTP statt DENIC? Feedback!https://www.rfc1437.de/2003/10/01/regtp-statt-denic-feedback/ssh für Hires-Palms (Tungsten, Clie)https://www.rfc1437.de/2003/10/01/ssh-fuer-hires-palms-tungsten-clie/SSH2 Implementation in Pythonhttps://www.rfc1437.de/2003/10/01/ssh2-implementation-in-python/Using the Patriot Act to Get Reporters' Recordshttps://www.rfc1437.de/2003/10/01/using-the-patriot-act-to-get-reporters-records/Wie man mit Software-Fehlern Geld machen kann ...https://www.rfc1437.de/2003/10/01/wie-man-mit-software-fehlern-geld-machen-kann/Wiki zum Buch "Quicksilver" von Neal Stephensonhttps://www.rfc1437.de/2003/10/01/wiki-zum-buch-quicksilver-von-neal-stephenson/Die Verblödung schreitet voranhttps://www.rfc1437.de/2003/09/30/die-verbloedung-schreitet-voran/DrawBot: Python, PyObjC, and Cocoa based 2D drawing environmenthttps://www.rfc1437.de/2003/09/30/drawbot-python-pyobjc-and-coc-bsd-2d-drwng-nvrnmnt/Eigenverantwortung fördern ...https://www.rfc1437.de/2003/09/30/eigenverantwortung-foerdern/File Extension Details Databasehttps://www.rfc1437.de/2003/09/30/file-extension-details-database/Linux auf dem iPodhttps://www.rfc1437.de/2003/09/30/linux-auf-dem-ipod/SCO vs. Linux: Schutz unter dem Baldachinhttps://www.rfc1437.de/2003/09/30/sco-vs-linux-schutz-unter-dem-baldachin/Japanische Massenorgie erzürnt Chinahttps://www.rfc1437.de/2003/09/29/japanische-massenorgie-erzuernt-china/Besier und Scientology - sueddeutsche.de - Feuilletonhttps://www.rfc1437.de/2003/09/28/besier-und-scientology-sueddeutschede-feuilleton/DAX-Firmen übernehmen weniger Azubishttps://www.rfc1437.de/2003/09/28/dax-firmen-uebernehmen-weniger-azubis/Droht eine Verweiblichung des Schulbetriebs?https://www.rfc1437.de/2003/09/28/droht-eine-verweiblichung-des-schulbetriebs/Nümber 1 Förmüla for Mën!https://www.rfc1437.de/2003/09/28/nuember-1-foermuela-for-mn/quiz-zeithttps://www.rfc1437.de/2003/09/28/quiz-zeit/Robot Controller 1.7b2https://www.rfc1437.de/2003/09/28/robot-controller-17b2/Ein kleiner Schritt vom Whisky zur Chemiewaffehttps://www.rfc1437.de/2003/09/27/ein-kleiner-schritt-vom-whisky-zur-chemiewaffe/Freiheit der Software wird von der UNO als schuetzenswert anerkannthttps://www.rfc1437.de/2003/09/27/freiheit-dr-sftwr-wrd-vn-dr-n-ls-schtznswrt-nrknnt/Heras inches closer to Nozal with uphill ITT loominghttps://www.rfc1437.de/2003/09/27/heras-inches-closer-to-nozal-with-uphill-itt-lomng/Heras schlüpft bei Spanien-Rundfahrt ins Goldtrikothttps://www.rfc1437.de/2003/09/27/heras-schluepft-bei-spanien-rundfahrt-ins-goldtrkt/IBM reicht neue Klage gegen SCO einhttps://www.rfc1437.de/2003/09/27/ibm-reicht-neue-klage-gegen-sco-ein/Morons in the News: Banned Book Week: Food for Thoughthttps://www.rfc1437.de/2003/09/27/morons-in-the-news-banned-book-week-food-for-thght/Reader-Submitted: CWA decides that homosexuals are terroristshttps://www.rfc1437.de/2003/09/27/reader-submitted-cwa-decides-that-hmsxls-r-trrrsts/SPD-Abweichler müssen sich verantwortenhttps://www.rfc1437.de/2003/09/27/spd-abweichler-muessen-sich-verantworten/Unionspolitiker für Schäuble als Rau-Nachfolgerhttps://www.rfc1437.de/2003/09/27/unionspolitiker-fuer-schaeuble-als-rau-nachfolger/Wortfeld: ICANN und die Weltfernmeldeunion ITUhttps://www.rfc1437.de/2003/09/27/wortfeld-icann-und-die-weltfernmeldeunion-itu/Arm von Amts wegenhttps://www.rfc1437.de/2003/09/26/arm-von-amts-wegen/Bossi: Christdemokraten gehörten erschossenhttps://www.rfc1437.de/2003/09/26/bossi-christdemokraten-gehoerten-erschossen/Herzog-Kommission: Rente nach 45 Jahrenhttps://www.rfc1437.de/2003/09/26/herzog-kommission-rente-nach-45-jahren/Imaginary Python books that I would like to readhttps://www.rfc1437.de/2003/09/26/imaginary-python-books-that-i-would-like-to-read/Motorola trennt sich von Chipsätzen für PowerPCshttps://www.rfc1437.de/2003/09/26/motorola-trennt-sich-von-chipsaetzen-fuer-powerpcs/Storever Online Backuphttps://www.rfc1437.de/2003/09/26/storever-online-backup/Umfrage: SPD weiter im Sinkflughttps://www.rfc1437.de/2003/09/26/umfrage-spd-weiter-im-sinkflug/apt für RPMshttps://www.rfc1437.de/2003/09/25/apt-fuer-rpms/Israel: Kampfpiloten-Rebellion löst politisches "Erdbeben" aushttps://www.rfc1437.de/2003/09/25/israel-kampfpiloten-rebellion-lost-pltschs-rdbbn-s/Israelische Piloten verweigern Angriffehttps://www.rfc1437.de/2003/09/25/israelische-piloten-verweigern-angriffe/Passwort-Klau durch Lücke im Internet Explorerhttps://www.rfc1437.de/2003/09/25/passwort-klau-durch-luecke-im-internet-explorer/Unions-Fraktion für Studiengebührenhttps://www.rfc1437.de/2003/09/25/unions-fraktion-fuer-studiengebuehren/Berlusconi als Kämpfer gegen den Antisemitismus geehrthttps://www.rfc1437.de/2003/09/24/berlusconi-als-kaempfer-gegen-den-antisemtsms-ghrt/FTP-Server ProFTPD verwundbarhttps://www.rfc1437.de/2003/09/24/ftp-server-proftpd-verwundbar/Klammerschlußgesetzhttps://www.rfc1437.de/2003/09/24/klammerschluszliggesetz/Richtlinie zu Software-Patenten verabschiedethttps://www.rfc1437.de/2003/09/24/richtlinie-zu-software-patenten-verabschiedet/Sophos kauft ActiveStatehttps://www.rfc1437.de/2003/09/24/sophos-kauft-activestate/In sechs Wochen vom Helfer zum Vueltasiegerhttps://www.rfc1437.de/2003/09/23/in-sechs-wochen-vom-helfer-zum-vueltasieger/Mac OS X 10.2.8 causes problems for somehttps://www.rfc1437.de/2003/09/23/mac-os-x-1028-causes-problems-for-some/Rainer Joswig's Homehttps://www.rfc1437.de/2003/09/23/rainer-joswigs-home/Ermittlungsverfahren gegen Altkanzler Kohlhttps://www.rfc1437.de/2003/09/22/ermittlungsverfahren-gegen-altkanzler-kohl/Gesundheitskompromiss: Merz läuft Amokhttps://www.rfc1437.de/2003/09/22/gesundheitskompromiss-merz-laeuft-amok/SPD: "Gewaltiger Mitgliederschwund" in NRWhttps://www.rfc1437.de/2003/09/22/spd-gewaltiger-mitgliederschwund-in-nrw/Owner of Dewey Decimal System Sues New York's Library Hotel - from Tampa Bay Onlinehttps://www.rfc1437.de/2003/09/21/wnr-f-dwy-dcml-systm-ss-nw-yrks-lbrry-htl-frm-tmp/AppleScript Studio Tutorialhttps://www.rfc1437.de/2003/09/20/applescript-studio-tutorial/Faszinierend ...https://www.rfc1437.de/2003/09/20/faszinierend/Hightech-Heroinhttps://www.rfc1437.de/2003/09/20/hightech-heroin/Pursuing the 17th-Century Origins of the Hacker's Grailhttps://www.rfc1437.de/2003/09/20/pursuing-the-17th-century-origins-of-the-hckrs-grl/taz 20.9.03 Stoiber erringt klaren Sieghttps://www.rfc1437.de/2003/09/20/taz-20903-stoiber-erringt-klaren-sieg/Casemodding der ganz besonderen Arthttps://www.rfc1437.de/2003/09/19/casemodding-der-ganz-besonderen-art/Computer makers sued over hard-drive size claimshttps://www.rfc1437.de/2003/09/19/computer-makers-sued-over-hard-drive-size-claims/Die Zukunft für Hessens Frauen ist gesicherthttps://www.rfc1437.de/2003/09/19/die-zukunft-fuer-hessens-frauen-ist-gesichert/Doch nur ein Braunbärhttps://www.rfc1437.de/2003/09/19/doch-nur-ein-braunbaer/Dosenfleisch ///https://www.rfc1437.de/2003/09/19/dosenfleisch/Effektive Massnahmen gegen Comment-Spamhttps://www.rfc1437.de/2003/09/19/effektive-massnahmen-gegen-comment-spam/200 Dollar Note mit Bush-Bildhttps://www.rfc1437.de/2003/09/18/200-dollar-note-mit-bush-bild/eBay Happy to Give Away All Personal Infohttps://www.rfc1437.de/2003/09/18/ebay-happy-to-give-away-all-personal-info/Falsche Kriminalstatistik in Hamburghttps://www.rfc1437.de/2003/09/18/falsche-kriminalstatistik-in-hamburg/Integration von Mailsmith mit POPFilehttps://www.rfc1437.de/2003/09/18/integration-von-mailsmith-mit-popfile/Mit Linux auf Verbrecherjagdhttps://www.rfc1437.de/2003/09/18/mit-linux-auf-verbrecherjagd/Schloss Nordkirchenhttps://www.rfc1437.de/2003/09/18/pic-schloss-nordkirchen/RTL steigt im Poker um Tour-Rechte aushttps://www.rfc1437.de/2003/09/18/rtl-steigt-im-poker-um-tour-rechte-aus/Schloss Nordkirchenhttps://www.rfc1437.de/2003/09/18/schloss-nordkirchen/wouthit a porbelm huh?https://www.rfc1437.de/2003/09/18/wouthit-a-porbelm-huh/All your .com are belong to us :: hebig.org/bloghttps://www.rfc1437.de/2003/09/17/all-your-com-are-belong-to-us-hebigorgblog/Apple Expo: Radio mit Timeshifthttps://www.rfc1437.de/2003/09/17/apple-expo-radio-mit-timeshift/CEO Performance Pollhttps://www.rfc1437.de/2003/09/17/ceo-performance-poll/Interview mit Udo Böltshttps://www.rfc1437.de/2003/09/17/interview-mit-udo-boelts/OpenSSH 3.7 schließt Sicherheitsloch [2. update]https://www.rfc1437.de/2003/09/17/openssh-37-schliesst-sicherheitsloch-2-update/RegTP statt DENIC? Aktiv werden!https://www.rfc1437.de/2003/09/17/regtp-statt-denic-aktiv-werden/Turn Your Radio Onhttps://www.rfc1437.de/2003/09/17/turn-your-radio-on/VeriSign fischt Traffic abhttps://www.rfc1437.de/2003/09/17/verisign-fischt-traffic-ab/Karl Klammer fürs Netzhttps://www.rfc1437.de/2003/09/16/karl-klammer-fuers-netz/Kommentare zu den neuen Apple-Spielzeugenhttps://www.rfc1437.de/2003/09/16/kommentare-zu-den-neuen-apple-spielzeugen/Kris Delmhorsthttps://www.rfc1437.de/2003/09/16/kris-delmhorst/Münsterland-Tour der Junioren ab Freitaghttps://www.rfc1437.de/2003/09/16/muensterland-tour-der-junioren-ab-freitag/[ nickijaine.com ]https://www.rfc1437.de/2003/09/16/nickijainecom/Beitrag ohne Titelhttps://www.rfc1437.de/2003/09/16/p1241/Lampen an der Stadtbüchereihttps://www.rfc1437.de/2003/09/16/pic-lampen-an-der-stadtbuecherei/Stadtbücherei Münster, Haupteinganghttps://www.rfc1437.de/2003/09/16/pic-stadtbuecherei-muenster-haupteingang/Stadtbücherei Münster, Nebenganghttps://www.rfc1437.de/2003/09/16/pic-stadtbuecherei-muenster-nebengang/Shared Space 2.0https://www.rfc1437.de/2003/09/16/shared-space-20/VeriSign hat einen Wildcard-A-Record auf *.net eingetragenhttps://www.rfc1437.de/2003/09/16/verisign-hat-einen-wildcard-a-record-auf-nt-ngtrgn/Wenn helles Licht in die Nase gehthttps://www.rfc1437.de/2003/09/16/wenn-helles-licht-in-die-nase-geht/Whole Wheat Radio - Homehttps://www.rfc1437.de/2003/09/16/whole-wheat-radio-home/schwarze katze weisser katerhttps://www.rfc1437.de/2003/09/15/schwarze-katze-weisser-kater/SenderBasehttps://www.rfc1437.de/2003/09/15/senderbase/Vuelta: Virenque disqualifizierthttps://www.rfc1437.de/2003/09/15/vuelta-virenque-disqualifiziert/Zülle gibt Vuelta auf: "Nie mehr große Rundfahrt"https://www.rfc1437.de/2003/09/15/zuelle-gibt-vuelta-auf-nie-mehr-grosse-rundfahrt/Attentat auf Arafat "legitime" Option für Israelhttps://www.rfc1437.de/2003/09/14/attentat-auf-arafat-legitime-option-fuer-israel/Barockes Quecksilberhttps://www.rfc1437.de/2003/09/14/barockes-quecksilber/eBay diskriminiert Nicht-Windows-User!https://www.rfc1437.de/2003/09/14/ebay-diskriminiert-nicht-windows-user/Fussel im Bauchnabelhttps://www.rfc1437.de/2003/09/14/fussel-im-bauchnabel/Möglicher Kreditkartenmissbrauchhttps://www.rfc1437.de/2003/09/14/moeglicher-kreditkartenmissbrauch/Hundt will maximal zwölf Monate Arbeitslosengeldhttps://www.rfc1437.de/2003/09/13/hundt-will-maximal-zwoelf-monate-arbeitslosengeld/le monde de marcohttps://www.rfc1437.de/2003/09/13/le-monde-de-marco/PHOKU | webserverhttps://www.rfc1437.de/2003/09/13/phoku-webserver/Scheissjob?https://www.rfc1437.de/2003/09/13/scheissjob/Star Trek Dimension - Investigating Trekhttps://www.rfc1437.de/2003/09/13/star-trek-dimension-investigating-trek/Berlusconi: Mussolini war ''''gutartig''''https://www.rfc1437.de/2003/09/11/berlusconi-mussolini-war-gutartig/Schwarzes Loch hämmert Bässe ins Allhttps://www.rfc1437.de/2003/09/11/schwarzes-loch-haemmert-baesse-ins-all/Wie man sich eine Farbe zu eigen machthttps://www.rfc1437.de/2003/09/11/wie-man-sich-eine-farbe-zu-eigen-macht/Wieder da ...https://www.rfc1437.de/2003/09/11/wieder-da/Updated Medusa Releasehttps://www.rfc1437.de/2003/09/08/updated-medusa-release/Open Firmware: Password Not Recognized When It Contains the Letter "U"https://www.rfc1437.de/2003/09/07/open-firmwar-psswrd-nt-rcgnzd-whn-t-cntns-th-lttr/Politiker entdecken Sozialhilfe als radikales Einsparpotenzialhttps://www.rfc1437.de/2003/09/07/politiker-entdecken-sozialhilfe-ls-rdkls-nsprptnzl/Schäuble will offenbar Rau nachfolgenhttps://www.rfc1437.de/2003/09/07/schaeuble-will-offenbar-rau-nachfolgen/16.000 Grippetote in Deutschlandhttps://www.rfc1437.de/2003/09/06/16000-grippetote-in-deutschland/LG Hamburg: .de nur noch für Deppen!https://www.rfc1437.de/2003/09/06/lg-hamburg-de-nur-noch-fuer-deppen/Doping-Lieferung an belgische Radprofis gestandenhttps://www.rfc1437.de/2003/09/05/doping-lieferung-an-belgische-radprofis-gestanden/LWL - Westf. Industriemuseum - Schiffshebewerk Henrichenburg - Altes Schiffshebewerk Henrichenburghttps://www.rfc1437.de/2003/09/05/lwl-wstf-ndstrmsm-schffshbwrk-hnrchnbrg-lts-schffs/Merkel: Mehr arbeiten für mehr Arbeitsplätzehttps://www.rfc1437.de/2003/09/05/merkel-mehr-arbeiten-fuer-mehr-arbeitsplaetze/Möllemann-Affäre: Spender-Namen auf den Tischhttps://www.rfc1437.de/2003/09/05/moellemann-affaere-spender-namen-auf-den-tisch/Bei Bianchi rumort eshttps://www.rfc1437.de/2003/09/04/bei-bianchi-rumort-es/Berlusconi: Richter sind "geistesgestört"https://www.rfc1437.de/2003/09/04/berlusconi-richter-sind-geistesgestoert/Rechtsstreit Obelix vs. MobiliX endgültig beendethttps://www.rfc1437.de/2003/09/04/rechtsstreit-obelix-vs-mobilix-endgueltig-beendet/Übermenschen für das Pentagonhttps://www.rfc1437.de/2003/09/04/uebermenschen-fuer-das-pentagon/Digital Outback Photo Reviews Photokit Sharpenerhttps://www.rfc1437.de/2003/09/03/digital-outback-photo-reviews-photokit-sharpener/FaceSpan 4.0 Public Betahttps://www.rfc1437.de/2003/09/03/facespan-40-public-beta/Florida-Rolf und die rechte Hirnhälfte der Sozialministerin Schmidthttps://www.rfc1437.de/2003/09/03/florida-rolf-nd-d-rcht-hrnhlft-dr-szlmnstrn-schmdt/Tobit feiert Radio-MP3-Software ClipInc als wichtigste IFA-Neuheithttps://www.rfc1437.de/2003/09/03/tobit-feiert-radi-mp3-sftwr-clpnc-ls-wchtgst-f-nht/20 Jahre BTXhttps://www.rfc1437.de/2003/09/02/20-jahre-btx/AppleScript to open POPFile links from Entourage Xhttps://www.rfc1437.de/2003/09/02/applescript-to-open-popfile-links-from-entourage-x/Dramatische Haushaltslagen in NRW und Berlinhttps://www.rfc1437.de/2003/09/02/dramatische-haushaltslagen-in-nrw-und-berlin/SCO muss Ordnungsgeld zahlenhttps://www.rfc1437.de/2003/09/02/sco-muss-ordnungsgeld-zahlen/Tom Waits, Blood Money ...https://www.rfc1437.de/2003/09/02/tom-waits-blood-money/Ullrich: Vergiftete Infusion Schuld am Tour-Fieberhttps://www.rfc1437.de/2003/09/02/ullrich-vergiftete-infusion-schuld-am-tour-fieber/Vuelta: Zabel führt Telekom anhttps://www.rfc1437.de/2003/09/02/vuelta-zabel-fuehrt-telekom-an/Der große Jackpothttps://www.rfc1437.de/2003/09/01/der-grosse-jackpot/Gewonnen hat: Die Pharmaindustriehttps://www.rfc1437.de/2003/09/01/gewonnen-hat-die-pharmaindustrie/Ullrich: Bei Toursieg hätte ich Karriere beendethttps://www.rfc1437.de/2003/09/01/ullrich-bei-toursieg-haette-ich-karriere-beendet/Punkt und Komma im Gehirnhttps://www.rfc1437.de/2003/08/31/punkt-und-komma-im-gehirn/Digglerhttps://www.rfc1437.de/2003/08/30/diggler/Fraktion über Schill: "Der braucht Hilfe"https://www.rfc1437.de/2003/08/30/fraktion-ueber-schill-der-braucht-hilfe/Hardware ist doofhttps://www.rfc1437.de/2003/08/30/hardware-ist-doof/Informationsfreiheit ab 2004?https://www.rfc1437.de/2003/08/30/informationsfreiheit-ab-2004/Merkel: Bei Wahlsieg raus aus dem Atomausstieghttps://www.rfc1437.de/2003/08/30/merkel-bei-wahlsieg-raus-aus-dem-atomausstieg/Gerolsteiner hat Interesse an Belokihttps://www.rfc1437.de/2003/08/29/gerolsteiner-hat-interesse-an-beloki/Strato und MTUhttps://www.rfc1437.de/2003/08/29/strato-und-mtu/W3C sieht Gefahr für Internet-Standardshttps://www.rfc1437.de/2003/08/28/w3c-sieht-gefahr-fuer-internet-standards/Auch Robert ist seinen Job bei der Telekom loshttps://www.rfc1437.de/2003/08/27/auch-robert-ist-seinen-job-bei-der-telekom-los/Banken-Dienstleister GAD schließt vier Standortehttps://www.rfc1437.de/2003/08/27/banken-dienstleister-gad-schliesst-vier-standorte/Bayern plant "Integrationsobergrenze"https://www.rfc1437.de/2003/08/27/bayern-plant-integrationsobergrenze/Das totale Knipsenhttps://www.rfc1437.de/2003/08/27/das-totale-knipsen/12:38:30: Frauen sind wie Webserverhttps://www.rfc1437.de/2003/08/26/123830-frauen-sind-wie-webserver/bash is new default terminal shell in Pantherhttps://www.rfc1437.de/2003/08/26/bash-is-new-default-terminal-shell-in-panther/Christiania soll normaler werdenhttps://www.rfc1437.de/2003/08/26/christiania-soll-normaler-werden/Müller will Eltern bei Rente bevorzugenhttps://www.rfc1437.de/2003/08/26/mueller-will-eltern-bei-rente-bevorzugen/Wie Wikis wachsen und gedeihenhttps://www.rfc1437.de/2003/08/26/wie-wikis-wachsen-und-gedeihen/Microsoft blockiert internationale Konferenz zu Open Sourcehttps://www.rfc1437.de/2003/08/25/microsoft-blockiert-internationale-knfrnz-z-pn-src/PHP unter anderen Userrechten im Apachehttps://www.rfc1437.de/2003/08/25/php-unter-anderen-userrechten-im-apache/Postscript mit Python produzierenhttps://www.rfc1437.de/2003/08/25/postscript-mit-python-produzieren/Spam-Filter für IMAP-Mailboxenhttps://www.rfc1437.de/2003/08/25/spam-filter-fuer-imap-mailboxen/Und mal wieder ein bischen was zur SCO-Farcehttps://www.rfc1437.de/2003/08/25/und-mal-wieder-ein-bischen-was-zur-sco-farce/Warum gibt es in Windows Funktionen wie BEAR, BUNNY und PIGLET?https://www.rfc1437.de/2003/08/25/warum-gibt-es-in-windows-funktnn-w-br-bnny-nd-pglt/Backupsoftware für Mac OS X und DVD-R Writerhttps://www.rfc1437.de/2003/08/24/backupsoftware-fuer-mac-os-x-und-dvd-r-writer/Der böse Computerfresser hat mal wieder zugeschlagenhttps://www.rfc1437.de/2003/08/24/der-boese-computerfresser-hat-mal-wieder-zugschlgn/MacOSX::File and psynchttps://www.rfc1437.de/2003/08/24/macosxfile-and-psync/OpenOffice für Mac OS X ohne X11 lässt auf sich wartenhttps://www.rfc1437.de/2003/08/23/openoffice-fuer-mac-os-x-ohne-x11-lasst-f-sch-wrtn/Schill drohte wohl mit Outing zur Prime Timehttps://www.rfc1437.de/2003/08/23/schill-drohte-wohl-mit-outing-zur-prime-time/SCO vs. Linux: Die Zeit der Verschwörungstheorienhttps://www.rfc1437.de/2003/08/23/sco-vs-linux-die-zeit-der-verschwoerungstheorien/Venusblumenkörbchen als Lichtwellenleiterhttps://www.rfc1437.de/2003/08/23/venusblumenkoerbchen-als-lichtwellenleiter/Beust schmeisst Schill raushttps://www.rfc1437.de/2003/08/21/beust-schmeisst-schill-raus/Buckelwal sprang auf Segelboothttps://www.rfc1437.de/2003/08/21/buckelwal-sprang-auf-segelboot/Canon EOS-300D / Digital Rebelhttps://www.rfc1437.de/2003/08/21/canon-eos-300d-digital-rebel/Erik Zabel kann doch noch gewinnenhttps://www.rfc1437.de/2003/08/21/erik-zabel-kann-doch-noch-gewinnen/Hessische Steuerfahnder ausgebremst?https://www.rfc1437.de/2003/08/21/hessische-steuerfahnder-ausgebremst/Hamburger Regierungskrise: Schlammschlacht um Beusts Sexualität - Politik - SPIEGEL ONLINEhttps://www.rfc1437.de/2003/08/21/hmbrgr-rgrngskrs-schlmmschlcht-m-bsts-sxltt-pltk-s/"Ich bin alter Nationalsozialist"https://www.rfc1437.de/2003/08/21/ich-bin-alter-nationalsozialist/SCO: Der "Beweis"https://www.rfc1437.de/2003/08/21/sco-der-beweis/Da könnte ja jeder kommenhttps://www.rfc1437.de/2003/08/18/da-koennte-ja-jeder-kommen/iPod - wirklich ein nettes Spielzeughttps://www.rfc1437.de/2003/08/18/ipod-wirklich-ein-nettes-spielzeug/PowerBooks kommenhttps://www.rfc1437.de/2003/08/18/powerbooks-kommen/Vatikan und Missbrauchsfälle: Bericht über Vertuschungs-Anordnunghttps://www.rfc1437.de/2003/08/18/vatikan-und-missbrchsfll-brcht-br-vrtschngs-nrdnng/SQL-Slammer beeinträchtigte US-Kraftwerksteuerunghttps://www.rfc1437.de/2003/08/17/sql-slammer-beeintraechtigte-us-kraftwerksteuerung/Microsoft lässt Wurmangriff ins Leere laufenhttps://www.rfc1437.de/2003/08/16/microsoft-laesst-wurmangriff-ins-leere-laufen/Doch ein Zusammenhang zwischen Blackout und Windows-Wurm?https://www.rfc1437.de/2003/08/15/doch-ein-zusammenhang-zwischen-blackt-nd-wndws-wrm/mySTEP 1.1https://www.rfc1437.de/2003/08/15/mystep-11/Neue Sony: F-828https://www.rfc1437.de/2003/08/15/neue-sony-f-828/RSS - wo steht der Link auf einen Artikel?https://www.rfc1437.de/2003/08/15/rss-wo-steht-der-link-auf-einen-artikel/SCO Lizenzen auch für SCO Linux fällig ...https://www.rfc1437.de/2003/08/15/sco-lizenzen-auch-fuer-sco-linux-faellig/Amerikaner werfen U-Bahnen ins Meerhttps://www.rfc1437.de/2003/08/14/amerikaner-werfen-u-bahnen-ins-meer/FTP-Server des GNU-Projekts gehackthttps://www.rfc1437.de/2003/08/14/ftp-server-des-gnu-projekts-gehackt/Reader-Submitted: Fox "News" claims sole use of "fair and balanced"https://www.rfc1437.de/2003/08/14/reader-submitted-fox-news-clams-sl-s-f-fr-nd-blncd/SCO erklärt die GPL für ungültighttps://www.rfc1437.de/2003/08/14/sco-erklaert-die-gpl-fuer-ungueltig/Stromausfall im amerikanischen Nordostenhttps://www.rfc1437.de/2003/08/14/stromausfall-im-amerikanischen-nordosten/WyPy - Wiki in Pythonhttps://www.rfc1437.de/2003/08/14/wypy-wiki-in-python/10 Python pitfallshttps://www.rfc1437.de/2003/08/13/10-python-pitfalls/blogg.de: XML-RPC Interfacehttps://www.rfc1437.de/2003/08/13/bloggde-xml-rpc-interface/Ralle the Switcherhttps://www.rfc1437.de/2003/08/13/ralle-the-switcher/FaceSpan 4.0https://www.rfc1437.de/2003/08/12/facespan-40/Aldag gewinnt "Giro" in Bochumhttps://www.rfc1437.de/2003/08/11/aldag-gewinnt-giro-in-bochum/eDings.de Artikel: Lieber Herr Burg, werte Mitlesende: Urheberrecht und Quellenangaben zum Zweitenhttps://www.rfc1437.de/2003/08/11/dngsd-rtkl-lbr-hrr-brg-wrt-mtlsnd-rhbrrcht-nd-qlln/Notebook da ...https://www.rfc1437.de/2003/08/11/notebook-da/Skript kiddies?https://www.rfc1437.de/2003/08/11/skript-kiddies/Saban kritisiert Nahost-Berichterstattunghttps://www.rfc1437.de/2003/08/10/saban-kritisiert-nahost-berichterstattung/Steinbrück streicht Urlaubsgeld und Subventionenhttps://www.rfc1437.de/2003/08/10/steinbrueck-streicht-urlaubsgeld-und-subventionen/Hitzeschaden ...https://www.rfc1437.de/2003/08/08/hitzeschaden/Ich hasse das Wetter ...https://www.rfc1437.de/2003/08/08/ich-hasse-das-wetter/Immunität für amerikanische Ölkonzerne im Irakhttps://www.rfc1437.de/2003/08/08/immunitaet-fuer-amerikanische-oelkonzerne-im-irak/Jaksche vor Wechsel zu Gerolsteinerhttps://www.rfc1437.de/2003/08/08/jaksche-vor-wechsel-zu-gerolsteiner/USA warfen im Irak-Krieg Brandbombenhttps://www.rfc1437.de/2003/08/08/usa-warfen-im-irak-krieg-brandbomben/Heise News-Ticker: Red Hat verklagt SCOhttps://www.rfc1437.de/2003/08/05/heise-news-ticker-red-hat-verklagt-sco/ONCE beendet Radsport-Engagement nach 15 Jahrenhttps://www.rfc1437.de/2003/08/05/once-beendet-radsport-engagement-nach-15-jahren/Dialog durch Kunst?https://www.rfc1437.de/2003/08/04/dialog-durch-kunst/Ein Drittel aller Beschäftigten im Niedriglohnbereichhttps://www.rfc1437.de/2003/08/04/ein-drittel-aller-beschaeftigten-im-niedriglhnbrch/How to install Windows XP in 5 hours or less [dive into mark]https://www.rfc1437.de/2003/08/04/how-to-install-windows-xp-in-5-hrs-r-lss-dv-nt-mrk/Schwarze Liste für Anti-Kriegs-Aktivisten an US-Flughäfenhttps://www.rfc1437.de/2003/08/04/schwarze-liste-fuer-anti-kriegs-aktvstn-n-s-flghfn/10 Jahre Apple Newton: Dem ersten PDA zur Erinnerunghttps://www.rfc1437.de/2003/08/02/10-jahre-apple-newton-dem-ersten-pda-zur-erinnerng/Joblose müssen fast jedes Angebot annehmenhttps://www.rfc1437.de/2003/08/02/joblose-muessen-fast-jedes-angebot-annehmen/ONCE-Rennstall droht das Aus am Saisonendehttps://www.rfc1437.de/2003/08/02/once-rennstall-droht-das-aus-am-saisonende/SBCL for OS Xhttps://www.rfc1437.de/2003/08/02/sbcl-for-os-x/Stereo Images - Time for Spacehttps://www.rfc1437.de/2003/08/02/stereo-images-time-for-space/Traue keiner Statistik, die du nicht selbst gefälscht hasthttps://www.rfc1437.de/2003/08/02/traue-keiner-statistik-di-d-ncht-slbst-gflscht-hst/Chinesenisches Seeungeheuerhttps://www.rfc1437.de/2003/08/01/chinesenisches-seeungeheuer/Sun-Chef McNealy: Finger weg von Open Sourcehttps://www.rfc1437.de/2003/08/01/sun-chef-mcnealy-finger-weg-von-open-source/Windows-User machen Internet kaputthttps://www.rfc1437.de/2003/08/01/windows-user-machen-internet-kaputt/Entwurf für Gentechnik-Gesetz vorgelegthttps://www.rfc1437.de/2003/07/31/entwurf-fuer-gentechnik-gesetz-vorgelegt/Gesetz trennt israelisch-palästinensische Ehepaarehttps://www.rfc1437.de/2003/07/31/gesetz-trennt-israelisch-palaestinensische-ehepaar/Panorama rules ...https://www.rfc1437.de/2003/07/31/panorama-rules/Vatikan mobilisiert gegen Homo-Ehehttps://www.rfc1437.de/2003/07/31/vatikan-mobilisiert-gegen-homo-ehe/Hamburg: Kindern droht Abschiebunghttps://www.rfc1437.de/2003/07/30/hamburg-kindern-droht-abschiebung/Peschel aus Krankenhaus entlassenhttps://www.rfc1437.de/2003/07/30/peschel-aus-krankenhaus-entlassen/What's New in Python 2.3https://www.rfc1437.de/2003/07/30/whats-new-in-python-23/ActiveDeveloper 2.14https://www.rfc1437.de/2003/07/29/activedeveloper-214/IBM kontert im Rechtsstreit gegen SCOhttps://www.rfc1437.de/2003/07/29/ibm-kontert-im-rechtsstreit-gegen-sco/TP: Email-Klau über den Weg des Domainklaus ist legalhttps://www.rfc1437.de/2003/07/29/tp-email-klau-ueber-den-weg-des-domainklaus-st-lgl/Cog 0.5https://www.rfc1437.de/2003/07/28/cog-05/Es gibt kein Monster im Loch Nesshttps://www.rfc1437.de/2003/07/28/es-gibt-kein-monster-im-loch-ness/Stoibers Taktieren ist kein Problem des Föderalismus, sondern der CDU/CSUhttps://www.rfc1437.de/2003/07/28/stoibrs-tktrn-st-kn-prblm-ds-fdrlsms-sndrn-dr-cdcs/Bill Gates: Linux enthält auch Microsoft-Codehttps://www.rfc1437.de/2003/07/27/bill-gates-linux-enthaelt-auch-microsoft-code/Guter Bildschirmhintergrundhttps://www.rfc1437.de/2003/07/27/guter-bildschirmhintergrund/Ostfriesland wächsthttps://www.rfc1437.de/2003/07/27/ostfriesland-waechst/Tja, das war sie die Tour 2003 ...https://www.rfc1437.de/2003/07/27/tja-das-war-sie-die-tour-2003/Wasser und Plutonium bergen explosive Gefahrhttps://www.rfc1437.de/2003/07/27/wasser-und-plutonium-bergen-explosive-gefahr/Zehn Jahre Windows NThttps://www.rfc1437.de/2003/07/27/zehn-jahre-windows-nt/Apple, DRM and mehttps://www.rfc1437.de/2003/07/26/apple-drm-and-me/E-Mail-Archive als Zeitvernichterhttps://www.rfc1437.de/2003/07/26/e-mail-archive-als-zeitvernichter/Saugefährlich dieses Zeitfahren ...https://www.rfc1437.de/2003/07/26/saugefaehrlich-dieses-zeitfahren/Übersicht über Pings für den Ping-Cacherhttps://www.rfc1437.de/2003/07/26/uebersicht-ueber-pings-fuer-den-ping-cacher/Uwe Peschel gestürzt und mit schweren Verletzungenhttps://www.rfc1437.de/2003/07/26/uwe-peschel-gestuerzt-und-mit-schweren-verletzungn/Walter Zapp gestorbenhttps://www.rfc1437.de/2003/07/26/walter-zapp-gestorben/Weblogs.com Ping Cacher in PHP (from Reinvented Inc.)https://www.rfc1437.de/2003/07/26/weblogscom-ping-cacher-in-php-from-reinvented-inc/Erneuter Fehler in Windows-RPC-Schnittstellehttps://www.rfc1437.de/2003/07/25/erneuter-fehler-in-windows-rpc-schnittstelle/Heise News-Ticker: (Auslands-)Frust mit Apples Online-Musikladenhttps://www.rfc1437.de/2003/07/25/heise-news-ticker-auslands-frst-mt-ppls-nln-mskldn/CD-Linux Knoppix kommt auf den Machttps://www.rfc1437.de/2003/07/24/cd-linux-knoppix-kommt-auf-den-mac/Gates-Stiftung spendiert New Yorker Schulen Palm-PDAshttps://www.rfc1437.de/2003/07/24/gates-stiftung-spendiert-new-yorker-schuln-plm-pds/Lobpreist die Systemadministratoren!https://www.rfc1437.de/2003/07/24/lobpreist-die-systemadministratoren/Heute die Tour mal nur im Ticker ...https://www.rfc1437.de/2003/07/23/heute-die-tour-mal-nur-im-ticker/Italiens Parlament stärkt Berlusconis Medienmachthttps://www.rfc1437.de/2003/07/23/italiens-parlament-staerkt-berlusconis-medienmacht/Stage 16: Tyler Freaking Hamilton takes Stage 16!https://www.rfc1437.de/2003/07/23/stage-16-tyler-freaking-hamilton-takes-stage-16/Hondo vor Wechsel zu Gerolsteinerhttps://www.rfc1437.de/2003/07/22/hondo-vor-wechsel-zu-gerolsteiner/Neuer Mail-Server in X.3 Server?https://www.rfc1437.de/2003/07/22/neuer-mail-server-in-x3-server/SCO vs. Linux: Linux-Steuer oder Sicherheit [Update]https://www.rfc1437.de/2003/07/22/sco-vs-linux-linux-steuer-oder-sicherheit-update/"Antidot-Lizenz" von SCOhttps://www.rfc1437.de/2003/07/21/antidot-lizenz-von-sco/Atom-Minen sollten Deutschland verwüstenhttps://www.rfc1437.de/2003/07/21/atom-minen-sollten-deutschland-verwuesten/Die Eckpunkte des Gesundheitskompromisseshttps://www.rfc1437.de/2003/07/21/die-eckpunkte-des-gesundheitskompromisses/Die Tour war schon hart heute ...https://www.rfc1437.de/2003/07/21/die-tour-war-schon-hart-heute/Radsport-News.comhttps://www.rfc1437.de/2003/07/21/radsport-newscom/Wolfowitz "Leave Iraq alone"https://www.rfc1437.de/2003/07/21/wolfowitz-leave-iraq-alone/Bild von Joseba Beloki nach dem bösen Crash und der OPhttps://www.rfc1437.de/2003/07/20/bild-von-joseba-beloki-nach-dem-boesn-crsh-nd-dr-p/Der Tag von Vinokourov war das heute ...https://www.rfc1437.de/2003/07/20/der-tag-von-vinokourov-war-das-heute/Neotonic ClearSilverhttps://www.rfc1437.de/2003/07/20/neotonic-clearsilver/Umstrittenes öffentliches Gelöbnis in Berlinhttps://www.rfc1437.de/2003/07/20/umstrittenes-oeffentliches-geloebnis-in-berlin/Unusual Product Names #2https://www.rfc1437.de/2003/07/20/unusual-product-names-2/Amazon wegen Kaufempfehlungen verklagthttps://www.rfc1437.de/2003/07/19/amazon-wegen-kaufempfehlungen-verklagt/Bushs Aschenputtel-Testhttps://www.rfc1437.de/2003/07/19/bushs-aschenputtel-test/Diese Tour ist viel zu spannend für mich ...https://www.rfc1437.de/2003/07/19/diese-tour-ist-viel-zu-spannend-fuer-mich/Politech: John Gilmore: I was ejected from a plane for wearing "Suspected Terrorihttps://www.rfc1437.de/2003/07/19/pltch-jhn-glmr-ws-jctd-frm-pln-fr-wrng-sspctd-tr/SCO plant Linux-Lizenzen für Anwenderhttps://www.rfc1437.de/2003/07/19/sco-plant-linux-lizenzen-fuer-anwender/Zeitung: Mehr Kosten für Patientenhttps://www.rfc1437.de/2003/07/19/zeitung-mehr-kosten-fuer-patienten/BGH: Funktion der Hyperlinks steht über kommerziellen Interessenhttps://www.rfc1437.de/2003/07/18/bgh-funktion-der-hyperlnks-stht-br-kmmrzlln-ntrssn/Filesharing soll ein Verbrechen werdenhttps://www.rfc1437.de/2003/07/18/filesharing-soll-ein-verbrechen-werden/MTV.com - News - Metallica Sue Canadian Band over E, F Chordshttps://www.rfc1437.de/2003/07/18/mtvcom-news-metallica-sue-canadian-bnd-vr-f-chrds/Software-Verband nutzt Rechtsstudie zu Open Source fürs Lobbyinghttps://www.rfc1437.de/2003/07/18/software-verband-ntzt-rchtsstd-z-pn-src-frs-lbbyng/TinderWikihttps://www.rfc1437.de/2003/07/18/tinderwiki/To Ping Or Not To Ping?https://www.rfc1437.de/2003/07/18/to-ping-or-not-to-ping/Zeitfahren kann doch spannend sein ...https://www.rfc1437.de/2003/07/18/zeitfahren-kann-doch-spannend-sein/BGH prüft Rechtmäßigkeit des Deep Linkinghttps://www.rfc1437.de/2003/07/17/bgh-prueft-rechtmaessigkeit-des-deep-linking/Ehemaliger FreeBSD-Entwickler startet eigenes Betriebssystemhttps://www.rfc1437.de/2003/07/17/ehemaliger-freebsd-entwickler-strtt-gns-btrbssystm/RSShttps://www.rfc1437.de/2003/07/17/rss/Wer im Web gefunden werden will, muss im Web sein!https://www.rfc1437.de/2003/07/17/wer-im-web-gefunden-werden-will-muss-im-web-sein/Zuwanderer halten Einwohnerzahl stabilhttps://www.rfc1437.de/2003/07/17/zuwanderer-halten-einwohnerzahl-stabil/frankfurt.blogplan.dehttps://www.rfc1437.de/2003/07/16/frankfurtblogplande/Gut zu wissen!https://www.rfc1437.de/2003/07/16/gut-zu-wissen/It's hard to fight for a liarhttps://www.rfc1437.de/2003/07/16/its-hard-to-fight-for-a-liar/Jeffrey Zeldman Presents: The Daily Reporthttps://www.rfc1437.de/2003/07/16/jeffrey-zeldman-presents-the-daily-report/Kindermann: Keiner präsentiert mehr seine Visionenhttps://www.rfc1437.de/2003/07/16/kindermann-keiner-praesentiert-mehr-seine-visionen/Shooting Nekkid Women... for Funhttps://www.rfc1437.de/2003/07/16/shooting-nekkid-women-for-fun/Some continue to resist iTunes Muisc Storehttps://www.rfc1437.de/2003/07/16/some-continue-to-resist-itunes-muisc-store/Walross-Dame ''Antje'' liegt im Sterbenhttps://www.rfc1437.de/2003/07/16/walross-dame-antje-liegt-im-sterben/PDF hat doofe Ohrenhttps://www.rfc1437.de/2003/07/15/pdf-hat-doofe-ohren/"T" vor Gerichthttps://www.rfc1437.de/2003/07/15/t-vor-gericht/There is no spoon...https://www.rfc1437.de/2003/07/15/there-is-no-spoon/Allwetterzoo Münster - Nachwuchshttps://www.rfc1437.de/2003/07/14/allwetterzoo-muenster-nachwuchs/Oben und Unten liegen so eng beieinander ...https://www.rfc1437.de/2003/07/14/oben-und-unten-liegen-so-eng-beieinander/Tour de France: Beloki muss nach Sturz aufgebenhttps://www.rfc1437.de/2003/07/14/tour-de-france-beloki-muss-nach-sturz-aufgeben/Linux on a Saturday Nighthttps://www.rfc1437.de/2003/07/13/linux-on-a-saturday-night/More WebCore Fixeshttps://www.rfc1437.de/2003/07/13/more-webcore-fixes/Top-Fahrer der Tour heute für mich: Tyler Hamiltonhttps://www.rfc1437.de/2003/07/13/top-fahrer-der-tour-heute-fuer-mich-tyler-hamilton/Aldag ist einfach beeindruckendhttps://www.rfc1437.de/2003/07/12/aldag-ist-einfach-beeindruckend/Design-Komplettrechner von Sonyhttps://www.rfc1437.de/2003/07/12/design-komplettrechner-von-sony/Land in Sicht für Quietsche-Entchenhttps://www.rfc1437.de/2003/07/12/land-in-sicht-fuer-quietsche-entchen/Stoiber für längere Wochenarbeitszeithttps://www.rfc1437.de/2003/07/12/stoiber-fuer-laengere-wochenarbeitszeit/The Home Page of Squeak for SL Series Zaurus (ZauChu) and Qtopia/iPAQhttps://www.rfc1437.de/2003/07/12/the-home-page-of-squeak-fr-sl-srs-zrs-zch-nd-qtppq/Affen können Programmierenhttps://www.rfc1437.de/2003/07/11/affen-koennen-programmieren/Freenet und AOL mahnen Tauschbörsen-Nutzer abhttps://www.rfc1437.de/2003/07/11/freenet-und-aol-mahnen-tauschboersen-nutzer-ab/Hubble sieht ältesten Planetenhttps://www.rfc1437.de/2003/07/11/hubble-sieht-aumlltesten-planeten/Dritter Etappensieg für Petacchihttps://www.rfc1437.de/2003/07/10/dritter-etappensieg-fuer-petacchi/Monitor - Gentechnikbeitraghttps://www.rfc1437.de/2003/07/10/monitor-gentechnikbeitrag/Preis für Drehtabak bald auf Rekordniveau?https://www.rfc1437.de/2003/07/10/preis-fuer-drehtabak-bald-auf-rekordniveau/Teleinfo erklärt sich zu Spam-Vorwürfenhttps://www.rfc1437.de/2003/07/10/teleinfo-erklaert-sich-zu-spam-vorwuerfen/Hubble entdeckt sensationellen extrasolaren Planetenhttps://www.rfc1437.de/2003/07/09/hubble-entdeckt-sensationellen-extrasolaren-plantn/Yahoo! News - ONLINE DIARIES CAN CAUSE TEEN FRIENDSHIPS TO SUFFERhttps://www.rfc1437.de/2003/07/09/yahoo-news-online-diaries-cn-cs-tn-frndshps-t-sffr/Sex, Lügen und Videoüberwachunghttps://www.rfc1437.de/2003/07/07/sex-luegen-und-videoueberwachung/Sharp lässt den Zaurus in Deutschland sterbenhttps://www.rfc1437.de/2003/07/07/sharp-laesst-den-zaurus-in-deutschland-sterben/target="_blank"https://www.rfc1437.de/2003/07/07/target-blank/The Observer | Politics | Confess or die, US tells jailed Britonshttps://www.rfc1437.de/2003/07/07/the-observer-politics-confess-r-d-s-tlls-jld-brtns/Bei 55 km/h ein Massensturzhttps://www.rfc1437.de/2003/07/06/bei-55-kmh-ein-massensturz/Du weisst das eine Tour-Etappe gerade nicht so richtig spannend ist ...https://www.rfc1437.de/2003/07/06/du-weisst-das-en-tr-tpp-grd-ncht-s-rchtg-spnnnd-st/Merkel will im Steuerstreit Machtwort sprechenhttps://www.rfc1437.de/2003/07/06/merkel-will-im-steuerstreit-machtwort-sprechen/The internet is shithttps://www.rfc1437.de/2003/07/06/the-internet-is-shit-2/User-Feedback bei Blogshttps://www.rfc1437.de/2003/07/06/user-feedback-bei-blogs/AOL blogs!https://www.rfc1437.de/2003/07/05/aol-blogs/Die Curtahttps://www.rfc1437.de/2003/07/05/die-curta/Saturday 5 July Pg : also works with SBCL, OpenMCL and Lispworkshttps://www.rfc1437.de/2003/07/05/saturdy-5-jly-pg-ls-wrks-wth-sbcl-pnmcl-nd-lspwrks/Angeblicher Millionen-Kauf bei eBay entpuppt sich als übler Scherzhttps://www.rfc1437.de/2003/07/04/angeblicher-millnn-kf-b-by-ntpppt-sch-ls-blr-schrz/Berlusconi will sich nicht entschuldigt habenhttps://www.rfc1437.de/2003/07/04/berlusconi-will-sich-nicht-entschuldigt-haben/Peinliches Irak-Dossier im Word-Formathttps://www.rfc1437.de/2003/07/04/peinliches-irak-dossier-im-word-format/Sport im ungraden Sommerhttps://www.rfc1437.de/2003/07/04/sport-im-ungraden-sommer/taz 4.7.03 Der Traum des Domestikenhttps://www.rfc1437.de/2003/07/04/taz-4703-der-traum-des-domestiken/WebDesktophttps://www.rfc1437.de/2003/07/04/webdesktop/Deutsche Regierung erschwert auch weiterhin Kampf gegen AIDShttps://www.rfc1437.de/2003/07/03/deutsche-regierung-erschwert-ach-wtrhn-kmpf-ggn-ds/Kinderrechte: keine Frage des Mitgefühlshttps://www.rfc1437.de/2003/07/03/kinderrechte-keine-frage-des-mitgefuehls/Lispworks 4.3 OS X Screenshotshttps://www.rfc1437.de/2003/07/03/lispworks-43-os-x-screenshots/The Omni Group - Applications - OmniOutlinerhttps://www.rfc1437.de/2003/07/03/the-omni-group-applications-omnioutliner/UK's Straw Admits Iraq Dossier Was 'Embarrassing'https://www.rfc1437.de/2003/07/03/uks-straw-admits-iraq-dossier-was-embarrassing/Berlusconi als EU-Ratspräsidenthttps://www.rfc1437.de/2003/07/02/berlusconi-als-eu-ratspraesident/I Love Me, vol. Ihttps://www.rfc1437.de/2003/07/02/i-love-me-vol-i/Microsoft Word bytes Tony Blair in the butthttps://www.rfc1437.de/2003/07/02/microsoft-word-bytes-tony-blair-in-the-butt/Nazi-Witze im EU-Parlamenthttps://www.rfc1437.de/2003/07/02/nazi-witze-im-eu-parlament/Ringel neuer Vorstandschef der WestLBhttps://www.rfc1437.de/2003/07/02/ringel-neuer-vorstandschef-der-westlb/Secret Santa terrorismhttps://www.rfc1437.de/2003/07/02/secret-santa-terrorism/SpamBayes Outlook Addinhttps://www.rfc1437.de/2003/07/02/spambayes-outlook-addin/c't eröffnet Portal für IT-Sicherheithttps://www.rfc1437.de/2003/07/01/ct-eroeffnet-portal-fuer-it-sicherheit/Fwd: [infowar.de] Medien im Krieg: Wegen Kritik entlassenhttps://www.rfc1437.de/2003/07/01/fwd-infowarde-medien-im-krieg-wegen-kritik-entlssn/im Julihttps://www.rfc1437.de/2003/07/01/im-juli/Lispworks 4.3 for OS Xhttps://www.rfc1437.de/2003/07/01/lispworks-43-for-os-x/Microsoft kriegt nichtmal ein HR Tag richtig hin ...https://www.rfc1437.de/2003/07/01/microsoft-kriegt-nichtmal-ein-hr-tag-richtig-hin/MulleNewz - RSS Reader Docklinghttps://www.rfc1437.de/2003/07/01/mullenewz-rss-reader-dockling/T-Online startet Flatrate für DSL-1500https://www.rfc1437.de/2003/07/01/t-online-startet-flatrate-fuer-dsl-1500/"Frankenstein Food" - die Neuauflagehttps://www.rfc1437.de/2003/06/30/frankenstein-food-die-neuauflage/google mit thumbshttps://www.rfc1437.de/2003/06/30/google-mit-thumbs/Tom Waits Textsammlunghttps://www.rfc1437.de/2003/06/30/tom-waits-textsammlung/Zabel deutscher Strassenmeisterhttps://www.rfc1437.de/2003/06/30/zabel-deutscher-strassenmeister/Friends defend photographer as he is arraigned on sex chargeshttps://www.rfc1437.de/2003/06/29/friends-defend-photographer-s-h-s-rrgnd-n-sx-chrgs/Comeback der alten Bahncard?https://www.rfc1437.de/2003/06/28/comeback-der-alten-bahncard/Freeware verletzt Apples geistiges Eigentumhttps://www.rfc1437.de/2003/06/28/freeware-verletzt-apples-geistiges-eigentum/Bad MSNBOT. Bad.https://www.rfc1437.de/2003/06/27/bad-msnbot-bad/if SCO isn''t right, someone else will behttps://www.rfc1437.de/2003/06/27/if-sco-isnt-right-someone-else-will-be/Steinbrück geht in die Offensivehttps://www.rfc1437.de/2003/06/27/steinbrueck-geht-in-die-offensive/Bill Gates: IT schafft Sicherheithttps://www.rfc1437.de/2003/06/26/bill-gates-it-schafft-sicherheit/Stoiber sauer über Treffen Merkel-Schröderhttps://www.rfc1437.de/2003/06/26/stoiber-sauer-ueber-treffen-merkel-schroeder/Leica Digital Modul for the R8 & R9https://www.rfc1437.de/2003/06/25/leica-digital-modul-for-the-r8-r9/Standartintegralehttps://www.rfc1437.de/2003/06/25/standartintegrale/Verbraucherzentralen überraschen mit 0190-Servicenummernhttps://www.rfc1437.de/2003/06/25/verbraucherzentralen-ueberraschn-mt-0190-srvcnmmrn/Winokurow gewinnt Tour de Suissehttps://www.rfc1437.de/2003/06/25/winokurow-gewinnt-tour-de-suisse/Wolfowitz to be in Charge of Military Tribunalshttps://www.rfc1437.de/2003/06/25/wolfowitz-to-be-in-charge-of-military-tribunals/COW - Programming for Bovineshttps://www.rfc1437.de/2003/06/24/cow-programming-for-bovines/Genfood auf europäischen Tisch?https://www.rfc1437.de/2003/06/24/genfood-auf-europaeischen-tisch/Androhung von Zwangsgeldern wegen fehlender Website-Sperrungen in NRWhttps://www.rfc1437.de/2003/06/24/ndrhng-vn-zwngsgldrn-wgn-fhlndr-wbst-sprrngn-n-nrw/Neues Bundesamt für Bevölkerungsschutzhttps://www.rfc1437.de/2003/06/24/neues-bundesamt-fuer-bevoelkerungsschutz/Olympus E-1 Digital SLRhttps://www.rfc1437.de/2003/06/24/olympus-e-1-digital-slr/Syndicationhttps://www.rfc1437.de/2003/06/24/syndication/Charming Python: Using combinatorial functions in the itertools modulehttps://www.rfc1437.de/2003/06/23/charming-python-usng-cmbntrl-fnctns-n-th-trtls-mdl/Couchblog: Abgebenhttps://www.rfc1437.de/2003/06/23/couchblog-abgeben/Ein ungeheures Lächeln - "Dalai Lama - Fall eines Gottkönigs" von Colin Goldnerhttps://www.rfc1437.de/2003/06/23/ein-unghrs-lchln-dl-lm-fll-ns-gttkngs-vn-cln-gldnr/MacOSX Packages for Mozart 1.2.5https://www.rfc1437.de/2003/06/23/macosx-packages-for-mozart-125/Try Before You Sellhttps://www.rfc1437.de/2003/06/23/try-before-you-sell/Vim 6: A Great Linux Outlinerhttps://www.rfc1437.de/2003/06/23/vim-6-a-great-linux-outliner/Wer heute noch liest, hat selber Schuldhttps://www.rfc1437.de/2003/06/23/wer-heute-noch-liest-hat-selber-schuld/Belgien ändert erneut Kriegsverbrechergesetzhttps://www.rfc1437.de/2003/06/22/belgien-aendert-erneut-kriegsverbrechergesetz/The Hercules System/370, ESA/390, and z/Architecture Emulatorhttps://www.rfc1437.de/2003/06/22/the-hercules-system370-esa390-and-zarchitectr-mltr/ABCNEWS.com : Women Have Surgery to ''Restore'' Virginityhttps://www.rfc1437.de/2003/06/21/abcnewscom-women-have-surgery-to-restore-virginity/Ehemaliger Coast-Sportdirektor nimmt Rechtsanwalthttps://www.rfc1437.de/2003/06/21/ehemaliger-coast-sportdirektor-nimmt-rechtsanwalt/My Visit to SCOhttps://www.rfc1437.de/2003/06/21/my-visit-to-sco/OS X Oberfläche für Spicehttps://www.rfc1437.de/2003/06/21/os-x-oberflaeche-fuer-spice/Schleuser-Ermittlungen auch im Bundestaghttps://www.rfc1437.de/2003/06/21/schleuser-ermittlungen-auch-im-bundestag/Thunderbird für OS Xhttps://www.rfc1437.de/2003/06/21/thunderbird-fuer-os-x/EU-Bischöfe verlangen "Christliche Europaverfassung"https://www.rfc1437.de/2003/06/20/eu-bischoefe-verlangen-christliche-europaverfassng/Hundt will Insolvenzgeld kürzenhttps://www.rfc1437.de/2003/06/20/hundt-will-insolvenzgeld-kuerzen/Partei der Schwarzen Kassenhttps://www.rfc1437.de/2003/06/20/partei-der-schwarzen-kassen/Perle: Saddam war keine unmittelbare Gefahrhttps://www.rfc1437.de/2003/06/20/perle-saddam-war-keine-unmittelbare-gefahr/Swindle - CLOS und mehr für DrSchemehttps://www.rfc1437.de/2003/06/20/swindle-clos-und-mehr-fuer-drscheme/XchemeRPChttps://www.rfc1437.de/2003/06/20/xchemerpc/101 three sixty fivehttps://www.rfc1437.de/2003/06/19/101-three-sixty-five/Dieter Bohlen - Vorbild für Deutschland?https://www.rfc1437.de/2003/06/19/dieter-bohlen-vorbild-fuer-deutschland/DrSchemehttps://www.rfc1437.de/2003/06/19/drscheme/Looking to do web stuff with Python?https://www.rfc1437.de/2003/06/19/looking-to-do-web-stuff-with-python/Mikrofotografiehttps://www.rfc1437.de/2003/06/19/mikrofotografie/***Plonk***https://www.rfc1437.de/2003/06/19/plonk/Sad day... GIF patent dead at 20https://www.rfc1437.de/2003/06/19/sad-day-gif-patent-dead-at-20/Textsatzsysteme wie man sie nicht machen sollte?https://www.rfc1437.de/2003/06/19/textsatzsysteme-wie-man-sie-nicht-machen-sollte/Egon, Du hast die URL vergessen!https://www.rfc1437.de/2003/06/18/egon-du-hast-die-url-vergessen/Europäische Softwarepatente rücken näherhttps://www.rfc1437.de/2003/06/18/europaeische-softwarepatente-ruecken-naeher/Mark Pilgrim an einen Robot-Schreiberlinghttps://www.rfc1437.de/2003/06/18/mark-pilgrim-an-einen-robot-schreiberling/Orrin Hatch: clueless and malevolenthttps://www.rfc1437.de/2003/06/18/orrin-hatch-clueless-and-malevolent/SCO vs. IBM: Suns McNealy preist Vorzüge von Solarishttps://www.rfc1437.de/2003/06/18/sco-vs-ibm-suns-mcnealy-preist-vorzuege-von-solars/Clement: Deutsche sollten mehr arbeitenhttps://www.rfc1437.de/2003/06/17/clement-deutsche-sollten-mehr-arbeiten/Wenns richtig wild werden soll: Paketdienstehttps://www.rfc1437.de/2003/06/17/wenns-richtig-wild-werden-soll-paketdienste/Auf Wiedersehen und Danke für den Fisch ...https://www.rfc1437.de/2003/06/16/auf-wiedersehen-und-danke-fuer-den-fisch/Checkpointed Object Databasehttps://www.rfc1437.de/2003/06/16/checkpointed-object-database/Das Ende des WWWhttps://www.rfc1437.de/2003/06/16/das-ende-des-www/FDP verlangt Ende der Kohle-Subventionhttps://www.rfc1437.de/2003/06/16/fdp-verlangt-ende-der-kohle-subvention/Firebird unter OS Xhttps://www.rfc1437.de/2003/06/16/firebird-unter-os-x/Koks ist so doof, das müsste es eigentlich bei Aldi geben.https://www.rfc1437.de/2003/06/16/koks-ist-so-doof-das-muesste-es-eigentlch-b-ld-gbn/Nochmal zum Validatorhttps://www.rfc1437.de/2003/06/16/nochmal-zum-validator/SCO erweitert Klage gegen IBMhttps://www.rfc1437.de/2003/06/16/sco-erweitert-klage-gegen-ibm/Union will Zahnbehandlung privatisierenhttps://www.rfc1437.de/2003/06/16/union-will-zahnbehandlung-privatisieren/Domain-Schacherhttps://www.rfc1437.de/2003/06/15/domain-schacher/iCab hat auch doofe Ohrenhttps://www.rfc1437.de/2003/06/15/icab-hat-auch-doofe-ohren/Sandbox für Pythonhttps://www.rfc1437.de/2003/06/15/sandbox-fuer-python/Seehofer will gesetzliche Krankenkasse für allehttps://www.rfc1437.de/2003/06/15/seehofer-will-gesetzliche-krankenkasse-fuer-alle/W3-Validator sehr seltsamhttps://www.rfc1437.de/2003/06/15/w3-validator-sehr-seltsam/Microsoft gibt Internet Explorer für Mac aufhttps://www.rfc1437.de/2003/06/14/microsoft-gibt-internet-explorer-fuer-mac-auf/40.000 Bahn-Jobs auf dem Prüfstandhttps://www.rfc1437.de/2003/06/13/40000-bahn-jobs-auf-dem-pruefstand/Schily für mehr Kameras auf Bahnhöfenhttps://www.rfc1437.de/2003/06/13/schily-fuer-mehr-kameras-auf-bahnhoefen/Antiviren-Zukauf von Microsoft sorgt für Wirbelhttps://www.rfc1437.de/2003/06/12/antiviren-zukauf-von-microsoft-sorgt-fuer-wirbel/Die CSU mag keine Pinguinehttps://www.rfc1437.de/2003/06/12/die-csu-mag-keine-pinguine/Homeland Security jagt Politikerhttps://www.rfc1437.de/2003/06/12/homeland-security-jagt-politiker/IP addresses sold on the black markethttps://www.rfc1437.de/2003/06/12/ip-addresses-sold-on-the-black-market/Sun: Linux-Nutzer wollen in Wirklichkeit kein Linuxhttps://www.rfc1437.de/2003/06/12/sun-linux-nutzer-wollen-in-wirklichkeit-kein-linux/Washington setzt Immunität für US-Soldaten durchhttps://www.rfc1437.de/2003/06/12/washington-setzt-immunitaet-fuer-us-soldaten-durch/Blix: "Ich hatte meine Verleumder in Washington"https://www.rfc1437.de/2003/06/11/blix-ich-hatte-meine-verleumder-in-washington/Koch muss zahlenhttps://www.rfc1437.de/2003/06/11/koch-muss-zahlen/Untersuchungsausschuss wegen Möllemann?https://www.rfc1437.de/2003/06/11/untersuchungsausschuss-wegen-moellemann/Visible Human Serverhttps://www.rfc1437.de/2003/06/11/visible-human-server/Another Smalltalk?https://www.rfc1437.de/2003/06/10/another-smalltalk/Gabriel: Aus von Modern Talking "lange überfällig"https://www.rfc1437.de/2003/06/10/gabriel-aus-von-modern-talking-lange-ueberfaellig/NASA-Techniker gelingt Reparatur aus 800 Millionen...https://www.rfc1437.de/2003/06/10/nasa-techniker-gelingt-reparatur-aus-800-millionen/Das Maß ist voll - killt IE 6!https://www.rfc1437.de/2003/06/09/das-mass-ist-voll-killt-ie-6/Gizmodo 1983https://www.rfc1437.de/2003/06/09/gizmodo-1983/Noch so eine angebliche Vertretung des Bürgerwillens ...https://www.rfc1437.de/2003/06/09/noch-so-eine-angebliche-vertretung-des-buergrwllns/Waste: verschlüsseltes File Sharinghttps://www.rfc1437.de/2003/06/09/waste-verschluesseltes-file-sharing/PEAK / PyProtocolshttps://www.rfc1437.de/2003/06/08/peak-pyprotocols/Shift-Gehäuse-Deckelhttps://www.rfc1437.de/2003/06/08/shift-gehaeuse-deckel/Unwetterwarnung für NRWhttps://www.rfc1437.de/2003/06/08/unwetterwarnung-fuer-nrw/Python und curses - und eine Python-Implementation von readlinehttps://www.rfc1437.de/2003/06/07/python-und-curses-und-eine-python-mplmnttn-vn-rdln/Zutritt verboten!https://www.rfc1437.de/2003/06/07/zutritt-verboten/Blooglehttps://www.rfc1437.de/2003/06/06/bloogle/Contax N Digital SLR Discontinuedhttps://www.rfc1437.de/2003/06/06/contax-n-digital-slr-discontinued/iComic - absolut coolhttps://www.rfc1437.de/2003/06/06/icomic-absolut-cool/Möllemann, der Waffenschieberhttps://www.rfc1437.de/2003/06/06/moellemann-der-waffenschieber/Private Konkurrenz für die Bahnhttps://www.rfc1437.de/2003/06/06/private-konkurrenz-fuer-die-bahn/Clement will weniger Bürokratie in Berufenhttps://www.rfc1437.de/2003/06/05/clement-will-weniger-buerokratie-in-berufen/Ein virtuelles Kernobst als potenzieller Zankapfelhttps://www.rfc1437.de/2003/06/05/ein-virtuelles-kernobst-als-potenzieller-zankapfel/Jürgen W. Möllemann ist tothttps://www.rfc1437.de/2003/06/05/juergen-w-moellemann-ist-tot/Microsoft lässt sich Interactive Entertainment System patentierenhttps://www.rfc1437.de/2003/06/05/microsoft-laesst-sich-ntrctv-ntrtnmnt-systm-ptntrn/Pantani zu Bianchi?https://www.rfc1437.de/2003/06/05/pantani-zu-bianchi/Pendlerpauschale auf dem Prüfstandhttps://www.rfc1437.de/2003/06/05/pendlerpauschale-auf-dem-pruefstand/Steve Ballmer fühlt sich durch Linux bedrohthttps://www.rfc1437.de/2003/06/05/steve-ballmer-fuehlt-sich-durch-linux-bedroht/Web-Crawler sucht nach Steuersündernhttps://www.rfc1437.de/2003/06/05/web-crawler-sucht-nach-steuersuendern/Wieder Streit um Entwurf zur Veröffentlichung von Sicherheitslückenhttps://www.rfc1437.de/2003/06/05/wieder-stret-m-ntwrf-zr-vrffntlchng-vn-schrhtslckn/430 Millionen Euro für Eschede-Opfer geforderthttps://www.rfc1437.de/2003/06/04/430-millionen-euro-fuer-eschede-opfer-gefordert/Auch Sendmail schützt jetzt vor Spamhttps://www.rfc1437.de/2003/06/04/auch-sendmail-schuetzt-jetzt-vor-spam/Aus für Einwegverpackungen?https://www.rfc1437.de/2003/06/04/aus-fuer-einwegverpackungen/Deutsche Bürokratie bewegt sich nichthttps://www.rfc1437.de/2003/06/04/deutsche-buerokratie-bewegt-sich-nicht/Netzzensor Büssow tritt aus gegen Kritikerhttps://www.rfc1437.de/2003/06/04/netzzensor-buessow-tritt-aus-gegen-kritiker/Biste alt? Biste arm? Kannste sterben ...https://www.rfc1437.de/2003/06/03/biste-alt-biste-arm-kannste-sterben/Dynamically Scoped Variableshttps://www.rfc1437.de/2003/06/03/dynamically-scoped-variables/This is just cool - ST-80in VW 7https://www.rfc1437.de/2003/06/03/this-is-just-cool-st-80in-vw-7/Blei in den Regalenhttps://www.rfc1437.de/2003/06/02/blei-in-den-regalen/Die Open-Content-Lizenz wird europäischhttps://www.rfc1437.de/2003/06/02/die-open-content-lizenz-wird-europaeisch/Das Monty-Hall Problemhttps://www.rfc1437.de/2003/06/01/das-monty-hall-problem/Ein Maulkorb für SCOhttps://www.rfc1437.de/2003/06/01/ein-maulkorb-fuer-sco/Objektivverzeichnung korrigierenhttps://www.rfc1437.de/2003/06/01/objektivverzeichnung-korrigieren/Photokit - analoge Bildeffekte für Photoshophttps://www.rfc1437.de/2003/06/01/photokit-analoge-bildeffekte-fuer-photoshop/Siggy Pophttps://www.rfc1437.de/2003/06/01/siggy-pop/Übersicht über die Geschichte der Linhof Technikahttps://www.rfc1437.de/2003/06/01/uebersicht-ueber-die-geschichte-der-linhof-technik/US-Regulierungsbehörde unter Korruptionsverdachthttps://www.rfc1437.de/2003/06/01/us-regulierungsbehoerde-unter-korruptionsverdacht/20 years of Smalltalk-80https://www.rfc1437.de/2003/05/31/20-years-of-smalltalk-80/Polaroid 195 wird wieder neu aufgelegthttps://www.rfc1437.de/2003/05/31/polaroid-195-wird-wieder-neu-aufgelegt/Das Rungholt Projekthttps://www.rfc1437.de/2003/05/30/das-rungholt-projekt/Wolfowitz lässt Maske fallenhttps://www.rfc1437.de/2003/05/30/wolfowitz-laesst-maske-fallen/Mal wieder Gerüchte um Digiback für Leica R8 oder 9https://www.rfc1437.de/2003/05/29/mal-wieder-geruechte-um-digiback-fuer-leic-r8-dr-9/Neues iTunes unterbindet Musik-Sharing über das Internethttps://www.rfc1437.de/2003/05/28/neues-itunes-unterbindet-musik-sharing-br-ds-ntrnt/Novell reklamiert eigene Unix-Rechte im Streit um Linuxhttps://www.rfc1437.de/2003/05/28/novell-reklamiert-eigene-unix-rechte-im-strt-m-lnx/USA erneuern Vorwürfe gegen Iranhttps://www.rfc1437.de/2003/05/28/usa-erneuern-vorwuerfe-gegen-iran/Wer nichts wird, wird Werberhttps://www.rfc1437.de/2003/05/28/wer-nichts-wird-wird-werber/GMX landete auf Open-Relay-Blacklisthttps://www.rfc1437.de/2003/05/27/gmx-landete-auf-open-relay-blacklist/Microsoft fordert neue Ausschreibung in München [Update]https://www.rfc1437.de/2003/05/27/microsoft-fordert-neue-ausschreibung-in-munchn-pdt/Oh Gott! (3)https://www.rfc1437.de/2003/05/27/oh-gott-3/A land without consequenceshttps://www.rfc1437.de/2003/05/26/a-land-without-consequences/LinuxTag mahnt SCO abhttps://www.rfc1437.de/2003/05/26/linuxtag-mahnt-sco-ab/Milliarden-Forderung an die Bahnhttps://www.rfc1437.de/2003/05/26/milliarden-forderung-an-die-bahn/Münchener Rathaus-SPD entscheidet sich für Linuxhttps://www.rfc1437.de/2003/05/26/muenchener-rathaus-spd-entscheidet-sich-fuer-linux/Steinbrück: Fortsetzung der Koalition offenhttps://www.rfc1437.de/2003/05/26/steinbrueck-fortsetzung-der-koalition-offen/Scientists Find Animal Link for SARS Virushttps://www.rfc1437.de/2003/05/24/scientists-find-animal-link-for-sars-virus/Bush attackiert "Old Europe"https://www.rfc1437.de/2003/05/23/bush-attackiert-old-europe/Eigentor von SCOhttps://www.rfc1437.de/2003/05/23/eigentor-von-sco/SAP setzt auf MySQLhttps://www.rfc1437.de/2003/05/23/sap-setzt-auf-mysql/spam filter from heckhttps://www.rfc1437.de/2003/05/23/spam-filter-from-heck/Ullrich wird bei Tour startenhttps://www.rfc1437.de/2003/05/23/ullrich-wird-bei-tour-starten/Bruce Perens on SCO v. Linuxhttps://www.rfc1437.de/2003/05/22/bruce-perens-on-sco-v-linux/CIA muss eigene Irak-Berichte durchforstenhttps://www.rfc1437.de/2003/05/22/cia-muss-eigene-irak-berichte-durchforsten/Eiffel releases beta of EiffelStudio for OS Xhttps://www.rfc1437.de/2003/05/22/eiffel-releases-beta-of-eiffelstudio-for-os-x/Köln am Abgrundhttps://www.rfc1437.de/2003/05/22/koeln-am-abgrund/Schimpansen sind auch nur Menschenhttps://www.rfc1437.de/2003/05/22/schimpansen-sind-auch-nur-menschen/Tabubruch für die eigene Sicherheithttps://www.rfc1437.de/2003/05/22/tabubruch-fuer-die-eigene-sicherheit/Weltrekord: Eine Titanenhafte Blütehttps://www.rfc1437.de/2003/05/22/weltrekord-eine-titanenhafte-bluete/Ablösesumme für Ullrich?https://www.rfc1437.de/2003/05/21/abloesesumme-fuer-ullrich/Boyz need Toyzhttps://www.rfc1437.de/2003/05/21/boyz-need-toyz-2/Kamera-Handys werden auch von Spannern genutzthttps://www.rfc1437.de/2003/05/21/kamera-handys-werden-auch-von-spannern-genutzt/Lenin strahlthttps://www.rfc1437.de/2003/05/21/lenin-strahlt/Bahn-Manager fliegenhttps://www.rfc1437.de/2003/05/20/bahn-manager-fliegen/Neues Preissystem: Bahn feuert zwei Managerhttps://www.rfc1437.de/2003/05/20/neues-preissystem-bahn-feuert-zwei-manager/Ahnungslose und zynische Politikerhttps://www.rfc1437.de/2003/05/19/ahnungslose-und-zynische-politiker/Matrix Reloaded features nmaphttps://www.rfc1437.de/2003/05/18/matrix-reloaded-features-nmap/Eine Trauerweidehttps://www.rfc1437.de/2003/05/18/pic-eine-trauerweide/Promenade im Frühlinghttps://www.rfc1437.de/2003/05/18/pic-promenade-im-fruehling/Wer da wohl sitzt?https://www.rfc1437.de/2003/05/18/pic-wer-da-wohl-sitzt/dot.comischeshttps://www.rfc1437.de/2003/05/17/dotcomisches/Gericht verbietet Domains mit Städtenamenhttps://www.rfc1437.de/2003/05/17/gericht-verbietet-domains-mit-staedtenamen/Marvin Minsky: Künstliche Intelligenz ist gehirntothttps://www.rfc1437.de/2003/05/17/marvin-minsky-kuenstliche-intelligenz-ist-gehirntt/Script Kiddieshttps://www.rfc1437.de/2003/05/17/script-kiddies/Texas bill: enviro = terroristhttps://www.rfc1437.de/2003/05/17/texas-bill-enviro-terrorist/Bahn-Fernverkehr bricht offenbar weiter einhttps://www.rfc1437.de/2003/05/16/bahn-fernverkehr-bricht-offenbar-weiter-ein/Bianchi-Team erhält die Coast-Lizenzhttps://www.rfc1437.de/2003/05/16/bianchi-team-erhaelt-die-coast-lizenz/Die anonymen Anpackerhttps://www.rfc1437.de/2003/05/16/die-anonymen-anpacker/Dosenfleisch iihttps://www.rfc1437.de/2003/05/16/dosenfleisch-ii/Gericht präzisiert Haftung für Betreiber von Internet-Forenhttps://www.rfc1437.de/2003/05/16/gericht-praezisiert-haftung-fur-btrbr-vn-ntrnt-frn/Metablogginghttps://www.rfc1437.de/2003/05/16/metablogging/Microsofts Protokoll-Peepshowhttps://www.rfc1437.de/2003/05/16/microsofts-protokoll-peepshow/Routing-Tabellen unter Linux anfällig für Denial-of-Service-Attackenhttps://www.rfc1437.de/2003/05/16/routing-tabellen-ntr-lnx-nfllg-fr-dnl-f-srvc-ttckn/Polizei nimmt .NET-Fahndungssystem in Betriebhttps://www.rfc1437.de/2003/05/15/polizei-nimmt-net-fahndungssystem-in-betrieb/SCO declares total war on GNU/Linuxhttps://www.rfc1437.de/2003/05/15/sco-declares-total-war-on-gnulinux/T-Mobile stoppt Windows-Handy [Update]https://www.rfc1437.de/2003/05/15/t-mobile-stoppt-windows-handy-update/BMWi stoppt OpenSoure-Projektehttps://www.rfc1437.de/2003/05/14/bmwi-stoppt-opensoure-projekte/On Lisp Reprinthttps://www.rfc1437.de/2003/05/14/on-lisp-reprint/Python-Panik rund um Jülich?https://www.rfc1437.de/2003/05/14/python-panik-rund-um-juelich/Ullrich trennt sich von Coasthttps://www.rfc1437.de/2003/05/14/ullrich-trennt-sich-von-coast/Velvia 100 due in Augusthttps://www.rfc1437.de/2003/05/14/velvia-100-due-in-august/Inquiry Shows British Scientists Took Brains Without Families' Consenthttps://www.rfc1437.de/2003/05/13/inquiry-shws-brtsh-scntsts-tk-brns-wtht-fmls-cnsnt/Orchideen sind auch nur Spargelhttps://www.rfc1437.de/2003/05/13/orchideen-sind-auch-nur-spargel/Experte: Mehrwertsteuer muss raufhttps://www.rfc1437.de/2003/05/12/experte-mehrwertsteuer-muss-rauf/Dem Schockwellenreiter sein Kantel wird 50!https://www.rfc1437.de/2003/05/11/dem-schockwellenreiter-sein-kantel-wird-50/NRW-Nameserver umgeht Sperrungsverfügunghttps://www.rfc1437.de/2003/05/11/nrw-nameserver-umgeht-sperrungsverfuegung/Oberbürgermeisterin von Hanau abgewählthttps://www.rfc1437.de/2003/05/11/oberbuergermeisterin-von-hanau-abgewaehlt/Donald E. Knuth über signifikanten Whitespacehttps://www.rfc1437.de/2003/05/10/donald-e-knuth-ueber-signifikanten-whitespace/Great Barrier Riffhttps://www.rfc1437.de/2003/05/10/great-barrier-riff/Microsoft droht Billionenstrafehttps://www.rfc1437.de/2003/05/10/microsoft-droht-billionenstrafe/My leg is a security holehttps://www.rfc1437.de/2003/05/10/my-leg-is-a-security-hole/Ullrich zurück zu Telekom?https://www.rfc1437.de/2003/05/10/ullrich-zurueck-zu-telekom/Web-Browser Safari schlampt bei SSL-Zertifikatenhttps://www.rfc1437.de/2003/05/10/web-browser-safari-schlampt-bei-ssl-zertifikaten/Jan Ullrich vor dem Absprunghttps://www.rfc1437.de/2003/05/09/jan-ullrich-vor-dem-absprung/Juice reductionhttps://www.rfc1437.de/2003/05/09/juice-reduction/(re)StructuredTexthttps://www.rfc1437.de/2003/05/09/restructuredtext/Will Google die Weblogs aussperren?https://www.rfc1437.de/2003/05/09/will-google-die-weblogs-aussperren/Bush & Blair für Nobelpreis nominierthttps://www.rfc1437.de/2003/05/08/bush-blair-fuer-nobelpreis-nominiert/Gut 100 Millionen für Opfer des 11. Septemberhttps://www.rfc1437.de/2003/05/08/gut-100-millionen-fuer-opfer-des-11-september/Patentstreit um Spam-Schutzhttps://www.rfc1437.de/2003/05/08/patentstreit-um-spam-schutz/Schwachstelle in Microsofts Passporthttps://www.rfc1437.de/2003/05/08/schwachstelle-in-microsofts-passport/Spam in Zukunft "unzumutbare Belästigung"https://www.rfc1437.de/2003/05/08/spam-in-zukunft-unzumutbare-belaestigung/Team von Jan Ullrich erneut ohne Lizenzhttps://www.rfc1437.de/2003/05/08/team-von-jan-ullrich-erneut-ohne-lizenz/AOL Weblogs?https://www.rfc1437.de/2003/05/07/aol-weblogs/In den Fußstapfen von Micro$oft?https://www.rfc1437.de/2003/05/07/in-den-fuszligstapfen-von-microoft/Mehdorn, friß Schienenhttps://www.rfc1437.de/2003/05/07/mehdorn-friszlig-schienen/Rice wirft Berlin und Paris Geiselnahme vorhttps://www.rfc1437.de/2003/05/07/rice-wirft-berlin-und-paris-geiselnahme-vor/Fischer warnt Grüne vor Verlust der Regierungsmachthttps://www.rfc1437.de/2003/05/06/fischer-warnt-gruene-vor-verlust-der-regierngsmcht/Lafontaine auf SPD-Jubiläumsfeier unerwünschthttps://www.rfc1437.de/2003/05/06/lafontaine-auf-spd-jubilaeumsfeier-unerwuenscht/Michael Arndthttps://www.rfc1437.de/2003/05/06/michael-arndt/US-Staaten verbieten Fernseher und Telefonehttps://www.rfc1437.de/2003/05/06/us-staaten-verbieten-fernseher-und-telefone/Verwechslunghttps://www.rfc1437.de/2003/05/06/verwechslung/Hackers and paintershttps://www.rfc1437.de/2003/05/05/hackers-and-painters-2/Schleswig-Holstein kippt umstrittene Diätenerhöhunghttps://www.rfc1437.de/2003/05/05/schleswig-holstein-kippt-umstrittene-diaetenerhhng/Schröder: Zeiten des Überflusses sind vorbei ...https://www.rfc1437.de/2003/05/05/schroeder-zeiten-des-ueberflusses-sind-vorbei/Berlusconi unterstellt Richtern "Putschversuch"https://www.rfc1437.de/2003/05/04/berlusconi-unterstellt-richtern-putschversuch/Linux: Keine Chance für Buffer Overflowshttps://www.rfc1437.de/2003/05/04/linux-keine-chance-fuer-buffer-overflows/Sonderparteitag zur PDS-Führungskrisehttps://www.rfc1437.de/2003/05/04/sonderparteitag-zur-pds-fuehrungskrise/Sorge über ein Ende von Rot-Grünhttps://www.rfc1437.de/2003/05/04/sorge-ueber-ein-ende-von-rot-gruen/Union streitet um Renteneintrittsalterhttps://www.rfc1437.de/2003/05/04/union-streitet-um-renteneintrittsalter/Sendepausehttps://www.rfc1437.de/2003/05/01/sendepause/80x86 ASM for ASP.NEThttps://www.rfc1437.de/2003/04/30/80x86-asm-for-aspnet/Geheime Dienste.https://www.rfc1437.de/2003/04/30/geheime-dienste/Und welcher Feind der Christlichen Kirche bist du?https://www.rfc1437.de/2003/04/30/und-welcher-feind-der-christlichen-kirche-bist-du/Waldmäuse orientieren sich wie "Hänsel und Gretel"https://www.rfc1437.de/2003/04/30/waldmaeuse-orientieren-sich-wie-haensel-und-gretel/Merz: Sozialhilfe im Extremfall ganz streichenhttps://www.rfc1437.de/2003/04/29/merz-sozialhilfe-im-extremfall-ganz-streichen/SCO: Als nächstes sind Red Hat und SuSE dranhttps://www.rfc1437.de/2003/04/29/sco-als-naechstes-sind-red-hat-und-suse-dran/Bericht: Neue linke Terrorgruppe entstehthttps://www.rfc1437.de/2003/04/28/bericht-neue-linke-terrorgruppe-entsteht/Blair für alleinige Vormachtstellung der USAhttps://www.rfc1437.de/2003/04/28/blair-fuer-alleinige-vormachtstellung-der-usa/Der Patriot Act und seine Auswirkungen in den USAhttps://www.rfc1437.de/2003/04/28/der-patriot-act-und-seine-auswirkungen-in-den-usa/Schemix - A Scheme In The Linux Kernelhttps://www.rfc1437.de/2003/04/28/schemix-a-scheme-in-the-linux-kernel/Studie: Jeder Zweite akzeptiert kostenpflichtige Internetangebotehttps://www.rfc1437.de/2003/04/28/studie-jeder-zweite-akzeptrt-kstnpflchtg-ntrntngbt/More on the Mini-PChttps://www.rfc1437.de/2003/04/27/more-on-the-mini-pc/Nackte Tatsachenhttps://www.rfc1437.de/2003/04/27/nackte-tatsachen/Pharma-Großhändler und Ärzte unter Betrugsverdachthttps://www.rfc1437.de/2003/04/27/pharma-grosshaendler-und-aerzte-unter-betrgsvrdcht/Spammer ziehen Anti-Spam-Aktivisten vor den Kadihttps://www.rfc1437.de/2003/04/27/spammer-ziehen-anti-spam-aktivisten-vor-den-kadi/Terry Jones über Tony Blair.https://www.rfc1437.de/2003/04/27/terry-jones-ueber-tony-blair/Chicken McSpamhttps://www.rfc1437.de/2003/04/26/chicken-mcspam/Kohl betrieb als Kanzler Lobbyarbeithttps://www.rfc1437.de/2003/04/26/kohl-betrieb-als-kanzler-lobbyarbeit/py-xmlrpc 0.8.8.3https://www.rfc1437.de/2003/04/26/py-xmlrpc-0883/Pyro 3.2https://www.rfc1437.de/2003/04/26/pyro-32/Behrens warnt vor intellektuellen Nazishttps://www.rfc1437.de/2003/04/25/behrens-warnt-vor-intellektuellen-nazis/GSM/GPRS on an SD cardhttps://www.rfc1437.de/2003/04/25/gsmgprs-on-an-sd-card/Kos on Bushs Iraq Lieshttps://www.rfc1437.de/2003/04/25/kos-on-bushs-iraq-lies/Grosse Pointe Blank - guter Film, aber von Kameras keine Ahnunghttps://www.rfc1437.de/2003/04/24/grosse-pointe-blank-guter-film-abr-vn-kmrs-kn-hnng/Heise goes east, aber bitte schön ohne Mitarbeiterhttps://www.rfc1437.de/2003/04/24/heise-goes-east-aber-bitte-schoen-ohne-mitarbeiter/Luminous Landscape Reviews Fuji S2 Prohttps://www.rfc1437.de/2003/04/24/luminous-landscape-reviews-fuji-s2-pro/Neustart der US-Atomwaffen-Produktionhttps://www.rfc1437.de/2003/04/24/neustart-der-us-atomwaffen-produktion/The world as a bloghttps://www.rfc1437.de/2003/04/24/the-world-as-a-blog/Weißes Haus schweigt zu Schwulen-Attackenhttps://www.rfc1437.de/2003/04/24/weisses-haus-schweigt-zu-schwulen-attacken/Nur mal wieder ein bischen Eigenwerbunghttps://www.rfc1437.de/2003/04/23/nur-mal-wieder-ein-bischen-eigenwerbung/OpenBSD in Ungnadehttps://www.rfc1437.de/2003/04/23/openbsd-in-ungnade/Roland Koch: Gleicher Lohn bei mehr Arbeithttps://www.rfc1437.de/2003/04/23/roland-koch-gleicher-lohn-bei-mehr-arbeit/Weblog-Hostinghttps://www.rfc1437.de/2003/04/23/weblog-hosting/Grüne: Urabstimmung soll alten Zopf abschneidenhttps://www.rfc1437.de/2003/04/22/gruene-urabstimmung-soll-alten-zopf-abschneiden/Politik mit Opferzahlen?https://www.rfc1437.de/2003/04/22/politik-mit-opferzahlen/Spanien will massiv gegen Anti-Kriegs-Proteste vorgehenhttps://www.rfc1437.de/2003/04/22/spanien-will-massiv-gegen-anti-kriegs-protst-vrghn/Children Taken from Couple Over Breast-Feeding Photohttps://www.rfc1437.de/2003/04/21/children-taken-from-couple-over-breast-feeding-pht/Jan Ullrich gewinnt rund um Kölnhttps://www.rfc1437.de/2003/04/21/jan-ullrich-gewinnt-rund-um-koeln/Jazz-Sängerin Nina Simone ist tothttps://www.rfc1437.de/2003/04/21/jazz-saengerin-nina-simone-ist-tot/Der Gravenreuth-Reporthttps://www.rfc1437.de/2003/04/20/der-gravenreuth-report/Die Un-CD und die Positionierung der Wirtschafthttps://www.rfc1437.de/2003/04/20/die-un-cd-und-die-positionierung-der-wirtschaft/Jutta Dithfurts Serie über die Grünenhttps://www.rfc1437.de/2003/04/20/jutta-dithfurts-serie-uumlber-die-gruumlnen/No Sex!https://www.rfc1437.de/2003/04/20/no-sex/Fagan droht der Bahn mit Milliardenforderunghttps://www.rfc1437.de/2003/04/19/fagan-droht-der-bahn-mit-milliardenforderung/Forscher entdecken uralte DNShttps://www.rfc1437.de/2003/04/19/forscher-entdecken-uralte-dns/Mac OS X und Darwinportshttps://www.rfc1437.de/2003/04/19/mac-os-x-und-darwinports/Spam zurückschicken?https://www.rfc1437.de/2003/04/19/spam-zurueckschicken/Stoiber lobt Schröderhttps://www.rfc1437.de/2003/04/19/stoiber-lobt-schroeder/Aus der Traum: Keine US-Gelder für OpenBSDhttps://www.rfc1437.de/2003/04/18/aus-der-traum-keine-us-gelder-fuer-openbsd/Biblis A wegen Sicherheitsproblemen abgeschaltethttps://www.rfc1437.de/2003/04/18/biblis-a-wegen-sicherheitsproblemen-abgeschaltet/Der Rollberg ...https://www.rfc1437.de/2003/04/18/der-rollberg/Unbezahlte Werbung durch Verlinkung oder "Wie bringe ich einen kommerziellen Weblogserver erfol ...https://www.rfc1437.de/2003/04/18/nbzhlt-wrbng-drch-vrlnkng-dr-w-brng-ch-nn-kmmrzlln/Öl oder Kulturhttps://www.rfc1437.de/2003/04/18/oel-oder-kultur/Technisches vom Rollberghttps://www.rfc1437.de/2003/04/18/technisches-vom-rollberg/US-Experten sollen Massenvernichtungswaffen suchenhttps://www.rfc1437.de/2003/04/18/us-experten-sollen-massenvernichtungswaffen-suchen/Zahnarzt entwickelt Bohrer für Mars-Sondehttps://www.rfc1437.de/2003/04/18/zahnarzt-entwickelt-bohrer-fuumlr-mars-sonde/Heise gewinnt gegen Spammerhttps://www.rfc1437.de/2003/04/17/heise-gewinnt-gegen-spammer/Interessante Programmiersprache: Goohttps://www.rfc1437.de/2003/04/17/interessante-programmiersprache-goo/SPD-Linke warnt vor Scheitern der Regierunghttps://www.rfc1437.de/2003/04/17/spd-linke-warnt-vor-scheitern-der-regierung/Umzug muensterland.org auf eine neue Maschinehttps://www.rfc1437.de/2003/04/17/umzug-muensterlandorg-auf-eine-neue-maschine/Mann starb bei Waldbrand in Nottulnhttps://www.rfc1437.de/2003/04/16/mann-starb-bei-waldbrand-in-nottuln/CNN mogelt bei der Moore-Oscar-Rede?https://www.rfc1437.de/2003/04/15/cnn-mogelt-bei-der-moore-oscar-rede/Ist Freenet das AOL der Weblogs?https://www.rfc1437.de/2003/04/15/ist-freenet-das-aol-der-weblogs/Niedersachsen will Justiz privatisierenhttps://www.rfc1437.de/2003/04/15/niedersachsen-will-justiz-privatisieren/Damit die Affen erkannt werden?https://www.rfc1437.de/2003/04/14/damit-die-affen-erkannt-werden/Explosionsartiger Anstieg von Birkenpollenhttps://www.rfc1437.de/2003/04/14/explosionsartiger-anstieg-von-birkenpollen/Reformpaket: Schröder droht mit Rücktritthttps://www.rfc1437.de/2003/04/14/reformpaket-schroeder-droht-mit-ruecktritt/Safari Public Beta 2 ist dahttps://www.rfc1437.de/2003/04/14/safari-public-beta-2-ist-da/Thierse: Lafontaine ist nicht mehrheitsfähighttps://www.rfc1437.de/2003/04/14/thierse-lafontaine-ist-nicht-mehrheitsfaehig/BDI will Arbeitnehmer-Vertreter entmachtenhttps://www.rfc1437.de/2003/04/13/bdi-will-arbeitnehmer-vertreter-entmachten/''No Question'' Some Senior Iraqis Fled to Syria, Rumsfeld Sayshttps://www.rfc1437.de/2003/04/13/no-question-some-senior-iraqs-fld-t-syr-rmsfld-sys/Altkanzler Kohl war Berater bei Kirchhttps://www.rfc1437.de/2003/04/12/altkanzler-kohl-war-berater-bei-kirch/Bilder mit dem 2.8/180 an der RTS IIIhttps://www.rfc1437.de/2003/04/12/bilder-mit-dem-28180-an-der-rts-iii/Cooles Tier der Woche: Hasenmaulfledermaushttps://www.rfc1437.de/2003/04/12/cooles-tier-der-woche-hasenmaulfledermaus/Das Genfer Abkommen über den Schutz von Zivilpersonen in Kriegszeitenhttps://www.rfc1437.de/2003/04/12/das-genfer-bkmmn-br-dn-schtz-vn-zvlprsnn-n-krgsztn/FDP verlangt von Journalisten Eintrittsgeld bei Parteitaghttps://www.rfc1437.de/2003/04/12/fdp-verlangt-von-journalisten-eintrittsgld-b-prttg/Frauenhandel und Tempelprostitution in Südasienhttps://www.rfc1437.de/2003/04/12/frauenhandel-und-tempelprostitution-in-suedasien/Mehr, mehr!https://www.rfc1437.de/2003/04/12/mehr-mehr/Beitrag ohne Titelhttps://www.rfc1437.de/2003/04/12/p665/Pik-As Husseinhttps://www.rfc1437.de/2003/04/12/pik-as-hussein/Schokolade kann Schmerzen lindernhttps://www.rfc1437.de/2003/04/12/schokolade-kann-schmerzen-lindern/TopicExchange Channel für deutsche Blogshttps://www.rfc1437.de/2003/04/12/topicexchange-channel-fuer-deutsche-blogs/Was hat Trackback mit dem historischen Web zu tun?https://www.rfc1437.de/2003/04/12/was-hat-trackback-mit-dem-historischen-web-zu-tun/Currywurst kann Mäuse süchtig machenhttps://www.rfc1437.de/2003/04/11/currywurst-kann-maeuse-suechtig-machen/Home is where CVSROOT is...https://www.rfc1437.de/2003/04/11/home-is-where-cvsroot-is/The Save Farscape Library Projecthttps://www.rfc1437.de/2003/04/11/the-save-farscape-library-project/Büro-Software zum Nulltarifhttps://www.rfc1437.de/2003/04/10/buero-software-zum-nulltarif/Christliche Fundamentalisten auf dem Vormarschhttps://www.rfc1437.de/2003/04/10/christliche-fundamentalisten-auf-dem-vormarsch/Jan Ullrich gut in Formhttps://www.rfc1437.de/2003/04/10/jan-ullrich-gut-in-form/Neue Risikobewertung erforderlichhttps://www.rfc1437.de/2003/04/10/neue-risikobewertung-erforderlich/Paul Graham spekuliert über Programmiersprachen in 100 Jahrenhttps://www.rfc1437.de/2003/04/10/paul-graham-spekuliert-br-prgrmmrsprchn-n-100-jhrn/Frühling - das ich nicht lachehttps://www.rfc1437.de/2003/04/10/pic-fruehling-das-ich-nicht-lache/Ok, das hat mich aber wieder versöhnt ...https://www.rfc1437.de/2003/04/10/pic-ok-das-hat-mich-aber-wieder-versoehnt/Seehofer wirft Unionsspitze Missmanagement vorhttps://www.rfc1437.de/2003/04/09/seehofer-wirft-unionsspitze-missmanagement-vor/Weltgrößte Digitalkamera liefert erste Bilderhttps://www.rfc1437.de/2003/04/09/weltgroesste-digitalkamera-liefert-erste-bilder/Weltweit dümmste Sicherheitsmaßnahmen "geehrt"https://www.rfc1437.de/2003/04/09/weltweit-duemmste-sicherheitsmassnahmen-geehrt/ARD-Team beweist Einsatz von uranhaltiger Munitionhttps://www.rfc1437.de/2003/04/08/ard-team-beweist-einsatz-von-uranhaltiger-munition/Contax Tvs Review at Steve's Digicamshttps://www.rfc1437.de/2003/04/08/contax-tvs-review-at-steves-digicams/Island will wieder Wale jagenhttps://www.rfc1437.de/2003/04/08/island-will-wieder-wale-jagen/John C. Dvorak is a blithering idiothttps://www.rfc1437.de/2003/04/08/john-c-dvorak-is-a-blithering-idiot/Leerer Palasthttps://www.rfc1437.de/2003/04/08/leerer-palast/Medien-Hotel getroffen, mehrere Journalisten verletzthttps://www.rfc1437.de/2003/04/08/medien-hotel-getroffen-mehrere-journalisten-vrltzt/Microsofts Leitfaden gegen Linuxhttps://www.rfc1437.de/2003/04/08/microsofts-leitfaden-gegen-linux/Minolta Announce Dimage Scan Elite 5400https://www.rfc1437.de/2003/04/08/minolta-announce-dimage-scan-elite-5400/Sensationsfund: Steinzeitdolch am Bodensee ausgegrabenhttps://www.rfc1437.de/2003/04/08/sensationsfund-steinzeitdolch-am-bodensee-ausggrbn/US-Verteidigungsministerium unterstützt OpenBSDhttps://www.rfc1437.de/2003/04/08/us-verteidigungsministerium-unterstuetzt-openbsd/BBC: US-Bomben auf eigene Truppenhttps://www.rfc1437.de/2003/04/06/bbc-us-bomben-auf-eigene-truppen/Merkel: Einen Monat kein Geld für Arbeitslosehttps://www.rfc1437.de/2003/04/06/merkel-einen-monat-kein-geld-fuer-arbeitslose/OpenXP: From Shareware to Free Softwarehttps://www.rfc1437.de/2003/04/06/openxp-from-shareware-to-free-software/Schlägt dem Gorilla bald die letzte Stunde?https://www.rfc1437.de/2003/04/06/schlaegt-dem-gorilla-bald-die-letzte-stunde/72 Prozent für Rüttgershttps://www.rfc1437.de/2003/04/05/72-prozent-fuer-ruettgers/Georg W. Bushs Morgenlektürehttps://www.rfc1437.de/2003/04/05/georg-w-bushs-morgenlektuere/George Lakoff: Metaphor and War, Againhttps://www.rfc1437.de/2003/04/05/george-lakoff-metaphor-and-war-again/Politikersprache in Kriegszeitenhttps://www.rfc1437.de/2003/04/05/politikersprache-in-kriegszeiten/Anti-war slogan coined, repurposed and Googlewashed... in 42 dayshttps://www.rfc1437.de/2003/04/04/anti-war-slogan-coined-reprpsd-nd-gglwshd-n-42-dys/Riesiger Kalmar vor der Antarktis gefangenhttps://www.rfc1437.de/2003/04/04/riesiger-kalmar-vor-der-antarktis-gefangen/Ähhhh....https://www.rfc1437.de/2003/04/03/aehhhh/Elefanten können ganz schön rennenhttps://www.rfc1437.de/2003/04/03/elefanten-koennen-ganz-schoen-rennen/Microsoft patent on "probabilistic classiffiers"https://www.rfc1437.de/2003/04/03/microsoft-patent-on-probabilistic-classiffiers/Olympus Stylus 400/300 Digital Reviewshttps://www.rfc1437.de/2003/04/03/olympus-stylus-400300-digital-reviews/Peter Arnett and treason.https://www.rfc1437.de/2003/04/03/peter-arnett-and-treason/Photoshop im Krieghttps://www.rfc1437.de/2003/04/03/photoshop-im-krieg/Belgien entschärft Völkermord-Gesetzhttps://www.rfc1437.de/2003/04/02/belgien-entschaerft-voelkermord-gesetz/Betriebe sollen leichter ausbilden könnenhttps://www.rfc1437.de/2003/04/02/betriebe-sollen-leichter-ausbilden-koennen/Kieler Landtag erhöht Diäten um fast 50 Prozenthttps://www.rfc1437.de/2003/04/02/kieler-landtag-erhoeht-diaeten-um-fast-50-prozent/Möllemann: Bush gehört vor ein Tribunalhttps://www.rfc1437.de/2003/04/02/moellemann-bush-gehoert-vor-ein-tribunal/Rot-Grün einigt sich auf neuen Terroristenparagrafenhttps://www.rfc1437.de/2003/04/02/rot-gruen-einigt-sich-auf-neuen-terroristenpargrfn/Sony ordered to pay $25m in patent claimhttps://www.rfc1437.de/2003/04/02/sony-ordered-to-pay-25m-in-patent-claim/Hat Merkel was mit "merken" zu tun?https://www.rfc1437.de/2003/04/01/hat-merkel-was-mit-merken-zu-tun/Neue QuickTime-Versionhttps://www.rfc1437.de/2003/04/01/neue-quicktime-version/NewCode, a secure PLhttps://www.rfc1437.de/2003/04/01/newcode-a-secure-pl/Polaroid 600 SE komplettierthttps://www.rfc1437.de/2003/04/01/polaroid-600-se-komplettiert/Serienproduktion für IBMs "Universal Business Adapter"https://www.rfc1437.de/2003/04/01/serienproduktion-fuer-ibms-universal-business-dptr/US-Sonderberater schmiedet Nachkriegsplänehttps://www.rfc1437.de/2003/04/01/us-sonderberater-schmiedet-nachkriegsplaene/USA rügen Behandlung religiöser Minderheiten in Deutschlandhttps://www.rfc1437.de/2003/04/01/usa-ruegen-behandlung-religiosr-mndrhtn-n-dtschlnd/Whitespacehttps://www.rfc1437.de/2003/04/01/whitespace/Yahoo! Store Switches Back to Lisphttps://www.rfc1437.de/2003/04/01/yahoo-store-switches-back-to-lisp/Die US-Armee und die Pressehttps://www.rfc1437.de/2003/03/31/die-us-armee-und-die-presse/Maher (Mike) Hawashhttps://www.rfc1437.de/2003/03/31/maher-mike-hawash/Peter Arnett fällt in Ungnadehttps://www.rfc1437.de/2003/03/31/peter-arnett-faellt-in-ungnade/Was man nicht mit Debian-Linux machen sollte ...https://www.rfc1437.de/2003/03/31/was-man-nicht-mit-debian-linux-machen-sollte/Kritik an Rumsfeld aus eigenen Reihenhttps://www.rfc1437.de/2003/03/30/kritik-an-rumsfeld-aus-eigenen-reihen/Explosion, Said to Be From Missile, Empty Mall in Kuwaithttps://www.rfc1437.de/2003/03/29/explosion-said-to-be-from-missile-empty-mall-n-kwt/http://www.tacitus[...]chives/000572.htmlhttps://www.rfc1437.de/2003/03/29/httpwwwtacitusorgarchives000572html/Möllemann erneut vor Gerichthttps://www.rfc1437.de/2003/03/29/moellemann-erneut-vor-gericht/Robb on the Bush Doctrinehttps://www.rfc1437.de/2003/03/29/robb-on-the-bush-doctrine/USA werfen Syrien Unterstützung des Irak vorhttps://www.rfc1437.de/2003/03/29/usa-werfen-syrien-unterstuetzung-des-irak-vor/Wegen Irak-Krieg: Arzt behandelt keine Amerikanerhttps://www.rfc1437.de/2003/03/29/wegen-irak-krieg-arzt-behandelt-keine-amerikaner/Alles ist relativhttps://www.rfc1437.de/2003/03/28/alles-ist-relativ/Java, oder wie es dazu kamhttps://www.rfc1437.de/2003/03/28/java-oder-wie-es-dazu-kam/Krankenkasse schwärzt Ärzte bei Firmen anhttps://www.rfc1437.de/2003/03/28/krankenkasse-schwaerzt-aerzte-bei-firmen-an/Merkel will Kinderlosen die Rente kürzenhttps://www.rfc1437.de/2003/03/28/merkel-will-kinderlosen-die-rente-kuerzen/Meteorit schlug in Haus einhttps://www.rfc1437.de/2003/03/28/meteorit-schlug-in-haus-ein/Patriotische Idioten unterbrechen Museum Security Mailinglisthttps://www.rfc1437.de/2003/03/28/patriotische-idioten-unterbrechn-msm-scrty-mlnglst/Rau: Nicht auf US-Linie eingehenhttps://www.rfc1437.de/2003/03/28/rau-nicht-auf-us-linie-eingehen/Schlangenfraßhttps://www.rfc1437.de/2003/03/28/schlangenfraszlig/Stop(ped) making sensehttps://www.rfc1437.de/2003/03/28/stopped-making-sense/US-Parlament fordert Gebetstag für die Nationhttps://www.rfc1437.de/2003/03/28/us-parlament-fordert-gebetstag-fuer-die-nation/EU: Schweröl nicht mehr in Einhüllentankernhttps://www.rfc1437.de/2003/03/27/eu-schweroel-nicht-mehr-in-einhuellentankern/France boycott to extend to cellphone standards?https://www.rfc1437.de/2003/03/27/france-boycott-to-extend-to-cellphone-standards/Kein Patch für RPC-Sicherheitsloch bei Windows NThttps://www.rfc1437.de/2003/03/27/kein-patch-fuer-rpc-sicherheitsloch-bei-windows-nt/Lispworks Beta for OS Xhttps://www.rfc1437.de/2003/03/27/lispworks-beta-for-os-x/Mal wieder was in eigener Sache: Trackbackhttps://www.rfc1437.de/2003/03/27/mal-wieder-was-in-eigener-sache-trackback/Panorama ruleshttps://www.rfc1437.de/2003/03/27/panorama-rules-2/To cool for secure codehttps://www.rfc1437.de/2003/03/27/to-cool-for-secure-code/Wirbel um Website von Al Jazeerahttps://www.rfc1437.de/2003/03/27/wirbel-um-website-von-al-jazeera/Esser kann auf Schmerzensgeld hoffenhttps://www.rfc1437.de/2003/03/26/esser-kann-auf-schmerzensgeld-hoffen/Klauen Klauen Klauenhttps://www.rfc1437.de/2003/03/26/klauen-klauen-klauen/McDonald's-Rubbellos ist sittenwidrighttps://www.rfc1437.de/2003/03/26/mcdonalds-rubbellos-ist-sittenwidrig/Perl, pythonhttps://www.rfc1437.de/2003/03/26/perl-python/Schröder will Bundeswehr stärkenhttps://www.rfc1437.de/2003/03/26/schroeder-will-bundeswehr-staerken/Seilschaftenhttps://www.rfc1437.de/2003/03/26/seilschaften/soksoksoksokhttps://www.rfc1437.de/2003/03/26/soksoksoksok/Britische Sender verbannen düstere Songshttps://www.rfc1437.de/2003/03/25/britische-sender-verbannen-duestere-songs/Das letzte Lied der Sirenenhttps://www.rfc1437.de/2003/03/25/das-letzte-lied-der-sirenen/Kritik an Polizeieinsatz gegen Schülerdemohttps://www.rfc1437.de/2003/03/25/kritik-an-polizeieinsatz-gegen-schuelerdemo/Neue Käferfamiliehttps://www.rfc1437.de/2003/03/25/neue-kaeferfamilie/Artifactinghttps://www.rfc1437.de/2003/03/24/artifacting/CDU vermeidet eindeutige Position zu Irak-Krieghttps://www.rfc1437.de/2003/03/24/cdu-vermeidet-eindeutige-position-zu-irak-krieg/"Dank sei Gott für den Tod der UN"https://www.rfc1437.de/2003/03/24/dank-sei-gott-fuer-den-tod-der-un/Finally! FULL review of Kodak DCS Pro 14nhttps://www.rfc1437.de/2003/03/24/finally-full-review-of-kodak-dcs-pro-14n/It''s Krieg, Babyhttps://www.rfc1437.de/2003/03/24/its-krieg-baby/Monday 24 March XML-RPC : Add a pointer to XML-RPC for OpenMCLhttps://www.rfc1437.de/2003/03/24/monday-24-mrch-xml-rpc-dd-pntr-t-xml-rpc-fr-pnmcl/Moore blasts Bushhttps://www.rfc1437.de/2003/03/24/moore-blasts-bush/Britische Reporter-Legende vermutlich von US-Marines erschossenhttps://www.rfc1437.de/2003/03/23/britische-reporter-legnd-vrmtlch-vn-s-mrns-rschssn/Die Vertreibung der Tiere aus dem Himmelreichhttps://www.rfc1437.de/2003/03/23/die-vertreibung-der-tiere-aus-dem-himmelreich/Intelligente Bomben?https://www.rfc1437.de/2003/03/23/intelligente-bomben/Kommentar: Der erste gefährliche Linux-Virus kommthttps://www.rfc1437.de/2003/03/23/kommentar-der-erste-gefaehrliche-linux-virus-kommt/Die Tuckesburghttps://www.rfc1437.de/2003/03/23/pic-die-tuckesburg/The Future Of XFree86https://www.rfc1437.de/2003/03/23/the-future-of-xfree86/Zweierlei Masshttps://www.rfc1437.de/2003/03/23/zweierlei-mass/Bruhaha!https://www.rfc1437.de/2003/03/22/bruhaha/CSU-Vorstand einig über Sozialrefomenhttps://www.rfc1437.de/2003/03/22/csu-vorstand-einig-ueber-sozialrefomen/Leben ohne Micro$oft ///https://www.rfc1437.de/2003/03/22/leben-ohne-microoft/Luminous Landscape hat einen kurzen Vergleichstest Canon 1Ds gegen Kodak DCS 14nhttps://www.rfc1437.de/2003/03/22/lmns-lndscp-ht-nn-krzn-vrglchstst-cnn-1ds-ggn-kdk/Siebenmeilenstiefel mit Verbrennungsmotorhttps://www.rfc1437.de/2003/03/22/siebenmeilenstiefel-mit-verbrennungsmotor/Un-CDs, nein danke!https://www.rfc1437.de/2003/03/22/un-cds-nein-danke/Weblog-Artikelhttps://www.rfc1437.de/2003/03/22/weblog-artikel/Comparing Bush to Hitlerhttps://www.rfc1437.de/2003/03/21/comparing-bush-to-hitler/Kulturschätze im Irak bedrohthttps://www.rfc1437.de/2003/03/21/kulturschaetze-im-irak-bedroht/Mitschweigen für den Friedenhttps://www.rfc1437.de/2003/03/21/mitschweigen-fuer-den-frieden/Brief von Moore an Bushhttps://www.rfc1437.de/2003/03/20/brief-von-moore-an-bush/Byrd: I Weep for My Countryhttps://www.rfc1437.de/2003/03/20/byrd-i-weep-for-my-country/Herta for Präsidenthttps://www.rfc1437.de/2003/03/20/herta-for-praesident/Schülerdemos - mit Nachsitzen?https://www.rfc1437.de/2003/03/20/schuelerdemos-mit-nachsitzen/Streit um Überflugrechte für US-Streitkräftehttps://www.rfc1437.de/2003/03/20/streit-um-ueberflugrechte-fuer-us-streitkraefte/Und gleich noch ein Gedicht.https://www.rfc1437.de/2003/03/20/und-gleich-noch-ein-gedicht/Und schon wieder ...https://www.rfc1437.de/2003/03/20/und-schon-wieder/Behaarte Alpenrose mit Froschgenhttps://www.rfc1437.de/2003/03/19/behaarte-alpenrose-mit-froschgen/Juristische Schlappe für 0190-Inkasso der Telekomhttps://www.rfc1437.de/2003/03/19/juristische-schlappe-fuer-0190-inkasso-der-telekom/Lauschangriff auf EU-Büroshttps://www.rfc1437.de/2003/03/19/lauschangriff-auf-eu-bueros/Python Desktop Server 0.4.17https://www.rfc1437.de/2003/03/19/python-desktop-server-0417/Seehofer droht im Unionsstreit mit Rücktritthttps://www.rfc1437.de/2003/03/19/seehofer-droht-im-unionsstreit-mit-ruecktritt/Clement plant drakonische Strafen für Arbeitslosehttps://www.rfc1437.de/2003/03/18/clement-plant-drakonische-strafen-fuer-arbeitslose/Landgericht: Spam nicht unbedingt rechtswidrighttps://www.rfc1437.de/2003/03/18/landgericht-spam-nicht-unbedingt-rechtswidrig/Mac User Against Warhttps://www.rfc1437.de/2003/03/18/mac-user-against-war/NPD-Verbot gescheiterthttps://www.rfc1437.de/2003/03/18/npd-verbot-gescheitert/Rücktrittsrede von Cookhttps://www.rfc1437.de/2003/03/18/ruecktrittsrede-von-cook/Screamerhttps://www.rfc1437.de/2003/03/18/screamer/Trusted Debian 0.9https://www.rfc1437.de/2003/03/18/trusted-debian-09/Web-Demonstration gegen den Krieghttps://www.rfc1437.de/2003/03/18/web-demonstration-gegen-den-krieg/May the best team losehttps://www.rfc1437.de/2003/03/17/may-the-best-team-lose/Meyer rüffelt Stoiberhttps://www.rfc1437.de/2003/03/17/meyer-rueffelt-stoiber/Möllemann gibt Parteibuch zurückhttps://www.rfc1437.de/2003/03/17/moellemann-gibt-parteibuch-zurueck/"Virtuelle" Sternwarte entdeckt Braunen Zwerghttps://www.rfc1437.de/2003/03/16/virtuelle-sternwarte-entdeckt-braunen-zwerg/Falschmeldunghttps://www.rfc1437.de/2003/03/15/falschmeldung/Krieg dem Krieghttps://www.rfc1437.de/2003/03/15/krieg-dem-krieg/Beitrag ohne Titelhttps://www.rfc1437.de/2003/03/15/p511/Schröders Rede - ein gut getarnter Offenbarungseidhttps://www.rfc1437.de/2003/03/15/schroeders-rede-ein-gut-getarnter-offenbarungseid/Tatsuya Satohttps://www.rfc1437.de/2003/03/15/tatsuya-sato/Wenn kommerzielle Spambekämpfer spammen um Spamschutz zu verspammenkaufen.https://www.rfc1437.de/2003/03/15/wnn-kmmrzll-spmbkmpfr-spmmn-m-spmschtz-z-vrsspmmns/5. Etappe geht an Team Telekomhttps://www.rfc1437.de/2003/03/14/5-etappe-geht-an-team-telekom/Bilder vom Frühlinghttps://www.rfc1437.de/2003/03/14/bilder-vom-fruehling/miniSDhttps://www.rfc1437.de/2003/03/14/minisd/"Morgenandacht" auf der CeBIT: "Go a-head, go a-head, Te-le-kom"https://www.rfc1437.de/2003/03/14/morgenandacht-auf-der-cebit-go-a-head-g-hd-t-l-km/Überbleibsel aus dem Herbsthttps://www.rfc1437.de/2003/03/14/pic-ueberbleibsel-aus-dem-herbst/Und ein letzteshttps://www.rfc1437.de/2003/03/14/pic-und-ein-letztes/Und noch ein paarhttps://www.rfc1437.de/2003/03/14/pic-und-noch-ein-paar/Und noch mehr ...https://www.rfc1437.de/2003/03/14/pic-und-noch-mehr/Weidenkätzchenhttps://www.rfc1437.de/2003/03/14/pic-weidenkaetzchen/Wir in Hessenhttps://www.rfc1437.de/2003/03/14/wir-in-hessen/America the gulliblehttps://www.rfc1437.de/2003/03/13/america-the-gullible/Apple X11 anpassen 1https://www.rfc1437.de/2003/03/13/apple-x11-anpassen-1/Möllemann will in der FDP bleibenhttps://www.rfc1437.de/2003/03/13/moellemann-will-in-der-fdp-bleiben/Monitorbericht über amerikanische Diplomatiehttps://www.rfc1437.de/2003/03/13/monitorbericht-ueber-amerikanische-emdiplomatieem/Der Domhttps://www.rfc1437.de/2003/03/13/pic-der-dom/Erste Frühlingszeichenhttps://www.rfc1437.de/2003/03/13/pic-erste-fruehlingszeichen/Josefskirche, Kirchturmhttps://www.rfc1437.de/2003/03/13/pic-josefskirche-kirchturm/Noch mehr Kirchehttps://www.rfc1437.de/2003/03/13/pic-noch-mehr-kirche/Clutterhttps://www.rfc1437.de/2003/03/12/clutter/Gedenkfahrt für gestorbenen Radprofi Kiwilewhttps://www.rfc1437.de/2003/03/12/gedenkfahrt-fuer-gestorbenen-radprofi-kiwilew/Java 1.4.1https://www.rfc1437.de/2003/03/12/java-141/Königin Beatrix droht Strafanzeigehttps://www.rfc1437.de/2003/03/12/koenigin-beatrix-droht-strafanzeige/Pommeshttps://www.rfc1437.de/2003/03/12/pommes/Ausschnitt aus einem Kommentar von Bush Sr. an Bush Jr.https://www.rfc1437.de/2003/03/11/ausschnitt-aus-einem-kommentar-von-bsh-sr-n-bsh-jr/Friedensappelle zu Irak verbotenhttps://www.rfc1437.de/2003/03/11/friedensappelle-zu-irak-verboten/Kein Krieg in unserem Namen!https://www.rfc1437.de/2003/03/11/kein-krieg-in-unserem-namen/Neues Ausschlussverfahren gegen Möllemannhttps://www.rfc1437.de/2003/03/11/neues-ausschlussverfahren-gegen-moellemann/Nigeria-Connectionhttps://www.rfc1437.de/2003/03/11/nigeria-connection/Schiefhttps://www.rfc1437.de/2003/03/11/pic-schief/Weide am Teichhttps://www.rfc1437.de/2003/03/11/pic-weide-am-teich/PyDBC 0.2https://www.rfc1437.de/2003/03/11/pydbc-02/Weltgericht nimmt Arbeit aufhttps://www.rfc1437.de/2003/03/11/weltgericht-nimmt-arbeit-auf/Anleitung um einen anonymen CVS Server mit Debian zu bauenhttps://www.rfc1437.de/2003/03/10/anleitung-um-einen-anonymen-cvs-server-mt-dbn-z-bn/Ari Fleischer admits Bush called from a prepared list of reportershttps://www.rfc1437.de/2003/03/10/ari-fleischr-dmts-bsh-clld-frm-prprd-lst-f-rprtrs/Bush und die Wahrheit ...https://www.rfc1437.de/2003/03/10/bush-und-die-wahrheit/Möllemann will doch im Bundestag bleibenhttps://www.rfc1437.de/2003/03/10/moellemann-will-doch-im-bundestag-bleiben/All Crazy on the Western Front:https://www.rfc1437.de/2003/03/09/all-crazy-on-the-western-front/Britische Regierung vor der Zerreißprobehttps://www.rfc1437.de/2003/03/09/britische-regierung-vor-der-zerreissprobe/juwr-20030309-011.jpghttps://www.rfc1437.de/2003/03/09/juwr-20030309-011jpg/Happy-Hour für Fachhändlerhttps://www.rfc1437.de/2003/03/08/happy-hour-fuer-fachhaendler/Roogle - RSS Feed Suchmaschinehttps://www.rfc1437.de/2003/03/08/roogle-rss-feed-suchmaschine/Eric Raymond zur Klage von SCO gegen IBMhttps://www.rfc1437.de/2003/03/07/eric-raymond-zur-klage-von-sco-gegen-ibm/Erster Saisonerfolg für Erik Zabelhttps://www.rfc1437.de/2003/03/07/erster-saisonerfolg-fuer-erik-zabel/Make no mistakehttps://www.rfc1437.de/2003/03/07/make-no-mistake/Online-Datenbank informiert über kontaktallergenes Potenzial von Chemikalienhttps://www.rfc1437.de/2003/03/07/onlin-dtnbnk-nfrmrt-br-kntktllrgns-ptnzl-vn-chmkln/Kulthttps://www.rfc1437.de/2003/03/07/pic-kult/Ranchero releases XML-RPC client for MacOShttps://www.rfc1437.de/2003/03/07/ranchero-releases-xml-rpc-client-for-macos/Westerwelles Raketenhttps://www.rfc1437.de/2003/03/07/westerwelles-raketen/Möllemann kehrt zurück - in Bayernhttps://www.rfc1437.de/2003/03/06/moellemann-kehrt-zurueck-in-bayern/Und schon wieder Moosbuschelhttps://www.rfc1437.de/2003/03/06/pic-und-schon-wieder-moosbuschel/Terry Jones on the Warhttps://www.rfc1437.de/2003/03/06/terry-jones-on-the-war/Adobe verscherbelt lllustrator 10https://www.rfc1437.de/2003/03/05/adobe-verscherbelt-lllustrator-10/Gericht untersagt den Versand von SMS-Spamhttps://www.rfc1437.de/2003/03/05/gericht-untersagt-den-versand-von-sms-spam/Jäger bedrohen die letzten Luchsehttps://www.rfc1437.de/2003/03/05/jaeger-bedrohen-die-letzten-luchse/OpenOffice.org unter Mac OS X 10.2 installierenhttps://www.rfc1437.de/2003/03/05/openofficeorg-unter-mac-os-x-102-installieren/Zabel Zweiter bei Murcia-Rundfahrthttps://www.rfc1437.de/2003/03/05/zabel-zweiter-bei-murcia-rundfahrt/Caffeine Software Suspends Operationshttps://www.rfc1437.de/2003/03/04/caffeine-software-suspends-operations/Der erste Frühlinghttps://www.rfc1437.de/2003/03/04/der-erste-fruehling/Kleine grafische Linux-Workstation auf alter Hardwarehttps://www.rfc1437.de/2003/03/04/kleine-grafische-linux-workstation-auf-alter-hrdwr/Möllemann verstrickt in "Kirch-Affäre"?https://www.rfc1437.de/2003/03/04/moellemann-verstrickt-in-kirch-affaere/Olympus E System from the show floorhttps://www.rfc1437.de/2003/03/04/olympus-e-system-from-the-show-floor/Beitrag ohne Titelhttps://www.rfc1437.de/2003/03/04/p461/Und der erste Frühling ...https://www.rfc1437.de/2003/03/04/pic-und-der-erste-fruehling/Und wieder mal ein Moosbuschel ...https://www.rfc1437.de/2003/03/04/pic-und-wieder-mal-ein-moosbuschel/Protesthttps://www.rfc1437.de/2003/03/04/protest/Immer noch beim neu Einrichten der Plattehttps://www.rfc1437.de/2003/03/03/immer-noch-beim-neu-einrichten-der-platte/Glub Gola-Gefühlehttps://www.rfc1437.de/2003/03/02/glub-gola-gefuehle/Minolta DiMAGE Xthttps://www.rfc1437.de/2003/03/02/minolta-dimage-xt/OS X 10.2 upgrade - all software suckshttps://www.rfc1437.de/2003/03/02/os-x-102-upgrade-all-software-sucks/OS X Upgrades machen Spass - Not!https://www.rfc1437.de/2003/03/02/os-x-upgrades-machen-spass-not/secret documenthttps://www.rfc1437.de/2003/03/02/secret-document/Entwicklungsumgebunghttps://www.rfc1437.de/2003/03/01/entwicklungsumgebung/Gewerkschaftsstreit: Westerwelle legt nachhttps://www.rfc1437.de/2003/03/01/gewerkschaftsstreit-westerwelle-legt-nach/Is This Thing On?https://www.rfc1437.de/2003/03/01/is-this-thing-on/Leica mit neuer alter Kamerahttps://www.rfc1437.de/2003/03/01/leica-mit-neuer-alter-kamera/Microsoft: We Have No Plans To Remove Linux Support From Virtual PC For Machttps://www.rfc1437.de/2003/03/01/mcrsft-w-hv-n-plns-t-rmv-lnx-spprt-frm-vrtl-pc-fr/Neue Nisus Writer OS X Version unterwegshttps://www.rfc1437.de/2003/03/01/neue-nisus-writer-os-x-version-unterwegs/Scheissfrühlinghttps://www.rfc1437.de/2003/03/01/scheissfruehling/Ari Fleischer Laughed Out of White House Press Briefinghttps://www.rfc1437.de/2003/02/28/ari-fleischer-laughed-out-of-white-hous-prss-brfng/Bill Gates wettert in Japan gegen Open Sourcehttps://www.rfc1437.de/2003/02/28/bill-gates-wettert-in-japan-gegen-open-source/Buchstabensalathttps://www.rfc1437.de/2003/02/28/buchstabensalat/OpenOffice verwirrt die BSAhttps://www.rfc1437.de/2003/02/28/openoffice-verwirrt-die-bsa/Amazon No!https://www.rfc1437.de/2003/02/27/amazon-no/Bibliothek, die niemals schließthttps://www.rfc1437.de/2003/02/27/bibliothek-die-niemals-schliesst/Clean Now Available under LGPL Licensehttps://www.rfc1437.de/2003/02/27/clean-now-available-under-lgpl-license/Einstellung von NPD-Verbotverfahren erwartethttps://www.rfc1437.de/2003/02/27/einstellung-von-npd-verbotverfahren-erwartet/Google erhält Patent für Ranking-Technikhttps://www.rfc1437.de/2003/02/27/google-erhaelt-patent-fuer-ranking-technik/Now there's a USB hot cup?https://www.rfc1437.de/2003/02/27/now-theres-a-usb-hot-cup/Pentax *ist Dhttps://www.rfc1437.de/2003/02/27/pentax-ist-d/Brücken schlagen ...https://www.rfc1437.de/2003/02/27/pic-bruecken-schlagen/Noch ist er vereist.https://www.rfc1437.de/2003/02/27/pic-noch-ist-er-vereist/Tierbabys ...https://www.rfc1437.de/2003/02/27/pic-tierbabys/Wilder Wald.https://www.rfc1437.de/2003/02/27/pic-wilder-wald/Schlechte Zeiten für künftige Azubishttps://www.rfc1437.de/2003/02/27/schlechte-zeiten-fuer-kuenftige-azubis/US-Justiz besetzt Domain-Namenhttps://www.rfc1437.de/2003/02/27/us-justiz-besetzt-domain-namen/Weltraum-Veteran "Pioneer 10" ist verstummthttps://www.rfc1437.de/2003/02/27/weltraum-veteran-pioneer-10-ist-verstummt/Zuwachs bei der Kamerasammlunghttps://www.rfc1437.de/2003/02/27/zuwachs-bei-der-kamerasammlung/Ultranationalisten in israelischer Regierunghttps://www.rfc1437.de/2003/02/26/ultranationalisten-in-israelischer-regierung/Canon's new digital SLRhttps://www.rfc1437.de/2003/02/25/canons-new-digital-slr/Union fordert Nationalgardehttps://www.rfc1437.de/2003/02/25/union-fordert-nationalgarde/Yahoo schreibt Lisp-Code um in C++https://www.rfc1437.de/2003/02/25/yahoo-schreibt-lisp-code-um-in-c/Zurück ins Mittelalterhttps://www.rfc1437.de/2003/02/25/zurueck-ins-mittelalter/Akte-X - das Endehttps://www.rfc1437.de/2003/02/24/akte-x-das-ende/Deutsche Bank ist Kreditrisiken leidhttps://www.rfc1437.de/2003/02/24/deutsche-bank-ist-kreditrisiken-leid/First Ogg Vorbis playerhttps://www.rfc1437.de/2003/02/24/first-ogg-vorbis-player/Bank will keine Diskussion über Sicherheitssystemhttps://www.rfc1437.de/2003/02/23/bank-will-keine-diskussion-ueber-sicherheitssystem/Der Mann, der die Zeit anhielthttps://www.rfc1437.de/2003/02/23/der-mann-der-die-zeit-anhielt/Neue IO Versionhttps://www.rfc1437.de/2003/02/23/neue-io-version/02.22.03, 20:22 Uhr - Wetten dass ... (II)https://www.rfc1437.de/2003/02/22/022203-2022-uhr-wetten-dass-ii/Bastelkurs für Mac-Anwenderhttps://www.rfc1437.de/2003/02/22/bastelkurs-fuer-mac-anwender/Legodayhttps://www.rfc1437.de/2003/02/22/legoday/Script Identifier 0.0.1https://www.rfc1437.de/2003/02/22/script-identifier-001/Gericht macht "Körperwelten" den Weg freihttps://www.rfc1437.de/2003/02/21/gericht-macht-koerperwelten-den-weg-frei/How many parents call their baby "it?"https://www.rfc1437.de/2003/02/21/how-many-parents-call-their-baby-it/MobiliX heißt jetzt TuxMobilhttps://www.rfc1437.de/2003/02/21/mobilix-heisst-jetzt-tuxmobil/Sample FinePix F700 Images at DPReviewhttps://www.rfc1437.de/2003/02/21/sample-finepix-f700-images-at-dpreview/20.02.2003 - 20:28: TV-Tipphttps://www.rfc1437.de/2003/02/20/20022003-2028-tv-tipp/Banks attempt to cover up worst PIN vulnerability yethttps://www.rfc1437.de/2003/02/20/banks-attempt-to-cover-up-worst-pin-vulnerablty-yt/Diskussion um Folter-Drohungen entbrannthttps://www.rfc1437.de/2003/02/20/diskussion-um-folter-drohungen-entbrannt/History of (Personal-) Computinghttps://www.rfc1437.de/2003/02/20/history-of-personal-computing/Weniger Belege bei elektronischer Steuererklärunghttps://www.rfc1437.de/2003/02/20/weniger-belege-bei-elektronischer-steuererklaerung/A Windows Flashbackhttps://www.rfc1437.de/2003/02/19/a-windows-flashback/Grüne kratzen am Kündigungsschutzhttps://www.rfc1437.de/2003/02/19/gruene-kratzen-am-kuendigungsschutz/Hacker knacken Millionen Kreditkarten-Kontenhttps://www.rfc1437.de/2003/02/19/hacker-knacken-millionen-kreditkarten-konten/Is Microsoft engaging in a little domain name squatting?https://www.rfc1437.de/2003/02/19/is-microsoft-engaging-in-a-little-domain-nm-sqttng/USA: Irak soll Wiederaufbau "selbst schultern"https://www.rfc1437.de/2003/02/19/usa-irak-soll-wiederaufbau-selbst-schultern/Desktop Crayhttps://www.rfc1437.de/2003/02/18/desktop-cray/Nikon Coolpix SQ - Quick Previewhttps://www.rfc1437.de/2003/02/18/nikon-coolpix-sq-quick-preview/Noch mehr Wasser unter der Marsoberflächehttps://www.rfc1437.de/2003/02/18/noch-mehr-wasser-unter-der-marsoberflaumlche/Und noch mal, weils so schön isthttps://www.rfc1437.de/2003/02/18/pic-und-noch-mal-weils-so-schoen-ist/Wenn am Abend im Hafen ...https://www.rfc1437.de/2003/02/18/pic-wenn-am-abend-im-hafen/TV-Tiphttps://www.rfc1437.de/2003/02/18/tv-tip/02.17.03, 18:14 Uhr - Das ist der Herr Buschhttps://www.rfc1437.de/2003/02/17/021703-1814-uhr-das-ist-der-herr-busch/Fotospaziergang am Dortmund-Ems-Kanalhttps://www.rfc1437.de/2003/02/17/fotospaziergang-am-dortmund-ems-kanal/iPhoto hat doofe Ohrenhttps://www.rfc1437.de/2003/02/17/iphoto-hat-doofe-ohren/Keine Lotto-Million mit "Strickmuster-Tipp"https://www.rfc1437.de/2003/02/17/keine-lotto-million-mit-strickmuster-tipp/Kleinster gemeinsamer Nennerhttps://www.rfc1437.de/2003/02/17/kleinster-gemeinsamer-nenner/Microsoft in Second Deal to Sell Phone Softwarehttps://www.rfc1437.de/2003/02/17/microsoft-in-second-deal-to-sell-phone-software/Der war wirklich so kitschig!https://www.rfc1437.de/2003/02/17/pic-der-war-wirklich-so-kitschig/Grün wärs ja schöner ...https://www.rfc1437.de/2003/02/17/pic-gruen-waers-ja-schoener/Man könnte fast Fernweh kriegen ...https://www.rfc1437.de/2003/02/17/pic-man-koennte-fast-fernweh-kriegen/Ok, noch ein paar Farbtupferhttps://www.rfc1437.de/2003/02/17/pic-ok-noch-ein-paar-farbtupfer/Wenn der einzige Farbtupfer ...https://www.rfc1437.de/2003/02/17/pic-wenn-der-einzige-farbtupfer/Wetterphänomene hautnahhttps://www.rfc1437.de/2003/02/17/pic-wetterphaenomene-hautnah/Apple's global pricing policy. Utter cobblershttps://www.rfc1437.de/2003/02/16/apples-global-pricing-policy-utter-cobblers/Gaelic is dyinghttps://www.rfc1437.de/2003/02/16/gaelic-is-dying/Ring Around the Earthhttps://www.rfc1437.de/2003/02/16/ring-around-the-earth/Spielerei am Sonntaghttps://www.rfc1437.de/2003/02/16/spielerei-am-sonntag/Weatherhttps://www.rfc1437.de/2003/02/16/weather/Die Rede des US Senators Robert Byrd vor dem Senathttps://www.rfc1437.de/2003/02/15/die-rede-des-us-senators-robert-byrd-vor-dem-senat/Kate Bush - All albumshttps://www.rfc1437.de/2003/02/15/kate-bush-all-albums/Mehrere Millionen Menschen demonstrieren in Spanien gegen den Krieghttps://www.rfc1437.de/2003/02/15/mehrere-millionn-mnschn-dmnstrrn-n-spnn-ggn-dn-krg/Moosbuschelhttps://www.rfc1437.de/2003/02/15/pic-moosbuschel/Designing Reusable Classes (PDF)https://www.rfc1437.de/2003/02/14/designing-reusable-classes-pdf/Geistervertreibunghttps://www.rfc1437.de/2003/02/14/geistervertreibung/Google, google, noch einmalhttps://www.rfc1437.de/2003/02/14/google-google-noch-einmal/Keith Haring-Ausstellung in Hamburg eröffnethttps://www.rfc1437.de/2003/02/14/keith-haring-ausstellung-in-hamburg-eroeffnet/Frühling? Frost!https://www.rfc1437.de/2003/02/14/pic-fruehling-frost/Bilderblog als Ergänzung zum Fotobloghttps://www.rfc1437.de/2003/02/13/bilderblog-als-ergaenzung-zum-fotoblog/Chimera needs a new namehttps://www.rfc1437.de/2003/02/13/chimera-needs-a-new-name/Beitrag ohne Titelhttps://www.rfc1437.de/2003/02/13/p376/Fernweh ...https://www.rfc1437.de/2003/02/13/pic-fernweh/Schon wieder die Wertschöpfungskettehttps://www.rfc1437.de/2003/02/13/schon-wieder-die-wertschoepfungskette/Apache vs. Yawshttps://www.rfc1437.de/2003/02/12/apache-vs-yaws/Ist Stonehenge ein "Steinhenge"?https://www.rfc1437.de/2003/02/12/ist-stonehenge-ein-steinhenge/FDP-Fraktion schmeißt Möllemann raushttps://www.rfc1437.de/2003/02/11/fdp-fraktion-schmeisst-moellemann-raus/PerlPad 0.1https://www.rfc1437.de/2003/02/11/perlpad-01/Erster Nachteil von OpenZaurushttps://www.rfc1437.de/2003/02/10/erster-nachteil-von-openzaurus/Montag, 10.02.2003: Ich mach jetzt auch mit! :)https://www.rfc1437.de/2003/02/10/montag-10022003-ich-mach-jetzt-auch-mit/neunzehn!https://www.rfc1437.de/2003/02/10/neunzehn/Otan?https://www.rfc1437.de/2003/02/10/otan/Why Sun is right that Java suckshttps://www.rfc1437.de/2003/02/10/why-sun-is-right-that-java-sucks/Zahnärzte bohren nur noch auf Rechnunghttps://www.rfc1437.de/2003/02/10/zahnaerzte-bohren-nur-noch-auf-rechnung/Nikon Uncoveredhttps://www.rfc1437.de/2003/02/09/nikon-uncovered/Tangled Up in Spamhttps://www.rfc1437.de/2003/02/09/tangled-up-in-spam/Zaurus auf OpenZaurus umstellenhttps://www.rfc1437.de/2003/02/09/zaurus-auf-openzaurus-umstellen/Constructing an efficient prime number detectorhttps://www.rfc1437.de/2003/02/08/constructing-an-efficient-prime-number-detector/In der Nachbarschafthttps://www.rfc1437.de/2003/02/08/in-der-nachbarschaft/Müntefering stellt sich beim Thema Kündigungsschutz querhttps://www.rfc1437.de/2003/02/08/muentefering-stellt-sich-beim-them-kndgngsschtz-qr/OpenSource-Compiler für C/C++ und Fortran freigegebenhttps://www.rfc1437.de/2003/02/08/opensource-compiler-fuer-cc-und-fortran-freigegebn/Zoll bietet indizierte DVD anhttps://www.rfc1437.de/2003/02/08/zoll-bietet-indizierte-dvd-an/8.0 alreadyhttps://www.rfc1437.de/2003/02/07/80-already/Gut unterrichtete Kreisehttps://www.rfc1437.de/2003/02/07/gut-unterrichtete-kreise/Letters to the Editorhttps://www.rfc1437.de/2003/02/07/letters-to-the-editor/Mal ein wirklich sinnloses Feature des Community Servershttps://www.rfc1437.de/2003/02/07/mal-ein-wirklich-sinnloses-feature-ds-cmmnty-srvrs/Neue Enthüllungen zum Ärztebetrug mit Totenhttps://www.rfc1437.de/2003/02/07/neue-enthuellungen-zum-aerztebetrug-mit-toten/Sie haben Posthttps://www.rfc1437.de/2003/02/07/sie-haben-post/Weblogsoftware bei anderenhttps://www.rfc1437.de/2003/02/07/weblogsoftware-bei-anderen/Aufruf zum Krieg ohne substanziell Neueshttps://www.rfc1437.de/2003/02/06/aufruf-zum-krieg-ohne-substanziell-neues/Beamte wollen sparen helfenhttps://www.rfc1437.de/2003/02/06/beamte-wollen-sparen-helfen/Blogging in der Sinnkrise?https://www.rfc1437.de/2003/02/06/blogging-in-der-sinnkrise/Dell verzichtet auf Diskettenlaufwerkehttps://www.rfc1437.de/2003/02/06/dell-verzichtet-auf-diskettenlaufwerke/GSM-Handys schädigen Nervenzellenhttps://www.rfc1437.de/2003/02/06/gsm-handys-schaedigen-nervenzellen/Mac OSX USB Beta drivershttps://www.rfc1437.de/2003/02/06/mac-osx-usb-beta-drivers/Wetterberichthttps://www.rfc1437.de/2003/02/06/wetterbericht/You really should try thishttps://www.rfc1437.de/2003/02/06/you-really-should-try-this/DSL-Treiber cFos jetzt mit Traffic-Shapinghttps://www.rfc1437.de/2003/02/05/dsl-treiber-cfos-jetzt-mit-traffic-shaping/Rechtsvertretung für Autoren freier Softwarehttps://www.rfc1437.de/2003/02/05/rechtsvertretung-fuer-autoren-freier-software/Nasa entließ angeblich kritische Beraterhttps://www.rfc1437.de/2003/02/04/nasa-entliess-angeblich-kritische-berater/Neues Spielzeug an Bordhttps://www.rfc1437.de/2003/02/04/neues-spielzeug-an-bord/NRW-FDP: Möllemann soll Mandat abgebenhttps://www.rfc1437.de/2003/02/04/nrw-fdp-moellemann-soll-mandat-abgeben/Schröder eiert weiterhttps://www.rfc1437.de/2003/02/04/schroeder-eiert-weiter/Totgesagthttps://www.rfc1437.de/2003/02/04/totgesagt/AppleScript iihttps://www.rfc1437.de/2003/02/03/applescript-ii/Die Stadtwerke haben doofe Ohrenhttps://www.rfc1437.de/2003/02/03/die-stadtwerke-haben-doofe-ohren/Einsamer Schütze ...https://www.rfc1437.de/2003/02/03/einsamer-schuetze/Endlichhttps://www.rfc1437.de/2003/02/03/endlich/Lange Risse am Shuttle-Flügel?https://www.rfc1437.de/2003/02/03/lange-risse-am-shuttle-fluegel/Tuesday 28 January Lisp as a shell : added "lush" and "scsh"https://www.rfc1437.de/2003/02/03/tuesday-28-january-lisp-as-a-shell-ddd-lsh-nd-scsh/"Columbia": Warnungen wurden ignorierthttps://www.rfc1437.de/2003/02/02/columbia-warnungen-wurden-ignoriert/Wahlen in Niedersachsen und Hessenhttps://www.rfc1437.de/2003/02/02/wahlen-in-niedersachsen-und-hessen/Aktuell auf Eins Livehttps://www.rfc1437.de/2003/02/01/aktuell-auf-eins-live/Beim Schockwellenreiter ist heute alles Bananehttps://www.rfc1437.de/2003/02/01/beim-schockwellenreiter-ist-heute-alles-banane/Beispielmakros für PyDShttps://www.rfc1437.de/2003/02/01/beispielmakros-fuer-pyds/Blitze produzieren auch Röntgenstrahlunghttps://www.rfc1437.de/2003/02/01/blitze-produzieren-auch-roentgenstrahlung/Deutliche Kürzung der Arbeitslosenhilfe und Jobpflicht für Jugendlichehttps://www.rfc1437.de/2003/02/01/deutlch-krzng-dr-rbtslsnhlf-nd-jbpflcht-fr-jgndlch/Lizenz zum Schröpfenhttps://www.rfc1437.de/2003/02/01/lizenz-zum-schroepfen/Musikindustrie zockt Kindergärten abhttps://www.rfc1437.de/2003/02/01/musikindustrie-zockt-kindergaerten-ab/PyObjC @ OReillyhttps://www.rfc1437.de/2003/02/01/pyobjc-oreilly/Blix widerspricht Bushhttps://www.rfc1437.de/2003/01/31/blix-widerspricht-bush/Deutsche dienen als Versuchskaninchenhttps://www.rfc1437.de/2003/01/31/deutsche-dienen-als-versuchskaninchen/Erster Fall von e-Thrombosehttps://www.rfc1437.de/2003/01/30/erster-fall-von-e-thrombose/Language-Mumps-1.07https://www.rfc1437.de/2003/01/30/language-mumps-107/Obelix siegt über MobiliXhttps://www.rfc1437.de/2003/01/30/obelix-siegt-ueber-mobilix/Physicists Teleport Quantum Bits Over Long Distancehttps://www.rfc1437.de/2003/01/30/physicists-teleport-quantum-bits-over-long-distanc/Radio Userland-Clonehttps://www.rfc1437.de/2003/01/30/radio-userland-clone/Interessante Interviews mit Guido van Rossumhttps://www.rfc1437.de/2003/01/29/interessante-interviews-mit-guido-van-rossum/München verbietet "Körperwelten"https://www.rfc1437.de/2003/01/29/muenchen-verbietet-koerperwelten/Opera Mac development likely to ceasehttps://www.rfc1437.de/2003/01/29/opera-mac-development-likely-to-cease/Team Telekom: Sechs Neulingehttps://www.rfc1437.de/2003/01/29/team-telekom-sechs-neulinge/Beitrag ohne Titelhttps://www.rfc1437.de/2003/01/27/p305/Forscher suchen den Sinn des Sexhttps://www.rfc1437.de/2003/01/26/forscher-suchen-den-sinn-des-sex/Gabriel attackiert rot-grünehttps://www.rfc1437.de/2003/01/26/gabriel-attackiert-rot-gruene/HTML Sucks Completely 0.928https://www.rfc1437.de/2003/01/26/html-sucks-completely-0928/Internet stundenlang lahmgelegthttps://www.rfc1437.de/2003/01/26/internet-stundenlang-lahmgelegt/Mal was in eigener Sachehttps://www.rfc1437.de/2003/01/26/mal-was-in-eigener-sache/NASA's Visible Earthhttps://www.rfc1437.de/2003/01/26/nasas-visible-earth/PyPI now has a browsing featurehttps://www.rfc1437.de/2003/01/26/pypi-now-has-a-browsing-feature/Python/XML 0.8.2https://www.rfc1437.de/2003/01/26/pythonxml-082/Satellitenbilder von den Buschbränden in Südostaustralienhttps://www.rfc1437.de/2003/01/26/satellitenbilder-von-den-buschbraenden-n-sdststrln/SPD-Spitze: Niemand wartet auf Lafontainehttps://www.rfc1437.de/2003/01/26/spd-spitze-niemand-wartet-auf-lafontaine/StepTalk 0.7.0pre1https://www.rfc1437.de/2003/01/26/steptalk-070pre1/TINC hopelessly borken?https://www.rfc1437.de/2003/01/26/tinc-hopelessly-borken/Umstieg auf PyDShttps://www.rfc1437.de/2003/01/26/umstieg-auf-pyds/U.S. prepares for possible use of nukeshttps://www.rfc1437.de/2003/01/26/us-prepares-for-possible-use-of-nukes/Visual Works Smalltalk für Mac OS X!https://www.rfc1437.de/2003/01/26/visual-works-smalltalk-fuer-mac-os-x/Brainfuck Debugger 0.2https://www.rfc1437.de/2003/01/25/brainfuck-debugger-02/SBCL Ascendenthttps://www.rfc1437.de/2003/01/25/sbcl-ascendent/Schmidt regt TÜV für Ärzte anhttps://www.rfc1437.de/2003/01/25/schmidt-regt-tuev-fuer-aerzte-an/tasten kapotthttps://www.rfc1437.de/2003/01/25/tasten-kapott/Oracle v SQL Server, Part 7https://www.rfc1437.de/2003/01/24/oracle-v-sql-server-part-7/PyObjC news (and Unit Tests Rock!)https://www.rfc1437.de/2003/01/24/pyobjc-news-and-unit-tests-rock/Network Solutions verschickt Zehntausende von Kunden-Adressenhttps://www.rfc1437.de/2003/01/23/network-solutions-verschickt-zhntsnd-vn-kndn-drssn/Staranwalt soll für SCO Unix-Urheberrechte prüfenhttps://www.rfc1437.de/2003/01/23/staranwalt-soll-fuer-sco-unix-urheberrechte-pruefn/US-Gericht verbietet Unternehmen das Versenden von Spamhttps://www.rfc1437.de/2003/01/23/us-gericht-verbietet-unternehmen-das-vrsndn-vn-spm/15 Jahre Nigeria-Connectionhttps://www.rfc1437.de/2003/01/22/15-jahre-nigeria-connection/AO(hel)l für (fast) alle - und zwar umsonst!https://www.rfc1437.de/2003/01/22/aohell-fuer-fast-alle-und-zwar-umsonst/Ärzte machenhttps://www.rfc1437.de/2003/01/21/aerzte-machen/Installation von PopFile unter OS Xhttps://www.rfc1437.de/2003/01/21/installation-von-popfile-unter-os-x/Möllemann-Befragung ohne Ergebnissehttps://www.rfc1437.de/2003/01/21/moellemann-befragung-ohne-ergebnisse/OpenMCL 0.13.3https://www.rfc1437.de/2003/01/21/openmcl-0133/PythonCard 0.7https://www.rfc1437.de/2003/01/21/pythoncard-07/SimpleTALhttps://www.rfc1437.de/2003/01/21/simpletal/SMTP-Relay-Server von T-Online künftig kostenpflichtighttps://www.rfc1437.de/2003/01/21/smtp-relay-server-von-t-online-kuenftg-kstnpflchtg/Werden gute Mailfilter Spam auf Dauer verhindern?https://www.rfc1437.de/2003/01/21/werden-gute-mailfilter-spam-auf-dauer-verhindern/Schockwellenreiter bastelthttps://www.rfc1437.de/2003/01/20/schockwellenreiter-bastelt/Trackback in the saddle againhttps://www.rfc1437.de/2003/01/20/trackback-in-the-saddle-again/Mein nächstes Nachbarbloghttps://www.rfc1437.de/2003/01/19/mein-naechstes-nachbarblog/Politiker wollen Bundesländer zusammenlegenhttps://www.rfc1437.de/2003/01/19/politiker-wollen-bundeslaender-zusammenlegen/Wissenschaft auf dem Holzweghttps://www.rfc1437.de/2003/01/19/wissenschaft-auf-dem-holzweg/Beitrag ohne Titelhttps://www.rfc1437.de/2003/01/18/p265/Die dümmsten Bauern oder lernt die bayerische Staatsregierung nie dazu?https://www.rfc1437.de/2003/01/17/die-duemmsten-barn-dr-lrnt-d-byrsch-sttsrgrng-n-dz/FBI warnt vor angeblich zunehmenden Cyberattacken pro-irakischer oder irakischer Hackerhttps://www.rfc1437.de/2003/01/17/fb-wrnt-vr-ngblch-znhmndn-cybrttckn-pr-rkschr-dr-r/Just posted! Olympus C-5050 Zoom reviewhttps://www.rfc1437.de/2003/01/17/just-posted-olympus-c-5050-zoom-review/LISP 1.5 Programmer's Manualhttps://www.rfc1437.de/2003/01/17/lisp-15-programmers-manual/Che Guevara - der Revolutionär als Fotografhttps://www.rfc1437.de/2003/01/16/che-guevara-der-revolutionaer-als-fotograf/Esoteric computer languageshttps://www.rfc1437.de/2003/01/16/esoteric-computer-languages/Gebrauchte Festplatten als Fundgrube für Hacker und Crackerhttps://www.rfc1437.de/2003/01/16/gebrauchte-festplatten-als-fndgrb-fr-hckr-nd-crckr/Migration durchgeführthttps://www.rfc1437.de/2003/01/16/migration-durchgefuehrt/Random: Don''t Forget Your Instuments!https://www.rfc1437.de/2003/01/16/random-dont-forget-your-instuments/Python Community Serverhttps://www.rfc1437.de/2003/01/16/story-python-community-server/Markus Kniebeshttps://www.rfc1437.de/2003/01/15/p252/Ullrich fährt für Coasthttps://www.rfc1437.de/2003/01/15/p253/Entscheidung über Möllemann vertagthttps://www.rfc1437.de/2003/01/14/p249/Mark Pilgrim schimpft über XHTML 1.1https://www.rfc1437.de/2003/01/14/p250/Beitrag ohne Titelhttps://www.rfc1437.de/2003/01/14/p251/Beitrag ohne Titelhttps://www.rfc1437.de/2003/01/13/p245/Steve Case wird endgültig 'gecased'https://www.rfc1437.de/2003/01/13/p246/Beitrag ohne Titelhttps://www.rfc1437.de/2003/01/13/p247/Beitrag ohne Titelhttps://www.rfc1437.de/2003/01/13/p248/Sonys neues Organizer-Flaggschiffhttps://www.rfc1437.de/2003/01/12/p242/Alle Todeskandidaten in Illinois begnadigthttps://www.rfc1437.de/2003/01/12/p243/Colani präsentiert blaue Polizei-Uniformenhttps://www.rfc1437.de/2003/01/12/p244/CDU setzt Klausurtagung forthttps://www.rfc1437.de/2003/01/11/p240/Virtueller Vogel kann echt singenhttps://www.rfc1437.de/2003/01/11/p241/Beitrag ohne Titelhttps://www.rfc1437.de/2003/01/10/p238/Beitrag ohne Titelhttps://www.rfc1437.de/2003/01/10/p239/CSU strotzt vor Selbstbewusstseinhttps://www.rfc1437.de/2003/01/09/p236/Scharon verliert bei den Wählernhttps://www.rfc1437.de/2003/01/09/p237/Beitrag ohne Titelhttps://www.rfc1437.de/2003/01/08/p233/Beitrag ohne Titelhttps://www.rfc1437.de/2003/01/08/p234/Möllemann ist wieder dahttps://www.rfc1437.de/2003/01/08/p235/Ärzte wollen mittwochs dicht machenhttps://www.rfc1437.de/2003/01/07/p224/Konica und Minolta fusionierenhttps://www.rfc1437.de/2003/01/07/p225/OpenOffice für Mac OS Xhttps://www.rfc1437.de/2003/01/07/p226/Verteiltes Rechnen soll Xbox Public Key knacken [Update]https://www.rfc1437.de/2003/01/07/p227/bzero 0.14 availablehttps://www.rfc1437.de/2003/01/07/p228/Beitrag ohne Titelhttps://www.rfc1437.de/2003/01/07/p229/LLGPL Implementation eines XML-RPC Server and Client für OpenMCLhttps://www.rfc1437.de/2003/01/07/p230/"Monster von Aramberri": Erste Knochen in Karlsruhehttps://www.rfc1437.de/2003/01/07/p231/X11 für Mac OS X von Applehttps://www.rfc1437.de/2003/01/07/p232/Designierter EZB-Chef vor Gerichthttps://www.rfc1437.de/2003/01/06/p219/Clement will Richtungswechsel in Wirtschaftspolitikhttps://www.rfc1437.de/2003/01/06/p220/Microdrive gets a major capacity boosthttps://www.rfc1437.de/2003/01/06/p221/Package metadata repository for Pythonhttps://www.rfc1437.de/2003/01/06/p222/Donut im All entdeckthttps://www.rfc1437.de/2003/01/06/p223/Polaroid Dust and Scratch removalhttps://www.rfc1437.de/2003/01/05/p216/Beitrag ohne Titelhttps://www.rfc1437.de/2003/01/05/p217/Beitrag ohne Titelhttps://www.rfc1437.de/2003/01/05/p218/New rdflib releasehttps://www.rfc1437.de/2003/01/04/p213/OpenMCL Now LLGPLedhttps://www.rfc1437.de/2003/01/04/p214/Onanierende Orang-Utanshttps://www.rfc1437.de/2003/01/04/p215/Easy Things Should Be Easyhttps://www.rfc1437.de/2003/01/03/p205/Friday 3 January AllegroServe : 3 editshttps://www.rfc1437.de/2003/01/03/p206/Stille Posthttps://www.rfc1437.de/2003/01/03/p207/Bahn zieht gegen Pro Bahn vor Gerichthttps://www.rfc1437.de/2003/01/03/p208/20 Jahre mausgesteuerter Computer: "Lisa" hat Geburtstaghttps://www.rfc1437.de/2003/01/03/p209/MacBird Open Source Releasehttps://www.rfc1437.de/2003/01/03/p210/The Cultured Orangutanhttps://www.rfc1437.de/2003/01/03/p211/home photoblog linkdump license flag [E] skip over the calendar12/2002 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 2/2003 3. Jan. 2003 [ ][0] [ ][1] Zwei Katzenbilder (gescanned von alten Negativen) von The Witch - Juttas Fotoalben Gefunden bei The Witch - Juttas Fotoalben. tags: Fotografie © 2002-2010 Georg "hugo" Bauer.https://www.rfc1437.de/2003/01/03/p212/Beitrag ohne Titelhttps://www.rfc1437.de/2003/01/02/p198/Beitrag ohne Titelhttps://www.rfc1437.de/2003/01/02/p199/Beitrag ohne Titelhttps://www.rfc1437.de/2003/01/02/p200/Porno- oder Webradiopatent?https://www.rfc1437.de/2003/01/02/p201/Beitrag ohne Titelhttps://www.rfc1437.de/2003/01/02/p202/Flat-panel iMac production to be terminated?https://www.rfc1437.de/2003/01/02/p203/Rürup ruft zur Ordnunghttps://www.rfc1437.de/2003/01/02/p204/Den Songhttps://www.rfc1437.de/2003/01/01/p196/Rürup-Kommission: Mit 900 Euro sind Sie dabei!https://www.rfc1437.de/2003/01/01/p197/Botanischer Gartenhttps://www.rfc1437.de/2002/12/31/p193/Lost...https://www.rfc1437.de/2002/12/31/p194/"There's one thing I'm certain of: Return I will To old Brazil ": Kate Bush, from the greatest ...https://www.rfc1437.de/2002/12/31/p195/Pevenage verlässt Team Telekomhttps://www.rfc1437.de/2002/12/30/p186/19C3: Der Linux-Xbox-Hack und die Zukunft von Palladiumhttps://www.rfc1437.de/2002/12/30/p187/Prominente .de-Domains: Nicht bezahlt und gesperrthttps://www.rfc1437.de/2002/12/30/p188/Die Raelianerhttps://www.rfc1437.de/2002/12/30/p189/Schröder kündigt harten Kurs anhttps://www.rfc1437.de/2002/12/30/p190/Schröder oder Stoiber: Wer hat die beste Website?https://www.rfc1437.de/2002/12/30/p191/Beitrag ohne Titelhttps://www.rfc1437.de/2002/12/30/p192/Kritik an Fischer aus eigenen Reihenhttps://www.rfc1437.de/2002/12/29/p177/Mehdorn droht mit Schönwetter-Verkehrhttps://www.rfc1437.de/2002/12/29/p178/Fotoalben auf dem OUT e.V. Serverhttps://www.rfc1437.de/2002/12/29/p179/home photoblog linkdump license flag [E] skip over the calendar11/2002 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 1/2003 29. Dec. 2002 [ ][0] Katze im Sprung - etwas dunkel, aber trotzdem ein nettes Bild von The Witch - Juttas Fotoalben. Technik kann man am Lichtbogen im Hintergrund erkennen, sie hat wohl mitgezogen. Garnicht so einfach sowas mit einer Manuellfokus-Kamera zu machen. Gefunden bei The Witch - Juttas Fotoalben. tags: Fotografie © 2002-2010 Georg "hugo" Bauer.https://www.rfc1437.de/2002/12/29/p180/home photoblog linkdump license flag [E] skip over the calendar11/2002 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 1/2003 29. Dec. 2002 [ ][0] Eines meiner Bilder aus Seile und Rollen. Ich mag das Album irgendwie, auch wenn die Bilder selber wenig Aussage transportieren, sondern mehr der Präsentation der Form und der Lichtspiele dienen. Nicht jedes Bild muss eine Aussage transportieren ... Gefunden bei Leicaesk - Leicaesk. tags: Fotografie © 2002-2010 Georg "hugo" Bauer.https://www.rfc1437.de/2002/12/29/p181/Beitrag ohne Titelhttps://www.rfc1437.de/2002/12/29/p182/Ook!!!https://www.rfc1437.de/2002/12/29/p183/Tales for the 1337https://www.rfc1437.de/2002/12/29/p184/BloQhttps://www.rfc1437.de/2002/12/29/p185/Günter Grass trommelt gegen Bushhttps://www.rfc1437.de/2002/12/28/p176/Beitrag ohne Titelhttps://www.rfc1437.de/2002/12/27/p172/Bahn weist Kritik an Krisenmanagement zurückhttps://www.rfc1437.de/2002/12/27/p173/Immer mehr Spam - und vielleicht auch Stresshttps://www.rfc1437.de/2002/12/27/p174/Beitrag ohne Titelhttps://www.rfc1437.de/2002/12/27/p175/Mac Essentialshttps://www.rfc1437.de/2002/12/26/p171/Beitrag ohne Titelhttps://www.rfc1437.de/2002/12/25/p169/Eisregen sorgt für Verkehrschaos im Nordenhttps://www.rfc1437.de/2002/12/25/p170/Jacob Nielsens Top-Ten Fehlerliste im Webdesign 2002https://www.rfc1437.de/2002/12/24/p167/Beitrag ohne Titelhttps://www.rfc1437.de/2002/12/24/p168/Gretag vor der Insolvenz?https://www.rfc1437.de/2002/12/23/p165/Ex-Bundesminister Krause muss ins Gefängnishttps://www.rfc1437.de/2002/12/23/p166/Süssmuth ruft Union zu Kompromiss aufhttps://www.rfc1437.de/2002/12/22/p160/Dieter Thomas Heck plant neue "ZDF-Hitparade"https://www.rfc1437.de/2002/12/22/p161/Beitrag ohne Titelhttps://www.rfc1437.de/2002/12/22/p162/Beitrag ohne Titelhttps://www.rfc1437.de/2002/12/22/p163/Ingo Rammer: "Exchange Server 2000 rocks. Within a couple of hours, I've been able to render my ...https://www.rfc1437.de/2002/12/22/p164/2005 Dank TCPA: Der entmannte Computerhttps://www.rfc1437.de/2002/12/21/p156/Chimera 0.6 browser gets more featureshttps://www.rfc1437.de/2002/12/21/p157/Wolken auf Titanhttps://www.rfc1437.de/2002/12/21/p158/Lob und Tadel für Strategiepapierhttps://www.rfc1437.de/2002/12/21/p159/Beitrag ohne Titelhttps://www.rfc1437.de/2002/12/20/p149/Das Gefühl trügt offenbar: Euro ist kein Teurohttps://www.rfc1437.de/2002/12/20/p150/Gericht: Internetcafés brauchen Spielhallen-Erlaubnishttps://www.rfc1437.de/2002/12/20/p151/Kein Schmerzensgeld für Schoko-Fanhttps://www.rfc1437.de/2002/12/20/p152/Bundessicherheitsbehörde vertreibt CD mit Instant-Linuxhttps://www.rfc1437.de/2002/12/20/p153/Polyhedra Polymathhttps://www.rfc1437.de/2002/12/20/p154/MS licensinghttps://www.rfc1437.de/2002/12/20/p155/What is RSS?https://www.rfc1437.de/2002/12/19/p145/Happy Birthday Perlhttps://www.rfc1437.de/2002/12/19/p146/Beitrag ohne Titelhttps://www.rfc1437.de/2002/12/19/p147/Beitrag ohne Titelhttps://www.rfc1437.de/2002/12/19/p148/should we patent air too?https://www.rfc1437.de/2002/12/18/p142/Bundestag verabschiedet sich vom Ausschuss für Netzpolitikhttps://www.rfc1437.de/2002/12/18/p143/Erleichterung bei der Union - Bedauern bei der SPDhttps://www.rfc1437.de/2002/12/18/p144/Zweifel an Eignung Gorlebens als Endlagerhttps://www.rfc1437.de/2002/12/17/p139/BinTec ist zahlungsunfähighttps://www.rfc1437.de/2002/12/17/p140/Just posted! Canon EOS-1Ds reviewhttps://www.rfc1437.de/2002/12/17/p141/Photo Quoteshttps://www.rfc1437.de/2002/12/16/p129/Pixelnhance hat eine neue Versionhttps://www.rfc1437.de/2002/12/16/p130/Galgenhumor gegen Software-Patentehttps://www.rfc1437.de/2002/12/16/p131/Pentagon denkt über Geheimprogramm zur Manipulation der öffentlichen Meinung in befre ...https://www.rfc1437.de/2002/12/16/p132/Möllemann will sich im Januar erklärenhttps://www.rfc1437.de/2002/12/16/p133/Beitrag ohne Titelhttps://www.rfc1437.de/2002/12/16/p134/Merz wettert gegen Gewerkschaftsmachthttps://www.rfc1437.de/2002/12/16/p135/Beitrag ohne Titelhttps://www.rfc1437.de/2002/12/16/p136/more viruseshttps://www.rfc1437.de/2002/12/16/p137/Unix interactive: Neue Wege zur Insolvenzhttps://www.rfc1437.de/2002/12/16/p138/Ersatzkassen sollen Urlaubsgeld streichenhttps://www.rfc1437.de/2002/12/15/p127/CIA erhält Anti-Terror-Tötungslistehttps://www.rfc1437.de/2002/12/15/p128/Merz wirft Nachfolgerin Merkel Wortbruch vorhttps://www.rfc1437.de/2002/12/14/p126/Gericht sperrt rechtsextreme Websiteshttps://www.rfc1437.de/2002/12/13/p122/Tarifeinigung im Bankgewerbehttps://www.rfc1437.de/2002/12/13/p123/Beitrag ohne Titelhttps://www.rfc1437.de/2002/12/13/p124/Beitrag ohne Titelhttps://www.rfc1437.de/2002/12/13/p125/Beitrag ohne Titelhttps://www.rfc1437.de/2002/12/12/p113/Politische Mehrheit für AWACS-Einsatzhttps://www.rfc1437.de/2002/12/12/p114/Banken wollen Zinssenkung nicht weitergebenhttps://www.rfc1437.de/2002/12/12/p115/Wirbel um Bonner Riefenstahl-Ausstellunghttps://www.rfc1437.de/2002/12/12/p116/Phillip Pearson: "Prototyping a very fast XML-RPC server."https://www.rfc1437.de/2002/12/12/p117/Koch sorgt mit Nazi-Vergleich für Skandalhttps://www.rfc1437.de/2002/12/12/p118/Schlussverkauf/2 bei IBMhttps://www.rfc1437.de/2002/12/12/p119/Schily warnt vor Streik im Öffentlichen Diensthttps://www.rfc1437.de/2002/12/12/p120/Möllemann richtete offenbar illegales Konto einhttps://www.rfc1437.de/2002/12/12/p121/Internet-Filter blockieren Aufklärungs-Websiteshttps://www.rfc1437.de/2002/12/11/p112/SPD dementiert Rücktrittsdrohung Schrödershttps://www.rfc1437.de/2002/12/10/p109/Marktforscher rechnen mit Linux-Software von Microsofthttps://www.rfc1437.de/2002/12/10/p110/NRW-FDP will Möllemann ausschließenhttps://www.rfc1437.de/2002/12/10/p111/Beitrag ohne Titelhttps://www.rfc1437.de/2002/12/09/p106/Drittes Verfahren gegen Möllemannhttps://www.rfc1437.de/2002/12/09/p107/Beitrag ohne Titelhttps://www.rfc1437.de/2002/12/09/p108/Beitrag ohne Titelhttps://www.rfc1437.de/2002/12/08/p101/Neue Hardware für Amiga- und C64-Fanshttps://www.rfc1437.de/2002/12/08/p102/Abstimmung über Nachfolger von Roth und Kuhnhttps://www.rfc1437.de/2002/12/08/p103/Theo Jansen entwickelt gehende Maschinenhttps://www.rfc1437.de/2002/12/08/p104/Beitrag ohne Titelhttps://www.rfc1437.de/2002/12/08/p105/Just posted! Canon PowerShot G3 reviewhttps://www.rfc1437.de/2002/12/06/p100/EU sperrt "Risikoschiffe" aushttps://www.rfc1437.de/2002/12/06/p96/Zaubern mit Lichthttps://www.rfc1437.de/2002/12/06/p97/Grüne wollen länger shoppenhttps://www.rfc1437.de/2002/12/06/p98/Anschlag auf McDonald's in Indonesienhttps://www.rfc1437.de/2002/12/06/p99/ElcomSoft-Prozess: Unwirksames Einbrecherwerkzeughttps://www.rfc1437.de/2002/12/05/p95/Beitrag ohne Titelhttps://www.rfc1437.de/2002/12/04/p93/Beitrag ohne Titelhttps://www.rfc1437.de/2002/12/04/p94/Möllemann will nicht gehenhttps://www.rfc1437.de/2002/12/03/p90/"Alice im Männerland"https://www.rfc1437.de/2002/12/03/p91/Keiner will mehr Möllemannhttps://www.rfc1437.de/2002/12/03/p92/FDP-Vorstand will Möllemann rauswerfenhttps://www.rfc1437.de/2002/12/02/p87/Beitrag ohne Titelhttps://www.rfc1437.de/2002/12/02/p88/Beitrag ohne Titelhttps://www.rfc1437.de/2002/12/02/p89/Beitrag ohne Titelhttps://www.rfc1437.de/2002/12/01/p85/Beitrag ohne Titelhttps://www.rfc1437.de/2002/12/01/p86/Jürgen auf der Ersatzbankhttps://www.rfc1437.de/2002/11/30/p82/Vergleich von Rollei 6008 und Hasselblad Systemhttps://www.rfc1437.de/2002/11/30/p83/Verschwörer zum Selberbastelnhttps://www.rfc1437.de/2002/11/30/p84/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/29/p79/Union bremst Hartz-Gesetze im Bundesrathttps://www.rfc1437.de/2002/11/29/p80/Pantani will zurück in den Rennsattelhttps://www.rfc1437.de/2002/11/29/p81/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/28/p74/Jürgen Möllemann Gedächtnis Bloqhttps://www.rfc1437.de/2002/11/28/p75/One of the stupidiest talks about browsershttps://www.rfc1437.de/2002/11/28/p76/Besorgnis über Neuzugang bei Microsofthttps://www.rfc1437.de/2002/11/28/p77/Doc Searlshttps://www.rfc1437.de/2002/11/28/p78/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/27/p68/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/27/p69/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/27/p70/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/27/p71/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/27/p72/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/27/p73/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/25/p67/Fotoalbum des ältesten Fotoklubs der Welt onlinehttps://www.rfc1437.de/2002/11/22/p65/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/22/p66/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/21/p63/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/21/p64/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/20/p57/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/20/p58/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/20/p59/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/20/p60/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/20/p61/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/20/p62/Ich will einehttps://www.rfc1437.de/2002/11/19/p49/Java vs. Pythonhttps://www.rfc1437.de/2002/11/19/p50/Python JIThttps://www.rfc1437.de/2002/11/19/p51/Verschwendung in Milliardenhöhehttps://www.rfc1437.de/2002/11/19/p52/Arbeitgeber beraten über Reformenhttps://www.rfc1437.de/2002/11/19/p53/Vielleicht sind wir alle schon die Insassen eines Gesamt-Irrenhauseshttps://www.rfc1437.de/2002/11/19/p54/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/19/p55/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/19/p56/Threads considered harmfullhttps://www.rfc1437.de/2002/11/18/p46/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/18/p47/3GB Compact Flashhttps://www.rfc1437.de/2002/11/18/p48/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/17/p42/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/17/p43/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/17/p44/Die Kommerzialisierung des Wissenshttps://www.rfc1437.de/2002/11/17/p45/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/16/p37/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/16/p38/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/16/p39/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/16/p40/Möllemann unter Geldwäscheverdachthttps://www.rfc1437.de/2002/11/16/p41/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/15/p32/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/15/p33/I'm doing an interesting project to backup a Radio installation into the cloud.https://www.rfc1437.de/2002/11/15/p34/Macintosh Common Lisp 5.0bhttps://www.rfc1437.de/2002/11/15/p35/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/15/p36/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/14/p29/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/14/p30/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/14/p31/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/13/p26/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/13/p27/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/13/p28/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/12/p24/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/12/p25/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/11/p22/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/11/p23/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/10/p21/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/09/p19/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/09/p20/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/08/p17/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/08/p18/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/07/p14/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/07/p15/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/07/p16/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/06/p12/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/06/p13/Chimerahttps://www.rfc1437.de/2002/11/05/p10/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/05/p11/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/05/p7/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/05/p8/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/05/p9/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/03/p2/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/03/p255/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/03/p3/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/03/p4/Beitrag ohne Titelhttps://www.rfc1437.de/2002/11/03/p5/ \ No newline at end of file diff --git a/fixtures/golden-generated-sites/rfc1437-sample/sitemap.xml b/fixtures/golden-generated-sites/rfc1437-sample/sitemap.xml index c693f03..9650a38 100644 --- a/fixtures/golden-generated-sites/rfc1437-sample/sitemap.xml +++ b/fixtures/golden-generated-sites/rfc1437-sample/sitemap.xml @@ -2,7 +2,7 @@ https://www.rfc1437.de/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 1.0 @@ -11,7 +11,7 @@ https://www.rfc1437.de/page/2/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -20,7 +20,7 @@ https://www.rfc1437.de/page/3/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -29,7 +29,7 @@ https://www.rfc1437.de/page/4/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -38,7 +38,7 @@ https://www.rfc1437.de/page/5/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -47,7 +47,7 @@ https://www.rfc1437.de/page/6/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -56,7 +56,7 @@ https://www.rfc1437.de/page/7/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -65,7 +65,7 @@ https://www.rfc1437.de/page/8/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -74,7 +74,7 @@ https://www.rfc1437.de/page/9/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -83,7 +83,7 @@ https://www.rfc1437.de/page/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -92,7 +92,7 @@ https://www.rfc1437.de/page/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -101,7 +101,7 @@ https://www.rfc1437.de/page/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -110,7 +110,7 @@ https://www.rfc1437.de/page/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -119,7 +119,7 @@ https://www.rfc1437.de/page/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -128,7 +128,7 @@ https://www.rfc1437.de/page/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -137,7 +137,7 @@ https://www.rfc1437.de/page/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -146,7 +146,7 @@ https://www.rfc1437.de/page/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -155,7 +155,7 @@ https://www.rfc1437.de/page/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -164,7 +164,7 @@ https://www.rfc1437.de/page/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -173,7 +173,7 @@ https://www.rfc1437.de/page/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -182,7 +182,7 @@ https://www.rfc1437.de/page/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -191,7 +191,7 @@ https://www.rfc1437.de/page/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -200,7 +200,7 @@ https://www.rfc1437.de/page/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -209,7 +209,7 @@ https://www.rfc1437.de/page/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -218,7 +218,7 @@ https://www.rfc1437.de/page/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -227,7 +227,7 @@ https://www.rfc1437.de/page/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -236,7 +236,7 @@ https://www.rfc1437.de/page/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -245,7 +245,7 @@ https://www.rfc1437.de/page/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -254,7 +254,7 @@ https://www.rfc1437.de/page/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -263,7 +263,7 @@ https://www.rfc1437.de/page/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -272,7 +272,7 @@ https://www.rfc1437.de/page/31/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -281,7 +281,7 @@ https://www.rfc1437.de/page/32/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -290,7 +290,7 @@ https://www.rfc1437.de/page/33/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -299,7 +299,7 @@ https://www.rfc1437.de/page/34/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -308,7 +308,7 @@ https://www.rfc1437.de/page/35/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -317,7 +317,7 @@ https://www.rfc1437.de/page/36/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -326,7 +326,7 @@ https://www.rfc1437.de/page/37/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -335,7 +335,7 @@ https://www.rfc1437.de/page/38/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -344,7 +344,7 @@ https://www.rfc1437.de/page/39/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -353,7 +353,7 @@ https://www.rfc1437.de/page/40/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -362,7 +362,7 @@ https://www.rfc1437.de/page/41/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -371,7 +371,7 @@ https://www.rfc1437.de/page/42/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -380,7 +380,7 @@ https://www.rfc1437.de/page/43/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -389,7 +389,7 @@ https://www.rfc1437.de/page/44/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -398,7 +398,7 @@ https://www.rfc1437.de/page/45/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -407,7 +407,7 @@ https://www.rfc1437.de/page/46/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -416,7 +416,7 @@ https://www.rfc1437.de/page/47/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -425,7 +425,7 @@ https://www.rfc1437.de/page/48/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -434,7 +434,7 @@ https://www.rfc1437.de/page/49/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -443,7 +443,7 @@ https://www.rfc1437.de/page/50/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -452,7 +452,7 @@ https://www.rfc1437.de/page/51/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -461,7 +461,7 @@ https://www.rfc1437.de/page/52/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -470,7 +470,7 @@ https://www.rfc1437.de/page/53/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -479,7 +479,7 @@ https://www.rfc1437.de/page/54/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -488,7 +488,7 @@ https://www.rfc1437.de/page/55/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -497,7 +497,7 @@ https://www.rfc1437.de/page/56/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -506,7 +506,7 @@ https://www.rfc1437.de/page/57/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -515,7 +515,7 @@ https://www.rfc1437.de/page/58/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -524,7 +524,7 @@ https://www.rfc1437.de/page/59/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -533,7 +533,7 @@ https://www.rfc1437.de/page/60/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -542,7 +542,7 @@ https://www.rfc1437.de/page/61/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -551,7 +551,7 @@ https://www.rfc1437.de/page/62/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -560,7 +560,7 @@ https://www.rfc1437.de/page/63/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -569,7 +569,7 @@ https://www.rfc1437.de/page/64/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -578,7 +578,7 @@ https://www.rfc1437.de/page/65/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -587,7 +587,7 @@ https://www.rfc1437.de/page/66/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -596,7 +596,7 @@ https://www.rfc1437.de/page/67/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -605,7 +605,7 @@ https://www.rfc1437.de/page/68/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -614,7 +614,7 @@ https://www.rfc1437.de/page/69/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -623,7 +623,7 @@ https://www.rfc1437.de/page/70/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -632,7 +632,7 @@ https://www.rfc1437.de/page/71/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -641,7 +641,7 @@ https://www.rfc1437.de/page/72/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -650,7 +650,7 @@ https://www.rfc1437.de/page/73/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -659,7 +659,7 @@ https://www.rfc1437.de/page/74/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -668,7 +668,7 @@ https://www.rfc1437.de/page/75/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -677,7 +677,7 @@ https://www.rfc1437.de/page/76/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -686,7 +686,7 @@ https://www.rfc1437.de/page/77/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -695,7 +695,7 @@ https://www.rfc1437.de/page/78/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -704,7 +704,7 @@ https://www.rfc1437.de/page/79/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -713,7 +713,7 @@ https://www.rfc1437.de/page/80/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -722,7 +722,7 @@ https://www.rfc1437.de/page/81/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -731,7 +731,7 @@ https://www.rfc1437.de/page/82/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -740,7 +740,7 @@ https://www.rfc1437.de/page/83/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -749,7 +749,7 @@ https://www.rfc1437.de/page/84/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -758,7 +758,7 @@ https://www.rfc1437.de/page/85/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -767,7 +767,7 @@ https://www.rfc1437.de/page/86/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -776,7 +776,7 @@ https://www.rfc1437.de/page/87/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -785,7 +785,7 @@ https://www.rfc1437.de/page/88/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -794,7 +794,7 @@ https://www.rfc1437.de/page/89/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -803,7 +803,7 @@ https://www.rfc1437.de/page/90/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -812,7 +812,7 @@ https://www.rfc1437.de/page/91/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -821,7 +821,7 @@ https://www.rfc1437.de/page/92/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -830,7 +830,7 @@ https://www.rfc1437.de/page/93/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -839,7 +839,7 @@ https://www.rfc1437.de/page/94/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -848,7 +848,7 @@ https://www.rfc1437.de/page/95/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -857,7 +857,7 @@ https://www.rfc1437.de/page/96/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -866,7 +866,7 @@ https://www.rfc1437.de/page/97/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -875,7 +875,7 @@ https://www.rfc1437.de/page/98/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -884,7 +884,7 @@ https://www.rfc1437.de/page/99/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -893,7 +893,7 @@ https://www.rfc1437.de/page/100/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -902,7 +902,7 @@ https://www.rfc1437.de/page/101/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -911,7 +911,7 @@ https://www.rfc1437.de/page/102/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -920,7 +920,7 @@ https://www.rfc1437.de/page/103/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -929,7 +929,7 @@ https://www.rfc1437.de/page/104/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -938,7 +938,7 @@ https://www.rfc1437.de/page/105/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -947,7 +947,7 @@ https://www.rfc1437.de/page/106/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -956,7 +956,7 @@ https://www.rfc1437.de/page/107/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -965,7 +965,7 @@ https://www.rfc1437.de/page/108/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -974,7 +974,7 @@ https://www.rfc1437.de/page/109/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -983,7 +983,7 @@ https://www.rfc1437.de/page/110/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -992,7 +992,7 @@ https://www.rfc1437.de/page/111/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1001,7 +1001,7 @@ https://www.rfc1437.de/page/112/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1010,7 +1010,7 @@ https://www.rfc1437.de/page/113/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1019,7 +1019,7 @@ https://www.rfc1437.de/page/114/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1028,7 +1028,7 @@ https://www.rfc1437.de/page/115/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1037,7 +1037,7 @@ https://www.rfc1437.de/page/116/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1046,7 +1046,7 @@ https://www.rfc1437.de/page/117/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1055,7 +1055,7 @@ https://www.rfc1437.de/page/118/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1064,7 +1064,7 @@ https://www.rfc1437.de/page/119/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1073,7 +1073,7 @@ https://www.rfc1437.de/page/120/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1082,7 +1082,7 @@ https://www.rfc1437.de/page/121/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1091,7 +1091,7 @@ https://www.rfc1437.de/page/122/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1100,7 +1100,7 @@ https://www.rfc1437.de/page/123/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1109,7 +1109,7 @@ https://www.rfc1437.de/page/124/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1118,7 +1118,7 @@ https://www.rfc1437.de/page/125/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1127,7 +1127,7 @@ https://www.rfc1437.de/page/126/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1136,7 +1136,7 @@ https://www.rfc1437.de/page/127/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1145,7 +1145,7 @@ https://www.rfc1437.de/page/128/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1154,7 +1154,7 @@ https://www.rfc1437.de/page/129/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1163,7 +1163,7 @@ https://www.rfc1437.de/page/130/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1172,7 +1172,7 @@ https://www.rfc1437.de/page/131/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1181,7 +1181,7 @@ https://www.rfc1437.de/page/132/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1190,7 +1190,7 @@ https://www.rfc1437.de/page/133/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1199,7 +1199,7 @@ https://www.rfc1437.de/page/134/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1208,7 +1208,7 @@ https://www.rfc1437.de/page/135/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1217,7 +1217,7 @@ https://www.rfc1437.de/page/136/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1226,7 +1226,7 @@ https://www.rfc1437.de/page/137/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1235,7 +1235,7 @@ https://www.rfc1437.de/page/138/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1244,7 +1244,7 @@ https://www.rfc1437.de/page/139/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1253,7 +1253,7 @@ https://www.rfc1437.de/page/140/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1262,7 +1262,7 @@ https://www.rfc1437.de/page/141/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1271,7 +1271,7 @@ https://www.rfc1437.de/page/142/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1280,7 +1280,7 @@ https://www.rfc1437.de/page/143/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1289,7 +1289,7 @@ https://www.rfc1437.de/page/144/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1298,7 +1298,7 @@ https://www.rfc1437.de/page/145/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1307,7 +1307,7 @@ https://www.rfc1437.de/page/146/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1316,7 +1316,7 @@ https://www.rfc1437.de/page/147/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1325,7 +1325,7 @@ https://www.rfc1437.de/page/148/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1334,7 +1334,7 @@ https://www.rfc1437.de/page/149/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1343,7 +1343,7 @@ https://www.rfc1437.de/page/150/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1352,7 +1352,7 @@ https://www.rfc1437.de/page/151/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1361,7 +1361,7 @@ https://www.rfc1437.de/page/152/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1370,7 +1370,7 @@ https://www.rfc1437.de/page/153/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1379,7 +1379,7 @@ https://www.rfc1437.de/page/154/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1388,7 +1388,7 @@ https://www.rfc1437.de/page/155/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1397,7 +1397,7 @@ https://www.rfc1437.de/page/156/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1406,7 +1406,7 @@ https://www.rfc1437.de/page/157/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1415,7 +1415,7 @@ https://www.rfc1437.de/page/158/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1424,7 +1424,7 @@ https://www.rfc1437.de/page/159/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1433,7 +1433,7 @@ https://www.rfc1437.de/page/160/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1442,7 +1442,7 @@ https://www.rfc1437.de/page/161/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1451,7 +1451,7 @@ https://www.rfc1437.de/page/162/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1460,7 +1460,7 @@ https://www.rfc1437.de/page/163/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1469,7 +1469,7 @@ https://www.rfc1437.de/page/164/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1478,7 +1478,7 @@ https://www.rfc1437.de/page/165/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1487,7 +1487,7 @@ https://www.rfc1437.de/page/166/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1496,7 +1496,7 @@ https://www.rfc1437.de/page/167/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1505,7 +1505,7 @@ https://www.rfc1437.de/page/168/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1514,7 +1514,7 @@ https://www.rfc1437.de/page/169/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1523,7 +1523,7 @@ https://www.rfc1437.de/page/170/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1532,7 +1532,7 @@ https://www.rfc1437.de/page/171/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1541,7 +1541,7 @@ https://www.rfc1437.de/page/172/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1550,7 +1550,7 @@ https://www.rfc1437.de/page/173/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1559,7 +1559,7 @@ https://www.rfc1437.de/page/174/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1568,7 +1568,7 @@ https://www.rfc1437.de/page/175/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1577,7 +1577,7 @@ https://www.rfc1437.de/page/176/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1586,7 +1586,7 @@ https://www.rfc1437.de/page/177/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1595,7 +1595,7 @@ https://www.rfc1437.de/page/178/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1604,7 +1604,7 @@ https://www.rfc1437.de/page/179/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1613,7 +1613,7 @@ https://www.rfc1437.de/page/180/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1622,7 +1622,7 @@ https://www.rfc1437.de/page/181/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1631,7 +1631,7 @@ https://www.rfc1437.de/page/182/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1640,7 +1640,7 @@ https://www.rfc1437.de/page/183/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1649,7 +1649,7 @@ https://www.rfc1437.de/page/184/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1658,7 +1658,7 @@ https://www.rfc1437.de/page/185/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1667,7 +1667,7 @@ https://www.rfc1437.de/page/186/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1676,7 +1676,7 @@ https://www.rfc1437.de/page/187/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1685,7 +1685,7 @@ https://www.rfc1437.de/page/188/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1694,7 +1694,7 @@ https://www.rfc1437.de/page/189/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1703,7 +1703,7 @@ https://www.rfc1437.de/page/190/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1712,7 +1712,7 @@ https://www.rfc1437.de/page/191/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1721,7 +1721,7 @@ https://www.rfc1437.de/page/192/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1730,7 +1730,7 @@ https://www.rfc1437.de/page/193/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1739,7 +1739,7 @@ https://www.rfc1437.de/page/194/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1748,7 +1748,7 @@ https://www.rfc1437.de/page/195/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1757,7 +1757,7 @@ https://www.rfc1437.de/page/196/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1766,7 +1766,7 @@ https://www.rfc1437.de/page/197/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1775,7 +1775,7 @@ https://www.rfc1437.de/page/198/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1784,7 +1784,7 @@ https://www.rfc1437.de/page/199/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1793,7 +1793,7 @@ https://www.rfc1437.de/page/200/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1802,7 +1802,7 @@ https://www.rfc1437.de/page/201/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1811,7 +1811,7 @@ https://www.rfc1437.de/page/202/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1820,7 +1820,7 @@ https://www.rfc1437.de/page/203/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1829,7 +1829,7 @@ https://www.rfc1437.de/page/204/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1838,7 +1838,7 @@ https://www.rfc1437.de/page/205/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 @@ -1847,16 +1847,205 @@ https://www.rfc1437.de/page/206/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z daily 0.9 + + https://www.rfc1437.de/2026/07/17/mlx-community-thinkingcap-qwen3-6-27b-optiq-4bit-hugging-face/ + 2026-07-17T15:40:06.464Z + monthly + 0.8 + + + + + + https://www.rfc1437.de/2026/07/17/hunk-review-first-terminal-diff-viewer/ + 2026-07-17T07:45:55.416Z + monthly + 0.8 + + + + + + https://www.rfc1437.de/2026/07/17/herdr-one-terminal-for-the-whole-herd/ + 2026-07-17T07:40:59.294Z + monthly + 0.8 + + + + + + https://www.rfc1437.de/2026/07/14/justvugg-colibri-run-glm-5-2-744b-moe-on-a-25gb-ram-consumer-machine-pure-c-zero-deps-experts-streamed-from-disk-tiny-engine-immense-model/ + 2026-07-14T18:44:08.917Z + monthly + 0.8 + + + + + + https://www.rfc1437.de/2026/07/13/567-labs-instructor-structured-outputs-for-llms/ + 2026-07-13T08:53:05.323Z + monthly + 0.8 + + + + + + https://www.rfc1437.de/2026/07/13/dottxt-ai-outlines-structured-outputs/ + 2026-07-13T08:50:04.793Z + monthly + 0.8 + + + + + + https://www.rfc1437.de/2026/07/13/datalab-to-marker-convert-pdf-to-markdown-json-quickly-with-high-accuracy/ + 2026-07-13T08:44:37.846Z + monthly + 0.8 + + + + + + https://www.rfc1437.de/2026/07/06/jakobdylanc-llmcord-make-discord-your-llm-frontend-supports-any-openai-compatible-api-openrouter-ollama-and-more/ + 2026-07-06T18:14:01.222Z + monthly + 0.8 + + + + + + https://www.rfc1437.de/2026/07/06/forest-shuffle/ + 2026-07-06T10:56:02.062Z + monthly + 0.8 + + + + + + https://www.rfc1437.de/2026/07/05/lmcache-building-the-foundation-of-ai-memory-tensor-with-kv-cache-infrastructure/ + 2026-07-05T06:56:19.865Z + monthly + 0.8 + + + + + + https://www.rfc1437.de/2026/06/30/supacode/ + 2026-06-30T20:32:36.959Z + monthly + 0.8 + + + + + + https://www.rfc1437.de/2026/06/30/deepreinforce-ai-ornith-1-0-35b-hugging-face/ + 2026-07-02T06:56:02.304Z + monthly + 0.8 + + + + + + https://www.rfc1437.de/2026/06/21/dietrichgebert-ponytail-makes-your-ai-agent-think-like-the-laziest-senior-dev-in-the-room-the-best-code-is-the-code-you-never-wrote/ + 2026-06-21T10:23:36.612Z + monthly + 0.8 + + + + + + https://www.rfc1437.de/2026/06/20/abarthjoe-qwopus3-6-27b-v2-oq8-mtp-hugging-face/ + 2026-06-20T18:43:20.520Z + monthly + 0.8 + + + + + + https://www.rfc1437.de/2026/06/18/antirez-ds4-deepseek-4-flash-and-pro-local-inference-engine-for-metal-cuda-and-rocm/ + 2026-06-18T20:17:13.134Z + monthly + 0.8 + + + + + + https://www.rfc1437.de/2026/05/30/omlx-llm-inference-optimized-for-your-mac/ + 2026-07-02T12:51:48.211Z + monthly + 0.8 + + + + + + https://www.rfc1437.de/2026/05/29/mtplx-twice-as-fast-on-mlx/ + 2026-05-29T16:54:33.278Z + monthly + 0.8 + + + + + + https://www.rfc1437.de/2026/05/28/home-livebook-dev/ + 2026-05-29T16:54:52.793Z + monthly + 0.8 + + + + + + https://www.rfc1437.de/2026/04/27/opencode/ + 2026-04-27T18:58:08.443Z + monthly + 0.8 + + + + + + https://www.rfc1437.de/2026/04/10/dicklesworthstone-pi-agent-rust-high-performance-ai-coding-agent-cli-written-in-rust-with-zero-unsafe-code/ + 2026-04-10T07:58:29.914Z + monthly + 0.8 + + + + + + https://www.rfc1437.de/2026/04/04/nearai-ironclaw-ironclaw-is-openclaw-inspired-implementation-in-rust-focused-on-privacy-and-security/ + 2026-04-04T17:32:42.839Z + monthly + 0.8 + + + + https://www.rfc1437.de/2026/04/01/stonerl-thaw-menu-bar-manager-for-macos-26/ - 2026-04-01T07:44:13.000Z + 2026-04-01T07:44:13.146Z monthly 0.8 @@ -1865,7 +2054,7 @@ https://www.rfc1437.de/2026/03/29/fission-ai-openspec-spec-driven-development-sdd-for-ai-coding-assistants/ - 2026-03-29T06:33:55.000Z + 2026-03-29T06:33:55.683Z monthly 0.8 @@ -1874,7 +2063,7 @@ https://www.rfc1437.de/2026/03/27/juxt-allium-a-language-for-sharpening-intent-alongside-implementation/ - 2026-03-27T19:52:40.000Z + 2026-03-27T19:52:40.983Z monthly 0.8 @@ -1883,7 +2072,7 @@ https://www.rfc1437.de/2026/03/27/scitrera-cuda-containers-scitrera-builds-of-various-cuda-containers-for-version-consistency-starting-primarily-with-nvidia-dgx-spark-containers/ - 2026-03-27T14:50:59.000Z + 2026-03-27T14:50:59.930Z monthly 0.8 @@ -1892,7 +2081,7 @@ https://www.rfc1437.de/2026/03/27/thushan-olla-high-performance-lightweight-proxy-and-load-balancer-for-llm-infrastructure-intelligent-routing-automatic-failover-and-unified-model-discovery-across-local-and-remote-inference-backend/ - 2026-03-27T14:45:57.000Z + 2026-03-27T14:45:57.111Z monthly 0.8 @@ -1901,7 +2090,7 @@ https://www.rfc1437.de/2026/03/25/running-mistral-small-4-119b-nvfp4-on-nvidia-dgx-spark-gb10-dgx-spark-gb10-user-forum-dgx-spark-gb10-nvidia-developer-forums/ - 2026-03-25T11:03:25.000Z + 2026-03-25T11:03:25.926Z monthly 0.8 @@ -1910,7 +2099,7 @@ https://www.rfc1437.de/2026/03/22/zed-the-fastest-ai-code-editor-zed-s-blog/ - 2026-03-22T19:21:46.000Z + 2026-03-22T19:21:46.158Z monthly 0.8 @@ -1919,7 +2108,7 @@ https://www.rfc1437.de/2026/03/22/introducing-mistral-small-4-mistral-ai/ - 2026-03-22T13:00:34.000Z + 2026-03-22T13:00:34.680Z monthly 0.8 @@ -1928,7 +2117,7 @@ https://www.rfc1437.de/2026/03/22/nvidia-nvidia-nemotron-3-super-120b-a12b-nvfp4-hugging-face/ - 2026-03-22T09:49:11.000Z + 2026-03-22T09:49:11.144Z monthly 0.8 @@ -1937,7 +2126,7 @@ https://www.rfc1437.de/2026/03/22/wireguard-r-for-enterprise/ - 2026-03-22T10:01:43.000Z + 2026-03-22T10:01:43.833Z monthly 0.8 @@ -1946,7 +2135,7 @@ https://www.rfc1437.de/2026/03/22/asus-ascent-gx10-asus-deutschland/ - 2026-03-25T11:03:48.000Z + 2026-03-25T11:03:48.688Z monthly 0.8 @@ -1955,7 +2144,7 @@ https://www.rfc1437.de/2026/03/19/topoteretes-cognee-knowledge-engine-for-ai-agent-memory-in-6-lines-of-code/ - 2026-03-19T18:22:06.000Z + 2026-03-19T18:22:06.063Z monthly 0.8 @@ -1964,7 +2153,7 @@ https://www.rfc1437.de/2026/03/19/docker-model-runner-adds-vllm-support-on-macos-docker/ - 2026-03-19T18:09:35.000Z + 2026-03-19T18:09:35.635Z monthly 0.8 @@ -1973,7 +2162,7 @@ https://www.rfc1437.de/2026/03/18/rfc1437-mlxserver-a-simple-mlx-based-server-for-small-models-to-run-locally/ - 2026-03-18T08:49:59.000Z + 2026-03-18T08:49:59.796Z monthly 0.8 @@ -1982,7 +2171,7 @@ https://www.rfc1437.de/2026/03/18/qwen3-5-9b-mlx-perfekt-fur-macbook-air-m4/ - 2026-03-18T08:49:39.000Z + 2026-03-18T08:49:39.790Z monthly 0.8 @@ -1991,7 +2180,7 @@ https://www.rfc1437.de/2026/03/16/google-gemma-3-4b-it-hugging-face/ - 2026-03-16T20:32:58.000Z + 2026-03-16T20:32:58.297Z monthly 0.8 @@ -2000,7 +2189,7 @@ https://www.rfc1437.de/2026/03/15/inferencer-run-and-deeply-control-local-ai-models/ - 2026-03-15T16:18:42.000Z + 2026-03-15T16:18:42.021Z monthly 0.8 @@ -2009,7 +2198,7 @@ https://www.rfc1437.de/2026/03/15/pagefind-pagefind-static-low-bandwidth-search-at-scale/ - 2026-03-15T09:36:46.000Z + 2026-03-15T09:36:46.023Z monthly 0.8 @@ -2018,7 +2207,7 @@ https://www.rfc1437.de/2026/03/14/pi-dev/ - 2026-03-14T20:38:58.000Z + 2026-03-14T20:38:58.069Z monthly 0.8 @@ -2027,7 +2216,7 @@ https://www.rfc1437.de/2026/03/13/steveyegge-beads-beads-a-memory-upgrade-for-your-coding-agent/ - 2026-03-13T16:10:34.000Z + 2026-03-13T16:10:34.461Z monthly 0.8 @@ -2036,7 +2225,7 @@ https://www.rfc1437.de/2026/03/13/dolthub-doltgresql-doltgresql-version-controlled-postgresql/ - 2026-03-13T15:17:32.000Z + 2026-03-13T15:17:32.837Z monthly 0.8 @@ -2045,7 +2234,7 @@ https://www.rfc1437.de/2026/03/13/dolthub-dolt-dolt-git-for-data/ - 2026-03-13T15:17:25.000Z + 2026-03-13T15:17:25.818Z monthly 0.8 @@ -2054,7 +2243,7 @@ https://www.rfc1437.de/2026/03/13/paperclipai-paperclip-open-source-orchestration-for-zero-human-companies/ - 2026-03-13T15:08:58.000Z + 2026-03-13T15:08:58.943Z monthly 0.8 @@ -2063,7 +2252,7 @@ https://www.rfc1437.de/2026/03/13/ghostty/ - 2026-03-13T11:59:19.000Z + 2026-03-13T11:59:19.243Z monthly 0.8 @@ -2072,7 +2261,7 @@ https://www.rfc1437.de/2026/03/13/cmux-das-terminal-fur-multitasking/ - 2026-03-13T07:23:52.000Z + 2026-03-13T07:23:52.277Z monthly 0.8 @@ -2081,7 +2270,7 @@ https://www.rfc1437.de/2026/03/12/nuget-gallery-photino-blazor-customwindow-1-3-1/ - 2026-03-13T07:21:55.000Z + 2026-03-13T07:21:55.448Z monthly 0.8 @@ -2090,7 +2279,7 @@ https://www.rfc1437.de/2026/03/08/bilderarchiv-2003/ - 2026-03-08T13:26:58.000Z + 2026-03-08T13:26:58.210Z monthly 0.8 @@ -2099,7 +2288,7 @@ https://www.rfc1437.de/2026/03/08/bilderarchiv-2004/ - 2026-03-08T13:27:10.000Z + 2026-03-08T13:27:10.935Z monthly 0.8 @@ -2108,7 +2297,7 @@ https://www.rfc1437.de/2026/03/08/bilderarchiv-2005/ - 2026-03-08T13:27:20.000Z + 2026-03-08T13:27:20.604Z monthly 0.8 @@ -2117,7 +2306,7 @@ https://www.rfc1437.de/2026/03/08/bilderarchiv-2008/ - 2026-03-08T13:27:30.000Z + 2026-03-08T13:27:30.993Z monthly 0.8 @@ -2126,7 +2315,7 @@ https://www.rfc1437.de/2026/03/08/bilderarchiv-2009/ - 2026-03-08T13:27:41.000Z + 2026-03-08T13:27:41.612Z monthly 0.8 @@ -2135,7 +2324,7 @@ https://www.rfc1437.de/2026/03/07/openclaw-memory-masterclass-the-complete-guide-to-agent-memory-that-survives-velvetshark/ - 2026-03-08T16:29:16.000Z + 2026-03-08T16:29:16.876Z monthly 0.8 @@ -2144,7 +2333,7 @@ https://www.rfc1437.de/2026/03/05/unum-cloud-usearch-fast-open-source-search-clustering-engine-x-for-vectors-arbitrary-objects-x-in-c-c-python-javascript-rust-java-objective-c-swift-c-golang-and-wolfram/ - 2026-03-08T17:01:36.000Z + 2026-03-08T17:01:36.821Z monthly 0.8 @@ -2153,7 +2342,7 @@ https://www.rfc1437.de/2026/03/02/waybarrios-vllm-mlx-openai-and-anthropic-compatible-server-for-apple-silicon/ - 2026-03-08T16:29:28.000Z + 2026-03-08T16:29:28.758Z monthly 0.8 @@ -2162,7 +2351,7 @@ https://www.rfc1437.de/2026/03/02/mlx-community-gemma-3-12b-it-4bit-hugging-face/ - 2026-03-08T16:29:35.000Z + 2026-03-08T16:29:35.351Z monthly 0.8 @@ -2171,7 +2360,7 @@ https://www.rfc1437.de/2026/03/01/models-dev-an-open-source-database-of-ai-models/ - 2026-03-08T16:29:42.000Z + 2026-03-08T16:29:42.010Z monthly 0.8 @@ -2180,7 +2369,7 @@ https://www.rfc1437.de/2026/03/01/ollama/ - 2026-03-08T16:29:46.000Z + 2026-03-08T16:29:46.977Z monthly 0.8 @@ -2189,7 +2378,7 @@ https://www.rfc1437.de/2026/02/28/mistralai-mistral-vibe-minimal-cli-coding-agent-by-mistral/ - 2026-03-08T16:29:55.000Z + 2026-03-08T16:29:55.511Z monthly 0.8 @@ -2198,7 +2387,7 @@ https://www.rfc1437.de/2026/02/28/ai-studio-mistral-ai/ - 2026-03-08T16:30:01.000Z + 2026-03-08T16:30:01.480Z monthly 0.8 @@ -2207,7 +2396,7 @@ https://www.rfc1437.de/2026/02/28/zk-i-zettel-1-1-niklas-luhmann-archiv/ - 2026-03-08T16:30:07.000Z + 2026-03-08T16:30:07.111Z monthly 0.8 @@ -2216,7 +2405,7 @@ https://www.rfc1437.de/2026/02/28/schritt-f-r-schritt-eine-tag-wolke-als-python-makro/ - 2026-03-07T21:06:28.000Z + 2026-03-07T21:06:28.761Z monthly 0.8 @@ -2225,7 +2414,7 @@ https://www.rfc1437.de/2026/02/28/agent-ui-standards-multiply-mcp-apps-and-google-s-a2ui-richard-macmanus/ - 2026-03-08T16:30:13.000Z + 2026-03-08T16:30:13.910Z monthly 0.8 @@ -2234,7 +2423,7 @@ https://www.rfc1437.de/2026/02/27/was-ist-bds/ - 2026-03-08T16:30:19.000Z + 2026-03-08T16:30:19.183Z monthly 0.8 @@ -2243,7 +2432,7 @@ https://www.rfc1437.de/2026/02/27/wiki/ - 2026-03-08T16:30:28.000Z + 2026-03-08T16:30:28.557Z monthly 0.8 @@ -2252,7 +2441,7 @@ https://www.rfc1437.de/2026/02/27/cloudflare-cobweb-cobol-to-webassembly-compiler/ - 2026-03-08T16:30:38.000Z + 2026-03-08T16:30:38.738Z monthly 0.8 @@ -2261,7 +2450,7 @@ https://www.rfc1437.de/2026/02/27/pyodide/ - 2026-03-08T16:30:43.000Z + 2026-03-08T16:30:43.286Z monthly 0.8 @@ -2270,7 +2459,7 @@ https://www.rfc1437.de/2026/02/27/drizzle-orm-why-drizzle/ - 2026-03-08T16:30:48.000Z + 2026-03-08T16:30:48.323Z monthly 0.8 @@ -2279,7 +2468,7 @@ https://www.rfc1437.de/2026/02/27/a2ui/ - 2026-03-08T16:30:53.000Z + 2026-03-08T16:30:53.175Z monthly 0.8 @@ -2288,7 +2477,7 @@ https://www.rfc1437.de/2026/02/23/waggle-dance/ - 2026-03-08T16:30:57.000Z + 2026-03-08T16:30:57.646Z monthly 0.8 @@ -2297,7 +2486,7 @@ https://www.rfc1437.de/2026/02/22/opencode-der-open-source-ai-coding-agent/ - 2026-03-08T16:31:02.000Z + 2026-03-08T16:31:02.191Z monthly 0.8 @@ -2306,7 +2495,7 @@ https://www.rfc1437.de/2026/02/22/steve-yegge-on-vibe-coding/ - 2026-03-08T16:31:06.000Z + 2026-03-08T16:31:06.925Z monthly 0.8 @@ -2315,7 +2504,7 @@ https://www.rfc1437.de/2026/02/22/neue-software-langsam-benutzbar/ - 2026-03-08T16:31:11.000Z + 2026-03-08T16:31:11.865Z monthly 0.8 @@ -2324,7 +2513,7 @@ https://www.rfc1437.de/2026/02/20/tag-cloud/ - 2026-03-07T21:06:29.000Z + 2026-03-07T21:06:29.584Z monthly 0.8 @@ -2333,7 +2522,7 @@ https://www.rfc1437.de/2026/02/16/blogging-desktop-server/ - 2026-03-08T16:31:16.000Z + 2026-03-08T16:31:16.920Z monthly 0.8 @@ -2342,7 +2531,7 @@ https://www.rfc1437.de/2023/08/27/schotten-totten-2-board-game-boardgamegeek/ - 2026-03-08T16:31:57.000Z + 2026-03-08T16:31:57.129Z monthly 0.8 @@ -2351,7 +2540,7 @@ https://www.rfc1437.de/2023/08/27/tak-board-game-boardgamegeek/ - 2026-03-08T16:31:23.000Z + 2026-03-08T16:31:23.773Z monthly 0.8 @@ -2360,7 +2549,7 @@ https://www.rfc1437.de/2023/08/27/in-depth-tutorial-how-to-set-up-2fa-totp-with-keepassxc-aegis-and-authy-linux-org/ - 2026-03-08T16:32:01.000Z + 2026-03-08T16:32:01.246Z monthly 0.8 @@ -2369,7 +2558,7 @@ https://www.rfc1437.de/2023/08/19/mal-wieder-auf-linux/ - 2026-03-08T16:32:06.000Z + 2026-03-08T16:32:06.331Z monthly 0.8 @@ -2378,7 +2567,7 @@ https://www.rfc1437.de/2022/11/11/autumn-leaves/ - 2026-03-07T21:06:30.000Z + 2026-03-07T21:06:30.306Z monthly 0.8 @@ -2387,7 +2576,7 @@ https://www.rfc1437.de/2022/11/06/prime-time-for-prime-slime/ - 2026-03-07T21:06:31.000Z + 2026-03-07T21:06:31.840Z monthly 0.8 @@ -2396,7 +2585,7 @@ https://www.rfc1437.de/2022/11/05/bilderarchiv-2022/ - 2026-03-08T16:32:11.000Z + 2026-03-08T16:32:11.101Z monthly 0.8 @@ -2405,7 +2594,7 @@ https://www.rfc1437.de/2022/11/05/kaalia-of-the-blast/ - 2026-03-07T21:06:36.000Z + 2026-03-07T21:06:36.850Z monthly 0.8 @@ -2414,7 +2603,7 @@ https://www.rfc1437.de/2022/08/22/abdel-agent-of-the-iron-throne-commander-edh-agent-of-the-iron-throne-and-abdel-adrian-gorions-ward-deck-list-mtg-moxfield-an-mtg-deck-builder-site-for-magic-the-gathering/ - 2026-03-08T16:32:16.000Z + 2026-03-08T16:32:16.878Z monthly 0.8 @@ -2423,7 +2612,7 @@ https://www.rfc1437.de/2021/01/14/dargo-for-the-lulz/ - 2026-03-08T16:32:20.000Z + 2026-03-08T16:32:20.844Z monthly 0.8 @@ -2432,7 +2621,7 @@ https://www.rfc1437.de/2020/03/27/brettspielrunde-wie-macht-man-das-in-zeiten-von-corona/ - 2026-03-08T16:32:35.000Z + 2026-03-08T16:32:35.550Z monthly 0.8 @@ -2441,7 +2630,7 @@ https://www.rfc1437.de/2020/03/24/svb-brettspielrunde-im-internet/ - 2026-03-08T16:32:45.000Z + 2026-03-08T16:32:45.220Z monthly 0.8 @@ -2450,7 +2639,7 @@ https://www.rfc1437.de/2020/03/13/jhoira-scrap-that-commander-edh-mtg-deck/ - 2026-03-08T16:32:49.000Z + 2026-03-08T16:32:49.345Z monthly 0.8 @@ -2459,7 +2648,7 @@ https://www.rfc1437.de/2020/02/20/rurik-dawn-of-kiev/ - 2026-03-08T16:32:54.000Z + 2026-03-08T16:32:54.440Z monthly 0.8 @@ -2468,7 +2657,7 @@ https://www.rfc1437.de/2020/02/20/bears-on-a-plane-commander-edh-mtg-deck/ - 2026-03-08T16:33:00.000Z + 2026-03-08T16:33:00.179Z monthly 0.8 @@ -2477,7 +2666,7 @@ https://www.rfc1437.de/2019/11/08/tin-elves-commander-edh-mtg-deck/ - 2026-03-08T16:33:03.000Z + 2026-03-08T16:33:03.345Z monthly 0.8 @@ -2486,7 +2675,7 @@ https://www.rfc1437.de/2019/11/08/wingspan/ - 2026-03-08T16:33:08.000Z + 2026-03-08T16:33:08.561Z monthly 0.8 @@ -2495,7 +2684,7 @@ https://www.rfc1437.de/2019/08/20/golos-combo-pilgrim-commander-edh-mtg-deck/ - 2026-03-08T16:33:12.000Z + 2026-03-08T16:33:12.763Z monthly 0.8 @@ -2504,7 +2693,7 @@ https://www.rfc1437.de/2019/08/02/marvel-champions-fantasy-flight-games/ - 2026-03-08T16:33:16.000Z + 2026-03-08T16:33:16.934Z monthly 0.8 @@ -2513,7 +2702,7 @@ https://www.rfc1437.de/2019/06/28/pauper-comes-to-paper-magic-the-gathering/ - 2026-03-08T16:33:22.000Z + 2026-03-08T16:33:22.002Z monthly 0.8 @@ -2522,7 +2711,7 @@ https://www.rfc1437.de/2019/06/03/the-london-mulligan-magic-the-gathering/ - 2026-03-02T16:35:06.000Z + 2026-03-02T16:35:06.405Z monthly 0.8 @@ -2531,7 +2720,7 @@ https://www.rfc1437.de/2019/05/20/a-force-to-be-reckoned-with-article-by-jim-davis/ - 2026-03-02T16:35:10.000Z + 2026-03-02T16:35:10.909Z monthly 0.8 @@ -2540,7 +2729,7 @@ https://www.rfc1437.de/2019/05/20/may-20-2019-banned-and-restricted-announcement-magic-the-gathering/ - 2026-03-02T16:35:15.000Z + 2026-03-02T16:35:15.410Z monthly 0.8 @@ -2549,7 +2738,7 @@ https://www.rfc1437.de/2019/04/25/metaowl-is-gone/ - 2026-03-02T16:35:19.000Z + 2026-03-02T16:35:19.247Z monthly 0.8 @@ -2558,7 +2747,7 @@ https://www.rfc1437.de/2019/02/22/mythic-championship-ii-format-and-the-london-mulligan-test/ - 2026-03-02T16:35:23.000Z + 2026-03-02T16:35:23.477Z monthly 0.8 @@ -2567,7 +2756,7 @@ https://www.rfc1437.de/2018/11/14/the-ninth-world-a-skillbuilding-game-for-numenera/ - 2026-03-02T16:35:28.000Z + 2026-03-02T16:35:28.031Z monthly 0.8 @@ -2576,7 +2765,7 @@ https://www.rfc1437.de/2018/11/12/too-many-bones-undertow/ - 2026-03-02T16:35:32.000Z + 2026-03-02T16:35:32.258Z monthly 0.8 @@ -2585,7 +2774,7 @@ https://www.rfc1437.de/2018/11/10/petrichor/ - 2026-03-02T16:35:36.000Z + 2026-03-02T16:35:36.509Z monthly 0.8 @@ -2594,7 +2783,7 @@ https://www.rfc1437.de/2018/11/08/architects-of-the-west-kingdom/ - 2026-03-02T16:35:40.000Z + 2026-03-02T16:35:40.979Z monthly 0.8 @@ -2603,7 +2792,7 @@ https://www.rfc1437.de/2018/08/03/iron-curtain/ - 2026-03-02T16:35:45.000Z + 2026-03-02T16:35:45.534Z monthly 0.8 @@ -2612,7 +2801,7 @@ https://www.rfc1437.de/2018/08/03/ethnos/ - 2026-03-02T16:35:49.000Z + 2026-03-02T16:35:49.738Z monthly 0.8 @@ -2621,7 +2810,7 @@ https://www.rfc1437.de/2018/06/27/renegade/ - 2026-03-02T16:35:54.000Z + 2026-03-02T16:35:54.006Z monthly 0.8 @@ -2630,7 +2819,7 @@ https://www.rfc1437.de/2018/06/13/one-deck-dungeon-forest-of-shadows/ - 2026-03-02T16:35:58.000Z + 2026-03-02T16:35:58.643Z monthly 0.8 @@ -2639,7 +2828,7 @@ https://www.rfc1437.de/2018/06/12/wars-of-marcus-aurelius-rome-170-180ce/ - 2026-03-02T16:36:03.000Z + 2026-03-02T16:36:03.155Z monthly 0.8 @@ -2648,7 +2837,7 @@ https://www.rfc1437.de/2018/06/11/fields-of-green/ - 2026-03-02T16:36:07.000Z + 2026-03-02T16:36:07.483Z monthly 0.8 @@ -2657,7 +2846,7 @@ https://www.rfc1437.de/2018/05/25/innovation/ - 2026-03-02T16:36:11.000Z + 2026-03-02T16:36:11.671Z monthly 0.8 @@ -2666,7 +2855,7 @@ https://www.rfc1437.de/2018/01/03/kernel-memory-leaking-intel-processor-design-flaw-forces-linux-windows-redesign-e2-80-a2-the-register/ - 2026-03-02T16:36:15.000Z + 2026-03-02T16:36:15.665Z monthly 0.8 @@ -2675,7 +2864,7 @@ https://www.rfc1437.de/2017/11/25/codenames-duet/ - 2026-03-02T16:36:20.000Z + 2026-03-02T16:36:20.434Z monthly 0.8 @@ -2684,7 +2873,7 @@ https://www.rfc1437.de/2017/11/24/battle-line/ - 2026-03-02T16:36:24.000Z + 2026-03-02T16:36:24.847Z monthly 0.8 @@ -2693,7 +2882,7 @@ https://www.rfc1437.de/2017/11/23/viticulture-essential-edition/ - 2026-03-02T16:36:29.000Z + 2026-03-02T16:36:29.121Z monthly 0.8 @@ -2702,7 +2891,7 @@ https://www.rfc1437.de/2017/11/22/godforsaken-scavengers/ - 2026-03-02T16:36:33.000Z + 2026-03-02T16:36:33.722Z monthly 0.8 @@ -2711,7 +2900,7 @@ https://www.rfc1437.de/2017/11/21/azul/ - 2026-03-02T16:36:38.000Z + 2026-03-02T16:36:38.090Z monthly 0.8 @@ -2720,7 +2909,7 @@ https://www.rfc1437.de/2017/11/20/triplock/ - 2026-03-02T16:36:42.000Z + 2026-03-02T16:36:42.394Z monthly 0.8 @@ -2729,7 +2918,7 @@ https://www.rfc1437.de/2017/09/11/nemos-war-second-edition-board-game-boardgamegeek/ - 2026-03-02T16:36:47.000Z + 2026-03-02T16:36:47.024Z monthly 0.8 @@ -2738,7 +2927,7 @@ https://www.rfc1437.de/2017/08/14/the-7th-continent-board-game-boardgamegeek/ - 2026-03-02T16:36:51.000Z + 2026-03-02T16:36:51.710Z monthly 0.8 @@ -2747,7 +2936,7 @@ https://www.rfc1437.de/2017/08/11/the-godfather-corleones-empire/ - 2026-03-02T16:36:56.000Z + 2026-03-02T16:36:56.439Z monthly 0.8 @@ -2756,7 +2945,7 @@ https://www.rfc1437.de/2017/02/06/comancheria-the-rise-and-fall-of-the-comanche-empire/ - 2026-03-02T16:37:01.000Z + 2026-03-02T16:37:01.102Z monthly 0.8 @@ -2765,7 +2954,7 @@ https://www.rfc1437.de/2017/01/22/between-two-cities/ - 2026-03-02T16:37:05.000Z + 2026-03-02T16:37:05.518Z monthly 0.8 @@ -2774,7 +2963,7 @@ https://www.rfc1437.de/2017/01/15/conflict-of-heroes-awakening-the-bear-second-edition/ - 2026-03-02T16:37:09.000Z + 2026-03-02T16:37:09.983Z monthly 0.8 @@ -2783,7 +2972,7 @@ https://www.rfc1437.de/2017/01/09/pentaquark/ - 2026-03-02T16:37:14.000Z + 2026-03-02T16:37:14.546Z monthly 0.8 @@ -2792,7 +2981,7 @@ https://www.rfc1437.de/2017/01/01/the-duke/ - 2026-03-02T16:37:19.000Z + 2026-03-02T16:37:19.026Z monthly 0.8 @@ -2801,7 +2990,7 @@ https://www.rfc1437.de/2016/11/22/mound-builders/ - 2026-03-02T16:37:23.000Z + 2026-03-02T16:37:23.970Z monthly 0.8 @@ -2810,7 +2999,7 @@ https://www.rfc1437.de/2016/11/06/warhammer-quest-the-adventure-card-game-board-game-boardgamegeek/ - 2026-03-02T16:37:28.000Z + 2026-03-02T16:37:28.678Z monthly 0.8 @@ -2819,7 +3008,7 @@ https://www.rfc1437.de/2016/11/06/scythe/ - 2026-03-02T16:37:33.000Z + 2026-03-02T16:37:33.543Z monthly 0.8 @@ -2828,7 +3017,7 @@ https://www.rfc1437.de/2016/10/30/51st-state-master-set-board-game-boardgamegeek/ - 2026-03-02T16:37:38.000Z + 2026-03-02T16:37:38.718Z monthly 0.8 @@ -2837,7 +3026,7 @@ https://www.rfc1437.de/2016/10/18/codenames-pictures-board-game-boardgamegeek/ - 2026-03-02T16:37:43.000Z + 2026-03-02T16:37:43.601Z monthly 0.8 @@ -2846,7 +3035,7 @@ https://www.rfc1437.de/2016/10/16/red7/ - 2026-03-02T16:37:48.000Z + 2026-03-02T16:37:48.450Z monthly 0.8 @@ -2855,7 +3044,7 @@ https://www.rfc1437.de/2016/09/11/mare-nostrum-empires/ - 2026-03-02T16:37:53.000Z + 2026-03-02T16:37:53.404Z monthly 0.8 @@ -2864,7 +3053,7 @@ https://www.rfc1437.de/2016/09/11/woechentliche-leseliste-72/ - 2026-03-02T16:37:58.000Z + 2026-03-02T16:37:58.647Z monthly 0.8 @@ -2873,7 +3062,7 @@ https://www.rfc1437.de/2016/09/04/woechentliche-leseliste-71/ - 2026-03-02T16:38:03.000Z + 2026-03-02T16:38:03.962Z monthly 0.8 @@ -2882,7 +3071,7 @@ https://www.rfc1437.de/2016/08/28/7-wonders-board-game-boardgamegeek/ - 2026-03-02T16:38:08.000Z + 2026-03-02T16:38:08.993Z monthly 0.8 @@ -2891,7 +3080,7 @@ https://www.rfc1437.de/2016/08/28/woechentliche-leseliste-70/ - 2026-03-02T16:38:14.000Z + 2026-03-02T16:38:14.579Z monthly 0.8 @@ -2900,7 +3089,7 @@ https://www.rfc1437.de/2016/08/21/woechentliche-leseliste-69/ - 2026-03-02T16:38:20.000Z + 2026-03-02T16:38:20.402Z monthly 0.8 @@ -2909,7 +3098,7 @@ https://www.rfc1437.de/2016/08/19/slobad-self-milleggs-competitive-commander-edh-mtg-deck/ - 2026-03-02T16:38:26.000Z + 2026-03-02T16:38:26.028Z monthly 0.8 @@ -2918,7 +3107,7 @@ https://www.rfc1437.de/2016/08/07/woechentliche-leseliste-68/ - 2026-03-02T16:38:32.000Z + 2026-03-02T16:38:32.096Z monthly 0.8 @@ -2927,7 +3116,7 @@ https://www.rfc1437.de/2016/08/03/deckmaster-a-mtg-variant-format-by-jim-bowie/ - 2026-03-02T16:38:37.000Z + 2026-03-02T16:38:37.447Z monthly 0.8 @@ -2936,7 +3125,7 @@ https://www.rfc1437.de/2016/07/31/woechentliche-leseliste-67/ - 2026-03-02T16:38:41.000Z + 2026-03-02T16:38:41.518Z monthly 0.8 @@ -2945,7 +3134,7 @@ https://www.rfc1437.de/2016/07/31/ohne-furcht-und-adel-board-game-boardgamegeek/ - 2026-03-02T16:38:46.000Z + 2026-03-02T16:38:46.950Z monthly 0.8 @@ -2954,7 +3143,7 @@ https://www.rfc1437.de/2016/07/31/yomi-starter-set-grave-versus-jaina/ - 2026-03-02T16:38:52.000Z + 2026-03-02T16:38:52.374Z monthly 0.8 @@ -2963,7 +3152,7 @@ https://www.rfc1437.de/2016/07/24/woechentliche-leseliste-66/ - 2026-03-02T16:38:57.000Z + 2026-03-02T16:38:57.706Z monthly 0.8 @@ -2972,7 +3161,7 @@ https://www.rfc1437.de/2016/07/17/woechentliche-leseliste-65/ - 2026-03-02T16:39:02.000Z + 2026-03-02T16:39:02.670Z monthly 0.8 @@ -2981,7 +3170,7 @@ https://www.rfc1437.de/2016/07/10/woechentliche-leseliste-64/ - 2026-03-02T16:39:08.000Z + 2026-03-02T16:39:08.505Z monthly 0.8 @@ -2990,7 +3179,7 @@ https://www.rfc1437.de/2016/07/03/leaving-earth/ - 2026-03-02T16:39:13.000Z + 2026-03-02T16:39:13.551Z monthly 0.8 @@ -2999,7 +3188,7 @@ https://www.rfc1437.de/2016/07/03/woechentliche-leseliste-63/ - 2026-03-02T16:39:19.000Z + 2026-03-02T16:39:19.286Z monthly 0.8 @@ -3008,7 +3197,7 @@ https://www.rfc1437.de/2016/06/26/1775-rebellion-board-game-boardgamegeek/ - 2026-03-02T16:39:25.000Z + 2026-03-02T16:39:25.101Z monthly 0.8 @@ -3017,7 +3206,7 @@ https://www.rfc1437.de/2016/06/25/night-of-man-board-game-boardgamegeek/ - 2026-03-02T16:39:30.000Z + 2026-03-02T16:39:30.335Z monthly 0.8 @@ -3026,7 +3215,7 @@ https://www.rfc1437.de/2016/06/23/reinventing-the-commander-2015-seize-control-pre-con-part-2-it-seemed-so-innocent-generaldamagecontrol/ - 2026-03-02T16:39:36.000Z + 2026-03-02T16:39:36.184Z monthly 0.8 @@ -3035,7 +3224,7 @@ https://www.rfc1437.de/2016/06/15/the-gallerist-review-a-masterpiece-wolfs-gaming-blog/ - 2026-03-02T16:39:40.000Z + 2026-03-02T16:39:40.663Z monthly 0.8 @@ -3044,7 +3233,7 @@ https://www.rfc1437.de/2016/06/14/dawn-of-the-zeds-third-edition/ - 2026-03-02T16:39:45.000Z + 2026-03-02T16:39:45.829Z monthly 0.8 @@ -3053,7 +3242,7 @@ https://www.rfc1437.de/2016/06/07/ubports/ - 2026-03-02T16:39:49.000Z + 2026-03-02T16:39:49.785Z monthly 0.8 @@ -3062,7 +3251,7 @@ https://www.rfc1437.de/2016/06/06/simmons-games-napoleons-triumph-sample-game/ - 2026-03-02T16:39:55.000Z + 2026-03-02T16:39:55.026Z monthly 0.8 @@ -3071,7 +3260,7 @@ https://www.rfc1437.de/2016/06/03/greenland-board-game-boardgamegeek/ - 2026-03-02T16:39:59.000Z + 2026-03-02T16:39:59.890Z monthly 0.8 @@ -3080,7 +3269,7 @@ https://www.rfc1437.de/2016/05/29/1775-rebellion/ - 2026-03-02T16:40:05.000Z + 2026-03-02T16:40:05.375Z monthly 0.8 @@ -3089,7 +3278,7 @@ https://www.rfc1437.de/2016/05/22/woechentliche-leseliste-62/ - 2026-03-02T16:40:09.000Z + 2026-03-02T16:40:09.746Z monthly 0.8 @@ -3098,7 +3287,7 @@ https://www.rfc1437.de/2016/05/08/woechentliche-leseliste-61/ - 2026-03-02T16:40:13.000Z + 2026-03-02T16:40:13.905Z monthly 0.8 @@ -3107,7 +3296,7 @@ https://www.rfc1437.de/2016/05/02/w1815-board-game-boardgamegeek/ - 2026-03-02T16:40:18.000Z + 2026-03-02T16:40:18.919Z monthly 0.8 @@ -3116,7 +3305,7 @@ https://www.rfc1437.de/2016/05/01/woechentliche-leseliste-60/ - 2026-03-02T16:40:24.000Z + 2026-03-02T16:40:24.261Z monthly 0.8 @@ -3125,7 +3314,7 @@ https://www.rfc1437.de/2016/04/29/ohne-display-leica-m-d-ist-eine-analoge-digitalkamera-golem-de/ - 2026-03-02T16:40:30.000Z + 2026-03-02T16:40:30.110Z monthly 0.8 @@ -3134,7 +3323,7 @@ https://www.rfc1437.de/2016/04/24/woechentliche-leseliste-59/ - 2026-03-02T16:40:36.000Z + 2026-03-02T16:40:36.044Z monthly 0.8 @@ -3143,7 +3332,7 @@ https://www.rfc1437.de/2016/04/22/uss-macon-zrs-5-wikipedia/ - 2026-03-02T16:40:41.000Z + 2026-03-02T16:40:41.135Z monthly 0.8 @@ -3152,7 +3341,7 @@ https://www.rfc1437.de/2016/04/22/from-the-windlords-eyrie-deck-tech-wielders-of-the-three/ - 2026-03-02T16:40:46.000Z + 2026-03-02T16:40:46.666Z monthly 0.8 @@ -3161,7 +3350,7 @@ https://www.rfc1437.de/2016/04/17/woechentliche-leseliste-58/ - 2026-03-02T16:40:50.000Z + 2026-03-02T16:40:50.819Z monthly 0.8 @@ -3170,7 +3359,7 @@ https://www.rfc1437.de/2016/04/10/woechentliche-leseliste-57/ - 2026-03-02T16:40:55.000Z + 2026-03-02T16:40:55.748Z monthly 0.8 @@ -3179,7 +3368,7 @@ https://www.rfc1437.de/2016/03/20/woechentliche-leseliste-56/ - 2026-03-02T16:41:00.000Z + 2026-03-02T16:41:00.727Z monthly 0.8 @@ -3188,7 +3377,7 @@ https://www.rfc1437.de/2016/03/13/woechentliche-leseliste-55/ - 2026-03-02T16:41:04.000Z + 2026-03-02T16:41:04.850Z monthly 0.8 @@ -3197,7 +3386,7 @@ https://www.rfc1437.de/2016/03/13/trickerion-legends-of-illusion-board-game-boardgamegeek/ - 2026-03-02T16:41:09.000Z + 2026-03-02T16:41:09.826Z monthly 0.8 @@ -3206,7 +3395,7 @@ https://www.rfc1437.de/2016/03/11/the-castles-of-burgundy-the-card-game-board-game-boardgamegeek/ - 2026-03-02T16:41:15.000Z + 2026-03-02T16:41:15.370Z monthly 0.8 @@ -3215,7 +3404,7 @@ https://www.rfc1437.de/2016/03/06/woechentliche-leseliste-54/ - 2026-03-02T16:41:21.000Z + 2026-03-02T16:41:21.469Z monthly 0.8 @@ -3224,7 +3413,7 @@ https://www.rfc1437.de/2016/03/05/imperial-settlers/ - 2026-03-02T16:41:26.000Z + 2026-03-02T16:41:26.582Z monthly 0.8 @@ -3233,7 +3422,7 @@ https://www.rfc1437.de/2016/02/28/woechentliche-leseliste-53/ - 2026-03-02T16:41:32.000Z + 2026-03-02T16:41:32.376Z monthly 0.8 @@ -3242,7 +3431,7 @@ https://www.rfc1437.de/2016/02/14/woechentliche-leseliste-52/ - 2026-03-02T16:41:36.000Z + 2026-03-02T16:41:36.771Z monthly 0.8 @@ -3251,7 +3440,7 @@ https://www.rfc1437.de/2016/02/08/bilderarchiv-2016/ - 2026-03-02T16:41:40.000Z + 2026-03-02T16:41:40.382Z monthly 0.8 @@ -3260,7 +3449,7 @@ https://www.rfc1437.de/2016/02/08/wir-sind-das-volk/ - 2026-03-02T16:41:45.000Z + 2026-03-02T16:41:45.860Z monthly 0.8 @@ -3269,7 +3458,7 @@ https://www.rfc1437.de/2016/02/07/woechentliche-leseliste-51/ - 2026-03-02T16:41:52.000Z + 2026-03-02T16:41:52.279Z monthly 0.8 @@ -3278,7 +3467,7 @@ https://www.rfc1437.de/2016/01/31/woechentliche-leseliste-50/ - 2026-03-02T16:41:57.000Z + 2026-03-02T16:41:57.286Z monthly 0.8 @@ -3287,7 +3476,7 @@ https://www.rfc1437.de/2016/01/31/hoplomachus-origins-board-game-boardgamegeek/ - 2026-03-02T16:42:02.000Z + 2026-03-02T16:42:02.362Z monthly 0.8 @@ -3296,7 +3485,7 @@ https://www.rfc1437.de/2016/01/31/wir-sind-das-volk-board-game-boardgamegeek/ - 2026-03-02T16:42:07.000Z + 2026-03-02T16:42:07.381Z monthly 0.8 @@ -3305,7 +3494,7 @@ https://www.rfc1437.de/2016/01/25/zeromqnetmq-a-100-native-c-implementation-of-zeromq-for-net/ - 2026-03-02T16:42:13.000Z + 2026-03-02T16:42:13.123Z monthly 0.8 @@ -3314,7 +3503,7 @@ https://www.rfc1437.de/2016/01/24/woechentliche-leseliste-49/ - 2026-03-02T16:42:17.000Z + 2026-03-02T16:42:17.630Z monthly 0.8 @@ -3323,7 +3512,7 @@ https://www.rfc1437.de/2016/01/24/cuba-libre/ - 2026-03-02T16:42:23.000Z + 2026-03-02T16:42:23.147Z monthly 0.8 @@ -3332,7 +3521,7 @@ https://www.rfc1437.de/2016/01/20/sentinels-of-the-multiverse-3/ - 2026-03-02T16:42:28.000Z + 2026-03-02T16:42:28.182Z monthly 0.8 @@ -3341,7 +3530,7 @@ https://www.rfc1437.de/2016/01/15/hostage-negotiator-board-game-boardgamegeek/ - 2026-03-02T16:42:33.000Z + 2026-03-02T16:42:33.380Z monthly 0.8 @@ -3350,7 +3539,7 @@ https://www.rfc1437.de/2016/01/08/soviet-dawn/ - 2026-03-02T16:45:19.000Z + 2026-03-02T16:45:19.535Z monthly 0.8 @@ -3359,7 +3548,7 @@ https://www.rfc1437.de/2016/01/04/junior-general-home-page/ - 2026-03-02T16:45:23.000Z + 2026-03-02T16:45:23.637Z monthly 0.8 @@ -3368,7 +3557,7 @@ https://www.rfc1437.de/2016/01/03/woechentliche-leseliste-48/ - 2026-03-02T16:45:27.000Z + 2026-03-02T16:45:27.655Z monthly 0.8 @@ -3377,7 +3566,7 @@ https://www.rfc1437.de/2015/12/22/polis-fight-for-the-hegemony-board-game-boardgamegeek/ - 2026-03-02T16:45:31.000Z + 2026-03-02T16:45:31.988Z monthly 0.8 @@ -3386,7 +3575,7 @@ https://www.rfc1437.de/2015/12/21/die-macedonier/ - 2026-03-02T16:45:35.000Z + 2026-03-02T16:45:35.640Z monthly 0.8 @@ -3395,7 +3584,7 @@ https://www.rfc1437.de/2015/12/21/great-battles-of-history-deluxe-alexander/ - 2026-03-02T16:45:39.000Z + 2026-03-02T16:45:39.289Z monthly 0.8 @@ -3404,7 +3593,7 @@ https://www.rfc1437.de/2015/12/20/woechentliche-leseliste-47/ - 2026-03-02T16:45:43.000Z + 2026-03-02T16:45:43.325Z monthly 0.8 @@ -3413,7 +3602,7 @@ https://www.rfc1437.de/2015/11/22/woechentliche-leseliste-46/ - 2026-03-02T16:45:47.000Z + 2026-03-02T16:45:47.316Z monthly 0.8 @@ -3422,7 +3611,7 @@ https://www.rfc1437.de/2015/11/17/mage-knight-board-game/ - 2026-03-02T16:45:51.000Z + 2026-03-02T16:45:51.297Z monthly 0.8 @@ -3431,7 +3620,7 @@ https://www.rfc1437.de/2015/11/15/woechentliche-leseliste-45/ - 2026-03-02T16:45:54.000Z + 2026-03-02T16:45:54.707Z monthly 0.8 @@ -3440,7 +3629,7 @@ https://www.rfc1437.de/2015/11/08/7-wonders-duel-board-game-boardgamegeek/ - 2026-03-02T16:45:58.000Z + 2026-03-02T16:45:58.699Z monthly 0.8 @@ -3449,7 +3638,7 @@ https://www.rfc1437.de/2015/11/07/tides-of-time-board-game-boardgamegeek/ - 2026-03-02T16:46:02.000Z + 2026-03-02T16:46:02.797Z monthly 0.8 @@ -3458,7 +3647,7 @@ https://www.rfc1437.de/2015/11/06/the-lord-of-the-rings-the-card-game-board-game-boardgamegeek-12/ - 2026-03-02T16:46:06.000Z + 2026-03-02T16:46:06.832Z monthly 0.8 @@ -3467,7 +3656,7 @@ https://www.rfc1437.de/2015/11/03/the-gallerist/ - 2026-03-02T16:46:10.000Z + 2026-03-02T16:46:10.913Z monthly 0.8 @@ -3476,7 +3665,7 @@ https://www.rfc1437.de/2015/11/02/the-golden-ages-board-game-boardgamegeek/ - 2026-03-02T16:46:15.000Z + 2026-03-02T16:46:15.026Z monthly 0.8 @@ -3485,7 +3674,7 @@ https://www.rfc1437.de/2015/11/01/woechentliche-leseliste-44/ - 2026-03-02T16:46:19.000Z + 2026-03-02T16:46:19.784Z monthly 0.8 @@ -3494,7 +3683,7 @@ https://www.rfc1437.de/2015/10/26/progress-evolution-of-technology-4/ - 2026-03-02T16:46:24.000Z + 2026-03-02T16:46:24.108Z monthly 0.8 @@ -3503,7 +3692,7 @@ https://www.rfc1437.de/2015/10/25/woechentliche-leseliste-43/ - 2026-03-02T16:46:28.000Z + 2026-03-02T16:46:28.219Z monthly 0.8 @@ -3512,7 +3701,7 @@ https://www.rfc1437.de/2015/10/16/why-twitters-dying-and-what-you-can-learn-from-it-bad-words-medium/ - 2026-03-02T16:46:32.000Z + 2026-03-02T16:46:32.766Z monthly 0.8 @@ -3521,7 +3710,7 @@ https://www.rfc1437.de/2015/10/11/woechentliche-leseliste-42/ - 2026-03-02T16:46:36.000Z + 2026-03-02T16:46:36.901Z monthly 0.8 @@ -3530,7 +3719,7 @@ https://www.rfc1437.de/2015/10/08/the-lord-of-the-ice-garden/ - 2026-03-02T20:21:29.000Z + 2026-03-02T20:21:29.390Z monthly 0.8 @@ -3539,7 +3728,7 @@ https://www.rfc1437.de/2015/10/07/the-night-larry-wall-unveiled-perl-6-10-zen-monkeys/ - 2026-03-07T21:06:37.000Z + 2026-03-07T21:06:37.661Z monthly 0.8 @@ -3548,7 +3737,7 @@ https://www.rfc1437.de/2015/09/21/hero-forge-custom-miniatures/ - 2026-03-02T20:21:35.000Z + 2026-03-02T20:21:35.393Z monthly 0.8 @@ -3557,7 +3746,7 @@ https://www.rfc1437.de/2015/09/20/jaipur/ - 2026-03-02T20:21:38.000Z + 2026-03-02T20:21:38.839Z monthly 0.8 @@ -3566,7 +3755,7 @@ https://www.rfc1437.de/2015/09/17/dungeon-dice/ - 2026-03-02T20:21:42.000Z + 2026-03-02T20:21:42.298Z monthly 0.8 @@ -3575,7 +3764,7 @@ https://www.rfc1437.de/2015/09/14/the-golden-ages/ - 2026-03-02T20:21:45.000Z + 2026-03-02T20:21:45.757Z monthly 0.8 @@ -3584,7 +3773,7 @@ https://www.rfc1437.de/2015/09/13/progress-evolution-of-technology-3/ - 2026-03-02T20:21:49.000Z + 2026-03-02T20:21:49.153Z monthly 0.8 @@ -3593,7 +3782,7 @@ https://www.rfc1437.de/2015/09/13/woechentliche-leseliste-41/ - 2026-03-02T20:21:52.000Z + 2026-03-02T20:21:52.894Z monthly 0.8 @@ -3602,7 +3791,7 @@ https://www.rfc1437.de/2015/09/07/pergamon/ - 2026-03-02T20:21:56.000Z + 2026-03-02T20:21:56.319Z monthly 0.8 @@ -3611,7 +3800,7 @@ https://www.rfc1437.de/2015/09/06/woechentliche-leseliste-40/ - 2026-03-02T20:21:59.000Z + 2026-03-02T20:21:59.068Z monthly 0.8 @@ -3620,7 +3809,7 @@ https://www.rfc1437.de/2015/08/30/woechentliche-leseliste-39/ - 2026-03-02T20:22:03.000Z + 2026-03-02T20:22:03.480Z monthly 0.8 @@ -3629,7 +3818,7 @@ https://www.rfc1437.de/2015/08/26/haskell-for-mac/ - 2026-03-02T20:22:06.000Z + 2026-03-02T20:22:06.919Z monthly 0.8 @@ -3638,7 +3827,7 @@ https://www.rfc1437.de/2015/08/23/kashgar-haendler-der-seidenstrasse/ - 2026-03-02T20:22:10.000Z + 2026-03-02T20:22:10.671Z monthly 0.8 @@ -3647,7 +3836,7 @@ https://www.rfc1437.de/2015/08/16/woechentliche-leseliste-38/ - 2026-03-02T20:22:13.000Z + 2026-03-02T20:22:13.395Z monthly 0.8 @@ -3656,7 +3845,7 @@ https://www.rfc1437.de/2015/08/09/woechentliche-leseliste-37/ - 2026-03-02T20:22:16.000Z + 2026-03-02T20:22:16.434Z monthly 0.8 @@ -3665,7 +3854,7 @@ https://www.rfc1437.de/2015/08/07/pandemic-the-cure/ - 2026-03-02T20:22:19.000Z + 2026-03-02T20:22:19.875Z monthly 0.8 @@ -3674,7 +3863,7 @@ https://www.rfc1437.de/2015/08/02/woechentliche-leseliste-36/ - 2026-03-02T20:22:23.000Z + 2026-03-02T20:22:23.998Z monthly 0.8 @@ -3683,7 +3872,7 @@ https://www.rfc1437.de/2015/07/31/the-decktet-wiki/ - 2026-03-02T20:22:27.000Z + 2026-03-02T20:22:27.419Z monthly 0.8 @@ -3692,7 +3881,7 @@ https://www.rfc1437.de/2015/07/29/the-lord-of-the-rings-the-card-game-3/ - 2026-03-02T20:22:31.000Z + 2026-03-02T20:22:31.155Z monthly 0.8 @@ -3701,7 +3890,7 @@ https://www.rfc1437.de/2015/07/25/vivajava-the-coffee-game-the-dice-game/ - 2026-03-02T20:22:34.000Z + 2026-03-02T20:22:34.896Z monthly 0.8 @@ -3710,7 +3899,7 @@ https://www.rfc1437.de/2015/07/22/cruel-necessity/ - 2026-03-02T20:22:38.000Z + 2026-03-02T20:22:38.306Z monthly 0.8 @@ -3719,7 +3908,7 @@ https://www.rfc1437.de/2015/07/21/san-juan-2/ - 2026-03-02T20:22:41.000Z + 2026-03-02T20:22:41.699Z monthly 0.8 @@ -3728,7 +3917,7 @@ https://www.rfc1437.de/2015/07/19/woechentliche-leseliste-35/ - 2026-03-02T20:22:44.000Z + 2026-03-02T20:22:44.460Z monthly 0.8 @@ -3737,7 +3926,7 @@ https://www.rfc1437.de/2015/07/19/race-for-the-galaxy/ - 2026-03-02T20:22:48.000Z + 2026-03-02T20:22:48.166Z monthly 0.8 @@ -3746,7 +3935,7 @@ https://www.rfc1437.de/2015/07/14/space-hulk-death-angel-the-card-game/ - 2026-03-02T20:22:51.000Z + 2026-03-02T20:22:51.598Z monthly 0.8 @@ -3755,7 +3944,7 @@ https://www.rfc1437.de/2015/07/13/progress-evolution-of-technology-2/ - 2026-03-02T20:22:55.000Z + 2026-03-02T20:22:55.100Z monthly 0.8 @@ -3764,7 +3953,7 @@ https://www.rfc1437.de/2015/07/09/koken-is-for-sale-and-looking-for-a-new-home-koken-blog/ - 2026-03-07T21:06:38.000Z + 2026-03-07T21:06:38.630Z monthly 0.8 @@ -3773,7 +3962,7 @@ https://www.rfc1437.de/2015/06/20/warfighter-the-tactical-special-forces-card-game/ - 2026-03-02T20:23:02.000Z + 2026-03-02T20:23:02.055Z monthly 0.8 @@ -3782,7 +3971,7 @@ https://www.rfc1437.de/2015/06/14/woechentliche-leseliste-34/ - 2026-03-02T20:23:05.000Z + 2026-03-02T20:23:05.159Z monthly 0.8 @@ -3791,7 +3980,7 @@ https://www.rfc1437.de/2015/06/07/progress-evolution-of-technology/ - 2026-03-02T20:23:08.000Z + 2026-03-02T20:23:08.660Z monthly 0.8 @@ -3800,7 +3989,7 @@ https://www.rfc1437.de/2015/06/05/neulich-im-internet-13/ - 2026-03-02T20:23:12.000Z + 2026-03-02T20:23:12.179Z monthly 0.8 @@ -3809,7 +3998,7 @@ https://www.rfc1437.de/2015/06/04/nations-the-dice-game/ - 2026-03-02T20:23:15.000Z + 2026-03-02T20:23:15.698Z monthly 0.8 @@ -3818,7 +4007,7 @@ https://www.rfc1437.de/2015/05/30/the-lord-of-the-rings-the-card-game-2/ - 2026-03-02T20:23:19.000Z + 2026-03-02T20:23:19.490Z monthly 0.8 @@ -3827,7 +4016,7 @@ https://www.rfc1437.de/2015/05/30/tour-de-france/ - 2026-03-07T21:06:39.000Z + 2026-03-07T21:06:39.837Z monthly 0.8 @@ -3836,7 +4025,7 @@ https://www.rfc1437.de/2015/05/29/assault-on-doomrock/ - 2026-03-02T20:23:26.000Z + 2026-03-02T20:23:26.171Z monthly 0.8 @@ -3845,7 +4034,7 @@ https://www.rfc1437.de/2015/05/29/pathfinder-adventure-card-game-rise-of-the-runelords-base-set/ - 2026-03-08T16:33:27.000Z + 2026-03-08T16:33:27.015Z monthly 0.8 @@ -3854,7 +4043,7 @@ https://www.rfc1437.de/2015/05/17/woechentliche-leseliste-33/ - 2026-03-02T20:23:32.000Z + 2026-03-02T20:23:32.796Z monthly 0.8 @@ -3863,7 +4052,7 @@ https://www.rfc1437.de/2015/05/11/friday/ - 2026-03-02T20:23:35.000Z + 2026-03-02T20:23:35.924Z monthly 0.8 @@ -3872,7 +4061,7 @@ https://www.rfc1437.de/2015/05/06/the-lord-of-the-rings-the-card-game/ - 2026-03-02T20:23:39.000Z + 2026-03-02T20:23:39.852Z monthly 0.8 @@ -3881,7 +4070,7 @@ https://www.rfc1437.de/2015/05/03/schloss-nordkirchen-2/ - 2026-03-02T20:23:42.000Z + 2026-03-02T20:23:42.339Z monthly 0.8 @@ -3890,7 +4079,7 @@ https://www.rfc1437.de/2015/05/01/rieselfelder-2015/ - 2026-03-02T20:23:44.000Z + 2026-03-02T20:23:44.760Z monthly 0.8 @@ -3899,7 +4088,7 @@ https://www.rfc1437.de/2015/04/26/shadowrift-board-game-boardgamegeek/ - 2026-03-02T20:23:48.000Z + 2026-03-02T20:23:48.275Z monthly 0.8 @@ -3908,7 +4097,7 @@ https://www.rfc1437.de/2015/04/18/shadow-of-the-elder-gods-board-game-boardgamegeek/ - 2026-03-02T20:23:51.000Z + 2026-03-02T20:23:51.799Z monthly 0.8 @@ -3917,7 +4106,7 @@ https://www.rfc1437.de/2015/04/16/lost-legacy-board-game-boardgamegeek/ - 2026-03-02T20:23:54.000Z + 2026-03-02T20:23:54.939Z monthly 0.8 @@ -3926,7 +4115,7 @@ https://www.rfc1437.de/2015/04/14/sentinels-of-the-multiverse-board-game-boardgamegeek-6/ - 2026-03-02T20:23:58.000Z + 2026-03-02T20:23:58.492Z monthly 0.8 @@ -3935,7 +4124,7 @@ https://www.rfc1437.de/2015/04/14/a-call-to-arms-fantasy-flight-games/ - 2026-03-02T20:24:02.000Z + 2026-03-02T20:24:02.347Z monthly 0.8 @@ -3944,7 +4133,7 @@ https://www.rfc1437.de/2015/04/12/redjaks-automated-overlord-variant-descent-journeys-in-the-dark-second-edition-boardgamegeek/ - 2026-03-02T20:24:05.000Z + 2026-03-02T20:24:05.870Z monthly 0.8 @@ -3953,7 +4142,7 @@ https://www.rfc1437.de/2015/04/12/the-lord-of-the-rings-the-card-game-board-game-boardgamegeek-11/ - 2026-03-02T20:24:09.000Z + 2026-03-02T20:24:09.743Z monthly 0.8 @@ -3962,7 +4151,7 @@ https://www.rfc1437.de/2015/04/11/waggle-dance-board-game-boardgamegeek-8/ - 2026-03-02T20:24:13.000Z + 2026-03-02T20:24:13.292Z monthly 0.8 @@ -3971,7 +4160,7 @@ https://www.rfc1437.de/2015/04/06/paperback-board-game-boardgamegeek-4/ - 2026-03-02T20:24:16.000Z + 2026-03-02T20:24:16.293Z monthly 0.8 @@ -3980,7 +4169,7 @@ https://www.rfc1437.de/2015/04/04/paperback-board-game-boardgamegeek-3/ - 2026-03-02T20:24:20.000Z + 2026-03-02T20:24:20.515Z monthly 0.8 @@ -3989,7 +4178,7 @@ https://www.rfc1437.de/2015/04/04/paperback-board-game-boardgamegeek-2/ - 2026-03-02T20:24:24.000Z + 2026-03-02T20:24:24.153Z monthly 0.8 @@ -3998,7 +4187,7 @@ https://www.rfc1437.de/2015/04/04/die-legenden-von-andor-der-sternenschild-board-game-boardgamegeek/ - 2026-03-02T20:24:28.000Z + 2026-03-02T20:24:28.197Z monthly 0.8 @@ -4007,7 +4196,7 @@ https://www.rfc1437.de/2015/03/29/woechentliche-leseliste-32/ - 2026-03-02T20:24:31.000Z + 2026-03-02T20:24:31.451Z monthly 0.8 @@ -4016,7 +4205,7 @@ https://www.rfc1437.de/2015/03/26/why-gos-design-is-a-disservice-to-intelligent-programmers-nomad-software/ - 2026-03-02T20:24:35.000Z + 2026-03-02T20:24:35.598Z monthly 0.8 @@ -4025,7 +4214,7 @@ https://www.rfc1437.de/2015/03/22/woechentliche-leseliste-31/ - 2026-03-02T20:24:38.000Z + 2026-03-02T20:24:38.993Z monthly 0.8 @@ -4034,7 +4223,7 @@ https://www.rfc1437.de/2015/03/21/paperback-board-game-boardgamegeek/ - 2026-03-02T20:24:42.000Z + 2026-03-02T20:24:42.746Z monthly 0.8 @@ -4043,7 +4232,7 @@ https://www.rfc1437.de/2015/03/17/sentinels-of-the-multiverse-board-game-boardgamegeek-5/ - 2026-03-02T20:24:46.000Z + 2026-03-02T20:24:46.430Z monthly 0.8 @@ -4052,7 +4241,7 @@ https://www.rfc1437.de/2015/03/16/waggle-dance-board-game-boardgamegeek-7/ - 2026-03-02T20:24:49.000Z + 2026-03-02T20:24:49.762Z monthly 0.8 @@ -4061,7 +4250,7 @@ https://www.rfc1437.de/2015/03/16/mental-meta-2-every-day-im-shuffling-dojo-of-lies/ - 2026-03-02T20:24:53.000Z + 2026-03-02T20:24:53.967Z monthly 0.8 @@ -4070,7 +4259,7 @@ https://www.rfc1437.de/2015/03/15/san-juan-board-game-boardgamegeek-3/ - 2026-03-02T20:24:58.000Z + 2026-03-02T20:24:58.221Z monthly 0.8 @@ -4079,7 +4268,7 @@ https://www.rfc1437.de/2015/03/15/woechentliche-leseliste-30/ - 2026-03-02T20:25:02.000Z + 2026-03-02T20:25:02.291Z monthly 0.8 @@ -4088,7 +4277,7 @@ https://www.rfc1437.de/2015/03/14/thunderstone-advance-towers-of-ruin-board-game-boardgamegeek/ - 2026-03-02T20:25:06.000Z + 2026-03-02T20:25:06.088Z monthly 0.8 @@ -4097,7 +4286,7 @@ https://www.rfc1437.de/2015/03/14/race-for-the-galaxy-board-game-boardgamegeek-4/ - 2026-03-02T20:25:09.000Z + 2026-03-02T20:25:09.671Z monthly 0.8 @@ -4106,7 +4295,7 @@ https://www.rfc1437.de/2015/03/14/the-lord-of-the-rings-the-card-game-board-game-boardgamegeek-10/ - 2026-03-02T20:25:13.000Z + 2026-03-02T20:25:13.986Z monthly 0.8 @@ -4115,7 +4304,7 @@ https://www.rfc1437.de/2015/03/09/race-for-the-galaxy-board-game-boardgamegeek-3/ - 2026-03-02T20:25:18.000Z + 2026-03-02T20:25:18.092Z monthly 0.8 @@ -4124,7 +4313,7 @@ https://www.rfc1437.de/2015/03/06/race-for-the-galaxy-board-game-boardgamegeek-2/ - 2026-03-02T20:25:22.000Z + 2026-03-02T20:25:22.172Z monthly 0.8 @@ -4133,7 +4322,7 @@ https://www.rfc1437.de/2015/03/03/the-lord-of-the-rings-the-card-game-board-game-boardgamegeek-9/ - 2026-03-02T20:25:26.000Z + 2026-03-02T20:25:26.923Z monthly 0.8 @@ -4142,7 +4331,7 @@ https://www.rfc1437.de/2015/03/02/race-for-the-galaxy-board-game-boardgamegeek/ - 2026-03-02T20:25:30.000Z + 2026-03-02T20:25:30.455Z monthly 0.8 @@ -4151,7 +4340,7 @@ https://www.rfc1437.de/2015/03/01/san-juan-board-game-boardgamegeek-2/ - 2026-03-02T20:25:34.000Z + 2026-03-02T20:25:34.445Z monthly 0.8 @@ -4160,7 +4349,7 @@ https://www.rfc1437.de/2015/03/01/woechentliche-leseliste-29/ - 2026-03-02T20:25:39.000Z + 2026-03-02T20:25:39.879Z monthly 0.8 @@ -4169,7 +4358,7 @@ https://www.rfc1437.de/2015/02/27/onirim-board-game-boardgamegeek/ - 2026-03-02T20:25:43.000Z + 2026-03-02T20:25:43.449Z monthly 0.8 @@ -4178,7 +4367,7 @@ https://www.rfc1437.de/2015/02/23/download-free-smartwatch-faces-for-moto-360-lg-g-series-samsung-gear-sony-smartwatch-3-and-asus-zenwatch-facerepo/ - 2026-03-02T20:25:47.000Z + 2026-03-02T20:25:47.155Z monthly 0.8 @@ -4187,7 +4376,7 @@ https://www.rfc1437.de/2015/02/23/start-watchmaker-wiki/ - 2026-03-02T20:25:50.000Z + 2026-03-02T20:25:50.988Z monthly 0.8 @@ -4196,7 +4385,7 @@ https://www.rfc1437.de/2015/02/22/valley-of-the-kings-board-game-boardgamegeek/ - 2026-03-02T20:25:55.000Z + 2026-03-02T20:25:55.129Z monthly 0.8 @@ -4205,7 +4394,7 @@ https://www.rfc1437.de/2015/02/17/the-lord-of-the-rings-the-card-game-board-game-boardgamegeek-8/ - 2026-03-02T20:25:59.000Z + 2026-03-02T20:25:59.626Z monthly 0.8 @@ -4214,7 +4403,7 @@ https://www.rfc1437.de/2015/02/15/waggle-dance-board-game-boardgamegeek-6/ - 2026-03-02T20:26:03.000Z + 2026-03-02T20:26:03.753Z monthly 0.8 @@ -4223,7 +4412,7 @@ https://www.rfc1437.de/2015/02/15/woechentliche-leseliste-28/ - 2026-03-02T20:26:07.000Z + 2026-03-02T20:26:07.443Z monthly 0.8 @@ -4232,7 +4421,7 @@ https://www.rfc1437.de/2015/02/12/the-lord-of-the-rings-the-card-game-board-game-boardgamegeek-7/ - 2026-03-02T20:26:11.000Z + 2026-03-02T20:26:11.983Z monthly 0.8 @@ -4241,7 +4430,7 @@ https://www.rfc1437.de/2015/02/10/the-lord-of-the-rings-the-card-game-board-game-boardgamegeek-6/ - 2026-03-02T20:26:16.000Z + 2026-03-02T20:26:16.537Z monthly 0.8 @@ -4250,7 +4439,7 @@ https://www.rfc1437.de/2015/02/08/sentinels-of-the-multiverse-board-game-boardgamegeek-4/ - 2026-03-02T20:26:20.000Z + 2026-03-02T20:26:20.272Z monthly 0.8 @@ -4259,7 +4448,7 @@ https://www.rfc1437.de/2015/02/08/the-lord-of-the-rings-the-card-game-board-game-boardgamegeek-5/ - 2026-03-02T20:26:25.000Z + 2026-03-02T20:26:25.182Z monthly 0.8 @@ -4268,7 +4457,7 @@ https://www.rfc1437.de/2015/02/08/robinson-crusoe-adventure-on-the-cursed-island-board-game-boardgamegeek/ - 2026-03-02T20:26:29.000Z + 2026-03-02T20:26:29.716Z monthly 0.8 @@ -4277,7 +4466,7 @@ https://www.rfc1437.de/2015/02/07/sentinels-of-the-multiverse-board-game-boardgamegeek-3/ - 2026-03-02T20:26:34.000Z + 2026-03-02T20:26:34.348Z monthly 0.8 @@ -4286,7 +4475,7 @@ https://www.rfc1437.de/2015/02/03/sentinels-of-the-multiverse-board-game-boardgamegeek-2/ - 2026-03-02T20:26:38.000Z + 2026-03-02T20:26:38.535Z monthly 0.8 @@ -4295,7 +4484,7 @@ https://www.rfc1437.de/2015/02/02/waggle-dance-board-game-boardgamegeek-5/ - 2026-03-02T20:26:42.000Z + 2026-03-02T20:26:42.783Z monthly 0.8 @@ -4304,7 +4493,7 @@ https://www.rfc1437.de/2015/02/02/legends-of-andor-board-game-boardgamegeek/ - 2026-03-02T20:26:47.000Z + 2026-03-02T20:26:47.317Z monthly 0.8 @@ -4313,7 +4502,7 @@ https://www.rfc1437.de/2015/01/31/waggle-dance-board-game-boardgamegeek-4/ - 2026-03-02T20:26:51.000Z + 2026-03-02T20:26:51.938Z monthly 0.8 @@ -4322,7 +4511,7 @@ https://www.rfc1437.de/2015/01/31/gears-of-war-the-board-game-custom-cog-pack-1-celjaded/ - 2026-03-02T20:37:28.000Z + 2026-03-02T20:37:28.842Z monthly 0.8 @@ -4331,7 +4520,7 @@ https://www.rfc1437.de/2015/01/31/sentinels-of-the-multiverse-board-game-boardgamegeek/ - 2026-03-02T20:37:32.000Z + 2026-03-02T20:37:32.448Z monthly 0.8 @@ -4340,7 +4529,7 @@ https://www.rfc1437.de/2015/01/29/one-zero-one-board-game-boardgamegeek/ - 2026-03-02T20:37:35.000Z + 2026-03-02T20:37:35.256Z monthly 0.8 @@ -4349,7 +4538,7 @@ https://www.rfc1437.de/2015/01/26/merkels-satz-islam-gehoert-zu-deutschland-de-maiziere-betont-pflichten-fuer-islam-tagesschau-de/ - 2026-03-02T20:37:39.000Z + 2026-03-02T20:37:39.078Z monthly 0.8 @@ -4358,7 +4547,7 @@ https://www.rfc1437.de/2015/01/25/the-lord-of-the-rings-the-card-game-board-game-boardgamegeek-4/ - 2026-03-02T20:37:42.000Z + 2026-03-02T20:37:42.911Z monthly 0.8 @@ -4367,7 +4556,7 @@ https://www.rfc1437.de/2015/01/25/elder-sign-board-game-boardgamegeek/ - 2026-03-02T20:37:46.000Z + 2026-03-02T20:37:46.438Z monthly 0.8 @@ -4376,7 +4565,7 @@ https://www.rfc1437.de/2015/01/25/forbidden-desert-board-game-boardgamegeek-2/ - 2026-03-02T20:37:49.000Z + 2026-03-02T20:37:49.968Z monthly 0.8 @@ -4385,7 +4574,7 @@ https://www.rfc1437.de/2015/01/25/woechentliche-leseliste-27/ - 2026-03-02T20:37:53.000Z + 2026-03-02T20:37:53.793Z monthly 0.8 @@ -4394,7 +4583,7 @@ https://www.rfc1437.de/2015/01/25/san-juan-board-game-boardgamegeek/ - 2026-03-02T20:37:57.000Z + 2026-03-02T20:37:57.303Z monthly 0.8 @@ -4403,7 +4592,7 @@ https://www.rfc1437.de/2015/01/22/january-19-2015-banned-and-restricted-announcement-magic-the-gathering/ - 2026-03-02T20:38:01.000Z + 2026-03-02T20:38:01.130Z monthly 0.8 @@ -4412,7 +4601,7 @@ https://www.rfc1437.de/2015/01/22/update-on-os-support-for-next-version-of-lightroom/ - 2026-03-02T20:38:04.000Z + 2026-03-02T20:38:04.949Z monthly 0.8 @@ -4421,7 +4610,7 @@ https://www.rfc1437.de/2015/01/22/color-and-light-in-nature-homepage-rainbows-haloes-mirages-colors-in-the-sky-water-and-more/ - 2026-03-02T20:38:08.000Z + 2026-03-02T20:38:08.412Z monthly 0.8 @@ -4430,7 +4619,7 @@ https://www.rfc1437.de/2015/01/20/the-lord-of-the-rings-the-card-game-board-game-boardgamegeek-3/ - 2026-03-02T20:38:12.000Z + 2026-03-02T20:38:12.277Z monthly 0.8 @@ -4439,7 +4628,7 @@ https://www.rfc1437.de/2015/01/20/super-fantasy-angriff-der-haesslichen-schnauzen/ - 2026-03-02T20:38:15.000Z + 2026-03-02T20:38:15.766Z monthly 0.8 @@ -4448,7 +4637,7 @@ https://www.rfc1437.de/2015/01/20/waggle-dance-board-game-boardgamegeek-3/ - 2026-03-02T20:38:18.000Z + 2026-03-02T20:38:18.928Z monthly 0.8 @@ -4457,7 +4646,7 @@ https://www.rfc1437.de/2015/01/18/woechentliche-leseliste-26/ - 2026-03-02T20:38:23.000Z + 2026-03-02T20:38:23.553Z monthly 0.8 @@ -4466,7 +4655,7 @@ https://www.rfc1437.de/2015/01/17/sentinels-of-the-multiverse-2/ - 2026-03-02T20:38:49.000Z + 2026-03-02T20:38:49.947Z monthly 0.8 @@ -4475,7 +4664,7 @@ https://www.rfc1437.de/2015/01/15/waggle-dance-board-game-boardgamegeek-2/ - 2026-03-02T20:38:53.000Z + 2026-03-02T20:38:53.481Z monthly 0.8 @@ -4484,7 +4673,7 @@ https://www.rfc1437.de/2015/01/15/shadows-of-brimstone-city-of-the-ancients/ - 2026-03-02T20:38:56.000Z + 2026-03-02T20:38:56.578Z monthly 0.8 @@ -4493,7 +4682,7 @@ https://www.rfc1437.de/2015/01/14/the-lord-of-the-rings-the-card-game-board-game-boardgamegeek-2/ - 2026-03-02T20:39:00.000Z + 2026-03-02T20:39:00.014Z monthly 0.8 @@ -4502,7 +4691,7 @@ https://www.rfc1437.de/2015/01/13/nach-anschlaegen-in-paris-premier-cameron-will-wirksame-verschluesselung-verbieten-golem-de/ - 2026-03-02T20:39:03.000Z + 2026-03-02T20:39:03.850Z monthly 0.8 @@ -4511,7 +4700,7 @@ https://www.rfc1437.de/2015/01/12/waggle-dance-board-game-boardgamegeek/ - 2026-03-02T20:39:07.000Z + 2026-03-02T20:39:07.363Z monthly 0.8 @@ -4520,7 +4709,7 @@ https://www.rfc1437.de/2015/01/12/what-is-this-all-about-space-empires-4x-a-board-game-by-jim-krohn/ - 2026-03-02T20:39:10.000Z + 2026-03-02T20:39:10.519Z monthly 0.8 @@ -4529,7 +4718,7 @@ https://www.rfc1437.de/2015/01/12/space-empires-4x-alien-players-tool/ - 2026-03-02T20:39:13.000Z + 2026-03-02T20:39:13.414Z monthly 0.8 @@ -4538,7 +4727,7 @@ https://www.rfc1437.de/2015/01/11/gears-of-war-the-board-game-board-game-boardgamegeek/ - 2026-03-02T20:39:17.000Z + 2026-03-02T20:39:17.347Z monthly 0.8 @@ -4547,7 +4736,7 @@ https://www.rfc1437.de/2015/01/11/woechentliche-leseliste-25/ - 2026-03-02T20:39:21.000Z + 2026-03-02T20:39:21.409Z monthly 0.8 @@ -4556,7 +4745,7 @@ https://www.rfc1437.de/2015/01/10/forbidden-desert-board-game-boardgamegeek/ - 2026-03-02T20:39:25.000Z + 2026-03-02T20:39:25.263Z monthly 0.8 @@ -4565,7 +4754,7 @@ https://www.rfc1437.de/2015/01/09/the-lord-of-the-rings-the-card-game-board-game-boardgamegeek/ - 2026-03-02T20:39:28.000Z + 2026-03-02T20:39:28.964Z monthly 0.8 @@ -4574,7 +4763,7 @@ https://www.rfc1437.de/2015/01/07/xslt-workbench/ - 2026-03-02T20:39:31.000Z + 2026-03-02T20:39:31.960Z monthly 0.8 @@ -4583,7 +4772,7 @@ https://www.rfc1437.de/2015/01/05/sharplisperscormanlisp/ - 2026-03-02T20:39:35.000Z + 2026-03-02T20:39:35.686Z monthly 0.8 @@ -4592,7 +4781,7 @@ https://www.rfc1437.de/2015/01/05/neulich-im-internet-12/ - 2026-03-02T20:39:39.000Z + 2026-03-02T20:39:39.440Z monthly 0.8 @@ -4601,7 +4790,7 @@ https://www.rfc1437.de/2015/01/05/bilderarchiv-2015/ - 2026-03-02T20:39:42.000Z + 2026-03-02T20:39:42.150Z monthly 0.8 @@ -4610,7 +4799,7 @@ https://www.rfc1437.de/2015/01/05/galaxy-defenders/ - 2026-03-02T20:39:45.000Z + 2026-03-02T20:39:45.564Z monthly 0.8 @@ -4619,7 +4808,7 @@ https://www.rfc1437.de/2015/01/04/years-end-on-gran-canaria/ - 2026-03-02T20:39:48.000Z + 2026-03-02T20:39:48.550Z monthly 0.8 @@ -4628,7 +4817,7 @@ https://www.rfc1437.de/2015/01/02/sentinels-of-the-multiverse/ - 2026-03-02T20:39:51.000Z + 2026-03-02T20:39:51.988Z monthly 0.8 @@ -4637,7 +4826,7 @@ https://www.rfc1437.de/2015/01/01/ascension-chronicle-of-the-godslayer/ - 2026-03-02T20:41:02.000Z + 2026-03-02T20:41:02.662Z monthly 0.8 @@ -4646,7 +4835,7 @@ https://www.rfc1437.de/2015/01/01/san-juan/ - 2026-03-02T20:41:05.000Z + 2026-03-02T20:41:05.498Z monthly 0.8 @@ -4655,7 +4844,7 @@ https://www.rfc1437.de/2014/12/07/woechentliche-leseliste-24/ - 2026-03-02T20:41:08.000Z + 2026-03-02T20:41:08.729Z monthly 0.8 @@ -4664,7 +4853,7 @@ https://www.rfc1437.de/2014/11/30/woechentliche-leseliste-23/ - 2026-03-02T20:41:11.000Z + 2026-03-02T20:41:11.869Z monthly 0.8 @@ -4673,7 +4862,7 @@ https://www.rfc1437.de/2014/11/16/woechentliche-leseliste-22/ - 2026-03-02T20:41:15.000Z + 2026-03-02T20:41:15.386Z monthly 0.8 @@ -4682,7 +4871,7 @@ https://www.rfc1437.de/2014/11/09/woechentliche-leseliste-21/ - 2026-03-02T20:41:18.000Z + 2026-03-02T20:41:18.533Z monthly 0.8 @@ -4691,7 +4880,7 @@ https://www.rfc1437.de/2014/10/26/woechentliche-leseliste-20/ - 2026-03-02T20:41:22.000Z + 2026-03-02T20:41:22.800Z monthly 0.8 @@ -4700,7 +4889,7 @@ https://www.rfc1437.de/2014/10/19/woechentliche-leseliste-19/ - 2026-03-02T20:41:27.000Z + 2026-03-02T20:41:27.425Z monthly 0.8 @@ -4709,7 +4898,7 @@ https://www.rfc1437.de/2014/10/12/woechentliche-leseliste-18/ - 2026-03-02T20:41:32.000Z + 2026-03-02T20:41:32.057Z monthly 0.8 @@ -4718,7 +4907,7 @@ https://www.rfc1437.de/2014/09/22/magefreemage/ - 2026-03-02T20:41:35.000Z + 2026-03-02T20:41:35.240Z monthly 0.8 @@ -4727,7 +4916,7 @@ https://www.rfc1437.de/2014/08/10/woechentliche-leseliste-17/ - 2026-03-02T20:41:38.000Z + 2026-03-02T20:41:38.423Z monthly 0.8 @@ -4736,7 +4925,7 @@ https://www.rfc1437.de/2014/07/29/a-brief-history-of-wiz-war/ - 2026-03-02T20:41:42.000Z + 2026-03-02T20:41:42.077Z monthly 0.8 @@ -4745,7 +4934,7 @@ https://www.rfc1437.de/2014/07/27/woechentliche-leseliste-16/ - 2026-03-02T20:41:46.000Z + 2026-03-02T20:41:46.469Z monthly 0.8 @@ -4754,7 +4943,7 @@ https://www.rfc1437.de/2014/07/26/alderac-entertainment-group-e2-80-a2-view-topic-thunderstone-variant-cutthroats-sellswords/ - 2026-03-02T20:41:50.000Z + 2026-03-02T20:41:50.520Z monthly 0.8 @@ -4763,7 +4952,7 @@ https://www.rfc1437.de/2014/07/22/deckmaster-a-mtg-variant-format-by-jim-bowie-mtguk-uk-magic-the-gathering-community-and-strategy/ - 2026-03-02T20:41:55.000Z + 2026-03-02T20:41:55.484Z monthly 0.8 @@ -4772,7 +4961,7 @@ https://www.rfc1437.de/2014/07/22/roadtrip-through-slovenia/ - 2026-03-02T20:41:59.000Z + 2026-03-02T20:41:59.255Z monthly 0.8 @@ -4781,7 +4970,7 @@ https://www.rfc1437.de/2014/06/29/woechentliche-leseliste-15/ - 2026-03-02T20:42:04.000Z + 2026-03-02T20:42:04.431Z monthly 0.8 @@ -4790,7 +4979,7 @@ https://www.rfc1437.de/2014/06/22/schloss-corvey/ - 2026-03-02T20:42:07.000Z + 2026-03-02T20:42:07.880Z monthly 0.8 @@ -4799,7 +4988,7 @@ https://www.rfc1437.de/2014/06/22/woechentliche-leseliste-14/ - 2026-03-02T20:42:12.000Z + 2026-03-02T20:42:12.980Z monthly 0.8 @@ -4808,7 +4997,7 @@ https://www.rfc1437.de/2014/06/15/woechentliche-leseliste-13/ - 2026-03-02T20:42:16.000Z + 2026-03-02T20:42:16.865Z monthly 0.8 @@ -4817,7 +5006,7 @@ https://www.rfc1437.de/2014/06/08/woechentliche-leseliste-12/ - 2026-03-02T20:42:21.000Z + 2026-03-02T20:42:21.039Z monthly 0.8 @@ -4826,7 +5015,7 @@ https://www.rfc1437.de/2014/06/04/end-to-end-google-will-mit-javascript-verschluesseln-golem-de/ - 2026-03-02T20:42:26.000Z + 2026-03-02T20:42:26.628Z monthly 0.8 @@ -4835,7 +5024,7 @@ https://www.rfc1437.de/2014/06/04/getting-started-in-legacy-legacy-on-a-budget-legacy-type-1-5-the-game-mtg-salvation-forums-mtg-salvation/ - 2026-03-02T20:42:32.000Z + 2026-03-02T20:42:32.294Z monthly 0.8 @@ -4844,7 +5033,7 @@ https://www.rfc1437.de/2014/06/03/micro-python-python-for-microcontrollers/ - 2026-03-02T20:42:36.000Z + 2026-03-02T20:42:36.784Z monthly 0.8 @@ -4853,7 +5042,7 @@ https://www.rfc1437.de/2014/06/03/high-fidelity/ - 2026-03-02T20:42:41.000Z + 2026-03-02T20:42:41.787Z monthly 0.8 @@ -4862,7 +5051,7 @@ https://www.rfc1437.de/2014/06/03/jetdrive-500520720-willkommen-auf-der-transcend-webseite/ - 2026-03-02T20:42:46.000Z + 2026-03-02T20:42:46.834Z monthly 0.8 @@ -4871,7 +5060,7 @@ https://www.rfc1437.de/2014/06/02/warhammer-diskwars-deutsch/ - 2026-03-02T20:42:51.000Z + 2026-03-02T20:42:51.372Z monthly 0.8 @@ -4880,7 +5069,7 @@ https://www.rfc1437.de/2014/06/01/woechentliche-leseliste-11/ - 2026-03-02T20:42:58.000Z + 2026-03-02T20:42:58.173Z monthly 0.8 @@ -4889,7 +5078,7 @@ https://www.rfc1437.de/2014/05/28/eu-chefposten-parlament-will-juncker-cameron-will-ihn-nicht-tagesschau-de/ - 2026-03-02T20:43:04.000Z + 2026-03-02T20:43:04.225Z monthly 0.8 @@ -4898,7 +5087,7 @@ https://www.rfc1437.de/2014/05/28/generalbundesanwalt-kein-ermittlungsverfahren-in-deutschland-zur-nsa-ueberwachung-golem-de/ - 2026-03-02T20:43:09.000Z + 2026-03-02T20:43:09.852Z monthly 0.8 @@ -4907,7 +5096,7 @@ https://www.rfc1437.de/2014/05/25/woechentliche-leseliste-10/ - 2026-03-02T20:43:17.000Z + 2026-03-02T20:43:17.160Z monthly 0.8 @@ -4916,7 +5105,7 @@ https://www.rfc1437.de/2014/05/22/click-command-line-miniframework/ - 2026-03-02T20:43:22.000Z + 2026-03-02T20:43:22.266Z monthly 0.8 @@ -4925,7 +5114,7 @@ https://www.rfc1437.de/2014/05/18/woechentliche-leseliste-9/ - 2026-03-02T20:43:30.000Z + 2026-03-02T20:43:30.567Z monthly 0.8 @@ -4934,7 +5123,7 @@ https://www.rfc1437.de/2014/05/10/leiden-hugos-house-of-photo-horror/ - 2026-03-02T20:43:36.000Z + 2026-03-02T20:43:36.040Z monthly 0.8 @@ -4943,7 +5132,7 @@ https://www.rfc1437.de/2014/05/04/woechentliche-leseliste-8/ - 2026-03-02T20:43:42.000Z + 2026-03-02T20:43:42.784Z monthly 0.8 @@ -4952,7 +5141,7 @@ https://www.rfc1437.de/2014/04/28/woechentliche-leseliste-7/ - 2026-03-02T20:43:48.000Z + 2026-03-02T20:43:48.619Z monthly 0.8 @@ -4961,7 +5150,7 @@ https://www.rfc1437.de/2014/04/22/tails-ueber-tails/ - 2026-03-02T20:50:24.000Z + 2026-03-02T20:50:24.118Z monthly 0.8 @@ -4970,7 +5159,7 @@ https://www.rfc1437.de/2014/04/15/woechentliche-leseliste-6/ - 2026-03-03T10:15:22.000Z + 2026-03-03T10:15:22.677Z monthly 0.8 @@ -4979,7 +5168,7 @@ https://www.rfc1437.de/2014/04/13/schleuse-dyckburg-und-handorf/ - 2026-03-03T10:15:25.000Z + 2026-03-03T10:15:25.541Z monthly 0.8 @@ -4988,7 +5177,7 @@ https://www.rfc1437.de/2014/04/13/marktbesuch/ - 2026-03-03T10:15:28.000Z + 2026-03-03T10:15:28.250Z monthly 0.8 @@ -4997,7 +5186,7 @@ https://www.rfc1437.de/2014/04/04/neulich-im-internet-11/ - 2026-03-03T10:15:31.000Z + 2026-03-03T10:15:31.386Z monthly 0.8 @@ -5006,7 +5195,7 @@ https://www.rfc1437.de/2014/04/04/net-compiler-platform-roslyn-documentation/ - 2026-03-03T10:15:34.000Z + 2026-03-03T10:15:34.082Z monthly 0.8 @@ -5015,7 +5204,7 @@ https://www.rfc1437.de/2014/04/02/2-0-series-ipython-2-0-0-documentation/ - 2026-03-03T10:15:37.000Z + 2026-03-03T10:15:37.539Z monthly 0.8 @@ -5024,7 +5213,7 @@ https://www.rfc1437.de/2014/03/20/reclaim-hugo-collected-stuff-from-social-networks/ - 2026-03-03T10:15:41.000Z + 2026-03-03T10:15:41.033Z monthly 0.8 @@ -5033,7 +5222,7 @@ https://www.rfc1437.de/2014/03/12/thekolwiki/ - 2026-03-03T10:15:43.000Z + 2026-03-03T10:15:43.700Z monthly 0.8 @@ -5042,7 +5231,7 @@ https://www.rfc1437.de/2014/03/11/the-kingdom-of-loathing/ - 2026-03-03T10:15:47.000Z + 2026-03-03T10:15:47.034Z monthly 0.8 @@ -5060,7 +5249,7 @@ https://www.rfc1437.de/2014/02/26/openbuilds-ox-cnc-machine-openbuilds/ - 2026-03-03T10:15:53.000Z + 2026-03-03T10:15:53.990Z monthly 0.8 @@ -5069,7 +5258,7 @@ https://www.rfc1437.de/2014/02/26/microsoft-oeffnet-net-quellcode-pro-linux/ - 2026-03-03T10:15:57.000Z + 2026-03-03T10:15:57.319Z monthly 0.8 @@ -5078,7 +5267,7 @@ https://www.rfc1437.de/2014/02/25/mtg-deckbuilder-cheeky-hustler-deckling/ - 2026-03-03T10:16:00.000Z + 2026-03-03T10:16:00.307Z monthly 0.8 @@ -5087,7 +5276,7 @@ https://www.rfc1437.de/2014/01/31/welcome-to-risc-os-pi-in-documentation/ - 2026-03-03T10:16:03.000Z + 2026-03-03T10:16:03.307Z monthly 0.8 @@ -5096,7 +5285,7 @@ https://www.rfc1437.de/2014/01/27/the-julia-language/ - 2026-03-03T10:16:05.000Z + 2026-03-03T10:16:05.981Z monthly 0.8 @@ -5105,7 +5294,7 @@ https://www.rfc1437.de/2014/01/24/woechentliche-leseliste-5/ - 2026-03-03T10:16:08.000Z + 2026-03-03T10:16:08.971Z monthly 0.8 @@ -5114,7 +5303,7 @@ https://www.rfc1437.de/2014/01/16/woechentliche-leseliste-4/ - 2026-03-03T10:16:11.000Z + 2026-03-03T10:16:11.978Z monthly 0.8 @@ -5123,7 +5312,7 @@ https://www.rfc1437.de/2014/01/16/kachayevfn-py-c2-b7-github/ - 2026-03-03T10:16:14.000Z + 2026-03-03T10:16:14.689Z monthly 0.8 @@ -5132,7 +5321,7 @@ https://www.rfc1437.de/2014/01/16/opencamera/ - 2026-03-03T10:16:17.000Z + 2026-03-03T10:16:17.376Z monthly 0.8 @@ -5141,7 +5330,7 @@ https://www.rfc1437.de/2014/01/16/will-you-fight-the-hand-that-feeds-daily-mtg-magic-the-gathering/ - 2026-03-03T10:16:21.000Z + 2026-03-03T10:16:21.035Z monthly 0.8 @@ -5150,7 +5339,7 @@ https://www.rfc1437.de/2014/01/14/mogis-god-of-slaughter-by-jarvis-yu-gatheringmagic-com-magic-the-gathering-website/ - 2026-03-03T10:16:24.000Z + 2026-03-03T10:16:24.377Z monthly 0.8 @@ -5159,7 +5348,7 @@ https://www.rfc1437.de/2014/01/14/port-32764-cisco-bestaetigt-backdoor-in-routern-golem-de/ - 2026-03-03T10:16:28.000Z + 2026-03-03T10:16:28.023Z monthly 0.8 @@ -5168,7 +5357,7 @@ https://www.rfc1437.de/2014/01/14/google-will-hausgeraete-markt-erobern-tagesschau-de/ - 2026-03-03T10:16:30.000Z + 2026-03-03T10:16:30.697Z monthly 0.8 @@ -5177,7 +5366,7 @@ https://www.rfc1437.de/2014/01/14/telehash-json-udp-dht-freedom/ - 2026-03-03T10:16:34.000Z + 2026-03-03T10:16:34.029Z monthly 0.8 @@ -5186,7 +5375,7 @@ https://www.rfc1437.de/2014/01/13/self-mallard-4-5-0-released-self/ - 2026-03-03T10:16:37.000Z + 2026-03-03T10:16:37.675Z monthly 0.8 @@ -5195,7 +5384,7 @@ https://www.rfc1437.de/2014/01/07/ori-file-system/ - 2026-03-03T10:16:40.000Z + 2026-03-03T10:16:40.359Z monthly 0.8 @@ -5204,7 +5393,7 @@ https://www.rfc1437.de/2014/01/06/magic-for-fun/ - 2026-03-03T10:16:43.000Z + 2026-03-03T10:16:43.704Z monthly 0.8 @@ -5213,7 +5402,7 @@ https://www.rfc1437.de/2014/01/04/commie-box-mtg-magic-the-gathering-format/ - 2026-03-03T10:16:47.000Z + 2026-03-03T10:16:47.023Z monthly 0.8 @@ -5222,7 +5411,7 @@ https://www.rfc1437.de/2014/01/03/the-stack-and-back/ - 2026-03-03T10:16:50.000Z + 2026-03-03T10:16:50.363Z monthly 0.8 @@ -5231,7 +5420,7 @@ https://www.rfc1437.de/2014/01/03/bilderarchiv-2014/ - 2026-03-03T10:16:52.000Z + 2026-03-03T10:16:52.706Z monthly 0.8 @@ -5240,7 +5429,7 @@ https://www.rfc1437.de/2013/12/24/hiltenfingen-und-landsberg/ - 2026-03-03T10:16:55.000Z + 2026-03-03T10:16:55.372Z monthly 0.8 @@ -5249,7 +5438,7 @@ https://www.rfc1437.de/2013/12/19/un-peu-de-math-installing-and-using-sage-just-got-even-easier/ - 2026-03-03T10:16:59.000Z + 2026-03-03T10:16:59.030Z monthly 0.8 @@ -5258,7 +5447,7 @@ https://www.rfc1437.de/2013/12/18/hands-on-sailfish-os-intelligenter-baukasten-zum-basteln-und-portieren-golem-de/ - 2026-03-03T10:17:03.000Z + 2026-03-03T10:17:03.031Z monthly 0.8 @@ -5267,7 +5456,7 @@ https://www.rfc1437.de/2013/12/13/wordpress-wordpress-3-8-parker/ - 2026-03-03T10:17:06.000Z + 2026-03-03T10:17:06.707Z monthly 0.8 @@ -5276,7 +5465,7 @@ https://www.rfc1437.de/2013/12/13/plug-ins-for-adobe-photoshop-lightroom-adobe-labs-2/ - 2026-03-03T10:17:09.000Z + 2026-03-03T10:17:09.696Z monthly 0.8 @@ -5285,7 +5474,7 @@ https://www.rfc1437.de/2013/12/09/madeira-urlaub/ - 2026-03-03T10:17:12.000Z + 2026-03-03T10:17:12.716Z monthly 0.8 @@ -5294,7 +5483,7 @@ https://www.rfc1437.de/2013/12/09/aussen-hui-innen-pfui/ - 2026-03-03T10:17:16.000Z + 2026-03-03T10:17:16.088Z monthly 0.8 @@ -5303,7 +5492,7 @@ https://www.rfc1437.de/2013/11/11/bublcam-360o-camera-technology-for-everyone-by-bubl-technology-inc-kickstarter/ - 2026-03-03T10:17:19.000Z + 2026-03-03T10:17:19.439Z monthly 0.8 @@ -5312,7 +5501,7 @@ https://www.rfc1437.de/2013/11/06/fishing-in-modern-top-64-at-grand-prix-antwerp-by-raphael-levy-magic-the-gathering-tcg-article/ - 2026-03-03T10:17:23.000Z + 2026-03-03T10:17:23.140Z monthly 0.8 @@ -5321,7 +5510,7 @@ https://www.rfc1437.de/2013/10/17/sony-a7r-hands-on/ - 2026-03-03T10:17:26.000Z + 2026-03-03T10:17:26.160Z monthly 0.8 @@ -5330,7 +5519,7 @@ https://www.rfc1437.de/2013/10/17/google-apps-script-google-developers/ - 2026-03-03T10:17:28.000Z + 2026-03-03T10:17:28.851Z monthly 0.8 @@ -5339,7 +5528,7 @@ https://www.rfc1437.de/2013/10/15/roundcube-free-and-open-source-webmail-software/ - 2026-03-03T10:17:32.000Z + 2026-03-03T10:17:32.531Z monthly 0.8 @@ -5348,7 +5537,7 @@ https://www.rfc1437.de/2013/10/14/drawing-attention-daily-mtg-magic-the-gathering/ - 2026-03-03T10:17:35.000Z + 2026-03-03T10:17:35.911Z monthly 0.8 @@ -5357,7 +5546,7 @@ https://www.rfc1437.de/2013/10/11/scala-implicits-not-to-be-feared/ - 2026-03-03T10:17:38.000Z + 2026-03-03T10:17:38.962Z monthly 0.8 @@ -5366,7 +5555,7 @@ https://www.rfc1437.de/2013/09/24/lihaoyimacropy/ - 2026-03-03T10:17:42.000Z + 2026-03-03T10:17:42.346Z monthly 0.8 @@ -5375,7 +5564,7 @@ https://www.rfc1437.de/2013/09/23/tokens-zum-ausdrucken/ - 2026-03-03T10:17:45.000Z + 2026-03-03T10:17:45.724Z monthly 0.8 @@ -5384,7 +5573,7 @@ https://www.rfc1437.de/2013/09/23/welcome-magic-set-editor/ - 2026-03-03T10:17:49.000Z + 2026-03-03T10:17:49.124Z monthly 0.8 @@ -5393,7 +5582,7 @@ https://www.rfc1437.de/2013/09/21/magic-plugin-for-lackeyccg/ - 2026-03-03T10:17:51.000Z + 2026-03-03T10:17:51.845Z monthly 0.8 @@ -5402,7 +5591,7 @@ https://www.rfc1437.de/2013/09/21/lackeyccg-play-any-ccg-online-or-make-your-own-mac-or-pc/ - 2026-03-03T10:17:55.000Z + 2026-03-03T10:17:55.601Z monthly 0.8 @@ -5411,7 +5600,7 @@ https://www.rfc1437.de/2013/09/19/zim-a-desktop-wiki/ - 2026-03-03T10:17:59.000Z + 2026-03-03T10:17:59.051Z monthly 0.8 @@ -5420,7 +5609,7 @@ https://www.rfc1437.de/2013/09/18/fricas-an-advanced-cas/ - 2026-03-03T10:18:02.000Z + 2026-03-03T10:18:02.477Z monthly 0.8 @@ -5429,7 +5618,7 @@ https://www.rfc1437.de/2013/09/18/python-data-analysis-library-pandas-python-data-analysis-library/ - 2026-03-03T10:18:05.000Z + 2026-03-03T10:18:05.562Z monthly 0.8 @@ -5438,7 +5627,7 @@ https://www.rfc1437.de/2013/09/17/neulich-im-internet-10/ - 2026-03-03T10:18:08.000Z + 2026-03-03T10:18:08.966Z monthly 0.8 @@ -5447,7 +5636,7 @@ https://www.rfc1437.de/2013/09/17/neulich-im-internet-schwarzweiss-ausgabe/ - 2026-03-03T10:18:12.000Z + 2026-03-03T10:18:12.402Z monthly 0.8 @@ -5456,7 +5645,7 @@ https://www.rfc1437.de/2013/09/12/bundesregierung-datenschuetzer-nicht-fuer-nsa-skandal-zustaendig-golem-de/ - 2026-03-03T10:18:15.000Z + 2026-03-03T10:18:15.899Z monthly 0.8 @@ -5465,7 +5654,7 @@ https://www.rfc1437.de/2013/09/11/freebase/ - 2026-03-03T10:18:18.000Z + 2026-03-03T10:18:18.663Z monthly 0.8 @@ -5474,7 +5663,7 @@ https://www.rfc1437.de/2013/09/11/wiki-dbpedia-org-about/ - 2026-03-03T10:18:21.000Z + 2026-03-03T10:18:21.748Z monthly 0.8 @@ -5483,7 +5672,7 @@ https://www.rfc1437.de/2013/09/11/quepy-a-python-framework-to-transform-natural-language-questions-to-queries/ - 2026-03-03T10:18:25.000Z + 2026-03-03T10:18:25.199Z monthly 0.8 @@ -5492,7 +5681,7 @@ https://www.rfc1437.de/2013/09/11/tweak-mode-for-processing/ - 2026-03-03T10:18:28.000Z + 2026-03-03T10:18:28.319Z monthly 0.8 @@ -5501,7 +5690,7 @@ https://www.rfc1437.de/2013/09/02/youre-missing-the-point-of-promises/ - 2026-03-03T10:18:31.000Z + 2026-03-03T10:18:31.774Z monthly 0.8 @@ -5510,7 +5699,7 @@ https://www.rfc1437.de/2013/08/30/part-cwlambdanative/ - 2026-03-03T10:18:34.000Z + 2026-03-03T10:18:34.889Z monthly 0.8 @@ -5519,7 +5708,7 @@ https://www.rfc1437.de/2013/08/30/gcl-devel-gcl-2-6-8-and-2-6-9-are-released/ - 2026-03-03T10:18:39.000Z + 2026-03-03T10:18:39.109Z monthly 0.8 @@ -5528,7 +5717,7 @@ https://www.rfc1437.de/2013/08/28/anaconda/ - 2026-03-03T10:18:42.000Z + 2026-03-03T10:18:42.605Z monthly 0.8 @@ -5537,7 +5726,7 @@ https://www.rfc1437.de/2013/08/28/meet-regexpbuilder-verbal-expressions-rich-older-cousin-the-changelog/ - 2026-03-03T10:18:46.000Z + 2026-03-03T10:18:46.098Z monthly 0.8 @@ -5546,7 +5735,7 @@ https://www.rfc1437.de/2013/08/28/trusted-computing-bundesregierung-warnt-vor-windows-8-digitale-welt-technologie-wirtschaftswoche/ - 2026-03-03T10:18:49.000Z + 2026-03-03T10:18:49.944Z monthly 0.8 @@ -5555,7 +5744,7 @@ https://www.rfc1437.de/2013/08/26/woechentliche-leseliste-3/ - 2026-03-03T10:18:54.000Z + 2026-03-03T10:18:54.504Z monthly 0.8 @@ -5564,7 +5753,7 @@ https://www.rfc1437.de/2013/08/19/pypy-js-update-a-proof-of-concept-jit/ - 2026-03-03T10:18:57.000Z + 2026-03-03T10:18:57.627Z monthly 0.8 @@ -5573,7 +5762,7 @@ https://www.rfc1437.de/2013/08/19/how-to-create-your-own-chrome-extensions/ - 2026-03-03T10:19:00.000Z + 2026-03-03T10:19:00.782Z monthly 0.8 @@ -5582,7 +5771,7 @@ https://www.rfc1437.de/2013/08/19/woechentliche-leseliste-2/ - 2026-03-03T10:19:03.000Z + 2026-03-03T10:19:03.939Z monthly 0.8 @@ -5591,7 +5780,7 @@ https://www.rfc1437.de/2013/08/07/schneier-on-security-nsa-surveillance-and-mission-creep/ - 2026-03-03T10:19:07.000Z + 2026-03-03T10:19:07.422Z monthly 0.8 @@ -5600,7 +5789,7 @@ https://www.rfc1437.de/2013/08/06/woechentliche-leseliste/ - 2026-03-03T10:19:11.000Z + 2026-03-03T10:19:11.255Z monthly 0.8 @@ -5609,7 +5798,7 @@ https://www.rfc1437.de/2013/08/04/forge-slightly-magic/ - 2026-03-03T10:19:14.000Z + 2026-03-03T10:19:14.765Z monthly 0.8 @@ -5618,7 +5807,7 @@ https://www.rfc1437.de/2013/07/29/wochentliche-leseliste-9/ - 2026-03-03T10:19:18.000Z + 2026-03-03T10:19:18.269Z monthly 0.8 @@ -5627,7 +5816,7 @@ https://www.rfc1437.de/2013/07/29/pornwall-britischer-pornofilter-blockt-auch-andere-inhalte-golem-de/ - 2026-03-03T10:19:21.000Z + 2026-03-03T10:19:21.838Z monthly 0.8 @@ -5636,7 +5825,7 @@ https://www.rfc1437.de/2013/07/29/verfassungsschutz-chef-keine-hinweise-auf-spahaktionen-tagesschau-de/ - 2026-03-03T10:19:25.000Z + 2026-03-03T10:19:25.695Z monthly 0.8 @@ -5645,7 +5834,7 @@ https://www.rfc1437.de/2013/07/23/heuermhleap-motion-processing/ - 2026-03-03T10:19:28.000Z + 2026-03-03T10:19:28.878Z monthly 0.8 @@ -5654,7 +5843,7 @@ https://www.rfc1437.de/2013/07/23/mrzlleapmotionp5/ - 2026-03-03T10:19:31.000Z + 2026-03-03T10:19:31.725Z monthly 0.8 @@ -5663,7 +5852,7 @@ https://www.rfc1437.de/2013/07/22/wochentliche-leseliste-8/ - 2026-03-03T10:19:35.000Z + 2026-03-03T10:19:35.316Z monthly 0.8 @@ -5672,7 +5861,7 @@ https://www.rfc1437.de/2013/07/02/wochentliche-leseliste-7/ - 2026-03-03T10:19:39.000Z + 2026-03-03T10:19:39.982Z monthly 0.8 @@ -5681,7 +5870,7 @@ https://www.rfc1437.de/2013/07/02/wochentliche-leseliste-6/ - 2026-03-03T10:19:43.000Z + 2026-03-03T10:19:43.965Z monthly 0.8 @@ -5690,7 +5879,7 @@ https://www.rfc1437.de/2013/07/01/washortparsley/ - 2026-03-03T10:19:46.000Z + 2026-03-03T10:19:46.933Z monthly 0.8 @@ -5699,7 +5888,7 @@ https://www.rfc1437.de/2013/06/23/neulich-im-internet-schwarzweis-ausgabe-10/ - 2026-03-03T10:19:50.000Z + 2026-03-03T10:19:50.555Z monthly 0.8 @@ -5708,7 +5897,7 @@ https://www.rfc1437.de/2013/06/23/neulich-im-internet-9/ - 2026-03-03T10:19:53.000Z + 2026-03-03T10:19:53.949Z monthly 0.8 @@ -5717,7 +5906,7 @@ https://www.rfc1437.de/2013/06/23/visiting-santorini-hugos-house-of-photo-horror/ - 2026-03-03T10:19:57.000Z + 2026-03-03T10:19:57.360Z monthly 0.8 @@ -5726,7 +5915,7 @@ https://www.rfc1437.de/2013/05/31/review-the-2013-ricoh-gr-digital-v-ming-thein-photographer/ - 2026-03-03T10:20:01.000Z + 2026-03-03T10:20:01.812Z monthly 0.8 @@ -5735,7 +5924,7 @@ https://www.rfc1437.de/2013/05/17/lihaoyimacropy-c2-b7-github/ - 2026-03-03T10:20:05.000Z + 2026-03-03T10:20:05.245Z monthly 0.8 @@ -5744,7 +5933,7 @@ https://www.rfc1437.de/2013/05/16/getting-started-with-android-studio-android-developers/ - 2026-03-03T10:20:08.000Z + 2026-03-03T10:20:08.588Z monthly 0.8 @@ -5753,7 +5942,7 @@ https://www.rfc1437.de/2013/05/15/updated-contrib/ - 2026-03-03T10:20:11.000Z + 2026-03-03T10:20:11.601Z monthly 0.8 @@ -5762,7 +5951,7 @@ https://www.rfc1437.de/2013/05/06/wochentliche-leseliste-5/ - 2026-03-03T10:20:15.000Z + 2026-03-03T10:20:15.431Z monthly 0.8 @@ -5771,7 +5960,7 @@ https://www.rfc1437.de/2013/04/29/davazpjscl-c2-b7-github/ - 2026-03-03T10:20:19.000Z + 2026-03-03T10:20:19.293Z monthly 0.8 @@ -5780,7 +5969,7 @@ https://www.rfc1437.de/2013/04/29/wochentliche-leseliste-4/ - 2026-03-03T10:20:23.000Z + 2026-03-03T10:20:23.856Z monthly 0.8 @@ -5789,7 +5978,7 @@ https://www.rfc1437.de/2013/04/23/wochentliche-leseliste-3/ - 2026-03-03T10:20:28.000Z + 2026-03-03T10:20:28.420Z monthly 0.8 @@ -5798,7 +5987,7 @@ https://www.rfc1437.de/2013/04/18/chathead-basics-piwai-info/ - 2026-03-03T10:20:31.000Z + 2026-03-03T10:20:31.482Z monthly 0.8 @@ -5807,7 +5996,7 @@ https://www.rfc1437.de/2013/04/14/wochentliche-leseliste-2/ - 2026-03-03T10:20:36.000Z + 2026-03-03T10:20:36.084Z monthly 0.8 @@ -5816,7 +6005,7 @@ https://www.rfc1437.de/2013/04/12/3d-printing-with-nylon-618-filament-in-tie-dye-colours/ - 2026-03-03T10:20:39.000Z + 2026-03-03T10:20:39.907Z monthly 0.8 @@ -5825,7 +6014,7 @@ https://www.rfc1437.de/2013/04/11/livecode-community-edition-overview-runrev/ - 2026-03-03T10:20:44.000Z + 2026-03-03T10:20:44.089Z monthly 0.8 @@ -5834,7 +6023,7 @@ https://www.rfc1437.de/2013/04/11/tutorial-c2-b7-alexander-yakushevlein-droid-wiki/ - 2026-03-03T10:20:48.000Z + 2026-03-03T10:20:48.244Z monthly 0.8 @@ -5843,7 +6032,7 @@ https://www.rfc1437.de/2013/04/08/wochentliche-leseliste/ - 2026-03-03T10:20:52.000Z + 2026-03-03T10:20:52.763Z monthly 0.8 @@ -5852,7 +6041,7 @@ https://www.rfc1437.de/2013/04/02/tiny-tiny-rss-tutorial-teil-1-installation-konfiguration-michael-sonntag/ - 2026-03-03T10:20:56.000Z + 2026-03-03T10:20:56.662Z monthly 0.8 @@ -5861,7 +6050,7 @@ https://www.rfc1437.de/2013/04/02/tiny-tiny-rss/ - 2026-03-03T10:21:00.000Z + 2026-03-03T10:21:00.993Z monthly 0.8 @@ -5870,7 +6059,7 @@ https://www.rfc1437.de/2013/03/30/black-and-white-hugos-house-of-photo-horror/ - 2026-03-03T10:21:05.000Z + 2026-03-03T10:21:05.414Z monthly 0.8 @@ -5879,7 +6068,7 @@ https://www.rfc1437.de/2013/03/27/jeffreys-export-to-google-drive-lightroom-plugin/ - 2026-03-03T10:32:33.000Z + 2026-03-03T10:32:33.379Z monthly 0.8 @@ -5888,7 +6077,7 @@ https://www.rfc1437.de/2013/03/26/twotoastersandroauth-c2-b7-github/ - 2026-03-03T10:32:36.000Z + 2026-03-03T10:32:36.362Z monthly 0.8 @@ -5897,7 +6086,7 @@ https://www.rfc1437.de/2013/03/25/sim-on-a-stick/ - 2026-03-03T10:32:39.000Z + 2026-03-03T10:32:39.051Z monthly 0.8 @@ -5906,7 +6095,7 @@ https://www.rfc1437.de/2013/03/22/netzpolitische-hundstage-in-der-spd-lummaland/ - 2026-03-03T10:32:42.000Z + 2026-03-03T10:32:42.711Z monthly 0.8 @@ -5915,7 +6104,7 @@ https://www.rfc1437.de/2013/03/22/neulich-im-internet-schwarzweis-ausgabe-9/ - 2026-03-03T10:32:46.000Z + 2026-03-03T10:32:46.016Z monthly 0.8 @@ -5924,7 +6113,7 @@ https://www.rfc1437.de/2013/03/22/neulich-im-internet-8/ - 2026-03-03T10:32:49.000Z + 2026-03-03T10:32:49.024Z monthly 0.8 @@ -5933,7 +6122,7 @@ https://www.rfc1437.de/2013/03/21/livecode-markdown-converter/ - 2026-03-07T21:06:40.000Z + 2026-03-07T21:06:40.743Z monthly 0.8 @@ -5942,7 +6131,7 @@ https://www.rfc1437.de/2013/03/21/ox-documents-online-office-suite-als-open-source-golem-de/ - 2026-03-03T10:32:55.000Z + 2026-03-03T10:32:55.347Z monthly 0.8 @@ -5951,7 +6140,7 @@ https://www.rfc1437.de/2013/03/18/robot-willstino-c2-b7-github/ - 2026-03-03T10:32:58.000Z + 2026-03-03T10:32:58.336Z monthly 0.8 @@ -5960,7 +6149,7 @@ https://www.rfc1437.de/2013/03/18/everythingserverubuntu-ryzom-ryzom-core-development-site/ - 2026-03-03T10:33:01.000Z + 2026-03-03T10:33:01.975Z monthly 0.8 @@ -5969,7 +6158,7 @@ https://www.rfc1437.de/2013/03/16/vienna-calling/ - 2026-03-03T10:33:05.000Z + 2026-03-03T10:33:05.312Z monthly 0.8 @@ -5978,7 +6167,7 @@ https://www.rfc1437.de/2013/03/15/samuelclaynewsblur-c2-b7-github/ - 2026-03-03T10:33:08.000Z + 2026-03-03T10:33:08.309Z monthly 0.8 @@ -5987,7 +6176,7 @@ https://www.rfc1437.de/2013/03/09/connecting-arduino-to-mathematica-on-mac-os-x-with-serialio/ - 2026-03-03T10:33:11.000Z + 2026-03-03T10:33:11.299Z monthly 0.8 @@ -5996,7 +6185,7 @@ https://www.rfc1437.de/2013/03/08/embedxcode-home/ - 2026-03-03T10:33:14.000Z + 2026-03-03T10:33:14.017Z monthly 0.8 @@ -6005,7 +6194,7 @@ https://www.rfc1437.de/2013/03/06/pushing-the-limits-of-self-programming-artificial-intelligence-primary-objects/ - 2026-03-03T10:33:16.000Z + 2026-03-03T10:33:16.709Z monthly 0.8 @@ -6014,7 +6203,7 @@ https://www.rfc1437.de/2013/03/04/desinformation-mauer-in-geiselhaft-taz-de/ - 2026-03-03T10:33:20.000Z + 2026-03-03T10:33:20.027Z monthly 0.8 @@ -6023,7 +6212,7 @@ https://www.rfc1437.de/2013/03/03/getting-started-with-nrf24l01-on-arduino-maniacbug/ - 2026-03-03T10:33:23.000Z + 2026-03-03T10:33:23.073Z monthly 0.8 @@ -6032,7 +6221,7 @@ https://www.rfc1437.de/2013/03/02/gt-m/ - 2026-03-03T10:33:26.000Z + 2026-03-03T10:33:26.412Z monthly 0.8 @@ -6041,7 +6230,7 @@ https://www.rfc1437.de/2013/03/02/mumps/ - 2026-03-03T10:33:29.000Z + 2026-03-03T10:33:29.406Z monthly 0.8 @@ -6050,7 +6239,7 @@ https://www.rfc1437.de/2013/03/02/mumpsii-multidimensional-and-hierarchical-toolkit/ - 2026-03-03T10:33:32.000Z + 2026-03-03T10:33:32.421Z monthly 0.8 @@ -6059,7 +6248,7 @@ https://www.rfc1437.de/2013/02/27/hugos-house-of-photo-horror/ - 2026-03-03T10:33:35.000Z + 2026-03-03T10:33:35.750Z monthly 0.8 @@ -6068,7 +6257,7 @@ https://www.rfc1437.de/2013/02/27/koken-creative-website-publishing/ - 2026-03-03T10:33:39.000Z + 2026-03-03T10:33:39.087Z monthly 0.8 @@ -6077,7 +6266,7 @@ https://www.rfc1437.de/2013/02/26/arduino-camera-shield-arduino-based-camera/ - 2026-03-03T10:33:41.000Z + 2026-03-03T10:33:41.783Z monthly 0.8 @@ -6086,7 +6275,7 @@ https://www.rfc1437.de/2013/02/26/craft-camera-by-coralie-gourguechon-mocovote-com/ - 2026-03-03T10:33:44.000Z + 2026-03-03T10:33:44.790Z monthly 0.8 @@ -6095,7 +6284,7 @@ https://www.rfc1437.de/2013/02/25/reprap-development-and-further-adventures-in-diy-3d-printing-slic3r-is-nicer-part-1-settings-and-extruder-calibration/ - 2026-03-03T10:33:48.000Z + 2026-03-03T10:33:48.110Z monthly 0.8 @@ -6104,7 +6293,7 @@ https://www.rfc1437.de/2013/02/25/physibleexchange-popular/ - 2026-03-03T10:33:50.000Z + 2026-03-03T10:33:50.782Z monthly 0.8 @@ -6113,7 +6302,7 @@ https://www.rfc1437.de/2013/02/20/pcduino-arduino-compatible-headers/ - 2026-03-03T10:33:53.000Z + 2026-03-03T10:33:53.792Z monthly 0.8 @@ -6122,7 +6311,7 @@ https://www.rfc1437.de/2013/02/20/pudb-2012-3-cui-debugger-for-python/ - 2026-03-03T10:33:57.000Z + 2026-03-03T10:33:57.464Z monthly 0.8 @@ -6131,7 +6320,7 @@ https://www.rfc1437.de/2013/02/19/reconstruct-your-world-with-reconstructme/ - 2026-03-03T10:34:00.000Z + 2026-03-03T10:34:00.460Z monthly 0.8 @@ -6140,7 +6329,7 @@ https://www.rfc1437.de/2013/02/19/fooseloctoprint-at-devel-c2-b7-github/ - 2026-03-03T10:34:04.000Z + 2026-03-03T10:34:04.132Z monthly 0.8 @@ -6149,7 +6338,7 @@ https://www.rfc1437.de/2013/02/19/usb-serial-for-android-android-usb-host-serial-driver-library-for-cdc-ftdi-arduino-and-other-devices-google-project-hosting/ - 2026-03-03T10:34:07.000Z + 2026-03-03T10:34:07.492Z monthly 0.8 @@ -6158,7 +6347,7 @@ https://www.rfc1437.de/2013/02/18/neulich-im-internet-schwarzweis-ausgabe-8/ - 2026-03-03T10:34:10.000Z + 2026-03-03T10:34:10.826Z monthly 0.8 @@ -6167,7 +6356,7 @@ https://www.rfc1437.de/2013/02/18/write-yourself-a-haskell-in-lisp-17-february-2013/ - 2026-03-03T10:34:14.000Z + 2026-03-03T10:34:14.225Z monthly 0.8 @@ -6176,7 +6365,7 @@ https://www.rfc1437.de/2013/02/17/controlling-arduino-with-android-using-processing/ - 2026-03-03T10:34:17.000Z + 2026-03-03T10:34:17.606Z monthly 0.8 @@ -6185,7 +6374,7 @@ https://www.rfc1437.de/2013/02/15/cura/ - 2026-03-03T10:34:20.000Z + 2026-03-03T10:34:20.669Z monthly 0.8 @@ -6194,7 +6383,7 @@ https://www.rfc1437.de/2013/02/15/3ders-org-infographic-step-by-step-guide-for-3d-printing-with-a-reprap/ - 2026-03-03T10:34:24.000Z + 2026-03-03T10:34:24.354Z monthly 0.8 @@ -6203,7 +6392,7 @@ https://www.rfc1437.de/2013/02/15/328eforth/ - 2026-03-03T10:34:27.000Z + 2026-03-03T10:34:27.387Z monthly 0.8 @@ -6212,7 +6401,7 @@ https://www.rfc1437.de/2013/02/15/amforth-atmega-forth/ - 2026-03-03T10:34:30.000Z + 2026-03-03T10:34:30.408Z monthly 0.8 @@ -6221,7 +6410,7 @@ https://www.rfc1437.de/2013/02/14/industruino/ - 2026-03-03T10:34:33.000Z + 2026-03-03T10:34:33.476Z monthly 0.8 @@ -6230,7 +6419,7 @@ https://www.rfc1437.de/2013/02/14/sync-api-dropbox/ - 2026-03-03T10:34:36.000Z + 2026-03-03T10:34:36.522Z monthly 0.8 @@ -6239,7 +6428,7 @@ https://www.rfc1437.de/2013/02/12/wings-3d-a-polygon-modeler/ - 2026-03-03T10:34:39.000Z + 2026-03-03T10:34:39.590Z monthly 0.8 @@ -6248,7 +6437,7 @@ https://www.rfc1437.de/2013/02/12/freecad-an-open-source-parametric-3d-cad-modeler/ - 2026-03-03T10:34:42.000Z + 2026-03-03T10:34:42.638Z monthly 0.8 @@ -6257,7 +6446,7 @@ https://www.rfc1437.de/2013/02/12/pixologic-sculptris/ - 2026-03-03T10:34:45.000Z + 2026-03-03T10:34:45.704Z monthly 0.8 @@ -6266,7 +6455,7 @@ https://www.rfc1437.de/2013/02/12/openscad-the-programmers-solid-3d-cad-modeller/ - 2026-03-03T10:34:49.000Z + 2026-03-03T10:34:49.127Z monthly 0.8 @@ -6275,7 +6464,7 @@ https://www.rfc1437.de/2013/02/12/dashclock-lock-screen-clock-widget-for-android-4-2-google-project-hosting/ - 2026-03-03T10:34:52.000Z + 2026-03-03T10:34:52.276Z monthly 0.8 @@ -6284,7 +6473,7 @@ https://www.rfc1437.de/2013/02/12/php-js-php-vm-with-javascript/ - 2026-03-03T10:34:55.000Z + 2026-03-03T10:34:55.054Z monthly 0.8 @@ -6293,7 +6482,7 @@ https://www.rfc1437.de/2013/02/11/mal-wieder-berlin/ - 2026-03-03T10:34:58.000Z + 2026-03-03T10:34:58.526Z monthly 0.8 @@ -6302,7 +6491,7 @@ https://www.rfc1437.de/2013/02/11/the-larch-environment-2/ - 2026-03-03T10:35:01.000Z + 2026-03-03T10:35:01.608Z monthly 0.8 @@ -6311,7 +6500,7 @@ https://www.rfc1437.de/2013/02/08/storm-gen-lightweight-dao-generator-for-android-sqlite-google-project-hosting/ - 2026-03-03T10:35:04.000Z + 2026-03-03T10:35:04.363Z monthly 0.8 @@ -6320,7 +6509,7 @@ https://www.rfc1437.de/2013/02/04/repetier-software-the-software-driving-your-3d-printer/ - 2026-03-03T10:35:07.000Z + 2026-03-03T10:35:07.814Z monthly 0.8 @@ -6329,7 +6518,7 @@ https://www.rfc1437.de/2013/02/01/filabot-personal-filament-maker-for-3d-printers-desktop-extruding-system-environmentally-friendly/ - 2026-03-03T10:35:10.000Z + 2026-03-03T10:35:10.575Z monthly 0.8 @@ -6338,7 +6527,7 @@ https://www.rfc1437.de/2013/02/01/slic3r-g-code-generator-for-3d-printers/ - 2026-03-03T10:35:14.000Z + 2026-03-03T10:35:14.039Z monthly 0.8 @@ -6347,7 +6536,7 @@ https://www.rfc1437.de/2013/02/01/printable-wood-available/ - 2026-03-03T10:35:16.000Z + 2026-03-03T10:35:16.839Z monthly 0.8 @@ -6356,7 +6545,7 @@ https://www.rfc1437.de/2013/02/01/lightzone-open-source-digital-darkroom-software-for-windowsmaclinux/ - 2026-03-03T10:35:20.000Z + 2026-03-03T10:35:20.331Z monthly 0.8 @@ -6365,7 +6554,7 @@ https://www.rfc1437.de/2013/02/01/thingiverse-digital-designs-for-physical-objects/ - 2026-03-03T10:35:23.000Z + 2026-03-03T10:35:23.455Z monthly 0.8 @@ -6374,7 +6563,7 @@ https://www.rfc1437.de/2013/02/01/tinkercad-mind-to-design-in-minutes/ - 2026-03-03T10:35:26.000Z + 2026-03-03T10:35:26.565Z monthly 0.8 @@ -6383,7 +6572,7 @@ https://www.rfc1437.de/2013/02/01/repetierrepetier-host-mac-c2-b7-github/ - 2026-03-03T10:35:29.000Z + 2026-03-03T10:35:29.361Z monthly 0.8 @@ -6392,7 +6581,7 @@ https://www.rfc1437.de/2013/02/01/reprap-reprapwiki/ - 2026-03-03T10:35:32.000Z + 2026-03-03T10:35:32.161Z monthly 0.8 @@ -6401,7 +6590,7 @@ https://www.rfc1437.de/2013/01/17/neulich-im-internet-schwarzweis-ausgabe-7/ - 2026-03-03T10:35:35.000Z + 2026-03-03T10:35:35.672Z monthly 0.8 @@ -6410,7 +6599,7 @@ https://www.rfc1437.de/2013/01/17/neulich-im-internet-7/ - 2026-03-03T10:35:39.000Z + 2026-03-03T10:35:39.190Z monthly 0.8 @@ -6419,7 +6608,7 @@ https://www.rfc1437.de/2013/01/15/pinoccio-a-complete-ecosystem-for-building-the-internet-of-things-indiegogo/ - 2026-03-03T10:35:42.000Z + 2026-03-03T10:35:42.349Z monthly 0.8 @@ -6428,7 +6617,7 @@ https://www.rfc1437.de/2013/01/15/i-mx233-product-summary-page/ - 2026-03-03T10:35:45.000Z + 2026-03-03T10:35:45.480Z monthly 0.8 @@ -6437,7 +6626,7 @@ https://www.rfc1437.de/2013/01/15/chumby-tricks-chumbywiki/ - 2026-03-03T10:35:49.000Z + 2026-03-03T10:35:49.005Z monthly 0.8 @@ -6446,7 +6635,7 @@ https://www.rfc1437.de/2013/01/15/falling-faster-than-the-speed-of-sound-wolfram-blog/ - 2026-03-03T10:35:52.000Z + 2026-03-03T10:35:52.524Z monthly 0.8 @@ -6455,7 +6644,7 @@ https://www.rfc1437.de/2013/01/15/zdoc-browse-files-at-sourceforge-net/ - 2026-03-03T10:35:56.000Z + 2026-03-03T10:35:56.040Z monthly 0.8 @@ -6464,7 +6653,7 @@ https://www.rfc1437.de/2013/01/15/end-of-chumby-as-we-know-it-page-1-chumby-com-chumbysphere-forum/ - 2026-03-03T10:35:59.000Z + 2026-03-03T10:35:59.976Z monthly 0.8 @@ -6473,7 +6662,7 @@ https://www.rfc1437.de/2013/01/14/koblenz-und-schloss-stolzenfels/ - 2026-03-03T10:36:03.000Z + 2026-03-03T10:36:03.246Z monthly 0.8 @@ -6482,7 +6671,7 @@ https://www.rfc1437.de/2013/01/14/metabones-announces-speed-booster-lens-adapter-for-mirrorless-cameras-digital-photography-review/ - 2026-03-03T10:36:07.000Z + 2026-03-03T10:36:07.257Z monthly 0.8 @@ -6491,7 +6680,7 @@ https://www.rfc1437.de/2013/01/14/permaduino-indiegogo/ - 2026-03-03T10:36:10.000Z + 2026-03-03T10:36:10.908Z monthly 0.8 @@ -6500,7 +6689,7 @@ https://www.rfc1437.de/2013/01/11/back-to-top-android-vs-ios/ - 2026-03-03T10:36:14.000Z + 2026-03-03T10:36:14.645Z monthly 0.8 @@ -6509,7 +6698,7 @@ https://www.rfc1437.de/2013/01/11/spt100-pan-tilt-system/ - 2026-03-03T10:36:18.000Z + 2026-03-03T10:36:18.771Z monthly 0.8 @@ -6518,7 +6707,7 @@ https://www.rfc1437.de/2013/01/11/reflow-controller-shield-arduino-compatible-rocket-scream/ - 2026-03-03T10:36:22.000Z + 2026-03-03T10:36:22.187Z monthly 0.8 @@ -6527,7 +6716,7 @@ https://www.rfc1437.de/2013/01/11/ggreerthe-silver-searcher-c2-b7-github/ - 2026-03-03T10:36:25.000Z + 2026-03-03T10:36:25.966Z monthly 0.8 @@ -6536,7 +6725,7 @@ https://www.rfc1437.de/2013/01/09/atom-publishing-protocol-wordpress-plugins/ - 2026-03-03T10:36:29.000Z + 2026-03-03T10:36:29.724Z monthly 0.8 @@ -6545,7 +6734,7 @@ https://www.rfc1437.de/2013/01/08/polaroids-interchangeable-lens-camera-is-awful-hands-on-the-verge/ - 2026-03-03T10:36:33.000Z + 2026-03-03T10:36:33.957Z monthly 0.8 @@ -6554,7 +6743,7 @@ https://www.rfc1437.de/2013/01/08/polaroid-announces-the-im1836-mirrorless-camera-with-jelly-bean/ - 2026-03-03T10:36:38.000Z + 2026-03-03T10:36:38.133Z monthly 0.8 @@ -6563,7 +6752,7 @@ https://www.rfc1437.de/2013/01/07/use-your-iphone-android-or-windows-phone-to-lock-and-unlock-your-mac-using-bluetooth-redmond-pie/ - 2026-03-03T10:36:42.000Z + 2026-03-03T10:36:42.388Z monthly 0.8 @@ -6572,7 +6761,7 @@ https://www.rfc1437.de/2013/01/05/bilderarchiv-2013/ - 2026-03-03T10:36:45.000Z + 2026-03-03T10:36:45.114Z monthly 0.8 @@ -6581,7 +6770,7 @@ https://www.rfc1437.de/2013/01/05/aachener-dom/ - 2026-03-03T10:36:48.000Z + 2026-03-03T10:36:48.615Z monthly 0.8 @@ -6590,7 +6779,7 @@ https://www.rfc1437.de/2012/12/28/blaze-blaze-0-1-dev-documentation/ - 2026-03-03T10:36:52.000Z + 2026-03-03T10:36:52.524Z monthly 0.8 @@ -6599,7 +6788,7 @@ https://www.rfc1437.de/2012/12/28/ioio-for-android-sparkfun-electronics/ - 2026-03-03T10:36:56.000Z + 2026-03-03T10:36:56.453Z monthly 0.8 @@ -6608,7 +6797,7 @@ https://www.rfc1437.de/2012/12/27/run-mobile-apps-on-mac-with-bluestacks-mobile-apps-on-mac-mobile-app-player-for-mac-bluestacks/ - 2026-03-03T10:37:00.000Z + 2026-03-03T10:37:00.361Z monthly 0.8 @@ -6617,7 +6806,7 @@ https://www.rfc1437.de/2012/12/27/mariamole-dalpix-com/ - 2026-03-03T10:37:03.000Z + 2026-03-03T10:37:03.955Z monthly 0.8 @@ -6626,7 +6815,7 @@ https://www.rfc1437.de/2012/12/27/java-3d-engine-learn-java-programming-in-3d/ - 2026-03-03T10:37:07.000Z + 2026-03-03T10:37:07.468Z monthly 0.8 @@ -6635,7 +6824,7 @@ https://www.rfc1437.de/2012/12/26/locating-interesting-parts-of-an-image-ip-tech-votre-partenaire-nearshore-en-tunisie-pour-le-developpement-informatique/ - 2026-03-03T10:37:10.000Z + 2026-03-03T10:37:10.989Z monthly 0.8 @@ -6644,7 +6833,7 @@ https://www.rfc1437.de/2012/12/11/imwilsonxufbone-c2-b7-github/ - 2026-03-03T10:37:15.000Z + 2026-03-03T10:37:15.104Z monthly 0.8 @@ -6653,7 +6842,7 @@ https://www.rfc1437.de/2012/12/11/cubes-0-10-1-released-multiple-hierarchies-data-brewery/ - 2026-03-03T10:37:19.000Z + 2026-03-03T10:37:19.555Z monthly 0.8 @@ -6662,7 +6851,7 @@ https://www.rfc1437.de/2012/12/10/the-ruggeduino/ - 2026-03-03T10:37:22.000Z + 2026-03-03T10:37:22.801Z monthly 0.8 @@ -6671,7 +6860,7 @@ https://www.rfc1437.de/2012/12/03/the-sqlite-rtree-module/ - 2026-03-03T10:37:26.000Z + 2026-03-03T10:37:26.499Z monthly 0.8 @@ -6680,7 +6869,7 @@ https://www.rfc1437.de/2012/12/03/the-gaia-sins-federated-project-home-page/ - 2026-03-03T10:37:30.000Z + 2026-03-03T10:37:30.539Z monthly 0.8 @@ -6689,7 +6878,7 @@ https://www.rfc1437.de/2012/12/01/suskartoffel-linsen-kokosmilch-suppe/ - 2026-03-03T10:37:34.000Z + 2026-03-03T10:37:34.962Z monthly 0.8 @@ -6698,7 +6887,7 @@ https://www.rfc1437.de/2012/12/01/plan-9-from-bell-labs/ - 2026-03-03T10:37:38.000Z + 2026-03-03T10:37:38.934Z monthly 0.8 @@ -6707,7 +6896,7 @@ https://www.rfc1437.de/2012/11/27/f-droid/ - 2026-03-03T10:37:42.000Z + 2026-03-03T10:37:42.502Z monthly 0.8 @@ -6716,7 +6905,7 @@ https://www.rfc1437.de/2012/11/26/the-idroid-project-where-it-presently-stands-0xdeadfa11/ - 2026-03-03T10:37:46.000Z + 2026-03-03T10:37:46.918Z monthly 0.8 @@ -6725,7 +6914,7 @@ https://www.rfc1437.de/2012/11/26/ipad-optimization-xsellize/ - 2026-03-03T10:37:51.000Z + 2026-03-03T10:37:51.338Z monthly 0.8 @@ -6734,7 +6923,7 @@ https://www.rfc1437.de/2012/11/20/activeandroid-active-record-style-sqlite-persistence-for-android/ - 2026-03-03T10:37:55.000Z + 2026-03-03T10:37:55.280Z monthly 0.8 @@ -6743,7 +6932,7 @@ https://www.rfc1437.de/2012/11/19/official-website-freebasic-programming-language/ - 2026-03-03T10:37:58.000Z + 2026-03-03T10:37:58.498Z monthly 0.8 @@ -6752,7 +6941,7 @@ https://www.rfc1437.de/2012/11/19/the-elfdata-plugin/ - 2026-03-03T10:38:02.000Z + 2026-03-03T10:38:02.047Z monthly 0.8 @@ -6761,7 +6950,7 @@ https://www.rfc1437.de/2012/11/17/kurbissuppe/ - 2026-03-03T10:38:06.000Z + 2026-03-03T10:38:06.436Z monthly 0.8 @@ -6770,7 +6959,7 @@ https://www.rfc1437.de/2012/11/13/a-cloud-storage-programming-interface-store-everything/ - 2026-03-03T10:38:10.000Z + 2026-03-03T10:38:10.049Z monthly 0.8 @@ -6779,7 +6968,7 @@ https://www.rfc1437.de/2012/11/12/f-and-monogame-on-the-mac/ - 2026-03-03T10:38:14.000Z + 2026-03-03T10:38:14.464Z monthly 0.8 @@ -6788,7 +6977,7 @@ https://www.rfc1437.de/2012/11/03/git-annex-2/ - 2026-03-03T10:38:48.000Z + 2026-03-03T10:38:48.631Z monthly 0.8 @@ -6797,7 +6986,7 @@ https://www.rfc1437.de/2012/10/30/neulich-im-internet-schwarzweis-ausgabe-6/ - 2026-03-03T10:38:52.000Z + 2026-03-03T10:38:52.069Z monthly 0.8 @@ -6806,7 +6995,7 @@ https://www.rfc1437.de/2012/10/30/neulich-im-internet-6/ - 2026-03-03T10:38:55.000Z + 2026-03-03T10:38:55.145Z monthly 0.8 @@ -6815,7 +7004,7 @@ https://www.rfc1437.de/2012/10/29/couchbaseandroid-couchbase/ - 2026-03-03T10:38:58.000Z + 2026-03-03T10:38:58.506Z monthly 0.8 @@ -6824,7 +7013,7 @@ https://www.rfc1437.de/2012/10/28/processing-on-ios/ - 2026-03-03T10:39:01.000Z + 2026-03-03T10:39:01.839Z monthly 0.8 @@ -6833,7 +7022,7 @@ https://www.rfc1437.de/2012/10/27/lachsforelle-mit-pastinaken/ - 2026-03-03T10:39:05.000Z + 2026-03-03T10:39:05.519Z monthly 0.8 @@ -6842,7 +7031,7 @@ https://www.rfc1437.de/2012/10/25/openxion/ - 2026-03-03T10:39:08.000Z + 2026-03-03T10:39:08.512Z monthly 0.8 @@ -6851,7 +7040,7 @@ https://www.rfc1437.de/2012/10/25/uliwitnessstacksmith/ - 2026-03-03T10:39:11.000Z + 2026-03-03T10:39:11.518Z monthly 0.8 @@ -6860,7 +7049,7 @@ https://www.rfc1437.de/2012/10/25/novocard/ - 2026-03-03T10:39:14.000Z + 2026-03-03T10:39:14.906Z monthly 0.8 @@ -6869,7 +7058,7 @@ https://www.rfc1437.de/2012/10/25/travis-shrugged-the-creepy-dangerous-ideology-behind-silicon-valleys-cult-of-disruption-pandodaily/ - 2026-03-03T10:39:18.000Z + 2026-03-03T10:39:18.684Z monthly 0.8 @@ -6878,7 +7067,7 @@ https://www.rfc1437.de/2012/10/23/arduino-due-mit-32-bit-arm-mikrokontroller-pro-linux/ - 2026-03-03T10:39:22.000Z + 2026-03-03T10:39:22.089Z monthly 0.8 @@ -6887,7 +7076,7 @@ https://www.rfc1437.de/2012/10/23/monoxwt/ - 2026-03-03T10:39:25.000Z + 2026-03-03T10:39:25.152Z monthly 0.8 @@ -6896,7 +7085,7 @@ https://www.rfc1437.de/2012/10/22/misfoshell-turtlestein/ - 2026-03-03T10:39:28.000Z + 2026-03-03T10:39:28.610Z monthly 0.8 @@ -6905,7 +7094,7 @@ https://www.rfc1437.de/2012/10/22/turning-to-the-past-to-power-windows-future-an-in-depth-look-at-winrt-ars-technica/ - 2026-03-03T10:39:32.000Z + 2026-03-03T10:39:32.426Z monthly 0.8 @@ -6914,7 +7103,7 @@ https://www.rfc1437.de/2012/10/22/wilhelmtelldis/ - 2026-03-03T10:39:35.000Z + 2026-03-03T10:39:35.178Z monthly 0.8 @@ -6923,7 +7112,7 @@ https://www.rfc1437.de/2012/10/22/jq/ - 2026-03-03T10:39:38.000Z + 2026-03-03T10:39:38.632Z monthly 0.8 @@ -6932,7 +7121,7 @@ https://www.rfc1437.de/2012/10/21/von-coesfeld-nach-billerbeck/ - 2026-03-03T10:39:42.000Z + 2026-03-03T10:39:42.095Z monthly 0.8 @@ -6941,7 +7130,7 @@ https://www.rfc1437.de/2012/10/20/topinambur-salat-und-linsensalat/ - 2026-03-03T10:39:45.000Z + 2026-03-03T10:39:45.903Z monthly 0.8 @@ -6950,7 +7139,7 @@ https://www.rfc1437.de/2012/10/19/xkcd-plots-in-d3/ - 2026-03-03T10:39:48.000Z + 2026-03-03T10:39:48.682Z monthly 0.8 @@ -6959,7 +7148,7 @@ https://www.rfc1437.de/2012/10/19/ibm-worklight-mobile-application-platform/ - 2026-03-03T10:39:52.000Z + 2026-03-03T10:39:52.178Z monthly 0.8 @@ -6968,7 +7157,7 @@ https://www.rfc1437.de/2012/10/19/lomography-belair-x-6-12/ - 2026-03-03T10:39:56.000Z + 2026-03-03T10:39:56.080Z monthly 0.8 @@ -6977,7 +7166,7 @@ https://www.rfc1437.de/2012/10/18/bbc-news-apple-loses-uk-tablet-design-appeal-versus-samsung/ - 2026-03-03T10:39:59.000Z + 2026-03-03T10:39:59.685Z monthly 0.8 @@ -6986,7 +7175,7 @@ https://www.rfc1437.de/2012/10/14/waldpilzsalat-mit-hahnchenstreifen/ - 2026-03-03T10:40:03.000Z + 2026-03-03T10:40:03.763Z monthly 0.8 @@ -6995,7 +7184,7 @@ https://www.rfc1437.de/2012/10/14/moby-racket-for-mobile-phones/ - 2026-03-03T10:40:07.000Z + 2026-03-03T10:40:07.145Z monthly 0.8 @@ -7004,7 +7193,7 @@ https://www.rfc1437.de/2012/10/13/pharodroid-jenkins/ - 2026-03-03T10:40:10.000Z + 2026-03-03T10:40:10.520Z monthly 0.8 @@ -7013,7 +7202,7 @@ https://www.rfc1437.de/2012/10/11/ownclouds-latest-community-edition-adds-video-streaming-and-easy-mounting-of-third-party-storage/ - 2026-03-03T10:40:14.000Z + 2026-03-03T10:40:14.476Z monthly 0.8 @@ -7022,7 +7211,7 @@ https://www.rfc1437.de/2012/10/10/streak-crm-in-your-inbox/ - 2026-03-03T10:40:18.000Z + 2026-03-03T10:40:18.504Z monthly 0.8 @@ -7031,7 +7220,7 @@ https://www.rfc1437.de/2012/10/09/lljs-low-level-javascript/ - 2026-03-03T10:40:22.000Z + 2026-03-03T10:40:22.487Z monthly 0.8 @@ -7040,7 +7229,7 @@ https://www.rfc1437.de/2012/10/05/comtypes-how-dropbox-learned-to-stop-worrying-and-love-the-com/ - 2026-03-03T10:40:26.000Z + 2026-03-03T10:40:26.101Z monthly 0.8 @@ -7049,7 +7238,7 @@ https://www.rfc1437.de/2012/10/04/datanitro/ - 2026-03-03T10:40:29.000Z + 2026-03-03T10:40:29.372Z monthly 0.8 @@ -7058,7 +7247,7 @@ https://www.rfc1437.de/2012/10/01/android-x86-porting-android-to-x86/ - 2026-03-03T10:40:33.000Z + 2026-03-03T10:40:33.090Z monthly 0.8 @@ -7067,7 +7256,7 @@ https://www.rfc1437.de/2012/10/01/pyjnius-accessing-java-classes-from-python-txzone/ - 2026-03-03T10:40:37.000Z + 2026-03-03T10:40:37.629Z monthly 0.8 @@ -7076,7 +7265,7 @@ https://www.rfc1437.de/2012/09/29/rinderrouladen-mit-pastinaken/ - 2026-03-03T10:40:42.000Z + 2026-03-03T10:40:42.234Z monthly 0.8 @@ -7085,7 +7274,7 @@ https://www.rfc1437.de/2012/09/28/21866-remove-atompub-from-core-wordpress-trac/ - 2026-03-03T10:40:46.000Z + 2026-03-03T10:40:46.883Z monthly 0.8 @@ -7094,7 +7283,7 @@ https://www.rfc1437.de/2012/09/26/jetstrap-the-bootstrap-interface-builder/ - 2026-03-03T10:40:50.000Z + 2026-03-03T10:40:50.706Z monthly 0.8 @@ -7103,7 +7292,7 @@ https://www.rfc1437.de/2012/09/26/x11-basic-homepage/ - 2026-03-03T10:40:54.000Z + 2026-03-03T10:40:54.995Z monthly 0.8 @@ -7112,7 +7301,7 @@ https://www.rfc1437.de/2012/09/26/rfo-basic-for-android/ - 2026-03-03T10:40:59.000Z + 2026-03-03T10:40:59.226Z monthly 0.8 @@ -7121,7 +7310,7 @@ https://www.rfc1437.de/2012/09/21/clean-it-die-eu-kommission-will-das-internet-uberwachen-und-filtern-ganz-ohne-gesetze/ - 2026-03-03T10:41:03.000Z + 2026-03-03T10:41:03.514Z monthly 0.8 @@ -7130,7 +7319,7 @@ https://www.rfc1437.de/2012/09/21/plug-ins-for-adobe-photoshop-lightroom-adobe-labs/ - 2026-03-03T10:41:07.000Z + 2026-03-03T10:41:07.750Z monthly 0.8 @@ -7139,7 +7328,7 @@ https://www.rfc1437.de/2012/09/20/jforc-contents/ - 2026-03-03T10:41:12.000Z + 2026-03-03T10:41:12.029Z monthly 0.8 @@ -7148,7 +7337,7 @@ https://www.rfc1437.de/2012/09/20/toastdrivendjango-tastypie/ - 2026-03-03T10:41:16.000Z + 2026-03-03T10:41:16.480Z monthly 0.8 @@ -7157,7 +7346,7 @@ https://www.rfc1437.de/2012/09/19/linq-js-linq-for-javascript-2/ - 2026-03-03T10:41:20.000Z + 2026-03-03T10:41:20.319Z monthly 0.8 @@ -7166,7 +7355,7 @@ https://www.rfc1437.de/2012/09/19/postgres-xc-project-page/ - 2026-03-03T10:41:23.000Z + 2026-03-03T10:41:23.717Z monthly 0.8 @@ -7175,7 +7364,7 @@ https://www.rfc1437.de/2012/09/19/online-python-tutor-learn-programming-by-visualizing-code-execution/ - 2026-03-03T10:41:27.000Z + 2026-03-03T10:41:27.158Z monthly 0.8 @@ -7184,7 +7373,7 @@ https://www.rfc1437.de/2012/09/17/pymcu-the-python-controlled-microcontroller/ - 2026-03-03T10:41:31.000Z + 2026-03-03T10:41:31.412Z monthly 0.8 @@ -7193,7 +7382,7 @@ https://www.rfc1437.de/2012/09/17/amoffatsh/ - 2026-03-03T10:41:35.000Z + 2026-03-03T10:41:35.325Z monthly 0.8 @@ -7202,7 +7391,7 @@ https://www.rfc1437.de/2012/09/13/ms-optical-sonnetar-50mm-f1-1-test-pictures-japan-camera-hunter/ - 2026-03-03T10:41:39.000Z + 2026-03-03T10:41:39.550Z monthly 0.8 @@ -7211,7 +7400,7 @@ https://www.rfc1437.de/2012/09/12/android-bootstrap/ - 2026-03-03T10:41:43.000Z + 2026-03-03T10:41:43.372Z monthly 0.8 @@ -7220,7 +7409,7 @@ https://www.rfc1437.de/2012/09/06/buildroid-for-virtualbox-buildroid/ - 2026-03-03T10:41:47.000Z + 2026-03-03T10:41:47.571Z monthly 0.8 @@ -7229,7 +7418,7 @@ https://www.rfc1437.de/2012/09/06/supercharge-your-android-emulator-speed-developer-com/ - 2026-03-03T10:41:51.000Z + 2026-03-03T10:41:51.820Z monthly 0.8 @@ -7238,7 +7427,7 @@ https://www.rfc1437.de/2012/09/05/david-waring-remember-the-milk-cli/ - 2026-03-03T10:41:56.000Z + 2026-03-03T10:41:56.053Z monthly 0.8 @@ -7247,7 +7436,7 @@ https://www.rfc1437.de/2012/09/04/leipzig/ - 2026-03-03T10:41:59.000Z + 2026-03-03T10:41:59.402Z monthly 0.8 @@ -7256,7 +7445,7 @@ https://www.rfc1437.de/2012/08/30/lazarus-1-0-release-available-for-download/ - 2026-03-03T10:42:03.000Z + 2026-03-03T10:42:03.619Z monthly 0.8 @@ -7265,7 +7454,7 @@ https://www.rfc1437.de/2012/08/30/cameron-lairds-personal-notes-on-varieties-of-python-implementation/ - 2026-03-03T10:42:07.000Z + 2026-03-03T10:42:07.355Z monthly 0.8 @@ -7274,7 +7463,7 @@ https://www.rfc1437.de/2012/08/30/numba-vs-cython-pythonic-perambulations/ - 2026-03-03T10:42:11.000Z + 2026-03-03T10:42:11.545Z monthly 0.8 @@ -7283,7 +7472,7 @@ https://www.rfc1437.de/2012/08/29/noch-ein-rettungsschirm/ - 2026-03-03T10:42:15.000Z + 2026-03-03T10:42:15.848Z monthly 0.8 @@ -7292,7 +7481,7 @@ https://www.rfc1437.de/2012/08/29/kde-necessitas-project-welcome-to-kde-necessitas-project/ - 2026-03-03T10:42:20.000Z + 2026-03-03T10:42:20.088Z monthly 0.8 @@ -7301,7 +7490,7 @@ https://www.rfc1437.de/2012/08/29/rawson-js-a-camera-raw-previewer-in-javascript/ - 2026-03-03T10:42:23.000Z + 2026-03-03T10:42:23.832Z monthly 0.8 @@ -7310,7 +7499,7 @@ https://www.rfc1437.de/2012/08/28/commonsguycwac-anddown/ - 2026-03-03T10:42:27.000Z + 2026-03-03T10:42:27.536Z monthly 0.8 @@ -7319,7 +7508,7 @@ https://www.rfc1437.de/2012/08/28/luminosoinsightpython-ftfy/ - 2026-03-03T10:42:31.000Z + 2026-03-03T10:42:31.677Z monthly 0.8 @@ -7328,7 +7517,7 @@ https://www.rfc1437.de/2012/08/28/kmikemarisa-trie/ - 2026-03-03T10:42:35.000Z + 2026-03-03T10:42:35.478Z monthly 0.8 @@ -7337,7 +7526,7 @@ https://www.rfc1437.de/2012/08/27/arduino-macosx/ - 2026-03-03T10:42:40.000Z + 2026-03-03T10:42:40.114Z monthly 0.8 @@ -7346,7 +7535,7 @@ https://www.rfc1437.de/2012/08/27/myabcmarkdownj/ - 2026-03-03T10:42:44.000Z + 2026-03-03T10:42:44.523Z monthly 0.8 @@ -7355,7 +7544,7 @@ https://www.rfc1437.de/2012/08/27/mitoticotrace/ - 2026-03-03T10:42:48.000Z + 2026-03-03T10:42:48.661Z monthly 0.8 @@ -7364,7 +7553,7 @@ https://www.rfc1437.de/2012/08/26/nizhniy-tagil-im-august/ - 2026-03-03T10:42:52.000Z + 2026-03-03T10:42:52.194Z monthly 0.8 @@ -7373,7 +7562,7 @@ https://www.rfc1437.de/2012/08/01/cletusjmd/ - 2026-03-03T10:42:56.000Z + 2026-03-03T10:42:56.083Z monthly 0.8 @@ -7382,7 +7571,7 @@ https://www.rfc1437.de/2012/08/01/mitmelsimplecontentprovider/ - 2026-03-03T10:42:59.000Z + 2026-03-03T10:42:59.560Z monthly 0.8 @@ -7391,7 +7580,7 @@ https://www.rfc1437.de/2012/07/31/sattvikneko/ - 2026-03-03T10:43:03.000Z + 2026-03-03T10:43:03.395Z monthly 0.8 @@ -7400,7 +7589,7 @@ https://www.rfc1437.de/2012/07/31/actionbarsherlock-home/ - 2026-03-03T10:43:06.000Z + 2026-03-03T10:43:06.721Z monthly 0.8 @@ -7409,7 +7598,7 @@ https://www.rfc1437.de/2012/07/29/sirthiaspegdown/ - 2026-03-03T10:43:10.000Z + 2026-03-03T10:43:10.467Z monthly 0.8 @@ -7418,7 +7607,7 @@ https://www.rfc1437.de/2012/07/27/neulich-im-internet-5/ - 2026-03-03T10:43:14.000Z + 2026-03-03T10:43:14.259Z monthly 0.8 @@ -7427,7 +7616,7 @@ https://www.rfc1437.de/2012/07/27/neulich-im-internet-schwarzweis-ausgabe-5/ - 2026-03-03T10:43:18.000Z + 2026-03-03T10:43:18.483Z monthly 0.8 @@ -7436,7 +7625,7 @@ https://www.rfc1437.de/2012/07/23/n8hangiter8/ - 2026-03-03T10:43:22.000Z + 2026-03-03T10:43:22.206Z monthly 0.8 @@ -7445,7 +7634,7 @@ https://www.rfc1437.de/2012/07/23/getting-started-c2-b7-jberkelandroid-plugin-wiki/ - 2026-03-03T10:43:25.000Z + 2026-03-03T10:43:25.914Z monthly 0.8 @@ -7454,7 +7643,7 @@ https://www.rfc1437.de/2012/07/23/mpeltonensbt-idea/ - 2026-03-03T10:43:29.000Z + 2026-03-03T10:43:29.660Z monthly 0.8 @@ -7463,7 +7652,7 @@ https://www.rfc1437.de/2012/07/23/android-programmierung-mit-scala/ - 2026-03-03T10:43:33.000Z + 2026-03-03T10:43:33.877Z monthly 0.8 @@ -7472,7 +7661,7 @@ https://www.rfc1437.de/2012/07/23/postbox-awesome-email/ - 2026-03-03T10:43:37.000Z + 2026-03-03T10:43:37.985Z monthly 0.8 @@ -7481,7 +7670,7 @@ https://www.rfc1437.de/2012/07/16/facebook-analysiert-chats-zur-verbrechensbekampfung/ - 2026-03-03T10:43:41.000Z + 2026-03-03T10:43:41.700Z monthly 0.8 @@ -7490,7 +7679,7 @@ https://www.rfc1437.de/2012/07/15/sitaramcgitolite/ - 2026-03-03T10:43:45.000Z + 2026-03-03T10:43:45.055Z monthly 0.8 @@ -7499,7 +7688,7 @@ https://www.rfc1437.de/2012/07/14/ormlite-lightweight-object-relational-mapping-orm-java-package/ - 2026-03-03T10:43:48.000Z + 2026-03-03T10:43:48.980Z monthly 0.8 @@ -7508,7 +7697,7 @@ https://www.rfc1437.de/2012/07/12/create-a-package-for-android-for-kivy/ - 2026-03-03T10:43:53.000Z + 2026-03-03T10:43:53.449Z monthly 0.8 @@ -7517,7 +7706,7 @@ https://www.rfc1437.de/2012/07/11/plop-low-overhead-profiling-for-python/ - 2026-03-03T10:43:57.000Z + 2026-03-03T10:43:57.258Z monthly 0.8 @@ -7526,7 +7715,7 @@ https://www.rfc1437.de/2012/07/08/custom-drawn-interfaceandroid-lazarus-wiki/ - 2026-03-03T10:44:01.000Z + 2026-03-03T10:44:01.552Z monthly 0.8 @@ -7535,7 +7724,7 @@ https://www.rfc1437.de/2012/07/08/basic4android-basic-for-android-rapid-application-development/ - 2026-03-03T10:44:05.000Z + 2026-03-03T10:44:05.754Z monthly 0.8 @@ -7544,7 +7733,7 @@ https://www.rfc1437.de/2012/07/08/android-processing/ - 2026-03-03T10:44:09.000Z + 2026-03-03T10:44:09.574Z monthly 0.8 @@ -7553,7 +7742,7 @@ https://www.rfc1437.de/2012/07/08/necessitas-home-necessitas/ - 2026-03-03T10:44:13.000Z + 2026-03-03T10:44:13.001Z monthly 0.8 @@ -7562,7 +7751,7 @@ https://www.rfc1437.de/2012/07/08/lion-mobile-backup-lokale-time-machine-abschalten-jan-kaspar-munnich/ - 2026-03-03T10:44:17.000Z + 2026-03-03T10:44:17.859Z monthly 0.8 @@ -7571,7 +7760,7 @@ https://www.rfc1437.de/2012/07/07/ymacs-an-emacs-like-editor-for-the-web/ - 2026-03-03T10:44:21.000Z + 2026-03-03T10:44:21.618Z monthly 0.8 @@ -7580,7 +7769,7 @@ https://www.rfc1437.de/2012/07/06/lumiya-viewer-about-lumiya/ - 2026-03-03T10:44:25.000Z + 2026-03-03T10:44:25.446Z monthly 0.8 @@ -7589,7 +7778,7 @@ https://www.rfc1437.de/2012/07/05/soulvers-features-acqualia/ - 2026-03-03T10:44:29.000Z + 2026-03-03T10:44:29.774Z monthly 0.8 @@ -7598,7 +7787,7 @@ https://www.rfc1437.de/2012/07/05/samsung-kompaktkamera-ex2f-mit-extra-lichtstarkem-objektiv-golem-de/ - 2026-03-03T10:44:34.000Z + 2026-03-03T10:44:34.890Z monthly 0.8 @@ -7607,7 +7796,7 @@ https://www.rfc1437.de/2012/07/05/ibookstore-sperrt-czernin-sammelband-als-zu-explizit/ - 2026-03-03T10:44:39.000Z + 2026-03-03T10:44:39.550Z monthly 0.8 @@ -7616,7 +7805,7 @@ https://www.rfc1437.de/2012/07/05/fuse4x-the-easiest-and-fastest-way-to-create-file-systems-for-mac-os-x/ - 2026-03-03T10:44:44.000Z + 2026-03-03T10:44:44.623Z monthly 0.8 @@ -7625,7 +7814,7 @@ https://www.rfc1437.de/2012/07/04/epistle-android-apps-auf-google-play/ - 2026-03-03T10:44:48.000Z + 2026-03-03T10:44:48.780Z monthly 0.8 @@ -7634,7 +7823,7 @@ https://www.rfc1437.de/2012/07/04/jwbs-blog-ema-personal-wiki-for-android-and-windows/ - 2026-03-03T10:44:53.000Z + 2026-03-03T10:44:53.626Z monthly 0.8 @@ -7643,7 +7832,7 @@ https://www.rfc1437.de/2012/07/04/oscargodsonepiceditor/ - 2026-03-03T10:44:57.000Z + 2026-03-03T10:44:57.354Z monthly 0.8 @@ -7652,7 +7841,7 @@ https://www.rfc1437.de/2012/07/04/blackmagic-design-blackmagic-cinema-camera/ - 2026-03-03T10:45:01.000Z + 2026-03-03T10:45:01.573Z monthly 0.8 @@ -7661,7 +7850,7 @@ https://www.rfc1437.de/2012/07/03/cloud-party/ - 2026-03-03T10:45:05.000Z + 2026-03-03T10:45:05.366Z monthly 0.8 @@ -7670,7 +7859,7 @@ https://www.rfc1437.de/2012/07/02/repo-js/ - 2026-03-03T10:45:09.000Z + 2026-03-03T10:45:09.550Z monthly 0.8 @@ -7679,7 +7868,7 @@ https://www.rfc1437.de/2012/07/02/isagalaevhighlight-js/ - 2026-03-03T10:45:14.000Z + 2026-03-03T10:45:14.325Z monthly 0.8 @@ -7688,7 +7877,7 @@ https://www.rfc1437.de/2012/07/02/erlport-erlang-port-protocol-for-python/ - 2026-03-03T10:45:18.000Z + 2026-03-03T10:45:18.482Z monthly 0.8 @@ -7697,7 +7886,7 @@ https://www.rfc1437.de/2012/07/02/hurricane/ - 2026-03-03T10:45:22.000Z + 2026-03-03T10:45:22.722Z monthly 0.8 @@ -7706,7 +7895,7 @@ https://www.rfc1437.de/2012/06/29/neulich-im-internet-schwarzweis-ausgabe-4/ - 2026-03-03T10:45:26.000Z + 2026-03-03T10:45:26.922Z monthly 0.8 @@ -7715,7 +7904,7 @@ https://www.rfc1437.de/2012/06/29/neulich-im-internet-4/ - 2026-03-03T10:45:30.000Z + 2026-03-03T10:45:30.727Z monthly 0.8 @@ -7724,7 +7913,7 @@ https://www.rfc1437.de/2012/06/29/sqlite4-the-design-of-sqlite4/ - 2026-03-03T10:45:34.000Z + 2026-03-03T10:45:34.985Z monthly 0.8 @@ -7733,7 +7922,7 @@ https://www.rfc1437.de/2012/06/28/jarvis/ - 2026-03-03T10:45:38.000Z + 2026-03-03T10:45:38.727Z monthly 0.8 @@ -7742,7 +7931,7 @@ https://www.rfc1437.de/2012/06/25/remote-debugging-real-software-documentation/ - 2026-03-03T10:45:42.000Z + 2026-03-03T10:45:42.966Z monthly 0.8 @@ -7751,7 +7940,7 @@ https://www.rfc1437.de/2012/06/23/nowhere/ - 2026-03-03T10:45:46.000Z + 2026-03-03T10:45:46.360Z monthly 0.8 @@ -7760,7 +7949,7 @@ https://www.rfc1437.de/2012/06/22/the-opa-blog-announcing-opa-1-0/ - 2026-03-03T10:45:50.000Z + 2026-03-03T10:45:50.586Z monthly 0.8 @@ -7769,7 +7958,7 @@ https://www.rfc1437.de/2012/06/20/make-runfcgi-fail-when-database-connection-is-open-before-fork/ - 2026-03-03T10:45:54.000Z + 2026-03-03T10:45:54.872Z monthly 0.8 @@ -7778,7 +7967,7 @@ https://www.rfc1437.de/2012/06/20/livescript/ - 2026-03-03T10:45:59.000Z + 2026-03-03T10:45:59.080Z monthly 0.8 @@ -7787,7 +7976,7 @@ https://www.rfc1437.de/2012/06/18/ronnixfabtools/ - 2026-03-03T10:46:03.000Z + 2026-03-03T10:46:03.719Z monthly 0.8 @@ -7796,7 +7985,7 @@ https://www.rfc1437.de/2012/06/18/set-transaction-isolation-level-transact-sql/ - 2026-03-03T10:46:07.000Z + 2026-03-03T10:46:07.455Z monthly 0.8 @@ -7805,7 +7994,7 @@ https://www.rfc1437.de/2012/06/18/18251-multithreading-deadlock-in-django-models-loading-get-apps-django/ - 2026-03-03T10:46:11.000Z + 2026-03-03T10:46:11.648Z monthly 0.8 @@ -7814,7 +8003,7 @@ https://www.rfc1437.de/2012/06/18/microsoft-sql-server-sqlalchemy-0-7-documentation/ - 2026-03-03T10:46:15.000Z + 2026-03-03T10:46:15.548Z monthly 0.8 @@ -7823,7 +8012,7 @@ https://www.rfc1437.de/2012/06/18/prince-flo-king-django-the-deadlock-doctor-von-bluekilla-laut-de-song/ - 2026-03-03T10:46:19.000Z + 2026-03-03T10:46:19.819Z monthly 0.8 @@ -7832,7 +8021,7 @@ https://www.rfc1437.de/2012/06/18/using-select-for-update-in-django/ - 2026-03-03T10:46:23.000Z + 2026-03-03T10:46:23.192Z monthly 0.8 @@ -7841,7 +8030,7 @@ https://www.rfc1437.de/2012/06/17/wordpress-wordpress-3-4-green/ - 2026-03-03T10:46:27.000Z + 2026-03-03T10:46:27.825Z monthly 0.8 @@ -7850,7 +8039,7 @@ https://www.rfc1437.de/2012/06/13/thomas-tempelmann-arbed-the-advanced-rb-editor/ - 2026-03-03T10:46:32.000Z + 2026-03-03T10:46:32.487Z monthly 0.8 @@ -7859,7 +8048,7 @@ https://www.rfc1437.de/2012/06/12/ucsd-psystem-vm-0-11/ - 2026-03-03T10:46:37.000Z + 2026-03-03T10:46:37.048Z monthly 0.8 @@ -7868,7 +8057,7 @@ https://www.rfc1437.de/2012/06/11/tryapl/ - 2026-03-03T10:46:40.000Z + 2026-03-03T10:46:40.426Z monthly 0.8 @@ -7877,7 +8066,7 @@ https://www.rfc1437.de/2012/06/11/peg-js-parser-generator-for-javascript/ - 2026-03-03T10:46:44.000Z + 2026-03-03T10:46:44.633Z monthly 0.8 @@ -7886,7 +8075,7 @@ https://www.rfc1437.de/2012/06/08/realbasic-open-source-charcoal-design/ - 2026-03-03T10:46:48.000Z + 2026-03-03T10:46:48.392Z monthly 0.8 @@ -7895,7 +8084,7 @@ https://www.rfc1437.de/2012/06/04/xcode-4-3-macruby-compatible-problem-workaround-e6-9d-b1-blog/ - 2026-03-03T10:46:53.000Z + 2026-03-03T10:46:53.039Z monthly 0.8 @@ -7904,7 +8093,7 @@ https://www.rfc1437.de/2012/06/03/waterbear-welcome/ - 2026-03-03T10:46:56.000Z + 2026-03-03T10:46:56.417Z monthly 0.8 @@ -7913,7 +8102,7 @@ https://www.rfc1437.de/2012/06/03/google-blockly-a-visual-programming-language-google-project-hosting/ - 2026-03-03T10:47:00.000Z + 2026-03-03T10:47:00.704Z monthly 0.8 @@ -7922,7 +8111,7 @@ https://www.rfc1437.de/2012/06/03/emmerich-am-rhein-und-rees/ - 2026-03-03T10:47:04.000Z + 2026-03-03T10:47:04.129Z monthly 0.8 @@ -7931,7 +8120,7 @@ https://www.rfc1437.de/2012/06/03/freilichtmuseum-arnheim/ - 2026-03-03T10:47:07.000Z + 2026-03-03T10:47:07.822Z monthly 0.8 @@ -7940,7 +8129,7 @@ https://www.rfc1437.de/2012/06/03/burgers-zoo/ - 2026-03-03T10:47:11.000Z + 2026-03-03T10:47:11.201Z monthly 0.8 @@ -7949,7 +8138,7 @@ https://www.rfc1437.de/2012/06/03/eindrucke-aus-arnheim/ - 2026-03-03T10:47:14.000Z + 2026-03-03T10:47:14.624Z monthly 0.8 @@ -7958,7 +8147,7 @@ https://www.rfc1437.de/2012/05/31/augmentedev/ - 2026-03-03T10:47:18.000Z + 2026-03-03T10:47:18.880Z monthly 0.8 @@ -7967,7 +8156,7 @@ https://www.rfc1437.de/2012/05/31/rq-simple-job-queues-for-python/ - 2026-03-03T10:47:22.000Z + 2026-03-03T10:47:22.266Z monthly 0.8 @@ -7976,7 +8165,7 @@ https://www.rfc1437.de/2012/05/29/apenwarrbup/ - 2026-03-03T10:47:26.000Z + 2026-03-03T10:47:26.476Z monthly 0.8 @@ -7985,7 +8174,7 @@ https://www.rfc1437.de/2012/05/29/git-annex/ - 2026-03-03T10:47:30.000Z + 2026-03-03T10:47:30.736Z monthly 0.8 @@ -7994,7 +8183,7 @@ https://www.rfc1437.de/2012/05/23/mumble/ - 2026-03-03T10:47:34.000Z + 2026-03-03T10:47:34.901Z monthly 0.8 @@ -8003,7 +8192,7 @@ https://www.rfc1437.de/2012/05/23/sphero/ - 2026-03-03T10:47:38.000Z + 2026-03-03T10:47:38.664Z monthly 0.8 @@ -8012,7 +8201,7 @@ https://www.rfc1437.de/2012/05/22/ubuntu-10-04-why-is-ksmd-eating-cpu-cycles-interphero-miscellany/ - 2026-03-03T10:47:43.000Z + 2026-03-03T10:47:43.270Z monthly 0.8 @@ -8021,7 +8210,7 @@ https://www.rfc1437.de/2012/05/22/features-owncloud-org/ - 2026-03-03T10:47:47.000Z + 2026-03-03T10:47:47.033Z monthly 0.8 @@ -8030,7 +8219,7 @@ https://www.rfc1437.de/2012/05/22/dahlia-typequery-overview-bitbucket/ - 2026-03-03T10:47:51.000Z + 2026-03-03T10:47:51.271Z monthly 0.8 @@ -8039,7 +8228,7 @@ https://www.rfc1437.de/2012/05/22/postgresql-documentation-8-4-hstore/ - 2026-03-03T10:47:55.000Z + 2026-03-03T10:47:55.450Z monthly 0.8 @@ -8048,7 +8237,7 @@ https://www.rfc1437.de/2012/05/22/teampostgresql-postgresql-web-admin-gui-tools/ - 2026-03-03T10:47:59.000Z + 2026-03-03T10:47:59.640Z monthly 0.8 @@ -8057,7 +8246,7 @@ https://www.rfc1437.de/2012/05/21/map-of-life/ - 2026-03-03T10:48:02.000Z + 2026-03-03T10:48:02.631Z monthly 0.8 @@ -8066,7 +8255,7 @@ https://www.rfc1437.de/2012/05/21/matasano-security-matasano-web-security-assessments-for-enterprises/ - 2026-03-03T10:48:06.000Z + 2026-03-03T10:48:06.822Z monthly 0.8 @@ -8075,7 +8264,7 @@ https://www.rfc1437.de/2012/05/21/sametmax0bin/ - 2026-03-03T10:48:11.000Z + 2026-03-03T10:48:11.023Z monthly 0.8 @@ -8084,7 +8273,7 @@ https://www.rfc1437.de/2012/05/21/43-rumors-blog-continually-updated-panasonic-12-35mm-f2-8-x-lens-officially-announced/ - 2026-03-03T10:48:15.000Z + 2026-03-03T10:48:15.324Z monthly 0.8 @@ -8093,7 +8282,7 @@ https://www.rfc1437.de/2012/05/19/embedding-python-in-objective-c-part-2/ - 2026-03-03T10:48:19.000Z + 2026-03-03T10:48:19.549Z monthly 0.8 @@ -8102,7 +8291,7 @@ https://www.rfc1437.de/2012/05/18/jodalpykka/ - 2026-03-03T10:48:23.000Z + 2026-03-03T10:48:23.325Z monthly 0.8 @@ -8111,7 +8300,7 @@ https://www.rfc1437.de/2012/05/18/jython-2-7-alpha1-released/ - 2026-03-03T10:48:27.000Z + 2026-03-03T10:48:27.936Z monthly 0.8 @@ -8120,7 +8309,7 @@ https://www.rfc1437.de/2012/05/18/cocoa-python-port-of-objective-c-runtime-to-python-using-ctypes-google-project-hosting/ - 2026-03-03T10:48:32.000Z + 2026-03-03T10:48:32.125Z monthly 0.8 @@ -8129,7 +8318,7 @@ https://www.rfc1437.de/2012/05/18/r17-flexible-scalable-relational-data-mining-language/ - 2026-03-03T10:48:36.000Z + 2026-03-03T10:48:36.477Z monthly 0.8 @@ -8138,7 +8327,7 @@ https://www.rfc1437.de/2012/05/18/neulich-im-internet-schwarzweis-ausgabe-3/ - 2026-03-03T10:48:40.000Z + 2026-03-03T10:48:40.698Z monthly 0.8 @@ -8147,7 +8336,7 @@ https://www.rfc1437.de/2012/05/18/neulich-im-internet-3/ - 2026-03-03T10:48:44.000Z + 2026-03-03T10:48:44.462Z monthly 0.8 @@ -8156,7 +8345,7 @@ https://www.rfc1437.de/2012/05/14/the-schemaverse/ - 2026-03-03T10:48:48.000Z + 2026-03-03T10:48:48.224Z monthly 0.8 @@ -8165,7 +8354,7 @@ https://www.rfc1437.de/2012/05/14/sipml5-the-worlds-first-open-source-html5-client/ - 2026-03-03T10:48:52.000Z + 2026-03-03T10:48:52.028Z monthly 0.8 @@ -8174,7 +8363,7 @@ https://www.rfc1437.de/2012/05/12/gumbo/ - 2026-03-03T10:48:57.000Z + 2026-03-03T10:48:57.179Z monthly 0.8 @@ -8183,7 +8372,7 @@ https://www.rfc1437.de/2012/05/12/plumbum-shell-combinators-and-more-plumbum-shell-combinators/ - 2026-03-03T10:49:01.000Z + 2026-03-03T10:49:01.955Z monthly 0.8 @@ -8192,7 +8381,7 @@ https://www.rfc1437.de/2012/05/11/leica-x2-review-ming-thein-photographer/ - 2026-03-03T10:49:06.000Z + 2026-03-03T10:49:06.589Z monthly 0.8 @@ -8201,7 +8390,7 @@ https://www.rfc1437.de/2012/05/09/pocket-sized-fuel-cell-charges-phones-for-two-weeks-mobile-phones-cnet-cnet-asia/ - 2026-03-03T10:49:10.000Z + 2026-03-03T10:49:10.857Z monthly 0.8 @@ -8210,7 +8399,7 @@ https://www.rfc1437.de/2012/05/09/clojurecore-reducers-a-library-and-model-for-collection-processing/ - 2026-03-03T10:49:15.000Z + 2026-03-03T10:49:15.923Z monthly 0.8 @@ -8219,7 +8408,7 @@ https://www.rfc1437.de/2012/05/09/backbone-fundamentalsindex-md-at-master-c2-b7-addyosmanibackbone-fundamentals-c2-b7-github/ - 2026-03-03T10:49:20.000Z + 2026-03-03T10:49:20.760Z monthly 0.8 @@ -8228,7 +8417,7 @@ https://www.rfc1437.de/2012/05/08/pypy-status-blog-stm-update-back-to-threads/ - 2026-03-03T10:49:25.000Z + 2026-03-03T10:49:25.532Z monthly 0.8 @@ -8237,7 +8426,7 @@ https://www.rfc1437.de/2012/05/07/tuupolajquery-lazyload/ - 2026-03-03T10:49:29.000Z + 2026-03-03T10:49:29.942Z monthly 0.8 @@ -8246,7 +8435,7 @@ https://www.rfc1437.de/2012/05/07/dirq-1-1-2-documentation/ - 2026-03-03T10:49:34.000Z + 2026-03-03T10:49:34.796Z monthly 0.8 @@ -8255,7 +8444,7 @@ https://www.rfc1437.de/2012/05/07/hotcanvas-realtime-coding/ - 2026-03-03T10:49:38.000Z + 2026-03-03T10:49:38.747Z monthly 0.8 @@ -8264,7 +8453,7 @@ https://www.rfc1437.de/2012/05/07/bilderarchiv-rfc1437/ - 2026-03-03T10:49:43.000Z + 2026-03-03T10:49:43.225Z monthly 0.8 @@ -8273,7 +8462,7 @@ https://www.rfc1437.de/2012/05/07/owncloud-org-your-cloud-your-data-your-way/ - 2026-03-03T10:49:47.000Z + 2026-03-03T10:49:47.640Z monthly 0.8 @@ -8282,7 +8471,7 @@ https://www.rfc1437.de/2012/05/04/rubymotion-ruby-for-ios/ - 2026-03-03T10:49:52.000Z + 2026-03-03T10:49:52.097Z monthly 0.8 @@ -8291,7 +8480,7 @@ https://www.rfc1437.de/2012/05/03/mojolicious-perl-real-time-web-framework-2/ - 2026-03-03T10:49:56.000Z + 2026-03-03T10:49:56.565Z monthly 0.8 @@ -8300,7 +8489,7 @@ https://www.rfc1437.de/2012/05/01/neulich-im-internet-schwarzweis-ausgabe-2/ - 2026-03-03T10:50:00.000Z + 2026-03-03T10:50:00.923Z monthly 0.8 @@ -8309,7 +8498,7 @@ https://www.rfc1437.de/2012/05/01/neulich-im-internet-2/ - 2026-03-03T10:50:04.000Z + 2026-03-03T10:50:04.933Z monthly 0.8 @@ -8318,7 +8507,7 @@ https://www.rfc1437.de/2012/04/28/ravendb-2nd-generation-document-database/ - 2026-03-03T10:50:08.000Z + 2026-03-03T10:50:08.842Z monthly 0.8 @@ -8327,7 +8516,7 @@ https://www.rfc1437.de/2012/04/28/jsil-net-to-javascript-compiler/ - 2026-03-03T10:50:13.000Z + 2026-03-03T10:50:13.193Z monthly 0.8 @@ -8336,7 +8525,7 @@ https://www.rfc1437.de/2012/04/26/amazon-com-send-to-kindle-for-mac/ - 2026-03-03T10:50:17.000Z + 2026-03-03T10:50:17.374Z monthly 0.8 @@ -8345,7 +8534,7 @@ https://www.rfc1437.de/2012/04/25/the-buckblogs-here-maze-generation-ellers-algorithm/ - 2026-03-03T10:50:21.000Z + 2026-03-03T10:50:21.825Z monthly 0.8 @@ -8354,7 +8543,7 @@ https://www.rfc1437.de/2012/04/25/jquery-masonry/ - 2026-03-03T10:50:25.000Z + 2026-03-03T10:50:25.299Z monthly 0.8 @@ -8363,7 +8552,7 @@ https://www.rfc1437.de/2012/04/25/blocksit-js-dynamic-grid-layout-jquery-plugin/ - 2026-03-03T10:50:29.000Z + 2026-03-03T10:50:29.173Z monthly 0.8 @@ -8372,7 +8561,7 @@ https://www.rfc1437.de/2012/04/25/kronuzsublimecodeintel/ - 2026-03-03T10:50:32.000Z + 2026-03-03T10:50:32.601Z monthly 0.8 @@ -8381,7 +8570,7 @@ https://www.rfc1437.de/2012/04/25/cubism-js/ - 2026-03-03T10:50:36.000Z + 2026-03-03T10:50:36.104Z monthly 0.8 @@ -8390,7 +8579,7 @@ https://www.rfc1437.de/2012/04/24/jlongsterdcpu-lisp/ - 2026-03-03T10:50:40.000Z + 2026-03-03T10:50:40.428Z monthly 0.8 @@ -8399,7 +8588,7 @@ https://www.rfc1437.de/2012/04/24/subrepository-mercurial/ - 2026-03-03T10:50:44.000Z + 2026-03-03T10:50:44.674Z monthly 0.8 @@ -8408,7 +8597,7 @@ https://www.rfc1437.de/2012/04/24/645-pro-app-for-iphone-offers-access-to-lossless-camera-output-but-not-raw-digital-photography-review/ - 2026-03-03T10:50:49.000Z + 2026-03-03T10:50:49.384Z monthly 0.8 @@ -8417,7 +8606,7 @@ https://www.rfc1437.de/2012/04/23/thinkup-social-media-insights-platform/ - 2026-03-03T10:50:53.000Z + 2026-03-03T10:50:53.675Z monthly 0.8 @@ -8426,7 +8615,7 @@ https://www.rfc1437.de/2012/04/23/google-importer-for-wordpress-sutherland-boswell/ - 2026-03-03T10:50:57.000Z + 2026-03-03T10:50:57.946Z monthly 0.8 @@ -8435,7 +8624,7 @@ https://www.rfc1437.de/2012/04/23/mozilla-archive-format-with-mht-and-faithful-save-add-ons-fur-firefox/ - 2026-03-03T10:51:02.000Z + 2026-03-03T10:51:02.202Z monthly 0.8 @@ -8444,7 +8633,7 @@ https://www.rfc1437.de/2012/04/23/pycounters/ - 2026-03-03T10:51:06.000Z + 2026-03-03T10:51:06.030Z monthly 0.8 @@ -8453,7 +8642,7 @@ https://www.rfc1437.de/2012/04/22/neulich-im-internet-schwarzweis-ausgabe/ - 2026-03-03T10:51:10.000Z + 2026-03-03T10:51:10.248Z monthly 0.8 @@ -8462,7 +8651,7 @@ https://www.rfc1437.de/2012/04/22/neulich-im-internet/ - 2026-03-03T10:51:14.000Z + 2026-03-03T10:51:14.516Z monthly 0.8 @@ -8471,7 +8660,7 @@ https://www.rfc1437.de/2012/04/14/parlament-fraktionen-wollen-rederecht-im-bundestag-beschneiden-politik-zeit-online/ - 2026-03-03T10:51:19.000Z + 2026-03-03T10:51:19.274Z monthly 0.8 @@ -8480,7 +8669,7 @@ https://www.rfc1437.de/2012/04/13/neulich-auf-google/ - 2026-03-03T10:51:23.000Z + 2026-03-03T10:51:23.037Z monthly 0.8 @@ -8489,7 +8678,7 @@ https://www.rfc1437.de/2012/04/13/gesammelte-alte-schwarzweissbilder/ - 2026-03-03T10:51:26.000Z + 2026-03-03T10:51:26.383Z monthly 0.8 @@ -8498,7 +8687,7 @@ https://www.rfc1437.de/2012/04/12/virtualenv-clone-0-2-2-python-package-index/ - 2026-03-03T10:51:30.000Z + 2026-03-03T10:51:30.194Z monthly 0.8 @@ -8507,7 +8696,7 @@ https://www.rfc1437.de/2012/04/12/introducing-pivot-js/ - 2026-03-03T10:51:34.000Z + 2026-03-03T10:51:34.016Z monthly 0.8 @@ -8516,7 +8705,7 @@ https://www.rfc1437.de/2012/04/10/abiquetmfs/ - 2026-03-03T10:51:37.000Z + 2026-03-03T10:51:37.347Z monthly 0.8 @@ -8525,7 +8714,7 @@ https://www.rfc1437.de/2012/04/06/offener-brief-an-die-contentindustrie/ - 2026-03-03T10:51:42.000Z + 2026-03-03T10:51:42.354Z monthly 0.8 @@ -8534,7 +8723,7 @@ https://www.rfc1437.de/2012/04/05/the-unbearable-finality-of-pixel-space/ - 2026-03-03T10:51:46.000Z + 2026-03-03T10:51:46.988Z monthly 0.8 @@ -8543,7 +8732,7 @@ https://www.rfc1437.de/2012/04/04/flatironplates/ - 2026-03-03T10:51:50.000Z + 2026-03-03T10:51:50.798Z monthly 0.8 @@ -8552,7 +8741,7 @@ https://www.rfc1437.de/2012/03/31/neulich-auf-google-4/ - 2026-03-03T10:51:54.000Z + 2026-03-03T10:51:54.563Z monthly 0.8 @@ -8561,7 +8750,7 @@ https://www.rfc1437.de/2012/03/29/rq-documentation/ - 2026-03-03T10:51:57.000Z + 2026-03-03T10:51:57.934Z monthly 0.8 @@ -8570,7 +8759,7 @@ https://www.rfc1437.de/2012/03/29/kenko-extensions-tube-with-full-electronic-control/ - 2026-03-03T10:52:01.000Z + 2026-03-03T10:52:01.721Z monthly 0.8 @@ -8579,7 +8768,7 @@ https://www.rfc1437.de/2012/03/29/iphone-what-happens-to-javascript-code-after-app-is-compiled-using-titanium-mobile-stack-overflow/ - 2026-03-03T10:52:05.000Z + 2026-03-03T10:52:05.971Z monthly 0.8 @@ -8588,7 +8777,7 @@ https://www.rfc1437.de/2012/03/27/titanium-desktop-node-js-prototype-appcelerator-developer-center/ - 2026-03-03T10:52:10.000Z + 2026-03-03T10:52:10.607Z monthly 0.8 @@ -8597,7 +8786,7 @@ https://www.rfc1437.de/2012/03/27/embedding-and-running-node-js-within-a-firefox-xul-extension-captains-blog-rawkes/ - 2026-03-03T10:52:15.000Z + 2026-03-03T10:52:15.288Z monthly 0.8 @@ -8606,7 +8795,7 @@ https://www.rfc1437.de/2012/03/27/nodobjc/ - 2026-03-03T10:52:19.000Z + 2026-03-03T10:52:19.521Z monthly 0.8 @@ -8615,7 +8804,7 @@ https://www.rfc1437.de/2012/03/27/topcube/ - 2026-03-03T10:52:23.000Z + 2026-03-03T10:52:23.320Z monthly 0.8 @@ -8624,7 +8813,7 @@ https://www.rfc1437.de/2012/03/26/haypopysandbox/ - 2026-03-03T10:52:27.000Z + 2026-03-03T10:52:27.142Z monthly 0.8 @@ -8633,7 +8822,7 @@ https://www.rfc1437.de/2012/03/25/neulich-auf-flickr-schwarzweis-ausgabe-4/ - 2026-03-03T10:52:30.000Z + 2026-03-03T10:52:30.546Z monthly 0.8 @@ -8642,7 +8831,7 @@ https://www.rfc1437.de/2012/03/25/neulich-auf-flickr-9/ - 2026-03-03T10:52:33.000Z + 2026-03-03T10:52:33.934Z monthly 0.8 @@ -8651,7 +8840,7 @@ https://www.rfc1437.de/2012/03/23/synthcam-for-iphone/ - 2026-03-03T10:52:38.000Z + 2026-03-03T10:52:38.140Z monthly 0.8 @@ -8660,7 +8849,7 @@ https://www.rfc1437.de/2012/03/23/depth-of-field/ - 2026-03-03T10:52:41.000Z + 2026-03-03T10:52:41.951Z monthly 0.8 @@ -8669,7 +8858,7 @@ https://www.rfc1437.de/2012/03/22/kein-quick-freeze-kanzlerin-drangt-rosler-zur-vorratsdatenspeicherung/ - 2026-03-03T10:52:47.000Z + 2026-03-03T10:52:47.095Z monthly 0.8 @@ -8678,7 +8867,7 @@ https://www.rfc1437.de/2012/03/21/katzencontent/ - 2026-03-03T10:52:50.000Z + 2026-03-03T10:52:50.431Z monthly 0.8 @@ -8687,7 +8876,7 @@ https://www.rfc1437.de/2012/03/21/bilderarchiv-2012/ - 2026-03-03T10:52:53.000Z + 2026-03-03T10:52:53.447Z monthly 0.8 @@ -8696,7 +8885,7 @@ https://www.rfc1437.de/2012/03/21/bilderarchiv-2010/ - 2026-03-03T10:52:56.000Z + 2026-03-03T10:52:56.430Z monthly 0.8 @@ -8705,7 +8894,7 @@ https://www.rfc1437.de/2012/03/21/bilderarchiv-2011/ - 2026-03-03T10:52:59.000Z + 2026-03-03T10:52:59.389Z monthly 0.8 @@ -8714,7 +8903,7 @@ https://www.rfc1437.de/2012/03/19/boo-getting-started/ - 2026-03-03T10:53:03.000Z + 2026-03-03T10:53:03.628Z monthly 0.8 @@ -8723,7 +8912,7 @@ https://www.rfc1437.de/2012/03/17/rinderrouladen/ - 2026-03-03T10:53:08.000Z + 2026-03-03T10:53:08.255Z monthly 0.8 @@ -8732,7 +8921,7 @@ https://www.rfc1437.de/2012/03/16/pyp-python-power-at-the-prompt-google-project-hosting/ - 2026-03-03T10:53:12.000Z + 2026-03-03T10:53:12.485Z monthly 0.8 @@ -8741,7 +8930,7 @@ https://www.rfc1437.de/2012/03/15/gprowl/ - 2026-03-03T10:53:16.000Z + 2026-03-03T10:53:16.906Z monthly 0.8 @@ -8750,7 +8939,7 @@ https://www.rfc1437.de/2012/03/13/clojure-py/ - 2026-03-03T10:53:21.000Z + 2026-03-03T10:53:21.193Z monthly 0.8 @@ -8759,7 +8948,7 @@ https://www.rfc1437.de/2012/03/12/lensrentals-com-undressing-an-nex/ - 2026-03-03T10:53:25.000Z + 2026-03-03T10:53:25.420Z monthly 0.8 @@ -8768,7 +8957,7 @@ https://www.rfc1437.de/2012/03/12/create-a-package-for-ios-kivy-1-1-2-dev-documentation/ - 2026-03-03T10:53:29.000Z + 2026-03-03T10:53:29.672Z monthly 0.8 @@ -8777,7 +8966,7 @@ https://www.rfc1437.de/2012/03/10/neulich-auf-flickr-schwarzweis-ausgabe-3/ - 2026-03-03T10:53:33.000Z + 2026-03-03T10:53:33.083Z monthly 0.8 @@ -8786,7 +8975,7 @@ https://www.rfc1437.de/2012/03/10/neulich-auf-flickr-8/ - 2026-03-03T10:53:36.000Z + 2026-03-03T10:53:36.476Z monthly 0.8 @@ -8795,7 +8984,7 @@ https://www.rfc1437.de/2012/03/10/wbondsublime-package-control/ - 2026-03-03T10:53:40.000Z + 2026-03-03T10:53:40.245Z monthly 0.8 @@ -8804,7 +8993,7 @@ https://www.rfc1437.de/2012/03/10/julianeberiussublimerope/ - 2026-03-03T10:53:44.000Z + 2026-03-03T10:53:44.503Z monthly 0.8 @@ -8813,7 +9002,7 @@ https://www.rfc1437.de/2012/03/09/hypercard-visual-basic-and-the-importance-of-the-novice-developer/ - 2026-03-03T10:53:49.000Z + 2026-03-03T10:53:49.180Z monthly 0.8 @@ -8822,7 +9011,7 @@ https://www.rfc1437.de/2012/03/09/mtraversheroku-buildpack-cl/ - 2026-03-03T10:53:53.000Z + 2026-03-03T10:53:53.513Z monthly 0.8 @@ -8831,7 +9020,7 @@ https://www.rfc1437.de/2012/03/09/heroku-clojure-on-heroku/ - 2026-03-03T10:53:57.000Z + 2026-03-03T10:53:57.321Z monthly 0.8 @@ -8840,7 +9029,7 @@ https://www.rfc1437.de/2012/03/09/terjenorderhaugecl-iphone-builder/ - 2026-03-03T10:54:01.000Z + 2026-03-03T10:54:01.979Z monthly 0.8 @@ -8849,7 +9038,7 @@ https://www.rfc1437.de/2012/03/08/room-101-the-miracle-of-become/ - 2026-03-03T10:54:06.000Z + 2026-03-03T10:54:06.708Z monthly 0.8 @@ -8858,7 +9047,7 @@ https://www.rfc1437.de/2012/03/08/chrome-kann-in-funf-minuten-geknackt-werden-produkte-futurezone-at-technology-news/ - 2026-03-03T10:54:11.000Z + 2026-03-03T10:54:11.669Z monthly 0.8 @@ -8867,7 +9056,7 @@ https://www.rfc1437.de/2012/03/07/new-app-impressive-aide-is-an-ide-that-lets-you-write-and-compile-android-apps-on-your-android-device-begs-for-the-yo-dawg-treatment/ - 2026-03-03T10:54:16.000Z + 2026-03-03T10:54:16.715Z monthly 0.8 @@ -8876,7 +9065,7 @@ https://www.rfc1437.de/2012/03/07/vagrant-virtualized-development-for-the-masses/ - 2026-03-03T10:54:21.000Z + 2026-03-03T10:54:21.211Z monthly 0.8 @@ -8885,7 +9074,7 @@ https://www.rfc1437.de/2012/03/07/pyside-for-android-thp-io/ - 2026-03-03T10:54:25.000Z + 2026-03-03T10:54:25.575Z monthly 0.8 @@ -8894,7 +9083,7 @@ https://www.rfc1437.de/2012/03/07/robin-wong-olympus-e-m5-review/ - 2026-03-03T10:54:30.000Z + 2026-03-03T10:54:30.435Z monthly 0.8 @@ -8903,7 +9092,7 @@ https://www.rfc1437.de/2012/03/05/hyper-v-virtuelle-maschinen-laufwerksbuchstaben-wahnsinn-microsoft/ - 2026-03-03T10:54:34.000Z + 2026-03-03T10:54:34.934Z monthly 0.8 @@ -8912,7 +9101,7 @@ https://www.rfc1437.de/2012/03/02/pyprocessing-a-processing-like-environment-for-doing-graphics-with-python-google-project-hosting/ - 2026-03-03T10:54:38.000Z + 2026-03-03T10:54:38.470Z monthly 0.8 @@ -8921,7 +9110,7 @@ https://www.rfc1437.de/2012/02/29/ex-bundesprasident-wulff-erhalt-den-ehrensold-tagesschau-de/ - 2026-03-03T10:54:43.000Z + 2026-03-03T10:54:43.355Z monthly 0.8 @@ -8930,7 +9119,7 @@ https://www.rfc1437.de/2012/02/28/41mp-nokia-808-smartphone-hints-at-pixel-binning-future-for-small-sensor-cameras-digital-photography-review/ - 2026-03-03T10:54:48.000Z + 2026-03-03T10:54:48.724Z monthly 0.8 @@ -8939,7 +9128,7 @@ https://www.rfc1437.de/2012/02/27/temporal-keys-part-2-experimental-thoughts/ - 2026-03-03T10:54:53.000Z + 2026-03-03T10:54:53.307Z monthly 0.8 @@ -8948,7 +9137,7 @@ https://www.rfc1437.de/2012/02/26/responsiveslides-js-c2-b7-responsive-jquery-slideshow/ - 2026-03-03T10:54:57.000Z + 2026-03-03T10:54:57.384Z monthly 0.8 @@ -8957,7 +9146,7 @@ https://www.rfc1437.de/2012/02/21/6-sony-infrared-conversion-service/ - 2026-03-03T10:55:01.000Z + 2026-03-03T10:55:01.804Z monthly 0.8 @@ -8966,7 +9155,7 @@ https://www.rfc1437.de/2012/02/20/karneval-und-jetzt-bitte-die-pappnasen-absetzen-ok/ - 2026-03-03T10:55:06.000Z + 2026-03-03T10:55:06.283Z monthly 0.8 @@ -8975,7 +9164,7 @@ https://www.rfc1437.de/2012/02/18/the-julia-manual/ - 2026-03-03T10:55:10.000Z + 2026-03-03T10:55:10.273Z monthly 0.8 @@ -8984,7 +9173,7 @@ https://www.rfc1437.de/2012/02/17/deutsche-tastaturbelegung-unter-parallels-vmware-bootcamp-und-virtualbox-info-schirmacher/ - 2026-03-03T10:55:15.000Z + 2026-03-03T10:55:15.264Z monthly 0.8 @@ -8993,7 +9182,7 @@ https://www.rfc1437.de/2012/02/17/mac-developer-tips-how-to-uninstall-xcode/ - 2026-03-03T10:55:19.000Z + 2026-03-03T10:55:19.820Z monthly 0.8 @@ -9002,7 +9191,7 @@ https://www.rfc1437.de/2012/02/17/xcode-gcc-and-homebrew/ - 2026-03-03T10:55:24.000Z + 2026-03-03T10:55:24.328Z monthly 0.8 @@ -9011,7 +9200,7 @@ https://www.rfc1437.de/2012/02/16/stochastic-technologiesgoatfish-github/ - 2026-03-03T10:55:28.000Z + 2026-03-03T10:55:28.795Z monthly 0.8 @@ -9020,7 +9209,7 @@ https://www.rfc1437.de/2012/02/14/concatenative-irc-logs-vom-6-1-2012/ - 2026-03-03T10:55:33.000Z + 2026-03-03T10:55:33.875Z monthly 0.8 @@ -9029,7 +9218,7 @@ https://www.rfc1437.de/2012/02/14/generateds-2-7b-python-package-index/ - 2026-03-03T10:55:38.000Z + 2026-03-03T10:55:38.293Z monthly 0.8 @@ -9038,7 +9227,7 @@ https://www.rfc1437.de/2012/02/13/zenphoto-publisher-lightroom-3-publisher-plugin-for-zenphoto-google-project-hosting/ - 2026-03-03T10:55:42.000Z + 2026-03-03T10:55:42.733Z monthly 0.8 @@ -9047,7 +9236,7 @@ https://www.rfc1437.de/2012/02/13/collection-publisher-lightroom-plugin/ - 2026-03-03T10:55:47.000Z + 2026-03-03T10:55:47.213Z monthly 0.8 @@ -9056,7 +9245,7 @@ https://www.rfc1437.de/2012/02/13/cord-remote-desktop-for-mac-os-x-2/ - 2026-03-03T10:55:50.000Z + 2026-03-03T10:55:50.738Z monthly 0.8 @@ -9065,7 +9254,7 @@ https://www.rfc1437.de/2012/02/12/die-woche-wie-geht-es-uns-herr-kuppersbusch-taz-de/ - 2026-03-03T10:55:55.000Z + 2026-03-03T10:55:55.675Z monthly 0.8 @@ -9074,7 +9263,7 @@ https://www.rfc1437.de/2012/02/12/schweinefilet-in-senfsose/ - 2026-03-03T10:56:00.000Z + 2026-03-03T10:56:00.554Z monthly 0.8 @@ -9083,7 +9272,7 @@ https://www.rfc1437.de/2012/02/12/idlex-idle-extensions-for-python/ - 2026-03-03T10:56:04.000Z + 2026-03-03T10:56:04.585Z monthly 0.8 @@ -9092,7 +9281,7 @@ https://www.rfc1437.de/2012/02/12/practical-common-lisp-crawling-interfacelift-with-common-lisp-second-try/ - 2026-03-03T10:56:09.000Z + 2026-03-03T10:56:09.535Z monthly 0.8 @@ -9101,7 +9290,7 @@ https://www.rfc1437.de/2012/02/11/arskomrpclib-github/ - 2026-03-03T10:56:13.000Z + 2026-03-03T10:56:13.072Z monthly 0.8 @@ -9110,7 +9299,7 @@ https://www.rfc1437.de/2012/02/11/aaseevergnugen/ - 2026-03-03T10:56:17.000Z + 2026-03-03T10:56:17.753Z monthly 0.8 @@ -9119,7 +9308,7 @@ https://www.rfc1437.de/2012/02/09/howto-to-rebuild-debian-packages/ - 2026-03-03T10:56:21.000Z + 2026-03-03T10:56:21.902Z monthly 0.8 @@ -9128,7 +9317,7 @@ https://www.rfc1437.de/2012/02/09/laurence-tratt-fast-enough-vms-in-fast-enough-time/ - 2026-03-03T10:56:26.000Z + 2026-03-03T10:56:26.780Z monthly 0.8 @@ -9137,7 +9326,7 @@ https://www.rfc1437.de/2012/02/09/google-wallet-pin-cracked-on-rooted-android-devices-the-verge/ - 2026-03-03T10:56:30.000Z + 2026-03-03T10:56:30.759Z monthly 0.8 @@ -9146,7 +9335,7 @@ https://www.rfc1437.de/2012/02/08/ladon-0-7-0-python-package-index/ - 2026-03-03T10:56:34.000Z + 2026-03-03T10:56:34.754Z monthly 0.8 @@ -9155,7 +9344,7 @@ https://www.rfc1437.de/2012/02/08/suds/ - 2026-03-03T10:56:38.000Z + 2026-03-03T10:56:38.251Z monthly 0.8 @@ -9164,7 +9353,7 @@ https://www.rfc1437.de/2012/02/08/about-soaplib-v2-0-0beta-documentation/ - 2026-03-03T10:56:41.000Z + 2026-03-03T10:56:41.682Z monthly 0.8 @@ -9173,7 +9362,7 @@ https://www.rfc1437.de/2012/02/08/pysimplesoap-python-simple-soap-library-google-project-hosting/ - 2026-03-03T10:56:45.000Z + 2026-03-03T10:56:45.550Z monthly 0.8 @@ -9182,7 +9371,7 @@ https://www.rfc1437.de/2012/02/08/smile-and-smilelab-home-page/ - 2026-03-03T10:56:49.000Z + 2026-03-03T10:56:49.452Z monthly 0.8 @@ -9191,7 +9380,7 @@ https://www.rfc1437.de/2012/02/06/tour-de-france-radprofi-contador-fur-zwei-jahre-gesperrt-sport-zeit-online/ - 2026-03-03T10:56:53.000Z + 2026-03-03T10:56:53.801Z monthly 0.8 @@ -9200,7 +9389,7 @@ https://www.rfc1437.de/2012/02/03/python4delphi-embedding-python-within-a-delphi-application-google-project-hosting/ - 2026-03-03T10:56:57.000Z + 2026-03-03T10:56:57.660Z monthly 0.8 @@ -9209,7 +9398,7 @@ https://www.rfc1437.de/2012/01/30/bundesprasident-wulff-verschwieg-beziehung-zu-geerkens-tagesschau-de/ - 2026-03-03T10:57:02.000Z + 2026-03-03T10:57:02.349Z monthly 0.8 @@ -9218,7 +9407,7 @@ https://www.rfc1437.de/2012/01/30/zuueck-aus-amsterdam/ - 2026-03-03T10:57:06.000Z + 2026-03-03T10:57:06.265Z monthly 0.8 @@ -9227,7 +9416,7 @@ https://www.rfc1437.de/2012/01/08/inigo-quilez-fractals-computer-graphics-mathematics-demoscene-and-more/ - 2026-03-03T10:57:10.000Z + 2026-03-03T10:57:10.584Z monthly 0.8 @@ -9236,7 +9425,7 @@ https://www.rfc1437.de/2012/01/06/technical-documentation-pistosdiaspora/ - 2026-03-03T10:57:14.000Z + 2026-03-03T10:57:14.551Z monthly 0.8 @@ -9245,7 +9434,7 @@ https://www.rfc1437.de/2012/01/05/fpc-new-features-2-6-0-lazarus-wiki/ - 2026-03-03T10:57:19.000Z + 2026-03-03T10:57:19.467Z monthly 0.8 @@ -9254,7 +9443,7 @@ https://www.rfc1437.de/2012/01/04/sony-approves-the-launch-the-new-hybrid-alphanex-mount-camera-sort-of-fullframe-nex-7/ - 2026-03-03T10:57:24.000Z + 2026-03-03T10:57:24.717Z monthly 0.8 @@ -9263,7 +9452,7 @@ https://www.rfc1437.de/2011/12/31/spaghetti-carbonara-mit-gemuse-und-frikadellen/ - 2026-03-03T10:57:29.000Z + 2026-03-03T10:57:29.541Z monthly 0.8 @@ -9272,7 +9461,7 @@ https://www.rfc1437.de/2011/12/30/charles-leifer-updates-to-peewee-including-atomic-updates-select-related-and-basic-transactions/ - 2026-03-03T10:57:33.000Z + 2026-03-03T10:57:33.893Z monthly 0.8 @@ -9281,7 +9470,7 @@ https://www.rfc1437.de/2011/12/29/linux-l2tpipsec-with-iphone-and-mac-osx-clients-peen-net/ - 2026-03-03T10:57:38.000Z + 2026-03-03T10:57:38.637Z monthly 0.8 @@ -9290,7 +9479,7 @@ https://www.rfc1437.de/2011/12/28/distribunomicon-learn-you-some-erlang-for-great-good/ - 2026-03-03T10:57:42.000Z + 2026-03-03T10:57:42.520Z monthly 0.8 @@ -9299,7 +9488,7 @@ https://www.rfc1437.de/2011/12/24/samsung-galaxy-s-phones-ice-cream-sandwich-update/ - 2026-03-03T10:57:46.000Z + 2026-03-03T10:57:46.823Z monthly 0.8 @@ -9308,7 +9497,7 @@ https://www.rfc1437.de/2011/12/23/custom-iphone-backs/ - 2026-03-03T10:57:50.000Z + 2026-03-03T10:57:50.293Z monthly 0.8 @@ -9317,7 +9506,7 @@ https://www.rfc1437.de/2011/12/22/sublime-text/ - 2026-03-03T10:57:54.000Z + 2026-03-03T10:57:54.609Z monthly 0.8 @@ -9326,7 +9515,7 @@ https://www.rfc1437.de/2011/12/22/phalanger-3-0-php-compiler-for-net/ - 2026-03-03T10:57:59.000Z + 2026-03-03T10:57:59.330Z monthly 0.8 @@ -9335,7 +9524,7 @@ https://www.rfc1437.de/2011/12/21/lanzarote-mondlandschaft-mit-palmen/ - 2026-03-03T10:58:02.000Z + 2026-03-03T10:58:02.773Z monthly 0.8 @@ -9344,7 +9533,7 @@ https://www.rfc1437.de/2011/12/21/web2py/ - 2026-03-03T10:58:06.000Z + 2026-03-03T10:58:06.250Z monthly 0.8 @@ -9353,7 +9542,7 @@ https://www.rfc1437.de/2011/12/21/mac-app-store-clozure-cl/ - 2026-03-03T10:58:10.000Z + 2026-03-03T10:58:10.595Z monthly 0.8 @@ -9362,7 +9551,7 @@ https://www.rfc1437.de/2011/12/20/commentpress/ - 2026-03-03T10:58:14.000Z + 2026-03-03T10:58:14.940Z monthly 0.8 @@ -9371,7 +9560,7 @@ https://www.rfc1437.de/2011/12/19/neulich-auf-flickr-7/ - 2026-03-03T10:58:18.000Z + 2026-03-03T10:58:18.563Z monthly 0.8 @@ -9380,7 +9569,7 @@ https://www.rfc1437.de/2011/12/19/neulich-auf-flickr-schwarzweis-ausgabe-2/ - 2026-03-03T10:58:22.000Z + 2026-03-03T10:58:22.041Z monthly 0.8 @@ -9389,7 +9578,7 @@ https://www.rfc1437.de/2011/12/07/clay-programming-language/ - 2026-03-03T10:58:26.000Z + 2026-03-03T10:58:26.355Z monthly 0.8 @@ -9398,7 +9587,7 @@ https://www.rfc1437.de/2011/12/07/thoughts-on-python-3-armin-ronachers-thoughts-and-writings/ - 2026-03-03T10:58:30.000Z + 2026-03-03T10:58:30.219Z monthly 0.8 @@ -9407,7 +9596,7 @@ https://www.rfc1437.de/2011/12/06/learn-smalltalk-with-profstef/ - 2026-03-03T10:58:34.000Z + 2026-03-03T10:58:34.595Z monthly 0.8 @@ -9416,7 +9605,7 @@ https://www.rfc1437.de/2011/12/02/iphone-battery-life-issues-may-continue-to-vex-users-e2-80-94even-post-ios-5-1/ - 2026-03-03T10:58:39.000Z + 2026-03-03T10:58:39.300Z monthly 0.8 @@ -9425,7 +9614,7 @@ https://www.rfc1437.de/2011/12/02/ecomstation-wikipedia-the-free-encyclopedia/ - 2026-03-03T10:58:43.000Z + 2026-03-03T10:58:43.155Z monthly 0.8 @@ -9434,7 +9623,7 @@ https://www.rfc1437.de/2011/12/02/open-object-rexx/ - 2026-03-03T10:58:46.000Z + 2026-03-03T10:58:46.642Z monthly 0.8 @@ -9443,7 +9632,7 @@ https://www.rfc1437.de/2011/12/01/using-hardware-controllers-with-lightroom-valokuvaaja-max-edin/ - 2026-03-03T10:58:50.000Z + 2026-03-03T10:58:50.974Z monthly 0.8 @@ -9452,7 +9641,7 @@ https://www.rfc1437.de/2011/11/30/hangout-disco-renders-a-webgl-room-with-avatars-for-each-participant-of-a-google-hangout-with-the-possibility-to-play-music-etc-google-project-hosting/ - 2026-03-03T10:58:54.000Z + 2026-03-03T10:58:54.920Z monthly 0.8 @@ -9461,7 +9650,7 @@ https://www.rfc1437.de/2011/11/30/busted-secret-app-on-millions-of-phones-logs-key-taps-e2-80-a2-the-register/ - 2026-03-03T10:58:59.000Z + 2026-03-03T10:58:59.641Z monthly 0.8 @@ -9470,7 +9659,7 @@ https://www.rfc1437.de/2011/11/30/zinc-http-components/ - 2026-03-03T10:59:03.000Z + 2026-03-03T10:59:03.488Z monthly 0.8 @@ -9479,7 +9668,7 @@ https://www.rfc1437.de/2011/11/30/tornado-on-pypy-benchmarks-tornado-web-server-google-groups/ - 2026-03-03T10:59:08.000Z + 2026-03-03T10:59:08.240Z monthly 0.8 @@ -9488,7 +9677,7 @@ https://www.rfc1437.de/2011/11/30/gemstone-seaside-about/ - 2026-03-03T10:59:12.000Z + 2026-03-03T10:59:12.557Z monthly 0.8 @@ -9497,7 +9686,7 @@ https://www.rfc1437.de/2011/11/30/sicherheitslucke-feuergefahr-bei-hp-druckern-golem-de/ - 2026-03-03T10:59:16.000Z + 2026-03-03T10:59:16.824Z monthly 0.8 @@ -9506,7 +9695,7 @@ https://www.rfc1437.de/2011/11/29/python-math-python-for-iphoneipadipod-touch-2/ - 2026-03-03T10:59:21.000Z + 2026-03-03T10:59:21.508Z monthly 0.8 @@ -9515,7 +9704,7 @@ https://www.rfc1437.de/2011/11/29/fliers-still-must-turn-off-devices-but-its-not-clear-why-nytimes-com/ - 2026-03-03T10:59:27.000Z + 2026-03-03T10:59:27.935Z monthly 0.8 @@ -9524,7 +9713,7 @@ https://www.rfc1437.de/2011/11/28/yacy-freie-suchmaschinensoftware-und-dezentrale-websuche/ - 2026-03-03T11:13:44.000Z + 2026-03-03T11:13:44.885Z monthly 0.8 @@ -9533,7 +9722,7 @@ https://www.rfc1437.de/2011/11/28/flugdatenabkommen-ist-ausverhandelt-fm4-orf-at/ - 2026-03-03T11:13:49.000Z + 2026-03-03T11:13:49.214Z monthly 0.8 @@ -9542,7 +9731,7 @@ https://www.rfc1437.de/2011/11/28/welcome-to-neurolab-e2-80-99s-documentation-e2-80-94-neurolab-v0-2-1-documentation/ - 2026-03-03T11:13:52.000Z + 2026-03-03T11:13:52.732Z monthly 0.8 @@ -9551,7 +9740,7 @@ https://www.rfc1437.de/2011/11/20/a-human-review-of-the-kindle-fire-e2-80-93-marco-org/ - 2026-03-03T11:13:55.000Z + 2026-03-03T11:13:55.764Z monthly 0.8 @@ -9560,7 +9749,7 @@ https://www.rfc1437.de/2011/11/20/nizza-impressionen/ - 2026-03-03T11:13:58.000Z + 2026-03-03T11:13:58.775Z monthly 0.8 @@ -9578,7 +9767,7 @@ https://www.rfc1437.de/2011/11/10/forger-the-digital-sculpting-app-for-ipad/ - 2026-03-03T11:14:05.000Z + 2026-03-03T11:14:05.044Z monthly 0.8 @@ -9587,7 +9776,7 @@ https://www.rfc1437.de/2011/11/10/dart-structured-web-programming/ - 2026-03-03T11:14:08.000Z + 2026-03-03T11:14:08.391Z monthly 0.8 @@ -9596,7 +9785,7 @@ https://www.rfc1437.de/2011/11/10/newspeak-c2-bb-the-newspeak-programming-language/ - 2026-03-03T11:14:11.000Z + 2026-03-03T11:14:11.704Z monthly 0.8 @@ -9605,7 +9794,7 @@ https://www.rfc1437.de/2011/11/10/radius-limited-searching-with-the-orm-neogeo-ramblings-with-a-python-twist/ - 2026-03-03T11:14:15.000Z + 2026-03-03T11:14:15.103Z monthly 0.8 @@ -9614,7 +9803,7 @@ https://www.rfc1437.de/2011/11/09/pixelmator-2/ - 2026-03-03T11:14:18.000Z + 2026-03-03T11:14:18.431Z monthly 0.8 @@ -9623,7 +9812,7 @@ https://www.rfc1437.de/2011/11/08/lego-universe-game-help-lego-universe/ - 2026-03-03T11:14:21.000Z + 2026-03-03T11:14:21.780Z monthly 0.8 @@ -9632,7 +9821,7 @@ https://www.rfc1437.de/2011/11/08/kodak-sells-image-sensor-solutions-business-digital-photography-review/ - 2026-03-03T11:14:25.000Z + 2026-03-03T11:14:25.100Z monthly 0.8 @@ -9641,7 +9830,7 @@ https://www.rfc1437.de/2011/11/07/pinax/ - 2026-03-03T11:14:28.000Z + 2026-03-03T11:14:28.440Z monthly 0.8 @@ -9650,7 +9839,7 @@ https://www.rfc1437.de/2011/11/07/panasonic-systemkamera-gx1-mit-dreikern-bildprozessor-golem-de/ - 2026-03-03T11:14:32.000Z + 2026-03-03T11:14:32.102Z monthly 0.8 @@ -9659,7 +9848,7 @@ https://www.rfc1437.de/2011/11/01/herbstspaziergang/ - 2026-03-03T11:14:35.000Z + 2026-03-03T11:14:35.442Z monthly 0.8 @@ -9668,7 +9857,7 @@ https://www.rfc1437.de/2011/11/01/new55-film/ - 2026-03-03T11:14:38.000Z + 2026-03-03T11:14:38.782Z monthly 0.8 @@ -9677,7 +9866,7 @@ https://www.rfc1437.de/2011/10/31/pixelmator/ - 2026-03-03T11:14:42.000Z + 2026-03-03T11:14:42.112Z monthly 0.8 @@ -9686,7 +9875,7 @@ https://www.rfc1437.de/2011/10/31/und-mal-wieder-ein-hamburg-besuch/ - 2026-03-03T11:14:45.000Z + 2026-03-03T11:14:45.466Z monthly 0.8 @@ -9695,7 +9884,7 @@ https://www.rfc1437.de/2011/10/28/adobe-carousel-mini-lightroom-fur-iphone-und-ipad-verfugbar-golem-de/ - 2026-03-03T11:14:49.000Z + 2026-03-03T11:14:49.105Z monthly 0.8 @@ -9704,7 +9893,7 @@ https://www.rfc1437.de/2011/10/27/codify-e2-80-93-ipad/ - 2026-03-03T11:14:52.000Z + 2026-03-03T11:14:52.459Z monthly 0.8 @@ -9713,7 +9902,7 @@ https://www.rfc1437.de/2011/10/26/ccc-chaos-computer-club-analysiert-aktuelle-version-des-staatstrojaners/ - 2026-03-03T11:14:56.000Z + 2026-03-03T11:14:56.114Z monthly 0.8 @@ -9722,7 +9911,7 @@ https://www.rfc1437.de/2011/10/25/galileo-computing-apps-entwickeln-fur-iphone-und-ipad-index/ - 2026-03-03T11:14:59.000Z + 2026-03-03T11:14:59.811Z monthly 0.8 @@ -9731,7 +9920,7 @@ https://www.rfc1437.de/2011/10/24/die-c2-a0telekom-c2-a0lernt-c2-a0es-c2-a0nicht-iphone-c2-a04s-c2-a0telekom-c2-a0tauscht-c2-a0sim-karten-mac-i-news-foren/ - 2026-03-03T11:15:04.000Z + 2026-03-03T11:15:04.352Z monthly 0.8 @@ -9740,7 +9929,7 @@ https://www.rfc1437.de/2011/10/24/pixelmator-2-sneak-preview/ - 2026-03-03T11:15:07.000Z + 2026-03-03T11:15:07.697Z monthly 0.8 @@ -9749,7 +9938,7 @@ https://www.rfc1437.de/2011/10/24/mellow-morning-c2-bb-django-facebook-3-2-e2-80-93-simple-image-upload-and-wall-posts/ - 2026-03-03T11:15:11.000Z + 2026-03-03T11:15:11.395Z monthly 0.8 @@ -9758,7 +9947,7 @@ https://www.rfc1437.de/2011/10/24/ach-apple-e2-80-a6-ach-aperture-e2-80-a6-massenbelichtungswaffen-de/ - 2026-03-03T11:15:15.000Z + 2026-03-03T11:15:15.051Z monthly 0.8 @@ -9767,7 +9956,7 @@ https://www.rfc1437.de/2011/10/23/und-es-ward-mal-wieder-send/ - 2026-03-03T11:15:17.000Z + 2026-03-03T11:15:17.732Z monthly 0.8 @@ -9776,7 +9965,7 @@ https://www.rfc1437.de/2011/10/21/wordpress-deutschland-faq-c2-bb-hinweise-zum-datenschutz-beim-einsatz-von-akismet-in-deutschland/ - 2026-03-03T11:15:21.000Z + 2026-03-03T11:15:21.404Z monthly 0.8 @@ -9785,7 +9974,7 @@ https://www.rfc1437.de/2011/10/19/iphone-4s-nutzer-melden-probleme-mit-neuen-sim-karten/ - 2026-03-03T11:15:25.000Z + 2026-03-03T11:15:25.118Z monthly 0.8 @@ -9794,7 +9983,7 @@ https://www.rfc1437.de/2011/10/19/diaspora-e2-80-94-how-diaspora-found-its-tiger-stripe-in-the-midst-of-a-paypal-fiasco/ - 2026-03-03T11:15:28.000Z + 2026-03-03T11:15:28.795Z monthly 0.8 @@ -9803,7 +9992,7 @@ https://www.rfc1437.de/2011/10/18/the-impact-of-apple-e2-80-99s-siri-release-from-the-former-lead-iphone-developer-of-siri/ - 2026-03-03T11:15:32.000Z + 2026-03-03T11:15:32.508Z monthly 0.8 @@ -9812,7 +10001,7 @@ https://www.rfc1437.de/2011/10/18/mojolicious-perl-real-time-web-framework/ - 2026-03-03T11:15:35.000Z + 2026-03-03T11:15:35.539Z monthly 0.8 @@ -9821,7 +10010,7 @@ https://www.rfc1437.de/2011/10/17/vim-orgmode-text-outlining-and-task-management-for-vim-based-on-emacs-org-mode-vim-online/ - 2026-03-03T11:15:39.000Z + 2026-03-03T11:15:39.257Z monthly 0.8 @@ -9830,7 +10019,7 @@ https://www.rfc1437.de/2011/10/17/airprint-activator-v2-0-c2-ab-netputing/ - 2026-03-03T11:15:42.000Z + 2026-03-03T11:15:42.649Z monthly 0.8 @@ -9839,7 +10028,7 @@ https://www.rfc1437.de/2011/10/17/john-lee-hooker-jr-im-hot-jazz-club/ - 2026-03-03T11:15:45.000Z + 2026-03-03T11:15:45.689Z monthly 0.8 @@ -9848,7 +10037,7 @@ https://www.rfc1437.de/2011/10/15/about-weavrs/ - 2026-03-03T11:15:49.000Z + 2026-03-03T11:15:49.424Z monthly 0.8 @@ -9857,7 +10046,7 @@ https://www.rfc1437.de/2011/10/15/textastic-e2-80-93-syntax-highlighting-text-editor-ftp-sftp-dropbox-e2-80-93-for-ipad/ - 2026-03-03T11:15:52.000Z + 2026-03-03T11:15:52.456Z monthly 0.8 @@ -9866,7 +10055,7 @@ https://www.rfc1437.de/2011/10/15/python-math-python-for-iphoneipadipod-touch/ - 2026-03-03T11:15:55.000Z + 2026-03-03T11:15:55.901Z monthly 0.8 @@ -9875,7 +10064,7 @@ https://www.rfc1437.de/2011/10/14/neulich-auf-flickr-schwarzweis-ausgabe/ - 2026-03-03T11:15:58.000Z + 2026-03-03T11:15:58.942Z monthly 0.8 @@ -9884,7 +10073,7 @@ https://www.rfc1437.de/2011/10/14/neulich-auf-flickr-6/ - 2026-03-03T11:16:02.000Z + 2026-03-03T11:16:02.007Z monthly 0.8 @@ -9893,7 +10082,7 @@ https://www.rfc1437.de/2011/10/14/throwable-panoramic-ball-camera-jonas-pfeil/ - 2026-03-03T11:16:05.000Z + 2026-03-03T11:16:05.113Z monthly 0.8 @@ -9902,7 +10091,7 @@ https://www.rfc1437.de/2011/10/14/diaspora-advanced-sharer/ - 2026-03-03T11:16:08.000Z + 2026-03-03T11:16:08.187Z monthly 0.8 @@ -9911,7 +10100,7 @@ https://www.rfc1437.de/2011/10/14/cleaning-e2-80-a6-e2-80-93-marco-org/ - 2026-03-03T11:16:11.000Z + 2026-03-03T11:16:11.707Z monthly 0.8 @@ -9920,7 +10109,7 @@ https://www.rfc1437.de/2011/10/12/bundestrojaner-artikel-sammlung-farlion-inside/ - 2026-03-03T11:16:15.000Z + 2026-03-03T11:16:15.498Z monthly 0.8 @@ -9929,7 +10118,7 @@ https://www.rfc1437.de/2011/10/12/service-to-share-on-any-diaspora-pod-basshero-org/ - 2026-03-03T11:16:19.000Z + 2026-03-03T11:16:19.351Z monthly 0.8 @@ -9938,7 +10127,7 @@ https://www.rfc1437.de/2011/10/11/how-to-speed-up-the-android-emulator-by-up-to-400-nuxeo-developers-blog/ - 2026-03-03T11:16:23.000Z + 2026-03-03T11:16:23.135Z monthly 0.8 @@ -9947,7 +10136,7 @@ https://www.rfc1437.de/2011/10/11/a-lesser-photographer-a-manifesto-a-lesser-photographer/ - 2026-03-03T11:16:26.000Z + 2026-03-03T11:16:26.972Z monthly 0.8 @@ -9956,7 +10145,7 @@ https://www.rfc1437.de/2011/10/11/staatstrojaner-auch-in-nrw-wdr-2-der-sender/ - 2026-03-03T11:16:30.000Z + 2026-03-03T11:16:30.806Z monthly 0.8 @@ -9965,7 +10154,7 @@ https://www.rfc1437.de/2011/10/11/kodak-said-to-weigh-bankruptcy-filing-to-clear-path-for-selling-patents-bloomberg/ - 2026-03-03T11:16:34.000Z + 2026-03-03T11:16:34.634Z monthly 0.8 @@ -9974,7 +10163,7 @@ https://www.rfc1437.de/2011/10/10/ricoh-gxr-a12-field-report/ - 2026-03-03T11:16:38.000Z + 2026-03-03T11:16:38.455Z monthly 0.8 @@ -9983,7 +10172,7 @@ https://www.rfc1437.de/2011/10/10/fujifilm-finepix-x10/ - 2026-03-03T11:16:42.000Z + 2026-03-03T11:16:42.307Z monthly 0.8 @@ -9992,7 +10181,7 @@ https://www.rfc1437.de/2011/10/09/bundestrojaner-die-privaten-hinter-dem-bundestrojaner-politik-c2-a0-frankfurter-rundschau/ - 2026-03-03T11:16:46.000Z + 2026-03-03T11:16:46.491Z monthly 0.8 @@ -10001,7 +10190,7 @@ https://www.rfc1437.de/2011/10/09/twitter-gets-sued-for-letting-famous-people-interact-online-techcrunch/ - 2026-03-03T11:16:50.000Z + 2026-03-03T11:16:50.058Z monthly 0.8 @@ -10010,7 +10199,7 @@ https://www.rfc1437.de/2011/10/09/supercollider-c2-bb-about/ - 2026-03-03T11:16:52.000Z + 2026-03-03T11:16:52.876Z monthly 0.8 @@ -10019,7 +10208,7 @@ https://www.rfc1437.de/2011/10/09/home-overtone/ - 2026-03-03T11:16:56.000Z + 2026-03-03T11:16:56.017Z monthly 0.8 @@ -10028,7 +10217,7 @@ https://www.rfc1437.de/2011/10/09/henri-cartier-bresson-adam-marelli-photo/ - 2026-03-03T11:16:59.000Z + 2026-03-03T11:16:59.182Z monthly 0.8 @@ -10037,7 +10226,7 @@ https://www.rfc1437.de/2011/10/09/chaos-computer-club-der-deutsche-staatstrojaner-wurde-geknackt-aktuell-faz/ - 2026-03-03T11:17:03.000Z + 2026-03-03T11:17:03.094Z monthly 0.8 @@ -10046,7 +10235,7 @@ https://www.rfc1437.de/2011/10/07/zeitzonen-tz-datenbank-wegen-klage-abgeschaltet-golem-de/ - 2026-03-03T11:17:06.000Z + 2026-03-03T11:17:06.623Z monthly 0.8 @@ -10055,7 +10244,7 @@ https://www.rfc1437.de/2011/10/07/oryx-editor-web-based-graphical-business-process-editor-google-project-hosting/ - 2026-03-03T11:17:09.000Z + 2026-03-03T11:17:09.863Z monthly 0.8 @@ -10064,7 +10253,7 @@ https://www.rfc1437.de/2011/10/06/gulasch-ungarische-art/ - 2026-03-03T11:17:14.000Z + 2026-03-03T11:17:14.167Z monthly 0.8 @@ -10073,7 +10262,7 @@ https://www.rfc1437.de/2011/10/05/virtualenvwrapper-2-10-1-e2-80-94-virtualenvwrapper-v2-10-1-documentation/ - 2026-03-03T11:17:18.000Z + 2026-03-03T11:17:18.191Z monthly 0.8 @@ -10082,7 +10271,7 @@ https://www.rfc1437.de/2011/10/05/straight-talk-on-event-loops/ - 2026-03-03T11:17:22.000Z + 2026-03-03T11:17:22.238Z monthly 0.8 @@ -10091,7 +10280,7 @@ https://www.rfc1437.de/2011/10/04/glass-cover-replacement-for-sony-nex-lcd-screen-photoclubalpha/ - 2026-03-03T11:17:26.000Z + 2026-03-03T11:17:26.431Z monthly 0.8 @@ -10100,7 +10289,7 @@ https://www.rfc1437.de/2011/10/04/ausflug-nach-norderney/ - 2026-03-03T11:17:30.000Z + 2026-03-03T11:17:30.219Z monthly 0.8 @@ -10109,7 +10298,7 @@ https://www.rfc1437.de/2011/10/02/benefizkonzert-hungerhilfe-ostafrika/ - 2026-03-03T11:17:33.000Z + 2026-03-03T11:17:33.594Z monthly 0.8 @@ -10118,7 +10307,7 @@ https://www.rfc1437.de/2011/10/02/the-olympus-45-1-8-micro-43-lens-review-by-steve-huff-steve-huff-photos/ - 2026-03-03T11:17:38.000Z + 2026-03-03T11:17:38.134Z monthly 0.8 @@ -10127,7 +10316,7 @@ https://www.rfc1437.de/2011/10/02/innovation-starvation-world-policy-institute/ - 2026-03-07T21:06:42.000Z + 2026-03-07T21:06:42.587Z monthly 0.8 @@ -10136,7 +10325,7 @@ https://www.rfc1437.de/2011/10/02/mein-profil-auf-meinem-eigenen-diaspora-pod/ - 2026-03-03T11:17:45.000Z + 2026-03-03T11:17:45.904Z monthly 0.8 @@ -10145,7 +10334,7 @@ https://www.rfc1437.de/2011/09/30/eindeutig-identifizierbar-nato-mochte-individuelle-signatur-fur-jeden-internetnutzer-golem-de/ - 2026-03-03T11:17:50.000Z + 2026-03-03T11:17:50.123Z monthly 0.8 @@ -10154,7 +10343,7 @@ https://www.rfc1437.de/2011/09/30/datenschutzer-social-plugins-in-deutschland-nicht-zulassig-golem-de/ - 2026-03-03T11:17:54.000Z + 2026-03-03T11:17:54.381Z monthly 0.8 @@ -10163,7 +10352,7 @@ https://www.rfc1437.de/2011/09/30/dust/ - 2026-03-03T11:17:57.000Z + 2026-03-03T11:17:57.547Z monthly 0.8 @@ -10172,7 +10361,7 @@ https://www.rfc1437.de/2011/09/30/kanso-framework/ - 2026-03-03T11:18:01.000Z + 2026-03-03T11:18:01.514Z monthly 0.8 @@ -10181,7 +10370,7 @@ https://www.rfc1437.de/2011/09/30/statsmodels-statistics-in-python-e2-80-94-statsmodels-v0-3-0-documentation/ - 2026-03-03T11:18:04.000Z + 2026-03-03T11:18:04.663Z monthly 0.8 @@ -10190,7 +10379,7 @@ https://www.rfc1437.de/2011/09/30/pandas-powerful-python-data-analysis-toolkit-e2-80-94-pandas-v0-4-1-documentation/ - 2026-03-03T11:18:08.000Z + 2026-03-03T11:18:08.613Z monthly 0.8 @@ -10199,7 +10388,7 @@ https://www.rfc1437.de/2011/09/30/websites-how-do-i-suppress-the-address-bar-in-mobile-safari-apple-stack-exchange/ - 2026-03-03T11:18:12.000Z + 2026-03-03T11:18:12.657Z monthly 0.8 @@ -10208,7 +10397,7 @@ https://www.rfc1437.de/2011/09/30/algorithm-is-not-a-four-letter-word/ - 2026-03-03T11:18:16.000Z + 2026-03-03T11:18:16.290Z monthly 0.8 @@ -10217,7 +10406,7 @@ https://www.rfc1437.de/2011/09/28/trunkdesk-mac-desktop-companion-for-trunk-notes-google-project-hosting/ - 2026-03-03T11:18:20.000Z + 2026-03-03T11:18:20.293Z monthly 0.8 @@ -10226,7 +10415,7 @@ https://www.rfc1437.de/2011/09/28/firewire-attacks-against-mac-os-lion-filevault-2-encryption-c2-bb-frameloss/ - 2026-03-03T11:18:24.000Z + 2026-03-03T11:18:24.788Z monthly 0.8 @@ -10235,7 +10424,7 @@ https://www.rfc1437.de/2011/09/28/face-off-facebook-bezeichnet-personliche-daten-als-geistiges-eigentum-g-gutjahrs-blog/ - 2026-03-03T11:18:29.000Z + 2026-03-03T11:18:29.283Z monthly 0.8 @@ -10244,7 +10433,7 @@ https://www.rfc1437.de/2011/09/28/psycopg2-ctypes-github/ - 2026-03-03T11:18:32.000Z + 2026-03-03T11:18:32.914Z monthly 0.8 @@ -10253,7 +10442,7 @@ https://www.rfc1437.de/2011/09/28/django-tastypie-github/ - 2026-03-03T11:18:36.000Z + 2026-03-03T11:18:36.974Z monthly 0.8 @@ -10262,7 +10451,7 @@ https://www.rfc1437.de/2011/09/28/flask-peewee-github/ - 2026-03-03T11:18:42.000Z + 2026-03-03T11:18:42.136Z monthly 0.8 @@ -10271,7 +10460,7 @@ https://www.rfc1437.de/2011/09/28/diebold-voting-machines-can-be-hacked-by-remote-control-2012-elections-salon-com/ - 2026-03-03T11:18:46.000Z + 2026-03-03T11:18:46.361Z monthly 0.8 @@ -10280,7 +10469,7 @@ https://www.rfc1437.de/2011/09/27/poormanstestdox-pmip-poor-mans-ide-plugin-pmip-google-project-hosting/ - 2026-03-03T11:18:49.000Z + 2026-03-03T11:18:49.959Z monthly 0.8 @@ -10289,7 +10478,7 @@ https://www.rfc1437.de/2011/09/27/python-for-facebook-welcome/ - 2026-03-03T11:18:53.000Z + 2026-03-03T11:18:53.650Z monthly 0.8 @@ -10298,7 +10487,7 @@ https://www.rfc1437.de/2011/09/26/startssl-and-nginx/ - 2026-03-03T11:18:57.000Z + 2026-03-03T11:18:57.861Z monthly 0.8 @@ -10307,7 +10496,7 @@ https://www.rfc1437.de/2011/09/26/launchpad-control-chaosspace-de/ - 2026-03-03T11:19:01.000Z + 2026-03-03T11:19:01.517Z monthly 0.8 @@ -10316,7 +10505,7 @@ https://www.rfc1437.de/2011/09/25/piroschki-wie-von-schwiegermuttern/ - 2026-03-03T11:19:06.000Z + 2026-03-03T11:19:06.004Z monthly 0.8 @@ -10325,7 +10514,7 @@ https://www.rfc1437.de/2011/09/23/facebookpython-sdk-github/ - 2026-03-03T11:19:09.000Z + 2026-03-03T11:19:09.323Z monthly 0.8 @@ -10334,7 +10523,7 @@ https://www.rfc1437.de/2011/09/23/django-facebook-2-0-e2-80-93-integrating-facebook/ - 2026-03-03T11:19:13.000Z + 2026-03-03T11:19:13.860Z monthly 0.8 @@ -10343,7 +10532,7 @@ https://www.rfc1437.de/2011/09/23/photosmith-the-ipad-mobile-companion-for-adobe-lightroom-latest-news-challenges-and-progress-from-the-developers/ - 2026-03-03T11:19:17.000Z + 2026-03-03T11:19:17.948Z monthly 0.8 @@ -10352,7 +10541,7 @@ https://www.rfc1437.de/2011/09/23/adobe-lightroom-customising-camera-defaults/ - 2026-03-03T11:19:21.000Z + 2026-03-03T11:19:21.655Z monthly 0.8 @@ -10361,7 +10550,7 @@ https://www.rfc1437.de/2011/09/22/dalienkorso-in-legden/ - 2026-03-03T11:19:25.000Z + 2026-03-03T11:19:25.891Z monthly 0.8 @@ -10370,7 +10559,7 @@ https://www.rfc1437.de/2011/09/21/nathanmarzstorm-github/ - 2026-03-03T11:19:29.000Z + 2026-03-03T11:19:29.981Z monthly 0.8 @@ -10379,7 +10568,7 @@ https://www.rfc1437.de/2011/09/21/nikon-announces-j1-and-v1-mirrorless-cameras-and-new-lens-system/ - 2026-03-03T11:19:34.000Z + 2026-03-03T11:19:34.482Z monthly 0.8 @@ -10388,7 +10577,7 @@ https://www.rfc1437.de/2011/09/19/pleac-objective-caml/ - 2026-03-03T11:19:38.000Z + 2026-03-03T11:19:38.176Z monthly 0.8 @@ -10397,7 +10586,7 @@ https://www.rfc1437.de/2011/09/19/sony-nex-7-first-impressions/ - 2026-03-03T11:19:42.000Z + 2026-03-03T11:19:42.541Z monthly 0.8 @@ -10406,7 +10595,7 @@ https://www.rfc1437.de/2011/09/16/offline-web-applications-dive-into-html5/ - 2026-03-03T11:19:46.000Z + 2026-03-03T11:19:46.005Z monthly 0.8 @@ -10415,7 +10604,7 @@ https://www.rfc1437.de/2011/09/15/ricoh-gr-digital-iv-preview-1-introduction-digital-photography-review/ - 2026-03-03T11:19:50.000Z + 2026-03-03T11:19:50.470Z monthly 0.8 @@ -10424,7 +10613,7 @@ https://www.rfc1437.de/2011/09/14/albertzpyjector-github/ - 2026-03-03T11:19:54.000Z + 2026-03-03T11:19:54.773Z monthly 0.8 @@ -10433,7 +10622,7 @@ https://www.rfc1437.de/2011/09/14/kritik-an-notdienst-organisation-c2-a0notdienst-schickte-augenkranke-37-kilometer-aufs-land-c2-a0-c2-a0-munstersche-zeitung/ - 2026-03-03T11:19:59.000Z + 2026-03-03T11:19:59.652Z monthly 0.8 @@ -10442,7 +10631,7 @@ https://www.rfc1437.de/2011/09/14/euro-krise-china-bietet-hilfe-an-und-will-gegenleistungen-tagesschau-de/ - 2026-03-03T11:20:03.000Z + 2026-03-03T11:20:03.783Z monthly 0.8 @@ -10451,7 +10640,7 @@ https://www.rfc1437.de/2011/09/11/bremen/ - 2026-03-03T11:20:07.000Z + 2026-03-03T11:20:07.455Z monthly 0.8 @@ -10460,7 +10649,7 @@ https://www.rfc1437.de/2011/09/08/neulich-auf-flickr-5/ - 2026-03-03T11:20:10.000Z + 2026-03-03T11:20:10.712Z monthly 0.8 @@ -10469,7 +10658,7 @@ https://www.rfc1437.de/2011/09/08/adobe-announces-carousel-cloud-based-image-service-digital-photography-review/ - 2026-03-03T11:20:14.000Z + 2026-03-03T11:20:14.889Z monthly 0.8 @@ -10478,7 +10667,7 @@ https://www.rfc1437.de/2011/09/07/wordpress-e2-80-ba-2-click-social-media-buttons-c2-ab-wordpress-plugins/ - 2026-03-03T11:20:18.000Z + 2026-03-03T11:20:18.549Z monthly 0.8 @@ -10487,7 +10676,7 @@ https://www.rfc1437.de/2011/09/04/wordpress-e2-80-ba-social-opt-in-c2-ab-wordpress-plugins/ - 2026-03-03T11:20:23.000Z + 2026-03-03T11:20:23.070Z monthly 0.8 @@ -10496,7 +10685,7 @@ https://www.rfc1437.de/2011/09/04/wir-haben-geheiratet/ - 2026-03-03T11:20:26.000Z + 2026-03-03T11:20:26.608Z monthly 0.8 @@ -10505,7 +10694,7 @@ https://www.rfc1437.de/2011/08/31/sco-verliert-endgultig-gegen-novell/ - 2026-03-03T11:20:30.000Z + 2026-03-03T11:20:30.746Z monthly 0.8 @@ -10514,7 +10703,7 @@ https://www.rfc1437.de/2011/08/26/panasonic-launches-lumix-g-x-vario-pz-14-42mm-f3-5-5-6-ois-pancake-digital-photography-review/ - 2026-03-03T11:20:35.000Z + 2026-03-03T11:20:35.639Z monthly 0.8 @@ -10523,7 +10712,7 @@ https://www.rfc1437.de/2011/08/25/rote-grutze/ - 2026-03-03T11:20:40.000Z + 2026-03-03T11:20:40.219Z monthly 0.8 @@ -10532,7 +10721,7 @@ https://www.rfc1437.de/2011/08/24/sony-august-2011-new-products/ - 2026-03-03T11:20:44.000Z + 2026-03-03T11:20:44.420Z monthly 0.8 @@ -10541,7 +10730,7 @@ https://www.rfc1437.de/2011/08/23/pypy-status-blog-we-need-software-transactional-memory/ - 2026-03-03T11:20:48.000Z + 2026-03-03T11:20:48.740Z monthly 0.8 @@ -10550,7 +10739,7 @@ https://www.rfc1437.de/2011/08/23/setup-services-on-your-pod-github/ - 2026-03-03T11:20:52.000Z + 2026-03-03T11:20:52.899Z monthly 0.8 @@ -10559,7 +10748,7 @@ https://www.rfc1437.de/2011/08/23/why-im-not-on-google-plus-charlies-diary/ - 2026-03-03T11:20:56.000Z + 2026-03-03T11:20:56.635Z monthly 0.8 @@ -10568,7 +10757,7 @@ https://www.rfc1437.de/2011/08/22/luban-a-generic-e2-80-9clanguage-e2-80-9d-for-creating-user-interface-e2-80-94-luban-v0-2-documentation/ - 2026-03-03T11:21:00.000Z + 2026-03-03T11:21:00.694Z monthly 0.8 @@ -10577,7 +10766,7 @@ https://www.rfc1437.de/2011/08/21/mystische-kreaturen/ - 2026-03-03T11:21:03.000Z + 2026-03-03T11:21:03.964Z monthly 0.8 @@ -10586,7 +10775,7 @@ https://www.rfc1437.de/2011/08/21/sony-nex-7-full-specs-and-images-photo-rumors/ - 2026-03-03T11:21:08.000Z + 2026-03-03T11:21:08.522Z monthly 0.8 @@ -10595,7 +10784,7 @@ https://www.rfc1437.de/2011/08/20/nachtflohmarkt/ - 2026-03-03T11:21:11.000Z + 2026-03-03T11:21:11.782Z monthly 0.8 @@ -10604,7 +10793,7 @@ https://www.rfc1437.de/2011/08/19/pypy-status-blog-pypy-1-6-kickass-panda/ - 2026-03-03T11:21:16.000Z + 2026-03-03T11:21:16.405Z monthly 0.8 @@ -10613,7 +10802,7 @@ https://www.rfc1437.de/2011/08/19/markt-in-munster/ - 2026-03-03T11:21:20.000Z + 2026-03-03T11:21:20.091Z monthly 0.8 @@ -10622,7 +10811,7 @@ https://www.rfc1437.de/2011/08/18/breaking-hp-makes-big-shift-on-webos-exiting-hardware-business-ina-fried-mobile-allthingsd/ - 2026-03-03T11:21:24.000Z + 2026-03-03T11:21:24.405Z monthly 0.8 @@ -10631,7 +10820,7 @@ https://www.rfc1437.de/2011/08/18/the-python-standard-library-by-example-doug-hellmann/ - 2026-03-03T11:21:29.000Z + 2026-03-03T11:21:29.559Z monthly 0.8 @@ -10640,7 +10829,7 @@ https://www.rfc1437.de/2011/08/18/python-and-fileinput-all-this/ - 2026-03-03T11:21:33.000Z + 2026-03-03T11:21:33.527Z monthly 0.8 @@ -10649,7 +10838,7 @@ https://www.rfc1437.de/2011/08/17/libre-home-tools-gnat-gpl-for-lego-mindstorms-nxt-e2-80-93-ravenscar-edition/ - 2026-03-03T11:21:37.000Z + 2026-03-03T11:21:37.434Z monthly 0.8 @@ -10658,7 +10847,7 @@ https://www.rfc1437.de/2011/08/17/cross-domain-communications-with-jsonp-part-1-combine-jsonp-and-jquery-to-quickly-build-powerful-mashups/ - 2026-03-03T11:21:42.000Z + 2026-03-03T11:21:42.265Z monthly 0.8 @@ -10667,7 +10856,7 @@ https://www.rfc1437.de/2011/08/17/ipdb/ - 2026-03-03T11:21:46.000Z + 2026-03-03T11:21:46.712Z monthly 0.8 @@ -10676,7 +10865,7 @@ https://www.rfc1437.de/2011/08/15/official-google-blog-supercharging-android-google-to-acquire-motorola-mobility/ - 2026-03-03T11:21:51.000Z + 2026-03-03T11:21:51.611Z monthly 0.8 @@ -10685,7 +10874,7 @@ https://www.rfc1437.de/2011/08/15/schneier-on-security-new-undeletable-web-cookie/ - 2026-03-03T11:21:56.000Z + 2026-03-03T11:21:56.409Z monthly 0.8 @@ -10703,7 +10892,7 @@ https://www.rfc1437.de/2011/08/12/rad2py-rapid-aplication-development-platform-for-python-google-project-hosting/ - 2026-03-03T11:22:06.000Z + 2026-03-03T11:22:06.295Z monthly 0.8 @@ -10712,7 +10901,7 @@ https://www.rfc1437.de/2011/08/12/rmod-fuel/ - 2026-03-03T11:22:10.000Z + 2026-03-03T11:22:10.097Z monthly 0.8 @@ -10721,7 +10910,7 @@ https://www.rfc1437.de/2011/08/12/sandstonedb-simple-activerecord-style-persistence-in-squeak/ - 2026-03-03T11:22:14.000Z + 2026-03-03T11:22:14.544Z monthly 0.8 @@ -10730,7 +10919,7 @@ https://www.rfc1437.de/2011/08/12/coral-e2-80-94-pharo-smalltalk-for-scripting/ - 2026-03-03T11:22:18.000Z + 2026-03-03T11:22:18.848Z monthly 0.8 @@ -10739,7 +10928,7 @@ https://www.rfc1437.de/2011/08/12/tode-tode-the-object-centric-development-environment-google-project-hosting/ - 2026-03-03T11:22:23.000Z + 2026-03-03T11:22:23.230Z monthly 0.8 @@ -10748,7 +10937,7 @@ https://www.rfc1437.de/2011/08/10/couchdb-die-definitive-referenz/ - 2026-03-03T11:22:27.000Z + 2026-03-03T11:22:27.857Z monthly 0.8 @@ -10757,7 +10946,7 @@ https://www.rfc1437.de/2011/08/10/overview-installable-web-apps-google-code/ - 2026-03-03T11:22:32.000Z + 2026-03-03T11:22:32.221Z monthly 0.8 @@ -10766,7 +10955,7 @@ https://www.rfc1437.de/2011/08/10/privacy-fail-how-facebook-steals-your-friends-phone-numbers-kurt-von-moos-com/ - 2026-03-03T11:22:36.000Z + 2026-03-03T11:22:36.584Z monthly 0.8 @@ -10775,7 +10964,7 @@ https://www.rfc1437.de/2011/08/10/kindle-cloud-reader/ - 2026-03-03T11:22:40.000Z + 2026-03-03T11:22:40.419Z monthly 0.8 @@ -10784,7 +10973,7 @@ https://www.rfc1437.de/2011/08/09/mutlevim-safariextension-github/ - 2026-03-03T11:22:44.000Z + 2026-03-03T11:22:44.787Z monthly 0.8 @@ -10793,7 +10982,7 @@ https://www.rfc1437.de/2011/08/09/vimlike-onsafari-safari-keybind-changes-like-vim-google-project-hosting/ - 2026-03-03T11:22:49.000Z + 2026-03-03T11:22:49.089Z monthly 0.8 @@ -10802,7 +10991,7 @@ https://www.rfc1437.de/2011/08/09/update-on-uikit-lighthouse-platform/ - 2026-03-03T11:22:54.000Z + 2026-03-03T11:22:54.114Z monthly 0.8 @@ -10811,7 +11000,7 @@ https://www.rfc1437.de/2011/08/09/time-machine-frequently-asked-questions-30-what-are-local-snapshots/ - 2026-03-03T11:22:59.000Z + 2026-03-03T11:22:59.104Z monthly 0.8 @@ -10820,7 +11009,7 @@ https://www.rfc1437.de/2011/08/08/telefontarife-konnen-einen-echt-den-spas-verderben/ - 2026-03-03T11:23:04.000Z + 2026-03-03T11:23:04.020Z monthly 0.8 @@ -10829,7 +11018,7 @@ https://www.rfc1437.de/2011/08/08/map-tunneling-tool/ - 2026-03-03T11:23:07.000Z + 2026-03-03T11:23:07.931Z monthly 0.8 @@ -10838,7 +11027,7 @@ https://www.rfc1437.de/2011/08/08/sankra-software-disable-os-x-lion-resume-per-application/ - 2026-03-03T11:23:12.000Z + 2026-03-03T11:23:12.878Z monthly 0.8 @@ -10847,7 +11036,7 @@ https://www.rfc1437.de/2011/08/08/modula-3-resource-page/ - 2026-03-03T11:23:17.000Z + 2026-03-03T11:23:17.222Z monthly 0.8 @@ -10856,7 +11045,7 @@ https://www.rfc1437.de/2011/08/08/magpie-guide-welcome/ - 2026-03-03T11:23:21.000Z + 2026-03-03T11:23:21.560Z monthly 0.8 @@ -10865,7 +11054,7 @@ https://www.rfc1437.de/2011/08/07/strasenfest-hammer-strase-2011/ - 2026-03-03T11:23:25.000Z + 2026-03-03T11:23:25.064Z monthly 0.8 @@ -10874,7 +11063,7 @@ https://www.rfc1437.de/2011/08/07/internet-law-c2-bb-friedrich-uns-graut-vor-dir/ - 2026-03-03T11:23:28.000Z + 2026-03-03T11:23:28.960Z monthly 0.8 @@ -10883,7 +11072,7 @@ https://www.rfc1437.de/2011/08/07/the-useless-language/ - 2026-03-03T11:23:33.000Z + 2026-03-03T11:23:33.700Z monthly 0.8 @@ -10892,7 +11081,7 @@ https://www.rfc1437.de/2011/08/06/groklaw-a-brief-explanation-of-microsofts-anti-google-patent-fud-by-pj/ - 2026-03-03T11:23:38.000Z + 2026-03-03T11:23:38.419Z monthly 0.8 @@ -10901,7 +11090,7 @@ https://www.rfc1437.de/2011/08/05/ricoh-gxr-mount-a12-preview/ - 2026-03-03T11:23:43.000Z + 2026-03-03T11:23:43.255Z monthly 0.8 @@ -10910,7 +11099,7 @@ https://www.rfc1437.de/2011/08/03/xcode4-objective-pascal-available-files/ - 2026-03-03T11:23:47.000Z + 2026-03-03T11:23:47.718Z monthly 0.8 @@ -10919,7 +11108,7 @@ https://www.rfc1437.de/2011/08/03/extpascal-ext-js-wrapper-for-object-pascal-google-project-hosting/ - 2026-03-03T11:23:51.000Z + 2026-03-03T11:23:51.578Z monthly 0.8 @@ -10928,7 +11117,7 @@ https://www.rfc1437.de/2011/08/03/sausage-js-examples-the-core-api/ - 2026-03-03T11:23:55.000Z + 2026-03-03T11:23:55.916Z monthly 0.8 @@ -10937,7 +11126,7 @@ https://www.rfc1437.de/2011/08/03/okito-net-e2-80-94-on-sproutcore-2-0/ - 2026-03-03T11:24:00.000Z + 2026-03-03T11:24:00.615Z monthly 0.8 @@ -10946,7 +11135,7 @@ https://www.rfc1437.de/2011/08/03/pascal-script-remobjects-software/ - 2026-03-03T11:24:04.000Z + 2026-03-03T11:24:04.479Z monthly 0.8 @@ -10955,7 +11144,7 @@ https://www.rfc1437.de/2011/08/03/killer-rat-daubs-fur-with-poison-arrow-plant-toxins-life-03-august-2011-new-scientist/ - 2026-03-03T11:24:08.000Z + 2026-03-03T11:24:08.362Z monthly 0.8 @@ -10964,7 +11153,7 @@ https://www.rfc1437.de/2011/08/01/get-started-guide-c2-ab-phonegap/ - 2026-03-03T11:24:12.000Z + 2026-03-03T11:24:12.652Z monthly 0.8 @@ -10973,7 +11162,7 @@ https://www.rfc1437.de/2011/08/01/python-sympy-and-quantum-physics/ - 2026-03-03T11:24:16.000Z + 2026-03-03T11:24:16.960Z monthly 0.8 @@ -10982,7 +11171,7 @@ https://www.rfc1437.de/2011/08/01/blues-jam-im-bunten-vogel/ - 2026-03-03T11:24:21.000Z + 2026-03-03T11:24:21.242Z monthly 0.8 @@ -10991,7 +11180,7 @@ https://www.rfc1437.de/2011/08/01/wsgi-lite/ - 2026-03-03T11:24:25.000Z + 2026-03-03T11:24:25.740Z monthly 0.8 @@ -11000,7 +11189,7 @@ https://www.rfc1437.de/2011/07/31/allergologie-allergene-allergien-allergologisch-allergisch/ - 2026-03-03T11:24:30.000Z + 2026-03-03T11:24:30.064Z monthly 0.8 @@ -11009,7 +11198,7 @@ https://www.rfc1437.de/2011/07/31/pyglet-1-1-3-fails-on-snow-leopard-with-python-2-6-snow-leopards-default-cross-platform-windowing-and-multimedia-library-for-python-google-project-hosting/ - 2026-03-03T11:24:35.000Z + 2026-03-03T11:24:35.298Z monthly 0.8 @@ -11018,7 +11207,7 @@ https://www.rfc1437.de/2011/07/31/innovations-in-c2-a0ipython/ - 2026-03-03T11:24:39.000Z + 2026-03-03T11:24:39.619Z monthly 0.8 @@ -11027,7 +11216,7 @@ https://www.rfc1437.de/2011/07/31/kunst-trifft-kohl/ - 2026-03-03T11:24:43.000Z + 2026-03-03T11:24:43.980Z monthly 0.8 @@ -11036,7 +11225,7 @@ https://www.rfc1437.de/2011/07/29/wsgi-and-the-pluggable-pipe-dream-armin-ronachers-thoughts-and-writings/ - 2026-03-03T11:24:47.000Z + 2026-03-03T11:24:47.829Z monthly 0.8 @@ -11045,7 +11234,7 @@ https://www.rfc1437.de/2011/07/29/gambas-gambas-almost-means-basic/ - 2026-03-03T11:24:52.000Z + 2026-03-03T11:24:52.690Z monthly 0.8 @@ -11054,7 +11243,7 @@ https://www.rfc1437.de/2011/07/29/tl-omnis-omnis-downloads/ - 2026-03-03T11:24:57.000Z + 2026-03-03T11:24:57.052Z monthly 0.8 @@ -11063,7 +11252,7 @@ https://www.rfc1437.de/2011/07/29/lazarus/ - 2026-03-03T11:25:01.000Z + 2026-03-03T11:25:01.835Z monthly 0.8 @@ -11072,7 +11261,7 @@ https://www.rfc1437.de/2011/07/29/hypernext-studio/ - 2026-03-03T11:25:06.000Z + 2026-03-03T11:25:06.108Z monthly 0.8 @@ -11081,7 +11270,7 @@ https://www.rfc1437.de/2011/07/29/whalesong-a-racket-to-javascript-compiler/ - 2026-03-03T11:25:10.000Z + 2026-03-03T11:25:10.417Z monthly 0.8 @@ -11090,7 +11279,7 @@ https://www.rfc1437.de/2011/07/29/webkit-in-pyqt-rendering-web-pages/ - 2026-03-03T11:25:14.000Z + 2026-03-03T11:25:14.773Z monthly 0.8 @@ -11099,7 +11288,7 @@ https://www.rfc1437.de/2011/07/28/anonymous-und-lulzsec-sperrt-eure-paypal-konten-netzpolitik-derstandard-at-e2-80-ba-web/ - 2026-03-03T11:25:19.000Z + 2026-03-03T11:25:19.493Z monthly 0.8 @@ -11108,7 +11297,7 @@ https://www.rfc1437.de/2011/07/27/codemirror/ - 2026-03-03T11:25:23.000Z + 2026-03-03T11:25:23.401Z monthly 0.8 @@ -11117,7 +11306,7 @@ https://www.rfc1437.de/2011/07/27/harbour-project-home/ - 2026-03-03T11:25:27.000Z + 2026-03-03T11:25:27.510Z monthly 0.8 @@ -11126,7 +11315,7 @@ https://www.rfc1437.de/2011/07/27/orange-data-mining-fruitful-fun/ - 2026-03-03T11:25:31.000Z + 2026-03-03T11:25:31.899Z monthly 0.8 @@ -11135,7 +11324,7 @@ https://www.rfc1437.de/2011/07/27/sage-open-source-mathematics-software/ - 2026-03-03T11:25:36.000Z + 2026-03-03T11:25:36.392Z monthly 0.8 @@ -11144,7 +11333,7 @@ https://www.rfc1437.de/2011/07/27/the-xavisys-wordpress-plugin-framework-xavisys/ - 2026-03-03T11:25:40.000Z + 2026-03-03T11:25:40.564Z monthly 0.8 @@ -11153,7 +11342,7 @@ https://www.rfc1437.de/2011/07/27/buddypress-org/ - 2026-03-03T11:25:45.000Z + 2026-03-03T11:25:45.711Z monthly 0.8 @@ -11162,7 +11351,7 @@ https://www.rfc1437.de/2011/07/27/on-safari/ - 2026-03-03T11:25:49.000Z + 2026-03-03T11:25:49.517Z monthly 0.8 @@ -11171,7 +11360,7 @@ https://www.rfc1437.de/2011/07/27/el34-the-home-of-eddie-about/ - 2026-03-03T11:25:54.000Z + 2026-03-03T11:25:54.307Z monthly 0.8 @@ -11180,7 +11369,7 @@ https://www.rfc1437.de/2011/07/27/ultimatum-paypal-will-in-deutschland-kuba-embargo-durchdrucken-golem-de/ - 2026-03-03T11:25:58.000Z + 2026-03-03T11:25:58.734Z monthly 0.8 @@ -11189,7 +11378,7 @@ https://www.rfc1437.de/2011/07/26/creating-apps-using-applescript-objective-c/ - 2026-03-03T11:26:02.000Z + 2026-03-03T11:26:02.415Z monthly 0.8 @@ -11198,7 +11387,7 @@ https://www.rfc1437.de/2011/07/26/supercard-on-lion/ - 2026-03-03T11:26:06.000Z + 2026-03-03T11:26:06.769Z monthly 0.8 @@ -11207,7 +11396,7 @@ https://www.rfc1437.de/2011/07/26/mac-c2-a0os-c2-a0x-10-7-lion-automation-release-notes/ - 2026-03-03T11:26:11.000Z + 2026-03-03T11:26:11.174Z monthly 0.8 @@ -11216,7 +11405,7 @@ https://www.rfc1437.de/2011/07/25/meedia-meck-pomms-cdu-wirbt-mit-e2-80-9cc-wie-zukunft-e2-80-9d/ - 2026-03-03T11:26:15.000Z + 2026-03-03T11:26:15.547Z monthly 0.8 @@ -11225,7 +11414,7 @@ https://www.rfc1437.de/2011/07/25/trunk-notes-apps-on-the-move/ - 2026-03-03T11:26:20.000Z + 2026-03-03T11:26:20.362Z monthly 0.8 @@ -11234,7 +11423,7 @@ https://www.rfc1437.de/2011/07/25/die-seltsamen-fakten-des-herrn-uhl-mrtopf-de/ - 2026-03-03T11:26:25.000Z + 2026-03-03T11:26:25.884Z monthly 0.8 @@ -11243,7 +11432,7 @@ https://www.rfc1437.de/2011/07/25/xmppflask-e2-80-94-xmppflask-v0-1-documentation/ - 2026-03-03T11:26:30.000Z + 2026-03-03T11:26:30.937Z monthly 0.8 @@ -11252,7 +11441,7 @@ https://www.rfc1437.de/2011/07/25/social-networks-und-meine-nutzung-von-denselben/ - 2026-03-03T11:26:35.000Z + 2026-03-03T11:26:35.760Z monthly 0.8 @@ -11261,7 +11450,7 @@ https://www.rfc1437.de/2011/07/25/flot-attractive-javascript-plotting-for-jquery-google-project-hosting/ - 2026-03-03T11:26:40.000Z + 2026-03-03T11:26:40.329Z monthly 0.8 @@ -11270,7 +11459,7 @@ https://www.rfc1437.de/2011/07/24/evil-is-king/ - 2026-03-03T11:26:45.000Z + 2026-03-03T11:26:45.032Z monthly 0.8 @@ -11279,7 +11468,7 @@ https://www.rfc1437.de/2011/07/24/clojurescript-demo-convex-hull/ - 2026-03-03T11:26:50.000Z + 2026-03-03T11:26:50.104Z monthly 0.8 @@ -11288,7 +11477,7 @@ https://www.rfc1437.de/2011/07/23/flurstucke-2011-generic-vapeur/ - 2026-03-03T11:26:54.000Z + 2026-03-03T11:26:54.744Z monthly 0.8 @@ -11297,7 +11486,7 @@ https://www.rfc1437.de/2011/07/22/first-demonstration-of-time-cloaking-c2-a0-technology-review/ - 2026-03-03T11:26:58.000Z + 2026-03-03T11:26:58.980Z monthly 0.8 @@ -11306,7 +11495,7 @@ https://www.rfc1437.de/2011/07/22/elements/ - 2026-03-03T11:27:02.000Z + 2026-03-03T11:27:02.997Z monthly 0.8 @@ -11315,7 +11504,7 @@ https://www.rfc1437.de/2011/07/22/elemental-integrating-photoshop-elements-with-lightroom/ - 2026-03-03T11:27:06.000Z + 2026-03-03T11:27:06.550Z monthly 0.8 @@ -11324,7 +11513,7 @@ https://www.rfc1437.de/2011/07/20/sharemenot/ - 2026-03-03T11:27:11.000Z + 2026-03-03T11:27:11.020Z monthly 0.8 @@ -11333,7 +11522,7 @@ https://www.rfc1437.de/2011/07/20/pattern-matching-in-python/ - 2026-03-03T11:27:15.000Z + 2026-03-03T11:27:15.962Z monthly 0.8 @@ -11342,7 +11531,7 @@ https://www.rfc1437.de/2011/07/20/bash-on-balls/ - 2026-03-03T11:27:20.000Z + 2026-03-03T11:27:20.826Z monthly 0.8 @@ -11351,7 +11540,7 @@ https://www.rfc1437.de/2011/07/20/faq-kotlin-confluence/ - 2026-03-03T11:27:25.000Z + 2026-03-03T11:27:25.288Z monthly 0.8 @@ -11360,7 +11549,7 @@ https://www.rfc1437.de/2011/07/19/wenig-trauer-um-elektronisches-lohnmeldeverfahren-elena-tagesschau-de/ - 2026-03-03T11:27:30.000Z + 2026-03-03T11:27:30.312Z monthly 0.8 @@ -11369,7 +11558,7 @@ https://www.rfc1437.de/2011/07/19/copiepresse-googles-suchmaschine-zeigt-wieder-belgische-zeitungen-golem-de/ - 2026-03-03T11:27:35.000Z + 2026-03-03T11:27:35.495Z monthly 0.8 @@ -11378,7 +11567,7 @@ https://www.rfc1437.de/2011/07/18/wsgid-when-your-wsgi-app-becomes-a-nix-daemon/ - 2026-03-03T11:27:40.000Z + 2026-03-03T11:27:40.786Z monthly 0.8 @@ -11387,7 +11576,7 @@ https://www.rfc1437.de/2011/07/18/typekit/ - 2026-03-03T11:27:45.000Z + 2026-03-03T11:27:45.489Z monthly 0.8 @@ -11396,7 +11585,7 @@ https://www.rfc1437.de/2011/07/18/elnode-an-emacs-version-of-node-js/ - 2026-03-03T11:27:49.000Z + 2026-03-03T11:27:49.951Z monthly 0.8 @@ -11405,7 +11594,7 @@ https://www.rfc1437.de/2011/07/18/replication-atomicity-and-order-in-distributed-systems/ - 2026-03-03T11:27:54.000Z + 2026-03-03T11:27:54.426Z monthly 0.8 @@ -11414,7 +11603,7 @@ https://www.rfc1437.de/2011/07/18/kivy-a-crossplatform-framework-for-creating-nui-applications/ - 2026-03-03T11:27:58.000Z + 2026-03-03T11:27:58.977Z monthly 0.8 @@ -11423,7 +11612,7 @@ https://www.rfc1437.de/2011/07/18/simple-secure-scalable-web-development-with-opa/ - 2026-03-03T11:28:03.000Z + 2026-03-03T11:28:03.570Z monthly 0.8 @@ -11432,7 +11621,7 @@ https://www.rfc1437.de/2011/07/17/bulbflow-a-new-python-framework-for-graph-databases/ - 2026-03-03T11:28:08.000Z + 2026-03-03T11:28:08.047Z monthly 0.8 @@ -11441,7 +11630,7 @@ https://www.rfc1437.de/2011/07/15/core-data-the-pragmatic-bookshelf/ - 2026-03-03T11:28:11.000Z + 2026-03-03T11:28:11.592Z monthly 0.8 @@ -11450,7 +11639,7 @@ https://www.rfc1437.de/2011/07/14/scripts-tagged-fluid-userscripts-org/ - 2026-03-03T11:28:15.000Z + 2026-03-03T11:28:15.553Z monthly 0.8 @@ -11459,7 +11648,7 @@ https://www.rfc1437.de/2011/07/14/responsive-applications-mono/ - 2026-03-03T11:28:19.000Z + 2026-03-03T11:28:19.521Z monthly 0.8 @@ -11468,7 +11657,7 @@ https://www.rfc1437.de/2011/07/14/monotouch-news/ - 2026-03-03T11:28:24.000Z + 2026-03-03T11:28:24.376Z monthly 0.8 @@ -11477,7 +11666,7 @@ https://www.rfc1437.de/2011/07/13/jtalk-smalltalk/ - 2026-03-03T11:28:28.000Z + 2026-03-03T11:28:28.773Z monthly 0.8 @@ -11486,7 +11675,7 @@ https://www.rfc1437.de/2011/07/13/jquery-vs-mootools-choosing-between-two-great-javascript-frameworks/ - 2026-03-03T11:28:32.000Z + 2026-03-03T11:28:32.756Z monthly 0.8 @@ -11495,7 +11684,7 @@ https://www.rfc1437.de/2011/07/13/aber-da-muss-man-doch-was-gegen-tun-die-raummaschine/ - 2026-03-03T11:28:37.000Z + 2026-03-03T11:28:37.615Z monthly 0.8 @@ -11504,7 +11693,7 @@ https://www.rfc1437.de/2011/07/13/google-plus-rss-feeds/ - 2026-03-03T11:28:41.000Z + 2026-03-03T11:28:41.564Z monthly 0.8 @@ -11513,7 +11702,7 @@ https://www.rfc1437.de/2011/07/13/happy-overview-e2-80-93-bitbucket/ - 2026-03-03T11:28:46.000Z + 2026-03-03T11:28:46.175Z monthly 0.8 @@ -11522,7 +11711,7 @@ https://www.rfc1437.de/2011/07/13/pyrolog-overview-e2-80-93-bitbucket/ - 2026-03-03T11:28:50.000Z + 2026-03-03T11:28:50.149Z monthly 0.8 @@ -11531,7 +11720,7 @@ https://www.rfc1437.de/2011/07/12/the-node-beginner-book-c2-bb-a-comprehensive-node-js-tutorial/ - 2026-03-03T11:28:53.000Z + 2026-03-03T11:28:53.737Z monthly 0.8 @@ -11540,7 +11729,7 @@ https://www.rfc1437.de/2011/07/12/jquery-wysiwym-pushingkarma/ - 2026-03-03T11:28:58.000Z + 2026-03-03T11:28:58.578Z monthly 0.8 @@ -11549,7 +11738,7 @@ https://www.rfc1437.de/2011/07/12/pdf-js-reached-its-first-milestone-chris-pitchin-hey/ - 2026-03-03T11:29:03.000Z + 2026-03-03T11:29:03.013Z monthly 0.8 @@ -11558,7 +11747,7 @@ https://www.rfc1437.de/2011/07/12/pdfkit-e2-80-94-a-pdf-generation-library-for-node/ - 2026-03-03T11:29:07.000Z + 2026-03-03T11:29:07.435Z monthly 0.8 @@ -11567,7 +11756,7 @@ https://www.rfc1437.de/2011/07/12/manueledgelisp-github/ - 2026-03-03T11:29:11.000Z + 2026-03-03T11:29:11.425Z monthly 0.8 @@ -11576,7 +11765,7 @@ https://www.rfc1437.de/2011/07/12/paverpaver-github/ - 2026-03-03T11:29:15.000Z + 2026-03-03T11:29:15.574Z monthly 0.8 @@ -11585,7 +11774,7 @@ https://www.rfc1437.de/2011/07/12/uhrwerk-in-hiltrup/ - 2026-03-03T11:29:19.000Z + 2026-03-03T11:29:19.100Z monthly 0.8 @@ -11594,7 +11783,7 @@ https://www.rfc1437.de/2011/07/11/perldancer-the-easiest-way-to-write-web-applications-with-perl/ - 2026-03-03T11:29:23.000Z + 2026-03-03T11:29:23.116Z monthly 0.8 @@ -11603,7 +11792,7 @@ https://www.rfc1437.de/2011/07/11/tuning-your-postgresql-server-postgresql-wiki/ - 2026-03-03T11:29:27.000Z + 2026-03-03T11:29:27.541Z monthly 0.8 @@ -11612,7 +11801,7 @@ https://www.rfc1437.de/2011/07/10/max-pechstein-im-ahlener-kunstmuseum/ - 2026-03-03T11:29:32.000Z + 2026-03-03T11:29:32.014Z monthly 0.8 @@ -11621,7 +11810,7 @@ https://www.rfc1437.de/2011/07/10/datenschutz-und-social-network-buttons/ - 2026-03-03T11:29:36.000Z + 2026-03-03T11:29:36.661Z monthly 0.8 @@ -11630,7 +11819,7 @@ https://www.rfc1437.de/2011/07/10/danlucraftgit-js-github/ - 2026-03-03T11:29:41.000Z + 2026-03-03T11:29:41.338Z monthly 0.8 @@ -11639,7 +11828,7 @@ https://www.rfc1437.de/2011/07/09/google/ - 2026-03-03T11:29:45.000Z + 2026-03-03T11:29:45.947Z monthly 0.8 @@ -11648,7 +11837,7 @@ https://www.rfc1437.de/2011/07/08/operation-quiche-erfolgreich/ - 2026-03-03T11:29:50.000Z + 2026-03-03T11:29:50.899Z monthly 0.8 @@ -11657,7 +11846,7 @@ https://www.rfc1437.de/2011/07/08/stiivi-cubes-overview-e2-80-93-bitbucket/ - 2026-03-03T11:29:54.000Z + 2026-03-03T11:29:54.661Z monthly 0.8 @@ -11666,7 +11855,7 @@ https://www.rfc1437.de/2011/07/08/tree-for-policy-settings-basic-in-meego-multimedia-meego/ - 2026-03-03T11:30:00.000Z + 2026-03-03T11:30:00.079Z monthly 0.8 @@ -11675,7 +11864,7 @@ https://www.rfc1437.de/2011/07/08/auto-refresh-plus-chrome-web-store/ - 2026-03-03T11:30:05.000Z + 2026-03-03T11:30:05.477Z monthly 0.8 @@ -11684,7 +11873,7 @@ https://www.rfc1437.de/2011/07/07/dropkick-a-jquery-plugin-for-beautiful-dropdowns/ - 2026-03-03T11:30:09.000Z + 2026-03-03T11:30:09.352Z monthly 0.8 @@ -11693,7 +11882,7 @@ https://www.rfc1437.de/2011/07/06/wordpress-3-2-now-available/ - 2026-03-03T11:30:13.000Z + 2026-03-03T11:30:13.949Z monthly 0.8 @@ -11702,7 +11891,7 @@ https://www.rfc1437.de/2011/07/06/deshalb-mussen-wir-panzer-an-saudi-arabien-verkaufen-notizblog/ - 2026-03-03T11:30:18.000Z + 2026-03-03T11:30:18.892Z monthly 0.8 @@ -11711,7 +11900,7 @@ https://www.rfc1437.de/2011/07/06/prowl-ios-push-notifications/ - 2026-03-03T11:30:24.000Z + 2026-03-03T11:30:24.300Z monthly 0.8 @@ -11720,7 +11909,7 @@ https://www.rfc1437.de/2011/07/05/google-facebook-verhindert-export-von-freunden-golem-de/ - 2026-03-03T11:30:30.000Z + 2026-03-03T11:30:30.285Z monthly 0.8 @@ -11729,7 +11918,7 @@ https://www.rfc1437.de/2011/07/04/dsk-e2-80-9espiegel-e2-80-9d-beklagt-vorverurteilung-c2-ab-stefan-niggemeier/ - 2026-03-03T11:30:36.000Z + 2026-03-03T11:30:36.096Z monthly 0.8 @@ -11738,7 +11927,7 @@ https://www.rfc1437.de/2011/07/04/realmacsoftwares-profile-github/ - 2026-03-03T11:30:40.000Z + 2026-03-03T11:30:40.331Z monthly 0.8 @@ -11747,7 +11936,7 @@ https://www.rfc1437.de/2011/07/04/sitemap-loghound-com/ - 2026-03-03T11:30:45.000Z + 2026-03-03T11:30:45.109Z monthly 0.8 @@ -11756,7 +11945,7 @@ https://www.rfc1437.de/2011/07/04/pluskit-loghound-com/ - 2026-03-03T11:30:49.000Z + 2026-03-03T11:30:49.964Z monthly 0.8 @@ -11765,7 +11954,7 @@ https://www.rfc1437.de/2011/07/04/rapidscript/ - 2026-03-03T11:30:54.000Z + 2026-03-03T11:30:54.838Z monthly 0.8 @@ -11774,7 +11963,7 @@ https://www.rfc1437.de/2011/07/04/und-nebenan-brennt-das-reaktorgelande-g-gutjahrs-blog/ - 2026-03-03T11:30:59.000Z + 2026-03-03T11:30:59.882Z monthly 0.8 @@ -11783,7 +11972,7 @@ https://www.rfc1437.de/2011/07/04/millima-mabonde/ - 2026-03-03T11:31:04.000Z + 2026-03-03T11:31:04.902Z monthly 0.8 @@ -11792,7 +11981,7 @@ https://www.rfc1437.de/2011/07/03/the-dropbox-blog-c2-bb-blog-archive-c2-bb-changes-to-our-policies-updated/ - 2026-03-07T21:06:46.000Z + 2026-03-07T21:06:46.586Z monthly 0.8 @@ -11801,7 +11990,7 @@ https://www.rfc1437.de/2011/07/02/ubuntu-cron-fehler-module-is-unknown-nach-libpam-upgrade-update-systemdateien-administrator/ - 2026-03-03T11:31:14.000Z + 2026-03-03T11:31:14.643Z monthly 0.8 @@ -11810,7 +11999,7 @@ https://www.rfc1437.de/2011/07/01/digitalkameras-ricoh-kauft-pentax-golem-de/ - 2026-03-03T11:31:20.000Z + 2026-03-03T11:31:20.002Z monthly 0.8 @@ -11819,7 +12008,7 @@ https://www.rfc1437.de/2011/06/30/abstiegsszenario/ - 2026-03-03T11:31:25.000Z + 2026-03-03T11:31:25.333Z monthly 0.8 @@ -11828,7 +12017,7 @@ https://www.rfc1437.de/2011/06/30/opa-advancing-web-development-to-the-next-generation/ - 2026-03-03T11:31:30.000Z + 2026-03-03T11:31:30.557Z monthly 0.8 @@ -11837,7 +12026,7 @@ https://www.rfc1437.de/2011/06/30/sympy/ - 2026-03-03T11:31:34.000Z + 2026-03-03T11:31:34.901Z monthly 0.8 @@ -11846,7 +12035,7 @@ https://www.rfc1437.de/2011/06/30/pypy-status-blog-global-interpreter-lock-or-how-to-kill-it/ - 2026-03-03T11:31:39.000Z + 2026-03-03T11:31:39.714Z monthly 0.8 @@ -11855,7 +12044,7 @@ https://www.rfc1437.de/2011/06/29/bbc-news-great-exhibition-faces-london-2012-legal-action/ - 2026-03-03T11:31:44.000Z + 2026-03-03T11:31:44.884Z monthly 0.8 @@ -11864,7 +12053,7 @@ https://www.rfc1437.de/2011/06/29/jsplumb-demo-jquery/ - 2026-03-03T11:31:49.000Z + 2026-03-03T11:31:49.078Z monthly 0.8 @@ -11873,7 +12062,7 @@ https://www.rfc1437.de/2011/06/28/paper-js-e2-80-94-paper-js/ - 2026-03-03T11:31:53.000Z + 2026-03-03T11:31:53.916Z monthly 0.8 @@ -11882,7 +12071,7 @@ https://www.rfc1437.de/2011/06/27/installing-gitorious-on-ubuntu/ - 2026-03-03T11:31:59.000Z + 2026-03-03T11:31:59.247Z monthly 0.8 @@ -11891,7 +12080,7 @@ https://www.rfc1437.de/2011/06/27/sync-bitbucket-and-github-ramanas-blog/ - 2026-03-03T11:32:03.000Z + 2026-03-03T11:32:03.498Z monthly 0.8 @@ -11900,7 +12089,7 @@ https://www.rfc1437.de/2011/06/27/issue-bucket/ - 2026-03-03T11:32:07.000Z + 2026-03-03T11:32:07.597Z monthly 0.8 @@ -11909,7 +12098,7 @@ https://www.rfc1437.de/2011/06/27/ioctocat-is-your-github-companion-for-the-iphone-and-ipod-touch/ - 2026-03-03T11:32:11.000Z + 2026-03-03T11:32:11.694Z monthly 0.8 @@ -11918,7 +12107,7 @@ https://www.rfc1437.de/2011/06/27/thecodejunkienancy-github/ - 2026-03-03T11:32:15.000Z + 2026-03-03T11:32:15.809Z monthly 0.8 @@ -11927,7 +12116,7 @@ https://www.rfc1437.de/2011/06/27/bistro/ - 2026-03-03T11:32:19.000Z + 2026-03-03T11:32:19.562Z monthly 0.8 @@ -11936,7 +12125,7 @@ https://www.rfc1437.de/2011/06/27/scalatrascalatra-github/ - 2026-03-03T11:32:23.000Z + 2026-03-03T11:32:23.754Z monthly 0.8 @@ -11945,7 +12134,7 @@ https://www.rfc1437.de/2011/06/26/enschede/ - 2026-03-03T11:32:28.000Z + 2026-03-03T11:32:28.354Z monthly 0.8 @@ -11954,7 +12143,7 @@ https://www.rfc1437.de/2011/06/25/send-in-muenster/ - 2026-03-03T11:32:33.000Z + 2026-03-03T11:32:33.331Z monthly 0.8 @@ -11963,7 +12152,7 @@ https://www.rfc1437.de/2011/06/24/the-larch-environment/ - 2026-03-03T11:32:38.000Z + 2026-03-03T11:32:38.017Z monthly 0.8 @@ -11972,7 +12161,7 @@ https://www.rfc1437.de/2011/06/24/django-gae2django-django-based-implementation-of-app-engine-apis-google-project-hosting/ - 2026-03-03T11:32:42.000Z + 2026-03-03T11:32:42.734Z monthly 0.8 @@ -11981,7 +12170,7 @@ https://www.rfc1437.de/2011/06/24/documentclouds-visualsearch-js/ - 2026-03-03T11:32:47.000Z + 2026-03-03T11:32:47.466Z monthly 0.8 @@ -11990,7 +12179,7 @@ https://www.rfc1437.de/2011/06/24/journey-north-monarch-butterfly/ - 2026-03-03T11:32:51.000Z + 2026-03-03T11:32:51.678Z monthly 0.8 @@ -11999,7 +12188,7 @@ https://www.rfc1437.de/2011/06/23/im-zoo/ - 2026-03-03T11:32:55.000Z + 2026-03-03T11:32:55.378Z monthly 0.8 @@ -12008,7 +12197,7 @@ https://www.rfc1437.de/2011/06/23/the-online-photographer-the-pentax-q-system/ - 2026-03-03T11:33:00.000Z + 2026-03-03T11:33:00.708Z monthly 0.8 @@ -12017,7 +12206,7 @@ https://www.rfc1437.de/2011/06/23/sourcetree-mercurial-and-git-gui-for-mac-os-x-2/ - 2026-03-03T11:33:05.000Z + 2026-03-03T11:33:05.487Z monthly 0.8 @@ -12026,7 +12215,7 @@ https://www.rfc1437.de/2011/06/23/github-for-mac/ - 2026-03-03T11:33:09.000Z + 2026-03-03T11:33:09.209Z monthly 0.8 @@ -12035,7 +12224,7 @@ https://www.rfc1437.de/2011/06/22/traits-js-traits-for-javascript/ - 2026-03-03T11:33:13.000Z + 2026-03-03T11:33:13.916Z monthly 0.8 @@ -12044,7 +12233,7 @@ https://www.rfc1437.de/2011/06/22/technical-discovery-speeding-up-python-numpy-cython-and-weave/ - 2026-03-03T11:33:18.000Z + 2026-03-03T11:33:18.524Z monthly 0.8 @@ -12053,7 +12242,7 @@ https://www.rfc1437.de/2011/06/22/circus-ponies-notebook-for-ipad-take-great-notes/ - 2026-03-03T11:33:23.000Z + 2026-03-03T11:33:23.178Z monthly 0.8 @@ -12062,7 +12251,7 @@ https://www.rfc1437.de/2011/06/22/omnioutliner-for-ipad-products-the-omni-group/ - 2026-03-03T11:33:27.000Z + 2026-03-03T11:33:27.774Z monthly 0.8 @@ -12071,7 +12260,7 @@ https://www.rfc1437.de/2011/06/22/leos-home-page/ - 2026-03-03T11:33:31.000Z + 2026-03-03T11:33:31.898Z monthly 0.8 @@ -12080,7 +12269,7 @@ https://www.rfc1437.de/2011/06/22/brennender-berg-e2-80-93-wikipedia/ - 2026-03-03T11:33:36.000Z + 2026-03-03T11:33:36.084Z monthly 0.8 @@ -12089,7 +12278,7 @@ https://www.rfc1437.de/2011/06/22/firefox-add-on-builder-and-sdk/ - 2026-03-03T11:33:40.000Z + 2026-03-03T11:33:40.193Z monthly 0.8 @@ -12098,7 +12287,7 @@ https://www.rfc1437.de/2011/06/22/firmware-04-fur-sony-nex-kameras/ - 2026-03-03T11:33:45.000Z + 2026-03-03T11:33:45.313Z monthly 0.8 @@ -12107,7 +12296,7 @@ https://www.rfc1437.de/2011/06/22/pythonharmattan-meego-wiki/ - 2026-03-03T11:33:49.000Z + 2026-03-03T11:33:49.905Z monthly 0.8 @@ -12116,7 +12305,7 @@ https://www.rfc1437.de/2011/06/22/nokia-n9-first-hands-on-update-video-engadget/ - 2026-03-03T11:33:55.000Z + 2026-03-03T11:33:55.488Z monthly 0.8 @@ -12125,7 +12314,7 @@ https://www.rfc1437.de/2011/06/22/gcc-python-plugin-and-static-analyser-for-cpython-sources-comp-lang-python-announce-google-groups/ - 2026-03-03T11:34:00.000Z + 2026-03-03T11:34:00.932Z monthly 0.8 @@ -12134,7 +12323,7 @@ https://www.rfc1437.de/2011/06/22/dirty-lens-article/ - 2026-03-03T11:34:05.000Z + 2026-03-03T11:34:05.902Z monthly 0.8 @@ -12143,7 +12332,7 @@ https://www.rfc1437.de/2011/06/21/verleger-reichen-klage-gegen-tagesschau-app-ein-tagesschau-de/ - 2026-03-03T11:34:10.000Z + 2026-03-03T11:34:10.916Z monthly 0.8 @@ -12152,7 +12341,7 @@ https://www.rfc1437.de/2011/06/20/the-story-of-the-gomboc-plus-maths-org/ - 2026-03-03T11:34:14.000Z + 2026-03-03T11:34:14.977Z monthly 0.8 @@ -12161,7 +12350,7 @@ https://www.rfc1437.de/2011/06/20/lrblog-e2-80-93-export-directly-from-lightroom-2-to-your-blogphotographers-toolbox-photographers-toolbox/ - 2026-03-03T11:34:19.000Z + 2026-03-03T11:34:19.526Z monthly 0.8 @@ -12170,7 +12359,7 @@ https://www.rfc1437.de/2011/06/20/what-is-inside-a-cat/ - 2026-03-03T11:34:24.000Z + 2026-03-03T11:34:24.038Z monthly 0.8 @@ -12179,7 +12368,7 @@ https://www.rfc1437.de/2011/06/20/sparkleshare-sharing-work-made-easy/ - 2026-03-03T11:34:28.000Z + 2026-03-03T11:34:28.613Z monthly 0.8 @@ -12188,7 +12377,7 @@ https://www.rfc1437.de/2011/06/19/gesundheitsreform-zahnbehandlungen-sollen-teuer-werden-wirtschaft-zeit-online/ - 2026-03-03T11:34:33.000Z + 2026-03-03T11:34:33.181Z monthly 0.8 @@ -12197,7 +12386,7 @@ https://www.rfc1437.de/2011/06/19/sony-prs-505-firmware-update-customizing-mobileread-forums/ - 2026-03-03T11:34:38.000Z + 2026-03-03T11:34:38.169Z monthly 0.8 @@ -12206,7 +12395,7 @@ https://www.rfc1437.de/2011/06/19/bundeswehr-dozent-plagiator-gibt-den-doktortitel-zuruck-studium-c2-a0-frankfurter-rundschau/ - 2026-03-03T11:34:43.000Z + 2026-03-03T11:34:43.585Z monthly 0.8 @@ -12215,7 +12404,7 @@ https://www.rfc1437.de/2011/06/19/der-postillon-der-postillon-erklart-was-kann-das-nationale-cyber-abwehrzentrum/ - 2026-03-03T11:34:48.000Z + 2026-03-03T11:34:48.075Z monthly 0.8 @@ -12224,7 +12413,7 @@ https://www.rfc1437.de/2011/06/18/honeybees-might-have-emotions-wired-science-wired-com/ - 2026-03-07T21:06:47.000Z + 2026-03-07T21:06:47.479Z monthly 0.8 @@ -12233,7 +12422,7 @@ https://www.rfc1437.de/2011/06/16/skulpt/ - 2026-03-03T11:34:55.000Z + 2026-03-03T11:34:55.798Z monthly 0.8 @@ -12242,7 +12431,7 @@ https://www.rfc1437.de/2011/06/15/maxima/ - 2026-03-03T11:35:00.000Z + 2026-03-03T11:35:00.848Z monthly 0.8 @@ -12251,7 +12440,7 @@ https://www.rfc1437.de/2011/06/15/jquery-form-wizard/ - 2026-03-03T11:35:04.000Z + 2026-03-03T11:35:04.900Z monthly 0.8 @@ -12260,7 +12449,7 @@ https://www.rfc1437.de/2011/06/15/josevalimelixir-github/ - 2026-03-03T11:35:09.000Z + 2026-03-03T11:35:09.433Z monthly 0.8 @@ -12269,7 +12458,7 @@ https://www.rfc1437.de/2011/06/15/htc-desire-wont-be-getting-an-official-gingerbread-update-android-central/ - 2026-03-03T11:35:14.000Z + 2026-03-03T11:35:14.012Z monthly 0.8 @@ -12278,7 +12467,7 @@ https://www.rfc1437.de/2011/06/14/tumult-hype/ - 2026-03-03T11:35:17.000Z + 2026-03-03T11:35:17.664Z monthly 0.8 @@ -12287,7 +12476,7 @@ https://www.rfc1437.de/2011/06/14/ccons-interactive-console-for-the-c-programming-language-google-project-hosting/ - 2026-03-03T11:35:21.000Z + 2026-03-03T11:35:21.809Z monthly 0.8 @@ -12296,7 +12485,7 @@ https://www.rfc1437.de/2011/06/14/asciiflow-ascii-flow-diagram-tool/ - 2026-03-03T11:35:25.000Z + 2026-03-03T11:35:25.461Z monthly 0.8 @@ -12305,7 +12494,7 @@ https://www.rfc1437.de/2011/06/11/black-stone-raiders/ - 2026-03-03T11:35:30.000Z + 2026-03-03T11:35:30.081Z monthly 0.8 @@ -12314,7 +12503,7 @@ https://www.rfc1437.de/2011/06/11/gruenflaechenunterhaltung/ - 2026-03-03T11:35:34.000Z + 2026-03-03T11:35:34.329Z monthly 0.8 @@ -12323,7 +12512,7 @@ https://www.rfc1437.de/2011/06/11/burrahobbit/ - 2026-03-03T11:35:38.000Z + 2026-03-03T11:35:38.652Z monthly 0.8 @@ -12332,7 +12521,7 @@ https://www.rfc1437.de/2011/06/08/bonn/ - 2026-03-03T11:35:42.000Z + 2026-03-03T11:35:42.387Z monthly 0.8 @@ -12341,7 +12530,7 @@ https://www.rfc1437.de/2011/06/07/neulich-auf-flickr-4/ - 2026-03-03T11:35:46.000Z + 2026-03-03T11:35:46.279Z monthly 0.8 @@ -12350,7 +12539,7 @@ https://www.rfc1437.de/2011/06/07/cloud9-meets-bitbucket-cloud9-ides-posterous/ - 2026-03-03T11:35:50.000Z + 2026-03-03T11:35:50.506Z monthly 0.8 @@ -12359,7 +12548,7 @@ https://www.rfc1437.de/2011/06/05/metaverse-ink-blog-c2-bb-blog-archive-c2-bb-the-4096-e2-80-9cbug-e2-80-9d/ - 2026-03-03T11:35:55.000Z + 2026-03-03T11:35:55.765Z monthly 0.8 @@ -12368,7 +12557,7 @@ https://www.rfc1437.de/2011/06/05/why-arent-you-using-git-flow-jeff-kreeftmeijer/ - 2026-03-03T11:35:59.000Z + 2026-03-03T11:35:59.941Z monthly 0.8 @@ -12377,7 +12566,7 @@ https://www.rfc1437.de/2011/06/04/comparison-to-python-cobra/ - 2026-03-03T11:36:04.000Z + 2026-03-03T11:36:04.709Z monthly 0.8 @@ -12386,7 +12575,7 @@ https://www.rfc1437.de/2011/06/04/clack-web-application-environment-for-common-lisp/ - 2026-03-03T11:36:09.000Z + 2026-03-03T11:36:09.280Z monthly 0.8 @@ -12395,7 +12584,7 @@ https://www.rfc1437.de/2011/06/04/polycode/ - 2026-03-03T11:36:13.000Z + 2026-03-03T11:36:13.995Z monthly 0.8 @@ -12404,7 +12593,7 @@ https://www.rfc1437.de/2011/06/01/couchdb-the-definitive-guide/ - 2026-03-03T11:36:18.000Z + 2026-03-03T11:36:18.120Z monthly 0.8 @@ -12413,7 +12602,7 @@ https://www.rfc1437.de/2011/06/01/simple-javascript-applications-with-couchdb-couchapp-org/ - 2026-03-03T11:36:23.000Z + 2026-03-03T11:36:23.051Z monthly 0.8 @@ -12422,7 +12611,7 @@ https://www.rfc1437.de/2011/06/01/its-about-the-hashbangs/ - 2026-03-03T11:36:28.000Z + 2026-03-03T11:36:28.189Z monthly 0.8 @@ -12431,7 +12620,7 @@ https://www.rfc1437.de/2011/05/31/function-referencesite-url-c2-ab-wordpress-codex/ - 2026-03-03T11:36:32.000Z + 2026-03-03T11:36:32.250Z monthly 0.8 @@ -12440,7 +12629,7 @@ https://www.rfc1437.de/2011/05/31/shedding-bikes-programming-culture-and-philosophy/ - 2026-03-03T11:36:36.000Z + 2026-03-03T11:36:36.716Z monthly 0.8 @@ -12449,7 +12638,7 @@ https://www.rfc1437.de/2011/05/30/ssl-and-cookies-in-wordpress-2-6-c2-ab-ryan-boren/ - 2026-03-03T11:36:41.000Z + 2026-03-03T11:36:41.618Z monthly 0.8 @@ -12458,7 +12647,7 @@ https://www.rfc1437.de/2011/05/30/cloud9/ - 2026-03-03T11:36:46.000Z + 2026-03-03T11:36:46.112Z monthly 0.8 @@ -12467,7 +12656,7 @@ https://www.rfc1437.de/2011/05/28/hackers-broke-into-lockheed-martin-source-technology-science-security-msnbc-com/ - 2026-03-03T11:36:50.000Z + 2026-03-03T11:36:50.557Z monthly 0.8 @@ -12476,7 +12665,7 @@ https://www.rfc1437.de/2011/05/28/spring-cleaning-for-some-of-our-apis-the-official-google-code-blog/ - 2026-03-03T11:36:55.000Z + 2026-03-03T11:36:55.023Z monthly 0.8 @@ -12485,7 +12674,7 @@ https://www.rfc1437.de/2011/05/27/iphone-pptp-vpn-e2-80-93-gre-protokoll-probleme-it-fabrik-blog/ - 2026-03-03T11:36:59.000Z + 2026-03-03T11:36:59.966Z monthly 0.8 @@ -12494,7 +12683,7 @@ https://www.rfc1437.de/2011/05/27/remveeclj-android-github/ - 2026-03-03T11:37:04.000Z + 2026-03-03T11:37:04.405Z monthly 0.8 @@ -12503,7 +12692,7 @@ https://www.rfc1437.de/2011/05/27/scalaforandroid-scala-for-android-google-project-hosting/ - 2026-03-03T11:37:08.000Z + 2026-03-03T11:37:08.865Z monthly 0.8 @@ -12512,7 +12701,7 @@ https://www.rfc1437.de/2011/05/27/mirahpindah-github/ - 2026-03-03T11:37:13.000Z + 2026-03-03T11:37:13.288Z monthly 0.8 @@ -12521,7 +12710,7 @@ https://www.rfc1437.de/2011/05/27/ruboto-ruby-on-android/ - 2026-03-03T11:37:17.000Z + 2026-03-03T11:37:17.366Z monthly 0.8 @@ -12530,7 +12719,7 @@ https://www.rfc1437.de/2011/05/26/ruboto/ - 2026-03-03T11:37:21.000Z + 2026-03-03T11:37:21.828Z monthly 0.8 @@ -12539,7 +12728,7 @@ https://www.rfc1437.de/2011/05/25/ms-optical-super-triplet-perar-3-535-mark-ii-japan-exposures/ - 2026-03-03T11:37:28.000Z + 2026-03-03T11:37:28.395Z monthly 0.8 @@ -12548,7 +12737,7 @@ https://www.rfc1437.de/2011/05/25/zotonics-hot-features-e2-80-94-zotonic/ - 2026-03-03T11:37:32.000Z + 2026-03-03T11:37:32.678Z monthly 0.8 @@ -12557,7 +12746,7 @@ https://www.rfc1437.de/2011/05/25/hij1nxsugarskull-github/ - 2026-03-03T11:37:37.000Z + 2026-03-03T11:37:37.259Z monthly 0.8 @@ -12566,7 +12755,7 @@ https://www.rfc1437.de/2011/05/25/seesaw-github/ - 2026-03-03T11:37:42.000Z + 2026-03-03T11:37:42.577Z monthly 0.8 @@ -12575,7 +12764,7 @@ https://www.rfc1437.de/2011/05/25/tequila-suicide-blogrebellen-kreuzberg/ - 2026-03-03T11:37:47.000Z + 2026-03-03T11:37:47.299Z monthly 0.8 @@ -12584,7 +12773,7 @@ https://www.rfc1437.de/2011/05/23/single-page-apps-with-node-js-blog-nodejitsu-com-scaling-node-js-applications-one-callback-at-a-time/ - 2026-03-03T11:37:51.000Z + 2026-03-03T11:37:51.873Z monthly 0.8 @@ -12593,7 +12782,7 @@ https://www.rfc1437.de/2011/05/23/llama-font-say-it-in-llama/ - 2026-03-03T11:37:55.000Z + 2026-03-03T11:37:55.722Z monthly 0.8 @@ -12602,7 +12791,7 @@ https://www.rfc1437.de/2011/05/23/fredhq-roundabout-for-jquery-by-fred-leblanc/ - 2026-03-03T11:38:00.000Z + 2026-03-03T11:38:00.918Z monthly 0.8 @@ -12611,7 +12800,7 @@ https://www.rfc1437.de/2011/05/21/servergate-geht-garnicht/ - 2026-03-03T11:38:05.000Z + 2026-03-03T11:38:05.647Z monthly 0.8 @@ -12620,7 +12809,7 @@ https://www.rfc1437.de/2011/05/20/cloud-foundry-make-it-yours/ - 2026-03-03T11:38:11.000Z + 2026-03-03T11:38:11.300Z monthly 0.8 @@ -12629,7 +12818,7 @@ https://www.rfc1437.de/2011/05/20/andtidwiki-mgblog/ - 2026-03-03T11:38:16.000Z + 2026-03-03T11:38:16.305Z monthly 0.8 @@ -12638,7 +12827,7 @@ https://www.rfc1437.de/2011/05/20/introducing-jetbrains-dotpeek-dotpeek-confluence/ - 2026-03-03T11:38:20.000Z + 2026-03-03T11:38:20.632Z monthly 0.8 @@ -12647,7 +12836,7 @@ https://www.rfc1437.de/2011/05/19/tiddlyspacetiddlyspace-github/ - 2026-03-03T11:38:26.000Z + 2026-03-03T11:38:26.083Z monthly 0.8 @@ -12656,7 +12845,7 @@ https://www.rfc1437.de/2011/05/19/twmobile/ - 2026-03-03T11:38:31.000Z + 2026-03-03T11:38:31.146Z monthly 0.8 @@ -12665,7 +12854,7 @@ https://www.rfc1437.de/2011/05/19/quicksilver-network/ - 2026-03-03T11:38:35.000Z + 2026-03-03T11:38:35.682Z monthly 0.8 @@ -12674,7 +12863,7 @@ https://www.rfc1437.de/2011/05/18/urteil-sharehoster-mussen-externe-linksammlungen-prufen-golem-de/ - 2026-03-03T11:38:40.000Z + 2026-03-03T11:38:40.170Z monthly 0.8 @@ -12683,7 +12872,7 @@ https://www.rfc1437.de/2011/05/18/on-termkit-steven-wittens-acko-net/ - 2026-03-03T11:38:44.000Z + 2026-03-03T11:38:44.844Z monthly 0.8 @@ -12692,7 +12881,7 @@ https://www.rfc1437.de/2011/05/18/ai-art-painting-robot-art-expert-systems/ - 2026-03-03T11:38:48.000Z + 2026-03-03T11:38:48.897Z monthly 0.8 @@ -12701,7 +12890,7 @@ https://www.rfc1437.de/2011/05/18/xmlisp-extreme-media-lisp-rich-media-cross-platform-programming-for-3d-opengl-and-2d-applications-google-project-hosting/ - 2026-03-03T11:38:53.000Z + 2026-03-03T11:38:53.881Z monthly 0.8 @@ -12710,7 +12899,7 @@ https://www.rfc1437.de/2011/05/18/milkpack-edgar-goncalves/ - 2026-03-03T11:38:58.000Z + 2026-03-03T11:38:58.310Z monthly 0.8 @@ -12719,7 +12908,7 @@ https://www.rfc1437.de/2011/05/18/michaelmacinnisoh-github/ - 2026-03-03T11:39:02.000Z + 2026-03-03T11:39:02.733Z monthly 0.8 @@ -12728,7 +12917,7 @@ https://www.rfc1437.de/2011/05/18/javascript-pc-emulator-technical-notes/ - 2026-03-03T11:39:06.000Z + 2026-03-03T11:39:06.644Z monthly 0.8 @@ -12737,7 +12926,7 @@ https://www.rfc1437.de/2011/05/18/infinite-scroll-c2-ab-wordpress-plugins/ - 2026-03-03T11:39:11.000Z + 2026-03-03T11:39:11.410Z monthly 0.8 @@ -12746,7 +12935,7 @@ https://www.rfc1437.de/2011/05/17/lightroom-developer-center-adobe-developer-connection/ - 2026-03-03T11:39:15.000Z + 2026-03-03T11:39:15.961Z monthly 0.8 @@ -12755,7 +12944,7 @@ https://www.rfc1437.de/2011/05/16/neulich-auf-flickr-3/ - 2026-03-03T11:39:20.000Z + 2026-03-03T11:39:20.096Z monthly 0.8 @@ -12764,7 +12953,7 @@ https://www.rfc1437.de/2011/05/16/microsoft-small-basic/ - 2026-03-03T11:39:23.000Z + 2026-03-03T11:39:23.946Z monthly 0.8 @@ -12773,7 +12962,7 @@ https://www.rfc1437.de/2011/05/16/wordpress-e2-80-ba-pressbox-c2-ab-wordpress-plugins/ - 2026-03-03T11:39:28.000Z + 2026-03-03T11:39:28.537Z monthly 0.8 @@ -12782,7 +12971,7 @@ https://www.rfc1437.de/2011/05/16/teures-gesundheitswesen-kassen-rechnen-mit-c2-a0zusatzbeitrag-von-70-euro-spiegel-online-nachrichten-wirtschaft/ - 2026-03-03T11:39:33.000Z + 2026-03-03T11:39:33.982Z monthly 0.8 @@ -12791,7 +12980,7 @@ https://www.rfc1437.de/2011/05/16/leistungsschutzrecht-bundesjustizministerin-uber-eine-abgabenpflicht-fur-zitate-golem-de/ - 2026-03-03T11:39:38.000Z + 2026-03-03T11:39:38.757Z monthly 0.8 @@ -12800,7 +12989,7 @@ https://www.rfc1437.de/2011/05/16/bilderarchiv/ - 2026-03-03T11:39:41.000Z + 2026-03-03T11:39:41.922Z monthly 0.8 @@ -12809,7 +12998,7 @@ https://www.rfc1437.de/2011/05/16/zenphotopress-c2-ab-wordpress-plugins/ - 2026-03-03T11:39:46.000Z + 2026-03-03T11:39:46.377Z monthly 0.8 @@ -12818,7 +13007,7 @@ https://www.rfc1437.de/2011/05/16/from-me-to-you/ - 2026-03-03T11:39:51.000Z + 2026-03-03T11:39:51.433Z monthly 0.8 @@ -12827,7 +13016,7 @@ https://www.rfc1437.de/2011/05/15/dropbox-lied-to-users-about-data-security-complaint-to-ftc-alleges-threat-level-wired-com/ - 2026-03-03T11:39:56.000Z + 2026-03-03T11:39:56.544Z monthly 0.8 @@ -12836,7 +13025,7 @@ https://www.rfc1437.de/2011/05/15/match-technical-services/ - 2026-03-03T11:40:01.000Z + 2026-03-03T11:40:01.522Z monthly 0.8 @@ -12845,7 +13034,7 @@ https://www.rfc1437.de/2011/05/15/variochromat-homepage/ - 2026-03-03T11:40:06.000Z + 2026-03-03T11:40:06.045Z monthly 0.8 @@ -12854,7 +13043,7 @@ https://www.rfc1437.de/2011/05/15/the-best-street-photographer-youve-never-heard-of-mother-jones/ - 2026-03-03T11:40:10.000Z + 2026-03-03T11:40:10.402Z monthly 0.8 @@ -12863,7 +13052,7 @@ https://www.rfc1437.de/2011/05/14/stadtspaziergang-mal-wieder/ - 2026-03-03T11:40:14.000Z + 2026-03-03T11:40:14.078Z monthly 0.8 @@ -12872,7 +13061,7 @@ https://www.rfc1437.de/2011/05/14/rund-um-den-stadthafen/ - 2026-03-03T11:40:17.000Z + 2026-03-03T11:40:17.949Z monthly 0.8 @@ -12881,7 +13070,7 @@ https://www.rfc1437.de/2011/05/13/writing-plugins-for-gedit-3-with-python/ - 2026-03-03T11:40:22.000Z + 2026-03-03T11:40:22.633Z monthly 0.8 @@ -12890,7 +13079,7 @@ https://www.rfc1437.de/2011/05/13/python-interpreter-by-noam-gat-unity-asset-store/ - 2026-03-03T11:40:27.000Z + 2026-03-03T11:40:27.689Z monthly 0.8 @@ -12899,7 +13088,7 @@ https://www.rfc1437.de/2011/05/13/micromongo-e2-80-94-micromongo-v0-1-documentation/ - 2026-03-03T11:40:32.000Z + 2026-03-03T11:40:32.242Z monthly 0.8 @@ -12908,7 +13097,7 @@ https://www.rfc1437.de/2011/05/13/execnet-v1-0-9-documentation/ - 2026-03-03T11:40:36.000Z + 2026-03-03T11:40:36.771Z monthly 0.8 @@ -12917,7 +13106,7 @@ https://www.rfc1437.de/2011/05/13/home-read-the-docs/ - 2026-03-03T11:40:40.000Z + 2026-03-03T11:40:40.392Z monthly 0.8 @@ -12926,7 +13115,7 @@ https://www.rfc1437.de/2011/05/13/mochi-labs-statebox-an-eventually-consistent-data-model-for-erlang-and-riak/ - 2026-03-03T11:40:45.000Z + 2026-03-03T11:40:45.040Z monthly 0.8 @@ -12935,7 +13124,7 @@ https://www.rfc1437.de/2011/05/13/pmundkurodisco-github/ - 2026-03-03T11:40:49.000Z + 2026-03-03T11:40:49.062Z monthly 0.8 @@ -12944,7 +13133,7 @@ https://www.rfc1437.de/2011/05/13/uberlegungen-zu-datenschutz-kontrollverlust-und-anderen-dingen/ - 2026-03-03T11:40:54.000Z + 2026-03-03T11:40:54.067Z monthly 0.8 @@ -12953,7 +13142,7 @@ https://www.rfc1437.de/2011/05/12/reinteract-trac/ - 2026-03-03T11:40:58.000Z + 2026-03-03T11:40:58.612Z monthly 0.8 @@ -12962,7 +13151,7 @@ https://www.rfc1437.de/2011/05/12/a-successful-git-branching-model-c2-bb-nvie-com/ - 2026-03-03T11:41:03.000Z + 2026-03-03T11:41:03.187Z monthly 0.8 @@ -12971,7 +13160,7 @@ https://www.rfc1437.de/2011/05/12/counterclockwise-counterclockwise-is-an-eclipse-plugin-helping-developers-write-clojure-code-google-project-hosting/ - 2026-03-03T11:41:07.000Z + 2026-03-03T11:41:07.274Z monthly 0.8 @@ -12980,7 +13169,7 @@ https://www.rfc1437.de/2011/05/12/typesafe-overview/ - 2026-03-03T11:41:12.000Z + 2026-03-03T11:41:12.241Z monthly 0.8 @@ -12989,7 +13178,7 @@ https://www.rfc1437.de/2011/05/12/llvm-project-blog-what-every-c-programmer-should-know-about-undefined-behavior-13/ - 2026-03-03T11:41:16.000Z + 2026-03-03T11:41:16.257Z monthly 0.8 @@ -12998,7 +13187,7 @@ https://www.rfc1437.de/2011/05/11/wieder-kontrollen-an-deutsch-danischer-grenze-tagesschau-de/ - 2026-03-03T11:41:20.000Z + 2026-03-03T11:41:20.274Z monthly 0.8 @@ -13007,7 +13196,7 @@ https://www.rfc1437.de/2011/05/11/twitter-bilder-verwirrung-um-twitpic-golem-de/ - 2026-03-03T11:41:25.000Z + 2026-03-03T11:41:25.211Z monthly 0.8 @@ -13016,7 +13205,7 @@ https://www.rfc1437.de/2011/05/11/raptordb-codeproject/ - 2026-03-03T11:41:29.000Z + 2026-03-03T11:41:29.331Z monthly 0.8 @@ -13025,7 +13214,7 @@ https://www.rfc1437.de/2011/05/11/app-engine-go-overview-google-app-engine-google-code/ - 2026-03-03T11:41:33.000Z + 2026-03-03T11:41:33.795Z monthly 0.8 @@ -13034,7 +13223,7 @@ https://www.rfc1437.de/2011/05/10/owl-content-c2-bb-blog-archive-c2-bb-metaowl-ist-life/ - 2026-03-03T11:41:38.000Z + 2026-03-03T11:41:38.739Z monthly 0.8 @@ -13043,7 +13232,7 @@ https://www.rfc1437.de/2011/05/10/microsoft-near-deal-to-buy-skype-for-nearly-8-billion-wsj-com/ - 2026-03-03T11:41:43.000Z + 2026-03-03T11:41:43.710Z monthly 0.8 @@ -13052,7 +13241,7 @@ https://www.rfc1437.de/2011/05/10/the-ark-in-space-manul-e2-80-93-the-cat-that-time-forgot/ - 2026-03-03T11:41:47.000Z + 2026-03-03T11:41:47.711Z monthly 0.8 @@ -13061,7 +13250,7 @@ https://www.rfc1437.de/2011/05/10/bconstantin-django-polymorphic-overview-e2-80-93-bitbucket/ - 2026-03-03T11:41:52.000Z + 2026-03-03T11:41:52.179Z monthly 0.8 @@ -13070,7 +13259,7 @@ https://www.rfc1437.de/2011/05/10/obensonne-hg-autosync-wiki-home-e2-80-93-bitbucket/ - 2026-03-03T11:41:57.000Z + 2026-03-03T11:41:57.088Z monthly 0.8 @@ -13079,7 +13268,7 @@ https://www.rfc1437.de/2011/05/10/the-visual-science-lab-kirk-tuck-approval-tacit-approval-implied-approval-and-street-photography/ - 2026-03-03T11:42:01.000Z + 2026-03-03T11:42:01.956Z monthly 0.8 @@ -13088,7 +13277,7 @@ https://www.rfc1437.de/2011/05/10/mixing-it-up-when-f-meets-c/ - 2026-03-03T11:42:06.000Z + 2026-03-03T11:42:06.867Z monthly 0.8 @@ -13097,7 +13286,7 @@ https://www.rfc1437.de/2011/05/10/philikon-weaveclient-chromium-overview-e2-80-93-bitbucket-2/ - 2026-03-03T11:42:11.000Z + 2026-03-03T11:42:11.312Z monthly 0.8 @@ -13106,7 +13295,7 @@ https://www.rfc1437.de/2011/05/09/birkenfeld-karnickel-overview-e2-80-93-bitbucket/ - 2026-03-03T11:42:16.000Z + 2026-03-03T11:42:16.237Z monthly 0.8 @@ -13115,7 +13304,7 @@ https://www.rfc1437.de/2011/05/09/dyoomoby-scheme-github/ - 2026-03-03T11:42:21.000Z + 2026-03-03T11:42:21.282Z monthly 0.8 @@ -13124,7 +13313,7 @@ https://www.rfc1437.de/2011/05/09/bldgblog-baarle-hertog/ - 2026-03-03T11:42:25.000Z + 2026-03-03T11:42:25.675Z monthly 0.8 @@ -13133,7 +13322,7 @@ https://www.rfc1437.de/2011/05/08/blurb-plug-in-for-adobe-photoshop-lightroom-3-blurb/ - 2026-03-03T11:42:30.000Z + 2026-03-03T11:42:30.847Z monthly 0.8 @@ -13142,7 +13331,7 @@ https://www.rfc1437.de/2011/05/08/computer-science-and-biology-come-together-to-make-tree-identification-a-snap-newsdesk/ - 2026-03-03T11:42:36.000Z + 2026-03-03T11:42:36.056Z monthly 0.8 @@ -13151,7 +13340,7 @@ https://www.rfc1437.de/2011/05/07/wochenmarkt-noch-viel-bunter/ - 2026-03-03T11:42:41.000Z + 2026-03-03T11:42:41.790Z monthly 0.8 @@ -13160,7 +13349,7 @@ https://www.rfc1437.de/2011/05/07/munster-bunt/ - 2026-03-03T11:42:45.000Z + 2026-03-03T11:42:45.501Z monthly 0.8 @@ -13169,7 +13358,7 @@ https://www.rfc1437.de/2011/05/06/acta-lobbyisten-wollen-acta-prufung-durch-den-eugh-verhindern-golem-de/ - 2026-03-03T11:42:50.000Z + 2026-03-03T11:42:50.247Z monthly 0.8 @@ -13178,7 +13367,7 @@ https://www.rfc1437.de/2011/05/06/uni-bayreuth-guttenberg-hat-absichtlich-getauscht-tagesschau-de/ - 2026-03-03T11:42:55.000Z + 2026-03-03T11:42:55.283Z monthly 0.8 @@ -13187,7 +13376,7 @@ https://www.rfc1437.de/2011/05/06/ralf-jager-spd-innenminister-will-sorgenfreie-vorratsdatenspeicherung-golem-de/ - 2026-03-03T11:42:59.000Z + 2026-03-03T11:42:59.907Z monthly 0.8 @@ -13196,7 +13385,7 @@ https://www.rfc1437.de/2011/05/06/icylisper-in-jark/ - 2026-03-03T11:43:04.000Z + 2026-03-03T11:43:04.073Z monthly 0.8 @@ -13205,7 +13394,7 @@ https://www.rfc1437.de/2011/05/06/home-e2-80-94-pygame-subset-for-android/ - 2026-03-03T11:43:08.000Z + 2026-03-03T11:43:08.628Z monthly 0.8 @@ -13214,7 +13403,7 @@ https://www.rfc1437.de/2011/05/06/android-scripting-scripting-layer-for-android-brings-scripting-languages-to-android-google-project-hosting/ - 2026-03-03T11:43:13.000Z + 2026-03-03T11:43:13.465Z monthly 0.8 @@ -13223,7 +13412,7 @@ https://www.rfc1437.de/2011/05/06/paypal-money-module-c2-ab-snoopy-pfeffer-e2-80-99s-blog/ - 2026-03-03T11:43:18.000Z + 2026-03-03T11:43:18.009Z monthly 0.8 @@ -13232,7 +13421,7 @@ https://www.rfc1437.de/2011/05/06/snoopypfeffermod-paypal-github/ - 2026-03-03T11:43:23.000Z + 2026-03-03T11:43:23.377Z monthly 0.8 @@ -13241,7 +13430,7 @@ https://www.rfc1437.de/2011/05/04/tagbar-the-vim-class-browser/ - 2026-03-03T11:43:27.000Z + 2026-03-03T11:43:27.959Z monthly 0.8 @@ -13250,7 +13439,7 @@ https://www.rfc1437.de/2011/05/04/ifttt-about-ifttt/ - 2026-03-03T11:43:32.000Z + 2026-03-03T11:43:32.594Z monthly 0.8 @@ -13259,7 +13448,7 @@ https://www.rfc1437.de/2011/05/04/scala-2-9-0-rc3-the-scala-programming-language/ - 2026-03-03T11:43:36.000Z + 2026-03-03T11:43:36.646Z monthly 0.8 @@ -13268,7 +13457,7 @@ https://www.rfc1437.de/2011/05/03/jquery-c2-bb-jquery-1-6-released/ - 2026-03-03T11:43:41.000Z + 2026-03-03T11:43:41.261Z monthly 0.8 @@ -13277,7 +13466,7 @@ https://www.rfc1437.de/2011/05/03/stanlemon-net-jgrowl/ - 2026-03-03T11:43:45.000Z + 2026-03-03T11:43:45.624Z monthly 0.8 @@ -13286,7 +13475,7 @@ https://www.rfc1437.de/2011/05/02/the-m8-metadata-project/ - 2026-03-03T11:43:50.000Z + 2026-03-03T11:43:50.298Z monthly 0.8 @@ -13295,7 +13484,7 @@ https://www.rfc1437.de/2011/05/02/inotify-get-your-file-system-supervised/ - 2026-03-03T11:43:54.000Z + 2026-03-03T11:43:54.428Z monthly 0.8 @@ -13304,7 +13493,7 @@ https://www.rfc1437.de/2011/05/01/ettenheim-vergabe-kleinkunstpreis-georg-schramm-sorgt-fur-eklat-im-europa-park-badische-zeitung-de/ - 2026-03-03T11:43:59.000Z + 2026-03-03T11:43:59.997Z monthly 0.8 @@ -13313,7 +13502,7 @@ https://www.rfc1437.de/2011/05/01/aasee-und-schlosgarten/ - 2026-03-03T11:44:04.000Z + 2026-03-03T11:44:04.637Z monthly 0.8 @@ -13322,7 +13511,7 @@ https://www.rfc1437.de/2011/05/01/taschentuchbaum/ - 2026-03-03T11:44:08.000Z + 2026-03-03T11:44:08.734Z monthly 0.8 @@ -13331,7 +13520,7 @@ https://www.rfc1437.de/2011/05/01/uno-iii-streetbike-at-firebox-com/ - 2026-03-03T11:44:12.000Z + 2026-03-03T11:44:12.858Z monthly 0.8 @@ -13340,7 +13529,7 @@ https://www.rfc1437.de/2011/05/01/nubrella-com/ - 2026-03-03T11:44:16.000Z + 2026-03-03T11:44:16.488Z monthly 0.8 @@ -13349,7 +13538,7 @@ https://www.rfc1437.de/2011/05/01/pypy-status-blog-pypy-1-5-released-catching-up/ - 2026-03-03T11:44:21.000Z + 2026-03-03T11:44:21.967Z monthly 0.8 @@ -13358,7 +13547,7 @@ https://www.rfc1437.de/2011/04/30/neulich-auf-flickr-2/ - 2026-03-03T11:44:26.000Z + 2026-03-03T11:44:26.570Z monthly 0.8 @@ -13367,7 +13556,7 @@ https://www.rfc1437.de/2011/04/29/spock-the-chicken-scheme-wiki/ - 2026-03-03T11:44:31.000Z + 2026-03-03T11:44:31.174Z monthly 0.8 @@ -13376,7 +13565,7 @@ https://www.rfc1437.de/2011/04/29/turbolentralph-github/ - 2026-03-03T11:44:35.000Z + 2026-03-03T11:44:35.232Z monthly 0.8 @@ -13385,7 +13574,7 @@ https://www.rfc1437.de/2011/04/29/flusspferd-commonjs-platform-javascript-bindings-for-c/ - 2026-03-03T11:44:39.000Z + 2026-03-03T11:44:39.313Z monthly 0.8 @@ -13394,7 +13583,7 @@ https://www.rfc1437.de/2011/04/29/pdp-11-emulator/ - 2026-03-03T11:44:42.000Z + 2026-03-03T11:44:42.993Z monthly 0.8 @@ -13403,7 +13592,7 @@ https://www.rfc1437.de/2011/04/29/nochmal-iphone-location-daten/ - 2026-03-03T11:44:48.000Z + 2026-03-03T11:44:48.046Z monthly 0.8 @@ -13412,7 +13601,7 @@ https://www.rfc1437.de/2011/04/28/paper-airplanes-paper-airplanes-hq/ - 2026-03-03T11:44:51.000Z + 2026-03-03T11:44:51.406Z monthly 0.8 @@ -13421,7 +13610,7 @@ https://www.rfc1437.de/2011/04/28/kiorkyspynner-github/ - 2026-03-03T11:44:56.000Z + 2026-03-03T11:44:56.275Z monthly 0.8 @@ -13430,7 +13619,7 @@ https://www.rfc1437.de/2011/04/28/igniteinteractivestudioslsharp-github/ - 2026-03-03T11:44:59.000Z + 2026-03-03T11:44:59.889Z monthly 0.8 @@ -13439,7 +13628,7 @@ https://www.rfc1437.de/2011/04/28/ironscheme/ - 2026-03-03T11:45:04.000Z + 2026-03-03T11:45:04.544Z monthly 0.8 @@ -13448,7 +13637,7 @@ https://www.rfc1437.de/2011/04/28/f-sharp-programming-wikibooks-open-books-for-an-open-world/ - 2026-03-03T11:45:09.000Z + 2026-03-03T11:45:09.158Z monthly 0.8 @@ -13457,7 +13646,7 @@ https://www.rfc1437.de/2011/04/28/tomtom-entschuldigt-sich-wegen-datenweitergabe-fur-radarfallen/ - 2026-03-03T11:45:14.000Z + 2026-03-03T11:45:14.436Z monthly 0.8 @@ -13466,7 +13655,7 @@ https://www.rfc1437.de/2011/04/28/apple-qa-on-location-data/ - 2026-03-03T11:45:19.000Z + 2026-03-03T11:45:19.110Z monthly 0.8 @@ -13475,7 +13664,7 @@ https://www.rfc1437.de/2011/04/27/neulich-auf-flickr/ - 2026-03-03T11:45:22.000Z + 2026-03-03T11:45:22.853Z monthly 0.8 @@ -13484,7 +13673,7 @@ https://www.rfc1437.de/2011/04/27/home-redline-smalltalk-smalltalk-for-the-java-virtual-machine/ - 2026-03-03T11:45:26.000Z + 2026-03-03T11:45:26.526Z monthly 0.8 @@ -13493,7 +13682,7 @@ https://www.rfc1437.de/2011/04/27/comics-by-nick-st-john/ - 2026-03-03T11:45:30.000Z + 2026-03-03T11:45:30.346Z monthly 0.8 @@ -13502,7 +13691,7 @@ https://www.rfc1437.de/2011/04/27/download-adobe-lens-profile-creator-preview-adobe-labs/ - 2026-03-03T11:45:35.000Z + 2026-03-03T11:45:35.520Z monthly 0.8 @@ -13511,7 +13700,7 @@ https://www.rfc1437.de/2011/04/27/geotagging-fotospot-macht-digitalkameras-gps-fahig-golem-de/ - 2026-03-03T11:45:41.000Z + 2026-03-03T11:45:41.423Z monthly 0.8 @@ -13520,7 +13709,7 @@ https://www.rfc1437.de/2011/04/27/folgenschwerer-psn-hack-personliche-kundendaten-kopiert-golem-de/ - 2026-03-03T11:45:46.000Z + 2026-03-03T11:45:46.061Z monthly 0.8 @@ -13529,7 +13718,7 @@ https://www.rfc1437.de/2011/04/27/photosmith-e2-80-93-the-grand-tour-photosmith-e2-80-93-the-ipad-mobile-companion-for-adobe-lightroom/ - 2026-03-03T11:45:50.000Z + 2026-03-03T11:45:50.902Z monthly 0.8 @@ -13538,7 +13727,7 @@ https://www.rfc1437.de/2011/04/27/lightroom-auto-sync-how-to-use-it/ - 2026-03-03T11:45:55.000Z + 2026-03-03T11:45:55.636Z monthly 0.8 @@ -13547,7 +13736,7 @@ https://www.rfc1437.de/2011/04/26/piroggen-vegetarisch-und-so-garnicht-russisch/ - 2026-03-03T11:46:01.000Z + 2026-03-03T11:46:01.214Z monthly 0.8 @@ -13556,7 +13745,7 @@ https://www.rfc1437.de/2011/04/26/the-plan-for-mods-the-word-of-notch/ - 2026-03-03T11:46:05.000Z + 2026-03-03T11:46:05.856Z monthly 0.8 @@ -13565,7 +13754,7 @@ https://www.rfc1437.de/2011/04/25/tvon-python-wordpress-overview-e2-80-93-bitbucket/ - 2026-03-03T11:46:10.000Z + 2026-03-03T11:46:10.266Z monthly 0.8 @@ -13574,7 +13763,7 @@ https://www.rfc1437.de/2011/04/25/backing-up-flickr/ - 2026-03-03T11:46:14.000Z + 2026-03-03T11:46:14.974Z monthly 0.8 @@ -13583,7 +13772,7 @@ https://www.rfc1437.de/2011/04/24/aws-developer-forums-life-of-our-patients-is-at-stake-i-am/ - 2026-03-03T11:46:21.000Z + 2026-03-03T11:46:21.824Z monthly 0.8 @@ -13592,7 +13781,7 @@ https://www.rfc1437.de/2011/04/23/real-world-minecraft/ - 2026-03-03T11:46:25.000Z + 2026-03-03T11:46:25.457Z monthly 0.8 @@ -13601,7 +13790,7 @@ https://www.rfc1437.de/2011/04/22/iphone-consolidated-db/ - 2026-03-03T11:46:30.000Z + 2026-03-03T11:46:30.753Z monthly 0.8 @@ -13610,7 +13799,7 @@ https://www.rfc1437.de/2011/04/22/leica-summilux-35mm-1-4-asph-fle/ - 2026-03-03T11:46:35.000Z + 2026-03-03T11:46:35.230Z monthly 0.8 @@ -13619,7 +13808,7 @@ https://www.rfc1437.de/2011/04/22/munster-bekennt-farbe/ - 2026-03-03T11:46:39.000Z + 2026-03-03T11:46:39.948Z monthly 0.8 @@ -13628,7 +13817,7 @@ https://www.rfc1437.de/2011/04/22/natur-erobert-geschichte/ - 2026-03-03T11:46:43.000Z + 2026-03-03T11:46:43.225Z monthly 0.8 @@ -13637,7 +13826,7 @@ https://www.rfc1437.de/2011/04/22/zwinger-in-munster/ - 2026-03-03T11:46:47.000Z + 2026-03-03T11:46:47.667Z monthly 0.8 @@ -13646,7 +13835,7 @@ https://www.rfc1437.de/2011/04/22/patentklage-google-wegen-linux-servern-in-erster-instanz-verurteilt-golem-de/ - 2026-03-03T11:46:53.000Z + 2026-03-03T11:46:53.575Z monthly 0.8 @@ -13655,7 +13844,7 @@ https://www.rfc1437.de/2011/04/20/kodak-dc20-datenblatt/ - 2026-03-03T11:46:58.000Z + 2026-03-03T11:46:58.098Z monthly 0.8 @@ -13664,7 +13853,7 @@ https://www.rfc1437.de/2011/04/20/diskussion-um-karfreitagsruhe-wdr-2-der-sender/ - 2026-03-03T11:47:02.000Z + 2026-03-03T11:47:02.737Z monthly 0.8 @@ -13673,7 +13862,7 @@ https://www.rfc1437.de/2011/04/20/gondor-e2-80-94-effortless-production-django-hosting/ - 2026-03-03T11:47:06.000Z + 2026-03-03T11:47:06.855Z monthly 0.8 @@ -13682,7 +13871,7 @@ https://www.rfc1437.de/2011/04/20/kodak-760m-review/ - 2026-03-03T11:47:10.000Z + 2026-03-03T11:47:10.941Z monthly 0.8 @@ -13691,7 +13880,7 @@ https://www.rfc1437.de/2011/04/20/minolta-dimage-rd3000-digital-camera-review-intro-and-highlights/ - 2026-03-03T11:47:15.000Z + 2026-03-03T11:47:15.529Z monthly 0.8 @@ -13700,7 +13889,7 @@ https://www.rfc1437.de/2011/04/19/broadway-update-3-c2-ab-alexander-larsson/ - 2026-03-03T11:47:19.000Z + 2026-03-03T11:47:19.642Z monthly 0.8 @@ -13709,7 +13898,7 @@ https://www.rfc1437.de/2011/04/19/ratingagentur-stellt-bonitat-der-usa-infrage-tagesschau-de/ - 2026-03-03T11:47:24.000Z + 2026-03-03T11:47:24.693Z monthly 0.8 @@ -13718,7 +13907,7 @@ https://www.rfc1437.de/2011/04/18/snooping-its-not-a-crime-its-a-feature-computerworld/ - 2026-03-03T11:47:29.000Z + 2026-03-03T11:47:29.808Z monthly 0.8 @@ -13727,7 +13916,7 @@ https://www.rfc1437.de/2011/04/18/jess-the-rule-engine-for-the-java-platform/ - 2026-03-03T11:47:34.000Z + 2026-03-03T11:47:34.844Z monthly 0.8 @@ -13736,7 +13925,7 @@ https://www.rfc1437.de/2011/04/18/evolutie-test/ - 2026-03-03T11:47:38.000Z + 2026-03-03T11:47:38.992Z monthly 0.8 @@ -13745,7 +13934,7 @@ https://www.rfc1437.de/2011/04/18/re-factor-mail-with-gui/ - 2026-03-03T11:47:43.000Z + 2026-03-03T11:47:43.007Z monthly 0.8 @@ -13754,7 +13943,7 @@ https://www.rfc1437.de/2011/04/17/quiche-ratatuille/ - 2026-03-03T11:47:48.000Z + 2026-03-03T11:47:48.389Z monthly 0.8 @@ -13763,7 +13952,7 @@ https://www.rfc1437.de/2011/04/16/und-weil-ich-grade-von-schleuse-schreibe/ - 2026-03-03T11:47:52.000Z + 2026-03-03T11:47:52.696Z monthly 0.8 @@ -13772,7 +13961,7 @@ https://www.rfc1437.de/2011/04/16/munster-in-schwarzweis/ - 2026-03-03T11:47:57.000Z + 2026-03-03T11:47:57.453Z monthly 0.8 @@ -13781,7 +13970,7 @@ https://www.rfc1437.de/2011/04/15/toshiba-releases-self-erasing-drives-computerworld/ - 2026-03-07T21:06:48.000Z + 2026-03-07T21:06:48.290Z monthly 0.8 @@ -13790,7 +13979,7 @@ https://www.rfc1437.de/2011/04/15/is-chernobyl-a-wild-kingdom-or-a-radioactive-den-of-decay-magazine/ - 2026-03-03T11:48:06.000Z + 2026-03-03T11:48:06.639Z monthly 0.8 @@ -13799,7 +13988,7 @@ https://www.rfc1437.de/2011/04/15/virtuawin-virtual-desktops-for-windows/ - 2026-03-03T11:48:10.000Z + 2026-03-03T11:48:10.431Z monthly 0.8 @@ -13808,7 +13997,7 @@ https://www.rfc1437.de/2011/04/14/re-factor-xkcd/ - 2026-03-03T11:48:15.000Z + 2026-03-03T11:48:15.654Z monthly 0.8 @@ -13817,7 +14006,7 @@ https://www.rfc1437.de/2011/04/14/deutlich-erhohte-strahlung-in-der-asse-ndr-de-regional-niedersachsen-braunschweigharzgottingen/ - 2026-03-03T11:48:20.000Z + 2026-03-03T11:48:20.798Z monthly 0.8 @@ -13826,7 +14015,7 @@ https://www.rfc1437.de/2011/04/14/akka-project/ - 2026-03-03T11:48:25.000Z + 2026-03-03T11:48:25.546Z monthly 0.8 @@ -13835,7 +14024,7 @@ https://www.rfc1437.de/2011/04/14/programming-scala/ - 2026-03-03T11:48:29.000Z + 2026-03-03T11:48:29.829Z monthly 0.8 @@ -13844,7 +14033,7 @@ https://www.rfc1437.de/2011/04/14/scalaquery/ - 2026-03-03T11:48:33.000Z + 2026-03-03T11:48:33.957Z monthly 0.8 @@ -13853,7 +14042,7 @@ https://www.rfc1437.de/2011/04/14/programming-in-scala-first-edition/ - 2026-03-03T11:48:38.000Z + 2026-03-03T11:48:38.163Z monthly 0.8 @@ -13862,7 +14051,7 @@ https://www.rfc1437.de/2011/04/14/scala-ide-for-eclipse/ - 2026-03-03T11:48:42.000Z + 2026-03-03T11:48:42.865Z monthly 0.8 @@ -13871,7 +14060,7 @@ https://www.rfc1437.de/2011/04/12/why-do-i-do-what-i-do/ - 2026-03-03T11:48:46.000Z + 2026-03-03T11:48:46.676Z monthly 0.8 @@ -13880,7 +14069,7 @@ https://www.rfc1437.de/2011/04/12/mannerspielzeug/ - 2026-03-03T11:48:50.000Z + 2026-03-03T11:48:50.029Z monthly 0.8 @@ -13889,7 +14078,7 @@ https://www.rfc1437.de/2011/04/12/usb-port/ - 2026-03-03T11:48:54.000Z + 2026-03-03T11:48:54.190Z monthly 0.8 @@ -13898,7 +14087,7 @@ https://www.rfc1437.de/2011/04/11/agronholm-jython-swingutils-source-e2-80-93-bitbucket/ - 2026-03-03T11:48:58.000Z + 2026-03-03T11:48:58.346Z monthly 0.8 @@ -13907,7 +14096,7 @@ https://www.rfc1437.de/2011/04/11/code-rant-message-queue-shootout/ - 2026-03-03T11:49:03.000Z + 2026-03-03T11:49:03.511Z monthly 0.8 @@ -13916,7 +14105,7 @@ https://www.rfc1437.de/2011/04/11/nosql-databases/ - 2026-03-03T11:49:07.000Z + 2026-03-03T11:49:07.263Z monthly 0.8 @@ -13925,7 +14114,7 @@ https://www.rfc1437.de/2011/04/07/bbc-news-net-giants-challenge-french-data-law/ - 2026-03-03T11:49:12.000Z + 2026-03-03T11:49:12.531Z monthly 0.8 @@ -13934,7 +14123,7 @@ https://www.rfc1437.de/2011/04/07/warum-die-visa-warndatei-eine-schweinerei-ist-bei-metronaut-de-e2-80-93-big-berlin-bullshit-blog/ - 2026-03-03T11:49:17.000Z + 2026-03-03T11:49:17.624Z monthly 0.8 @@ -13943,7 +14132,7 @@ https://www.rfc1437.de/2011/04/06/visionmediaasset-github/ - 2026-03-03T11:49:21.000Z + 2026-03-03T11:49:21.836Z monthly 0.8 @@ -13952,7 +14141,7 @@ https://www.rfc1437.de/2011/04/06/jrumble-a-jquery-plugin-that-rumbles-elements/ - 2026-03-03T11:49:26.000Z + 2026-03-03T11:49:26.016Z monthly 0.8 @@ -13961,7 +14150,7 @@ https://www.rfc1437.de/2011/04/06/python-package-index-pip-1-0/ - 2026-03-03T11:49:30.000Z + 2026-03-03T11:49:30.776Z monthly 0.8 @@ -13970,7 +14159,7 @@ https://www.rfc1437.de/2011/04/06/sunng87jip-github/ - 2026-03-03T11:49:35.000Z + 2026-03-03T11:49:35.557Z monthly 0.8 @@ -13979,7 +14168,7 @@ https://www.rfc1437.de/2011/04/06/exploring-beautiful-languages-a-quick-look-at-apl/ - 2026-03-03T11:49:39.000Z + 2026-03-03T11:49:39.861Z monthly 0.8 @@ -13988,7 +14177,7 @@ https://www.rfc1437.de/2011/04/06/how-i-learned-to-stop-worrying-and-write-my-own-orm/ - 2026-03-03T11:49:44.000Z + 2026-03-03T11:49:44.658Z monthly 0.8 @@ -13997,7 +14186,7 @@ https://www.rfc1437.de/2011/04/06/dapper-dot-net-simple-sql-object-mapper-for-sql-server-google-project-hosting/ - 2026-03-03T11:49:48.000Z + 2026-03-03T11:49:48.832Z monthly 0.8 @@ -14006,7 +14195,7 @@ https://www.rfc1437.de/2011/04/06/philikon-python-weave-client-overview-e2-80-93-bitbucket/ - 2026-03-03T11:49:53.000Z + 2026-03-03T11:49:53.601Z monthly 0.8 @@ -14015,7 +14204,7 @@ https://www.rfc1437.de/2011/04/06/philikon-weaveclient-chromium-overview-e2-80-93-bitbucket/ - 2026-03-03T11:49:58.000Z + 2026-03-03T11:49:58.549Z monthly 0.8 @@ -14024,7 +14213,7 @@ https://www.rfc1437.de/2011/04/06/bill-gates-e2-80-9cin-toilets-we-e2-80-99re-the-kings-e2-80-9d-spreeblick/ - 2026-03-03T11:50:04.000Z + 2026-03-03T11:50:04.130Z monthly 0.8 @@ -14033,7 +14222,7 @@ https://www.rfc1437.de/2011/04/06/video-lightbox-binden-sie-videos-mit-lightbox-effekt-in-ihre-internetseite-ein/ - 2026-03-03T11:50:09.000Z + 2026-03-03T11:50:09.102Z monthly 0.8 @@ -14042,7 +14231,7 @@ https://www.rfc1437.de/2011/04/04/julienpalardpipe-github/ - 2026-03-03T11:50:13.000Z + 2026-03-03T11:50:13.834Z monthly 0.8 @@ -14051,7 +14240,7 @@ https://www.rfc1437.de/2011/04/03/krumeltorte/ - 2026-03-03T11:50:19.000Z + 2026-03-03T11:50:19.350Z monthly 0.8 @@ -14060,7 +14249,7 @@ https://www.rfc1437.de/2011/04/03/sammelsurium-aus-hamburg/ - 2026-03-03T11:50:23.000Z + 2026-03-03T11:50:23.980Z monthly 0.8 @@ -14069,7 +14258,7 @@ https://www.rfc1437.de/2011/03/31/pangelanton/ - 2026-03-03T11:50:28.000Z + 2026-03-03T11:50:28.541Z monthly 0.8 @@ -14078,7 +14267,7 @@ https://www.rfc1437.de/2011/03/30/markrendlesimple-data-github/ - 2026-03-03T11:50:32.000Z + 2026-03-03T11:50:32.241Z monthly 0.8 @@ -14087,7 +14276,7 @@ https://www.rfc1437.de/2011/03/29/send-in-munster-mal-wieder/ - 2026-03-03T11:50:37.000Z + 2026-03-03T11:50:37.054Z monthly 0.8 @@ -14096,7 +14285,7 @@ https://www.rfc1437.de/2011/03/29/tuckesburg-und-alter-zoo/ - 2026-03-03T11:50:41.000Z + 2026-03-03T11:50:41.329Z monthly 0.8 @@ -14105,7 +14294,7 @@ https://www.rfc1437.de/2011/03/29/basho-an-introduction-to-riak/ - 2026-03-03T11:50:46.000Z + 2026-03-03T11:50:46.109Z monthly 0.8 @@ -14114,7 +14303,7 @@ https://www.rfc1437.de/2011/03/28/hbase-vs-cassandra-why-we-moved-c2-ab-dominic-williams/ - 2026-03-03T11:50:50.000Z + 2026-03-03T11:50:50.933Z monthly 0.8 @@ -14123,7 +14312,7 @@ https://www.rfc1437.de/2011/03/28/brisk-e2-80-93-apache-hadoop-e2-84-a2-powered-by-cassandra-datastax/ - 2026-03-03T11:50:55.000Z + 2026-03-03T11:50:55.633Z monthly 0.8 @@ -14132,7 +14321,7 @@ https://www.rfc1437.de/2011/03/28/hive-data-warehousing-analytics-on-hadoop/ - 2026-03-03T11:51:00.000Z + 2026-03-03T11:51:00.826Z monthly 0.8 @@ -14141,7 +14330,7 @@ https://www.rfc1437.de/2011/03/28/apache-thrift/ - 2026-03-03T11:51:05.000Z + 2026-03-03T11:51:05.537Z monthly 0.8 @@ -14150,7 +14339,7 @@ https://www.rfc1437.de/2011/03/28/the-secrets-of-building-realtime-big-data-systems/ - 2026-03-03T11:51:09.000Z + 2026-03-03T11:51:09.852Z monthly 0.8 @@ -14159,7 +14348,7 @@ https://www.rfc1437.de/2011/03/28/nathanmarzelephantdb-github/ - 2026-03-03T11:51:13.000Z + 2026-03-03T11:51:13.753Z monthly 0.8 @@ -14168,7 +14357,7 @@ https://www.rfc1437.de/2011/03/28/nathanmarzcascalog-github/ - 2026-03-03T11:51:18.000Z + 2026-03-03T11:51:18.061Z monthly 0.8 @@ -14177,7 +14366,7 @@ https://www.rfc1437.de/2011/03/27/javascript-quotations-c2-ab-ironjs-blog/ - 2026-03-03T11:51:22.000Z + 2026-03-03T11:51:22.307Z monthly 0.8 @@ -14186,7 +14375,7 @@ https://www.rfc1437.de/2011/03/26/microsoft-shuts-off-https-in-hotmail-for-over-a-dozen-countries-electronic-frontier-foundation/ - 2026-03-03T11:51:26.000Z + 2026-03-03T11:51:26.994Z monthly 0.8 @@ -14195,7 +14384,7 @@ https://www.rfc1437.de/2011/03/25/enterprise-java-development-tools-springsource/ - 2026-03-03T11:51:30.000Z + 2026-03-03T11:51:30.973Z monthly 0.8 @@ -14204,7 +14393,7 @@ https://www.rfc1437.de/2011/03/25/trinity-microsoft-research/ - 2026-03-03T11:51:35.000Z + 2026-03-03T11:51:35.308Z monthly 0.8 @@ -14213,7 +14402,7 @@ https://www.rfc1437.de/2011/03/22/programming-motherfucker/ - 2026-03-07T21:06:49.000Z + 2026-03-07T21:06:49.137Z monthly 0.8 @@ -14222,7 +14411,7 @@ https://www.rfc1437.de/2011/03/22/why-cloud9-deserves-your-attention-nettuts/ - 2026-03-03T11:51:42.000Z + 2026-03-03T11:51:42.460Z monthly 0.8 @@ -14231,7 +14420,7 @@ https://www.rfc1437.de/2011/03/22/django-nonrel-nosql-support-for-django-all-buttons-pressed/ - 2026-03-03T11:51:46.000Z + 2026-03-03T11:51:46.727Z monthly 0.8 @@ -14240,7 +14429,7 @@ https://www.rfc1437.de/2011/03/21/wordpress-e2-80-ba-really-static-c2-ab-wordpress-plugins/ - 2026-03-03T11:51:51.000Z + 2026-03-03T11:51:51.928Z monthly 0.8 @@ -14249,7 +14438,7 @@ https://www.rfc1437.de/2011/03/20/vundle-0-7-is-out-gmarik-info/ - 2026-03-03T11:51:59.000Z + 2026-03-03T11:51:59.094Z monthly 0.8 @@ -14258,7 +14447,7 @@ https://www.rfc1437.de/2011/03/19/gefullte-paprika-im-tomatenbett/ - 2026-03-03T11:52:04.000Z + 2026-03-03T11:52:04.878Z monthly 0.8 @@ -14267,7 +14456,7 @@ https://www.rfc1437.de/2011/03/16/adobe-photoshop-lightroom-3-exporting-using-publish-services/ - 2026-03-03T11:52:10.000Z + 2026-03-03T11:52:10.386Z monthly 0.8 @@ -14276,7 +14465,7 @@ https://www.rfc1437.de/2011/03/15/datenschutzer-piwik-statt-google-analytics/ - 2026-03-03T11:52:15.000Z + 2026-03-03T11:52:15.026Z monthly 0.8 @@ -14285,7 +14474,7 @@ https://www.rfc1437.de/2011/03/15/after-church-club/ - 2026-03-03T11:52:20.000Z + 2026-03-03T11:52:20.102Z monthly 0.8 @@ -14294,7 +14483,7 @@ https://www.rfc1437.de/2011/03/15/kiepenkerle-kiepenkerls/ - 2026-03-03T11:52:25.000Z + 2026-03-03T11:52:25.644Z monthly 0.8 @@ -14303,7 +14492,7 @@ https://www.rfc1437.de/2011/03/15/turfiguren/ - 2026-03-03T11:52:30.000Z + 2026-03-03T11:52:30.485Z monthly 0.8 @@ -14312,7 +14501,7 @@ https://www.rfc1437.de/2011/03/14/with-hacking-music-can-take-control-of-your-car-itworld/ - 2026-03-07T21:06:50.000Z + 2026-03-07T21:06:50.375Z monthly 0.8 @@ -14321,7 +14510,7 @@ https://www.rfc1437.de/2011/03/14/satellite-photos-japan-before-and-after-tsunami-interactive-feature-nytimes-com/ - 2026-03-03T11:52:40.000Z + 2026-03-03T11:52:40.928Z monthly 0.8 @@ -14330,7 +14519,7 @@ https://www.rfc1437.de/2011/03/14/programming-languages-progopedia-encyclopedia-of-programming-languages/ - 2026-03-03T11:52:44.000Z + 2026-03-03T11:52:44.832Z monthly 0.8 @@ -14339,7 +14528,7 @@ https://www.rfc1437.de/2011/03/14/instagram/ - 2026-03-03T11:52:49.000Z + 2026-03-03T11:52:49.288Z monthly 0.8 @@ -14348,7 +14537,7 @@ https://www.rfc1437.de/2011/03/14/pdict-py-at-master-from-segfaulthuntersandbox-github/ - 2026-03-03T11:52:54.000Z + 2026-03-03T11:52:54.641Z monthly 0.8 @@ -14357,7 +14546,7 @@ https://www.rfc1437.de/2011/03/13/shuttersnitch/ - 2026-03-03T11:53:01.000Z + 2026-03-03T11:53:01.185Z monthly 0.8 @@ -14366,7 +14555,7 @@ https://www.rfc1437.de/2011/03/13/rob-galbraith-dpi-alex-majoli-points-and-shoots/ - 2026-03-03T11:53:06.000Z + 2026-03-03T11:53:06.213Z monthly 0.8 @@ -14375,7 +14564,7 @@ https://www.rfc1437.de/2011/03/13/howto-using-radio2/ - 2026-03-03T11:53:11.000Z + 2026-03-03T11:53:11.162Z monthly 0.8 @@ -14384,7 +14573,7 @@ https://www.rfc1437.de/2011/03/13/threads-sind-ein-hammer-aber-nicht-jedes-problem-ist-ein-nagel/ - 2026-03-03T11:53:16.000Z + 2026-03-03T11:53:16.532Z monthly 0.8 @@ -14393,7 +14582,7 @@ https://www.rfc1437.de/2011/03/13/dieses-vertuschen-und-verzogern-ist-ein-unfassbarer-skandal-die-methoden-der-atomlobby-taz-de/ - 2026-03-03T11:53:22.000Z + 2026-03-03T11:53:22.126Z monthly 0.8 @@ -14402,7 +14591,7 @@ https://www.rfc1437.de/2011/03/12/minestrone-fur-die-ganze-familie/ - 2026-03-03T11:53:27.000Z + 2026-03-03T11:53:27.792Z monthly 0.8 @@ -14411,7 +14600,7 @@ https://www.rfc1437.de/2011/03/12/re-factor-google-charts/ - 2026-03-03T11:53:32.000Z + 2026-03-03T11:53:32.230Z monthly 0.8 @@ -14420,7 +14609,7 @@ https://www.rfc1437.de/2011/03/12/kernschmelze-in-japan-immer-wahrscheinlicher/ - 2026-03-03T11:53:37.000Z + 2026-03-03T11:53:37.472Z monthly 0.8 @@ -14429,7 +14618,7 @@ https://www.rfc1437.de/2011/03/12/twitters-grosenwahn/ - 2026-03-03T11:53:43.000Z + 2026-03-03T11:53:43.361Z monthly 0.8 @@ -14438,7 +14627,7 @@ https://www.rfc1437.de/2011/03/11/python-tools-for-visual-studio/ - 2026-03-03T11:53:48.000Z + 2026-03-03T11:53:48.640Z monthly 0.8 @@ -14447,7 +14636,7 @@ https://www.rfc1437.de/2011/03/11/abcl-release-notes-v0-25/ - 2026-03-03T11:53:54.000Z + 2026-03-03T11:53:54.116Z monthly 0.8 @@ -14456,7 +14645,7 @@ https://www.rfc1437.de/2011/03/09/bbc-news-voyager-still-dancing-17-billion-km-from-earth/ - 2026-03-03T11:53:58.000Z + 2026-03-03T11:53:58.485Z monthly 0.8 @@ -14465,7 +14654,7 @@ https://www.rfc1437.de/2011/03/09/j-source/ - 2026-03-03T11:54:02.000Z + 2026-03-03T11:54:02.726Z monthly 0.8 @@ -14474,7 +14663,7 @@ https://www.rfc1437.de/2011/03/09/bluemarine-home/ - 2026-03-03T11:54:07.000Z + 2026-03-03T11:54:07.638Z monthly 0.8 @@ -14483,7 +14672,7 @@ https://www.rfc1437.de/2011/03/09/darktable-news/ - 2026-03-03T11:54:12.000Z + 2026-03-03T11:54:12.992Z monthly 0.8 @@ -14492,7 +14681,7 @@ https://www.rfc1437.de/2011/03/08/fantasm-project-hosting-on-google-code/ - 2026-03-03T11:54:16.000Z + 2026-03-03T11:54:16.957Z monthly 0.8 @@ -14501,7 +14690,7 @@ https://www.rfc1437.de/2011/03/08/seltsame-phanomene-in-iphoto/ - 2026-03-03T11:54:22.000Z + 2026-03-03T11:54:22.157Z monthly 0.8 @@ -14510,7 +14699,7 @@ https://www.rfc1437.de/2011/03/07/harukizaemonhamster-github/ - 2026-03-03T11:54:26.000Z + 2026-03-03T11:54:26.398Z monthly 0.8 @@ -14519,7 +14708,7 @@ https://www.rfc1437.de/2011/03/07/pyjamas-python-javascript-compiler-desktop-widget-set-and-ria-web-framework/ - 2026-03-03T11:54:30.000Z + 2026-03-03T11:54:30.767Z monthly 0.8 @@ -14528,7 +14717,7 @@ https://www.rfc1437.de/2011/03/07/pqc-project-hosting-on-google-code/ - 2026-03-03T11:54:35.000Z + 2026-03-03T11:54:35.188Z monthly 0.8 @@ -14537,7 +14726,7 @@ https://www.rfc1437.de/2011/03/06/idiotisches-interfacedesign/ - 2026-03-03T11:54:39.000Z + 2026-03-03T11:54:39.943Z monthly 0.8 @@ -14546,7 +14735,7 @@ https://www.rfc1437.de/2011/03/06/apple-kann-einfach-keine-verschlusselung/ - 2026-03-03T11:54:44.000Z + 2026-03-03T11:54:44.733Z monthly 0.8 @@ -14555,7 +14744,7 @@ https://www.rfc1437.de/2011/03/06/the-sinclair-zx81-30-years-old-today-winterdrake/ - 2026-03-03T11:54:49.000Z + 2026-03-03T11:54:49.694Z monthly 0.8 @@ -14564,7 +14753,7 @@ https://www.rfc1437.de/2011/03/05/pferderouladen-mit-ratatouille/ - 2026-03-03T11:54:55.000Z + 2026-03-03T11:54:55.351Z monthly 0.8 @@ -14573,7 +14762,7 @@ https://www.rfc1437.de/2011/03/04/jsfiddle-javascript-editor/ - 2026-03-03T11:54:59.000Z + 2026-03-03T11:54:59.795Z monthly 0.8 @@ -14582,7 +14771,7 @@ https://www.rfc1437.de/2011/03/04/wordpress-and-html-5/ - 2026-03-03T11:55:04.000Z + 2026-03-03T11:55:04.924Z monthly 0.8 @@ -14591,7 +14780,7 @@ https://www.rfc1437.de/2011/03/04/baluptonhistory-js-github/ - 2026-03-03T11:55:09.000Z + 2026-03-03T11:55:09.183Z monthly 0.8 @@ -14600,7 +14789,7 @@ https://www.rfc1437.de/2011/03/02/handwuhlen-e2-80-93-wikipedia/ - 2026-03-03T11:55:13.000Z + 2026-03-03T11:55:13.234Z monthly 0.8 @@ -14609,7 +14798,7 @@ https://www.rfc1437.de/2011/03/02/paprika-bohnen-suppe-mit-hack/ - 2026-03-03T11:55:18.000Z + 2026-03-03T11:55:18.712Z monthly 0.8 @@ -14618,7 +14807,7 @@ https://www.rfc1437.de/2011/03/01/plagiatsaffare-doktorvater-distanziert-sich-von-zu-guttenberg-tagesschau-de/ - 2026-03-03T11:55:22.000Z + 2026-03-03T11:55:22.854Z monthly 0.8 @@ -14627,7 +14816,7 @@ https://www.rfc1437.de/2011/02/28/wordpress-e2-80-ba-json-api-c2-ab-wordpress-plugins/ - 2026-03-03T11:55:26.000Z + 2026-03-03T11:55:26.859Z monthly 0.8 @@ -14636,7 +14825,7 @@ https://www.rfc1437.de/2011/02/27/feeding-the-bit-bucket-c2-bb-blog-archive-c2-bb-common-lisp-clojure-and-evolution/ - 2026-03-03T11:55:31.000Z + 2026-03-03T11:55:31.867Z monthly 0.8 @@ -14645,7 +14834,7 @@ https://www.rfc1437.de/2011/02/27/naked-password-jquery-plugin-to-encourage-stronger-passwords/ - 2026-03-03T11:55:35.000Z + 2026-03-03T11:55:35.431Z monthly 0.8 @@ -14654,7 +14843,7 @@ https://www.rfc1437.de/2011/02/27/wochenmarkt-in-munster/ - 2026-03-03T11:55:39.000Z + 2026-03-03T11:55:39.462Z monthly 0.8 @@ -14663,7 +14852,7 @@ https://www.rfc1437.de/2011/02/26/hundreds-of-tourist-photos-weaved-into-one-18-total-my-modern-metropolis/ - 2026-03-03T11:55:44.000Z + 2026-03-03T11:55:44.278Z monthly 0.8 @@ -14672,7 +14861,7 @@ https://www.rfc1437.de/2011/02/26/fairytales/ - 2026-03-03T11:55:48.000Z + 2026-03-03T11:55:48.516Z monthly 0.8 @@ -14681,7 +14870,7 @@ https://www.rfc1437.de/2011/02/26/rfc1437-on-the-road/ - 2026-03-03T11:55:53.000Z + 2026-03-03T11:55:53.549Z monthly 0.8 @@ -14690,7 +14879,7 @@ https://www.rfc1437.de/2011/02/25/ihr-seid-helden/ - 2026-03-03T11:55:58.000Z + 2026-03-03T11:55:58.597Z monthly 0.8 @@ -14699,7 +14888,7 @@ https://www.rfc1437.de/2011/02/25/mostawesomedudebravo-github/ - 2026-03-03T11:56:03.000Z + 2026-03-03T11:56:03.418Z monthly 0.8 @@ -14708,7 +14897,7 @@ https://www.rfc1437.de/2011/02/23/ada-95-the-craft-of-object-oriented-programming/ - 2026-03-03T11:56:07.000Z + 2026-03-03T11:56:07.898Z monthly 0.8 @@ -14717,7 +14906,7 @@ https://www.rfc1437.de/2011/02/22/ip-adressen-und-datenschutz/ - 2026-03-03T11:56:13.000Z + 2026-03-03T11:56:13.137Z monthly 0.8 @@ -14726,7 +14915,7 @@ https://www.rfc1437.de/2011/02/21/andescotia-software-products-martentrade-ide-1-4/ - 2026-03-03T11:56:18.000Z + 2026-03-03T11:56:18.625Z monthly 0.8 @@ -14735,7 +14924,7 @@ https://www.rfc1437.de/2011/02/21/hotzenscalaflow-github/ - 2026-03-03T11:56:23.000Z + 2026-03-03T11:56:23.613Z monthly 0.8 @@ -14744,7 +14933,7 @@ https://www.rfc1437.de/2011/02/21/jsspeccy-a-zx-spectrum-emulator-in-javascript-c2-ab-matt-west-co-tt/ - 2026-03-03T11:56:27.000Z + 2026-03-03T11:56:27.591Z monthly 0.8 @@ -14753,7 +14942,7 @@ https://www.rfc1437.de/2011/02/21/remogattogospeccy-github/ - 2026-03-03T11:56:32.000Z + 2026-03-03T11:56:32.022Z monthly 0.8 @@ -14762,7 +14951,7 @@ https://www.rfc1437.de/2011/02/21/lsyncd-project-hosting-on-google-code/ - 2026-03-03T11:56:36.000Z + 2026-03-03T11:56:36.826Z monthly 0.8 @@ -14771,7 +14960,7 @@ https://www.rfc1437.de/2011/02/19/plagiate-e2-80-93-guttenplag-wiki/ - 2026-03-03T11:56:41.000Z + 2026-03-03T11:56:41.759Z monthly 0.8 @@ -14780,7 +14969,7 @@ https://www.rfc1437.de/2011/02/17/ms-optical-super-triplet-perar-3-535-japan-exposures/ - 2026-03-03T11:56:47.000Z + 2026-03-03T11:56:47.382Z monthly 0.8 @@ -14789,7 +14978,7 @@ https://www.rfc1437.de/2011/02/16/spherical-aberration/ - 2026-03-03T11:56:52.000Z + 2026-03-03T11:56:52.219Z monthly 0.8 @@ -14798,7 +14987,7 @@ https://www.rfc1437.de/2011/02/16/bophoto-com-m8-coder-simple-manual-handcoding-of-m-lenses/ - 2026-03-03T11:56:57.000Z + 2026-03-03T11:56:57.893Z monthly 0.8 @@ -14807,7 +14996,7 @@ https://www.rfc1437.de/2011/02/16/get-inpulse-and-hack-your-watch-home/ - 2026-03-03T11:57:01.000Z + 2026-03-03T11:57:01.976Z monthly 0.8 @@ -14816,7 +15005,7 @@ https://www.rfc1437.de/2011/02/16/pypy-status-blog-pypy-winter-sprint-report/ - 2026-03-03T11:57:06.000Z + 2026-03-03T11:57:06.299Z monthly 0.8 @@ -14825,7 +15014,7 @@ https://www.rfc1437.de/2011/02/16/comparison-of-s3ql-and-other-s3-file-systems/ - 2026-03-03T11:57:10.000Z + 2026-03-03T11:57:10.472Z monthly 0.8 @@ -14834,7 +15023,7 @@ https://www.rfc1437.de/2011/02/16/s3fs-project-hosting-on-google-code/ - 2026-03-03T11:57:15.000Z + 2026-03-03T11:57:15.718Z monthly 0.8 @@ -14843,7 +15032,7 @@ https://www.rfc1437.de/2011/02/16/httpdavmodule/ - 2026-03-03T11:57:19.000Z + 2026-03-03T11:57:19.844Z monthly 0.8 @@ -14852,7 +15041,7 @@ https://www.rfc1437.de/2011/02/16/zeitung-guttenberg-schrieb-teile-seiner-doktorarbeit-ab-tagesschau-de/ - 2026-03-03T11:57:23.000Z + 2026-03-03T11:57:23.458Z monthly 0.8 @@ -14861,7 +15050,7 @@ https://www.rfc1437.de/2011/02/16/mobileme-saugt-hamster-durch-strohhalme/ - 2026-03-03T11:57:28.000Z + 2026-03-03T11:57:28.056Z monthly 0.8 @@ -14870,7 +15059,7 @@ https://www.rfc1437.de/2011/02/16/lrblog-send-images-to-your-blog-from-adobe-lightoom/ - 2026-03-03T11:57:32.000Z + 2026-03-03T11:57:32.625Z monthly 0.8 @@ -14879,7 +15068,7 @@ https://www.rfc1437.de/2011/02/16/tom-otterness-uberfrau/ - 2026-03-03T11:57:37.000Z + 2026-03-03T11:57:37.201Z monthly 0.8 @@ -14888,7 +15077,7 @@ https://www.rfc1437.de/2011/02/16/orgelpfeifen/ - 2026-03-03T11:57:41.000Z + 2026-03-03T11:57:41.771Z monthly 0.8 @@ -14897,7 +15086,7 @@ https://www.rfc1437.de/2011/02/15/contador-darf-wieder-in-den-sattel-radsport-sportschau-de/ - 2026-03-03T11:57:47.000Z + 2026-03-03T11:57:47.244Z monthly 0.8 @@ -14906,7 +15095,7 @@ https://www.rfc1437.de/2011/02/15/bracketeer-exposure-processing-software/ - 2026-03-03T11:57:51.000Z + 2026-03-03T11:57:51.436Z monthly 0.8 @@ -14915,7 +15104,7 @@ https://www.rfc1437.de/2011/02/15/kammagamma-c2-bb-articles-c2-bb-solving-the-leica-m8-dng-riddle/ - 2026-03-03T11:57:56.000Z + 2026-03-03T11:57:56.781Z monthly 0.8 @@ -14924,7 +15113,7 @@ https://www.rfc1437.de/2011/02/14/main-page-esolang/ - 2026-03-03T11:58:01.000Z + 2026-03-03T11:58:01.967Z monthly 0.8 @@ -14933,7 +15122,7 @@ https://www.rfc1437.de/2011/02/13/working-leica-m8-created-using-lego/ - 2026-03-03T11:58:05.000Z + 2026-03-03T11:58:05.799Z monthly 0.8 @@ -14942,7 +15131,7 @@ https://www.rfc1437.de/2011/02/13/3d-portfolio-of-michael-grote/ - 2026-03-03T11:58:10.000Z + 2026-03-03T11:58:10.002Z monthly 0.8 @@ -14951,7 +15140,7 @@ https://www.rfc1437.de/2011/02/13/cameras/ - 2026-03-03T11:58:14.000Z + 2026-03-03T11:58:14.827Z monthly 0.8 @@ -14960,7 +15149,7 @@ https://www.rfc1437.de/2011/02/13/e2-80-98the-beast-e2-80-99-electric-bike/ - 2026-03-03T11:58:19.000Z + 2026-03-03T11:58:19.980Z monthly 0.8 @@ -14969,7 +15158,7 @@ https://www.rfc1437.de/2011/02/12/leica-m-lens-codes/ - 2026-03-03T11:58:24.000Z + 2026-03-03T11:58:24.738Z monthly 0.8 @@ -14978,7 +15167,7 @@ https://www.rfc1437.de/2011/02/12/sourcetree-mercurial-and-git-gui-for-mac-os-x/ - 2026-03-03T11:58:29.000Z + 2026-03-03T11:58:29.023Z monthly 0.8 @@ -14987,7 +15176,7 @@ https://www.rfc1437.de/2011/02/12/jstalk-index/ - 2026-03-03T11:58:34.000Z + 2026-03-03T11:58:34.022Z monthly 0.8 @@ -14996,7 +15185,7 @@ https://www.rfc1437.de/2011/02/11/e2-80-9cdossier-de-presse-e2-80-9d-c2-ab-lucs-journal/ - 2026-03-03T11:58:38.000Z + 2026-03-03T11:58:38.722Z monthly 0.8 @@ -15005,7 +15194,7 @@ https://www.rfc1437.de/2011/02/10/advanced-sign-in-security-for-your-google-account-official-gmail-blog/ - 2026-03-03T11:58:44.000Z + 2026-03-03T11:58:44.150Z monthly 0.8 @@ -15014,7 +15203,7 @@ https://www.rfc1437.de/2011/02/10/ongoing-by-tim-bray-c2-b7-broken-links/ - 2026-03-03T11:58:49.000Z + 2026-03-03T11:58:49.517Z monthly 0.8 @@ -15023,7 +15212,7 @@ https://www.rfc1437.de/2011/02/09/beginners-gh1-custom-firmware-guide-eoshd/ - 2026-03-03T11:58:53.000Z + 2026-03-03T11:58:53.804Z monthly 0.8 @@ -15032,7 +15221,7 @@ https://www.rfc1437.de/2011/02/09/secret-texts-key-to-julian-assange-case-crime-uk-the-independent/ - 2026-03-03T11:58:59.000Z + 2026-03-03T11:58:59.640Z monthly 0.8 @@ -15041,7 +15230,7 @@ https://www.rfc1437.de/2011/02/08/scgi-wsgi-1-1-released-allan-saddis-projects-blog/ - 2026-03-03T11:59:05.000Z + 2026-03-03T11:59:05.301Z monthly 0.8 @@ -15050,7 +15239,7 @@ https://www.rfc1437.de/2011/02/07/streitfall-telekom-will-einheitlichen-de-mail-domainnamen-per-gesetz-golem-de/ - 2026-03-03T11:59:09.000Z + 2026-03-03T11:59:09.339Z monthly 0.8 @@ -15059,7 +15248,7 @@ https://www.rfc1437.de/2011/02/07/carl-zeiss-joins-micro-four-thirds-system-digital-photography-review/ - 2026-03-03T11:59:15.000Z + 2026-03-03T11:59:15.088Z monthly 0.8 @@ -15068,7 +15257,7 @@ https://www.rfc1437.de/2011/02/07/gravatars-why-publishing-your-emails-hash-is-not-a-good-idea/ - 2026-03-03T11:59:20.000Z + 2026-03-03T11:59:20.087Z monthly 0.8 @@ -15077,7 +15266,7 @@ https://www.rfc1437.de/2011/02/07/in-12-iv-12-nixie-vfd-clock/ - 2026-03-03T11:59:25.000Z + 2026-03-03T11:59:25.336Z monthly 0.8 @@ -15086,7 +15275,7 @@ https://www.rfc1437.de/2011/02/07/rur-ple/ - 2026-03-03T11:59:29.000Z + 2026-03-03T11:59:29.032Z monthly 0.8 @@ -15095,7 +15284,7 @@ https://www.rfc1437.de/2011/02/07/using-negotiate-authentication-gssapi-kerberos-with-firefox/ - 2026-03-03T11:59:33.000Z + 2026-03-03T11:59:33.682Z monthly 0.8 @@ -15104,7 +15293,7 @@ https://www.rfc1437.de/2011/02/07/neueinsteiger-kenko-will-systemkamera-mit-c-mount-objektiven-anbieten-golem-de/ - 2026-03-03T11:59:39.000Z + 2026-03-03T11:59:39.202Z monthly 0.8 @@ -15113,7 +15302,7 @@ https://www.rfc1437.de/2011/02/07/what-a-superb-owl/ - 2026-03-03T11:59:43.000Z + 2026-03-03T11:59:43.493Z monthly 0.8 @@ -15122,7 +15311,7 @@ https://www.rfc1437.de/2011/02/06/lenzig/ - 2026-03-03T11:59:47.000Z + 2026-03-03T11:59:47.152Z monthly 0.8 @@ -15131,7 +15320,7 @@ https://www.rfc1437.de/2011/02/05/how-to-write-vim-plugins-with-python/ - 2026-03-03T11:59:51.000Z + 2026-03-03T11:59:51.237Z monthly 0.8 @@ -15140,7 +15329,7 @@ https://www.rfc1437.de/2011/02/04/forum-sony-alpha-nex-open-source-firmware-linux-basiert/ - 2026-03-03T11:59:56.000Z + 2026-03-03T11:59:56.014Z monthly 0.8 @@ -15149,7 +15338,7 @@ https://www.rfc1437.de/2011/02/04/layoutspielereien/ - 2026-03-03T12:00:00.000Z + 2026-03-03T12:00:00.584Z monthly 0.8 @@ -15158,7 +15347,7 @@ https://www.rfc1437.de/2011/02/03/workingwithsubversion-mercurial/ - 2026-03-03T12:00:05.000Z + 2026-03-03T12:00:05.430Z monthly 0.8 @@ -15167,7 +15356,7 @@ https://www.rfc1437.de/2011/02/02/sorting-elements-with-jquery-e2-80-93-james-padolsey/ - 2026-03-03T12:00:09.000Z + 2026-03-03T12:00:09.282Z monthly 0.8 @@ -15176,7 +15365,7 @@ https://www.rfc1437.de/2011/02/02/slr-magic-35-1-7-lens-review-on-the-sony-nex-5-steve-huff-photos/ - 2026-03-03T12:00:15.000Z + 2026-03-03T12:00:15.015Z monthly 0.8 @@ -15185,7 +15374,7 @@ https://www.rfc1437.de/2011/02/01/ricoh-developing-m-mount-module-for-gxr-system-digital-photography-review/ - 2026-03-03T12:00:20.000Z + 2026-03-03T12:00:20.108Z monthly 0.8 @@ -15194,7 +15383,7 @@ https://www.rfc1437.de/2011/02/01/vimari-keyboard-shortcuts-extension-for-safari-github/ - 2026-03-03T12:00:24.000Z + 2026-03-03T12:00:24.206Z monthly 0.8 @@ -15203,7 +15392,7 @@ https://www.rfc1437.de/2011/02/01/google-bing-is-cheating-copying-our-search-results/ - 2026-03-03T12:00:28.000Z + 2026-03-03T12:00:28.354Z monthly 0.8 @@ -15212,7 +15401,7 @@ https://www.rfc1437.de/2011/02/01/java-hangs-when-converting-2-2250738585072012e-308-exploring-binary/ - 2026-03-03T12:00:34.000Z + 2026-03-03T12:00:34.759Z monthly 0.8 @@ -15221,7 +15410,7 @@ https://www.rfc1437.de/2011/01/31/mobl/ - 2026-03-03T12:00:40.000Z + 2026-03-03T12:00:40.612Z monthly 0.8 @@ -15230,7 +15419,7 @@ https://www.rfc1437.de/2011/01/31/three20/ - 2026-03-03T12:00:44.000Z + 2026-03-03T12:00:44.380Z monthly 0.8 @@ -15239,7 +15428,7 @@ https://www.rfc1437.de/2011/01/30/introduction-to-pharen/ - 2026-03-03T12:00:48.000Z + 2026-03-03T12:00:48.334Z monthly 0.8 @@ -15248,7 +15437,7 @@ https://www.rfc1437.de/2011/01/30/cfbolz-pyrolog-overview-e2-80-93-bitbucket/ - 2026-03-03T12:00:52.000Z + 2026-03-03T12:00:52.892Z monthly 0.8 @@ -15257,7 +15446,7 @@ https://www.rfc1437.de/2011/01/28/sho-microsoft-research/ - 2026-03-03T12:00:56.000Z + 2026-03-03T12:00:56.733Z monthly 0.8 @@ -15266,7 +15455,7 @@ https://www.rfc1437.de/2011/01/28/emips-microsoft-research/ - 2026-03-03T12:01:01.000Z + 2026-03-03T12:01:01.578Z monthly 0.8 @@ -15275,7 +15464,7 @@ https://www.rfc1437.de/2011/01/27/live-processing/ - 2026-03-03T12:01:06.000Z + 2026-03-03T12:01:06.128Z monthly 0.8 @@ -15284,7 +15473,7 @@ https://www.rfc1437.de/2011/01/26/optimizing-crajsh-e2-80-93-part-1-c2-ab-ponces-blog/ - 2026-03-03T12:01:11.000Z + 2026-03-03T12:01:11.500Z monthly 0.8 @@ -15293,7 +15482,7 @@ https://www.rfc1437.de/2011/01/26/dont-code-today-what-you-cant-debug-tomorrow-phantomjs-minimalistic-headless-webkit-based-javascript-driven-tool/ - 2026-03-03T12:01:16.000Z + 2026-03-03T12:01:16.520Z monthly 0.8 @@ -15302,7 +15491,7 @@ https://www.rfc1437.de/2011/01/24/linq-js-linq-for-javascript/ - 2026-03-03T12:01:20.000Z + 2026-03-03T12:01:20.308Z monthly 0.8 @@ -15311,7 +15500,7 @@ https://www.rfc1437.de/2011/01/21/pypy-status-blog-pypy-wants-you/ - 2026-03-03T12:01:25.000Z + 2026-03-03T12:01:25.054Z monthly 0.8 @@ -15320,7 +15509,7 @@ https://www.rfc1437.de/2011/01/21/informit-art-of-computer-programming-volume-4a-the-combinatorial-algorithms-part-1/ - 2026-03-03T12:01:31.000Z + 2026-03-03T12:01:31.511Z monthly 0.8 @@ -15329,7 +15518,7 @@ https://www.rfc1437.de/2011/01/21/devrandom-random-thoughts-on-programming-in-parentheses-coops-an-introduction-to-chicken-schemes-object-system/ - 2026-03-03T12:01:36.000Z + 2026-03-03T12:01:36.756Z monthly 0.8 @@ -15338,7 +15527,7 @@ https://www.rfc1437.de/2011/01/21/tail-call-optimization-decorator-c2-ab-python-recipes-c2-ab-activestate-code/ - 2026-03-03T12:01:42.000Z + 2026-03-03T12:01:42.074Z monthly 0.8 @@ -15347,7 +15536,7 @@ https://www.rfc1437.de/2011/01/20/app-development-tools-contrib/ - 2026-03-03T12:01:46.000Z + 2026-03-03T12:01:46.874Z monthly 0.8 @@ -15356,7 +15545,7 @@ https://www.rfc1437.de/2011/01/19/harmony-of-my-dreams-brendan-eich/ - 2026-03-03T12:01:52.000Z + 2026-03-03T12:01:52.618Z monthly 0.8 @@ -15365,7 +15554,7 @@ https://www.rfc1437.de/2011/01/18/swordcane-the-official-web-site-of-burger-knives/ - 2026-03-03T12:01:57.000Z + 2026-03-03T12:01:57.584Z monthly 0.8 @@ -15374,7 +15563,7 @@ https://www.rfc1437.de/2011/01/18/f-script-home/ - 2026-03-03T12:02:02.000Z + 2026-03-03T12:02:02.871Z monthly 0.8 @@ -15383,7 +15572,7 @@ https://www.rfc1437.de/2011/01/18/lively-kernel-lively/ - 2026-03-03T12:02:08.000Z + 2026-03-03T12:02:08.357Z monthly 0.8 @@ -15392,7 +15581,7 @@ https://www.rfc1437.de/2011/01/17/open-cobalt-website/ - 2026-03-03T12:02:12.000Z + 2026-03-03T12:02:12.382Z monthly 0.8 @@ -15401,7 +15590,7 @@ https://www.rfc1437.de/2011/01/17/pyrates-are-cool-e2-80-94-a-wiki-about-python-game-development/ - 2026-03-03T12:02:16.000Z + 2026-03-03T12:02:16.874Z monthly 0.8 @@ -15410,7 +15599,7 @@ https://www.rfc1437.de/2011/01/17/cord-remote-desktop-for-mac-os-x/ - 2026-03-03T12:02:20.000Z + 2026-03-03T12:02:20.757Z monthly 0.8 @@ -15419,7 +15608,7 @@ https://www.rfc1437.de/2011/01/16/clpython-an-implementation-of-python-in-common-lisp/ - 2026-03-03T12:02:25.000Z + 2026-03-03T12:02:25.709Z monthly 0.8 @@ -15428,7 +15617,7 @@ https://www.rfc1437.de/2011/01/16/fset-on-common-lisp-net/ - 2026-03-03T12:02:29.000Z + 2026-03-03T12:02:29.843Z monthly 0.8 @@ -15437,7 +15626,7 @@ https://www.rfc1437.de/2011/01/16/cl-stm/ - 2026-03-03T12:02:33.000Z + 2026-03-03T12:02:33.674Z monthly 0.8 @@ -15446,7 +15635,7 @@ https://www.rfc1437.de/2011/01/16/clazy-lazy-calling-in-common-lisp/ - 2026-03-03T12:02:37.000Z + 2026-03-03T12:02:37.596Z monthly 0.8 @@ -15455,7 +15644,7 @@ https://www.rfc1437.de/2011/01/16/funds/ - 2026-03-03T12:02:41.000Z + 2026-03-03T12:02:41.599Z monthly 0.8 @@ -15464,7 +15653,7 @@ https://www.rfc1437.de/2011/01/15/qb-js-an-implementation-of-qbasic-in-javascript-part-1-steve-hanovs-programming-blog/ - 2026-03-08T14:19:13.000Z + 2026-03-08T14:19:13.448Z monthly 0.8 @@ -15473,7 +15662,7 @@ https://www.rfc1437.de/2011/01/15/vimium-google-chrome-erweiterungsgalerie/ - 2026-03-03T12:02:50.000Z + 2026-03-03T12:02:50.382Z monthly 0.8 @@ -15482,7 +15671,7 @@ https://www.rfc1437.de/2011/01/14/wordpress-wiki-plugin-home-of-the-wordpress-wiki-plugin/ - 2026-03-03T12:02:54.000Z + 2026-03-03T12:02:54.730Z monthly 0.8 @@ -15491,7 +15680,7 @@ https://www.rfc1437.de/2011/01/14/embedder-plugin-home-moztools/ - 2026-03-03T12:02:59.000Z + 2026-03-03T12:02:59.048Z monthly 0.8 @@ -15500,7 +15689,7 @@ https://www.rfc1437.de/2011/01/14/cbsc-decision-c2-a0-choz-fm-re-the-song-e2-80-9cmoney-for-nothing-e2-80-9d-by-dire-straits/ - 2026-03-03T12:03:03.000Z + 2026-03-03T12:03:03.890Z monthly 0.8 @@ -15509,7 +15698,7 @@ https://www.rfc1437.de/2011/01/14/dcolthorpmatchure-github/ - 2026-03-03T12:03:08.000Z + 2026-03-03T12:03:08.204Z monthly 0.8 @@ -15518,7 +15707,7 @@ https://www.rfc1437.de/2011/01/14/about-dirigible/ - 2026-03-03T12:03:12.000Z + 2026-03-03T12:03:12.523Z monthly 0.8 @@ -15527,7 +15716,7 @@ https://www.rfc1437.de/2011/01/13/kriyativeclojurejs-github/ - 2026-03-03T12:03:16.000Z + 2026-03-03T12:03:16.861Z monthly 0.8 @@ -15536,7 +15725,7 @@ https://www.rfc1437.de/2011/01/12/welcome-to-wuwei/ - 2026-03-03T12:03:21.000Z + 2026-03-03T12:03:21.368Z monthly 0.8 @@ -15545,7 +15734,7 @@ https://www.rfc1437.de/2011/01/12/bizarre-sea-slug-is-half-plant-half-animal-mnn-mother-nature-network/ - 2026-03-03T12:03:25.000Z + 2026-03-03T12:03:25.981Z monthly 0.8 @@ -15554,7 +15743,7 @@ https://www.rfc1437.de/2011/01/12/mozilla-labs-c2-bb-skywriter/ - 2026-03-03T12:03:29.000Z + 2026-03-03T12:03:29.858Z monthly 0.8 @@ -15563,7 +15752,7 @@ https://www.rfc1437.de/2011/01/12/life-at-eclipse-c2-bb-blog-archive-c2-bb-introducing-orion/ - 2026-03-03T12:03:35.000Z + 2026-03-03T12:03:35.047Z monthly 0.8 @@ -15572,7 +15761,7 @@ https://www.rfc1437.de/2011/01/12/bitte-vergessen-heise-security/ - 2026-03-03T12:03:40.000Z + 2026-03-03T12:03:40.781Z monthly 0.8 @@ -15581,7 +15770,7 @@ https://www.rfc1437.de/2011/01/12/bundestube/ - 2026-03-03T12:03:45.000Z + 2026-03-03T12:03:45.489Z monthly 0.8 @@ -15590,7 +15779,7 @@ https://www.rfc1437.de/2011/01/12/app-der-british-library-hohe-literatur-fur-ios-und-android-gerate-golem-de/ - 2026-03-03T12:03:49.000Z + 2026-03-03T12:03:49.932Z monthly 0.8 @@ -15599,7 +15788,7 @@ https://www.rfc1437.de/2011/01/11/chromium-blog-html-video-codec-support-in-chrome/ - 2026-03-03T12:03:54.000Z + 2026-03-03T12:03:54.308Z monthly 0.8 @@ -15617,7 +15806,7 @@ https://www.rfc1437.de/2011/01/10/eisskulpturen-in-nizhniy-tagil/ - 2026-03-03T12:04:02.000Z + 2026-03-03T12:04:02.815Z monthly 0.8 @@ -15626,7 +15815,7 @@ https://www.rfc1437.de/2011/01/10/modernizr/ - 2026-03-03T12:04:07.000Z + 2026-03-03T12:04:07.077Z monthly 0.8 @@ -15635,7 +15824,7 @@ https://www.rfc1437.de/2011/01/10/malmstrom-eu-kommissarin-will-keine-internetsperren-fur-weitere-themen-golem-de/ - 2026-03-03T12:04:12.000Z + 2026-03-03T12:04:12.368Z monthly 0.8 @@ -15644,7 +15833,7 @@ https://www.rfc1437.de/2011/01/10/department-of-justice-twitter-muss-wikileaks-daten-an-us-gericht-ubergeben-golem-de/ - 2026-03-03T12:04:17.000Z + 2026-03-03T12:04:17.637Z monthly 0.8 @@ -15653,7 +15842,7 @@ https://www.rfc1437.de/2010/12/29/nischni-tagil-e2-80-93-wikipedia/ - 2026-03-03T12:04:22.000Z + 2026-03-03T12:04:22.376Z monthly 0.8 @@ -15662,7 +15851,7 @@ https://www.rfc1437.de/2010/12/29/szeiger-de-c2-bb-blog-archive-c2-bb-a-type-safe-database-query-dsl-for-scala/ - 2026-03-03T12:04:26.000Z + 2026-03-03T12:04:26.660Z monthly 0.8 @@ -15671,7 +15860,7 @@ https://www.rfc1437.de/2010/12/28/11861-betreiber-der-bahn-auskunftsnummer-klagt-gegen-abschaltung-golem-de/ - 2026-03-03T12:04:31.000Z + 2026-03-03T12:04:31.912Z monthly 0.8 @@ -15680,7 +15869,7 @@ https://www.rfc1437.de/2010/12/28/studie-stromkonzerne-verlangen-zwei-milliarden-euro-zu-viel-tagesschau-de/ - 2026-03-03T12:04:41.000Z + 2026-03-03T12:04:41.219Z monthly 0.8 @@ -15689,7 +15878,7 @@ https://www.rfc1437.de/2010/12/28/sequel-the-database-toolkit-for-ruby/ - 2026-03-03T12:04:45.000Z + 2026-03-03T12:04:45.205Z monthly 0.8 @@ -15698,7 +15887,7 @@ https://www.rfc1437.de/2010/12/28/macruby-the-definitive-guide/ - 2026-03-03T12:04:50.000Z + 2026-03-03T12:04:50.078Z monthly 0.8 @@ -15707,7 +15896,7 @@ https://www.rfc1437.de/2010/12/27/hoc-project-hosting-on-google-code/ - 2026-03-03T12:04:53.000Z + 2026-03-03T12:04:53.995Z monthly 0.8 @@ -15716,7 +15905,7 @@ https://www.rfc1437.de/2010/12/27/emscripten-project-hosting-on-google-code/ - 2026-03-03T12:04:58.000Z + 2026-03-03T12:04:58.102Z monthly 0.8 @@ -15725,7 +15914,7 @@ https://www.rfc1437.de/2010/12/27/emscripten-python/ - 2026-03-03T12:05:01.000Z + 2026-03-03T12:05:01.789Z monthly 0.8 @@ -15734,7 +15923,7 @@ https://www.rfc1437.de/2010/12/27/pyfilesystem-project-hosting-on-google-code/ - 2026-03-03T12:05:05.000Z + 2026-03-03T12:05:05.542Z monthly 0.8 @@ -15743,7 +15932,7 @@ https://www.rfc1437.de/2010/12/27/instagram-api-instagram-github/ - 2026-03-03T12:05:10.000Z + 2026-03-03T12:05:10.145Z monthly 0.8 @@ -15752,7 +15941,7 @@ https://www.rfc1437.de/2010/12/27/monads-are-not-metaphors-code-commit/ - 2026-03-03T12:05:14.000Z + 2026-03-03T12:05:14.139Z monthly 0.8 @@ -15761,7 +15950,7 @@ https://www.rfc1437.de/2010/12/27/j-home/ - 2026-03-03T12:05:18.000Z + 2026-03-03T12:05:18.835Z monthly 0.8 @@ -15770,7 +15959,7 @@ https://www.rfc1437.de/2010/12/26/kod/ - 2026-03-03T12:05:23.000Z + 2026-03-03T12:05:23.407Z monthly 0.8 @@ -15779,7 +15968,7 @@ https://www.rfc1437.de/2010/12/26/the-art-and-science-of-smalltalk/ - 2026-03-03T12:05:27.000Z + 2026-03-03T12:05:27.537Z monthly 0.8 @@ -15788,7 +15977,7 @@ https://www.rfc1437.de/2010/12/24/ipython-as-a-system-shell-e2-80-94-ipython-v0-11-alpha1-git-documentation/ - 2026-03-03T12:22:41.000Z + 2026-03-03T12:22:41.774Z monthly 0.8 @@ -15797,7 +15986,7 @@ https://www.rfc1437.de/2010/12/23/the-blast-shack/ - 2026-03-03T12:22:44.000Z + 2026-03-03T12:22:44.798Z monthly 0.8 @@ -15806,7 +15995,7 @@ https://www.rfc1437.de/2010/12/23/oni-labs-apollo/ - 2026-03-03T12:22:47.000Z + 2026-03-03T12:22:47.828Z monthly 0.8 @@ -15815,7 +16004,7 @@ https://www.rfc1437.de/2010/12/23/jquery-snowfall-plugin-1-4-somethinghitme/ - 2026-03-03T12:22:51.000Z + 2026-03-03T12:22:51.171Z monthly 0.8 @@ -15824,7 +16013,7 @@ https://www.rfc1437.de/2010/12/23/macbookair3-2meerkat-community-ubuntu-documentation/ - 2026-03-03T12:22:54.000Z + 2026-03-03T12:22:54.164Z monthly 0.8 @@ -15833,7 +16022,7 @@ https://www.rfc1437.de/2010/12/23/oas/ - 2026-03-03T12:22:57.000Z + 2026-03-03T12:22:57.169Z monthly 0.8 @@ -15842,7 +16031,7 @@ https://www.rfc1437.de/2010/12/23/statusupdate/ - 2026-03-03T12:23:00.000Z + 2026-03-03T12:23:00.192Z monthly 0.8 @@ -15851,7 +16040,7 @@ https://www.rfc1437.de/2010/12/23/ausfall-skype-fur-viele-nutzer-nicht-erreichbar-golem-de/ - 2026-03-03T12:23:03.000Z + 2026-03-03T12:23:03.544Z monthly 0.8 @@ -15860,7 +16049,7 @@ https://www.rfc1437.de/2010/12/23/denisovans-were-neanderthals-e2-80-99-cousins-dna-analysis-reveals-nytimes-com/ - 2026-03-03T12:23:06.000Z + 2026-03-03T12:23:06.552Z monthly 0.8 @@ -15869,7 +16058,7 @@ https://www.rfc1437.de/2010/12/22/python-package-index-futures-2-0/ - 2026-03-03T12:23:09.000Z + 2026-03-03T12:23:09.896Z monthly 0.8 @@ -15878,7 +16067,7 @@ https://www.rfc1437.de/2010/12/22/pharo-open-source-smalltalk-home/ - 2026-03-03T12:23:13.000Z + 2026-03-03T12:23:13.285Z monthly 0.8 @@ -15887,7 +16076,7 @@ https://www.rfc1437.de/2010/12/21/pure-lang-project-hosting-on-google-code/ - 2026-03-03T12:23:16.000Z + 2026-03-03T12:23:16.626Z monthly 0.8 @@ -15896,7 +16085,7 @@ https://www.rfc1437.de/2010/12/20/netzsperren-grosbritannien-plant-globalen-pornofilter-golem-de/ - 2026-03-03T12:23:20.000Z + 2026-03-03T12:23:20.331Z monthly 0.8 @@ -15905,7 +16094,7 @@ https://www.rfc1437.de/2010/12/20/ct-inhalt-12011-seite-26/ - 2026-03-03T12:23:23.000Z + 2026-03-03T12:23:23.997Z monthly 0.8 @@ -15914,7 +16103,7 @@ https://www.rfc1437.de/2010/12/20/alex-gaynor-getting-the-most-out-of-tox/ - 2026-03-03T12:23:27.000Z + 2026-03-03T12:23:27.674Z monthly 0.8 @@ -15923,7 +16112,7 @@ https://www.rfc1437.de/2010/12/20/sparrow-the-new-mail-for-mac/ - 2026-03-03T12:23:31.000Z + 2026-03-03T12:23:31.022Z monthly 0.8 @@ -15932,7 +16121,7 @@ https://www.rfc1437.de/2010/12/18/coleiferpeewee-at-master-github/ - 2026-03-03T12:23:34.000Z + 2026-03-03T12:23:34.384Z monthly 0.8 @@ -15941,7 +16130,7 @@ https://www.rfc1437.de/2010/12/18/middleware-and-utilities-wsgi-wiki/ - 2026-03-03T12:23:37.000Z + 2026-03-03T12:23:37.060Z monthly 0.8 @@ -15950,7 +16139,7 @@ https://www.rfc1437.de/2010/12/18/python-package-index-urlrelay-0-7-1/ - 2026-03-03T12:23:40.000Z + 2026-03-03T12:23:40.052Z monthly 0.8 @@ -15959,7 +16148,7 @@ https://www.rfc1437.de/2010/12/17/bug-1044-e2-80-93-cve-2010-4345-exim-privilege-escalation/ - 2026-03-03T12:23:43.000Z + 2026-03-03T12:23:43.770Z monthly 0.8 @@ -15968,7 +16157,7 @@ https://www.rfc1437.de/2010/12/17/bug-787-e2-80-93-memory-corruption-in-string-format-code/ - 2026-03-03T12:23:47.000Z + 2026-03-03T12:23:47.446Z monthly 0.8 @@ -15977,7 +16166,7 @@ https://www.rfc1437.de/2010/12/17/rhodecode-summary-rhodecode/ - 2026-03-03T12:23:50.000Z + 2026-03-03T12:23:50.440Z monthly 0.8 @@ -15986,7 +16175,7 @@ https://www.rfc1437.de/2010/12/16/hp-storage-hardware-harbors-secret-back-door-threatpost/ - 2026-03-03T12:23:53.000Z + 2026-03-03T12:23:53.453Z monthly 0.8 @@ -15995,7 +16184,7 @@ https://www.rfc1437.de/2010/12/16/the-self-publishing-revolution-amazon-in-the-book-banning-business/ - 2026-03-03T12:23:57.000Z + 2026-03-03T12:23:57.200Z monthly 0.8 @@ -16004,7 +16193,7 @@ https://www.rfc1437.de/2010/12/16/bottle-python-web-framework-e2-80-94-bottle-v0-9-dev-documentation/ - 2026-03-03T12:24:00.000Z + 2026-03-03T12:24:00.830Z monthly 0.8 @@ -16013,7 +16202,7 @@ https://www.rfc1437.de/2010/12/15/in-albanien-und-bosnien-fallt-der-visa-zwang-tagesschau-de/ - 2026-03-03T12:24:03.000Z + 2026-03-03T12:24:03.625Z monthly 0.8 @@ -16022,7 +16211,7 @@ https://www.rfc1437.de/2010/12/15/mehrheit-in-nrw-gegen-neuen-staatsvertrag-fur-jugendschutz-im-internet-computer-wdr-de/ - 2026-03-03T12:24:07.000Z + 2026-03-03T12:24:07.461Z monthly 0.8 @@ -16031,7 +16220,7 @@ https://www.rfc1437.de/2010/12/15/nicholas-piel-c2-bb-benchmark-of-python-web-servers/ - 2026-03-03T12:24:10.000Z + 2026-03-03T12:24:10.910Z monthly 0.8 @@ -16040,7 +16229,7 @@ https://www.rfc1437.de/2010/12/15/recordextension-mercurial/ - 2026-03-03T12:24:13.000Z + 2026-03-03T12:24:13.702Z monthly 0.8 @@ -16049,7 +16238,7 @@ https://www.rfc1437.de/2010/12/15/sicherheit-angeblich-backdoor-im-ipsec-stack-von-openbsd-golem-de/ - 2026-03-03T12:24:16.000Z + 2026-03-03T12:24:16.848Z monthly 0.8 @@ -16058,7 +16247,7 @@ https://www.rfc1437.de/2010/12/14/home-the-finepix-x100-professional-photographers-compact-digital-camera-from-fujifilm/ - 2026-03-03T12:24:20.000Z + 2026-03-03T12:24:20.015Z monthly 0.8 @@ -16067,7 +16256,7 @@ https://www.rfc1437.de/2010/12/13/mrdoobthree-js-github/ - 2026-03-03T12:24:23.000Z + 2026-03-03T12:24:23.136Z monthly 0.8 @@ -16076,7 +16265,7 @@ https://www.rfc1437.de/2010/12/13/namespacing-in-javascript-javascript-javascript/ - 2026-03-03T12:24:26.000Z + 2026-03-03T12:24:26.272Z monthly 0.8 @@ -16085,7 +16274,7 @@ https://www.rfc1437.de/2010/12/13/the-ball-revealed-e2-80-93-sphero-c2-ab-the-orbotix-blog/ - 2026-03-08T14:19:35.000Z + 2026-03-08T14:19:35.373Z monthly 0.8 @@ -16094,7 +16283,7 @@ https://www.rfc1437.de/2010/12/12/home-gloss-github/ - 2026-03-03T12:24:31.000Z + 2026-03-03T12:24:31.915Z monthly 0.8 @@ -16103,7 +16292,7 @@ https://www.rfc1437.de/2010/12/10/mac-c2-a0os-c2-a0x-automation-services/ - 2026-03-03T12:24:34.000Z + 2026-03-03T12:24:34.739Z monthly 0.8 @@ -16112,7 +16301,7 @@ https://www.rfc1437.de/2010/12/10/clojure-libs-and-namespaces-require-use-import-and-ns-8th-light-blog/ - 2026-03-03T12:24:38.000Z + 2026-03-03T12:24:38.274Z monthly 0.8 @@ -16121,7 +16310,7 @@ https://www.rfc1437.de/2010/12/09/ninjuddcake-github/ - 2026-03-03T12:24:41.000Z + 2026-03-03T12:24:41.798Z monthly 0.8 @@ -16130,7 +16319,7 @@ https://www.rfc1437.de/2010/12/09/slimv-vim-slime-like-lisp-and-clojure-repl-inside-vim-with-profiling-hyperspec-paredit-vim-online/ - 2026-03-03T12:24:45.000Z + 2026-03-03T12:24:45.719Z monthly 0.8 @@ -16148,7 +16337,7 @@ https://www.rfc1437.de/2010/12/08/gundo-visualize-your-vim-undo-tree/ - 2026-03-03T12:24:53.000Z + 2026-03-03T12:24:53.627Z monthly 0.8 @@ -16157,7 +16346,7 @@ https://www.rfc1437.de/2010/12/08/chromium-blog-a-new-crankshaft-for-v8/ - 2026-03-03T12:24:56.000Z + 2026-03-03T12:24:56.852Z monthly 0.8 @@ -16166,7 +16355,7 @@ https://www.rfc1437.de/2010/12/08/instagr-am/ - 2026-03-03T12:24:59.000Z + 2026-03-03T12:24:59.721Z monthly 0.8 @@ -16175,7 +16364,7 @@ https://www.rfc1437.de/2010/12/07/the-risks-of-cloud-lessons-from-wikileaks-simon-says/ - 2026-03-03T12:25:03.000Z + 2026-03-03T12:25:03.669Z monthly 0.8 @@ -16184,7 +16373,7 @@ https://www.rfc1437.de/2010/12/07/pyquery-a-jquery-like-library-for-python-e2-80-94-pyquery-v0-6-1-documentation/ - 2026-03-03T12:25:07.000Z + 2026-03-03T12:25:07.249Z monthly 0.8 @@ -16193,7 +16382,7 @@ https://www.rfc1437.de/2010/12/07/stream-e2-80-93-lazily-evaluated-parallelizable-pipeline-e2-80-94-stream-v0-8-documentation/ - 2026-03-03T12:25:10.000Z + 2026-03-03T12:25:10.866Z monthly 0.8 @@ -16202,7 +16391,7 @@ https://www.rfc1437.de/2010/12/07/wau-holland-stiftung-geldgebern-von-wikileaks-drohen-sanktionen-golem-de/ - 2026-03-03T12:25:14.000Z + 2026-03-03T12:25:14.470Z monthly 0.8 @@ -16211,7 +16400,7 @@ https://www.rfc1437.de/2010/12/07/about-pyconditions-about-the-module-project-hosting-on-google-code/ - 2026-03-03T12:25:17.000Z + 2026-03-03T12:25:17.357Z monthly 0.8 @@ -16220,7 +16409,7 @@ https://www.rfc1437.de/2010/12/07/python-package-index-withrestart-0-2-6/ - 2026-03-03T12:25:20.000Z + 2026-03-03T12:25:20.627Z monthly 0.8 @@ -16229,7 +16418,7 @@ https://www.rfc1437.de/2010/12/07/snipmate-textmate-style-snippets-for-vim-vim-online/ - 2026-03-03T12:25:23.000Z + 2026-03-03T12:25:23.894Z monthly 0.8 @@ -16238,7 +16427,7 @@ https://www.rfc1437.de/2010/12/07/vcscommand-vim-cvssvnsvkgithgbzr-integration-plugin-vim-online/ - 2026-03-03T12:25:27.000Z + 2026-03-03T12:25:27.914Z monthly 0.8 @@ -16247,7 +16436,7 @@ https://www.rfc1437.de/2010/12/07/home-e2-80-94-pyclewn/ - 2026-03-03T12:25:31.000Z + 2026-03-03T12:25:31.260Z monthly 0.8 @@ -16256,7 +16445,7 @@ https://www.rfc1437.de/2010/12/06/vim-taglist-plugin-manual/ - 2026-03-03T12:25:34.000Z + 2026-03-03T12:25:34.575Z monthly 0.8 @@ -16265,7 +16454,7 @@ https://www.rfc1437.de/2010/12/06/harte-kritik-an-franzosischem-concorde-urteil-tagesschau-de/ - 2026-03-03T12:25:38.000Z + 2026-03-03T12:25:38.688Z monthly 0.8 @@ -16274,7 +16463,7 @@ https://www.rfc1437.de/2010/12/05/vim-autocomplete-django-and-virtualenv-rosemanblog/ - 2026-03-03T12:25:42.000Z + 2026-03-03T12:25:42.493Z monthly 0.8 @@ -16283,7 +16472,7 @@ https://www.rfc1437.de/2010/12/03/homebrew-e2-80-94-macports-driving-you-to-drink-try-homebrew/ - 2026-03-03T12:25:46.000Z + 2026-03-03T12:25:46.467Z monthly 0.8 @@ -16292,7 +16481,7 @@ https://www.rfc1437.de/2010/12/03/chrisdickinsons-wilson-at-master-github/ - 2026-03-03T12:25:49.000Z + 2026-03-03T12:25:49.643Z monthly 0.8 @@ -16301,7 +16490,7 @@ https://www.rfc1437.de/2010/12/03/modules-node-github/ - 2026-03-03T12:25:52.000Z + 2026-03-03T12:25:52.819Z monthly 0.8 @@ -16310,7 +16499,7 @@ https://www.rfc1437.de/2010/12/03/persistence-js-an-asynchronous-javascript-orm-for-html5gears-c2-ab-i-am-zef/ - 2026-03-03T12:25:57.000Z + 2026-03-03T12:25:57.154Z monthly 0.8 @@ -16319,7 +16508,7 @@ https://www.rfc1437.de/2010/12/03/express-node-web-framework/ - 2026-03-03T12:26:01.000Z + 2026-03-03T12:26:01.158Z monthly 0.8 @@ -16328,7 +16517,7 @@ https://www.rfc1437.de/2010/12/03/learnboost-labs/ - 2026-03-03T12:26:04.000Z + 2026-03-03T12:26:04.493Z monthly 0.8 @@ -16337,7 +16526,7 @@ https://www.rfc1437.de/2010/12/03/nigeria-to-charge-dick-cheney-in-180-million-bribery-case-issue-interpol-arrest-warrant-raw-story/ - 2026-03-07T21:07:00.000Z + 2026-03-07T21:07:00.716Z monthly 0.8 @@ -16346,7 +16535,7 @@ https://www.rfc1437.de/2010/12/02/mono-lake-bacteria-build-their-dna-using-arsenic-and-no-this-isn-e2-80-99t-about-aliens-not-exactly-rocket-science-discover-magazine/ - 2026-03-03T12:26:13.000Z + 2026-03-03T12:26:13.163Z monthly 0.8 @@ -16355,7 +16544,7 @@ https://www.rfc1437.de/2010/12/02/nasa-e2-80-99s-real-news-bacterium-on-earth-that-lives-off-arsenic-bad-astronomy-discover-magazine/ - 2026-03-03T12:26:17.000Z + 2026-03-03T12:26:17.308Z monthly 0.8 @@ -16364,7 +16553,7 @@ https://www.rfc1437.de/2010/12/01/wordpress-e2-80-ba-wordpress-3-0-2/ - 2026-03-03T12:26:21.000Z + 2026-03-03T12:26:21.606Z monthly 0.8 @@ -16373,7 +16562,7 @@ https://www.rfc1437.de/2010/12/01/agr-ropevim-source-e2-80-93-bitbucket/ - 2026-03-03T12:26:25.000Z + 2026-03-03T12:26:25.398Z monthly 0.8 @@ -16382,7 +16571,7 @@ https://www.rfc1437.de/2010/12/01/pyflakes-vim-pyflakes-on-the-fly-python-code-checking-vim-online/ - 2026-03-03T12:26:29.000Z + 2026-03-03T12:26:29.217Z monthly 0.8 @@ -16391,7 +16580,7 @@ https://www.rfc1437.de/2010/12/01/download-qt-for-open-source-c-development-on-mac-os-x-e2-80-94-qt-a-cross-platform-application-and-ui-framework/ - 2026-03-03T12:26:33.000Z + 2026-03-03T12:26:33.915Z monthly 0.8 @@ -16400,7 +16589,7 @@ https://www.rfc1437.de/2010/11/30/spyderlib-project-hosting-on-google-code/ - 2026-03-03T12:26:37.000Z + 2026-03-03T12:26:37.842Z monthly 0.8 @@ -16409,7 +16598,7 @@ https://www.rfc1437.de/2010/11/30/jugendmedienschutzstaatsvertrag-grune-wollen-zustimmen-erste-blogs-schliesen-golem-de/ - 2026-03-03T12:26:42.000Z + 2026-03-03T12:26:42.615Z monthly 0.8 @@ -16418,7 +16607,7 @@ https://www.rfc1437.de/2010/11/30/technology-canvas-viewer/ - 2026-03-03T12:26:46.000Z + 2026-03-03T12:26:46.514Z monthly 0.8 @@ -16427,7 +16616,7 @@ https://www.rfc1437.de/2010/11/29/the-surreal-treehoppers-c2-ab-why-evolution-is-true/ - 2026-03-03T12:26:49.000Z + 2026-03-03T12:26:49.991Z monthly 0.8 @@ -16436,7 +16625,7 @@ https://www.rfc1437.de/2010/11/29/frontpage-conkeror/ - 2026-03-03T12:26:53.000Z + 2026-03-03T12:26:53.474Z monthly 0.8 @@ -16445,7 +16634,7 @@ https://www.rfc1437.de/2010/11/29/komodo-edit-is-a-free-open-source-editor-for-perl-python-tcl-php-ruby-javascript/ - 2026-03-03T12:26:58.000Z + 2026-03-03T12:26:58.262Z monthly 0.8 @@ -16454,7 +16643,7 @@ https://www.rfc1437.de/2010/11/29/python-package-index-lupa-0-18/ - 2026-03-03T12:27:02.000Z + 2026-03-03T12:27:02.170Z monthly 0.8 @@ -16463,7 +16652,7 @@ https://www.rfc1437.de/2010/11/28/dampfwalze-2/ - 2026-03-03T12:27:05.000Z + 2026-03-03T12:27:05.253Z monthly 0.8 @@ -16472,7 +16661,7 @@ https://www.rfc1437.de/2010/11/27/probablycoreys-wax-at-master-github/ - 2026-03-03T12:27:08.000Z + 2026-03-03T12:27:08.725Z monthly 0.8 @@ -16481,7 +16670,7 @@ https://www.rfc1437.de/2010/11/27/have-tracing-jit-compilers-won-lambda-the-ultimate/ - 2026-03-03T12:27:13.000Z + 2026-03-03T12:27:13.568Z monthly 0.8 @@ -16490,7 +16679,7 @@ https://www.rfc1437.de/2010/11/27/pypy-status-blog-pypy-1-4-ouroboros-in-practice/ - 2026-03-03T12:27:17.000Z + 2026-03-03T12:27:17.864Z monthly 0.8 @@ -16499,7 +16688,7 @@ https://www.rfc1437.de/2010/11/27/build-a-bootable-rescue-sd-card-for-your-mac-maclife/ - 2026-03-03T12:27:21.000Z + 2026-03-03T12:27:21.772Z monthly 0.8 @@ -16508,7 +16697,7 @@ https://www.rfc1437.de/2010/11/27/ikvm-net-home-page/ - 2026-03-03T12:27:25.000Z + 2026-03-03T12:27:25.249Z monthly 0.8 @@ -16517,7 +16706,7 @@ https://www.rfc1437.de/2010/11/26/gleebox-keyboard-glee-for-your-web/ - 2026-03-03T12:27:29.000Z + 2026-03-03T12:27:29.140Z monthly 0.8 @@ -16526,7 +16715,7 @@ https://www.rfc1437.de/2010/11/26/macruby-c2-bb-an-introduction-to-gcd-with-macruby/ - 2026-03-03T12:27:33.000Z + 2026-03-03T12:27:33.073Z monthly 0.8 @@ -16535,7 +16724,7 @@ https://www.rfc1437.de/2010/11/25/wordpress-e2-80-ba-conditional-captcha-for-wordpress-c2-ab-wordpress-plugins/ - 2026-03-03T12:27:36.000Z + 2026-03-03T12:27:36.993Z monthly 0.8 @@ -16544,7 +16733,7 @@ https://www.rfc1437.de/2010/11/25/zachs-journal-making-a-small-lisp-project-with-quickproject-and-quicklisp/ - 2026-03-03T12:27:41.000Z + 2026-03-03T12:27:41.769Z monthly 0.8 @@ -16553,7 +16742,7 @@ https://www.rfc1437.de/2010/11/24/marke-facebook-will-face-golem-de/ - 2026-03-03T12:27:45.000Z + 2026-03-03T12:27:45.312Z monthly 0.8 @@ -16562,7 +16751,7 @@ https://www.rfc1437.de/2010/11/24/higher-order-javascript/ - 2026-03-03T12:27:49.000Z + 2026-03-03T12:27:49.221Z monthly 0.8 @@ -16571,7 +16760,7 @@ https://www.rfc1437.de/2010/11/24/backbone-js/ - 2026-03-03T12:27:53.000Z + 2026-03-03T12:27:53.525Z monthly 0.8 @@ -16580,7 +16769,7 @@ https://www.rfc1437.de/2010/11/23/installing-and-using-f-in-monodevelop-functional-variations/ - 2026-03-03T12:27:57.000Z + 2026-03-03T12:27:57.407Z monthly 0.8 @@ -16589,7 +16778,7 @@ https://www.rfc1437.de/2010/11/23/f-cross-platform-packages-and-samples/ - 2026-03-03T12:28:01.000Z + 2026-03-03T12:28:01.261Z monthly 0.8 @@ -16598,7 +16787,7 @@ https://www.rfc1437.de/2010/11/23/monomac-mono/ - 2026-03-03T12:28:05.000Z + 2026-03-03T12:28:05.142Z monthly 0.8 @@ -16607,7 +16796,7 @@ https://www.rfc1437.de/2010/11/23/datejs-an-open-source-javascript-date-library/ - 2026-03-03T12:28:08.000Z + 2026-03-03T12:28:08.597Z monthly 0.8 @@ -16616,7 +16805,7 @@ https://www.rfc1437.de/2010/11/23/kasseler-dokumentarfilm-und-videofest-c2-bb-reality-shock/ - 2026-03-03T12:28:12.000Z + 2026-03-03T12:28:12.860Z monthly 0.8 @@ -16625,7 +16814,7 @@ https://www.rfc1437.de/2010/11/23/printopia-share-your-macs-printers-to-iphone-and-ipad-print-from-iphone-ecamm-network/ - 2026-03-03T12:28:17.000Z + 2026-03-03T12:28:17.179Z monthly 0.8 @@ -16634,7 +16823,7 @@ https://www.rfc1437.de/2010/11/22/zirkeltraining-e2-84-a2-e2-98-85-the-range-take-a-look-at-our-bag-collection/ - 2026-03-03T12:28:21.000Z + 2026-03-03T12:28:21.485Z monthly 0.8 @@ -16643,7 +16832,7 @@ https://www.rfc1437.de/2010/11/22/pixie-scheme-iii/ - 2026-03-03T12:28:24.000Z + 2026-03-03T12:28:24.940Z monthly 0.8 @@ -16652,7 +16841,7 @@ https://www.rfc1437.de/2010/11/22/blogofile/ - 2026-03-03T12:28:28.000Z + 2026-03-03T12:28:28.400Z monthly 0.8 @@ -16661,7 +16850,7 @@ https://www.rfc1437.de/2010/11/22/ultimatevimpythonsetup-launchpad-development/ - 2026-03-03T12:28:32.000Z + 2026-03-03T12:28:32.732Z monthly 0.8 @@ -16670,7 +16859,7 @@ https://www.rfc1437.de/2010/11/22/mit-de-maiziere-am-fruhstuckstisch-der-terror-ist-da-das-musli-ist-alle-taz-de/ - 2026-03-03T12:28:37.000Z + 2026-03-03T12:28:37.452Z monthly 0.8 @@ -16679,7 +16868,7 @@ https://www.rfc1437.de/2010/11/21/how-i-build-in-tumblr-in-my-drupal-install-the-e-laboratory/ - 2026-03-03T12:28:42.000Z + 2026-03-03T12:28:42.227Z monthly 0.8 @@ -16688,7 +16877,7 @@ https://www.rfc1437.de/2010/11/21/sonntagslekture-google-streetview-spreeblick/ - 2026-03-03T12:28:47.000Z + 2026-03-03T12:28:47.013Z monthly 0.8 @@ -16697,7 +16886,7 @@ https://www.rfc1437.de/2010/11/21/api-tumblr/ - 2026-03-03T12:28:50.000Z + 2026-03-03T12:28:50.454Z monthly 0.8 @@ -16706,7 +16895,7 @@ https://www.rfc1437.de/2010/11/21/display-photos-from-tumblr-using-json-method-drupal-org/ - 2026-03-03T12:28:53.000Z + 2026-03-03T12:28:53.892Z monthly 0.8 @@ -16715,7 +16904,7 @@ https://www.rfc1437.de/2010/11/21/hyphenator-project-hosting-on-google-code/ - 2026-03-03T12:28:58.000Z + 2026-03-03T12:28:58.284Z monthly 0.8 @@ -16724,7 +16913,7 @@ https://www.rfc1437.de/2010/11/21/performancefresser/ - 2026-03-03T12:29:02.000Z + 2026-03-03T12:29:02.643Z monthly 0.8 @@ -16733,7 +16922,7 @@ https://www.rfc1437.de/2010/11/21/wordpress-e2-80-ba-support-c2-bb-wp-super-cache-sometimes-ignites-a-blank-home-page-need-to-restart-apache/ - 2026-03-03T12:29:07.000Z + 2026-03-03T12:29:07.876Z monthly 0.8 @@ -16742,7 +16931,7 @@ https://www.rfc1437.de/2010/11/20/ist-die-nato-strategie-das-problem-oder-die-losung-tagesschau-de/ - 2026-03-03T12:29:12.000Z + 2026-03-03T12:29:12.703Z monthly 0.8 @@ -16751,7 +16940,7 @@ https://www.rfc1437.de/2010/11/20/logisim/ - 2026-03-03T12:29:16.000Z + 2026-03-03T12:29:16.565Z monthly 0.8 @@ -16760,7 +16949,7 @@ https://www.rfc1437.de/2010/11/20/pure-css-gui-icons-experimental-e2-80-93-nicolas-gallagher-e2-80-93-blog-ephemera/ - 2026-03-03T12:29:21.000Z + 2026-03-03T12:29:21.049Z monthly 0.8 @@ -16769,7 +16958,7 @@ https://www.rfc1437.de/2010/11/20/have-we-found-the-universe-that-existed-before-the-big-bang/ - 2026-03-03T12:29:25.000Z + 2026-03-03T12:29:25.877Z monthly 0.8 @@ -16778,7 +16967,7 @@ https://www.rfc1437.de/2010/11/20/bbc-earth-news-attack-of-the-rats/ - 2026-03-03T12:29:30.000Z + 2026-03-03T12:29:30.314Z monthly 0.8 @@ -16787,7 +16976,7 @@ https://www.rfc1437.de/2010/11/19/wordpress-e2-80-ba-support-c2-bb-plugin-wp-super-cache-blank-pages-500-errror-in-dashboard-sometimes-the-site-too/ - 2026-03-03T12:29:35.000Z + 2026-03-03T12:29:35.653Z monthly 0.8 @@ -16796,7 +16985,7 @@ https://www.rfc1437.de/2010/11/19/long-live-the-web-scientific-american/ - 2026-03-03T12:29:40.000Z + 2026-03-03T12:29:40.595Z monthly 0.8 @@ -16805,7 +16994,7 @@ https://www.rfc1437.de/2010/11/19/pyfpdf-project-hosting-on-google-code/ - 2026-03-03T12:29:45.000Z + 2026-03-03T12:29:45.059Z monthly 0.8 @@ -16814,7 +17003,7 @@ https://www.rfc1437.de/2010/11/19/processing-js-v1-0-released-c2-ab-processing-js-blog/ - 2026-03-03T12:29:49.000Z + 2026-03-03T12:29:49.044Z monthly 0.8 @@ -16823,7 +17012,7 @@ https://www.rfc1437.de/2010/11/19/is-my-blog-working/ - 2026-03-03T12:29:54.000Z + 2026-03-03T12:29:54.304Z monthly 0.8 @@ -16832,7 +17021,7 @@ https://www.rfc1437.de/2010/11/19/bottle/ - 2026-03-03T12:29:58.000Z + 2026-03-03T12:29:58.242Z monthly 0.8 @@ -16841,7 +17030,7 @@ https://www.rfc1437.de/2010/11/19/owl-content-in-neuem-zuhause/ - 2026-03-03T12:30:02.000Z + 2026-03-03T12:30:02.731Z monthly 0.8 @@ -16850,7 +17039,7 @@ https://www.rfc1437.de/2010/11/18/mit-sicherheit-rufe-nach-scharferen-gesetzen-tagesschau-de/ - 2026-03-03T12:30:07.000Z + 2026-03-03T12:30:07.691Z monthly 0.8 @@ -16859,7 +17048,7 @@ https://www.rfc1437.de/2010/11/18/wordpress-e2-80-ba-wp-super-cache-c2-ab-wordpress-plugins/ - 2026-03-03T12:30:12.000Z + 2026-03-03T12:30:12.331Z monthly 0.8 @@ -16868,7 +17057,7 @@ https://www.rfc1437.de/2010/11/18/offline-messages-at-master-from-jor3ls-osmodules-github/ - 2026-03-03T12:30:16.000Z + 2026-03-03T12:30:16.213Z monthly 0.8 @@ -16877,7 +17066,7 @@ https://www.rfc1437.de/2010/11/17/wp-typography-e2-80-a2-kingdesk/ - 2026-03-03T12:30:20.000Z + 2026-03-03T12:30:20.092Z monthly 0.8 @@ -16886,7 +17075,7 @@ https://www.rfc1437.de/2010/11/17/zahlenmagie-beim-renteneintrittsalter-trick-67-taz-de/ - 2026-03-03T12:30:24.000Z + 2026-03-03T12:30:24.378Z monthly 0.8 @@ -16895,7 +17084,7 @@ https://www.rfc1437.de/2010/11/17/umzugsstatus/ - 2026-03-03T12:30:28.000Z + 2026-03-03T12:30:28.640Z monthly 0.8 @@ -16904,7 +17093,7 @@ https://www.rfc1437.de/2010/11/16/front-end-editor-scribu/ - 2026-03-03T12:30:32.000Z + 2026-03-03T12:30:32.852Z monthly 0.8 @@ -16913,7 +17102,7 @@ https://www.rfc1437.de/2010/11/16/icon-search-engine-download-300770-free-icons-png-icons-web-icons/ - 2026-03-03T12:30:36.000Z + 2026-03-03T12:30:36.661Z monthly 0.8 @@ -16922,7 +17111,7 @@ https://www.rfc1437.de/2010/11/16/f-in-monodevelop-and-cross-platform-web-sites-screencasts-blog-tomasp-net/ - 2026-03-03T12:30:40.000Z + 2026-03-03T12:30:40.472Z monthly 0.8 @@ -16931,7 +17120,7 @@ https://www.rfc1437.de/2010/11/16/jqtreetable/ - 2026-03-03T12:30:43.000Z + 2026-03-03T12:30:43.971Z monthly 0.8 @@ -16940,7 +17129,7 @@ https://www.rfc1437.de/2010/11/15/super-secret-debugger-discovered-in-amd-cpus-e2-80-a2-the-register/ - 2026-03-07T21:07:01.000Z + 2026-03-07T21:07:01.432Z monthly 0.8 @@ -16949,7 +17138,7 @@ https://www.rfc1437.de/2010/11/15/space-quest-lands-on-the-ipad-e2-80-94-courtesy-of-safari-touch-arcade/ - 2026-03-03T12:30:51.000Z + 2026-03-03T12:30:51.178Z monthly 0.8 @@ -16958,7 +17147,7 @@ https://www.rfc1437.de/2010/11/14/jquery-lightbox-plugin/ - 2026-03-03T12:30:55.000Z + 2026-03-03T12:30:55.014Z monthly 0.8 @@ -16967,7 +17156,7 @@ https://www.rfc1437.de/2010/11/14/twenty-ten-weaver-wordpress-weaver/ - 2026-03-03T12:30:58.000Z + 2026-03-03T12:30:58.813Z monthly 0.8 @@ -16976,7 +17165,7 @@ https://www.rfc1437.de/2010/11/14/dynamic-widgets-qurl/ - 2026-03-03T12:31:03.000Z + 2026-03-03T12:31:03.099Z monthly 0.8 @@ -16985,7 +17174,7 @@ https://www.rfc1437.de/2010/11/14/kbhomess-textcaptchabreaker-at-master-github/ - 2026-03-03T12:31:07.000Z + 2026-03-03T12:31:07.752Z monthly 0.8 @@ -16994,7 +17183,7 @@ https://www.rfc1437.de/2010/11/14/word-this-google-chrome-erweiterungsgalerie/ - 2026-03-03T12:31:11.000Z + 2026-03-03T12:31:11.994Z monthly 0.8 @@ -17003,7 +17192,7 @@ https://www.rfc1437.de/2010/11/14/jlouis-ramblings-on-erlang-state-and-crashes/ - 2026-03-03T12:31:16.000Z + 2026-03-03T12:31:16.283Z monthly 0.8 @@ -17012,7 +17201,7 @@ https://www.rfc1437.de/2010/11/14/atomo/ - 2026-03-03T12:31:20.000Z + 2026-03-03T12:31:20.974Z monthly 0.8 @@ -17021,7 +17210,7 @@ https://www.rfc1437.de/2010/11/13/wordpress-e2-80-ba-wptouch-c2-ab-wordpress-plugins/ - 2026-03-03T12:31:25.000Z + 2026-03-03T12:31:25.321Z monthly 0.8 @@ -17030,7 +17219,7 @@ https://www.rfc1437.de/2010/11/13/unionsminister-sitzblockierer-sollen-polizei-einsatz-bezahlen-tagesschau-de/ - 2026-03-03T12:31:29.000Z + 2026-03-03T12:31:29.987Z monthly 0.8 @@ -17039,7 +17228,7 @@ https://www.rfc1437.de/2010/11/13/herbst/ - 2026-03-03T12:31:33.000Z + 2026-03-03T12:31:33.347Z monthly 0.8 @@ -17048,7 +17237,7 @@ https://www.rfc1437.de/2010/11/13/introducing-thirty-ten-my-guide-to-creating-a-twenty-ten-child-theme-aaron-jorb-inaaron-jorb-in/ - 2026-03-03T12:31:37.000Z + 2026-03-03T12:31:37.661Z monthly 0.8 @@ -17057,7 +17246,7 @@ https://www.rfc1437.de/2010/11/13/wordpress-e2-80-ba-wordpress-nginx-proxy-cache-integrator-c2-ab-wordpress-plugins/ - 2026-03-03T12:31:41.000Z + 2026-03-03T12:31:41.429Z monthly 0.8 @@ -17066,7 +17255,7 @@ https://www.rfc1437.de/2010/11/13/bitrot-reloaded/ - 2026-03-03T12:31:45.000Z + 2026-03-03T12:31:45.338Z monthly 0.8 @@ -17075,7 +17264,7 @@ https://www.rfc1437.de/2010/11/13/rfc1437-content-type-matter-transport-sentient/ - 2026-03-03T12:31:49.000Z + 2026-03-03T12:31:49.536Z monthly 0.8 @@ -17084,7 +17273,7 @@ https://www.rfc1437.de/2010/11/13/about/ - 2026-03-07T21:07:22.000Z + 2026-03-07T21:07:22.739Z monthly 0.8 @@ -17093,7 +17282,7 @@ https://www.rfc1437.de/2010/11/12/bitrot/ - 2026-03-03T12:31:58.000Z + 2026-03-03T12:31:58.049Z monthly 0.8 @@ -17102,7 +17291,7 @@ https://www.rfc1437.de/2010/11/12/fragen-und-antworten-zur-gesundheitsreform/ - 2026-03-03T12:32:02.000Z + 2026-03-03T12:32:02.713Z monthly 0.8 @@ -17111,7 +17300,7 @@ https://www.rfc1437.de/2010/11/10/kilim/ - 2026-03-03T12:32:06.000Z + 2026-03-03T12:32:06.137Z monthly 0.8 @@ -17120,7 +17309,7 @@ https://www.rfc1437.de/2010/11/10/orc-language/ - 2026-03-03T12:32:10.000Z + 2026-03-03T12:32:10.355Z monthly 0.8 @@ -17129,7 +17318,7 @@ https://www.rfc1437.de/2010/11/10/twisted-orchestration-language-in-launchpad/ - 2026-03-03T12:32:13.000Z + 2026-03-03T12:32:13.799Z monthly 0.8 @@ -17138,7 +17327,7 @@ https://www.rfc1437.de/2010/11/08/fat-cat-software-iphoto-library-manager/ - 2026-03-03T12:32:18.000Z + 2026-03-03T12:32:18.082Z monthly 0.8 @@ -17147,7 +17336,7 @@ https://www.rfc1437.de/2010/11/08/interactive-fabrication-beautiful-modeler/ - 2026-03-03T12:32:21.000Z + 2026-03-03T12:32:21.473Z monthly 0.8 @@ -17156,7 +17345,7 @@ https://www.rfc1437.de/2010/11/08/the-v4z80p-a-z80-based-laptop-retroleum/ - 2026-03-03T12:32:25.000Z + 2026-03-03T12:32:25.283Z monthly 0.8 @@ -17165,7 +17354,7 @@ https://www.rfc1437.de/2010/11/08/tornado-web-server-documentation/ - 2026-03-03T12:32:29.000Z + 2026-03-03T12:32:29.527Z monthly 0.8 @@ -17174,7 +17363,7 @@ https://www.rfc1437.de/2010/11/07/oracle-cooks-up-free-and-premium-jvms/ - 2026-03-03T12:32:33.000Z + 2026-03-03T12:32:33.772Z monthly 0.8 @@ -17183,7 +17372,7 @@ https://www.rfc1437.de/2010/11/05/kunsthalle-bielefeld-der-westfaelische/ - 2026-03-03T12:32:37.000Z + 2026-03-03T12:32:37.236Z monthly 0.8 @@ -17192,7 +17381,7 @@ https://www.rfc1437.de/2010/11/05/mediathek-fuer-mac-os-x/ - 2026-03-03T12:32:41.000Z + 2026-03-03T12:32:41.544Z monthly 0.8 @@ -17201,7 +17390,7 @@ https://www.rfc1437.de/2010/11/05/panasonic-dmc-gf2-preview-1-introduction-digital/ - 2026-03-03T12:32:45.000Z + 2026-03-03T12:32:45.607Z monthly 0.8 @@ -17210,7 +17399,7 @@ https://www.rfc1437.de/2010/11/02/eventlet-networking-library/ - 2026-03-03T12:32:49.000Z + 2026-03-03T12:32:49.176Z monthly 0.8 @@ -17219,7 +17408,7 @@ https://www.rfc1437.de/2010/11/02/page/ - 2026-03-03T12:32:54.000Z + 2026-03-03T12:32:54.078Z monthly 0.8 @@ -17228,7 +17417,7 @@ https://www.rfc1437.de/2010/11/01/immateriblog-de-matthias-spielkamp-ueber/ - 2026-03-03T12:32:58.000Z + 2026-03-03T12:32:58.962Z monthly 0.8 @@ -17237,7 +17426,7 @@ https://www.rfc1437.de/2010/10/28/don-t-look-columnmanager/ - 2026-03-03T12:33:02.000Z + 2026-03-03T12:33:02.922Z monthly 0.8 @@ -17246,7 +17435,7 @@ https://www.rfc1437.de/2010/10/28/john-resig-simple-javascript-inheritance/ - 2026-03-03T12:33:06.000Z + 2026-03-03T12:33:06.910Z monthly 0.8 @@ -17255,7 +17444,7 @@ https://www.rfc1437.de/2010/10/28/jquery-column-cell-selector-bramstein-com/ - 2026-03-03T12:33:10.000Z + 2026-03-03T12:33:10.465Z monthly 0.8 @@ -17264,7 +17453,7 @@ https://www.rfc1437.de/2010/10/27/inform-7/ - 2026-03-03T12:33:14.000Z + 2026-03-03T12:33:14.522Z monthly 0.8 @@ -17273,7 +17462,7 @@ https://www.rfc1437.de/2010/10/27/magic-launch/ - 2026-03-03T12:33:18.000Z + 2026-03-03T12:33:18.988Z monthly 0.8 @@ -17282,7 +17471,7 @@ https://www.rfc1437.de/2010/10/25/coffee-on-the-keyboard-bleach-html-sanitizer-and/ - 2026-03-03T12:33:22.000Z + 2026-03-03T12:33:22.993Z monthly 0.8 @@ -17291,7 +17480,7 @@ https://www.rfc1437.de/2010/10/25/robhudson-s-django-debug-toolbar-at-master-github/ - 2026-03-03T12:33:27.000Z + 2026-03-03T12:33:27.481Z monthly 0.8 @@ -17300,7 +17489,7 @@ https://www.rfc1437.de/2010/10/21/oxymoron-css-framework/ - 2026-03-03T12:33:31.000Z + 2026-03-03T12:33:31.296Z monthly 0.8 @@ -17309,7 +17498,7 @@ https://www.rfc1437.de/2010/10/21/postgres-9-streaming-replication-and-django/ - 2026-03-03T12:33:35.000Z + 2026-03-03T12:33:35.590Z monthly 0.8 @@ -17318,7 +17507,7 @@ https://www.rfc1437.de/2010/10/19/fuzzy-mathematics-with-fuzzpy-part-1-mad-python/ - 2026-03-03T12:33:39.000Z + 2026-03-03T12:33:39.884Z monthly 0.8 @@ -17327,7 +17516,7 @@ https://www.rfc1437.de/2010/10/18/buckingham-project-hosting-on-google-code/ - 2026-03-03T12:33:43.000Z + 2026-03-03T12:33:43.865Z monthly 0.8 @@ -17336,7 +17525,7 @@ https://www.rfc1437.de/2010/10/18/building-iphone-apps-with-html-css-and-javascript-2/ - 2026-03-03T12:33:48.000Z + 2026-03-03T12:33:48.188Z monthly 0.8 @@ -17345,7 +17534,7 @@ https://www.rfc1437.de/2010/10/18/phonegap/ - 2026-03-03T12:33:51.000Z + 2026-03-03T12:33:51.776Z monthly 0.8 @@ -17354,7 +17543,7 @@ https://www.rfc1437.de/2010/10/11/hypergrid-1-5-opensim-3d-web-hypergrid-teleport/ - 2026-03-03T12:33:55.000Z + 2026-03-03T12:33:55.839Z monthly 0.8 @@ -17363,7 +17552,7 @@ https://www.rfc1437.de/2010/10/11/jacksonh-s-manos-at-master-github/ - 2026-03-03T12:33:59.000Z + 2026-03-03T12:33:59.921Z monthly 0.8 @@ -17372,7 +17561,7 @@ https://www.rfc1437.de/2010/10/11/kramdown/ - 2026-03-03T12:34:03.000Z + 2026-03-03T12:34:03.474Z monthly 0.8 @@ -17381,7 +17570,7 @@ https://www.rfc1437.de/2010/10/11/rubyfrontier-documentation-2/ - 2026-03-03T12:34:08.000Z + 2026-03-03T12:34:08.029Z monthly 0.8 @@ -17390,7 +17579,7 @@ https://www.rfc1437.de/2010/10/09/andrew-de-quincey-s-livejournal/ - 2026-03-03T12:34:11.000Z + 2026-03-03T12:34:11.682Z monthly 0.8 @@ -17399,7 +17588,7 @@ https://www.rfc1437.de/2010/10/08/briss/ - 2026-03-03T12:34:15.000Z + 2026-03-03T12:34:15.761Z monthly 0.8 @@ -17408,7 +17597,7 @@ https://www.rfc1437.de/2010/10/08/camelot-see-it/ - 2026-03-03T12:34:19.000Z + 2026-03-03T12:34:19.902Z monthly 0.8 @@ -17417,7 +17606,7 @@ https://www.rfc1437.de/2010/10/08/downloads-for-diva-s-d2-github/ - 2026-03-03T12:34:23.000Z + 2026-03-03T12:34:23.990Z monthly 0.8 @@ -17426,7 +17615,7 @@ https://www.rfc1437.de/2010/10/08/uncertainties-python-package-v1-7-0-documentation/ - 2026-03-03T12:34:28.000Z + 2026-03-03T12:34:28.037Z monthly 0.8 @@ -17435,7 +17624,7 @@ https://www.rfc1437.de/2010/10/07/lookingglass/ - 2026-03-03T12:34:32.000Z + 2026-03-03T12:34:32.098Z monthly 0.8 @@ -17444,7 +17633,7 @@ https://www.rfc1437.de/2010/10/07/radegast-metaverse-client-lightweight-client-for/ - 2026-03-03T12:34:36.000Z + 2026-03-03T12:34:36.209Z monthly 0.8 @@ -17453,7 +17642,7 @@ https://www.rfc1437.de/2010/10/06/santhoshtr-s-pypdflib-at-master-github/ - 2026-03-03T12:34:40.000Z + 2026-03-03T12:34:40.533Z monthly 0.8 @@ -17462,7 +17651,7 @@ https://www.rfc1437.de/2010/10/06/there-is-no-plan-b-why-the-ipv4-to-ipv6/ - 2026-03-03T12:34:45.000Z + 2026-03-03T12:34:45.656Z monthly 0.8 @@ -17471,7 +17660,7 @@ https://www.rfc1437.de/2010/10/04/chicken-nuggets-are-made-from-this-pink-goop/ - 2026-03-03T12:34:49.000Z + 2026-03-03T12:34:49.678Z monthly 0.8 @@ -17480,7 +17669,7 @@ https://www.rfc1437.de/2010/10/02/filtering-dropdown-lists-in-the-django-admin/ - 2026-03-03T12:34:53.000Z + 2026-03-03T12:34:53.470Z monthly 0.8 @@ -17489,7 +17678,7 @@ https://www.rfc1437.de/2010/10/01/arskom-s-soaplib-at-1-0-github/ - 2026-03-03T12:34:57.000Z + 2026-03-03T12:34:57.552Z monthly 0.8 @@ -17498,7 +17687,7 @@ https://www.rfc1437.de/2010/10/01/pysimplesoap-project-hosting-on-google-code/ - 2026-03-03T12:35:01.000Z + 2026-03-03T12:35:01.621Z monthly 0.8 @@ -17507,7 +17696,7 @@ https://www.rfc1437.de/2010/10/01/using-the-elementtree-module-to-generate-soap/ - 2026-03-03T12:35:05.000Z + 2026-03-03T12:35:05.646Z monthly 0.8 @@ -17516,7 +17705,7 @@ https://www.rfc1437.de/2010/09/28/dcramer-s-django-sentry-at-master-github/ - 2026-03-03T12:35:10.000Z + 2026-03-03T12:35:10.223Z monthly 0.8 @@ -17525,7 +17714,7 @@ https://www.rfc1437.de/2010/09/28/wo-ich-schon-ueberall-war/ - 2026-03-03T12:35:13.000Z + 2026-03-03T12:35:13.835Z monthly 0.8 @@ -17534,7 +17723,7 @@ https://www.rfc1437.de/2010/09/27/gcv-s-appengine-magic-at-master-github/ - 2026-03-03T12:35:17.000Z + 2026-03-03T12:35:17.462Z monthly 0.8 @@ -17543,7 +17732,7 @@ https://www.rfc1437.de/2010/09/27/jduey-s-arrows-at-master-github/ - 2026-03-03T12:35:21.000Z + 2026-03-03T12:35:21.532Z monthly 0.8 @@ -17552,7 +17741,7 @@ https://www.rfc1437.de/2010/09/27/ninjudd-s-cake-at-master-github/ - 2026-03-03T12:35:25.000Z + 2026-03-03T12:35:25.153Z monthly 0.8 @@ -17561,7 +17750,7 @@ https://www.rfc1437.de/2010/09/27/shotwell/ - 2026-03-03T12:35:29.000Z + 2026-03-03T12:35:29.209Z monthly 0.8 @@ -17570,7 +17759,7 @@ https://www.rfc1437.de/2010/09/23/kojo-home/ - 2026-03-03T12:35:33.000Z + 2026-03-03T12:35:33.253Z monthly 0.8 @@ -17579,7 +17768,7 @@ https://www.rfc1437.de/2010/09/23/lastschriftzahlung-easycash-sammelt-daten-ueber/ - 2026-03-03T12:35:37.000Z + 2026-03-03T12:35:37.775Z monthly 0.8 @@ -17588,7 +17777,7 @@ https://www.rfc1437.de/2010/09/21/finepix-x100-fujifilm-bringt-kompaktkamera-mit/ - 2026-03-03T12:35:41.000Z + 2026-03-03T12:35:41.857Z monthly 0.8 @@ -17597,7 +17786,7 @@ https://www.rfc1437.de/2010/09/21/fujifilm-finepix-x100-where-the-hell-did-this/ - 2026-03-03T12:35:46.000Z + 2026-03-03T12:35:46.459Z monthly 0.8 @@ -17606,7 +17795,7 @@ https://www.rfc1437.de/2010/09/21/fujifilm-unveils-finepix-x100-large-sensor/ - 2026-03-03T12:35:50.000Z + 2026-03-03T12:35:50.474Z monthly 0.8 @@ -17615,7 +17804,7 @@ https://www.rfc1437.de/2010/09/21/hands-on-the-vlc-ipad-app-pretty-good/ - 2026-03-03T12:35:54.000Z + 2026-03-03T12:35:54.511Z monthly 0.8 @@ -17624,7 +17813,7 @@ https://www.rfc1437.de/2010/09/21/readme-copperhead-project-hosting-on-google-code/ - 2026-03-03T12:35:58.000Z + 2026-03-03T12:35:58.540Z monthly 0.8 @@ -17633,7 +17822,7 @@ https://www.rfc1437.de/2010/09/21/tidbits-watchlist-tinkertool-4-2/ - 2026-03-03T12:36:03.000Z + 2026-03-03T12:36:03.511Z monthly 0.8 @@ -17642,7 +17831,7 @@ https://www.rfc1437.de/2010/09/15/codepad/ - 2026-03-03T12:36:07.000Z + 2026-03-03T12:36:07.132Z monthly 0.8 @@ -17651,7 +17840,7 @@ https://www.rfc1437.de/2010/09/15/free-pascal-advanced-open-source-pascal-compiler/ - 2026-03-03T12:36:11.000Z + 2026-03-03T12:36:11.632Z monthly 0.8 @@ -17660,7 +17849,7 @@ https://www.rfc1437.de/2010/09/15/home-disco-project/ - 2026-03-03T12:36:15.000Z + 2026-03-03T12:36:15.216Z monthly 0.8 @@ -17669,7 +17858,7 @@ https://www.rfc1437.de/2010/09/15/lazarus-snapshots/ - 2026-03-03T12:36:19.000Z + 2026-03-03T12:36:19.307Z monthly 0.8 @@ -17678,7 +17867,7 @@ https://www.rfc1437.de/2010/09/15/octopy-project-hosting-on-google-code/ - 2026-03-03T12:36:22.000Z + 2026-03-03T12:36:22.858Z monthly 0.8 @@ -17687,7 +17876,7 @@ https://www.rfc1437.de/2010/09/14/mincemeat-py-mapreduce-on-python/ - 2026-03-03T12:36:26.000Z + 2026-03-03T12:36:26.463Z monthly 0.8 @@ -17696,7 +17885,7 @@ https://www.rfc1437.de/2010/09/14/sass-syntactically-awesome-stylesheets/ - 2026-03-03T12:36:30.000Z + 2026-03-03T12:36:30.047Z monthly 0.8 @@ -17705,7 +17894,7 @@ https://www.rfc1437.de/2010/09/13/ninjakit-greasemonkey-for-safari-apple/ - 2026-03-03T12:36:34.000Z + 2026-03-03T12:36:34.591Z monthly 0.8 @@ -17714,7 +17903,7 @@ https://www.rfc1437.de/2010/09/13/nodebox-for-opengl-city-in-a-bottle/ - 2026-03-03T12:36:38.000Z + 2026-03-03T12:36:38.149Z monthly 0.8 @@ -17723,7 +17912,7 @@ https://www.rfc1437.de/2010/09/13/objgraph-drawing-python-object-reference-graphs/ - 2026-03-03T12:36:42.000Z + 2026-03-03T12:36:42.675Z monthly 0.8 @@ -17732,7 +17921,7 @@ https://www.rfc1437.de/2010/09/13/pyglet/ - 2026-03-03T12:36:46.000Z + 2026-03-03T12:36:46.224Z monthly 0.8 @@ -17741,7 +17930,7 @@ https://www.rfc1437.de/2010/09/10/introduction/ - 2026-03-03T12:36:49.000Z + 2026-03-03T12:36:49.785Z monthly 0.8 @@ -17750,7 +17939,7 @@ https://www.rfc1437.de/2010/09/10/lingua-romana-perligata-perl-for-the-xxiimum/ - 2026-03-04T15:18:28.000Z + 2026-03-04T15:18:28.014Z monthly 0.8 @@ -17759,7 +17948,7 @@ https://www.rfc1437.de/2010/09/10/squeryl/ - 2026-03-03T12:36:57.000Z + 2026-03-03T12:36:57.885Z monthly 0.8 @@ -17768,7 +17957,7 @@ https://www.rfc1437.de/2010/09/06/cobol-on-cogs/ - 2026-03-03T12:37:01.000Z + 2026-03-03T12:37:01.360Z monthly 0.8 @@ -17777,7 +17966,7 @@ https://www.rfc1437.de/2010/09/06/dos-on-dope-the-last-mvc-web-framework-you-ll/ - 2026-03-07T21:07:23.000Z + 2026-03-07T21:07:23.652Z monthly 0.8 @@ -17786,7 +17975,7 @@ https://www.rfc1437.de/2010/09/06/plac/ - 2026-03-03T12:37:09.000Z + 2026-03-03T12:37:09.475Z monthly 0.8 @@ -17795,7 +17984,7 @@ https://www.rfc1437.de/2010/09/06/python-datastructures-backed-by-redis-irrational/ - 2026-03-03T12:37:14.000Z + 2026-03-03T12:37:14.498Z monthly 0.8 @@ -17804,7 +17993,7 @@ https://www.rfc1437.de/2010/09/06/schwarz-gelb-einigt-sich-auf-laengere-akw/ - 2026-03-03T12:37:18.000Z + 2026-03-03T12:37:18.628Z monthly 0.8 @@ -17813,7 +18002,7 @@ https://www.rfc1437.de/2010/09/06/zeromq/ - 2026-03-03T12:37:22.000Z + 2026-03-03T12:37:22.640Z monthly 0.8 @@ -17822,7 +18011,7 @@ https://www.rfc1437.de/2010/09/04/kein-sommersend-mehr-wochenmarkt-vor-der/ - 2026-03-03T12:37:27.000Z + 2026-03-03T12:37:27.178Z monthly 0.8 @@ -17831,7 +18020,7 @@ https://www.rfc1437.de/2010/09/03/digitale-literatur-neal-stephenson-und-die/ - 2026-03-03T12:37:31.000Z + 2026-03-03T12:37:31.247Z monthly 0.8 @@ -17840,7 +18029,7 @@ https://www.rfc1437.de/2010/09/03/jazzscheme-2/ - 2026-03-03T12:37:34.000Z + 2026-03-03T12:37:34.891Z monthly 0.8 @@ -17849,7 +18038,7 @@ https://www.rfc1437.de/2010/09/03/quicklisp-get-started-with-common-lisp-libraries/ - 2026-03-03T12:37:39.000Z + 2026-03-03T12:37:39.424Z monthly 0.8 @@ -17858,7 +18047,7 @@ https://www.rfc1437.de/2010/09/02/paver-easy-scripting-for-software-projects/ - 2026-03-03T12:37:43.000Z + 2026-03-03T12:37:43.081Z monthly 0.8 @@ -17867,7 +18056,7 @@ https://www.rfc1437.de/2010/09/02/pysistence/ - 2026-03-03T12:37:47.000Z + 2026-03-03T12:37:47.677Z monthly 0.8 @@ -17876,7 +18065,7 @@ https://www.rfc1437.de/2010/09/01/the-official-web2py-book/ - 2026-03-03T12:37:51.000Z + 2026-03-03T12:37:51.390Z monthly 0.8 @@ -17885,7 +18074,7 @@ https://www.rfc1437.de/2010/08/30/emscripten/ - 2026-03-03T12:37:55.000Z + 2026-03-03T12:37:55.964Z monthly 0.8 @@ -17894,7 +18083,7 @@ https://www.rfc1437.de/2010/08/30/lambdaj/ - 2026-03-03T12:37:59.000Z + 2026-03-03T12:37:59.547Z monthly 0.8 @@ -17903,7 +18092,7 @@ https://www.rfc1437.de/2010/08/30/nakkaya-s-static-at-master-github/ - 2026-03-03T12:38:03.000Z + 2026-03-03T12:38:03.171Z monthly 0.8 @@ -17912,7 +18101,7 @@ https://www.rfc1437.de/2010/08/30/project-aon-main-home-browse/ - 2026-03-03T12:38:07.000Z + 2026-03-03T12:38:07.731Z monthly 0.8 @@ -17921,7 +18110,7 @@ https://www.rfc1437.de/2010/08/27/creating-epub-files-with-pages/ - 2026-03-03T12:38:11.000Z + 2026-03-03T12:38:11.796Z monthly 0.8 @@ -17930,7 +18119,7 @@ https://www.rfc1437.de/2010/08/27/meliae-python-memory-analysis-in-launchpad/ - 2026-03-03T12:38:15.000Z + 2026-03-03T12:38:15.871Z monthly 0.8 @@ -17939,7 +18128,7 @@ https://www.rfc1437.de/2010/08/26/cosina-joins-micro-four-thirds-system-digital/ - 2026-03-03T12:38:20.000Z + 2026-03-03T12:38:20.996Z monthly 0.8 @@ -17948,7 +18137,7 @@ https://www.rfc1437.de/2010/08/26/cython-ann-cython-0-13-released/ - 2026-03-03T12:38:28.000Z + 2026-03-03T12:38:28.184Z monthly 0.8 @@ -17957,7 +18146,7 @@ https://www.rfc1437.de/2010/08/23/falls-sich-wer-wundert-wo-ich-war/ - 2026-03-03T12:38:32.000Z + 2026-03-03T12:38:32.681Z monthly 0.8 @@ -17966,7 +18155,7 @@ https://www.rfc1437.de/2010/08/23/wo-ich-auch-noch-war/ - 2026-03-03T12:38:36.000Z + 2026-03-03T12:38:36.455Z monthly 0.8 @@ -17975,7 +18164,7 @@ https://www.rfc1437.de/2010/08/21/wegen-des-aufschwungs-wirtschaftsverband-will/ - 2026-03-03T12:38:40.000Z + 2026-03-03T12:38:40.559Z monthly 0.8 @@ -17984,7 +18173,7 @@ https://www.rfc1437.de/2010/08/03/multiplication-is-easier-when-it-s-complex/ - 2026-03-03T12:38:44.000Z + 2026-03-03T12:38:44.415Z monthly 0.8 @@ -17993,7 +18182,7 @@ https://www.rfc1437.de/2010/08/03/virtuelle-internetlady-provoziert-in-den-usa/ - 2026-03-03T12:38:48.000Z + 2026-03-03T12:38:48.786Z monthly 0.8 @@ -18002,7 +18191,7 @@ https://www.rfc1437.de/2010/07/31/emotion-markup-language-emotionml-1-0/ - 2026-03-03T12:38:52.000Z + 2026-03-03T12:38:52.958Z monthly 0.8 @@ -18011,7 +18200,7 @@ https://www.rfc1437.de/2010/07/30/jemacs-the-java-scheme-based-emacs/ - 2026-03-03T12:38:56.000Z + 2026-03-03T12:38:56.579Z monthly 0.8 @@ -18020,7 +18209,7 @@ https://www.rfc1437.de/2010/07/30/scribes-simple-and-powerful-text-editor-for-gnome/ - 2026-03-03T12:39:00.000Z + 2026-03-03T12:39:00.748Z monthly 0.8 @@ -18029,7 +18218,7 @@ https://www.rfc1437.de/2010/07/28/eu-kommission-plant-umstellung-aller-girokonto/ - 2026-03-03T12:39:05.000Z + 2026-03-03T12:39:05.292Z monthly 0.8 @@ -18038,7 +18227,7 @@ https://www.rfc1437.de/2010/07/27/pep-380-syntax-for-delegating-to-a-subgenerator/ - 2026-03-03T12:39:09.000Z + 2026-03-03T12:39:09.932Z monthly 0.8 @@ -18047,7 +18236,7 @@ https://www.rfc1437.de/2010/07/27/saucelabs-s-monocle-at-master-github/ - 2026-03-03T12:39:13.000Z + 2026-03-03T12:39:13.673Z monthly 0.8 @@ -18056,7 +18245,7 @@ https://www.rfc1437.de/2010/07/26/hg-git-mercurial-plugin-2/ - 2026-03-03T12:39:17.000Z + 2026-03-03T12:39:17.291Z monthly 0.8 @@ -18065,7 +18254,7 @@ https://www.rfc1437.de/2010/07/26/valued-lessons-monads-in-python-with-nice-syntax-2/ - 2026-03-03T12:39:21.000Z + 2026-03-03T12:39:21.522Z monthly 0.8 @@ -18074,7 +18263,7 @@ https://www.rfc1437.de/2010/07/25/pjs4ipad-project-hosting-on-google-code/ - 2026-03-03T12:39:26.000Z + 2026-03-03T12:39:26.077Z monthly 0.8 @@ -18083,7 +18272,7 @@ https://www.rfc1437.de/2010/07/24/0-7-release-opensim/ - 2026-03-03T12:39:30.000Z + 2026-03-03T12:39:30.230Z monthly 0.8 @@ -18092,7 +18281,7 @@ https://www.rfc1437.de/2010/07/24/tide-2-0-beta/ - 2026-03-03T12:39:33.000Z + 2026-03-03T12:39:33.844Z monthly 0.8 @@ -18101,7 +18290,7 @@ https://www.rfc1437.de/2010/07/23/ar-drone-com-parrot-wi-fi-quadricopter-augmented/ - 2026-03-03T12:39:38.000Z + 2026-03-03T12:39:38.446Z monthly 0.8 @@ -18110,7 +18299,7 @@ https://www.rfc1437.de/2010/07/23/python-ide-with-django-support-jetbrains-pycharm/ - 2026-03-03T12:39:42.000Z + 2026-03-03T12:39:42.531Z monthly 0.8 @@ -18119,7 +18308,7 @@ https://www.rfc1437.de/2010/07/20/don-t-hold-it-wrong/ - 2026-03-03T12:39:46.000Z + 2026-03-03T12:39:46.729Z monthly 0.8 @@ -18128,7 +18317,7 @@ https://www.rfc1437.de/2010/07/19/gefahren-im-netz-kriminalbeamte-fordern-reset/ - 2026-03-03T12:39:51.000Z + 2026-03-03T12:39:51.346Z monthly 0.8 @@ -18137,7 +18326,7 @@ https://www.rfc1437.de/2010/07/19/itod-s-fluidium-at-master-github/ - 2026-03-03T12:39:55.000Z + 2026-03-03T12:39:55.614Z monthly 0.8 @@ -18146,7 +18335,7 @@ https://www.rfc1437.de/2010/07/18/panasonic-dmc-lx5k-support-and-service-information/ - 2026-03-03T12:40:00.000Z + 2026-03-03T12:40:00.610Z monthly 0.8 @@ -18155,7 +18344,7 @@ https://www.rfc1437.de/2010/07/17/lightweight-approach-to-aop-in-python/ - 2026-03-03T12:40:04.000Z + 2026-03-03T12:40:04.230Z monthly 0.8 @@ -18164,7 +18353,7 @@ https://www.rfc1437.de/2010/07/17/mobile-firefoxhome-mozillawiki/ - 2026-03-03T12:40:08.000Z + 2026-03-03T12:40:08.834Z monthly 0.8 @@ -18173,7 +18362,7 @@ https://www.rfc1437.de/2010/07/16/building-iphone-apps-with-html-css-and-javascript/ - 2026-03-03T12:40:12.000Z + 2026-03-03T12:40:12.459Z monthly 0.8 @@ -18182,7 +18371,7 @@ https://www.rfc1437.de/2010/07/16/jquery-aop-project-hosting-on-google-code/ - 2026-03-03T12:40:16.000Z + 2026-03-03T12:40:16.580Z monthly 0.8 @@ -18191,7 +18380,7 @@ https://www.rfc1437.de/2010/07/12/auch-union-gegen-homoeopathie-auf-kassenkosten/ - 2026-03-03T12:40:20.000Z + 2026-03-03T12:40:20.218Z monthly 0.8 @@ -18200,7 +18389,7 @@ https://www.rfc1437.de/2010/07/12/jessenoller-com-pep-3148-accepted-futures-execute/ - 2026-03-03T12:40:25.000Z + 2026-03-03T12:40:25.313Z monthly 0.8 @@ -18209,7 +18398,7 @@ https://www.rfc1437.de/2010/07/11/chickenfoot/ - 2026-03-03T12:40:29.000Z + 2026-03-03T12:40:29.508Z monthly 0.8 @@ -18218,7 +18407,7 @@ https://www.rfc1437.de/2010/07/11/coscripter/ - 2026-03-03T12:40:34.000Z + 2026-03-03T12:40:34.272Z monthly 0.8 @@ -18227,7 +18416,7 @@ https://www.rfc1437.de/2010/07/10/hollywood-accounting-losing-in-the-courts-techdirt/ - 2026-03-03T12:40:39.000Z + 2026-03-03T12:40:39.177Z monthly 0.8 @@ -18236,7 +18425,7 @@ https://www.rfc1437.de/2010/07/10/three-minute-philosophy-immanuel-kant/ - 2026-03-03T12:40:43.000Z + 2026-03-03T12:40:43.368Z monthly 0.8 @@ -18245,7 +18434,7 @@ https://www.rfc1437.de/2010/07/05/fake-mac-os-x-web-browser-automation-and-webapp/ - 2026-03-03T12:40:46.000Z + 2026-03-03T12:40:46.961Z monthly 0.8 @@ -18254,7 +18443,7 @@ https://www.rfc1437.de/2010/07/04/dropbox-api/ - 2026-03-03T12:40:51.000Z + 2026-03-03T12:40:51.520Z monthly 0.8 @@ -18263,7 +18452,7 @@ https://www.rfc1437.de/2010/07/04/python-2-7-release/ - 2026-03-03T12:40:56.000Z + 2026-03-03T12:40:56.039Z monthly 0.8 @@ -18272,7 +18461,7 @@ https://www.rfc1437.de/2010/07/03/gib-dem-irrsinn-eine-chance-ich-kaufe-nicht-mehr/ - 2026-03-03T12:41:01.000Z + 2026-03-03T12:41:01.048Z monthly 0.8 @@ -18281,7 +18470,7 @@ https://www.rfc1437.de/2010/07/02/back-in-time/ - 2026-03-03T12:41:05.000Z + 2026-03-03T12:41:05.760Z monthly 0.8 @@ -18290,7 +18479,7 @@ https://www.rfc1437.de/2010/07/01/liebke-s-clj/ - 2026-03-03T12:41:10.000Z + 2026-03-03T12:41:10.614Z monthly 0.8 @@ -18299,7 +18488,7 @@ https://www.rfc1437.de/2010/06/27/jessemiller-s-hamlpy/ - 2026-03-03T12:41:15.000Z + 2026-03-03T12:41:15.950Z monthly 0.8 @@ -18308,7 +18497,7 @@ https://www.rfc1437.de/2010/06/27/welcome-ibis-reader/ - 2026-03-03T12:41:20.000Z + 2026-03-03T12:41:20.874Z monthly 0.8 @@ -18317,7 +18506,7 @@ https://www.rfc1437.de/2010/06/27/write-ahead-logging/ - 2026-03-03T12:41:25.000Z + 2026-03-03T12:41:25.733Z monthly 0.8 @@ -18326,7 +18515,7 @@ https://www.rfc1437.de/2010/06/23/inconsolata/ - 2026-03-03T12:41:29.000Z + 2026-03-03T12:41:29.859Z monthly 0.8 @@ -18335,7 +18524,7 @@ https://www.rfc1437.de/2010/06/23/ipad-or-bust-blog-the-omni-group/ - 2026-03-03T12:41:34.000Z + 2026-03-03T12:41:34.591Z monthly 0.8 @@ -18344,7 +18533,7 @@ https://www.rfc1437.de/2010/06/23/nicholas-pi-l-zeromq-an-introduction/ - 2026-03-03T12:41:39.000Z + 2026-03-03T12:41:39.112Z monthly 0.8 @@ -18353,7 +18542,7 @@ https://www.rfc1437.de/2010/06/20/ben-goldacre-predictions-are-fine-but-there-are/ - 2026-03-03T12:41:44.000Z + 2026-03-03T12:41:44.369Z monthly 0.8 @@ -18362,7 +18551,7 @@ https://www.rfc1437.de/2010/06/20/ios-4-walkthrough-tipb/ - 2026-03-03T12:41:49.000Z + 2026-03-03T12:41:49.478Z monthly 0.8 @@ -18371,7 +18560,7 @@ https://www.rfc1437.de/2010/06/20/pyfilesystem-0-3-released/ - 2026-03-03T12:41:53.000Z + 2026-03-03T12:41:53.610Z monthly 0.8 @@ -18380,7 +18569,7 @@ https://www.rfc1437.de/2010/06/19/about-greenfoot/ - 2026-03-03T12:41:57.000Z + 2026-03-03T12:41:57.248Z monthly 0.8 @@ -18389,7 +18578,7 @@ https://www.rfc1437.de/2010/06/18/chimply-generates-your-images/ - 2026-03-03T12:42:00.000Z + 2026-03-03T12:42:00.915Z monthly 0.8 @@ -18398,7 +18587,7 @@ https://www.rfc1437.de/2010/06/17/pypy-status-blog-a-jit-for-regular-expression/ - 2026-03-03T12:42:06.000Z + 2026-03-03T12:42:06.132Z monthly 0.8 @@ -18407,7 +18596,7 @@ https://www.rfc1437.de/2010/06/16/nutshell-lettuce-v0-1-2-barium-release/ - 2026-03-03T12:42:10.000Z + 2026-03-03T12:42:10.872Z monthly 0.8 @@ -18416,7 +18605,7 @@ https://www.rfc1437.de/2010/06/16/ssh-on-the-iphone-at-last-the-23x-blog/ - 2026-03-03T12:42:15.000Z + 2026-03-03T12:42:15.657Z monthly 0.8 @@ -18425,7 +18614,7 @@ https://www.rfc1437.de/2010/06/16/urheberrechtsreform-justizministerin-fuellt/ - 2026-03-03T12:42:21.000Z + 2026-03-03T12:42:21.196Z monthly 0.8 @@ -18434,7 +18623,7 @@ https://www.rfc1437.de/2010/06/12/ifolder/ - 2026-03-03T12:42:26.000Z + 2026-03-03T12:42:26.372Z monthly 0.8 @@ -18443,7 +18632,7 @@ https://www.rfc1437.de/2010/06/12/innovation-sieht-anders-aus/ - 2026-03-03T12:42:31.000Z + 2026-03-03T12:42:31.314Z monthly 0.8 @@ -18452,7 +18641,7 @@ https://www.rfc1437.de/2010/06/12/spd-sagt-cdu-in-nrw-ab-die-wahren-irren-taz-de/ - 2026-03-03T12:42:37.000Z + 2026-03-03T12:42:37.779Z monthly 0.8 @@ -18461,7 +18650,7 @@ https://www.rfc1437.de/2010/06/09/adblock-for-safari/ - 2026-03-03T12:42:42.000Z + 2026-03-03T12:42:42.092Z monthly 0.8 @@ -18470,7 +18659,7 @@ https://www.rfc1437.de/2010/06/09/im-auge-des-gesetzes-der-freitag/ - 2026-03-03T12:42:46.000Z + 2026-03-03T12:42:46.747Z monthly 0.8 @@ -18479,7 +18668,7 @@ https://www.rfc1437.de/2010/06/08/racket-released/ - 2026-03-03T12:42:50.000Z + 2026-03-03T12:42:50.883Z monthly 0.8 @@ -18488,7 +18677,7 @@ https://www.rfc1437.de/2010/06/07/internettelefonie-iphone-telekom-droht-skype/ - 2026-03-03T12:42:55.000Z + 2026-03-03T12:42:55.543Z monthly 0.8 @@ -18497,7 +18686,7 @@ https://www.rfc1437.de/2010/06/06/hdr-test/ - 2026-03-03T12:43:00.000Z + 2026-03-03T12:43:00.976Z monthly 0.8 @@ -18506,7 +18695,7 @@ https://www.rfc1437.de/2010/06/06/hdrtist-hdr-software-will-never-be-the-same/ - 2026-03-03T12:43:05.000Z + 2026-03-03T12:43:05.560Z monthly 0.8 @@ -18515,7 +18704,7 @@ https://www.rfc1437.de/2010/06/06/kenkeiter-s-ryfi/ - 2026-03-03T12:43:09.000Z + 2026-03-03T12:43:09.830Z monthly 0.8 @@ -18524,7 +18713,7 @@ https://www.rfc1437.de/2010/06/04/creaceed-hydra/ - 2026-03-03T12:43:14.000Z + 2026-03-03T12:43:14.242Z monthly 0.8 @@ -18533,7 +18722,7 @@ https://www.rfc1437.de/2010/06/04/hdr-photostudio-hdr-photo-software-hdr-merge/ - 2026-03-03T12:43:18.000Z + 2026-03-03T12:43:18.973Z monthly 0.8 @@ -18542,7 +18731,7 @@ https://www.rfc1437.de/2010/06/04/plac-parsing-the-command-line-the-easy-way/ - 2026-03-03T12:43:23.000Z + 2026-03-03T12:43:23.312Z monthly 0.8 @@ -18551,7 +18740,7 @@ https://www.rfc1437.de/2010/06/04/python-package-index-baker-1-1/ - 2026-03-03T12:43:27.000Z + 2026-03-03T12:43:27.356Z monthly 0.8 @@ -18560,7 +18749,7 @@ https://www.rfc1437.de/2010/06/03/aeracode-on-django-and-migrations/ - 2026-03-03T12:43:32.000Z + 2026-03-03T12:43:32.174Z monthly 0.8 @@ -18569,7 +18758,7 @@ https://www.rfc1437.de/2010/06/03/mamiya-announces-rz33-medium-format-camera/ - 2026-03-03T12:43:37.000Z + 2026-03-03T12:43:37.717Z monthly 0.8 @@ -18578,7 +18767,7 @@ https://www.rfc1437.de/2010/06/03/oppugn-us-where-the-rants-go/ - 2026-03-03T12:43:41.000Z + 2026-03-03T12:43:41.570Z monthly 0.8 @@ -18587,7 +18776,7 @@ https://www.rfc1437.de/2010/05/31/hackagedb-berp-0-0-1/ - 2026-03-03T12:43:46.000Z + 2026-03-03T12:43:46.198Z monthly 0.8 @@ -18596,7 +18785,7 @@ https://www.rfc1437.de/2010/05/31/koehler-ruecktritt-fassungslosigkeit-und-bedauern/ - 2026-03-03T12:43:51.000Z + 2026-03-03T12:43:51.361Z monthly 0.8 @@ -18605,7 +18794,7 @@ https://www.rfc1437.de/2010/05/30/fossil-fossil-home-page/ - 2026-03-03T12:43:56.000Z + 2026-03-03T12:43:56.598Z monthly 0.8 @@ -18614,7 +18803,7 @@ https://www.rfc1437.de/2010/05/30/ikiwiki/ - 2026-03-03T12:44:01.000Z + 2026-03-03T12:44:01.711Z monthly 0.8 @@ -18623,7 +18812,7 @@ https://www.rfc1437.de/2010/05/28/bug-560738-no-mac-style-keyboard-shortcuts/ - 2026-03-03T12:44:07.000Z + 2026-03-03T12:44:07.161Z monthly 0.8 @@ -18632,7 +18821,7 @@ https://www.rfc1437.de/2010/05/27/daemon-1-0/ - 2026-03-03T12:44:11.000Z + 2026-03-03T12:44:11.076Z monthly 0.8 @@ -18641,7 +18830,7 @@ https://www.rfc1437.de/2010/05/27/pyquery-a-jquery-like-library-for-python/ - 2026-03-03T12:44:15.000Z + 2026-03-03T12:44:15.629Z monthly 0.8 @@ -18650,7 +18839,7 @@ https://www.rfc1437.de/2010/05/27/python-daemon-1-5-5/ - 2026-03-03T12:44:20.000Z + 2026-03-03T12:44:20.188Z monthly 0.8 @@ -18659,7 +18848,7 @@ https://www.rfc1437.de/2010/05/27/spring-python/ - 2026-03-03T12:44:24.000Z + 2026-03-03T12:44:24.877Z monthly 0.8 @@ -18668,7 +18857,7 @@ https://www.rfc1437.de/2010/05/27/turkmenbashi-1-0-0/ - 2026-03-03T12:44:29.000Z + 2026-03-03T12:44:29.065Z monthly 0.8 @@ -18677,7 +18866,7 @@ https://www.rfc1437.de/2010/05/23/my-world-is-a-little-darker/ - 2026-03-03T12:44:34.000Z + 2026-03-03T12:44:34.204Z monthly 0.8 @@ -18686,7 +18875,7 @@ https://www.rfc1437.de/2010/05/22/whack-em/ - 2026-03-03T12:44:37.000Z + 2026-03-03T12:44:37.892Z monthly 0.8 @@ -18695,7 +18884,7 @@ https://www.rfc1437.de/2010/05/21/bundesgerichtshof-freie-bahn-fuer-softwarepatente/ - 2026-03-03T12:44:43.000Z + 2026-03-03T12:44:43.077Z monthly 0.8 @@ -18704,7 +18893,7 @@ https://www.rfc1437.de/2010/05/20/landis-gesteht-doping/ - 2026-03-03T12:44:48.000Z + 2026-03-03T12:44:48.324Z monthly 0.8 @@ -18713,7 +18902,7 @@ https://www.rfc1437.de/2010/05/19/rfc1437-on-the-road-archive-2/ - 2026-03-03T12:44:53.000Z + 2026-03-03T12:44:53.091Z monthly 0.8 @@ -18722,7 +18911,7 @@ https://www.rfc1437.de/2010/05/18/waveboard-google-wave-client-for-iphone-and-mac/ - 2026-03-03T12:44:57.000Z + 2026-03-03T12:44:57.304Z monthly 0.8 @@ -18731,7 +18920,7 @@ https://www.rfc1437.de/2010/05/16/akw-laufzeiten-sollen-ohne-bundesrat-verlaengert/ - 2026-03-03T12:45:01.000Z + 2026-03-03T12:45:01.490Z monthly 0.8 @@ -18740,7 +18929,7 @@ https://www.rfc1437.de/2010/05/15/clojure-datatypes/ - 2026-03-03T12:45:06.000Z + 2026-03-03T12:45:06.108Z monthly 0.8 @@ -18749,7 +18938,7 @@ https://www.rfc1437.de/2010/05/15/deutsche-bank-fuer-verbotene-wetten-bestraft/ - 2026-03-03T12:45:10.000Z + 2026-03-03T12:45:10.236Z monthly 0.8 @@ -18758,7 +18947,7 @@ https://www.rfc1437.de/2010/05/15/koch-beharrt-auf-kuerzungen-im-bildungsbereich/ - 2026-03-03T12:45:14.000Z + 2026-03-03T12:45:14.801Z monthly 0.8 @@ -18767,7 +18956,7 @@ https://www.rfc1437.de/2010/05/15/koehler-kritisiert-klagewut-deutscher-politiker/ - 2026-03-03T12:45:20.000Z + 2026-03-03T12:45:20.002Z monthly 0.8 @@ -18776,7 +18965,7 @@ https://www.rfc1437.de/2010/05/15/rubinius-use-ruby/ - 2026-03-03T12:45:24.000Z + 2026-03-03T12:45:24.593Z monthly 0.8 @@ -18785,7 +18974,7 @@ https://www.rfc1437.de/2010/05/15/street-view-google-belauschte-offene-wlans/ - 2026-03-03T12:45:29.000Z + 2026-03-03T12:45:29.569Z monthly 0.8 @@ -18794,7 +18983,7 @@ https://www.rfc1437.de/2010/05/14/html5-for-drunks/ - 2026-03-08T14:19:46.000Z + 2026-03-08T14:19:46.571Z monthly 0.8 @@ -18803,7 +18992,7 @@ https://www.rfc1437.de/2010/05/12/alienscience-s-leiningen-war/ - 2026-03-03T12:45:36.000Z + 2026-03-03T12:45:36.860Z monthly 0.8 @@ -18812,7 +19001,7 @@ https://www.rfc1437.de/2010/05/12/hiredman-s-lein-gae/ - 2026-03-03T12:45:40.000Z + 2026-03-03T12:45:40.935Z monthly 0.8 @@ -18821,7 +19010,7 @@ https://www.rfc1437.de/2010/05/12/licenser-s-lein-search/ - 2026-03-03T12:45:44.000Z + 2026-03-03T12:45:44.692Z monthly 0.8 @@ -18830,7 +19019,7 @@ https://www.rfc1437.de/2010/05/12/sethtrain-s-beget/ - 2026-03-03T12:45:48.000Z + 2026-03-03T12:45:48.308Z monthly 0.8 @@ -18839,7 +19028,7 @@ https://www.rfc1437.de/2010/05/09/nrw-hat-gewaehlt-landtagswahl-2010/ - 2026-03-03T12:45:53.000Z + 2026-03-03T12:45:53.668Z monthly 0.8 @@ -18848,7 +19037,7 @@ https://www.rfc1437.de/2010/05/08/mac-os-x-on-netbooks-mymacnetbook-com/ - 2026-03-03T12:45:58.000Z + 2026-03-03T12:45:58.140Z monthly 0.8 @@ -18857,7 +19046,7 @@ https://www.rfc1437.de/2010/05/07/bischof-walter-mixa-mixa-des-sexuellen/ - 2026-03-03T12:46:03.000Z + 2026-03-03T12:46:03.133Z monthly 0.8 @@ -18866,7 +19055,7 @@ https://www.rfc1437.de/2010/05/07/familienzuwachs-neandertaler-mit-menschen-verwandt/ - 2026-03-03T12:46:06.000Z + 2026-03-03T12:46:06.867Z monthly 0.8 @@ -18875,7 +19064,7 @@ https://www.rfc1437.de/2010/05/06/dow-falls-in-high-speed-drop-wsj-com/ - 2026-03-07T21:07:30.000Z + 2026-03-07T21:07:30.513Z monthly 0.8 @@ -18884,7 +19073,7 @@ https://www.rfc1437.de/2010/05/06/what-ipads-did-to-my-family-chuck-s-blog/ - 2026-03-03T12:46:17.000Z + 2026-03-03T12:46:17.069Z monthly 0.8 @@ -18893,7 +19082,7 @@ https://www.rfc1437.de/2010/05/05/ceph-a-linux-petabyte-scale-distributed-file/ - 2026-03-03T12:46:21.000Z + 2026-03-03T12:46:21.677Z monthly 0.8 @@ -18902,7 +19091,7 @@ https://www.rfc1437.de/2010/05/05/marak-s-jslinq-at-master-github/ - 2026-03-03T12:46:26.000Z + 2026-03-03T12:46:26.203Z monthly 0.8 @@ -18911,7 +19100,7 @@ https://www.rfc1437.de/2010/05/05/parsedatetime/ - 2026-03-03T12:46:29.000Z + 2026-03-03T12:46:29.808Z monthly 0.8 @@ -18920,7 +19109,7 @@ https://www.rfc1437.de/2010/05/05/pypy-status-blog-running-wxpython-on-top-of-pypy/ - 2026-03-03T12:46:34.000Z + 2026-03-03T12:46:34.398Z monthly 0.8 @@ -18929,7 +19118,7 @@ https://www.rfc1437.de/2010/05/05/zoolander/ - 2026-03-03T12:46:38.000Z + 2026-03-03T12:46:38.776Z monthly 0.8 @@ -18938,7 +19127,7 @@ https://www.rfc1437.de/2010/05/02/cdu-geraet-unter-druck-wegen-waehlerinitiative/ - 2026-03-03T12:46:44.000Z + 2026-03-03T12:46:44.195Z monthly 0.8 @@ -18947,7 +19136,7 @@ https://www.rfc1437.de/2010/04/29/the-brads-how-to-alienate-a-fanbase/ - 2026-03-03T12:46:48.000Z + 2026-03-03T12:46:48.069Z monthly 0.8 @@ -18956,7 +19145,7 @@ https://www.rfc1437.de/2010/04/29/thoughts-on-flash/ - 2026-03-03T12:46:52.000Z + 2026-03-03T12:46:52.113Z monthly 0.8 @@ -18965,7 +19154,7 @@ https://www.rfc1437.de/2010/04/28/gerade-mal-ein-monat-ist-das-her/ - 2026-03-03T12:46:57.000Z + 2026-03-03T12:46:57.491Z monthly 0.8 @@ -18974,7 +19163,7 @@ https://www.rfc1437.de/2010/04/27/django-pagination/ - 2026-03-03T12:47:01.000Z + 2026-03-03T12:47:01.906Z monthly 0.8 @@ -18983,7 +19172,7 @@ https://www.rfc1437.de/2010/04/27/henry-s-eulisp/ - 2026-03-03T12:47:06.000Z + 2026-03-03T12:47:06.197Z monthly 0.8 @@ -18992,7 +19181,7 @@ https://www.rfc1437.de/2010/04/27/jcotton/ - 2026-03-03T12:47:09.000Z + 2026-03-03T12:47:09.634Z monthly 0.8 @@ -19001,7 +19190,7 @@ https://www.rfc1437.de/2010/04/27/schluesselbund-meldet-der-zugriff-auf-dieses/ - 2026-03-03T12:47:14.000Z + 2026-03-03T12:47:14.957Z monthly 0.8 @@ -19010,7 +19199,7 @@ https://www.rfc1437.de/2010/04/23/grosse-kirchner-retrospektive-im-frankfurter/ - 2026-03-03T12:47:18.000Z + 2026-03-03T12:47:18.806Z monthly 0.8 @@ -19019,7 +19208,7 @@ https://www.rfc1437.de/2010/04/23/houdahgeo-photo-geocoding-for-mac/ - 2026-03-03T12:47:23.000Z + 2026-03-03T12:47:23.407Z monthly 0.8 @@ -19028,7 +19217,7 @@ https://www.rfc1437.de/2010/04/22/markdoc/ - 2026-03-03T12:47:27.000Z + 2026-03-03T12:47:27.615Z monthly 0.8 @@ -19037,7 +19226,7 @@ https://www.rfc1437.de/2010/04/19/grosse-herstellerunterschiede-bei-digitalkamera/ - 2026-03-03T12:47:31.000Z + 2026-03-03T12:47:31.911Z monthly 0.8 @@ -19046,7 +19235,7 @@ https://www.rfc1437.de/2010/04/19/this-is-apple-s-next-iphone-iphone-4-gizmodo/ - 2026-03-03T12:47:36.000Z + 2026-03-03T12:47:36.500Z monthly 0.8 @@ -19055,7 +19244,7 @@ https://www.rfc1437.de/2010/04/18/web-de-nennt-fraunhofer-studie-microsoft/ - 2026-03-03T12:47:41.000Z + 2026-03-03T12:47:41.564Z monthly 0.8 @@ -19064,7 +19253,7 @@ https://www.rfc1437.de/2010/04/18/xml-in-postgres-the-game-changer-flex-and-specs/ - 2026-03-03T12:47:46.000Z + 2026-03-03T12:47:46.885Z monthly 0.8 @@ -19073,7 +19262,7 @@ https://www.rfc1437.de/2010/04/17/archives-of-the-caml-mailing-list-o-caml-for-dos/ - 2026-03-03T12:47:51.000Z + 2026-03-03T12:47:51.738Z monthly 0.8 @@ -19082,7 +19271,7 @@ https://www.rfc1437.de/2010/04/15/umweltbundesamt-fordert-pkw-maut-tagesschau-de/ - 2026-03-03T12:47:57.000Z + 2026-03-03T12:47:57.176Z monthly 0.8 @@ -19091,7 +19280,7 @@ https://www.rfc1437.de/2010/04/09/daring-fireball-new-iphone-developer-agreement/ - 2026-03-03T12:48:02.000Z + 2026-03-03T12:48:02.292Z monthly 0.8 @@ -19100,7 +19289,7 @@ https://www.rfc1437.de/2010/04/09/django-ajax-filtered-fields/ - 2026-03-03T12:48:06.000Z + 2026-03-03T12:48:06.245Z monthly 0.8 @@ -19109,7 +19298,7 @@ https://www.rfc1437.de/2010/04/09/my-experience-with-using-mongodb-for-great-science/ - 2026-03-03T12:48:11.000Z + 2026-03-03T12:48:11.270Z monthly 0.8 @@ -19118,7 +19307,7 @@ https://www.rfc1437.de/2010/04/08/ars-technica-reviews-the-ipad/ - 2026-03-03T12:48:15.000Z + 2026-03-03T12:48:15.140Z monthly 0.8 @@ -19127,7 +19316,7 @@ https://www.rfc1437.de/2010/04/07/csu-absage-an-internetsperren-verstoesst-gegen/ - 2026-03-03T12:48:20.000Z + 2026-03-03T12:48:20.852Z monthly 0.8 @@ -19136,7 +19325,7 @@ https://www.rfc1437.de/2010/04/07/twitter-s-gizzard/ - 2026-03-03T12:48:25.000Z + 2026-03-03T12:48:25.063Z monthly 0.8 @@ -19145,7 +19334,7 @@ https://www.rfc1437.de/2010/04/07/writing-a-non-relational-django-backend-django/ - 2026-03-03T12:48:30.000Z + 2026-03-03T12:48:30.279Z monthly 0.8 @@ -19154,7 +19343,7 @@ https://www.rfc1437.de/2010/04/06/ibm-breaks-oss-patent-promise-targets-mainframe/ - 2026-03-03T12:48:35.000Z + 2026-03-03T12:48:35.462Z monthly 0.8 @@ -19163,7 +19352,7 @@ https://www.rfc1437.de/2010/04/06/perfection-kills-what-s-wrong-with-extending-the/ - 2026-03-03T12:48:40.000Z + 2026-03-03T12:48:40.851Z monthly 0.8 @@ -19172,7 +19361,7 @@ https://www.rfc1437.de/2010/04/03/oracle-announces-latest-release-of-oracle/ - 2026-03-03T12:48:46.000Z + 2026-03-03T12:48:46.132Z monthly 0.8 @@ -19181,7 +19370,7 @@ https://www.rfc1437.de/2010/04/02/elixirgraphics/ - 2026-03-03T12:48:50.000Z + 2026-03-03T12:48:50.560Z monthly 0.8 @@ -19190,7 +19379,7 @@ https://www.rfc1437.de/2010/04/02/seydesign-professional-rapidweaver-themes/ - 2026-03-03T12:48:54.000Z + 2026-03-03T12:48:54.429Z monthly 0.8 @@ -19199,7 +19388,7 @@ https://www.rfc1437.de/2010/04/02/yourhead-software/ - 2026-03-03T12:48:59.000Z + 2026-03-03T12:48:59.485Z monthly 0.8 @@ -19208,7 +19397,7 @@ https://www.rfc1437.de/2010/03/31/sony-steals-feature-from-your-playstation-3/ - 2026-03-03T12:49:04.000Z + 2026-03-03T12:49:04.652Z monthly 0.8 @@ -19217,7 +19406,7 @@ https://www.rfc1437.de/2010/03/29/eu-kommission-will-internetsperren-einfuehren/ - 2026-03-03T12:49:10.000Z + 2026-03-03T12:49:10.864Z monthly 0.8 @@ -19226,7 +19415,7 @@ https://www.rfc1437.de/2010/03/29/viele-tote-bei-anschlaegen-auf-moskauer-u-bahn/ - 2026-03-03T12:49:16.000Z + 2026-03-03T12:49:16.070Z monthly 0.8 @@ -19235,7 +19424,7 @@ https://www.rfc1437.de/2010/03/12/nltk-home-natural-language-toolkit/ - 2026-03-03T12:49:20.000Z + 2026-03-03T12:49:20.567Z monthly 0.8 @@ -19244,7 +19433,7 @@ https://www.rfc1437.de/2010/03/12/python-package-index-esrapy-0-5/ - 2026-03-03T12:49:25.000Z + 2026-03-03T12:49:25.169Z monthly 0.8 @@ -19253,7 +19442,7 @@ https://www.rfc1437.de/2010/03/10/building-skills-in-python/ - 2026-03-03T12:49:29.000Z + 2026-03-03T12:49:29.261Z monthly 0.8 @@ -19262,7 +19451,7 @@ https://www.rfc1437.de/2010/03/08/jobo-ag-jobo-labortechnik-gmbh-sind-insolvent/ - 2026-03-03T12:49:34.000Z + 2026-03-03T12:49:34.431Z monthly 0.8 @@ -19271,7 +19460,7 @@ https://www.rfc1437.de/2010/03/08/oscar-fuer-waltz/ - 2026-03-03T12:49:38.000Z + 2026-03-03T12:49:38.823Z monthly 0.8 @@ -19280,7 +19469,7 @@ https://www.rfc1437.de/2010/03/07/bottle-python-web-framework/ - 2026-03-03T12:49:43.000Z + 2026-03-03T12:49:43.460Z monthly 0.8 @@ -19289,7 +19478,7 @@ https://www.rfc1437.de/2010/03/07/clojure-python/ - 2026-03-03T12:49:48.000Z + 2026-03-03T12:49:48.802Z monthly 0.8 @@ -19298,7 +19487,7 @@ https://www.rfc1437.de/2010/03/07/hugoduncan-s-clj-ssh-at-master-github/ - 2026-03-03T12:49:54.000Z + 2026-03-03T12:49:54.032Z monthly 0.8 @@ -19307,7 +19496,7 @@ https://www.rfc1437.de/2010/03/07/scala-post-functional-post-modern-or-just-perl/ - 2026-03-03T12:49:59.000Z + 2026-03-03T12:49:59.255Z monthly 0.8 @@ -19316,7 +19505,7 @@ https://www.rfc1437.de/2010/03/02/digg-s-lazyboy-at-master-github/ - 2026-03-03T12:50:04.000Z + 2026-03-03T12:50:04.503Z monthly 0.8 @@ -19325,7 +19514,7 @@ https://www.rfc1437.de/2010/03/01/17-6-multiprocessing/ - 2026-03-03T12:50:08.000Z + 2026-03-03T12:50:08.628Z monthly 0.8 @@ -19334,7 +19523,7 @@ https://www.rfc1437.de/2010/03/01/rfc1437-lazypy-source-bitbucket-org/ - 2026-03-03T12:50:14.000Z + 2026-03-03T12:50:14.792Z monthly 0.8 @@ -19343,7 +19532,7 @@ https://www.rfc1437.de/2010/03/01/semanchuk-com-python-ipc-modules/ - 2026-03-03T12:50:19.000Z + 2026-03-03T12:50:19.192Z monthly 0.8 @@ -19352,7 +19541,7 @@ https://www.rfc1437.de/2010/02/28/a-simple-web-application-in-clojure-using-ring/ - 2026-03-03T12:50:24.000Z + 2026-03-03T12:50:24.510Z monthly 0.8 @@ -19361,7 +19550,7 @@ https://www.rfc1437.de/2010/02/28/dynamic-web-development-with-seaside-2/ - 2026-03-03T12:50:29.000Z + 2026-03-03T12:50:29.600Z monthly 0.8 @@ -19370,7 +19559,7 @@ https://www.rfc1437.de/2010/02/28/heroku-ruby-cloud-platform-as-a-service/ - 2026-03-03T12:50:34.000Z + 2026-03-03T12:50:34.495Z monthly 0.8 @@ -19379,7 +19568,7 @@ https://www.rfc1437.de/2010/02/28/inessential-com-on-switching-away-from-core-data/ - 2026-03-03T12:50:40.000Z + 2026-03-03T12:50:40.141Z monthly 0.8 @@ -19388,7 +19577,7 @@ https://www.rfc1437.de/2010/02/28/johnny-cache-v0-1-documentation/ - 2026-03-03T12:50:45.000Z + 2026-03-03T12:50:45.363Z monthly 0.8 @@ -19397,7 +19586,7 @@ https://www.rfc1437.de/2010/02/28/kotka-projects-clojure-vimclojure/ - 2026-03-03T12:50:50.000Z + 2026-03-03T12:50:50.375Z monthly 0.8 @@ -19406,7 +19595,7 @@ https://www.rfc1437.de/2010/02/28/linuxtuples/ - 2026-03-03T12:50:55.000Z + 2026-03-03T12:50:55.299Z monthly 0.8 @@ -19415,7 +19604,7 @@ https://www.rfc1437.de/2010/02/28/mmcgrana-s-ring-at-master-github/ - 2026-03-03T12:51:00.000Z + 2026-03-03T12:51:00.409Z monthly 0.8 @@ -19424,7 +19613,7 @@ https://www.rfc1437.de/2010/02/28/open-wi-fi-outlawed-in-digital-economy-bill-zdnet/ - 2026-03-03T12:51:06.000Z + 2026-03-03T12:51:06.394Z monthly 0.8 @@ -19433,7 +19622,7 @@ https://www.rfc1437.de/2010/02/28/picloud-cloud-computing-simplified/ - 2026-03-03T12:51:11.000Z + 2026-03-03T12:51:11.350Z monthly 0.8 @@ -19442,7 +19631,7 @@ https://www.rfc1437.de/2010/02/28/rfc1437-django-standalone-overview-bitbucket-org/ - 2026-03-03T12:51:17.000Z + 2026-03-03T12:51:17.105Z monthly 0.8 @@ -19451,7 +19640,7 @@ https://www.rfc1437.de/2010/02/28/world-record-setting-kick-to-the-groin-raises/ - 2026-03-03T12:51:22.000Z + 2026-03-03T12:51:22.576Z monthly 0.8 @@ -19460,7 +19649,7 @@ https://www.rfc1437.de/2010/02/27/fiat-lux-extracting-iphone-backup-data-with/ - 2026-03-03T12:51:26.000Z + 2026-03-03T12:51:26.635Z monthly 0.8 @@ -19469,7 +19658,7 @@ https://www.rfc1437.de/2010/02/27/iphone-backup-decoder-project-hosting-on-google/ - 2026-03-03T12:51:30.000Z + 2026-03-03T12:51:30.387Z monthly 0.8 @@ -19478,7 +19667,7 @@ https://www.rfc1437.de/2010/02/27/iphone-ipod-touch-backup-extractor/ - 2026-03-03T12:51:34.000Z + 2026-03-03T12:51:34.835Z monthly 0.8 @@ -19487,7 +19676,7 @@ https://www.rfc1437.de/2010/02/27/menial-base/ - 2026-03-03T12:51:38.000Z + 2026-03-03T12:51:38.771Z monthly 0.8 @@ -19496,7 +19685,7 @@ https://www.rfc1437.de/2010/02/26/bundestag-argumente-oder-transparente/ - 2026-03-03T12:51:43.000Z + 2026-03-03T12:51:43.791Z monthly 0.8 @@ -19505,7 +19694,7 @@ https://www.rfc1437.de/2010/02/24/dajaxproject-com-easy-to-use-ajax-library-for/ - 2026-03-03T12:51:48.000Z + 2026-03-03T12:51:48.529Z monthly 0.8 @@ -19514,7 +19703,7 @@ https://www.rfc1437.de/2010/02/24/postgresql-news-9-0-alpha-4-available-now/ - 2026-03-03T12:51:52.000Z + 2026-03-03T12:51:52.909Z monthly 0.8 @@ -19523,7 +19712,7 @@ https://www.rfc1437.de/2010/02/24/squeryl-introduction/ - 2026-03-03T12:51:57.000Z + 2026-03-03T12:51:57.425Z monthly 0.8 @@ -19532,7 +19721,7 @@ https://www.rfc1437.de/2010/02/22/ironpython-2-0-and-jython-2-5-performance/ - 2026-03-03T12:52:02.000Z + 2026-03-03T12:52:02.902Z monthly 0.8 @@ -19541,7 +19730,7 @@ https://www.rfc1437.de/2010/02/22/ironpython-hammers-cpython-when-not-mutating/ - 2026-03-03T12:52:08.000Z + 2026-03-03T12:52:08.364Z monthly 0.8 @@ -19550,7 +19739,7 @@ https://www.rfc1437.de/2010/02/22/polyglot-2/ - 2026-03-03T12:52:13.000Z + 2026-03-03T12:52:13.383Z monthly 0.8 @@ -19559,7 +19748,7 @@ https://www.rfc1437.de/2010/02/21/bpython-interpreter/ - 2026-03-03T12:52:17.000Z + 2026-03-03T12:52:17.746Z monthly 0.8 @@ -19568,7 +19757,7 @@ https://www.rfc1437.de/2010/02/21/dreampie-the-python-shell-you-ve-always-dreamed/ - 2026-03-03T12:52:22.000Z + 2026-03-03T12:52:22.461Z monthly 0.8 @@ -19577,7 +19766,7 @@ https://www.rfc1437.de/2010/02/21/the-new-app-store-rules-no-swimsuits-no-skin-and/ - 2026-03-03T12:52:28.000Z + 2026-03-03T12:52:28.084Z monthly 0.8 @@ -19586,7 +19775,7 @@ https://www.rfc1437.de/2010/02/20/5-animals-that-can-do-amazing-things-with-their/ - 2026-03-03T12:52:32.000Z + 2026-03-03T12:52:32.782Z monthly 0.8 @@ -19595,7 +19784,7 @@ https://www.rfc1437.de/2010/02/19/zodb-a-native-object-database-for-python-zodb-v3/ - 2026-03-03T12:52:38.000Z + 2026-03-03T12:52:38.006Z monthly 0.8 @@ -19604,7 +19793,7 @@ https://www.rfc1437.de/2010/02/15/foto-verboten/ - 2026-03-03T12:52:43.000Z + 2026-03-03T12:52:43.098Z monthly 0.8 @@ -19613,7 +19802,7 @@ https://www.rfc1437.de/2010/02/14/the-dark-side-of-dubai/ - 2026-03-03T12:52:48.000Z + 2026-03-03T12:52:48.003Z monthly 0.8 @@ -19622,7 +19811,7 @@ https://www.rfc1437.de/2010/02/13/django-piston/ - 2026-03-03T12:52:51.000Z + 2026-03-03T12:52:51.876Z monthly 0.8 @@ -19631,7 +19820,7 @@ https://www.rfc1437.de/2010/02/13/fuck-you-google-fugitivus/ - 2026-03-03T12:52:57.000Z + 2026-03-03T12:52:57.110Z monthly 0.8 @@ -19640,7 +19829,7 @@ https://www.rfc1437.de/2010/02/13/murky/ - 2026-03-03T12:53:01.000Z + 2026-03-03T12:53:01.535Z monthly 0.8 @@ -19649,7 +19838,7 @@ https://www.rfc1437.de/2010/02/13/tomboy-simple-note-taking/ - 2026-03-03T12:53:06.000Z + 2026-03-03T12:53:06.779Z monthly 0.8 @@ -19658,7 +19847,7 @@ https://www.rfc1437.de/2010/02/12/front-range-pythoneering-realizing-jython-2-5/ - 2026-03-03T12:53:11.000Z + 2026-03-03T12:53:11.783Z monthly 0.8 @@ -19667,7 +19856,7 @@ https://www.rfc1437.de/2010/02/12/interactive-python-gil-visualization-dabeaz/ - 2026-03-03T12:53:17.000Z + 2026-03-03T12:53:17.058Z monthly 0.8 @@ -19676,7 +19865,7 @@ https://www.rfc1437.de/2010/02/12/maven-jython-plugin-maven-jython-plugin/ - 2026-03-03T12:53:21.000Z + 2026-03-03T12:53:21.820Z monthly 0.8 @@ -19685,7 +19874,7 @@ https://www.rfc1437.de/2010/02/12/proteste-gegen-g8-pfeifkonzert-fuer-ludwig-spaenle/ - 2026-03-03T12:53:26.000Z + 2026-03-03T12:53:26.592Z monthly 0.8 @@ -19694,7 +19883,7 @@ https://www.rfc1437.de/2010/02/12/security-forscher-bezahlen-mit-kreditkarte-und/ - 2026-03-03T12:53:30.000Z + 2026-03-03T12:53:30.991Z monthly 0.8 @@ -19703,7 +19892,7 @@ https://www.rfc1437.de/2010/02/10/bill-clementson-s-blog-elephant-and-rucksack/ - 2026-03-03T12:53:35.000Z + 2026-03-03T12:53:35.745Z monthly 0.8 @@ -19712,7 +19901,7 @@ https://www.rfc1437.de/2010/02/10/presenting-django-devserver-a-better-runserver/ - 2026-03-03T12:53:41.000Z + 2026-03-03T12:53:41.033Z monthly 0.8 @@ -19721,7 +19910,7 @@ https://www.rfc1437.de/2010/02/09/jesus-kirk-and-vinny/ - 2026-03-03T12:53:44.000Z + 2026-03-03T12:53:44.560Z monthly 0.8 @@ -19730,7 +19919,7 @@ https://www.rfc1437.de/2010/02/09/schneier-on-security-all-subversive-organizations/ - 2026-03-03T12:53:49.000Z + 2026-03-03T12:53:49.610Z monthly 0.8 @@ -19739,7 +19928,7 @@ https://www.rfc1437.de/2010/02/09/twitpic-astro-soichi/ - 2026-03-03T12:53:53.000Z + 2026-03-03T12:53:53.345Z monthly 0.8 @@ -19748,7 +19937,7 @@ https://www.rfc1437.de/2010/02/08/persistence-js-an-asynchronous-javascript-orm-for/ - 2026-03-03T12:53:58.000Z + 2026-03-03T12:53:58.533Z monthly 0.8 @@ -19757,7 +19946,7 @@ https://www.rfc1437.de/2010/02/07/bericht-post-plant-de-mail-fuer-20-cent/ - 2026-03-03T12:54:03.000Z + 2026-03-03T12:54:03.748Z monthly 0.8 @@ -19766,7 +19955,7 @@ https://www.rfc1437.de/2010/02/07/simtec-electronics-entropy-key/ - 2026-03-03T12:54:07.000Z + 2026-03-03T12:54:07.096Z monthly 0.8 @@ -19775,7 +19964,7 @@ https://www.rfc1437.de/2010/02/06/faster-or-lazier-pagination/ - 2026-03-03T12:54:12.000Z + 2026-03-03T12:54:12.470Z monthly 0.8 @@ -19784,7 +19973,7 @@ https://www.rfc1437.de/2010/02/06/please-read-security-issue-on-amo-mozilla-add-ons/ - 2026-03-03T12:54:18.000Z + 2026-03-03T12:54:18.388Z monthly 0.8 @@ -19793,7 +19982,7 @@ https://www.rfc1437.de/2010/02/05/using-ctags-in-vim-amix-dk/ - 2026-03-03T12:54:23.000Z + 2026-03-03T12:54:23.667Z monthly 0.8 @@ -19802,7 +19991,7 @@ https://www.rfc1437.de/2010/02/05/vim-7-turning-completion-on-amix-dk/ - 2026-03-03T12:54:28.000Z + 2026-03-03T12:54:28.341Z monthly 0.8 @@ -19811,7 +20000,7 @@ https://www.rfc1437.de/2010/02/04/collision-detection-molecular-secrets-of-the-iron/ - 2026-03-03T12:54:33.000Z + 2026-03-03T12:54:33.641Z monthly 0.8 @@ -19820,7 +20009,7 @@ https://www.rfc1437.de/2010/02/04/mongoengine/ - 2026-03-03T12:54:38.000Z + 2026-03-03T12:54:38.270Z monthly 0.8 @@ -19829,7 +20018,7 @@ https://www.rfc1437.de/2010/02/03/bookmarksextension-mercurial/ - 2026-03-03T12:54:44.000Z + 2026-03-03T12:54:44.357Z monthly 0.8 @@ -19838,7 +20027,7 @@ https://www.rfc1437.de/2010/02/03/gericht-e-mail-abmahnungen-sind-zulaessig/ - 2026-03-03T12:54:51.000Z + 2026-03-03T12:54:51.106Z monthly 0.8 @@ -19847,7 +20036,7 @@ https://www.rfc1437.de/2010/02/03/infinidb-1-0-2-analytische-datenbank-engine-fuer/ - 2026-03-03T12:54:58.000Z + 2026-03-03T12:54:58.255Z monthly 0.8 @@ -19856,7 +20045,7 @@ https://www.rfc1437.de/2010/02/03/pollution-in-1-8-ripe-labs/ - 2026-03-03T12:55:03.000Z + 2026-03-03T12:55:03.552Z monthly 0.8 @@ -19865,7 +20054,7 @@ https://www.rfc1437.de/2010/02/03/time-capsule-memorial-register/ - 2026-03-03T12:55:09.000Z + 2026-03-03T12:55:09.323Z monthly 0.8 @@ -19874,7 +20063,7 @@ https://www.rfc1437.de/2010/02/02/homebrew-github/ - 2026-03-03T12:55:15.000Z + 2026-03-03T12:55:15.845Z monthly 0.8 @@ -19883,7 +20072,7 @@ https://www.rfc1437.de/2010/02/02/the-definitive-guide-to-jython-jython-book-v0-91/ - 2026-03-03T12:55:21.000Z + 2026-03-03T12:55:21.011Z monthly 0.8 @@ -19892,7 +20081,7 @@ https://www.rfc1437.de/2010/01/31/cliki-firststepswithasdfandasdfinstall/ - 2026-03-03T12:55:25.000Z + 2026-03-03T12:55:25.686Z monthly 0.8 @@ -19901,7 +20090,7 @@ https://www.rfc1437.de/2010/01/31/hintsforasdfandopenmcl-clozure-cl/ - 2026-03-03T12:55:31.000Z + 2026-03-03T12:55:31.128Z monthly 0.8 @@ -19910,7 +20099,7 @@ https://www.rfc1437.de/2010/01/29/alex-payne-on-the-ipad/ - 2026-03-07T21:07:31.000Z + 2026-03-07T21:07:31.641Z monthly 0.8 @@ -19919,7 +20108,7 @@ https://www.rfc1437.de/2010/01/29/apple-buys-p-a-semi-chip-designer-intel-says-wha/ - 2026-03-03T12:55:41.000Z + 2026-03-03T12:55:41.502Z monthly 0.8 @@ -19928,7 +20117,7 @@ https://www.rfc1437.de/2010/01/29/appscale-an-opensource-gae-implementation/ - 2026-03-03T12:55:45.000Z + 2026-03-03T12:55:45.983Z monthly 0.8 @@ -19937,7 +20126,7 @@ https://www.rfc1437.de/2010/01/29/clozure-cl/ - 2026-03-03T12:55:50.000Z + 2026-03-03T12:55:50.963Z monthly 0.8 @@ -19946,7 +20135,7 @@ https://www.rfc1437.de/2010/01/29/eucalyptus-community/ - 2026-03-03T12:55:55.000Z + 2026-03-03T12:55:55.934Z monthly 0.8 @@ -19955,7 +20144,7 @@ https://www.rfc1437.de/2010/01/29/mindestlohn-urteil-postdienstleister-pin-will/ - 2026-03-03T12:56:01.000Z + 2026-03-03T12:56:01.440Z monthly 0.8 @@ -19964,7 +20153,7 @@ https://www.rfc1437.de/2010/01/28/apple-ipad-technical-specifications-and/ - 2026-03-03T12:56:05.000Z + 2026-03-03T12:56:05.557Z monthly 0.8 @@ -19973,7 +20162,7 @@ https://www.rfc1437.de/2010/01/28/denkspuren-factor-heilbronn-university/ - 2026-03-03T12:56:11.000Z + 2026-03-03T12:56:11.285Z monthly 0.8 @@ -19982,7 +20171,7 @@ https://www.rfc1437.de/2010/01/28/mainz-bruederle-kein-landesparteitags-delegierter/ - 2026-03-03T12:56:15.000Z + 2026-03-03T12:56:15.974Z monthly 0.8 @@ -19991,7 +20180,7 @@ https://www.rfc1437.de/2010/01/27/django-extensions/ - 2026-03-03T12:56:19.000Z + 2026-03-03T12:56:19.852Z monthly 0.8 @@ -20000,7 +20189,7 @@ https://www.rfc1437.de/2010/01/27/introducing-bibble-5/ - 2026-03-03T12:56:24.000Z + 2026-03-03T12:56:24.556Z monthly 0.8 @@ -20009,7 +20198,7 @@ https://www.rfc1437.de/2010/01/27/kbarni-s-bibble-plugins-plugins/ - 2026-03-03T12:56:28.000Z + 2026-03-03T12:56:28.264Z monthly 0.8 @@ -20018,7 +20207,7 @@ https://www.rfc1437.de/2010/01/27/lightzone-lightcrafts/ - 2026-03-03T12:56:32.000Z + 2026-03-03T12:56:32.859Z monthly 0.8 @@ -20027,7 +20216,7 @@ https://www.rfc1437.de/2010/01/27/scala-2-8-0-beta-1-the-scala-programming-language/ - 2026-03-03T12:56:36.000Z + 2026-03-03T12:56:36.927Z monthly 0.8 @@ -20036,7 +20225,7 @@ https://www.rfc1437.de/2010/01/26/carl-bildt-digitale-mauern-einreissen/ - 2026-03-03T12:56:41.000Z + 2026-03-03T12:56:41.942Z monthly 0.8 @@ -20045,7 +20234,7 @@ https://www.rfc1437.de/2010/01/26/fastutil/ - 2026-03-03T12:56:46.000Z + 2026-03-03T12:56:46.139Z monthly 0.8 @@ -20054,7 +20243,7 @@ https://www.rfc1437.de/2010/01/26/have-you-seen-the-old-men-spreeblick/ - 2026-03-03T12:56:50.000Z + 2026-03-03T12:56:50.120Z monthly 0.8 @@ -20063,7 +20252,7 @@ https://www.rfc1437.de/2010/01/25/christopher-blizzard-html5-video-and-h-264-what/ - 2026-03-03T12:56:54.000Z + 2026-03-03T12:56:54.732Z monthly 0.8 @@ -20072,7 +20261,7 @@ https://www.rfc1437.de/2010/01/25/ironpython-in-action-front-page/ - 2026-03-03T12:56:58.000Z + 2026-03-03T12:56:58.708Z monthly 0.8 @@ -20081,7 +20270,7 @@ https://www.rfc1437.de/2010/01/25/zensur-im-namen-des-jugendschutzes-stellungnahme/ - 2026-03-03T12:57:04.000Z + 2026-03-03T12:57:04.074Z monthly 0.8 @@ -20090,7 +20279,7 @@ https://www.rfc1437.de/2010/01/24/alle-atommeiler-sollen-offenbar-zunaechst-am-netz/ - 2026-03-03T12:57:08.000Z + 2026-03-03T12:57:08.528Z monthly 0.8 @@ -20099,7 +20288,7 @@ https://www.rfc1437.de/2010/01/24/annalist-wir-werden-blockieren/ - 2026-03-03T12:57:13.000Z + 2026-03-03T12:57:13.446Z monthly 0.8 @@ -20108,7 +20297,7 @@ https://www.rfc1437.de/2010/01/24/armin-maiwald-wird-70/ - 2026-03-03T12:57:17.000Z + 2026-03-03T12:57:17.008Z monthly 0.8 @@ -20117,7 +20306,7 @@ https://www.rfc1437.de/2010/01/24/facebook-gives-harman-his-name-back-apologizes/ - 2026-03-03T12:57:21.000Z + 2026-03-03T12:57:21.090Z monthly 0.8 @@ -20126,7 +20315,7 @@ https://www.rfc1437.de/2010/01/24/high-level-virtual-machine-hlvm/ - 2026-03-03T12:57:24.000Z + 2026-03-03T12:57:24.621Z monthly 0.8 @@ -20135,7 +20324,7 @@ https://www.rfc1437.de/2010/01/24/michaelv-org/ - 2026-03-03T12:57:28.000Z + 2026-03-03T12:57:28.568Z monthly 0.8 @@ -20144,7 +20333,7 @@ https://www.rfc1437.de/2010/01/24/trellis/ - 2026-03-03T12:57:32.000Z + 2026-03-03T12:57:32.550Z monthly 0.8 @@ -20153,7 +20342,7 @@ https://www.rfc1437.de/2010/01/23/closure-compiler/ - 2026-03-03T12:57:36.000Z + 2026-03-03T12:57:36.505Z monthly 0.8 @@ -20162,7 +20351,7 @@ https://www.rfc1437.de/2010/01/23/django-history-tables/ - 2026-03-03T12:57:39.000Z + 2026-03-03T12:57:39.958Z monthly 0.8 @@ -20171,7 +20360,7 @@ https://www.rfc1437.de/2010/01/23/ez430-chronos-texas-instruments-embedded/ - 2026-03-03T12:57:43.000Z + 2026-03-03T12:57:43.953Z monthly 0.8 @@ -20180,7 +20369,7 @@ https://www.rfc1437.de/2010/01/23/facebook-snatches-user-s-vanity-url-and-sells-it/ - 2026-03-03T12:57:48.000Z + 2026-03-03T12:57:48.686Z monthly 0.8 @@ -20189,7 +20378,7 @@ https://www.rfc1437.de/2010/01/23/how-to-create-offline-webapps-on-the-iphone/ - 2026-03-03T12:57:53.000Z + 2026-03-03T12:57:53.189Z monthly 0.8 @@ -20198,7 +20387,7 @@ https://www.rfc1437.de/2010/01/23/inheritance-patterns-in-javascript/ - 2026-03-03T12:57:57.000Z + 2026-03-03T12:57:57.119Z monthly 0.8 @@ -20207,7 +20396,7 @@ https://www.rfc1437.de/2010/01/23/syntensity/ - 2026-03-03T12:58:00.000Z + 2026-03-03T12:58:00.626Z monthly 0.8 @@ -20216,7 +20405,7 @@ https://www.rfc1437.de/2010/01/23/ti-hits-home-run-with-chronos-sportswatch/ - 2026-03-03T12:58:05.000Z + 2026-03-03T12:58:05.470Z monthly 0.8 @@ -20225,7 +20414,7 @@ https://www.rfc1437.de/2010/01/23/well-i-m-back-video-freedom-and-mozilla/ - 2026-03-03T12:58:09.000Z + 2026-03-03T12:58:09.889Z monthly 0.8 @@ -20234,7 +20423,7 @@ https://www.rfc1437.de/2010/01/22/a-postfunctional-language/ - 2026-03-03T12:58:13.000Z + 2026-03-03T12:58:13.402Z monthly 0.8 @@ -20243,7 +20432,7 @@ https://www.rfc1437.de/2010/01/22/export-ban-for-useless-bomb-detector/ - 2026-03-03T12:58:18.000Z + 2026-03-03T12:58:18.260Z monthly 0.8 @@ -20252,7 +20441,7 @@ https://www.rfc1437.de/2010/01/22/giant-knife-16999-wenger-swiss-army-knife/ - 2026-03-03T12:58:21.000Z + 2026-03-03T12:58:21.666Z monthly 0.8 @@ -20261,7 +20450,7 @@ https://www.rfc1437.de/2010/01/22/the-collection-leatherman/ - 2026-03-03T12:58:25.000Z + 2026-03-03T12:58:25.139Z monthly 0.8 @@ -20270,7 +20459,7 @@ https://www.rfc1437.de/2010/01/21/kindle-development-kit/ - 2026-03-03T12:58:29.000Z + 2026-03-03T12:58:29.072Z monthly 0.8 @@ -20279,7 +20468,7 @@ https://www.rfc1437.de/2010/01/20/abcl-web/ - 2026-03-03T12:58:33.000Z + 2026-03-03T12:58:33.060Z monthly 0.8 @@ -20288,7 +20477,7 @@ https://www.rfc1437.de/2010/01/20/armed-bear/ - 2026-03-03T12:58:37.000Z + 2026-03-03T12:58:37.435Z monthly 0.8 @@ -20297,7 +20486,7 @@ https://www.rfc1437.de/2010/01/20/auch-cdu-erhielt-spende-aus-der-hotelbranche/ - 2026-03-03T12:58:41.000Z + 2026-03-03T12:58:41.344Z monthly 0.8 @@ -20306,7 +20495,7 @@ https://www.rfc1437.de/2010/01/20/chipformate-digitaler-kameras/ - 2026-03-03T12:58:45.000Z + 2026-03-03T12:58:45.711Z monthly 0.8 @@ -20315,7 +20504,7 @@ https://www.rfc1437.de/2010/01/20/clojure-1-1-and-beyond/ - 2026-03-03T12:58:50.000Z + 2026-03-03T12:58:50.084Z monthly 0.8 @@ -20324,7 +20513,7 @@ https://www.rfc1437.de/2010/01/20/diffraction-and-fraud-in-digicams-petavoxel/ - 2026-03-03T12:58:54.000Z + 2026-03-03T12:58:54.473Z monthly 0.8 @@ -20333,7 +20522,7 @@ https://www.rfc1437.de/2010/01/20/kvardek-du-how-a-common-lisp-programmer-views/ - 2026-03-08T14:19:55.000Z + 2026-03-08T14:19:55.672Z monthly 0.8 @@ -20342,7 +20531,7 @@ https://www.rfc1437.de/2010/01/20/lego-universe-allows-kids-to-fight-with-their/ - 2026-03-07T21:07:36.000Z + 2026-03-07T21:07:36.250Z monthly 0.8 @@ -20351,7 +20540,7 @@ https://www.rfc1437.de/2010/01/20/pylint-analyzes-python-source-code-looking-for/ - 2026-03-03T12:59:05.000Z + 2026-03-03T12:59:05.752Z monthly 0.8 @@ -20360,7 +20549,7 @@ https://www.rfc1437.de/2010/01/20/research-rsc-go-data-structures-interfaces/ - 2026-03-03T12:59:10.000Z + 2026-03-03T12:59:10.161Z monthly 0.8 @@ -20369,7 +20558,7 @@ https://www.rfc1437.de/2010/01/20/taylanpince-s-django-doc-wiki-at-master-github/ - 2026-03-03T12:59:14.000Z + 2026-03-03T12:59:14.026Z monthly 0.8 @@ -20378,7 +20567,7 @@ https://www.rfc1437.de/2010/01/20/windows-hole-discovered-after-17-years/ - 2026-03-03T12:59:17.000Z + 2026-03-03T12:59:17.976Z monthly 0.8 @@ -20387,7 +20576,7 @@ https://www.rfc1437.de/2010/01/18/anonymous-pro/ - 2026-03-03T12:59:21.000Z + 2026-03-03T12:59:21.890Z monthly 0.8 @@ -20396,7 +20585,7 @@ https://www.rfc1437.de/2010/01/18/ein-echtzeit-experiment-der-mensch-wird-zum/ - 2026-03-03T12:59:27.000Z + 2026-03-03T12:59:27.185Z monthly 0.8 @@ -20405,7 +20594,7 @@ https://www.rfc1437.de/2010/01/18/java-image-processing-blurring-for-beginners/ - 2026-03-03T12:59:30.000Z + 2026-03-03T12:59:30.592Z monthly 0.8 @@ -20414,7 +20603,7 @@ https://www.rfc1437.de/2010/01/18/jekaterinburg-weather-in-march-wolfram-alpha/ - 2026-03-03T12:59:34.000Z + 2026-03-03T12:59:34.054Z monthly 0.8 @@ -20423,7 +20612,7 @@ https://www.rfc1437.de/2010/01/18/mercurial-the-definitive-guide/ - 2026-03-03T12:59:37.000Z + 2026-03-03T12:59:37.962Z monthly 0.8 @@ -20432,7 +20621,7 @@ https://www.rfc1437.de/2010/01/17/am-laboratory/ - 2026-03-03T12:59:40.000Z + 2026-03-03T12:59:40.928Z monthly 0.8 @@ -20441,7 +20630,7 @@ https://www.rfc1437.de/2010/01/16/deutsche-verleger-gehen-gegen-google-vor/ - 2026-03-03T12:59:45.000Z + 2026-03-03T12:59:45.827Z monthly 0.8 @@ -20450,7 +20639,7 @@ https://www.rfc1437.de/2010/01/15/jquery-1-4-released-the-14-days-of-jquery/ - 2026-03-03T12:59:49.000Z + 2026-03-03T12:59:49.236Z monthly 0.8 @@ -20459,7 +20648,7 @@ https://www.rfc1437.de/2010/01/15/matthiask-s-feincms/ - 2026-03-03T12:59:52.000Z + 2026-03-03T12:59:52.851Z monthly 0.8 @@ -20468,7 +20657,7 @@ https://www.rfc1437.de/2010/01/15/reusableappresources-django-trac/ - 2026-03-03T12:59:56.000Z + 2026-03-03T12:59:56.363Z monthly 0.8 @@ -20477,7 +20666,7 @@ https://www.rfc1437.de/2010/01/15/stream-lazily-evaluated-parallelizable-pipeline/ - 2026-03-03T13:00:00.000Z + 2026-03-03T13:00:00.686Z monthly 0.8 @@ -20486,7 +20675,7 @@ https://www.rfc1437.de/2010/01/13/kritik-an-berufung-von-privatenkassen-manager-ins/ - 2026-03-03T13:00:04.000Z + 2026-03-03T13:00:04.645Z monthly 0.8 @@ -20495,7 +20684,7 @@ https://www.rfc1437.de/2010/01/12/fingernails-in-oatmeal-the-unsightliness-of-merge/ - 2026-03-03T13:00:09.000Z + 2026-03-03T13:00:09.065Z monthly 0.8 @@ -20504,7 +20693,7 @@ https://www.rfc1437.de/2010/01/12/introducing-akka-simpler-scalability-fault/ - 2026-03-03T13:00:14.000Z + 2026-03-03T13:00:14.066Z monthly 0.8 @@ -20513,7 +20702,7 @@ https://www.rfc1437.de/2010/01/12/linus-on-git-pull-rebase/ - 2026-03-03T13:00:18.000Z + 2026-03-03T13:00:18.231Z monthly 0.8 @@ -20522,7 +20711,7 @@ https://www.rfc1437.de/2010/01/12/voigtlaender-die-offizielle-homepage-bessa-iii/ - 2026-03-03T13:00:22.000Z + 2026-03-03T13:00:22.446Z monthly 0.8 @@ -20531,7 +20720,7 @@ https://www.rfc1437.de/2010/01/12/voigtlander-bessa-iii/ - 2026-03-03T13:00:27.000Z + 2026-03-03T13:00:27.579Z monthly 0.8 @@ -20540,7 +20729,7 @@ https://www.rfc1437.de/2010/01/11/entrian-com-goto-for-python-goto-for-python/ - 2026-03-03T13:00:31.000Z + 2026-03-03T13:00:31.192Z monthly 0.8 @@ -20549,7 +20738,7 @@ https://www.rfc1437.de/2010/01/11/heychinaski-com-blog-archive-heygraph-javascript/ - 2026-03-03T13:00:35.000Z + 2026-03-03T13:00:35.373Z monthly 0.8 @@ -20558,7 +20747,7 @@ https://www.rfc1437.de/2010/01/11/nailgun-insanely-fast-java/ - 2026-03-03T13:00:39.000Z + 2026-03-03T13:00:39.661Z monthly 0.8 @@ -20567,7 +20756,7 @@ https://www.rfc1437.de/2010/01/11/parrot-ar-drone-quadrotor-helicopter-with-wifi/ - 2026-03-03T13:00:44.000Z + 2026-03-03T13:00:44.588Z monthly 0.8 @@ -20576,7 +20765,7 @@ https://www.rfc1437.de/2010/01/11/proguard/ - 2026-03-03T13:00:48.000Z + 2026-03-03T13:00:48.748Z monthly 0.8 @@ -20585,7 +20774,7 @@ https://www.rfc1437.de/2010/01/11/scalacheck-user-guide/ - 2026-03-03T13:00:54.000Z + 2026-03-03T13:00:54.013Z monthly 0.8 @@ -20594,7 +20783,7 @@ https://www.rfc1437.de/2010/01/11/technically-us-git-sling-git-blob-project-build/ - 2026-03-03T13:00:59.000Z + 2026-03-03T13:00:59.150Z monthly 0.8 @@ -20603,7 +20792,7 @@ https://www.rfc1437.de/2010/01/11/ursula/ - 2026-03-03T13:01:03.000Z + 2026-03-03T13:01:03.524Z monthly 0.8 @@ -20612,7 +20801,7 @@ https://www.rfc1437.de/2010/01/10/anic/ - 2026-03-03T13:01:08.000Z + 2026-03-03T13:01:08.206Z monthly 0.8 @@ -20621,7 +20810,7 @@ https://www.rfc1437.de/2010/01/10/communities-diy-labview-crew-a-commodore-64/ - 2026-03-03T13:01:13.000Z + 2026-03-03T13:01:13.350Z monthly 0.8 @@ -20630,7 +20819,7 @@ https://www.rfc1437.de/2010/01/10/meshlab/ - 2026-03-03T13:01:17.000Z + 2026-03-03T13:01:17.959Z monthly 0.8 @@ -20639,7 +20828,7 @@ https://www.rfc1437.de/2010/01/10/qb-js-an-implementation-of-qbasic-in-javascript/ - 2026-03-03T13:01:22.000Z + 2026-03-03T13:01:22.178Z monthly 0.8 @@ -20648,7 +20837,7 @@ https://www.rfc1437.de/2010/01/10/schuetzt-handystrahlung-vor-alzheimer/ - 2026-03-03T13:01:26.000Z + 2026-03-03T13:01:26.512Z monthly 0.8 @@ -20657,7 +20846,7 @@ https://www.rfc1437.de/2010/01/10/shapeways-passionate-about-creating-2/ - 2026-03-03T13:01:30.000Z + 2026-03-03T13:01:30.512Z monthly 0.8 @@ -20666,7 +20855,7 @@ https://www.rfc1437.de/2010/01/09/alloy-analyzer/ - 2026-03-03T13:01:35.000Z + 2026-03-03T13:01:35.546Z monthly 0.8 @@ -20675,7 +20864,7 @@ https://www.rfc1437.de/2010/01/09/apples-and-bananas/ - 2026-03-03T13:01:39.000Z + 2026-03-03T13:01:39.659Z monthly 0.8 @@ -20684,7 +20873,7 @@ https://www.rfc1437.de/2010/01/09/google-voice-blog-google-welcomes-gizmo5/ - 2026-03-03T13:01:44.000Z + 2026-03-03T13:01:44.782Z monthly 0.8 @@ -20693,7 +20882,7 @@ https://www.rfc1437.de/2010/01/09/jdev-wikipedia-deletions/ - 2026-03-03T13:01:48.000Z + 2026-03-03T13:01:48.776Z monthly 0.8 @@ -20702,7 +20891,7 @@ https://www.rfc1437.de/2010/01/09/meine-openid/ - 2026-03-03T13:01:52.000Z + 2026-03-03T13:01:52.360Z monthly 0.8 @@ -20711,7 +20900,7 @@ https://www.rfc1437.de/2010/01/09/nullege-a-search-engine-for-python-source-code/ - 2026-03-03T13:01:56.000Z + 2026-03-03T13:01:56.369Z monthly 0.8 @@ -20720,7 +20909,7 @@ https://www.rfc1437.de/2010/01/09/phpmyid/ - 2026-03-03T13:01:59.000Z + 2026-03-03T13:01:59.439Z monthly 0.8 @@ -20729,7 +20918,7 @@ https://www.rfc1437.de/2010/01/09/tidbits-entertainment-if-monks-had-macs-available/ - 2026-03-03T13:02:04.000Z + 2026-03-03T13:02:04.404Z monthly 0.8 @@ -20738,7 +20927,7 @@ https://www.rfc1437.de/2010/01/09/tw-building-a-codeless-language-module-with/ - 2026-03-03T13:02:09.000Z + 2026-03-03T13:02:09.346Z monthly 0.8 @@ -20747,7 +20936,7 @@ https://www.rfc1437.de/2010/01/09/wikipedia-articles-for-deletion-ejabberd/ - 2026-03-03T13:02:13.000Z + 2026-03-03T13:02:13.815Z monthly 0.8 @@ -20756,7 +20945,7 @@ https://www.rfc1437.de/2010/01/08/aasee-muenster-wikipedia/ - 2026-03-03T13:02:18.000Z + 2026-03-03T13:02:18.872Z monthly 0.8 @@ -20765,7 +20954,7 @@ https://www.rfc1437.de/2010/01/08/maven-scala-plugin-maven-scala-plugin/ - 2026-03-03T13:02:22.000Z + 2026-03-03T13:02:22.796Z monthly 0.8 @@ -20774,7 +20963,7 @@ https://www.rfc1437.de/2010/01/08/sqlitejdbc-2/ - 2026-03-03T13:02:25.000Z + 2026-03-03T13:02:25.820Z monthly 0.8 @@ -20783,7 +20972,7 @@ https://www.rfc1437.de/2010/01/07/sqlitejdbc/ - 2026-03-03T13:02:29.000Z + 2026-03-03T13:02:29.382Z monthly 0.8 @@ -20792,7 +20981,7 @@ https://www.rfc1437.de/2010/01/06/fehlerhafte-sicherheitschips-30-millionen/ - 2026-03-03T13:02:34.000Z + 2026-03-03T13:02:34.774Z monthly 0.8 @@ -20801,7 +20990,7 @@ https://www.rfc1437.de/2010/01/06/fragen-und-antworten-zur-bankkarten-panne/ - 2026-03-03T13:02:39.000Z + 2026-03-03T13:02:39.244Z monthly 0.8 @@ -20810,7 +20999,7 @@ https://www.rfc1437.de/2010/01/06/python-package-index-promise-0-2-1/ - 2026-03-03T13:02:43.000Z + 2026-03-03T13:02:43.826Z monthly 0.8 @@ -20819,7 +21008,7 @@ https://www.rfc1437.de/2010/01/05/fleetdb/ - 2026-03-03T13:02:47.000Z + 2026-03-03T13:02:47.822Z monthly 0.8 @@ -20828,7 +21017,7 @@ https://www.rfc1437.de/2010/01/05/generator-tools/ - 2026-03-03T13:02:52.000Z + 2026-03-03T13:02:52.253Z monthly 0.8 @@ -20837,7 +21026,7 @@ https://www.rfc1437.de/2010/01/05/introduction-to-concurrent-programming-with/ - 2026-03-03T13:02:56.000Z + 2026-03-03T13:02:56.950Z monthly 0.8 @@ -20846,7 +21035,7 @@ https://www.rfc1437.de/2010/01/05/matasano-security-llc-chargen-if-you-re-typing/ - 2026-03-03T13:03:02.000Z + 2026-03-03T13:03:02.260Z monthly 0.8 @@ -20855,7 +21044,7 @@ https://www.rfc1437.de/2010/01/05/metapython-documentation-2/ - 2026-03-03T13:03:06.000Z + 2026-03-03T13:03:06.333Z monthly 0.8 @@ -20864,7 +21053,7 @@ https://www.rfc1437.de/2010/01/04/study-shows-viral-ssids-could-be-creating-a/ - 2026-03-03T13:03:10.000Z + 2026-03-03T13:03:10.872Z monthly 0.8 @@ -20873,7 +21062,7 @@ https://www.rfc1437.de/2010/01/04/viral-ssid-wlan-wireless-security-knowledge-center/ - 2026-03-03T13:03:14.000Z + 2026-03-03T13:03:14.337Z monthly 0.8 @@ -20882,7 +21071,7 @@ https://www.rfc1437.de/2010/01/03/opensimulator-gforge/ - 2026-03-03T13:03:17.000Z + 2026-03-03T13:03:17.827Z monthly 0.8 @@ -20891,7 +21080,7 @@ https://www.rfc1437.de/2010/01/02/hg-git-mercurial-plugin-3/ - 2026-03-03T13:03:21.000Z + 2026-03-03T13:03:21.336Z monthly 0.8 @@ -20900,7 +21089,7 @@ https://www.rfc1437.de/2010/01/01/daring-fireball-the-tablet/ - 2026-03-07T21:07:37.000Z + 2026-03-07T21:07:37.988Z monthly 0.8 @@ -20909,7 +21098,7 @@ https://www.rfc1437.de/2010/01/01/hgsubversion/ - 2026-03-03T13:03:31.000Z + 2026-03-03T13:03:31.222Z monthly 0.8 @@ -20918,7 +21107,7 @@ https://www.rfc1437.de/2009/12/31/datenschuetzer-kritisieren-elektronischen/ - 2026-03-03T13:03:36.000Z + 2026-03-03T13:03:36.053Z monthly 0.8 @@ -20927,7 +21116,7 @@ https://www.rfc1437.de/2009/12/31/duelinmarkers-s-clj-record/ - 2026-03-03T13:03:40.000Z + 2026-03-03T13:03:40.051Z monthly 0.8 @@ -20936,7 +21125,7 @@ https://www.rfc1437.de/2009/12/31/mattrepl-s-clojure-neo4j/ - 2026-03-03T13:03:44.000Z + 2026-03-03T13:03:44.154Z monthly 0.8 @@ -20945,7 +21134,7 @@ https://www.rfc1437.de/2009/12/31/neo4j-open-source-nosql-graph-database/ - 2026-03-03T13:03:47.000Z + 2026-03-03T13:03:47.759Z monthly 0.8 @@ -20954,7 +21143,7 @@ https://www.rfc1437.de/2009/12/31/pjstadig-s-tim-clojure-1-0-0/ - 2026-03-03T13:03:52.000Z + 2026-03-03T13:03:52.413Z monthly 0.8 @@ -20963,7 +21152,7 @@ https://www.rfc1437.de/2009/12/30/bei-nacht/ - 2026-03-03T13:03:55.000Z + 2026-03-03T13:03:55.943Z monthly 0.8 @@ -20972,7 +21161,7 @@ https://www.rfc1437.de/2009/12/30/blaue-stunde/ - 2026-03-03T13:03:59.000Z + 2026-03-03T13:03:59.887Z monthly 0.8 @@ -20981,7 +21170,7 @@ https://www.rfc1437.de/2009/12/30/iphone-remote-plex/ - 2026-03-03T13:04:03.000Z + 2026-03-03T13:04:03.948Z monthly 0.8 @@ -20990,7 +21179,7 @@ https://www.rfc1437.de/2009/12/30/kanex-mini-displayport-to-hdmi-1080p-video-with/ - 2026-03-03T13:04:08.000Z + 2026-03-03T13:04:08.473Z monthly 0.8 @@ -20999,7 +21188,7 @@ https://www.rfc1437.de/2009/12/30/plex-media-center-for-os-x/ - 2026-03-03T13:04:12.000Z + 2026-03-03T13:04:12.773Z monthly 0.8 @@ -21008,7 +21197,7 @@ https://www.rfc1437.de/2009/12/29/privacy-of-3-5-billion-cellphone-users/ - 2026-03-03T13:04:17.000Z + 2026-03-03T13:04:17.653Z monthly 0.8 @@ -21017,7 +21206,7 @@ https://www.rfc1437.de/2009/12/28/flugzeug-attentaeter-muss-mit-40-jahren-haft/ - 2026-03-03T13:04:22.000Z + 2026-03-03T13:04:22.687Z monthly 0.8 @@ -21026,7 +21215,7 @@ https://www.rfc1437.de/2009/12/27/bundestagspraesident-missfaellt-regierungskurs/ - 2026-03-03T13:04:26.000Z + 2026-03-03T13:04:26.826Z monthly 0.8 @@ -21035,7 +21224,7 @@ https://www.rfc1437.de/2009/12/27/moscow-ml-home-page/ - 2026-03-03T13:04:31.000Z + 2026-03-03T13:04:31.375Z monthly 0.8 @@ -21044,7 +21233,7 @@ https://www.rfc1437.de/2009/12/27/neatx/ - 2026-03-03T13:04:35.000Z + 2026-03-03T13:04:35.020Z monthly 0.8 @@ -21053,7 +21242,7 @@ https://www.rfc1437.de/2009/12/27/openduckbill/ - 2026-03-03T13:04:39.000Z + 2026-03-03T13:04:39.175Z monthly 0.8 @@ -21062,7 +21251,7 @@ https://www.rfc1437.de/2009/12/27/poly-ml-home-page/ - 2026-03-03T13:04:43.000Z + 2026-03-03T13:04:43.700Z monthly 0.8 @@ -21071,7 +21260,7 @@ https://www.rfc1437.de/2009/12/27/standard-ml-of-new-jersey/ - 2026-03-03T13:04:47.000Z + 2026-03-03T13:04:47.408Z monthly 0.8 @@ -21080,7 +21269,7 @@ https://www.rfc1437.de/2009/12/26/fuzzy-hashing-and-ssdeep/ - 2026-03-03T13:04:51.000Z + 2026-03-03T13:04:51.408Z monthly 0.8 @@ -21089,7 +21278,7 @@ https://www.rfc1437.de/2009/12/26/home-of-phash-the-open-source-perceptual-hash/ - 2026-03-03T13:04:55.000Z + 2026-03-03T13:04:55.784Z monthly 0.8 @@ -21098,7 +21287,7 @@ https://www.rfc1437.de/2009/12/26/kulturstaatsminister-kritisiert-smartphone-apps/ - 2026-03-03T13:05:00.000Z + 2026-03-03T13:05:00.670Z monthly 0.8 @@ -21107,7 +21296,7 @@ https://www.rfc1437.de/2009/12/26/mlton-standard-ml-compiler-sml-compiler/ - 2026-03-03T13:05:05.000Z + 2026-03-03T13:05:05.184Z monthly 0.8 @@ -21116,7 +21305,7 @@ https://www.rfc1437.de/2009/12/26/ocsigen/ - 2026-03-03T13:05:09.000Z + 2026-03-03T13:05:09.687Z monthly 0.8 @@ -21125,7 +21314,7 @@ https://www.rfc1437.de/2009/12/26/the-ur-programming-language-family/ - 2026-03-03T13:05:14.000Z + 2026-03-03T13:05:14.126Z monthly 0.8 @@ -21134,7 +21323,7 @@ https://www.rfc1437.de/2009/12/26/web-authoring-system-haskell-wash/ - 2026-03-03T13:05:18.000Z + 2026-03-03T13:05:18.131Z monthly 0.8 @@ -21143,7 +21332,7 @@ https://www.rfc1437.de/2009/12/25/december-25th/ - 2026-03-07T21:07:38.000Z + 2026-03-07T21:07:38.912Z monthly 0.8 @@ -21152,7 +21341,7 @@ https://www.rfc1437.de/2009/12/25/mail-rfc822-address/ - 2026-03-07T21:07:39.000Z + 2026-03-07T21:07:39.932Z monthly 0.8 @@ -21161,7 +21350,7 @@ https://www.rfc1437.de/2009/12/24/the-25th-anniversary-edition-of-little-big-by/ - 2026-03-03T13:05:29.000Z + 2026-03-03T13:05:29.605Z monthly 0.8 @@ -21170,7 +21359,7 @@ https://www.rfc1437.de/2009/12/23/ho-ho-ho/ - 2026-03-07T21:07:40.000Z + 2026-03-07T21:07:40.716Z monthly 0.8 @@ -21179,7 +21368,7 @@ https://www.rfc1437.de/2009/12/22/real-world-haskell/ - 2026-03-03T13:05:37.000Z + 2026-03-03T13:05:37.516Z monthly 0.8 @@ -21188,7 +21377,7 @@ https://www.rfc1437.de/2009/12/22/regierung-haelt-sich-anhebung-des/ - 2026-03-03T13:05:41.000Z + 2026-03-03T13:05:41.543Z monthly 0.8 @@ -21197,7 +21386,7 @@ https://www.rfc1437.de/2009/12/22/socket-benchmark-of-asynchronous-servers-in-python/ - 2026-03-03T13:05:45.000Z + 2026-03-03T13:05:45.102Z monthly 0.8 @@ -21206,7 +21395,7 @@ https://www.rfc1437.de/2009/12/21/a-case-of-the-mumps-the-daily-wtf/ - 2026-03-03T13:05:49.000Z + 2026-03-03T13:05:49.005Z monthly 0.8 @@ -21215,7 +21404,7 @@ https://www.rfc1437.de/2009/12/21/hdr-photo-software-plugin-for-lightroom-aperture/ - 2026-03-03T13:05:52.000Z + 2026-03-03T13:05:52.945Z monthly 0.8 @@ -21224,7 +21413,7 @@ https://www.rfc1437.de/2009/12/21/intersystems-cach-gateway-to-hell-tdwtf-forums/ - 2026-03-03T13:05:57.000Z + 2026-03-03T13:05:57.056Z monthly 0.8 @@ -21233,7 +21422,7 @@ https://www.rfc1437.de/2009/12/21/invent-with-python/ - 2026-03-03T13:06:00.000Z + 2026-03-03T13:06:00.483Z monthly 0.8 @@ -21242,7 +21431,7 @@ https://www.rfc1437.de/2009/12/21/panasonic-lumix-gf1-field-test-16-days-in-the/ - 2026-03-03T13:06:04.000Z + 2026-03-03T13:06:04.484Z monthly 0.8 @@ -21251,7 +21440,7 @@ https://www.rfc1437.de/2009/12/21/winmerge-2/ - 2026-03-03T13:06:07.000Z + 2026-03-03T13:06:07.512Z monthly 0.8 @@ -21260,7 +21449,7 @@ https://www.rfc1437.de/2009/12/20/crowdsourced-document-analysis-and-mp-expenses/ - 2026-03-03T13:06:11.000Z + 2026-03-03T13:06:11.442Z monthly 0.8 @@ -21269,7 +21458,7 @@ https://www.rfc1437.de/2009/12/20/fabricate-2/ - 2026-03-03T13:06:15.000Z + 2026-03-03T13:06:15.339Z monthly 0.8 @@ -21278,7 +21467,7 @@ https://www.rfc1437.de/2009/12/20/schnoeoeoeoeoeoeoe/ - 2026-03-03T13:06:19.000Z + 2026-03-03T13:06:19.261Z monthly 0.8 @@ -21287,7 +21476,7 @@ https://www.rfc1437.de/2009/12/19/building-a-clojure-web-application-with-incanter/ - 2026-03-03T13:06:24.000Z + 2026-03-03T13:06:24.127Z monthly 0.8 @@ -21296,7 +21485,7 @@ https://www.rfc1437.de/2009/12/19/git-postgresql-org-git-postgresql-git-commit/ - 2026-03-03T13:06:28.000Z + 2026-03-03T13:06:28.492Z monthly 0.8 @@ -21305,7 +21494,7 @@ https://www.rfc1437.de/2009/12/18/about-hypertable/ - 2026-03-03T13:06:31.000Z + 2026-03-03T13:06:31.986Z monthly 0.8 @@ -21314,7 +21503,7 @@ https://www.rfc1437.de/2009/12/18/etherpad/ - 2026-03-03T13:06:34.000Z + 2026-03-03T13:06:34.921Z monthly 0.8 @@ -21323,7 +21512,7 @@ https://www.rfc1437.de/2009/12/18/haystack-search-for-django/ - 2026-03-03T13:06:38.000Z + 2026-03-03T13:06:38.514Z monthly 0.8 @@ -21332,7 +21521,7 @@ https://www.rfc1437.de/2009/12/18/infoq-clojure-1-1-adds-transients-chunked/ - 2026-03-03T13:06:44.000Z + 2026-03-03T13:06:44.374Z monthly 0.8 @@ -21341,7 +21530,7 @@ https://www.rfc1437.de/2009/12/18/leica-x1-review-27-conclusion-digital-photography/ - 2026-03-03T13:06:49.000Z + 2026-03-03T13:06:49.888Z monthly 0.8 @@ -21350,7 +21539,7 @@ https://www.rfc1437.de/2009/12/18/mir-war-danach/ - 2026-03-03T13:06:54.000Z + 2026-03-03T13:06:54.346Z monthly 0.8 @@ -21359,7 +21548,7 @@ https://www.rfc1437.de/2009/12/18/ten-years-of-net-did-microsoft-deliver-the/ - 2026-03-07T21:07:41.000Z + 2026-03-07T21:07:41.882Z monthly 0.8 @@ -21368,7 +21557,7 @@ https://www.rfc1437.de/2009/12/18/whoosh/ - 2026-03-03T13:07:02.000Z + 2026-03-03T13:07:02.378Z monthly 0.8 @@ -21377,7 +21566,7 @@ https://www.rfc1437.de/2009/12/17/algorithmic-botany/ - 2026-03-03T13:07:06.000Z + 2026-03-03T13:07:06.468Z monthly 0.8 @@ -21386,7 +21575,7 @@ https://www.rfc1437.de/2009/12/17/apparent-software-blog-blog-archive-is-paypal/ - 2026-03-03T13:07:11.000Z + 2026-03-03T13:07:11.460Z monthly 0.8 @@ -21395,7 +21584,7 @@ https://www.rfc1437.de/2009/12/17/bert-and-bert-rpc-1-0-specification/ - 2026-03-03T13:07:15.000Z + 2026-03-03T13:07:15.713Z monthly 0.8 @@ -21404,7 +21593,7 @@ https://www.rfc1437.de/2009/12/17/briancarper-net-clojure-reader-macros/ - 2026-03-03T13:07:20.000Z + 2026-03-03T13:07:20.829Z monthly 0.8 @@ -21413,7 +21602,7 @@ https://www.rfc1437.de/2009/12/17/ironpython-release-2-6/ - 2026-03-03T13:07:25.000Z + 2026-03-03T13:07:25.954Z monthly 0.8 @@ -21422,7 +21611,7 @@ https://www.rfc1437.de/2009/12/17/john-graham-cumming-data-visualization-disease/ - 2026-03-07T21:07:43.000Z + 2026-03-07T21:07:43.001Z monthly 0.8 @@ -21431,7 +21620,7 @@ https://www.rfc1437.de/2009/12/17/mojombo-s-bert/ - 2026-03-03T13:07:33.000Z + 2026-03-03T13:07:33.652Z monthly 0.8 @@ -21440,7 +21629,7 @@ https://www.rfc1437.de/2009/12/17/projectplan-unladen-swallow-plans-for-optimizing/ - 2026-03-03T13:07:38.000Z + 2026-03-03T13:07:38.159Z monthly 0.8 @@ -21449,7 +21638,7 @@ https://www.rfc1437.de/2009/12/17/python-package-index-python-daemon-1-5-2/ - 2026-03-03T13:07:42.000Z + 2026-03-03T13:07:42.787Z monthly 0.8 @@ -21458,7 +21647,7 @@ https://www.rfc1437.de/2009/12/17/samuel-s-python-bert/ - 2026-03-03T13:07:46.000Z + 2026-03-03T13:07:46.918Z monthly 0.8 @@ -21467,7 +21656,7 @@ https://www.rfc1437.de/2009/12/17/the-render-engine-javascript-game-engine/ - 2026-03-03T13:07:51.000Z + 2026-03-03T13:07:51.471Z monthly 0.8 @@ -21476,7 +21665,7 @@ https://www.rfc1437.de/2009/12/17/trotter-s-bert-clj/ - 2026-03-03T13:07:55.000Z + 2026-03-03T13:07:55.540Z monthly 0.8 @@ -21485,7 +21674,7 @@ https://www.rfc1437.de/2009/12/16/making-light/ - 2026-03-03T13:07:59.000Z + 2026-03-03T13:07:59.717Z monthly 0.8 @@ -21494,7 +21683,7 @@ https://www.rfc1437.de/2009/12/16/microsoft-acknowledges-theft-of-code-from-plurk/ - 2026-03-03T13:08:05.000Z + 2026-03-03T13:08:05.235Z monthly 0.8 @@ -21503,7 +21692,7 @@ https://www.rfc1437.de/2009/12/16/widefinder-2-with-clojure/ - 2026-03-03T13:08:10.000Z + 2026-03-03T13:08:10.756Z monthly 0.8 @@ -21512,7 +21701,7 @@ https://www.rfc1437.de/2009/12/15/bug-387308-in-ubuntu-one-client-wishlist-proxy/ - 2026-03-03T13:08:15.000Z + 2026-03-03T13:08:15.635Z monthly 0.8 @@ -21521,7 +21710,7 @@ https://www.rfc1437.de/2009/12/15/code-tutorial-make-your-application-sync-with/ - 2026-03-03T13:08:21.000Z + 2026-03-03T13:08:21.253Z monthly 0.8 @@ -21530,7 +21719,7 @@ https://www.rfc1437.de/2009/12/14/damn-cool-algorithms-log-structured-storage/ - 2026-03-03T13:08:25.000Z + 2026-03-03T13:08:25.838Z monthly 0.8 @@ -21539,7 +21728,7 @@ https://www.rfc1437.de/2009/12/14/hunger/ - 2026-03-07T21:07:43.000Z + 2026-03-07T21:07:43.607Z monthly 0.8 @@ -21548,7 +21737,7 @@ https://www.rfc1437.de/2009/12/14/intland-now-on-mercurial-part-3-giving-new/ - 2026-03-03T13:08:34.000Z + 2026-03-03T13:08:34.996Z monthly 0.8 @@ -21557,7 +21746,7 @@ https://www.rfc1437.de/2009/12/14/maven-guide-to-using-proxies/ - 2026-03-03T13:08:40.000Z + 2026-03-03T13:08:40.209Z monthly 0.8 @@ -21566,7 +21755,7 @@ https://www.rfc1437.de/2009/12/14/tutorial-clojars-web-github/ - 2026-03-03T13:08:44.000Z + 2026-03-03T13:08:44.878Z monthly 0.8 @@ -21575,7 +21764,7 @@ https://www.rfc1437.de/2009/12/13/embody-von-herman-miller-chairholder-news/ - 2026-03-03T13:08:49.000Z + 2026-03-03T13:08:49.690Z monthly 0.8 @@ -21584,7 +21773,7 @@ https://www.rfc1437.de/2009/12/13/radio-userland-auf-wiedersehen-und-danke-fuer-den/ - 2026-03-03T13:08:54.000Z + 2026-03-03T13:08:54.946Z monthly 0.8 @@ -21593,7 +21782,7 @@ https://www.rfc1437.de/2009/12/13/yeti-programming-language/ - 2026-03-03T13:09:00.000Z + 2026-03-03T13:09:00.075Z monthly 0.8 @@ -21602,7 +21791,7 @@ https://www.rfc1437.de/2009/12/11/either-mark-zuckerberg-got-a-whole-lot-less/ - 2026-03-03T13:09:05.000Z + 2026-03-03T13:09:05.695Z monthly 0.8 @@ -21611,7 +21800,7 @@ https://www.rfc1437.de/2009/12/11/javascript-web-workers-use-visitors-to-your/ - 2026-03-03T13:09:10.000Z + 2026-03-03T13:09:10.857Z monthly 0.8 @@ -21620,7 +21809,7 @@ https://www.rfc1437.de/2009/12/11/the-tumblr-backup-app-is-ready-for-its-first-beta/ - 2026-03-03T13:09:15.000Z + 2026-03-03T13:09:15.435Z monthly 0.8 @@ -21629,7 +21818,7 @@ https://www.rfc1437.de/2009/12/11/tuxmobil-fingerprint-readers-on-linux-laptops-and/ - 2026-03-03T13:09:20.000Z + 2026-03-03T13:09:20.015Z monthly 0.8 @@ -21638,7 +21827,7 @@ https://www.rfc1437.de/2009/12/10/klimakonferenz-keine-0-5-grad-extra-fuer-tuvalu/ - 2026-03-03T13:09:24.000Z + 2026-03-03T13:09:24.596Z monthly 0.8 @@ -21647,7 +21836,7 @@ https://www.rfc1437.de/2009/12/10/regierungs-smartphones-arbeiten-mit-windows-mobile/ - 2026-03-03T13:09:29.000Z + 2026-03-03T13:09:29.890Z monthly 0.8 @@ -21656,7 +21845,7 @@ https://www.rfc1437.de/2009/12/10/zarengold-bahnreisen/ - 2026-03-03T13:09:34.000Z + 2026-03-03T13:09:34.536Z monthly 0.8 @@ -21665,7 +21854,7 @@ https://www.rfc1437.de/2009/12/08/taskpaper-web/ - 2026-03-03T13:09:38.000Z + 2026-03-03T13:09:38.731Z monthly 0.8 @@ -21674,7 +21863,7 @@ https://www.rfc1437.de/2009/12/08/taskpaperplus/ - 2026-03-03T13:09:43.000Z + 2026-03-03T13:09:43.381Z monthly 0.8 @@ -21683,7 +21872,7 @@ https://www.rfc1437.de/2009/12/08/todopaper/ - 2026-03-03T13:09:47.000Z + 2026-03-03T13:09:47.546Z monthly 0.8 @@ -21692,7 +21881,7 @@ https://www.rfc1437.de/2009/12/08/we-call-it-opa/ - 2026-03-03T13:09:52.000Z + 2026-03-03T13:09:52.327Z monthly 0.8 @@ -21701,7 +21890,7 @@ https://www.rfc1437.de/2009/12/07/cadmium-introduction/ - 2026-03-03T13:09:56.000Z + 2026-03-03T13:09:56.924Z monthly 0.8 @@ -21710,7 +21899,7 @@ https://www.rfc1437.de/2009/12/07/cafesterol/ - 2026-03-03T13:10:01.000Z + 2026-03-03T13:10:01.018Z monthly 0.8 @@ -21719,7 +21908,7 @@ https://www.rfc1437.de/2009/12/07/plt-scheme-blog-futures-fine-grained-parallelism/ - 2026-03-03T13:10:05.000Z + 2026-03-03T13:10:05.620Z monthly 0.8 @@ -21728,7 +21917,7 @@ https://www.rfc1437.de/2009/12/07/short-chat-server-in-clojure/ - 2026-03-03T13:10:10.000Z + 2026-03-03T13:10:10.169Z monthly 0.8 @@ -21737,7 +21926,7 @@ https://www.rfc1437.de/2009/12/06/clutchski-s-fileutils/ - 2026-03-03T13:10:14.000Z + 2026-03-03T13:10:14.350Z monthly 0.8 @@ -21746,7 +21935,7 @@ https://www.rfc1437.de/2009/12/05/escher-in-hagen/ - 2026-03-03T13:10:18.000Z + 2026-03-03T13:10:18.940Z monthly 0.8 @@ -21755,7 +21944,7 @@ https://www.rfc1437.de/2009/12/05/mal-mit-tabblo-gespielt/ - 2026-03-03T13:10:25.000Z + 2026-03-03T13:10:25.294Z monthly 0.8 @@ -21764,7 +21953,7 @@ https://www.rfc1437.de/2009/12/04/why-object-oriented-languages-need-tail-calls/ - 2026-03-03T13:10:30.000Z + 2026-03-03T13:10:30.494Z monthly 0.8 @@ -21773,7 +21962,7 @@ https://www.rfc1437.de/2009/12/03/google-maps-distance-calculator/ - 2026-03-03T13:10:35.000Z + 2026-03-03T13:10:35.090Z monthly 0.8 @@ -21782,7 +21971,7 @@ https://www.rfc1437.de/2009/12/03/la-bamba/ - 2026-03-03T13:10:39.000Z + 2026-03-03T13:10:39.721Z monthly 0.8 @@ -21791,7 +21980,7 @@ https://www.rfc1437.de/2009/12/03/mclide-lisp-ide-for-macintosh/ - 2026-03-03T13:10:44.000Z + 2026-03-03T13:10:44.492Z monthly 0.8 @@ -21800,7 +21989,7 @@ https://www.rfc1437.de/2009/11/26/sonar/ - 2026-03-03T13:10:48.000Z + 2026-03-03T13:10:48.682Z monthly 0.8 @@ -21809,7 +21998,7 @@ https://www.rfc1437.de/2009/11/25/building-clojure-projects-with-leiningen/ - 2026-03-03T13:10:53.000Z + 2026-03-03T13:10:53.331Z monthly 0.8 @@ -21818,7 +22007,7 @@ https://www.rfc1437.de/2009/11/24/amp-version-control-revolution/ - 2026-03-03T13:10:58.000Z + 2026-03-03T13:10:58.042Z monthly 0.8 @@ -21827,7 +22016,7 @@ https://www.rfc1437.de/2009/11/24/formsets-und-inline-forms-in-django/ - 2026-03-03T13:11:02.000Z + 2026-03-03T13:11:02.131Z monthly 0.8 @@ -21836,7 +22025,7 @@ https://www.rfc1437.de/2009/11/24/implementing-a-dht-in-go-part-1/ - 2026-03-03T13:11:07.000Z + 2026-03-03T13:11:07.238Z monthly 0.8 @@ -21845,7 +22034,7 @@ https://www.rfc1437.de/2009/11/24/understanding-haskell-monads/ - 2026-03-03T13:11:11.000Z + 2026-03-03T13:11:11.389Z monthly 0.8 @@ -21854,7 +22043,7 @@ https://www.rfc1437.de/2009/11/23/avahiandunicastdotlocal-avahi/ - 2026-03-03T13:11:15.000Z + 2026-03-03T13:11:15.967Z monthly 0.8 @@ -21863,7 +22052,7 @@ https://www.rfc1437.de/2009/11/23/gopenvpn/ - 2026-03-03T13:11:20.000Z + 2026-03-03T13:11:20.043Z monthly 0.8 @@ -21872,7 +22061,7 @@ https://www.rfc1437.de/2009/11/22/buntes-gemuese/ - 2026-03-03T13:11:24.000Z + 2026-03-03T13:11:24.181Z monthly 0.8 @@ -21881,7 +22070,7 @@ https://www.rfc1437.de/2009/11/21/uwsgi/ - 2026-03-03T13:11:28.000Z + 2026-03-03T13:11:28.207Z monthly 0.8 @@ -21890,7 +22079,7 @@ https://www.rfc1437.de/2009/11/20/clojars/ - 2026-03-03T13:11:32.000Z + 2026-03-03T13:11:32.255Z monthly 0.8 @@ -21899,7 +22088,7 @@ https://www.rfc1437.de/2009/11/20/incanter-statistical-computing-and-graphics/ - 2026-03-03T13:11:36.000Z + 2026-03-03T13:11:36.391Z monthly 0.8 @@ -21908,7 +22097,7 @@ https://www.rfc1437.de/2009/11/20/technomancy-s-leiningen/ - 2026-03-03T13:11:41.000Z + 2026-03-03T13:11:41.438Z monthly 0.8 @@ -21917,7 +22106,7 @@ https://www.rfc1437.de/2009/11/18/2060-wird-jeder-dritte-65-oder-aelter-sein/ - 2026-03-03T13:11:47.000Z + 2026-03-03T13:11:47.694Z monthly 0.8 @@ -21926,7 +22115,7 @@ https://www.rfc1437.de/2009/11/18/hudson-ci/ - 2026-03-03T13:12:13.000Z + 2026-03-03T13:12:13.393Z monthly 0.8 @@ -21935,7 +22124,7 @@ https://www.rfc1437.de/2009/11/18/light-and-shadow/ - 2026-03-07T21:07:44.000Z + 2026-03-07T21:07:44.223Z monthly 0.8 @@ -21944,7 +22133,7 @@ https://www.rfc1437.de/2009/11/18/pygowave-server/ - 2026-03-03T13:16:43.000Z + 2026-03-03T13:16:43.593Z monthly 0.8 @@ -21953,7 +22142,7 @@ https://www.rfc1437.de/2009/11/18/python-moratorium-and-the-future-of-2-x-lwn-net/ - 2026-03-03T13:16:47.000Z + 2026-03-03T13:16:47.355Z monthly 0.8 @@ -21962,7 +22151,7 @@ https://www.rfc1437.de/2009/11/18/steinbach-wirft-westerwelle-profilierung-vor/ - 2026-03-03T13:16:51.000Z + 2026-03-03T13:16:51.300Z monthly 0.8 @@ -21971,7 +22160,7 @@ https://www.rfc1437.de/2009/11/18/verteilte-wikipedias-statt-zentralem-monster-mit/ - 2026-03-03T13:16:54.000Z + 2026-03-03T13:16:54.904Z monthly 0.8 @@ -21980,7 +22169,7 @@ https://www.rfc1437.de/2009/11/15/in-which-things-are-mapped-but-also-reduced/ - 2026-03-03T13:16:58.000Z + 2026-03-03T13:16:58.198Z monthly 0.8 @@ -21989,7 +22178,7 @@ https://www.rfc1437.de/2009/11/14/fefes-kritik-an-spdy/ - 2026-03-03T13:17:01.000Z + 2026-03-03T13:17:01.756Z monthly 0.8 @@ -21998,7 +22187,7 @@ https://www.rfc1437.de/2009/11/14/more-freedom-necessary-as-top-developers-abandon/ - 2026-03-03T13:17:05.000Z + 2026-03-03T13:17:05.043Z monthly 0.8 @@ -22007,7 +22196,7 @@ https://www.rfc1437.de/2009/11/14/nothing-new/ - 2026-03-03T13:17:07.000Z + 2026-03-03T13:17:07.965Z monthly 0.8 @@ -22016,7 +22205,7 @@ https://www.rfc1437.de/2009/11/14/warum-common-lisp-nie-wirklich-mainstream-sein/ - 2026-03-03T13:17:11.000Z + 2026-03-03T13:17:11.219Z monthly 0.8 @@ -22025,7 +22214,7 @@ https://www.rfc1437.de/2009/11/13/play-framework/ - 2026-03-03T13:17:14.000Z + 2026-03-03T13:17:14.194Z monthly 0.8 @@ -22034,7 +22223,7 @@ https://www.rfc1437.de/2009/11/12/google-closure-how-not-to-write-javascript/ - 2026-03-03T13:17:17.000Z + 2026-03-03T13:17:17.326Z monthly 0.8 @@ -22043,7 +22232,7 @@ https://www.rfc1437.de/2009/11/12/mandelbulb-the-unravelling-of-the-real-3d/ - 2026-03-03T13:17:20.000Z + 2026-03-03T13:17:20.031Z monthly 0.8 @@ -22052,7 +22241,7 @@ https://www.rfc1437.de/2009/11/12/netbeans-support-for-google-app-engine/ - 2026-03-03T13:17:23.000Z + 2026-03-03T13:17:23.413Z monthly 0.8 @@ -22061,7 +22250,7 @@ https://www.rfc1437.de/2009/11/12/the-enclojure-repls-not-just-for-netbeans/ - 2026-03-03T13:17:26.000Z + 2026-03-03T13:17:26.442Z monthly 0.8 @@ -22070,7 +22259,7 @@ https://www.rfc1437.de/2009/11/11/joe-strummer-darf-alles-1999-spreeblick/ - 2026-03-03T13:17:29.000Z + 2026-03-03T13:17:29.452Z monthly 0.8 @@ -22079,7 +22268,7 @@ https://www.rfc1437.de/2009/11/11/the-go-programming-language/ - 2026-03-03T13:17:32.000Z + 2026-03-03T13:17:32.483Z monthly 0.8 @@ -22088,7 +22277,7 @@ https://www.rfc1437.de/2009/11/10/ricoh-gxr-hands-on-preview/ - 2026-03-03T13:17:35.000Z + 2026-03-03T13:17:35.859Z monthly 0.8 @@ -22097,7 +22286,7 @@ https://www.rfc1437.de/2009/11/10/staatssekretaer-hanning-in-ruhestand-versetzt/ - 2026-03-03T13:17:38.000Z + 2026-03-03T13:17:38.603Z monthly 0.8 @@ -22106,7 +22295,7 @@ https://www.rfc1437.de/2009/11/09/clojure-and-markdown-and-javascript-and-java-and/ - 2026-03-03T13:17:41.000Z + 2026-03-03T13:17:41.972Z monthly 0.8 @@ -22115,7 +22304,7 @@ https://www.rfc1437.de/2009/11/09/for-post-in-leo-blog-django-jython-1-0-0-released/ - 2026-03-03T13:17:45.000Z + 2026-03-03T13:17:45.328Z monthly 0.8 @@ -22124,7 +22313,7 @@ https://www.rfc1437.de/2009/11/09/what-dns-is-not-acm-queue/ - 2026-03-03T13:17:48.000Z + 2026-03-03T13:17:48.711Z monthly 0.8 @@ -22133,7 +22322,7 @@ https://www.rfc1437.de/2009/11/08/acme-don-t/ - 2026-03-03T13:17:51.000Z + 2026-03-03T13:17:51.405Z monthly 0.8 @@ -22142,7 +22331,7 @@ https://www.rfc1437.de/2009/11/08/automatisiertes-newsportal-netzeitung-verliert/ - 2026-03-03T13:17:54.000Z + 2026-03-03T13:17:54.819Z monthly 0.8 @@ -22151,7 +22340,7 @@ https://www.rfc1437.de/2009/11/06/eva-redselig/ - 2026-03-03T13:17:57.000Z + 2026-03-03T13:17:57.510Z monthly 0.8 @@ -22160,7 +22349,7 @@ https://www.rfc1437.de/2009/11/04/avodonosov-s-abcl-idea/ - 2026-03-03T13:18:00.000Z + 2026-03-03T13:18:00.893Z monthly 0.8 @@ -22169,7 +22358,7 @@ https://www.rfc1437.de/2009/11/04/cluster-ssh-cluster-admin-via-ssh/ - 2026-03-03T13:18:03.000Z + 2026-03-03T13:18:03.637Z monthly 0.8 @@ -22178,7 +22367,7 @@ https://www.rfc1437.de/2009/11/04/fai-fully-automatic-installation/ - 2026-03-03T13:18:06.000Z + 2026-03-03T13:18:06.362Z monthly 0.8 @@ -22187,7 +22376,7 @@ https://www.rfc1437.de/2009/11/04/flogr/ - 2026-03-03T13:18:09.000Z + 2026-03-03T13:18:09.083Z monthly 0.8 @@ -22196,7 +22385,7 @@ https://www.rfc1437.de/2009/11/04/iwebkit-make-a-quality-iphone-website-or-webapp/ - 2026-03-03T13:18:11.000Z + 2026-03-03T13:18:11.812Z monthly 0.8 @@ -22205,7 +22394,7 @@ https://www.rfc1437.de/2009/11/04/jqtouch-jquery-plugin-for-mobile-web-development/ - 2026-03-03T13:18:14.000Z + 2026-03-03T13:18:14.933Z monthly 0.8 @@ -22214,7 +22403,7 @@ https://www.rfc1437.de/2009/11/04/lazy-pythonista-diving-into-unladen-swallow-s/ - 2026-03-03T13:18:18.000Z + 2026-03-03T13:18:18.015Z monthly 0.8 @@ -22223,7 +22412,7 @@ https://www.rfc1437.de/2009/11/04/openoffice-org2googledocs-export-import-to-google/ - 2026-03-03T13:18:21.000Z + 2026-03-03T13:18:21.131Z monthly 0.8 @@ -22232,7 +22421,7 @@ https://www.rfc1437.de/2009/11/03/electric-alchemy-cracking-passwords-in-the-cloud/ - 2026-03-03T13:18:24.000Z + 2026-03-03T13:18:24.994Z monthly 0.8 @@ -22241,7 +22430,7 @@ https://www.rfc1437.de/2009/11/03/large-problems-in-django-mostly-solved-search/ - 2026-03-03T13:18:28.000Z + 2026-03-03T13:18:28.155Z monthly 0.8 @@ -22250,7 +22439,7 @@ https://www.rfc1437.de/2009/11/03/parsing-json-in-arc/ - 2026-03-03T13:18:30.000Z + 2026-03-03T13:18:30.936Z monthly 0.8 @@ -22259,7 +22448,7 @@ https://www.rfc1437.de/2009/11/03/why-do-we-have-an-img-element/ - 2026-03-07T21:07:44.000Z + 2026-03-07T21:07:44.948Z monthly 0.8 @@ -22268,7 +22457,7 @@ https://www.rfc1437.de/2009/11/01/tausende-blaue-briefe-vom-jugendamt/ - 2026-03-03T13:18:37.000Z + 2026-03-03T13:18:37.261Z monthly 0.8 @@ -22277,7 +22466,7 @@ https://www.rfc1437.de/2009/10/31/alandipert-s-step/ - 2026-03-03T13:18:40.000Z + 2026-03-03T13:18:40.067Z monthly 0.8 @@ -22286,7 +22475,7 @@ https://www.rfc1437.de/2009/10/31/grdiii-vs-grdii-vs-grd-b-w-side-by-side-photos/ - 2026-03-03T13:18:43.000Z + 2026-03-03T13:18:43.632Z monthly 0.8 @@ -22295,7 +22484,7 @@ https://www.rfc1437.de/2009/10/31/henri-de-toulouse-lautrec-in-langenfeld/ - 2026-03-03T13:18:46.000Z + 2026-03-03T13:18:46.829Z monthly 0.8 @@ -22304,7 +22493,7 @@ https://www.rfc1437.de/2009/10/31/hlship-s-cascade/ - 2026-03-03T13:18:49.000Z + 2026-03-03T13:18:49.737Z monthly 0.8 @@ -22313,7 +22502,7 @@ https://www.rfc1437.de/2009/10/31/macourtney-s-conjure/ - 2026-03-03T13:18:53.000Z + 2026-03-03T13:18:53.040Z monthly 0.8 @@ -22322,7 +22511,7 @@ https://www.rfc1437.de/2009/10/31/weavejester-s-compojure/ - 2026-03-03T13:18:56.000Z + 2026-03-03T13:18:56.485Z monthly 0.8 @@ -22331,7 +22520,7 @@ https://www.rfc1437.de/2009/10/30/rwpluginmarkup/ - 2026-03-03T13:18:59.000Z + 2026-03-03T13:18:59.044Z monthly 0.8 @@ -22340,7 +22529,7 @@ https://www.rfc1437.de/2009/10/29/bill-clementson-s-blog-clojure-could-be-to/ - 2026-03-03T13:19:02.000Z + 2026-03-03T13:19:02.595Z monthly 0.8 @@ -22349,7 +22538,7 @@ https://www.rfc1437.de/2009/10/29/field/ - 2026-03-03T13:19:06.000Z + 2026-03-03T13:19:06.086Z monthly 0.8 @@ -22358,7 +22547,7 @@ https://www.rfc1437.de/2009/10/29/underscore-js/ - 2026-03-03T13:19:08.000Z + 2026-03-03T13:19:08.848Z monthly 0.8 @@ -22367,7 +22556,7 @@ https://www.rfc1437.de/2009/10/29/unity-game-development-tool/ - 2026-03-03T13:19:11.000Z + 2026-03-03T13:19:11.737Z monthly 0.8 @@ -22376,7 +22565,7 @@ https://www.rfc1437.de/2009/10/27/scientists-discover-gene-that-cancer-proofs/ - 2026-03-03T13:19:15.000Z + 2026-03-03T13:19:15.487Z monthly 0.8 @@ -22385,7 +22574,7 @@ https://www.rfc1437.de/2009/10/26/python-dev-reworking-the-gil/ - 2026-03-03T13:19:19.000Z + 2026-03-03T13:19:19.185Z monthly 0.8 @@ -22394,7 +22583,7 @@ https://www.rfc1437.de/2009/10/26/zfs-discuss-apple-cans-zfs-project/ - 2026-03-03T13:19:22.000Z + 2026-03-03T13:19:22.582Z monthly 0.8 @@ -22403,7 +22592,7 @@ https://www.rfc1437.de/2009/10/25/exploring-the-mandelbrot-set-with-your-gpu/ - 2026-03-03T13:19:25.000Z + 2026-03-03T13:19:25.977Z monthly 0.8 @@ -22412,7 +22601,7 @@ https://www.rfc1437.de/2009/10/25/the-self-handbook/ - 2026-03-03T13:19:29.000Z + 2026-03-03T13:19:29.420Z monthly 0.8 @@ -22421,7 +22610,7 @@ https://www.rfc1437.de/2009/10/24/klaus-staeck-ueber-die-gefahr-der-blogorrhoe/ - 2026-03-03T13:19:34.000Z + 2026-03-03T13:19:34.244Z monthly 0.8 @@ -22430,7 +22619,7 @@ https://www.rfc1437.de/2009/10/23/bamboo-language/ - 2026-03-03T13:19:38.000Z + 2026-03-03T13:19:38.175Z monthly 0.8 @@ -22439,7 +22628,7 @@ https://www.rfc1437.de/2009/10/23/delicioussafari/ - 2026-03-03T13:19:41.000Z + 2026-03-03T13:19:41.713Z monthly 0.8 @@ -22448,7 +22637,7 @@ https://www.rfc1437.de/2009/10/23/enterprise-scala-actors-introducing-the-akka/ - 2026-03-03T13:19:45.000Z + 2026-03-03T13:19:45.711Z monthly 0.8 @@ -22457,7 +22646,7 @@ https://www.rfc1437.de/2009/10/23/mozilla-labs-raindrop/ - 2026-03-03T13:19:49.000Z + 2026-03-03T13:19:49.291Z monthly 0.8 @@ -22466,7 +22655,7 @@ https://www.rfc1437.de/2009/10/23/pier/ - 2026-03-03T13:19:53.000Z + 2026-03-03T13:19:53.514Z monthly 0.8 @@ -22475,7 +22664,7 @@ https://www.rfc1437.de/2009/10/23/snow-project/ - 2026-03-03T13:19:57.000Z + 2026-03-03T13:19:57.136Z monthly 0.8 @@ -22484,7 +22673,7 @@ https://www.rfc1437.de/2009/10/23/xmlisp/ - 2026-03-03T13:20:01.000Z + 2026-03-03T13:20:01.228Z monthly 0.8 @@ -22493,7 +22682,7 @@ https://www.rfc1437.de/2009/10/22/mcl/ - 2026-03-03T13:20:05.000Z + 2026-03-03T13:20:05.778Z monthly 0.8 @@ -22502,7 +22691,7 @@ https://www.rfc1437.de/2009/10/21/panasonic-leica-45mm-f2-8-macro-ois-lens-review/ - 2026-03-03T13:20:09.000Z + 2026-03-03T13:20:09.857Z monthly 0.8 @@ -22511,7 +22700,7 @@ https://www.rfc1437.de/2009/10/19/machinarium/ - 2026-03-03T13:20:13.000Z + 2026-03-03T13:20:13.059Z monthly 0.8 @@ -22520,7 +22709,7 @@ https://www.rfc1437.de/2009/10/18/die-wikipedia-ist-irrelevant/ - 2026-03-03T13:20:16.000Z + 2026-03-03T13:20:16.684Z monthly 0.8 @@ -22529,7 +22718,7 @@ https://www.rfc1437.de/2009/10/17/rosado-s-clj-processing/ - 2026-03-03T13:20:20.000Z + 2026-03-03T13:20:20.790Z monthly 0.8 @@ -22538,7 +22727,7 @@ https://www.rfc1437.de/2009/10/17/scalacl-reap-opencl-s-benefits-without-learning/ - 2026-03-03T13:20:24.000Z + 2026-03-03T13:20:24.872Z monthly 0.8 @@ -22547,7 +22736,7 @@ https://www.rfc1437.de/2009/10/17/spde/ - 2026-03-03T13:20:28.000Z + 2026-03-03T13:20:28.470Z monthly 0.8 @@ -22556,7 +22745,7 @@ https://www.rfc1437.de/2009/10/15/macwidgets/ - 2026-03-03T13:20:32.000Z + 2026-03-03T13:20:32.570Z monthly 0.8 @@ -22565,7 +22754,7 @@ https://www.rfc1437.de/2009/10/15/rlwrap/ - 2026-03-03T13:20:36.000Z + 2026-03-03T13:20:36.683Z monthly 0.8 @@ -22574,7 +22763,7 @@ https://www.rfc1437.de/2009/10/14/leben-mit-chancenlosen-wallraffs-neuer-undercover/ - 2026-03-03T13:20:41.000Z + 2026-03-03T13:20:41.235Z monthly 0.8 @@ -22583,7 +22772,7 @@ https://www.rfc1437.de/2009/10/14/toolmantim-s-bananajour/ - 2026-03-03T13:20:45.000Z + 2026-03-03T13:20:45.289Z monthly 0.8 @@ -22592,7 +22781,7 @@ https://www.rfc1437.de/2009/10/14/uebernahme-des-spd-vorsitzes-war-fehler/ - 2026-03-03T13:20:50.000Z + 2026-03-03T13:20:50.280Z monthly 0.8 @@ -22601,7 +22790,7 @@ https://www.rfc1437.de/2009/10/13/eine-spinne-die-kein-fleisch-mag/ - 2026-03-03T13:20:53.000Z + 2026-03-03T13:20:53.872Z monthly 0.8 @@ -22610,7 +22799,7 @@ https://www.rfc1437.de/2009/10/13/let-it-crash-the-right-way/ - 2026-03-03T13:20:57.000Z + 2026-03-03T13:20:57.955Z monthly 0.8 @@ -22619,7 +22808,7 @@ https://www.rfc1437.de/2009/10/13/niederlaendische-dsb-bank-pleite/ - 2026-03-03T13:21:02.000Z + 2026-03-03T13:21:02.229Z monthly 0.8 @@ -22628,7 +22817,7 @@ https://www.rfc1437.de/2009/10/13/tom-waits-free-glitter-and-doom-live-album-preview/ - 2026-03-03T13:21:06.000Z + 2026-03-03T13:21:06.311Z monthly 0.8 @@ -22637,7 +22826,7 @@ https://www.rfc1437.de/2009/10/13/using-erlang-to-build-reliable-fault-tolerant/ - 2026-03-03T13:21:10.000Z + 2026-03-03T13:21:10.293Z monthly 0.8 @@ -22646,7 +22835,7 @@ https://www.rfc1437.de/2009/10/12/cloud-data-blown-away-for-sidekick-users/ - 2026-03-03T13:21:14.000Z + 2026-03-03T13:21:14.275Z monthly 0.8 @@ -22655,7 +22844,7 @@ https://www.rfc1437.de/2009/10/12/jad-java-decompiler-download-mirror/ - 2026-03-03T13:21:17.000Z + 2026-03-03T13:21:17.730Z monthly 0.8 @@ -22664,7 +22853,7 @@ https://www.rfc1437.de/2009/10/12/major-bug-in-snow-leopard-deletes-all-user-data/ - 2026-03-03T13:21:21.000Z + 2026-03-03T13:21:21.698Z monthly 0.8 @@ -22673,7 +22862,7 @@ https://www.rfc1437.de/2009/10/11/claude-monets-meisterwerke-in-wuppertal/ - 2026-03-03T13:21:25.000Z + 2026-03-03T13:21:25.611Z monthly 0.8 @@ -22682,7 +22871,7 @@ https://www.rfc1437.de/2009/10/11/useless-factor-bitfields-in-factor-structs-and/ - 2026-03-03T13:21:30.000Z + 2026-03-03T13:21:30.014Z monthly 0.8 @@ -22691,7 +22880,7 @@ https://www.rfc1437.de/2009/10/10/wizbang/ - 2026-03-03T13:21:33.000Z + 2026-03-03T13:21:33.926Z monthly 0.8 @@ -22700,7 +22889,7 @@ https://www.rfc1437.de/2009/10/09/friedensnobelpreis-fuer-barack-obama/ - 2026-03-03T13:21:37.000Z + 2026-03-03T13:21:37.499Z monthly 0.8 @@ -22709,7 +22898,7 @@ https://www.rfc1437.de/2009/10/09/simpler-long-polling-with-django-and-gevent/ - 2026-03-03T13:21:40.000Z + 2026-03-03T13:21:40.982Z monthly 0.8 @@ -22718,7 +22907,7 @@ https://www.rfc1437.de/2009/10/09/staedteranking-muenchen-vorn-rote-laterne-fuer/ - 2026-03-03T13:21:44.000Z + 2026-03-03T13:21:44.508Z monthly 0.8 @@ -22727,7 +22916,7 @@ https://www.rfc1437.de/2009/10/09/thawte-widerruft-persoenliche-e-mail-zertifikate/ - 2026-03-03T13:21:49.000Z + 2026-03-03T13:21:49.311Z monthly 0.8 @@ -22736,7 +22925,7 @@ https://www.rfc1437.de/2009/10/08/macruby-macruby-0-5-beta-1/ - 2026-03-03T13:21:53.000Z + 2026-03-03T13:21:53.272Z monthly 0.8 @@ -22745,7 +22934,7 @@ https://www.rfc1437.de/2009/10/07/amazon-goes-global-with-new-kindle/ - 2026-03-03T13:21:57.000Z + 2026-03-03T13:21:57.186Z monthly 0.8 @@ -22754,7 +22943,7 @@ https://www.rfc1437.de/2009/10/07/finding-similar-items-with-amazon-elastic/ - 2026-03-03T13:22:00.000Z + 2026-03-03T13:22:00.676Z monthly 0.8 @@ -22763,7 +22952,7 @@ https://www.rfc1437.de/2009/10/07/i-like-unicorn-because-it-s-unix/ - 2026-03-03T13:22:04.000Z + 2026-03-03T13:22:04.614Z monthly 0.8 @@ -22772,7 +22961,7 @@ https://www.rfc1437.de/2009/10/07/lets-have-a-smoke/ - 2026-03-07T21:07:45.000Z + 2026-03-07T21:07:45.774Z monthly 0.8 @@ -22781,7 +22970,7 @@ https://www.rfc1437.de/2009/10/07/muensterland-giro/ - 2026-03-03T13:22:12.000Z + 2026-03-03T13:22:12.882Z monthly 0.8 @@ -22790,7 +22979,7 @@ https://www.rfc1437.de/2009/10/07/shedskin/ - 2026-03-03T13:22:16.000Z + 2026-03-03T13:22:16.384Z monthly 0.8 @@ -22799,7 +22988,7 @@ https://www.rfc1437.de/2009/10/06/abmahnanwaeltin-guenther-wegen-beihilfe-zum/ - 2026-03-03T13:22:20.000Z + 2026-03-03T13:22:20.647Z monthly 0.8 @@ -22808,7 +22997,7 @@ https://www.rfc1437.de/2009/10/05/ec2-and-ubuntu-alestic-com/ - 2026-03-03T13:22:24.000Z + 2026-03-03T13:22:24.676Z monthly 0.8 @@ -22817,7 +23006,7 @@ https://www.rfc1437.de/2009/10/04/clamato-a-smalltalk-dialect-for-javascript/ - 2026-03-03T13:22:28.000Z + 2026-03-03T13:22:28.719Z monthly 0.8 @@ -22826,7 +23015,7 @@ https://www.rfc1437.de/2009/10/04/dynamic-web-development-with-seaside/ - 2026-03-03T13:22:33.000Z + 2026-03-03T13:22:33.149Z monthly 0.8 @@ -22835,7 +23024,7 @@ https://www.rfc1437.de/2009/10/04/gnu-smalltalk/ - 2026-03-03T13:22:38.000Z + 2026-03-03T13:22:38.222Z monthly 0.8 @@ -22844,7 +23033,7 @@ https://www.rfc1437.de/2009/10/04/winclone/ - 2026-03-03T13:22:42.000Z + 2026-03-03T13:22:42.143Z monthly 0.8 @@ -22853,7 +23042,7 @@ https://www.rfc1437.de/2009/10/03/roman-polanski/ - 2026-03-03T13:22:47.000Z + 2026-03-03T13:22:47.099Z monthly 0.8 @@ -22862,7 +23051,7 @@ https://www.rfc1437.de/2009/10/02/chicago-boss-the-no-nonsense-mvc-framework-for/ - 2026-03-03T13:22:51.000Z + 2026-03-03T13:22:51.098Z monthly 0.8 @@ -22871,7 +23060,7 @@ https://www.rfc1437.de/2009/10/01/log-structured-file-systems-there-s-one-in-every/ - 2026-03-03T13:22:55.000Z + 2026-03-03T13:22:55.557Z monthly 0.8 @@ -22880,7 +23069,7 @@ https://www.rfc1437.de/2009/10/01/my-final-ricoh-gr-digital-iii-impressions/ - 2026-03-03T13:23:01.000Z + 2026-03-03T13:23:01.023Z monthly 0.8 @@ -22889,7 +23078,7 @@ https://www.rfc1437.de/2009/09/30/gabriel-soll-spd-parteichef-werden/ - 2026-03-03T13:23:06.000Z + 2026-03-03T13:23:06.025Z monthly 0.8 @@ -22898,7 +23087,7 @@ https://www.rfc1437.de/2009/09/30/groklaw-on-mono-miguel-stallman-and-fusion-with/ - 2026-03-07T21:07:46.000Z + 2026-03-07T21:07:46.772Z monthly 0.8 @@ -22907,7 +23096,7 @@ https://www.rfc1437.de/2009/09/30/pick-up-a-penguin/ - 2026-03-07T21:07:47.000Z + 2026-03-07T21:07:47.979Z monthly 0.8 @@ -22916,7 +23105,7 @@ https://www.rfc1437.de/2009/09/30/plumber-jack-python-logging-101/ - 2026-03-03T13:23:18.000Z + 2026-03-03T13:23:18.664Z monthly 0.8 @@ -22925,7 +23114,7 @@ https://www.rfc1437.de/2009/09/30/sebastien-s-sink/ - 2026-03-03T13:23:22.000Z + 2026-03-03T13:23:22.975Z monthly 0.8 @@ -22934,7 +23123,7 @@ https://www.rfc1437.de/2009/09/29/dropbox-iphone-app-ist-raus/ - 2026-03-03T13:23:27.000Z + 2026-03-03T13:23:27.031Z monthly 0.8 @@ -22943,7 +23132,7 @@ https://www.rfc1437.de/2009/09/29/insect-sushi-creepy-crawly-cuisine/ - 2026-03-07T21:07:51.000Z + 2026-03-07T21:07:51.217Z monthly 0.8 @@ -22952,7 +23141,7 @@ https://www.rfc1437.de/2009/09/29/jquery-tools-the-missing-ui-library-for-the-web/ - 2026-03-03T13:23:35.000Z + 2026-03-03T13:23:35.772Z monthly 0.8 @@ -22961,7 +23150,7 @@ https://www.rfc1437.de/2009/09/28/lsyncd/ - 2026-03-03T13:23:39.000Z + 2026-03-03T13:23:39.937Z monthly 0.8 @@ -22970,7 +23159,7 @@ https://www.rfc1437.de/2009/09/28/swarm-concurrency-with-scala-continuations/ - 2026-03-03T13:23:44.000Z + 2026-03-03T13:23:44.994Z monthly 0.8 @@ -22979,7 +23168,7 @@ https://www.rfc1437.de/2009/09/28/webber/ - 2026-03-03T13:23:48.000Z + 2026-03-03T13:23:48.976Z monthly 0.8 @@ -22988,7 +23177,7 @@ https://www.rfc1437.de/2009/09/28/welcome-to-tahoe-lafs/ - 2026-03-03T13:23:53.000Z + 2026-03-03T13:23:53.021Z monthly 0.8 @@ -22997,7 +23186,7 @@ https://www.rfc1437.de/2009/09/27/die-zwillinge-und-die-blechgang/ - 2026-03-03T13:23:57.000Z + 2026-03-03T13:23:57.175Z monthly 0.8 @@ -23006,7 +23195,7 @@ https://www.rfc1437.de/2009/09/26/das-utopia-timor-faltrad-klapprad/ - 2026-03-03T13:24:01.000Z + 2026-03-03T13:24:01.698Z monthly 0.8 @@ -23015,7 +23204,7 @@ https://www.rfc1437.de/2009/09/26/die-dahon-m-faltraeder-20-zoll-dahon-m-xl-licht-m/ - 2026-03-03T13:24:07.000Z + 2026-03-03T13:24:07.361Z monthly 0.8 @@ -23024,7 +23213,7 @@ https://www.rfc1437.de/2009/09/26/official-google-blog-picasa-3-5-now-with-name/ - 2026-03-03T13:24:13.000Z + 2026-03-03T13:24:13.003Z monthly 0.8 @@ -23033,7 +23222,7 @@ https://www.rfc1437.de/2009/09/26/panasonic-lumix-g-20mm-f1-7-asph-lens-review/ - 2026-03-03T13:24:17.000Z + 2026-03-03T13:24:17.604Z monthly 0.8 @@ -23042,7 +23231,7 @@ https://www.rfc1437.de/2009/09/25/photic-sneeze-reflex/ - 2026-03-03T13:24:21.000Z + 2026-03-03T13:24:21.614Z monthly 0.8 @@ -23051,7 +23240,7 @@ https://www.rfc1437.de/2009/09/25/this-rocketship-will-crash/ - 2026-03-03T13:24:25.000Z + 2026-03-03T13:24:25.668Z monthly 0.8 @@ -23060,7 +23249,7 @@ https://www.rfc1437.de/2009/09/25/weird-new-ghostshark-found-male-has-sex-organ-on/ - 2026-03-03T13:24:30.000Z + 2026-03-03T13:24:30.231Z monthly 0.8 @@ -23069,7 +23258,7 @@ https://www.rfc1437.de/2009/09/24/cair-content-aware-image-resizer/ - 2026-03-03T13:24:34.000Z + 2026-03-03T13:24:34.316Z monthly 0.8 @@ -23078,7 +23267,7 @@ https://www.rfc1437.de/2009/09/23/diesel-how-python-does-comet/ - 2026-03-03T13:24:38.000Z + 2026-03-03T13:24:38.360Z monthly 0.8 @@ -23087,7 +23276,7 @@ https://www.rfc1437.de/2009/09/23/umweltbundesamt-warnt-vor-rfid-tags-im-muell/ - 2026-03-03T13:24:43.000Z + 2026-03-03T13:24:43.538Z monthly 0.8 @@ -23096,7 +23285,7 @@ https://www.rfc1437.de/2009/09/21/neat-graphics-with-scala-processin/ - 2026-03-03T13:24:47.000Z + 2026-03-03T13:24:47.571Z monthly 0.8 @@ -23105,7 +23294,7 @@ https://www.rfc1437.de/2009/09/20/google-releases-a-nuke-apple-won-t-win-this-fight/ - 2026-03-03T13:24:53.000Z + 2026-03-03T13:24:53.271Z monthly 0.8 @@ -23114,7 +23303,7 @@ https://www.rfc1437.de/2009/09/20/lionet-erlang-yaws-and-the-deadly-tornado/ - 2026-03-03T13:24:58.000Z + 2026-03-03T13:24:58.497Z monthly 0.8 @@ -23123,7 +23312,7 @@ https://www.rfc1437.de/2009/09/19/georg-bauer-auf-facebook/ - 2026-03-03T13:25:03.000Z + 2026-03-03T13:25:03.621Z monthly 0.8 @@ -23132,7 +23321,7 @@ https://www.rfc1437.de/2009/09/19/online-latein-woerterbuch/ - 2026-03-03T13:25:07.000Z + 2026-03-03T13:25:07.306Z monthly 0.8 @@ -23141,7 +23330,7 @@ https://www.rfc1437.de/2009/09/18/coryell-auger-sample-trio/ - 2026-03-03T13:25:11.000Z + 2026-03-03T13:25:11.578Z monthly 0.8 @@ -23150,7 +23339,7 @@ https://www.rfc1437.de/2009/09/18/pubsubhubbub-is-a-lot-easier-than-it-sounds/ - 2026-03-03T13:25:16.000Z + 2026-03-03T13:25:16.705Z monthly 0.8 @@ -23159,7 +23348,7 @@ https://www.rfc1437.de/2009/09/18/the-most-useful-rope-knots-for-the-average-person/ - 2026-03-03T13:25:20.000Z + 2026-03-03T13:25:20.936Z monthly 0.8 @@ -23168,7 +23357,7 @@ https://www.rfc1437.de/2009/09/16/kein-tethering-fuer-iphone-kunden-mit-vertraegen/ - 2026-03-03T13:25:26.000Z + 2026-03-03T13:25:26.516Z monthly 0.8 @@ -23177,7 +23366,7 @@ https://www.rfc1437.de/2009/09/13/kuendigung-bei-abgeordnetenwatch-de-wegen-npd/ - 2026-03-03T13:25:32.000Z + 2026-03-03T13:25:32.162Z monthly 0.8 @@ -23186,7 +23375,7 @@ https://www.rfc1437.de/2009/09/11/libdispatch/ - 2026-03-03T13:25:36.000Z + 2026-03-03T13:25:36.353Z monthly 0.8 @@ -23195,7 +23384,7 @@ https://www.rfc1437.de/2009/09/11/tornado-facebook-s-real-time-web-framework-for/ - 2026-03-03T13:25:40.000Z + 2026-03-03T13:25:40.985Z monthly 0.8 @@ -23204,7 +23393,7 @@ https://www.rfc1437.de/2009/09/10/hurtigruten-2009-mit-der-ms-lofoten-noch-einmal/ - 2026-03-03T13:25:45.000Z + 2026-03-03T13:25:45.624Z monthly 0.8 @@ -23213,7 +23402,7 @@ https://www.rfc1437.de/2009/09/09/atomkraft-beweise-fuer-manipulation-in-sachen/ - 2026-03-03T13:25:50.000Z + 2026-03-03T13:25:50.610Z monthly 0.8 @@ -23222,7 +23411,7 @@ https://www.rfc1437.de/2009/09/09/automotoren-sollen-als-zuhausekraftwerk-dienen/ - 2026-03-03T13:25:54.000Z + 2026-03-03T13:25:54.662Z monthly 0.8 @@ -23231,7 +23420,7 @@ https://www.rfc1437.de/2009/09/09/billy-s-band-icm/ - 2026-03-03T13:25:58.000Z + 2026-03-03T13:25:58.258Z monthly 0.8 @@ -23240,7 +23429,7 @@ https://www.rfc1437.de/2009/09/09/hurtigruten-2009-mit-der-ms-lofoten/ - 2026-03-03T13:26:03.000Z + 2026-03-03T13:26:03.261Z monthly 0.8 @@ -23249,7 +23438,7 @@ https://www.rfc1437.de/2009/09/09/leica-m9-hands-on-preview-1-introduction-digital/ - 2026-03-03T13:26:08.000Z + 2026-03-03T13:26:08.238Z monthly 0.8 @@ -23258,7 +23447,7 @@ https://www.rfc1437.de/2009/09/09/leica-x1-and-brief-hands-on/ - 2026-03-03T13:26:13.000Z + 2026-03-03T13:26:13.251Z monthly 0.8 @@ -23267,7 +23456,7 @@ https://www.rfc1437.de/2009/09/09/pressflow-makes-drupal-scale/ - 2026-03-03T13:26:17.000Z + 2026-03-03T13:26:17.713Z monthly 0.8 @@ -23276,7 +23465,7 @@ https://www.rfc1437.de/2009/09/09/varnish-2/ - 2026-03-03T13:26:22.000Z + 2026-03-03T13:26:22.153Z monthly 0.8 @@ -23285,7 +23474,7 @@ https://www.rfc1437.de/2009/09/07/mythryl/ - 2026-03-03T13:26:25.000Z + 2026-03-03T13:26:25.225Z monthly 0.8 @@ -23294,7 +23483,7 @@ https://www.rfc1437.de/2009/09/06/foldy-bicycling-com/ - 2026-03-03T13:26:29.000Z + 2026-03-03T13:26:29.227Z monthly 0.8 @@ -23303,7 +23492,7 @@ https://www.rfc1437.de/2009/09/06/leaked-leica-m9/ - 2026-03-03T13:26:34.000Z + 2026-03-03T13:26:34.160Z monthly 0.8 @@ -23312,7 +23501,7 @@ https://www.rfc1437.de/2009/09/04/google-app-engine-blog-app-engine-sdk-1-2-5/ - 2026-03-03T13:26:38.000Z + 2026-03-03T13:26:38.742Z monthly 0.8 @@ -23321,7 +23510,7 @@ https://www.rfc1437.de/2009/09/04/phone-amego-help/ - 2026-03-03T13:26:43.000Z + 2026-03-03T13:26:43.381Z monthly 0.8 @@ -23330,7 +23519,7 @@ https://www.rfc1437.de/2009/09/04/post-streicht-560-stellen-wegen-arcandor-insolvenz/ - 2026-03-03T13:26:48.000Z + 2026-03-03T13:26:48.325Z monthly 0.8 @@ -23339,7 +23528,7 @@ https://www.rfc1437.de/2009/09/02/booting-windows-xp-from-an-external-drive/ - 2026-03-03T13:26:52.000Z + 2026-03-03T13:26:52.828Z monthly 0.8 @@ -23348,7 +23537,7 @@ https://www.rfc1437.de/2009/09/02/panasonic-dmc-gf1-hands-on-preview/ - 2026-03-03T13:26:57.000Z + 2026-03-03T13:26:57.336Z monthly 0.8 @@ -23357,7 +23546,7 @@ https://www.rfc1437.de/2009/09/02/panasonic-leica-45mm-f2-8-macro-lens-with-ois/ - 2026-03-03T13:27:01.000Z + 2026-03-03T13:27:01.792Z monthly 0.8 @@ -23366,7 +23555,7 @@ https://www.rfc1437.de/2009/09/02/panasonic-unveils-dmc-gf1-micro-four-thirds-camera/ - 2026-03-03T13:27:06.000Z + 2026-03-03T13:27:06.241Z monthly 0.8 @@ -23375,7 +23564,7 @@ https://www.rfc1437.de/2009/09/02/set-newer-portable-macs-sleep-mode/ - 2026-03-03T13:27:10.000Z + 2026-03-03T13:27:10.742Z monthly 0.8 @@ -23384,7 +23573,7 @@ https://www.rfc1437.de/2009/09/02/the-dropbox-blog-iphone-sneak-peek/ - 2026-03-03T13:27:15.000Z + 2026-03-03T13:27:15.237Z monthly 0.8 @@ -23393,7 +23582,7 @@ https://www.rfc1437.de/2009/09/01/rfc1437-on-the-road-archive/ - 2026-03-03T13:27:19.000Z + 2026-03-03T13:27:19.291Z monthly 0.8 @@ -23402,7 +23591,7 @@ https://www.rfc1437.de/2009/08/18/ms-lofoten-2/ - 2026-03-03T13:27:23.000Z + 2026-03-03T13:27:23.314Z monthly 0.8 @@ -23411,7 +23600,7 @@ https://www.rfc1437.de/2009/08/14/arctic-sea-vor-kapverdischen-inseln-gesichtet/ - 2026-03-03T13:27:27.000Z + 2026-03-03T13:27:27.008Z monthly 0.8 @@ -23420,7 +23609,7 @@ https://www.rfc1437.de/2009/08/14/django-jython/ - 2026-03-03T13:27:30.000Z + 2026-03-03T13:27:30.507Z monthly 0.8 @@ -23429,7 +23618,7 @@ https://www.rfc1437.de/2009/08/14/python-library-for-google-sets/ - 2026-03-03T13:27:34.000Z + 2026-03-03T13:27:34.417Z monthly 0.8 @@ -23438,7 +23627,7 @@ https://www.rfc1437.de/2009/08/12/apple-bringt-macbook-pro-15-mit-mattem-display/ - 2026-03-03T13:27:37.000Z + 2026-03-03T13:27:37.469Z monthly 0.8 @@ -23447,7 +23636,7 @@ https://www.rfc1437.de/2009/08/10/artangel-seizure/ - 2026-03-03T13:27:40.000Z + 2026-03-03T13:27:40.089Z monthly 0.8 @@ -23456,7 +23645,7 @@ https://www.rfc1437.de/2009/08/10/comparing-mongo-db-and-couch-db/ - 2026-03-03T13:27:42.000Z + 2026-03-03T13:27:42.827Z monthly 0.8 @@ -23465,7 +23654,7 @@ https://www.rfc1437.de/2009/08/10/kanzleramtschef-fordert-verkehrsregeln-im-internet/ - 2026-03-03T13:27:46.000Z + 2026-03-03T13:27:46.864Z monthly 0.8 @@ -23474,7 +23663,7 @@ https://www.rfc1437.de/2009/08/08/braunschweiger-flashmob-wird-zum-politikum/ - 2026-03-03T13:27:51.000Z + 2026-03-03T13:27:51.269Z monthly 0.8 @@ -23483,7 +23672,7 @@ https://www.rfc1437.de/2009/08/08/sunshine/ - 2026-03-03T13:27:54.000Z + 2026-03-03T13:27:54.345Z monthly 0.8 @@ -23492,7 +23681,7 @@ https://www.rfc1437.de/2009/08/08/taz-sagt-leichtathletik-wm-ab/ - 2026-03-03T13:27:57.000Z + 2026-03-03T13:27:57.933Z monthly 0.8 @@ -23501,7 +23690,7 @@ https://www.rfc1437.de/2009/08/08/waz-begruesst-springer-vorstoss-fuer-bezahlcontent/ - 2026-03-03T13:28:01.000Z + 2026-03-03T13:28:01.550Z monthly 0.8 @@ -23510,7 +23699,7 @@ https://www.rfc1437.de/2009/08/08/zypries-web-sperren-koennen-nicht-auf/ - 2026-03-03T13:28:05.000Z + 2026-03-03T13:28:05.653Z monthly 0.8 @@ -23519,7 +23708,7 @@ https://www.rfc1437.de/2009/08/07/panasonic-gf1-is-leaked-new-compact-micro-four/ - 2026-03-03T13:28:09.000Z + 2026-03-03T13:28:09.708Z monthly 0.8 @@ -23528,7 +23717,7 @@ https://www.rfc1437.de/2009/08/06/iphone-dictionary-censored-by-apple/ - 2026-03-03T13:28:14.000Z + 2026-03-03T13:28:14.286Z monthly 0.8 @@ -23537,7 +23726,7 @@ https://www.rfc1437.de/2009/08/05/gitit/ - 2026-03-03T13:28:18.000Z + 2026-03-03T13:28:18.494Z monthly 0.8 @@ -23546,7 +23735,7 @@ https://www.rfc1437.de/2009/08/05/human-dominos/ - 2026-03-03T13:29:05.000Z + 2026-03-03T13:29:05.959Z monthly 0.8 @@ -23555,7 +23744,7 @@ https://www.rfc1437.de/2009/08/05/mongodb/ - 2026-03-03T13:29:08.000Z + 2026-03-03T13:29:08.836Z monthly 0.8 @@ -23564,7 +23753,7 @@ https://www.rfc1437.de/2009/08/05/nosql-if-only-it-was-that-easy/ - 2026-03-03T13:29:11.000Z + 2026-03-03T13:29:11.924Z monthly 0.8 @@ -23573,7 +23762,7 @@ https://www.rfc1437.de/2009/08/05/pawelpacana-mercurialbackend-configuration/ - 2026-03-03T13:29:15.000Z + 2026-03-03T13:29:15.290Z monthly 0.8 @@ -23582,7 +23771,7 @@ https://www.rfc1437.de/2009/08/05/up-and-running-with-cassandra/ - 2026-03-03T13:29:18.000Z + 2026-03-03T13:29:18.389Z monthly 0.8 @@ -23591,7 +23780,7 @@ https://www.rfc1437.de/2009/08/03/adc-developing-cocoa-applications-using-macruby/ - 2026-03-03T13:29:21.000Z + 2026-03-03T13:29:21.076Z monthly 0.8 @@ -23600,7 +23789,7 @@ https://www.rfc1437.de/2009/08/03/frank-buchwald-maschinenleuchten/ - 2026-03-03T13:29:23.000Z + 2026-03-03T13:29:23.770Z monthly 0.8 @@ -23609,7 +23798,7 @@ https://www.rfc1437.de/2009/08/03/human-powered-monorail-racetrack/ - 2026-03-07T21:07:54.000Z + 2026-03-07T21:07:54.681Z monthly 0.8 @@ -23618,7 +23807,7 @@ https://www.rfc1437.de/2009/08/03/macruby-home/ - 2026-03-03T13:29:29.000Z + 2026-03-03T13:29:29.206Z monthly 0.8 @@ -23627,7 +23816,7 @@ https://www.rfc1437.de/2009/08/02/von-der-leyen-will-gegen-rechte-inhalte-im-netz/ - 2026-03-03T13:29:32.000Z + 2026-03-03T13:29:32.944Z monthly 0.8 @@ -23636,7 +23825,7 @@ https://www.rfc1437.de/2009/08/01/meister-der-fotografie/ - 2026-03-03T13:29:36.000Z + 2026-03-03T13:29:36.151Z monthly 0.8 @@ -23645,7 +23834,7 @@ https://www.rfc1437.de/2009/07/31/wps-postscript-for-the-web/ - 2026-03-07T21:07:57.000Z + 2026-03-07T21:07:57.339Z monthly 0.8 @@ -23654,7 +23843,7 @@ https://www.rfc1437.de/2009/07/29/discworld-cake/ - 2026-03-07T21:08:00.000Z + 2026-03-07T21:08:00.011Z monthly 0.8 @@ -23663,7 +23852,7 @@ https://www.rfc1437.de/2009/07/29/flickr-boy-obsolete-s-photostream/ - 2026-03-03T13:29:43.000Z + 2026-03-03T13:29:43.732Z monthly 0.8 @@ -23672,7 +23861,7 @@ https://www.rfc1437.de/2009/07/29/there-s-no-app-for-that-riverturn-blog-and-talk/ - 2026-03-03T13:29:47.000Z + 2026-03-03T13:29:47.087Z monthly 0.8 @@ -23681,7 +23870,7 @@ https://www.rfc1437.de/2009/07/27/fabricate/ - 2026-03-03T13:29:49.000Z + 2026-03-03T13:29:49.732Z monthly 0.8 @@ -23690,7 +23879,7 @@ https://www.rfc1437.de/2009/07/27/ricoh-gr-digital-iii-announced/ - 2026-03-03T13:29:53.000Z + 2026-03-03T13:29:53.111Z monthly 0.8 @@ -23699,7 +23888,7 @@ https://www.rfc1437.de/2009/07/27/welcome-to-self-self-the-power-of-simplicity/ - 2026-03-03T13:29:56.000Z + 2026-03-03T13:29:56.521Z monthly 0.8 @@ -23708,7 +23897,7 @@ https://www.rfc1437.de/2009/07/23/olympus-e-p1-hands-on-impressions/ - 2026-03-03T13:30:00.000Z + 2026-03-03T13:30:00.289Z monthly 0.8 @@ -23717,7 +23906,7 @@ https://www.rfc1437.de/2009/07/23/rubyfrontier-documentation/ - 2026-03-03T13:30:03.000Z + 2026-03-03T13:30:03.029Z monthly 0.8 @@ -23726,7 +23915,7 @@ https://www.rfc1437.de/2009/07/23/the-online-photographer-olympus-e-p1-pen-review/ - 2026-03-03T13:30:06.000Z + 2026-03-03T13:30:06.463Z monthly 0.8 @@ -23735,7 +23924,7 @@ https://www.rfc1437.de/2009/07/21/wxmaxima-2/ - 2026-03-03T13:30:09.000Z + 2026-03-03T13:30:09.183Z monthly 0.8 @@ -23744,7 +23933,7 @@ https://www.rfc1437.de/2009/07/20/cas-jasig-community/ - 2026-03-03T13:30:12.000Z + 2026-03-03T13:30:12.020Z monthly 0.8 @@ -23753,7 +23942,7 @@ https://www.rfc1437.de/2009/07/20/franke-heidecke-to-close/ - 2026-03-03T13:30:15.000Z + 2026-03-03T13:30:15.139Z monthly 0.8 @@ -23762,7 +23951,7 @@ https://www.rfc1437.de/2009/07/20/pam-python-write-pam-modules-in-python/ - 2026-03-03T13:30:18.000Z + 2026-03-03T13:30:18.065Z monthly 0.8 @@ -23771,7 +23960,7 @@ https://www.rfc1437.de/2009/07/20/python-pam/ - 2026-03-03T13:30:20.000Z + 2026-03-03T13:30:20.611Z monthly 0.8 @@ -23780,7 +23969,7 @@ https://www.rfc1437.de/2009/07/20/sso-frei-haus/ - 2026-03-03T13:30:23.000Z + 2026-03-03T13:30:23.792Z monthly 0.8 @@ -23789,7 +23978,7 @@ https://www.rfc1437.de/2009/07/20/toolserver-framework-for-python-2/ - 2026-03-03T13:30:26.000Z + 2026-03-03T13:30:26.814Z monthly 0.8 @@ -23798,7 +23987,7 @@ https://www.rfc1437.de/2009/07/19/amazon-loescht-gekaufte-kindle-ebooks/ - 2026-03-03T13:30:30.000Z + 2026-03-03T13:30:30.826Z monthly 0.8 @@ -23807,7 +23996,7 @@ https://www.rfc1437.de/2009/07/19/c-y-adapter-fuer-4-3/ - 2026-03-03T13:30:35.000Z + 2026-03-03T13:30:35.276Z monthly 0.8 @@ -23816,7 +24005,7 @@ https://www.rfc1437.de/2009/07/19/lumix-digitalkameras-g-micro-system-h-f007014/ - 2026-03-03T13:30:39.000Z + 2026-03-03T13:30:39.798Z monthly 0.8 @@ -23825,7 +24014,7 @@ https://www.rfc1437.de/2009/07/19/zubehoer-digitalkameras-sonstiges-dmw-ma2m/ - 2026-03-03T13:30:44.000Z + 2026-03-03T13:30:44.793Z monthly 0.8 @@ -23834,7 +24023,7 @@ https://www.rfc1437.de/2009/07/17/one-bug-to-rule-them-all/ - 2026-03-03T13:30:48.000Z + 2026-03-03T13:30:48.254Z monthly 0.8 @@ -23843,7 +24032,7 @@ https://www.rfc1437.de/2009/07/17/pypy-dev-ann-psyco-v2/ - 2026-03-03T13:30:51.000Z + 2026-03-03T13:30:51.795Z monthly 0.8 @@ -23852,7 +24041,7 @@ https://www.rfc1437.de/2009/07/17/tablet-netbook-von-asus-fuer-450-euro/ - 2026-03-03T13:30:55.000Z + 2026-03-03T13:30:55.829Z monthly 0.8 @@ -23861,7 +24050,7 @@ https://www.rfc1437.de/2009/07/13/django-queue-service/ - 2026-03-03T13:30:59.000Z + 2026-03-03T13:30:59.542Z monthly 0.8 @@ -23870,7 +24059,7 @@ https://www.rfc1437.de/2009/07/13/gitx/ - 2026-03-03T13:31:03.000Z + 2026-03-03T13:31:03.218Z monthly 0.8 @@ -23879,7 +24068,7 @@ https://www.rfc1437.de/2009/07/10/google-veroeffentlicht-freien-nx-server/ - 2026-03-03T13:31:07.000Z + 2026-03-03T13:31:07.029Z monthly 0.8 @@ -23888,7 +24077,7 @@ https://www.rfc1437.de/2009/07/10/jquery-visualize-plugin-accessible-charts-graphs/ - 2026-03-07T21:08:03.000Z + 2026-03-07T21:08:03.104Z monthly 0.8 @@ -23897,7 +24086,7 @@ https://www.rfc1437.de/2009/07/10/metapython-documentation/ - 2026-03-03T13:31:14.000Z + 2026-03-03T13:31:14.580Z monthly 0.8 @@ -23906,7 +24095,7 @@ https://www.rfc1437.de/2009/07/10/pudb-0-92-2/ - 2026-03-03T13:31:18.000Z + 2026-03-03T13:31:18.458Z monthly 0.8 @@ -23915,7 +24104,7 @@ https://www.rfc1437.de/2009/07/10/robey-s-kestrel-at-master/ - 2026-03-03T13:31:22.000Z + 2026-03-03T13:31:22.866Z monthly 0.8 @@ -23924,7 +24113,7 @@ https://www.rfc1437.de/2009/07/10/simple-build-tool/ - 2026-03-03T13:31:27.000Z + 2026-03-03T13:31:27.314Z monthly 0.8 @@ -23933,7 +24122,7 @@ https://www.rfc1437.de/2009/07/10/summon-visualization-prototyping-and-scripting/ - 2026-03-03T13:31:31.000Z + 2026-03-03T13:31:31.132Z monthly 0.8 @@ -23942,7 +24131,7 @@ https://www.rfc1437.de/2009/07/10/urteil-dsl-sharing-per-wlan-verstoesst-gegen/ - 2026-03-03T13:31:35.000Z + 2026-03-03T13:31:35.657Z monthly 0.8 @@ -23951,7 +24140,7 @@ https://www.rfc1437.de/2009/07/09/ms-lofoten/ - 2026-03-03T13:31:39.000Z + 2026-03-03T13:31:39.541Z monthly 0.8 @@ -23960,7 +24149,7 @@ https://www.rfc1437.de/2009/07/07/koffein-macht-alzheimer-rueckgaengig/ - 2026-03-03T13:31:43.000Z + 2026-03-03T13:31:43.373Z monthly 0.8 @@ -23969,7 +24158,7 @@ https://www.rfc1437.de/2009/07/06/dead-media-beat-compuserve/ - 2026-03-03T13:31:47.000Z + 2026-03-03T13:31:47.225Z monthly 0.8 @@ -23978,7 +24167,7 @@ https://www.rfc1437.de/2009/07/06/dev-thoughts-scala-program-like-you-mean-it/ - 2026-03-03T13:31:51.000Z + 2026-03-03T13:31:51.046Z monthly 0.8 @@ -23987,7 +24176,7 @@ https://www.rfc1437.de/2009/07/06/dispatch-guide/ - 2026-03-03T13:31:54.000Z + 2026-03-03T13:31:54.372Z monthly 0.8 @@ -23996,7 +24185,7 @@ https://www.rfc1437.de/2009/07/03/in-eigener-sache-stromausfall-im-rechenzentrum/ - 2026-03-03T13:31:58.000Z + 2026-03-03T13:31:58.746Z monthly 0.8 @@ -24005,7 +24194,7 @@ https://www.rfc1437.de/2009/07/03/iphone-to-get-sms-vulnerability-fix/ - 2026-03-07T21:08:05.000Z + 2026-03-07T21:08:05.945Z monthly 0.8 @@ -24014,7 +24203,7 @@ https://www.rfc1437.de/2009/06/29/netbeans-6-7-setzt-fokus-auf-maven-und-kenai/ - 2026-03-03T13:32:07.000Z + 2026-03-03T13:32:07.257Z monthly 0.8 @@ -24023,7 +24212,7 @@ https://www.rfc1437.de/2009/06/26/agile42-how-to-install-agilo-for-scrum/ - 2026-03-03T13:32:11.000Z + 2026-03-03T13:32:11.511Z monthly 0.8 @@ -24032,7 +24221,7 @@ https://www.rfc1437.de/2009/06/26/css-homer-animated/ - 2026-03-03T13:32:15.000Z + 2026-03-03T13:32:15.246Z monthly 0.8 @@ -24041,7 +24230,7 @@ https://www.rfc1437.de/2009/06/26/misty-caverns-on-enceladus-moon/ - 2026-03-03T13:32:18.000Z + 2026-03-03T13:32:18.978Z monthly 0.8 @@ -24050,7 +24239,7 @@ https://www.rfc1437.de/2009/06/26/ocaml-mindstorm/ - 2026-03-03T13:32:22.000Z + 2026-03-03T13:32:22.598Z monthly 0.8 @@ -24059,7 +24248,7 @@ https://www.rfc1437.de/2009/06/26/olympus-e-p1-london-launch-hands-on/ - 2026-03-03T13:32:26.000Z + 2026-03-03T13:32:26.736Z monthly 0.8 @@ -24068,7 +24257,7 @@ https://www.rfc1437.de/2009/06/26/pygowave-server-2/ - 2026-03-03T13:32:30.000Z + 2026-03-03T13:32:30.331Z monthly 0.8 @@ -24077,7 +24266,7 @@ https://www.rfc1437.de/2009/06/26/pypy-status-blog-jit-progress/ - 2026-03-03T13:32:33.000Z + 2026-03-03T13:32:33.979Z monthly 0.8 @@ -24086,7 +24275,7 @@ https://www.rfc1437.de/2009/06/26/stoned-wallabies-make-crop-circles/ - 2026-03-03T13:32:37.000Z + 2026-03-03T13:32:37.586Z monthly 0.8 @@ -24095,7 +24284,7 @@ https://www.rfc1437.de/2009/06/26/why-are-there-60-minutes-in-an-hour/ - 2026-03-03T13:32:41.000Z + 2026-03-03T13:32:41.619Z monthly 0.8 @@ -24104,7 +24293,7 @@ https://www.rfc1437.de/2009/06/26/window-damage-on-atlantis-threatens-six-month/ - 2026-03-03T13:32:45.000Z + 2026-03-03T13:32:45.627Z monthly 0.8 @@ -24113,7 +24302,7 @@ https://www.rfc1437.de/2009/06/24/four-crowdsourcing-lessons-from-the-guardian-s/ - 2026-03-03T13:32:50.000Z + 2026-03-03T13:32:50.163Z monthly 0.8 @@ -24122,7 +24311,7 @@ https://www.rfc1437.de/2009/06/24/second-edition-of-practical-django-projects/ - 2026-03-03T13:32:53.000Z + 2026-03-03T13:32:53.688Z monthly 0.8 @@ -24131,7 +24320,7 @@ https://www.rfc1437.de/2009/06/23/pharo-open-source-smalltalk/ - 2026-03-03T13:32:57.000Z + 2026-03-03T13:32:57.743Z monthly 0.8 @@ -24140,7 +24329,7 @@ https://www.rfc1437.de/2009/06/22/scala-xml/ - 2026-03-03T13:33:01.000Z + 2026-03-03T13:33:01.205Z monthly 0.8 @@ -24149,7 +24338,7 @@ https://www.rfc1437.de/2009/06/21/erik-naggum-1965-2009-rip/ - 2026-03-03T13:33:06.000Z + 2026-03-03T13:33:06.525Z monthly 0.8 @@ -24158,7 +24347,7 @@ https://www.rfc1437.de/2009/06/21/software-xml-s-exp-vs-xml/ - 2026-03-03T13:33:10.000Z + 2026-03-03T13:33:10.941Z monthly 0.8 @@ -24167,7 +24356,7 @@ https://www.rfc1437.de/2009/06/20/futurebox-lightbox-without-the-javascript/ - 2026-03-03T13:33:14.000Z + 2026-03-03T13:33:14.466Z monthly 0.8 @@ -24176,7 +24365,7 @@ https://www.rfc1437.de/2009/06/20/scalala/ - 2026-03-03T13:33:18.000Z + 2026-03-03T13:33:18.425Z monthly 0.8 @@ -24185,7 +24374,7 @@ https://www.rfc1437.de/2009/06/20/scouchdb/ - 2026-03-03T13:33:22.000Z + 2026-03-03T13:33:22.323Z monthly 0.8 @@ -24194,7 +24383,7 @@ https://www.rfc1437.de/2009/06/18/nik-complete-collection/ - 2026-03-03T13:33:25.000Z + 2026-03-03T13:33:25.766Z monthly 0.8 @@ -24203,7 +24392,7 @@ https://www.rfc1437.de/2009/06/18/subdomain-patent-null-und-nichtig/ - 2026-03-03T13:33:29.000Z + 2026-03-03T13:33:29.288Z monthly 0.8 @@ -24212,7 +24401,7 @@ https://www.rfc1437.de/2009/06/16/neuer-investor-rettet-sco-vor-der-liquidierung/ - 2026-03-03T13:33:32.000Z + 2026-03-03T13:33:32.767Z monthly 0.8 @@ -24221,7 +24410,7 @@ https://www.rfc1437.de/2009/06/16/olympus-e-p1-digital-pen-officially-announced/ - 2026-03-03T13:33:36.000Z + 2026-03-03T13:33:36.716Z monthly 0.8 @@ -24230,7 +24419,7 @@ https://www.rfc1437.de/2009/06/16/olympus-e-p1-hands-on-preview/ - 2026-03-03T13:33:40.000Z + 2026-03-03T13:33:40.058Z monthly 0.8 @@ -24239,7 +24428,7 @@ https://www.rfc1437.de/2009/06/15/httplib2/ - 2026-03-03T13:33:43.000Z + 2026-03-03T13:33:43.581Z monthly 0.8 @@ -24248,7 +24437,7 @@ https://www.rfc1437.de/2009/06/15/mal-sondock-gestorben/ - 2026-03-03T13:33:47.000Z + 2026-03-03T13:33:47.047Z monthly 0.8 @@ -24257,7 +24446,7 @@ https://www.rfc1437.de/2009/06/13/hattler/ - 2026-03-03T13:33:50.000Z + 2026-03-03T13:33:50.492Z monthly 0.8 @@ -24266,7 +24455,7 @@ https://www.rfc1437.de/2009/06/11/kunst-trifft-kohl-de-skulpturen-in-kleingaerten/ - 2026-03-03T13:33:54.000Z + 2026-03-03T13:33:54.844Z monthly 0.8 @@ -24275,7 +24464,7 @@ https://www.rfc1437.de/2009/06/07/europawahl-debakel-fuer-die-spd/ - 2026-03-03T13:34:00.000Z + 2026-03-03T13:34:00.072Z monthly 0.8 @@ -24284,7 +24473,7 @@ https://www.rfc1437.de/2009/06/04/the-gettysburg-powerpoint-presentation/ - 2026-03-03T13:34:03.000Z + 2026-03-03T13:34:03.522Z monthly 0.8 @@ -24293,7 +24482,7 @@ https://www.rfc1437.de/2009/06/01/the-speed-size-and-dependability-of-programming/ - 2026-03-03T13:34:07.000Z + 2026-03-03T13:34:07.874Z monthly 0.8 @@ -24302,7 +24491,7 @@ https://www.rfc1437.de/2009/05/29/ak-zensur-laesst-60-kinderporno-seiten-in-12/ - 2026-03-03T13:34:11.000Z + 2026-03-03T13:34:11.779Z monthly 0.8 @@ -24311,7 +24500,7 @@ https://www.rfc1437.de/2009/05/29/bobo-v0-2-documentation/ - 2026-03-03T13:34:14.000Z + 2026-03-03T13:34:14.648Z monthly 0.8 @@ -24320,7 +24509,7 @@ https://www.rfc1437.de/2009/05/29/reading-and-writing-to-excel-spreadsheets-in/ - 2026-03-03T13:34:18.000Z + 2026-03-03T13:34:18.227Z monthly 0.8 @@ -24329,7 +24518,7 @@ https://www.rfc1437.de/2009/05/29/roland-schulz-ssh-proxycommand-without-netcat/ - 2026-03-03T13:34:22.000Z + 2026-03-03T13:34:22.124Z monthly 0.8 @@ -24347,7 +24536,7 @@ https://www.rfc1437.de/2009/05/27/isqueak/ - 2026-03-03T13:34:29.000Z + 2026-03-03T13:34:29.391Z monthly 0.8 @@ -24356,7 +24545,7 @@ https://www.rfc1437.de/2009/05/27/mobile-wiki-server/ - 2026-03-03T13:34:33.000Z + 2026-03-03T13:34:33.364Z monthly 0.8 @@ -24365,7 +24554,7 @@ https://www.rfc1437.de/2009/05/22/geeking-out-with-lisp-flavoured-erlang/ - 2026-03-03T13:34:37.000Z + 2026-03-03T13:34:37.278Z monthly 0.8 @@ -24374,7 +24563,7 @@ https://www.rfc1437.de/2009/05/22/nanojit/ - 2026-03-03T13:34:40.000Z + 2026-03-03T13:34:40.828Z monthly 0.8 @@ -24383,7 +24572,7 @@ https://www.rfc1437.de/2009/05/22/pickled-object-database/ - 2026-03-03T13:34:44.000Z + 2026-03-03T13:34:44.803Z monthly 0.8 @@ -24392,7 +24581,7 @@ https://www.rfc1437.de/2009/05/22/whither-eucalyptus/ - 2026-03-03T13:34:49.000Z + 2026-03-03T13:34:49.155Z monthly 0.8 @@ -24401,7 +24590,7 @@ https://www.rfc1437.de/2009/05/17/lamson-lamson-the-python-smtp-server/ - 2026-03-03T13:34:52.000Z + 2026-03-03T13:34:52.611Z monthly 0.8 @@ -24410,7 +24599,7 @@ https://www.rfc1437.de/2009/05/15/gluster/ - 2026-03-03T13:34:55.000Z + 2026-03-03T13:34:55.588Z monthly 0.8 @@ -24419,7 +24608,7 @@ https://www.rfc1437.de/2009/05/15/nimrod-programming-language/ - 2026-03-03T13:34:59.000Z + 2026-03-03T13:34:59.190Z monthly 0.8 @@ -24428,7 +24617,7 @@ https://www.rfc1437.de/2009/05/09/sco-soll-liquidiert-werden/ - 2026-03-03T13:35:02.000Z + 2026-03-03T13:35:02.687Z monthly 0.8 @@ -24437,7 +24626,7 @@ https://www.rfc1437.de/2009/05/07/animeeple-software/ - 2026-03-03T13:35:06.000Z + 2026-03-03T13:35:06.108Z monthly 0.8 @@ -24446,7 +24635,7 @@ https://www.rfc1437.de/2009/05/07/bundesinkompetenz-und-wackeldackel/ - 2026-03-03T13:35:10.000Z + 2026-03-03T13:35:10.949Z monthly 0.8 @@ -24455,7 +24644,7 @@ https://www.rfc1437.de/2009/05/07/hausdurchsuchung-bei-forenbetreiber-rechtswidrig/ - 2026-03-03T13:35:15.000Z + 2026-03-03T13:35:15.709Z monthly 0.8 @@ -24464,7 +24653,7 @@ https://www.rfc1437.de/2009/05/07/monodevelop-on-macos-x/ - 2026-03-03T13:35:19.000Z + 2026-03-03T13:35:19.656Z monthly 0.8 @@ -24473,7 +24662,7 @@ https://www.rfc1437.de/2009/05/07/murdoch-will-hinter-die-paywall/ - 2026-03-03T13:35:24.000Z + 2026-03-03T13:35:24.974Z monthly 0.8 @@ -24482,7 +24671,7 @@ https://www.rfc1437.de/2009/05/04/packet-garden/ - 2026-03-03T13:35:30.000Z + 2026-03-03T13:35:30.158Z monthly 0.8 @@ -24491,7 +24680,7 @@ https://www.rfc1437.de/2009/05/01/hg-git-mercurial-plugin/ - 2026-03-03T13:35:33.000Z + 2026-03-03T13:35:33.849Z monthly 0.8 @@ -24500,7 +24689,7 @@ https://www.rfc1437.de/2009/05/01/new-survey-suggests-modern-humans-originated-in/ - 2026-03-07T21:08:09.000Z + 2026-03-07T21:08:09.324Z monthly 0.8 @@ -24509,7 +24698,7 @@ https://www.rfc1437.de/2009/04/29/axiotron-modbook/ - 2026-03-03T13:35:42.000Z + 2026-03-03T13:35:42.676Z monthly 0.8 @@ -24518,7 +24707,7 @@ https://www.rfc1437.de/2009/04/29/is-blender-really-equal-to-the-competition/ - 2026-03-03T13:35:46.000Z + 2026-03-03T13:35:46.748Z monthly 0.8 @@ -24527,7 +24716,7 @@ https://www.rfc1437.de/2009/04/27/aergerliches-die-netzsperren-show/ - 2026-03-03T13:35:50.000Z + 2026-03-03T13:35:50.431Z monthly 0.8 @@ -24536,7 +24725,7 @@ https://www.rfc1437.de/2009/04/27/von-der-leyen-nur-versierte-nutzer-koennen/ - 2026-03-03T13:35:54.000Z + 2026-03-03T13:35:54.076Z monthly 0.8 @@ -24545,7 +24734,7 @@ https://www.rfc1437.de/2009/04/25/ueberwachungswahn-und-internetzensur/ - 2026-03-03T13:35:59.000Z + 2026-03-03T13:35:59.097Z monthly 0.8 @@ -24554,7 +24743,7 @@ https://www.rfc1437.de/2009/04/24/vioxx-maker-merck-and-co-drew-up-doctor-hit-list/ - 2026-03-07T21:08:10.000Z + 2026-03-07T21:08:10.663Z monthly 0.8 @@ -24563,7 +24752,7 @@ https://www.rfc1437.de/2009/04/23/e-books-verlage-schotten-maerkte-ab/ - 2026-03-03T13:36:08.000Z + 2026-03-03T13:36:08.868Z monthly 0.8 @@ -24572,7 +24761,7 @@ https://www.rfc1437.de/2009/04/21/bundesregierung-will-internetsperren-mit/ - 2026-03-03T13:36:14.000Z + 2026-03-03T13:36:14.533Z monthly 0.8 @@ -24581,7 +24770,7 @@ https://www.rfc1437.de/2009/04/21/laktoseintoleranz/ - 2026-03-03T13:36:19.000Z + 2026-03-03T13:36:19.033Z monthly 0.8 @@ -24590,7 +24779,7 @@ https://www.rfc1437.de/2009/04/20/mothers-ruin-software-suspicious-package/ - 2026-03-03T13:36:22.000Z + 2026-03-03T13:36:22.750Z monthly 0.8 @@ -24599,7 +24788,7 @@ https://www.rfc1437.de/2009/04/20/oracle-agrees-to-acquire-sun-microsystems/ - 2026-03-03T13:36:27.000Z + 2026-03-03T13:36:27.899Z monthly 0.8 @@ -24608,7 +24797,7 @@ https://www.rfc1437.de/2009/04/18/mac-bot-netz/ - 2026-03-03T13:36:33.000Z + 2026-03-03T13:36:33.603Z monthly 0.8 @@ -24617,7 +24806,7 @@ https://www.rfc1437.de/2009/04/16/pulp-browser/ - 2026-03-07T21:08:15.000Z + 2026-03-07T21:08:15.262Z monthly 0.8 @@ -24626,7 +24815,7 @@ https://www.rfc1437.de/2009/04/16/tax-free-internet-shopping-may-be-at-an-end/ - 2026-03-03T13:36:41.000Z + 2026-03-03T13:36:41.076Z monthly 0.8 @@ -24635,7 +24824,7 @@ https://www.rfc1437.de/2009/04/16/tweenbot/ - 2026-03-03T13:36:44.000Z + 2026-03-03T13:36:44.306Z monthly 0.8 @@ -24644,7 +24833,7 @@ https://www.rfc1437.de/2009/04/15/tropo/ - 2026-03-03T13:36:48.000Z + 2026-03-03T13:36:48.057Z monthly 0.8 @@ -24653,7 +24842,7 @@ https://www.rfc1437.de/2009/04/14/wikileaks-kram-doch-etwas-anders-als/ - 2026-03-03T13:36:52.000Z + 2026-03-03T13:36:52.621Z monthly 0.8 @@ -24662,7 +24851,7 @@ https://www.rfc1437.de/2009/04/12/armstrong-droht-das-tour-aus/ - 2026-03-03T13:36:57.000Z + 2026-03-03T13:36:57.884Z monthly 0.8 @@ -24671,7 +24860,7 @@ https://www.rfc1437.de/2009/04/12/muentefering-rechnet-mit-opel-staatsbeteiligung/ - 2026-03-03T13:37:02.000Z + 2026-03-03T13:37:02.005Z monthly 0.8 @@ -24680,7 +24869,7 @@ https://www.rfc1437.de/2009/04/12/vorauseilender-gehorsam-beim-denic/ - 2026-03-03T13:37:07.000Z + 2026-03-03T13:37:07.028Z monthly 0.8 @@ -24689,7 +24878,7 @@ https://www.rfc1437.de/2009/04/08/discount-a-c-implementation-of-the-markdown/ - 2026-03-03T13:37:11.000Z + 2026-03-03T13:37:11.193Z monthly 0.8 @@ -24698,7 +24887,7 @@ https://www.rfc1437.de/2009/04/08/experiences-deploying-a-large-scale/ - 2026-03-03T13:37:14.000Z + 2026-03-03T13:37:14.933Z monthly 0.8 @@ -24707,7 +24896,7 @@ https://www.rfc1437.de/2009/04/08/jgm-s-peg-markdown/ - 2026-03-03T13:37:18.000Z + 2026-03-03T13:37:18.657Z monthly 0.8 @@ -24716,7 +24905,7 @@ https://www.rfc1437.de/2009/04/03/books-on-board/ - 2026-03-03T13:37:22.000Z + 2026-03-03T13:37:22.341Z monthly 0.8 @@ -24725,7 +24914,7 @@ https://www.rfc1437.de/2009/04/03/moleskin-page-designer/ - 2026-03-03T13:37:26.000Z + 2026-03-03T13:37:26.174Z monthly 0.8 @@ -24734,7 +24923,7 @@ https://www.rfc1437.de/2009/04/03/python-mqi-interface-pymqi-version-0-5d/ - 2026-03-03T13:37:29.000Z + 2026-03-03T13:37:29.985Z monthly 0.8 @@ -24743,7 +24932,7 @@ https://www.rfc1437.de/2009/04/01/sup-dawg-we-heard-you-like-smalltalk-so-we-put/ - 2026-03-03T13:37:35.000Z + 2026-03-03T13:37:35.420Z monthly 0.8 @@ -24752,7 +24941,7 @@ https://www.rfc1437.de/2009/04/01/welcome-to-waterstones-com/ - 2026-03-03T13:37:39.000Z + 2026-03-03T13:37:39.041Z monthly 0.8 @@ -24761,7 +24950,7 @@ https://www.rfc1437.de/2009/03/30/an-experimental-macruby/ - 2026-03-03T13:37:43.000Z + 2026-03-03T13:37:43.113Z monthly 0.8 @@ -24770,7 +24959,7 @@ https://www.rfc1437.de/2009/03/30/kopfschuettelanreiz-aus-karlsruhe-nur-landgericht/ - 2026-03-03T13:37:49.000Z + 2026-03-03T13:37:49.210Z monthly 0.8 @@ -24779,7 +24968,7 @@ https://www.rfc1437.de/2009/03/30/telekom-will-iphones-skype-frei-halten/ - 2026-03-03T13:37:55.000Z + 2026-03-03T13:37:55.612Z monthly 0.8 @@ -24788,7 +24977,7 @@ https://www.rfc1437.de/2009/03/29/getting-the-most-out-of-a-1024x600-screen/ - 2026-03-03T13:38:00.000Z + 2026-03-03T13:38:00.862Z monthly 0.8 @@ -24797,7 +24986,7 @@ https://www.rfc1437.de/2009/03/29/schwedens-polizei-kinderpornofilter-sind-wenig/ - 2026-03-03T13:38:05.000Z + 2026-03-03T13:38:05.033Z monthly 0.8 @@ -24806,7 +24995,7 @@ https://www.rfc1437.de/2009/03/28/bka-zeuge-luegt-schlecht-ueber-gefaelschte-akten/ - 2026-03-03T15:06:47.000Z + 2026-03-03T15:06:47.686Z monthly 0.8 @@ -24815,7 +25004,7 @@ https://www.rfc1437.de/2009/03/28/review-of-3d-engines-for-the-iphone/ - 2026-03-03T15:06:50.000Z + 2026-03-03T15:06:50.417Z monthly 0.8 @@ -24824,7 +25013,7 @@ https://www.rfc1437.de/2009/03/28/somethings-to-rejoice-about/ - 2026-03-03T15:06:53.000Z + 2026-03-03T15:06:53.147Z monthly 0.8 @@ -24833,7 +25022,7 @@ https://www.rfc1437.de/2009/03/26/intuos4-wacom-zeichentabletts-mit-neuer/ - 2026-03-03T15:06:56.000Z + 2026-03-03T15:06:56.200Z monthly 0.8 @@ -24842,7 +25031,7 @@ https://www.rfc1437.de/2009/03/25/keycue-find-remember-and-learn-menu-shortcuts/ - 2026-03-03T15:06:59.000Z + 2026-03-03T15:06:59.252Z monthly 0.8 @@ -24851,7 +25040,7 @@ https://www.rfc1437.de/2009/03/25/wikileaks-und-die-sperrlisten/ - 2026-03-03T15:07:02.000Z + 2026-03-03T15:07:02.703Z monthly 0.8 @@ -24860,7 +25049,7 @@ https://www.rfc1437.de/2009/03/24/abacus-tutorial-how-to-use-an-abacus-japanese/ - 2026-03-07T21:08:16.000Z + 2026-03-07T21:08:16.070Z monthly 0.8 @@ -24869,7 +25058,7 @@ https://www.rfc1437.de/2009/03/24/koalition-will-plaene-gegen-datenmissbrauch/ - 2026-03-03T15:07:08.000Z + 2026-03-03T15:07:08.466Z monthly 0.8 @@ -24878,7 +25067,7 @@ https://www.rfc1437.de/2009/03/24/olg-hamburg-schraenkt-forenhaftung-ein/ - 2026-03-03T15:07:11.000Z + 2026-03-03T15:07:11.493Z monthly 0.8 @@ -24887,7 +25076,7 @@ https://www.rfc1437.de/2009/03/23/one-laptop-battery-later-and-i-m-a-django-fan/ - 2026-03-07T21:08:18.000Z + 2026-03-07T21:08:18.876Z monthly 0.8 @@ -24896,7 +25085,7 @@ https://www.rfc1437.de/2009/03/23/regierung-will-onlinedurchsuchung-beschleunigt/ - 2026-03-03T15:07:17.000Z + 2026-03-03T15:07:17.922Z monthly 0.8 @@ -24905,7 +25094,7 @@ https://www.rfc1437.de/2009/03/23/schweinemast-neben-staatsgaesten/ - 2026-03-03T15:07:20.000Z + 2026-03-03T15:07:20.613Z monthly 0.8 @@ -24914,7 +25103,7 @@ https://www.rfc1437.de/2009/03/19/sony-e-book-reader-gets-500-000-books-from-google/ - 2026-03-03T15:07:23.000Z + 2026-03-03T15:07:23.969Z monthly 0.8 @@ -24923,7 +25112,7 @@ https://www.rfc1437.de/2009/03/18/das-iphone-kann-bald-auch-copy-and-paste/ - 2026-03-03T15:07:27.000Z + 2026-03-03T15:07:27.695Z monthly 0.8 @@ -24932,7 +25121,7 @@ https://www.rfc1437.de/2009/03/18/rapidminer/ - 2026-03-03T15:07:30.000Z + 2026-03-03T15:07:30.399Z monthly 0.8 @@ -24941,7 +25130,7 @@ https://www.rfc1437.de/2009/03/14/baen-books-science-fiction-fantasy/ - 2026-03-03T15:07:33.000Z + 2026-03-03T15:07:33.409Z monthly 0.8 @@ -24950,7 +25139,7 @@ https://www.rfc1437.de/2009/03/14/calibre/ - 2026-03-03T15:07:36.000Z + 2026-03-03T15:07:36.795Z monthly 0.8 @@ -24959,7 +25148,7 @@ https://www.rfc1437.de/2009/03/14/sony-reader-prs-505-lathewiki/ - 2026-03-03T15:07:39.000Z + 2026-03-03T15:07:39.814Z monthly 0.8 @@ -24968,7 +25157,7 @@ https://www.rfc1437.de/2009/03/13/bug-317781-comment-45/ - 2026-03-03T15:07:43.000Z + 2026-03-03T15:07:43.521Z monthly 0.8 @@ -24977,7 +25166,7 @@ https://www.rfc1437.de/2009/03/13/epub-ebooks-tutorial/ - 2026-03-03T15:07:45.000Z + 2026-03-03T15:07:45.911Z monthly 0.8 @@ -24986,7 +25175,7 @@ https://www.rfc1437.de/2009/03/13/feedbooks-food-for-the-mind/ - 2026-03-03T15:07:48.000Z + 2026-03-03T15:07:48.631Z monthly 0.8 @@ -24995,7 +25184,7 @@ https://www.rfc1437.de/2009/03/13/fictionwise-ebooks/ - 2026-03-03T15:07:52.000Z + 2026-03-03T15:07:52.019Z monthly 0.8 @@ -25004,7 +25193,7 @@ https://www.rfc1437.de/2009/03/13/macvim-google-code/ - 2026-03-03T15:07:55.000Z + 2026-03-03T15:07:55.027Z monthly 0.8 @@ -25013,7 +25202,7 @@ https://www.rfc1437.de/2009/03/13/munseys-a-bangsian-fantasy/ - 2026-03-03T15:07:58.000Z + 2026-03-03T15:07:58.047Z monthly 0.8 @@ -25022,7 +25211,7 @@ https://www.rfc1437.de/2009/03/12/john-j-marley-letters/ - 2026-03-03T15:08:00.000Z + 2026-03-03T15:08:00.730Z monthly 0.8 @@ -25031,7 +25220,7 @@ https://www.rfc1437.de/2009/03/12/sendezeitbegrenzung-fuer-erotische-inhalte/ - 2026-03-03T15:08:03.000Z + 2026-03-03T15:08:03.790Z monthly 0.8 @@ -25040,7 +25229,7 @@ https://www.rfc1437.de/2009/03/12/tauss-raeumt-eigene-ermittlungen-in/ - 2026-03-03T15:08:07.000Z + 2026-03-03T15:08:07.472Z monthly 0.8 @@ -25049,7 +25238,7 @@ https://www.rfc1437.de/2009/03/11/opendocument-diff-and-revision-control/ - 2026-03-03T15:08:10.000Z + 2026-03-03T15:08:10.856Z monthly 0.8 @@ -25058,7 +25247,7 @@ https://www.rfc1437.de/2009/03/11/schaeuble-unter-beobachtung-des-verfassungsschutz/ - 2026-03-03T15:08:13.000Z + 2026-03-03T15:08:13.866Z monthly 0.8 @@ -25067,7 +25256,7 @@ https://www.rfc1437.de/2009/03/09/enzyme-behind-cancer-spread-found/ - 2026-03-03T15:08:16.000Z + 2026-03-03T15:08:16.560Z monthly 0.8 @@ -25076,7 +25265,7 @@ https://www.rfc1437.de/2009/03/09/the-start-natural-language-question-answering/ - 2026-03-03T15:08:19.000Z + 2026-03-03T15:08:19.601Z monthly 0.8 @@ -25085,7 +25274,7 @@ https://www.rfc1437.de/2009/03/09/what-happened-to-hot-standby/ - 2026-03-03T15:08:22.000Z + 2026-03-03T15:08:22.643Z monthly 0.8 @@ -25094,7 +25283,7 @@ https://www.rfc1437.de/2009/03/09/wmd-the-wysiwym-markdown-editor/ - 2026-03-03T15:08:25.000Z + 2026-03-03T15:08:25.341Z monthly 0.8 @@ -25103,7 +25292,7 @@ https://www.rfc1437.de/2009/03/07/portrait-of-an-artist-as-an-avatar-filthy-fluno/ - 2026-03-03T15:08:29.000Z + 2026-03-03T15:08:29.071Z monthly 0.8 @@ -25112,7 +25301,7 @@ https://www.rfc1437.de/2009/03/06/scripting-drawer-fuer-acorn/ - 2026-03-03T15:08:32.000Z + 2026-03-03T15:08:32.423Z monthly 0.8 @@ -25121,7 +25310,7 @@ https://www.rfc1437.de/2009/03/06/stainless-for-os-x-leopard/ - 2026-03-03T15:08:35.000Z + 2026-03-03T15:08:35.459Z monthly 0.8 @@ -25130,7 +25319,7 @@ https://www.rfc1437.de/2009/03/05/leica-ceases-r-series-production/ - 2026-03-03T15:08:39.000Z + 2026-03-03T15:08:39.166Z monthly 0.8 @@ -25139,7 +25328,7 @@ https://www.rfc1437.de/2009/03/05/nik-software-inc/ - 2026-03-03T15:08:41.000Z + 2026-03-03T15:08:41.858Z monthly 0.8 @@ -25148,7 +25337,7 @@ https://www.rfc1437.de/2009/03/04/lange-akkulaufzeit/ - 2026-03-03T15:08:44.000Z + 2026-03-03T15:08:44.903Z monthly 0.8 @@ -25157,7 +25346,7 @@ https://www.rfc1437.de/2009/03/03/bundesverfassungsgericht-entscheidet-gegen/ - 2026-03-03T15:08:48.000Z + 2026-03-03T15:08:48.633Z monthly 0.8 @@ -25166,7 +25355,7 @@ https://www.rfc1437.de/2009/02/26/git-installer-fuer-os-x/ - 2026-03-03T15:08:51.000Z + 2026-03-03T15:08:51.338Z monthly 0.8 @@ -25175,7 +25364,7 @@ https://www.rfc1437.de/2009/02/25/alien-skin-software-bokeh/ - 2026-03-03T15:08:54.000Z + 2026-03-03T15:08:54.036Z monthly 0.8 @@ -25184,7 +25373,7 @@ https://www.rfc1437.de/2009/02/25/omvviewer-light-a-secondlife-text-client/ - 2026-03-03T15:08:56.000Z + 2026-03-03T15:08:56.764Z monthly 0.8 @@ -25193,7 +25382,7 @@ https://www.rfc1437.de/2009/02/25/the-man-who-invented-the-doner-kebab-has-died/ - 2026-03-03T15:08:59.000Z + 2026-03-03T15:08:59.798Z monthly 0.8 @@ -25202,7 +25391,7 @@ https://www.rfc1437.de/2009/02/20/adapters-micro-4-3/ - 2026-03-03T15:09:03.000Z + 2026-03-03T15:09:03.538Z monthly 0.8 @@ -25211,7 +25400,7 @@ https://www.rfc1437.de/2009/02/20/alhazen/ - 2026-03-03T15:09:06.000Z + 2026-03-03T15:09:06.575Z monthly 0.8 @@ -25220,7 +25409,7 @@ https://www.rfc1437.de/2009/02/20/itu-plaene-zum-kampf-gegen-cybercrime-stossen-auf/ - 2026-03-03T15:09:10.000Z + 2026-03-03T15:09:10.334Z monthly 0.8 @@ -25229,7 +25418,7 @@ https://www.rfc1437.de/2009/02/20/stilltasty-your-ultimate-shelf-life-guide/ - 2026-03-03T15:09:13.000Z + 2026-03-03T15:09:13.048Z monthly 0.8 @@ -25238,7 +25427,7 @@ https://www.rfc1437.de/2009/02/20/union-will-auch-kinder-ueberwachen-lassen/ - 2026-03-03T15:09:16.000Z + 2026-03-03T15:09:16.479Z monthly 0.8 @@ -25247,7 +25436,7 @@ https://www.rfc1437.de/2009/02/18/and-now-a-physics-engine-for-javascript/ - 2026-03-07T21:08:22.000Z + 2026-03-07T21:08:22.162Z monthly 0.8 @@ -25256,7 +25445,7 @@ https://www.rfc1437.de/2009/02/18/zsync/ - 2026-03-03T15:09:22.000Z + 2026-03-03T15:09:22.245Z monthly 0.8 @@ -25265,7 +25454,7 @@ https://www.rfc1437.de/2009/02/16/a-high-level-cross-protocol-url-grabber/ - 2026-03-03T15:09:25.000Z + 2026-03-03T15:09:25.330Z monthly 0.8 @@ -25274,7 +25463,7 @@ https://www.rfc1437.de/2009/02/16/anonymous-tm/ - 2026-03-03T15:09:27.000Z + 2026-03-03T15:09:27.729Z monthly 0.8 @@ -25283,7 +25472,7 @@ https://www.rfc1437.de/2009/02/16/britisch-franzoesisches-nuklear-billiard-im/ - 2026-03-03T15:09:31.000Z + 2026-03-03T15:09:31.159Z monthly 0.8 @@ -25292,7 +25481,7 @@ https://www.rfc1437.de/2009/02/16/cdu-gegner-von-internetsperren-foerdern/ - 2026-03-03T15:09:34.000Z + 2026-03-03T15:09:34.678Z monthly 0.8 @@ -25301,7 +25490,7 @@ https://www.rfc1437.de/2009/02/16/py-amqplib/ - 2026-03-03T15:09:37.000Z + 2026-03-03T15:09:37.444Z monthly 0.8 @@ -25310,7 +25499,7 @@ https://www.rfc1437.de/2009/02/16/rabbits-and-warrens/ - 2026-03-03T15:09:40.000Z + 2026-03-03T15:09:40.207Z monthly 0.8 @@ -25319,7 +25508,7 @@ https://www.rfc1437.de/2009/02/16/txamqp-twisted-amqp-in-launchpad/ - 2026-03-03T15:09:42.000Z + 2026-03-03T15:09:42.964Z monthly 0.8 @@ -25328,7 +25517,7 @@ https://www.rfc1437.de/2009/02/16/using-rabbitmq-beyond-queueing/ - 2026-03-03T15:09:45.000Z + 2026-03-03T15:09:45.765Z monthly 0.8 @@ -25337,7 +25526,7 @@ https://www.rfc1437.de/2009/02/16/zeromq-fastest-messaging-ever/ - 2026-03-03T15:09:48.000Z + 2026-03-03T15:09:48.929Z monthly 0.8 @@ -25346,7 +25535,7 @@ https://www.rfc1437.de/2009/02/15/fragstore-a-fragmenting-asset-store-at-adam-frisby/ - 2026-03-03T15:09:52.000Z + 2026-03-03T15:09:52.439Z monthly 0.8 @@ -25355,7 +25544,7 @@ https://www.rfc1437.de/2009/02/13/fractalmaker/ - 2026-03-03T15:09:54.000Z + 2026-03-03T15:09:54.898Z monthly 0.8 @@ -25364,7 +25553,7 @@ https://www.rfc1437.de/2009/02/13/the-oarfish-a-creature-of-legend/ - 2026-03-03T15:09:57.000Z + 2026-03-03T15:09:57.682Z monthly 0.8 @@ -25373,7 +25562,7 @@ https://www.rfc1437.de/2009/02/13/unix-lovers-to-party-like-it-s-1234567890/ - 2026-03-03T15:10:00.000Z + 2026-03-03T15:10:00.856Z monthly 0.8 @@ -25382,7 +25571,7 @@ https://www.rfc1437.de/2009/02/11/schaeuble-gehackt-update/ - 2026-03-03T15:10:04.000Z + 2026-03-03T15:10:04.007Z monthly 0.8 @@ -25391,7 +25580,7 @@ https://www.rfc1437.de/2009/02/09/demo-scripts-for-gnuplot-cvs-version/ - 2026-03-03T15:10:06.000Z + 2026-03-03T15:10:06.814Z monthly 0.8 @@ -25400,7 +25589,7 @@ https://www.rfc1437.de/2009/02/08/gravenreuth-muss-in-haft/ - 2026-03-03T15:10:10.000Z + 2026-03-03T15:10:10.713Z monthly 0.8 @@ -25409,7 +25598,7 @@ https://www.rfc1437.de/2009/02/08/linzer-weihbischof-haelt-homosexualitaet-fuer/ - 2026-03-03T15:10:13.000Z + 2026-03-03T15:10:13.864Z monthly 0.8 @@ -25418,7 +25607,7 @@ https://www.rfc1437.de/2009/02/06/expandrive-ridiculously-simple-sftp-and-ftp-drive/ - 2026-03-03T15:10:17.000Z + 2026-03-03T15:10:17.401Z monthly 0.8 @@ -25427,7 +25616,7 @@ https://www.rfc1437.de/2009/02/06/instant-color-schemes-for-your-mac-with/ - 2026-03-03T15:10:20.000Z + 2026-03-03T15:10:20.541Z monthly 0.8 @@ -25436,7 +25625,7 @@ https://www.rfc1437.de/2009/02/06/intaglio-macintosh-drawing-illustration/ - 2026-03-03T15:10:23.000Z + 2026-03-03T15:10:23.375Z monthly 0.8 @@ -25445,7 +25634,7 @@ https://www.rfc1437.de/2009/02/06/vectordesigner/ - 2026-03-03T15:10:26.000Z + 2026-03-03T15:10:26.552Z monthly 0.8 @@ -25454,7 +25643,7 @@ https://www.rfc1437.de/2009/02/04/moving-forth-part-1/ - 2026-03-03T15:10:29.000Z + 2026-03-03T15:10:29.350Z monthly 0.8 @@ -25463,7 +25652,7 @@ https://www.rfc1437.de/2009/02/04/wolfram-mathematica-home-edition/ - 2026-03-03T15:10:32.000Z + 2026-03-03T15:10:32.174Z monthly 0.8 @@ -25472,7 +25661,7 @@ https://www.rfc1437.de/2009/02/03/nodebox-2/ - 2026-03-03T15:10:35.000Z + 2026-03-03T15:10:35.003Z monthly 0.8 @@ -25481,7 +25670,7 @@ https://www.rfc1437.de/2009/02/03/us-hacker-kopiert-unbemerkt-rfid-ausweise/ - 2026-03-03T15:10:38.000Z + 2026-03-03T15:10:38.554Z monthly 0.8 @@ -25490,7 +25679,7 @@ https://www.rfc1437.de/2009/02/02/nokia-drueckt-ueberwachungsrechte-fuer-e-mails/ - 2026-03-03T15:10:42.000Z + 2026-03-03T15:10:42.091Z monthly 0.8 @@ -25499,7 +25688,7 @@ https://www.rfc1437.de/2009/01/31/filter-forge/ - 2026-03-03T15:10:45.000Z + 2026-03-03T15:10:45.320Z monthly 0.8 @@ -25508,7 +25697,7 @@ https://www.rfc1437.de/2009/01/31/imagelys-picture-styles/ - 2026-03-03T15:10:48.000Z + 2026-03-03T15:10:48.530Z monthly 0.8 @@ -25517,7 +25706,7 @@ https://www.rfc1437.de/2009/01/30/loeve-free-2d-game-engine/ - 2026-03-03T15:10:51.000Z + 2026-03-03T15:10:51.436Z monthly 0.8 @@ -25526,7 +25715,7 @@ https://www.rfc1437.de/2009/01/30/online-backup-multi-platform-multi-computer/ - 2026-03-03T15:10:55.000Z + 2026-03-03T15:10:55.003Z monthly 0.8 @@ -25535,7 +25724,7 @@ https://www.rfc1437.de/2009/01/30/patterns-in-python/ - 2026-03-03T15:10:57.000Z + 2026-03-03T15:10:57.818Z monthly 0.8 @@ -25544,7 +25733,7 @@ https://www.rfc1437.de/2009/01/26/darwin-x86-boot-loader/ - 2026-03-03T15:11:01.000Z + 2026-03-03T15:11:01.033Z monthly 0.8 @@ -25553,7 +25742,7 @@ https://www.rfc1437.de/2009/01/26/how-to-migrate-from-parallels-to-virtualbox/ - 2026-03-03T15:11:04.000Z + 2026-03-03T15:11:04.634Z monthly 0.8 @@ -25562,7 +25751,7 @@ https://www.rfc1437.de/2009/01/26/new-in-javascript-1-7-2/ - 2026-03-03T15:11:07.000Z + 2026-03-03T15:11:07.528Z monthly 0.8 @@ -25571,7 +25760,7 @@ https://www.rfc1437.de/2009/01/23/data-mining-with-r-learning-by-case-studies/ - 2026-03-03T15:11:10.000Z + 2026-03-03T15:11:10.453Z monthly 0.8 @@ -25580,7 +25769,7 @@ https://www.rfc1437.de/2009/01/23/op-ed-contributor-the-one-state-solution/ - 2026-03-03T15:11:13.000Z + 2026-03-03T15:11:13.799Z monthly 0.8 @@ -25589,7 +25778,7 @@ https://www.rfc1437.de/2009/01/21/xbinary-extended-binary-format-support-for-mac-os/ - 2026-03-03T15:11:16.000Z + 2026-03-03T15:11:16.672Z monthly 0.8 @@ -25598,7 +25787,7 @@ https://www.rfc1437.de/2009/01/20/timemachine-fails-backup-insanelymac-forum/ - 2026-03-03T15:11:20.000Z + 2026-03-03T15:11:20.021Z monthly 0.8 @@ -25607,7 +25796,7 @@ https://www.rfc1437.de/2009/01/20/weekend-grid-outages/ - 2026-03-03T15:11:23.000Z + 2026-03-03T15:11:23.293Z monthly 0.8 @@ -25616,7 +25805,7 @@ https://www.rfc1437.de/2009/01/19/how-to-find-mac-os-x-application-specifier-for/ - 2026-03-03T15:11:27.000Z + 2026-03-03T15:11:27.425Z monthly 0.8 @@ -25625,7 +25814,7 @@ https://www.rfc1437.de/2009/01/19/kim-keever/ - 2026-03-03T15:11:30.000Z + 2026-03-03T15:11:30.374Z monthly 0.8 @@ -25634,7 +25823,7 @@ https://www.rfc1437.de/2009/01/19/the-impossible-project/ - 2026-03-03T15:11:33.000Z + 2026-03-03T15:11:33.396Z monthly 0.8 @@ -25643,7 +25832,7 @@ https://www.rfc1437.de/2009/01/16/bubble-bubble-toil-and-trouble-juice-analytics/ - 2026-03-03T15:11:36.000Z + 2026-03-03T15:11:36.884Z monthly 0.8 @@ -25652,7 +25841,7 @@ https://www.rfc1437.de/2009/01/16/os-x-auf-dem-eeepc/ - 2026-03-03T15:11:40.000Z + 2026-03-03T15:11:40.974Z monthly 0.8 @@ -25661,7 +25850,7 @@ https://www.rfc1437.de/2009/01/12/dark-roasted-blend-weird-walking-frogfish/ - 2026-03-03T15:11:44.000Z + 2026-03-03T15:11:44.057Z monthly 0.8 @@ -25670,7 +25859,7 @@ https://www.rfc1437.de/2009/01/12/eee-mac-journey-eee-boot-installing-osx-on-an-eee/ - 2026-03-03T15:11:48.000Z + 2026-03-03T15:11:48.433Z monthly 0.8 @@ -25679,7 +25868,7 @@ https://www.rfc1437.de/2009/01/12/english-russia-abandoned-russian-polar-nuclear/ - 2026-03-03T15:11:51.000Z + 2026-03-03T15:11:51.461Z monthly 0.8 @@ -25688,7 +25877,7 @@ https://www.rfc1437.de/2009/01/12/runcore-256gb-pro-iii-hyper-speed-2-5-sata-solid/ - 2026-03-03T15:11:56.000Z + 2026-03-03T15:11:56.691Z monthly 0.8 @@ -25697,7 +25886,7 @@ https://www.rfc1437.de/2009/01/10/das-geheimnis-der-verschwundenen-buecher/ - 2026-03-03T15:11:59.000Z + 2026-03-03T15:11:59.773Z monthly 0.8 @@ -25706,7 +25895,7 @@ https://www.rfc1437.de/2009/01/09/iui-introduction-wiki-page/ - 2026-03-03T15:12:03.000Z + 2026-03-03T15:12:03.272Z monthly 0.8 @@ -25715,7 +25904,7 @@ https://www.rfc1437.de/2009/01/09/pycha/ - 2026-03-03T15:12:06.000Z + 2026-03-03T15:12:06.794Z monthly 0.8 @@ -25724,7 +25913,7 @@ https://www.rfc1437.de/2009/01/07/joerg-schieb-itunes-verzichtet-auf-kopierschutz/ - 2026-03-03T15:12:11.000Z + 2026-03-03T15:12:11.045Z monthly 0.8 @@ -25733,7 +25922,7 @@ https://www.rfc1437.de/2009/01/05/monsters/ - 2026-03-03T15:12:14.000Z + 2026-03-03T15:12:14.140Z monthly 0.8 @@ -25742,7 +25931,7 @@ https://www.rfc1437.de/2009/01/05/pure-lang/ - 2026-03-03T15:12:17.000Z + 2026-03-03T15:12:17.269Z monthly 0.8 @@ -25751,7 +25940,7 @@ https://www.rfc1437.de/2009/01/05/the-rltiles/ - 2026-03-03T15:12:20.000Z + 2026-03-03T15:12:20.427Z monthly 0.8 @@ -25760,7 +25949,7 @@ https://www.rfc1437.de/2009/01/05/vx32-lightweight-user-level-sandboxing-on-the-x86/ - 2026-03-03T15:12:23.000Z + 2026-03-03T15:12:23.967Z monthly 0.8 @@ -25769,7 +25958,7 @@ https://www.rfc1437.de/2009/01/02/cython-c-extensions-for-python/ - 2026-03-03T15:12:27.000Z + 2026-03-03T15:12:27.021Z monthly 0.8 @@ -25778,7 +25967,7 @@ https://www.rfc1437.de/2009/01/01/mobile-django-admin-patches-shifting-bits-by/ - 2026-03-03T15:12:30.000Z + 2026-03-03T15:12:30.183Z monthly 0.8 @@ -25787,7 +25976,7 @@ https://www.rfc1437.de/2008/12/30/digitalspace-traveler-traveler/ - 2026-03-03T15:12:32.000Z + 2026-03-03T15:12:32.865Z monthly 0.8 @@ -25796,7 +25985,7 @@ https://www.rfc1437.de/2008/12/30/improve-your-photo-booth-with-90-free-effects/ - 2026-03-03T15:12:36.000Z + 2026-03-03T15:12:36.576Z monthly 0.8 @@ -25805,7 +25994,7 @@ https://www.rfc1437.de/2008/12/24/raw-photo-processor-rpp/ - 2026-03-03T15:12:40.000Z + 2026-03-03T15:12:40.054Z monthly 0.8 @@ -25814,7 +26003,7 @@ https://www.rfc1437.de/2008/12/18/uninformation-org-arbeitswelt-2-0-oder-der-dot/ - 2026-03-03T15:12:43.000Z + 2026-03-03T15:12:43.966Z monthly 0.8 @@ -25823,7 +26012,7 @@ https://www.rfc1437.de/2008/12/16/ngplant-open-source-plant-modeling-package/ - 2026-03-03T15:12:47.000Z + 2026-03-03T15:12:47.194Z monthly 0.8 @@ -25832,7 +26021,7 @@ https://www.rfc1437.de/2008/12/16/tree-making/ - 2026-03-03T15:12:49.000Z + 2026-03-03T15:12:49.981Z monthly 0.8 @@ -25841,7 +26030,7 @@ https://www.rfc1437.de/2008/12/16/yorik-s-blender-greenhouse/ - 2026-03-03T15:12:53.000Z + 2026-03-03T15:12:53.219Z monthly 0.8 @@ -25850,7 +26039,7 @@ https://www.rfc1437.de/2008/12/15/arbaro-tree-generation-for-povray/ - 2026-03-03T15:12:56.000Z + 2026-03-03T15:12:56.904Z monthly 0.8 @@ -25859,7 +26048,7 @@ https://www.rfc1437.de/2008/12/15/aust-tomtree/ - 2026-03-03T15:12:59.000Z + 2026-03-03T15:12:59.956Z monthly 0.8 @@ -25868,7 +26057,7 @@ https://www.rfc1437.de/2008/12/15/macmegapov-index/ - 2026-03-03T15:13:02.000Z + 2026-03-03T15:13:02.694Z monthly 0.8 @@ -25877,7 +26066,7 @@ https://www.rfc1437.de/2008/12/15/pov-ray-documentation/ - 2026-03-03T15:13:05.000Z + 2026-03-03T15:13:05.943Z monthly 0.8 @@ -25886,7 +26075,7 @@ https://www.rfc1437.de/2008/12/15/pov-tree/ - 2026-03-03T15:13:09.000Z + 2026-03-03T15:13:09.507Z monthly 0.8 @@ -25895,7 +26084,7 @@ https://www.rfc1437.de/2008/12/15/supercoldmilk/ - 2026-03-03T15:13:12.000Z + 2026-03-03T15:13:12.141Z monthly 0.8 @@ -25904,7 +26093,7 @@ https://www.rfc1437.de/2008/12/03/mystic-forest/ - 2026-03-07T21:08:25.000Z + 2026-03-07T21:08:25.195Z monthly 0.8 @@ -25913,7 +26102,7 @@ https://www.rfc1437.de/2008/11/29/a3dsculpt-creating-sculpties-with-albatross3d/ - 2026-03-03T15:13:19.000Z + 2026-03-03T15:13:19.023Z monthly 0.8 @@ -25922,7 +26111,7 @@ https://www.rfc1437.de/2008/11/29/albatross3d/ - 2026-03-03T15:13:22.000Z + 2026-03-03T15:13:22.222Z monthly 0.8 @@ -25931,7 +26120,7 @@ https://www.rfc1437.de/2008/11/28/2-700-year-old-marijuana-found-in-chinese-tomb/ - 2026-03-07T21:08:26.000Z + 2026-03-07T21:08:26.035Z monthly 0.8 @@ -25940,7 +26129,7 @@ https://www.rfc1437.de/2008/11/28/ironclad/ - 2026-03-03T15:13:28.000Z + 2026-03-03T15:13:28.578Z monthly 0.8 @@ -25949,7 +26138,7 @@ https://www.rfc1437.de/2008/11/28/python-ogre-high-performance-gaming-and-graphics/ - 2026-03-03T15:13:31.000Z + 2026-03-03T15:13:31.771Z monthly 0.8 @@ -25958,7 +26147,7 @@ https://www.rfc1437.de/2008/11/28/tutorial-einstieg-in-das-adobe-flex-sdk/ - 2026-03-03T15:13:35.000Z + 2026-03-03T15:13:35.407Z monthly 0.8 @@ -25967,7 +26156,7 @@ https://www.rfc1437.de/2008/11/28/vpython/ - 2026-03-03T15:13:38.000Z + 2026-03-03T15:13:38.510Z monthly 0.8 @@ -25976,7 +26165,7 @@ https://www.rfc1437.de/2008/11/26/c-o-r-e-p-y-synthetic-programming-in-python/ - 2026-03-03T15:13:42.000Z + 2026-03-03T15:13:42.132Z monthly 0.8 @@ -25985,7 +26174,7 @@ https://www.rfc1437.de/2008/11/26/rands-in-repose-dumbing-down-the-cloud/ - 2026-03-03T15:13:46.000Z + 2026-03-03T15:13:46.156Z monthly 0.8 @@ -25994,7 +26183,7 @@ https://www.rfc1437.de/2008/11/24/continue-web-applications-in-plt-scheme/ - 2026-03-03T15:13:49.000Z + 2026-03-03T15:13:49.818Z monthly 0.8 @@ -26003,7 +26192,7 @@ https://www.rfc1437.de/2008/11/24/jazzscheme/ - 2026-03-03T15:13:53.000Z + 2026-03-03T15:13:53.367Z monthly 0.8 @@ -26012,7 +26201,7 @@ https://www.rfc1437.de/2008/11/24/mankind-s-new-best-friend/ - 2026-03-03T15:13:56.000Z + 2026-03-03T15:13:56.464Z monthly 0.8 @@ -26021,7 +26210,7 @@ https://www.rfc1437.de/2008/11/22/molotov-alva/ - 2026-03-03T15:14:00.000Z + 2026-03-03T15:14:00.127Z monthly 0.8 @@ -26030,7 +26219,7 @@ https://www.rfc1437.de/2008/11/20/arrsync-an-rsync-gui-for-mac-os-x/ - 2026-03-03T15:14:04.000Z + 2026-03-03T15:14:04.492Z monthly 0.8 @@ -26039,7 +26228,7 @@ https://www.rfc1437.de/2008/11/20/duplicity/ - 2026-03-03T15:14:07.000Z + 2026-03-03T15:14:07.588Z monthly 0.8 @@ -26048,7 +26237,7 @@ https://www.rfc1437.de/2008/11/20/it-gipfel-vertrauenswuerdige-de-mail-von/ - 2026-03-03T15:14:12.000Z + 2026-03-03T15:14:12.035Z monthly 0.8 @@ -26057,7 +26246,7 @@ https://www.rfc1437.de/2008/11/17/mercurial-hosting-bitbucket-org/ - 2026-03-03T15:14:15.000Z + 2026-03-03T15:14:15.630Z monthly 0.8 @@ -26066,7 +26255,7 @@ https://www.rfc1437.de/2008/11/17/modulare-kamera-mit-6-x-17-cm-grossem-riesensensor/ - 2026-03-03T15:14:18.000Z + 2026-03-03T15:14:18.844Z monthly 0.8 @@ -26075,7 +26264,7 @@ https://www.rfc1437.de/2008/11/17/respectful-insolence-that-ll-teach-em-for-using/ - 2026-03-07T21:08:29.000Z + 2026-03-07T21:08:29.474Z monthly 0.8 @@ -26084,7 +26273,7 @@ https://www.rfc1437.de/2008/11/17/wikipedia-abgeschaltet/ - 2026-03-03T15:14:27.000Z + 2026-03-03T15:14:27.029Z monthly 0.8 @@ -26093,7 +26282,7 @@ https://www.rfc1437.de/2008/11/14/i-m-actually-knuth-s-homeboy-on-flickr/ - 2026-03-03T15:14:30.000Z + 2026-03-03T15:14:30.298Z monthly 0.8 @@ -26102,7 +26291,7 @@ https://www.rfc1437.de/2008/11/14/iss-raet-vom-einsatz-von-trend-micros/ - 2026-03-03T15:14:34.000Z + 2026-03-03T15:14:34.497Z monthly 0.8 @@ -26111,7 +26300,7 @@ https://www.rfc1437.de/2008/11/14/microsoft-erklaert-siebenjaehrige-patch/ - 2026-03-03T15:14:38.000Z + 2026-03-03T15:14:38.662Z monthly 0.8 @@ -26120,7 +26309,7 @@ https://www.rfc1437.de/2008/11/14/the-world-s-most-super-designed-data-center-fit/ - 2026-03-03T15:14:42.000Z + 2026-03-03T15:14:42.449Z monthly 0.8 @@ -26129,7 +26318,7 @@ https://www.rfc1437.de/2008/11/14/to-webkit-or-not-to-webkit-within-your-iphone-app/ - 2026-03-03T15:14:46.000Z + 2026-03-03T15:14:46.256Z monthly 0.8 @@ -26138,7 +26327,7 @@ https://www.rfc1437.de/2008/11/13/deutsche-bank-verklagt-lehman-brothers/ - 2026-03-03T15:14:49.000Z + 2026-03-03T15:14:49.702Z monthly 0.8 @@ -26147,7 +26336,7 @@ https://www.rfc1437.de/2008/11/13/the-flying-car/ - 2026-03-03T15:14:53.000Z + 2026-03-03T15:14:53.201Z monthly 0.8 @@ -26156,7 +26345,7 @@ https://www.rfc1437.de/2008/11/11/lokfuehrer-springen-aus-gueterzug/ - 2026-03-03T15:14:57.000Z + 2026-03-03T15:14:57.506Z monthly 0.8 @@ -26165,7 +26354,7 @@ https://www.rfc1437.de/2008/11/11/vom-qualitativen-abstieg-eines-providers/ - 2026-03-03T15:15:01.000Z + 2026-03-03T15:15:01.765Z monthly 0.8 @@ -26174,7 +26363,7 @@ https://www.rfc1437.de/2008/11/10/clpython-an-implementation-of-python-in-common/ - 2026-03-03T15:15:06.000Z + 2026-03-03T15:15:06.096Z monthly 0.8 @@ -26183,7 +26372,7 @@ https://www.rfc1437.de/2008/11/10/couchdbx-revival/ - 2026-03-03T15:15:09.000Z + 2026-03-03T15:15:09.374Z monthly 0.8 @@ -26192,7 +26381,7 @@ https://www.rfc1437.de/2008/11/10/nagare/ - 2026-03-03T15:15:13.000Z + 2026-03-03T15:15:13.078Z monthly 0.8 @@ -26201,7 +26390,7 @@ https://www.rfc1437.de/2008/11/10/the-picodore-64-a-commodore-64-pda/ - 2026-03-03T15:15:16.000Z + 2026-03-03T15:15:16.943Z monthly 0.8 @@ -26210,7 +26399,7 @@ https://www.rfc1437.de/2008/11/06/fabric/ - 2026-03-03T15:15:19.000Z + 2026-03-03T15:15:19.883Z monthly 0.8 @@ -26219,7 +26408,7 @@ https://www.rfc1437.de/2008/11/06/seed-prime-numbers-get-hitched/ - 2026-03-07T21:08:30.000Z + 2026-03-07T21:08:30.295Z monthly 0.8 @@ -26228,7 +26417,7 @@ https://www.rfc1437.de/2008/11/06/sichere-identitaet-eindeutige-identitaet/ - 2026-03-03T15:15:27.000Z + 2026-03-03T15:15:27.795Z monthly 0.8 @@ -26237,7 +26426,7 @@ https://www.rfc1437.de/2008/11/06/wpa-angeblich-in-weniger-als-15-minuten-knackbar/ - 2026-03-03T15:15:31.000Z + 2026-03-03T15:15:31.211Z monthly 0.8 @@ -26246,7 +26435,7 @@ https://www.rfc1437.de/2008/11/03/spd-rebellen-lassen-ypsilanti-scheitern/ - 2026-03-03T15:15:35.000Z + 2026-03-03T15:15:35.874Z monthly 0.8 @@ -26255,7 +26444,7 @@ https://www.rfc1437.de/2008/10/31/gobekli-tepe-the-world-s-first-temple/ - 2026-03-03T15:15:39.000Z + 2026-03-03T15:15:39.229Z monthly 0.8 @@ -26264,7 +26453,7 @@ https://www.rfc1437.de/2008/10/31/nasa-messenger-teleconference-more-hidden/ - 2026-03-03T15:15:43.000Z + 2026-03-03T15:15:43.347Z monthly 0.8 @@ -26273,7 +26462,7 @@ https://www.rfc1437.de/2008/10/31/otto-the-octopus-wrecks-havoc/ - 2026-03-03T15:15:47.000Z + 2026-03-03T15:15:47.159Z monthly 0.8 @@ -26282,7 +26471,7 @@ https://www.rfc1437.de/2008/10/31/pysmell/ - 2026-03-03T15:15:50.000Z + 2026-03-03T15:15:50.675Z monthly 0.8 @@ -26291,7 +26480,7 @@ https://www.rfc1437.de/2008/10/31/tom-otterness-making-the-sculpture/ - 2026-03-03T15:15:54.000Z + 2026-03-03T15:15:54.120Z monthly 0.8 @@ -26300,7 +26489,7 @@ https://www.rfc1437.de/2008/10/30/jsspeccy-a-zx-spectrum-emulator-in-javascript/ - 2026-03-03T15:15:57.000Z + 2026-03-03T15:15:57.459Z monthly 0.8 @@ -26309,7 +26498,7 @@ https://www.rfc1437.de/2008/10/29/richter-wahlcomputer-unsicher/ - 2026-03-03T15:16:01.000Z + 2026-03-03T15:16:01.698Z monthly 0.8 @@ -26318,7 +26507,7 @@ https://www.rfc1437.de/2008/10/29/zed-ueber-die-bankenkrise/ - 2026-03-03T15:16:06.000Z + 2026-03-03T15:16:06.335Z monthly 0.8 @@ -26327,7 +26516,7 @@ https://www.rfc1437.de/2008/10/28/the-comfy-chair/ - 2026-03-07T21:08:33.000Z + 2026-03-07T21:08:33.269Z monthly 0.8 @@ -26336,7 +26525,7 @@ https://www.rfc1437.de/2008/10/27/poladroid-project-the-easiest-and-funniest/ - 2026-03-03T15:16:13.000Z + 2026-03-03T15:16:13.427Z monthly 0.8 @@ -26345,7 +26534,7 @@ https://www.rfc1437.de/2008/10/27/wahlpruefer-des-bundestags-bezeichnet/ - 2026-03-03T15:16:17.000Z + 2026-03-03T15:16:17.618Z monthly 0.8 @@ -26354,7 +26543,7 @@ https://www.rfc1437.de/2008/10/24/couchdb-implementation/ - 2026-03-03T15:16:21.000Z + 2026-03-03T15:16:21.358Z monthly 0.8 @@ -26363,7 +26552,7 @@ https://www.rfc1437.de/2008/10/24/kritische-sicherheitsluecke-microsoft-warnt-vor/ - 2026-03-03T15:16:25.000Z + 2026-03-03T15:16:25.966Z monthly 0.8 @@ -26372,7 +26561,7 @@ https://www.rfc1437.de/2008/10/23/kidding-not/ - 2026-03-07T21:08:34.000Z + 2026-03-07T21:08:34.609Z monthly 0.8 @@ -26381,7 +26570,7 @@ https://www.rfc1437.de/2008/10/21/developing-cocoa-applications-using-macruby/ - 2026-03-03T15:16:33.000Z + 2026-03-03T15:16:33.984Z monthly 0.8 @@ -26390,7 +26579,7 @@ https://www.rfc1437.de/2008/10/21/frauenstrasse-24/ - 2026-03-03T15:16:38.000Z + 2026-03-03T15:16:38.175Z monthly 0.8 @@ -26399,7 +26588,7 @@ https://www.rfc1437.de/2008/10/20/john-nack-on-adobe-the-dng-profile-editor-what-s/ - 2026-03-03T15:16:42.000Z + 2026-03-03T15:16:42.822Z monthly 0.8 @@ -26408,7 +26597,7 @@ https://www.rfc1437.de/2008/10/19/ackermann-warnt-vor-feinden-der-marktwirtschaft/ - 2026-03-03T15:16:47.000Z + 2026-03-03T15:16:47.029Z monthly 0.8 @@ -26417,7 +26606,7 @@ https://www.rfc1437.de/2008/10/19/virustotal-kostenloser-online-viren-und/ - 2026-03-03T15:16:50.000Z + 2026-03-03T15:16:50.598Z monthly 0.8 @@ -26426,7 +26615,7 @@ https://www.rfc1437.de/2008/10/18/freesshd/ - 2026-03-03T15:16:53.000Z + 2026-03-03T15:16:53.974Z monthly 0.8 @@ -26435,7 +26624,7 @@ https://www.rfc1437.de/2008/10/18/jeffrey-s-export-to-flickr-lightroom-plugin/ - 2026-03-03T15:16:57.000Z + 2026-03-03T15:16:57.748Z monthly 0.8 @@ -26444,7 +26633,7 @@ https://www.rfc1437.de/2008/10/18/jeffrey-s-export-to-picasaweb-lightroom-plugin/ - 2026-03-03T15:17:01.000Z + 2026-03-03T15:17:01.140Z monthly 0.8 @@ -26453,7 +26642,7 @@ https://www.rfc1437.de/2008/10/18/presetsheaven/ - 2026-03-03T15:17:05.000Z + 2026-03-03T15:17:05.417Z monthly 0.8 @@ -26462,7 +26651,7 @@ https://www.rfc1437.de/2008/10/18/winmerge/ - 2026-03-03T15:17:08.000Z + 2026-03-03T15:17:08.829Z monthly 0.8 @@ -26471,7 +26660,7 @@ https://www.rfc1437.de/2008/10/17/picasa2flickr-flickr-upload-plugin-for-picasa/ - 2026-03-03T15:17:12.000Z + 2026-03-03T15:17:12.581Z monthly 0.8 @@ -26480,7 +26669,7 @@ https://www.rfc1437.de/2008/10/17/software-tools-in-haskell/ - 2026-03-03T15:17:15.000Z + 2026-03-03T15:17:15.991Z monthly 0.8 @@ -26489,7 +26678,7 @@ https://www.rfc1437.de/2008/10/15/ebooks-mal-wieder/ - 2026-03-03T15:17:20.000Z + 2026-03-03T15:17:20.629Z monthly 0.8 @@ -26498,7 +26687,7 @@ https://www.rfc1437.de/2008/10/14/bericht-digitaler-polizeifunk-erreicht-nur-3-kbit/ - 2026-03-03T15:17:25.000Z + 2026-03-03T15:17:25.272Z monthly 0.8 @@ -26507,7 +26696,7 @@ https://www.rfc1437.de/2008/10/14/das-schraeuble-wieder-mal/ - 2026-03-03T15:17:29.000Z + 2026-03-03T15:17:29.867Z monthly 0.8 @@ -26516,7 +26705,7 @@ https://www.rfc1437.de/2008/10/14/sap-will-sparen/ - 2026-03-03T15:17:34.000Z + 2026-03-03T15:17:34.556Z monthly 0.8 @@ -26525,7 +26714,7 @@ https://www.rfc1437.de/2008/10/13/auch-kohl-positiv-getestet/ - 2026-03-03T15:17:39.000Z + 2026-03-03T15:17:39.138Z monthly 0.8 @@ -26534,7 +26723,7 @@ https://www.rfc1437.de/2008/10/13/bund-stuetzt-banken-mit-bis-zu-400-milliarden-euro/ - 2026-03-03T15:17:42.000Z + 2026-03-03T15:17:42.942Z monthly 0.8 @@ -26543,7 +26732,7 @@ https://www.rfc1437.de/2008/10/13/buzzaire-metered-dose-caffeine-inhaler/ - 2026-03-03T15:17:46.000Z + 2026-03-03T15:17:46.724Z monthly 0.8 @@ -26552,7 +26741,7 @@ https://www.rfc1437.de/2008/10/13/downloading-hugs/ - 2026-03-03T15:17:50.000Z + 2026-03-03T15:17:50.558Z monthly 0.8 @@ -26561,7 +26750,7 @@ https://www.rfc1437.de/2008/10/13/ecmascript-4-progress/ - 2026-03-03T15:17:54.000Z + 2026-03-03T15:17:54.461Z monthly 0.8 @@ -26570,7 +26759,7 @@ https://www.rfc1437.de/2008/10/13/im-functionality-on-twitter-suspended-indefinitely/ - 2026-03-03T15:17:59.000Z + 2026-03-03T15:17:59.099Z monthly 0.8 @@ -26579,7 +26768,7 @@ https://www.rfc1437.de/2008/10/13/notepad/ - 2026-03-03T15:18:02.000Z + 2026-03-03T15:18:02.529Z monthly 0.8 @@ -26588,7 +26777,7 @@ https://www.rfc1437.de/2008/10/13/overclock-your-body-with-geek-cuisine/ - 2026-03-03T15:18:06.000Z + 2026-03-03T15:18:06.442Z monthly 0.8 @@ -26597,7 +26786,7 @@ https://www.rfc1437.de/2008/10/13/shapeways-passionate-about-creating/ - 2026-03-03T15:18:09.000Z + 2026-03-03T15:18:09.422Z monthly 0.8 @@ -26606,7 +26795,7 @@ https://www.rfc1437.de/2008/10/13/slipstream-intuition-money-an-aha-moment/ - 2026-03-03T15:18:13.000Z + 2026-03-03T15:18:13.668Z monthly 0.8 @@ -26615,7 +26804,7 @@ https://www.rfc1437.de/2008/10/13/t-mobile-aufsichtsrat-nennt-eigenen-konzern/ - 2026-03-03T15:18:18.000Z + 2026-03-03T15:18:18.347Z monthly 0.8 @@ -26624,7 +26813,7 @@ https://www.rfc1437.de/2008/10/13/the-original-illustrated-catalog-of-acme-products/ - 2026-03-07T21:08:35.000Z + 2026-03-07T21:08:35.949Z monthly 0.8 @@ -26633,7 +26822,7 @@ https://www.rfc1437.de/2008/10/13/the-world-s-most-bad-ass-grotesques-and-gargoyles/ - 2026-03-03T15:18:25.000Z + 2026-03-03T15:18:25.512Z monthly 0.8 @@ -26642,7 +26831,7 @@ https://www.rfc1437.de/2008/10/13/why-42/ - 2026-03-07T21:08:38.000Z + 2026-03-07T21:08:38.915Z monthly 0.8 @@ -26651,7 +26840,7 @@ https://www.rfc1437.de/2008/10/11/mydigitalssd/ - 2026-03-03T15:18:33.000Z + 2026-03-03T15:18:33.617Z monthly 0.8 @@ -26660,7 +26849,7 @@ https://www.rfc1437.de/2008/10/11/ssd-erweiterung-auf-32-oder-64-gb/ - 2026-03-03T15:18:38.000Z + 2026-03-03T15:18:38.307Z monthly 0.8 @@ -26669,7 +26858,7 @@ https://www.rfc1437.de/2008/10/10/eeebuntu/ - 2026-03-03T15:18:41.000Z + 2026-03-03T15:18:41.685Z monthly 0.8 @@ -26678,7 +26867,7 @@ https://www.rfc1437.de/2008/10/10/ubuntu-eee/ - 2026-03-03T15:18:45.000Z + 2026-03-03T15:18:45.550Z monthly 0.8 @@ -26687,7 +26876,7 @@ https://www.rfc1437.de/2008/10/10/umts-usb-sticks-mit-xandros-linux-uebersicht/ - 2026-03-03T15:18:49.000Z + 2026-03-03T15:18:49.827Z monthly 0.8 @@ -26696,7 +26885,7 @@ https://www.rfc1437.de/2008/10/07/abbyy-fotoreader-ocr-mit-der-digitalkamera/ - 2026-03-03T15:18:53.000Z + 2026-03-03T15:18:53.867Z monthly 0.8 @@ -26705,7 +26894,7 @@ https://www.rfc1437.de/2008/10/07/bericht-erotik-unternehmer-lagert-t-mobile/ - 2026-03-03T15:18:58.000Z + 2026-03-03T15:18:58.562Z monthly 0.8 @@ -26714,7 +26903,7 @@ https://www.rfc1437.de/2008/10/07/olg-hamburg-rapidshare-haftet-als-mitstoerer-fuer/ - 2026-03-03T15:19:03.000Z + 2026-03-03T15:19:03.246Z monthly 0.8 @@ -26723,7 +26912,7 @@ https://www.rfc1437.de/2008/10/07/orbited-networking-for-the-web/ - 2026-03-03T15:19:06.000Z + 2026-03-03T15:19:06.713Z monthly 0.8 @@ -26732,7 +26921,7 @@ https://www.rfc1437.de/2008/10/07/schumacher-unter-doping-verdacht/ - 2026-03-03T15:19:10.000Z + 2026-03-03T15:19:10.142Z monthly 0.8 @@ -26741,7 +26930,7 @@ https://www.rfc1437.de/2008/10/07/unity-erstellt-spiele-und-3d-anwendungen-fuers/ - 2026-03-03T15:19:14.000Z + 2026-03-03T15:19:14.857Z monthly 0.8 @@ -26750,7 +26939,7 @@ https://www.rfc1437.de/2008/10/06/multi-dimensional-analog-literals-in-c/ - 2026-03-07T21:08:39.000Z + 2026-03-07T21:08:39.732Z monthly 0.8 @@ -26759,7 +26948,7 @@ https://www.rfc1437.de/2008/10/05/apple-und-windows-fail/ - 2026-03-03T15:19:22.000Z + 2026-03-03T15:19:22.996Z monthly 0.8 @@ -26768,7 +26957,7 @@ https://www.rfc1437.de/2008/10/04/17-millionen-kundendaten-bei-t-mobile-geklaut/ - 2026-03-03T15:19:27.000Z + 2026-03-03T15:19:27.242Z monthly 0.8 @@ -26777,7 +26966,7 @@ https://www.rfc1437.de/2008/10/03/verraten-und-verkauft/ - 2026-03-03T15:19:31.000Z + 2026-03-03T15:19:31.080Z monthly 0.8 @@ -26786,7 +26975,7 @@ https://www.rfc1437.de/2008/10/01/tiny-nation-premiere/ - 2026-03-03T15:19:34.000Z + 2026-03-03T15:19:34.507Z monthly 0.8 @@ -26795,7 +26984,7 @@ https://www.rfc1437.de/2008/09/29/guppy-pe-a-python-programming-environment/ - 2026-03-03T15:19:38.000Z + 2026-03-03T15:19:38.194Z monthly 0.8 @@ -26804,7 +26993,7 @@ https://www.rfc1437.de/2008/09/29/hypo-real-estate-steuerzahler-springt-in-die/ - 2026-03-03T15:19:41.000Z + 2026-03-03T15:19:41.875Z monthly 0.8 @@ -26813,7 +27002,7 @@ https://www.rfc1437.de/2008/09/29/landtagswahl-in-bayern-csu-verliert-absolute/ - 2026-03-03T15:19:45.000Z + 2026-03-03T15:19:45.811Z monthly 0.8 @@ -26822,7 +27011,7 @@ https://www.rfc1437.de/2008/09/29/pysizer-a-memory-profiler-for-python/ - 2026-03-03T15:19:49.000Z + 2026-03-03T15:19:49.278Z monthly 0.8 @@ -26831,7 +27020,7 @@ https://www.rfc1437.de/2008/09/29/wal-mart-latest-store-to-shut-drm-key-servers/ - 2026-03-03T15:19:53.000Z + 2026-03-03T15:19:53.402Z monthly 0.8 @@ -26840,7 +27029,7 @@ https://www.rfc1437.de/2008/09/26/neat-image-mac-best-noise-reduction-for-digital/ - 2026-03-03T15:19:56.000Z + 2026-03-03T15:19:56.997Z monthly 0.8 @@ -26849,7 +27038,7 @@ https://www.rfc1437.de/2008/09/26/papert-logo-in-your-browser/ - 2026-03-03T15:20:00.000Z + 2026-03-03T15:20:00.531Z monthly 0.8 @@ -26858,7 +27047,7 @@ https://www.rfc1437.de/2008/09/26/zabel-steigt-vom-rad/ - 2026-03-03T15:20:04.000Z + 2026-03-03T15:20:04.494Z monthly 0.8 @@ -26867,7 +27056,7 @@ https://www.rfc1437.de/2008/09/25/ak-vorrat-veroeffentlicht-geheimes/ - 2026-03-03T15:20:08.000Z + 2026-03-03T15:20:08.831Z monthly 0.8 @@ -26876,7 +27065,7 @@ https://www.rfc1437.de/2008/09/24/gtk-on-osx/ - 2026-03-03T15:20:12.000Z + 2026-03-03T15:20:12.737Z monthly 0.8 @@ -26885,7 +27074,7 @@ https://www.rfc1437.de/2008/09/24/ibm-warns-standards-bodies-to-shape-up/ - 2026-03-03T15:20:16.000Z + 2026-03-03T15:20:16.689Z monthly 0.8 @@ -26894,7 +27083,7 @@ https://www.rfc1437.de/2008/09/23/leica-s2-with-56-larger-sensor-than-full-frame/ - 2026-03-03T15:20:20.000Z + 2026-03-03T15:20:20.548Z monthly 0.8 @@ -26903,7 +27092,7 @@ https://www.rfc1437.de/2008/09/23/sigma-announces-dp2-large-sensor-compact/ - 2026-03-03T15:20:24.000Z + 2026-03-03T15:20:24.974Z monthly 0.8 @@ -26912,7 +27101,7 @@ https://www.rfc1437.de/2008/09/21/home-page-for-ats/ - 2026-03-03T15:20:28.000Z + 2026-03-03T15:20:28.501Z monthly 0.8 @@ -26921,7 +27110,7 @@ https://www.rfc1437.de/2008/09/21/mailwrangler-and-the-apple-app-store/ - 2026-03-03T15:20:32.000Z + 2026-03-03T15:20:32.856Z monthly 0.8 @@ -26930,7 +27119,7 @@ https://www.rfc1437.de/2008/09/20/making-some-sense-out-of-sensor-sizes/ - 2026-03-03T15:20:36.000Z + 2026-03-03T15:20:36.403Z monthly 0.8 @@ -26939,7 +27128,7 @@ https://www.rfc1437.de/2008/09/20/tms/ - 2026-03-03T15:20:40.000Z + 2026-03-03T15:20:40.813Z monthly 0.8 @@ -26948,7 +27137,7 @@ https://www.rfc1437.de/2008/09/20/vertraulichkeit-integritaet-sowie-beweisbarkeit/ - 2026-03-03T15:20:45.000Z + 2026-03-03T15:20:45.625Z monthly 0.8 @@ -26957,7 +27146,7 @@ https://www.rfc1437.de/2008/09/19/clozure-cl-1-2-released/ - 2026-03-03T15:20:49.000Z + 2026-03-03T15:20:49.476Z monthly 0.8 @@ -26966,7 +27155,7 @@ https://www.rfc1437.de/2008/09/19/introducing-squirrelfish-extreme/ - 2026-03-03T15:20:53.000Z + 2026-03-03T15:20:53.059Z monthly 0.8 @@ -26975,7 +27164,7 @@ https://www.rfc1437.de/2008/09/19/mario-s-bike-on-flickr/ - 2026-03-03T15:20:57.000Z + 2026-03-03T15:20:57.515Z monthly 0.8 @@ -26984,7 +27173,7 @@ https://www.rfc1437.de/2008/09/19/play-light-bot-a-free-online-game-on-kongregate/ - 2026-03-03T15:21:01.000Z + 2026-03-03T15:21:01.436Z monthly 0.8 @@ -26993,7 +27182,7 @@ https://www.rfc1437.de/2008/09/19/summer-of-javascriptcore-squirrelfish-extreme-has/ - 2026-03-03T15:21:04.000Z + 2026-03-03T15:21:04.973Z monthly 0.8 @@ -27002,7 +27191,7 @@ https://www.rfc1437.de/2008/09/17/canon-eos-5d-mark-ii-21mp-and-hd-movies/ - 2026-03-03T15:21:09.000Z + 2026-03-03T15:21:09.348Z monthly 0.8 @@ -27011,7 +27200,7 @@ https://www.rfc1437.de/2008/09/17/millionenpanne-kfw-ueberweisung-an-pleite-bank/ - 2026-03-03T15:21:13.000Z + 2026-03-03T15:21:13.733Z monthly 0.8 @@ -27020,7 +27209,7 @@ https://www.rfc1437.de/2008/09/17/us-geheimdienste-terroristen-koennten-online/ - 2026-03-03T15:21:18.000Z + 2026-03-03T15:21:18.540Z monthly 0.8 @@ -27029,7 +27218,7 @@ https://www.rfc1437.de/2008/09/17/wert-den-purschen-in-den-kerker/ - 2026-03-03T15:21:23.000Z + 2026-03-03T15:21:23.321Z monthly 0.8 @@ -27038,7 +27227,7 @@ https://www.rfc1437.de/2008/09/16/i41cx/ - 2026-03-03T15:21:27.000Z + 2026-03-03T15:21:27.186Z monthly 0.8 @@ -27047,7 +27236,7 @@ https://www.rfc1437.de/2008/09/16/sourceforge-net-x-41-an-hp-41cv-simulator/ - 2026-03-03T15:21:31.000Z + 2026-03-03T15:21:31.052Z monthly 0.8 @@ -27056,7 +27245,7 @@ https://www.rfc1437.de/2008/09/15/carl-zeiss-lenses-for-canon-slrs/ - 2026-03-03T15:21:35.000Z + 2026-03-03T15:21:35.493Z monthly 0.8 @@ -27065,7 +27254,7 @@ https://www.rfc1437.de/2008/09/15/heise-online-15-09-08-itu-diskutiert-bessere/ - 2026-03-03T15:21:40.000Z + 2026-03-03T15:21:40.676Z monthly 0.8 @@ -27074,7 +27263,7 @@ https://www.rfc1437.de/2008/09/15/lichtstarkes-kleinod-leica-noctilux-mit/ - 2026-03-03T15:21:45.000Z + 2026-03-03T15:21:45.955Z monthly 0.8 @@ -27083,7 +27272,7 @@ https://www.rfc1437.de/2008/09/15/the-deep-heap-ghost-in-the-java-virtual-machine/ - 2026-03-03T15:21:49.000Z + 2026-03-03T15:21:49.819Z monthly 0.8 @@ -27092,7 +27281,7 @@ https://www.rfc1437.de/2008/09/12/dropbox-secure-backup-sync-and-sharing-made-easy/ - 2026-03-03T15:21:54.000Z + 2026-03-03T15:21:54.645Z monthly 0.8 @@ -27101,7 +27290,7 @@ https://www.rfc1437.de/2008/09/12/prototype-based-programming-in-python/ - 2026-03-03T15:21:58.000Z + 2026-03-03T15:21:58.162Z monthly 0.8 @@ -27110,7 +27299,7 @@ https://www.rfc1437.de/2008/09/11/dummer-userinterfaces-c-by-apple/ - 2026-03-03T15:22:02.000Z + 2026-03-03T15:22:02.529Z monthly 0.8 @@ -27119,7 +27308,7 @@ https://www.rfc1437.de/2008/09/10/armstrong-kehrt-zurueck/ - 2026-03-03T15:22:06.000Z + 2026-03-03T15:22:06.080Z monthly 0.8 @@ -27128,7 +27317,7 @@ https://www.rfc1437.de/2008/09/10/bund-kauft-bundesdruckerei-zurueck/ - 2026-03-03T15:22:10.000Z + 2026-03-03T15:22:10.441Z monthly 0.8 @@ -27137,7 +27326,7 @@ https://www.rfc1437.de/2008/09/08/eu-erlaubt-bayer-import-von-gensojabohnen/ - 2026-03-03T15:22:14.000Z + 2026-03-03T15:22:14.343Z monthly 0.8 @@ -27146,7 +27335,7 @@ https://www.rfc1437.de/2008/09/08/ex-bnd-chef-plaene-fuer-heimliche-online/ - 2026-03-03T15:22:19.000Z + 2026-03-03T15:22:19.162Z monthly 0.8 @@ -27155,7 +27344,7 @@ https://www.rfc1437.de/2008/09/05/cappuccino-web-framework/ - 2026-03-03T15:22:22.000Z + 2026-03-03T15:22:22.604Z monthly 0.8 @@ -27164,7 +27353,7 @@ https://www.rfc1437.de/2008/09/05/dark-roasted-blend-the-most-alien-looking-place/ - 2026-03-07T21:08:42.000Z + 2026-03-07T21:08:42.787Z monthly 0.8 @@ -27173,7 +27362,7 @@ https://www.rfc1437.de/2008/09/05/disco/ - 2026-03-03T15:22:29.000Z + 2026-03-03T15:22:29.203Z monthly 0.8 @@ -27182,7 +27371,7 @@ https://www.rfc1437.de/2008/09/05/django-1-0-released/ - 2026-03-03T15:22:32.000Z + 2026-03-03T15:22:32.706Z monthly 0.8 @@ -27191,7 +27380,7 @@ https://www.rfc1437.de/2008/09/05/thinkgeek-luxeed-dynamic-pixel-led-keyboard/ - 2026-03-03T15:22:36.000Z + 2026-03-03T15:22:36.232Z monthly 0.8 @@ -27200,7 +27389,7 @@ https://www.rfc1437.de/2008/09/05/thinkgeek-optimus-maximus-keyboard/ - 2026-03-03T15:22:39.000Z + 2026-03-03T15:22:39.788Z monthly 0.8 @@ -27209,7 +27398,7 @@ https://www.rfc1437.de/2008/09/05/urheberrechtsverletzung-gerichte-setzen-niedrige/ - 2026-03-03T15:22:44.000Z + 2026-03-03T15:22:44.653Z monthly 0.8 @@ -27218,7 +27407,7 @@ https://www.rfc1437.de/2008/09/01/opencobol-an-open-source-cobol-compiler/ - 2026-03-03T15:22:48.000Z + 2026-03-03T15:22:48.103Z monthly 0.8 @@ -27227,7 +27416,7 @@ https://www.rfc1437.de/2008/08/31/sync-trigger-with-applescript/ - 2026-03-03T15:22:52.000Z + 2026-03-03T15:22:52.127Z monthly 0.8 @@ -27236,7 +27425,7 @@ https://www.rfc1437.de/2008/08/29/deutsche-bahn-erhoeht-ticketpreise-um-3-9-prozent/ - 2026-03-03T15:22:57.000Z + 2026-03-03T15:22:57.063Z monthly 0.8 @@ -27245,7 +27434,7 @@ https://www.rfc1437.de/2008/08/29/handel-mit-melderegisterdaten-die/ - 2026-03-03T15:23:01.000Z + 2026-03-03T15:23:01.063Z monthly 0.8 @@ -27254,7 +27443,7 @@ https://www.rfc1437.de/2008/08/29/scientists-discover-why-flies-are-so-hard-to-swat/ - 2026-03-08T14:20:01.000Z + 2026-03-08T14:20:01.983Z monthly 0.8 @@ -27263,7 +27452,7 @@ https://www.rfc1437.de/2008/08/28/aus-fuer-gerolsteiner/ - 2026-03-03T15:23:08.000Z + 2026-03-03T15:23:08.490Z monthly 0.8 @@ -27272,7 +27461,7 @@ https://www.rfc1437.de/2008/08/26/canon-eos-50d/ - 2026-03-03T15:23:12.000Z + 2026-03-03T15:23:12.862Z monthly 0.8 @@ -27281,7 +27470,7 @@ https://www.rfc1437.de/2008/08/26/gears-fuer-safari/ - 2026-03-03T15:23:16.000Z + 2026-03-03T15:23:16.800Z monthly 0.8 @@ -27290,7 +27479,7 @@ https://www.rfc1437.de/2008/08/26/redhat-perl-what-a-tragedy/ - 2026-03-03T15:23:20.000Z + 2026-03-03T15:23:20.696Z monthly 0.8 @@ -27299,7 +27488,7 @@ https://www.rfc1437.de/2008/08/25/annals-of-the-patently-absurd/ - 2026-03-03T15:23:24.000Z + 2026-03-03T15:23:24.696Z monthly 0.8 @@ -27308,7 +27497,7 @@ https://www.rfc1437.de/2008/08/25/factor-a-practical-stack-language-new-optimizer/ - 2026-03-03T15:23:28.000Z + 2026-03-03T15:23:28.626Z monthly 0.8 @@ -27317,7 +27506,7 @@ https://www.rfc1437.de/2008/08/25/google-no-trespassing-signs-won-t-stop-street-view/ - 2026-03-03T15:23:33.000Z + 2026-03-03T15:23:33.442Z monthly 0.8 @@ -27326,7 +27515,7 @@ https://www.rfc1437.de/2008/08/25/jennifer-daniel-dot-com-was-taken/ - 2026-03-03T15:23:37.000Z + 2026-03-03T15:23:37.013Z monthly 0.8 @@ -27335,7 +27524,7 @@ https://www.rfc1437.de/2008/08/25/rabbiter/ - 2026-03-03T15:23:40.000Z + 2026-03-03T15:23:40.546Z monthly 0.8 @@ -27344,7 +27533,7 @@ https://www.rfc1437.de/2008/08/25/techdirt-diebold-premier-actually-admits-its/ - 2026-03-03T15:23:44.000Z + 2026-03-03T15:23:44.507Z monthly 0.8 @@ -27353,7 +27542,7 @@ https://www.rfc1437.de/2008/08/25/the-transterpreter/ - 2026-03-03T15:23:48.000Z + 2026-03-03T15:23:48.032Z monthly 0.8 @@ -27362,7 +27551,7 @@ https://www.rfc1437.de/2008/08/22/index-of-namespace-omnioutliner/ - 2026-03-03T15:23:51.000Z + 2026-03-03T15:23:51.567Z monthly 0.8 @@ -27371,7 +27560,7 @@ https://www.rfc1437.de/2008/08/21/amazon-ebs-elastic-block-store-has-launched/ - 2026-03-03T15:23:55.000Z + 2026-03-03T15:23:55.115Z monthly 0.8 @@ -27380,7 +27569,7 @@ https://www.rfc1437.de/2008/08/21/free-critical-mass-modula-3-cm3/ - 2026-03-03T15:23:58.000Z + 2026-03-03T15:23:58.729Z monthly 0.8 @@ -27389,7 +27578,7 @@ https://www.rfc1437.de/2008/08/21/phil-plait-s-bad-astronomy-bad-tv/ - 2026-03-03T15:24:02.000Z + 2026-03-03T15:24:02.311Z monthly 0.8 @@ -27398,7 +27587,7 @@ https://www.rfc1437.de/2008/08/20/cpu-rings-privilege-and-protection/ - 2026-03-03T15:24:05.000Z + 2026-03-03T15:24:05.916Z monthly 0.8 @@ -27407,7 +27596,7 @@ https://www.rfc1437.de/2008/08/20/drinking-fruit-juice-may-stop-medication-working/ - 2026-03-03T15:24:10.000Z + 2026-03-03T15:24:10.346Z monthly 0.8 @@ -27416,7 +27605,7 @@ https://www.rfc1437.de/2008/08/20/peter-s-evil-overlord-list/ - 2026-03-07T21:08:48.000Z + 2026-03-07T21:08:48.025Z monthly 0.8 @@ -27425,7 +27614,7 @@ https://www.rfc1437.de/2008/08/20/the-associated-press-states-throw-out-costly/ - 2026-03-03T15:24:17.000Z + 2026-03-03T15:24:17.895Z monthly 0.8 @@ -27434,7 +27623,7 @@ https://www.rfc1437.de/2008/08/20/the-great-consumer-crash-of-2009/ - 2026-03-03T15:24:22.000Z + 2026-03-03T15:24:22.319Z monthly 0.8 @@ -27443,7 +27632,7 @@ https://www.rfc1437.de/2008/08/19/beagleboard-org/ - 2026-03-03T15:24:25.000Z + 2026-03-03T15:24:25.845Z monthly 0.8 @@ -27452,7 +27641,7 @@ https://www.rfc1437.de/2008/08/19/everything-you-need-to-know-about-usb-3-0-plus/ - 2026-03-03T15:24:30.000Z + 2026-03-03T15:24:30.238Z monthly 0.8 @@ -27461,7 +27650,7 @@ https://www.rfc1437.de/2008/08/18/tunnelblick/ - 2026-03-03T15:24:33.000Z + 2026-03-03T15:24:33.824Z monthly 0.8 @@ -27470,7 +27659,7 @@ https://www.rfc1437.de/2008/08/18/we-re-running-out-of-ipv4-addresses-time-for-ipv6/ - 2026-03-03T15:24:37.000Z + 2026-03-03T15:24:37.874Z monthly 0.8 @@ -27479,7 +27668,7 @@ https://www.rfc1437.de/2008/08/15/doug-s-applescripts-for-itunes/ - 2026-03-03T15:24:41.000Z + 2026-03-03T15:24:41.009Z monthly 0.8 @@ -27488,7 +27677,7 @@ https://www.rfc1437.de/2008/08/14/django-on-jython-it-s-here/ - 2026-03-03T15:24:45.000Z + 2026-03-03T15:24:45.161Z monthly 0.8 @@ -27497,7 +27686,7 @@ https://www.rfc1437.de/2008/08/08/advertising-and-privacy-google-privacy-center/ - 2026-03-03T15:24:49.000Z + 2026-03-03T15:24:49.002Z monthly 0.8 @@ -27506,7 +27695,7 @@ https://www.rfc1437.de/2008/08/08/edge-cases-are-the-root-of-all-evil/ - 2026-03-03T15:25:41.000Z + 2026-03-03T15:25:41.826Z monthly 0.8 @@ -27515,7 +27704,7 @@ https://www.rfc1437.de/2008/08/08/network-advertising-initiative/ - 2026-03-03T15:27:16.000Z + 2026-03-03T15:27:16.331Z monthly 0.8 @@ -27524,7 +27713,7 @@ https://www.rfc1437.de/2008/08/06/pentagon-will-offenbar-guantanamo-freisprueche/ - 2026-03-03T15:27:20.000Z + 2026-03-03T15:27:20.460Z monthly 0.8 @@ -27533,7 +27722,7 @@ https://www.rfc1437.de/2008/07/30/kabinettsbeschluss-hohe-strafen-fuer-illegale/ - 2026-03-03T15:27:23.000Z + 2026-03-03T15:27:23.695Z monthly 0.8 @@ -27542,7 +27731,7 @@ https://www.rfc1437.de/2008/07/29/keine-rundfunkgebuehr-fuer-pc-in-anwaltskanzlei/ - 2026-03-03T15:27:27.000Z + 2026-03-03T15:27:27.469Z monthly 0.8 @@ -27551,7 +27740,7 @@ https://www.rfc1437.de/2008/07/25/bundesrechnungshof-kritisiert-arbeit-der-jobcenter/ - 2026-03-03T15:27:30.000Z + 2026-03-03T15:27:30.998Z monthly 0.8 @@ -27560,7 +27749,7 @@ https://www.rfc1437.de/2008/07/25/here-we-go-again-yahoo-music-throws-away-the-drm/ - 2026-03-03T15:27:34.000Z + 2026-03-03T15:27:34.760Z monthly 0.8 @@ -27569,7 +27758,7 @@ https://www.rfc1437.de/2008/07/25/the-death-of-google-s-patents/ - 2026-03-03T15:27:38.000Z + 2026-03-03T15:27:38.243Z monthly 0.8 @@ -27578,7 +27767,7 @@ https://www.rfc1437.de/2008/07/24/erlang-gs-explorations-organized-by-doug-edmunds/ - 2026-03-03T15:27:40.000Z + 2026-03-03T15:27:40.985Z monthly 0.8 @@ -27587,7 +27776,7 @@ https://www.rfc1437.de/2008/07/23/fahrer-in-der-epo-falle/ - 2026-03-03T15:27:44.000Z + 2026-03-03T15:27:44.411Z monthly 0.8 @@ -27596,7 +27785,7 @@ https://www.rfc1437.de/2008/07/23/method-and-apparatus-for-creation-and-maintenance/ - 2026-03-03T15:27:48.000Z + 2026-03-03T15:27:48.210Z monthly 0.8 @@ -27605,7 +27794,7 @@ https://www.rfc1437.de/2008/07/23/methods-for-tying-knots-in-ropes/ - 2026-03-03T15:27:51.000Z + 2026-03-03T15:27:51.316Z monthly 0.8 @@ -27614,7 +27803,7 @@ https://www.rfc1437.de/2008/07/23/objective-caml-plugin-for-xcode/ - 2026-03-03T15:27:54.000Z + 2026-03-03T15:27:54.062Z monthly 0.8 @@ -27623,7 +27812,7 @@ https://www.rfc1437.de/2008/07/23/tetris/ - 2026-03-03T15:27:56.000Z + 2026-03-03T15:27:56.481Z monthly 0.8 @@ -27632,7 +27821,7 @@ https://www.rfc1437.de/2008/07/21/park-place/ - 2026-03-03T15:27:59.000Z + 2026-03-03T15:27:59.959Z monthly 0.8 @@ -27641,7 +27830,7 @@ https://www.rfc1437.de/2008/07/21/technical-mw2html-export-mediawiki-to-static/ - 2026-03-08T14:20:09.000Z + 2026-03-08T14:20:09.826Z monthly 0.8 @@ -27650,7 +27839,7 @@ https://www.rfc1437.de/2008/07/21/wikipedia-webservice/ - 2026-03-03T15:28:05.000Z + 2026-03-03T15:28:05.816Z monthly 0.8 @@ -27659,7 +27848,7 @@ https://www.rfc1437.de/2008/07/19/radlern-drohen-unfruchtbarkeit-und-impotenz/ - 2026-03-03T15:28:08.000Z + 2026-03-03T15:28:08.936Z monthly 0.8 @@ -27668,7 +27857,7 @@ https://www.rfc1437.de/2008/07/17/bushido-gewinnt-vor-gericht-gegen-drei-rentner/ - 2026-03-03T15:28:12.000Z + 2026-03-03T15:28:12.133Z monthly 0.8 @@ -27677,7 +27866,7 @@ https://www.rfc1437.de/2008/07/16/das-sind-drueckermanieren/ - 2026-03-03T15:28:15.000Z + 2026-03-03T15:28:15.962Z monthly 0.8 @@ -27686,7 +27875,7 @@ https://www.rfc1437.de/2008/07/16/my-code-blog-icfp-contest-2008/ - 2026-03-03T15:28:19.000Z + 2026-03-03T15:28:19.810Z monthly 0.8 @@ -27695,7 +27884,7 @@ https://www.rfc1437.de/2008/07/16/postgres-r-a-database-replication-system-for/ - 2026-03-03T15:28:22.000Z + 2026-03-03T15:28:22.588Z monthly 0.8 @@ -27704,7 +27893,7 @@ https://www.rfc1437.de/2008/07/15/spd-macht-weg-fuer-sensiblen-datenaustausch-mit/ - 2026-03-03T15:28:26.000Z + 2026-03-03T15:28:26.487Z monthly 0.8 @@ -27713,7 +27902,7 @@ https://www.rfc1437.de/2008/07/14/5-reasons-to-avoid-iphone-3g/ - 2026-03-03T15:28:30.000Z + 2026-03-03T15:28:30.328Z monthly 0.8 @@ -27722,7 +27911,7 @@ https://www.rfc1437.de/2008/07/14/energie-sozialtarife-bundespresseamt-raeumt/ - 2026-03-03T15:28:33.000Z + 2026-03-03T15:28:33.867Z monthly 0.8 @@ -27731,7 +27920,7 @@ https://www.rfc1437.de/2008/07/14/official-google-mobile-blog-searching-on-an/ - 2026-03-03T15:28:37.000Z + 2026-03-03T15:28:37.796Z monthly 0.8 @@ -27740,7 +27929,7 @@ https://www.rfc1437.de/2008/07/14/squeak-by-example/ - 2026-03-03T15:28:40.000Z + 2026-03-03T15:28:40.612Z monthly 0.8 @@ -27749,7 +27938,7 @@ https://www.rfc1437.de/2008/07/14/t-mobile-will-voip-programm-fuer-iphone-verbieten/ - 2026-03-03T15:28:43.000Z + 2026-03-03T15:28:43.793Z monthly 0.8 @@ -27758,7 +27947,7 @@ https://www.rfc1437.de/2008/07/14/the-omni-group-developer-source-code/ - 2026-03-03T15:28:46.000Z + 2026-03-03T15:28:46.638Z monthly 0.8 @@ -27767,7 +27956,7 @@ https://www.rfc1437.de/2008/07/14/toil/ - 2026-03-07T19:11:07.000Z + 2026-03-07T19:11:07.169Z monthly 0.8 @@ -27776,7 +27965,7 @@ https://www.rfc1437.de/2008/07/09/datenschuetzer-google-analytics-verletzt/ - 2026-03-03T15:28:53.000Z + 2026-03-03T15:28:53.819Z monthly 0.8 @@ -27785,7 +27974,7 @@ https://www.rfc1437.de/2008/07/09/erster-avatar-teleport-von-second-life-zu-opensim/ - 2026-03-03T15:28:57.000Z + 2026-03-03T15:28:57.425Z monthly 0.8 @@ -27794,7 +27983,7 @@ https://www.rfc1437.de/2008/07/09/lively/ - 2026-03-03T15:29:00.000Z + 2026-03-03T15:29:00.642Z monthly 0.8 @@ -27803,7 +27992,7 @@ https://www.rfc1437.de/2008/07/09/massives-dns-sicherheitsproblem-gefaehrdet-das/ - 2026-03-03T15:29:03.000Z + 2026-03-03T15:29:03.894Z monthly 0.8 @@ -27812,7 +28001,7 @@ https://www.rfc1437.de/2008/07/09/second-life-kontert-googles-lively/ - 2026-03-03T15:29:07.000Z + 2026-03-03T15:29:07.875Z monthly 0.8 @@ -27821,7 +28010,7 @@ https://www.rfc1437.de/2008/07/09/vmware-tauscht-ceo-aus/ - 2026-03-03T15:29:10.000Z + 2026-03-03T15:29:10.783Z monthly 0.8 @@ -27830,7 +28019,7 @@ https://www.rfc1437.de/2008/07/08/apple-just-gave-out-my-apple-id-password-because/ - 2026-03-03T15:29:13.000Z + 2026-03-03T15:29:13.799Z monthly 0.8 @@ -27839,7 +28028,7 @@ https://www.rfc1437.de/2008/07/08/protocol-buffers-google-s-data-interchange-format/ - 2026-03-03T15:29:16.000Z + 2026-03-03T15:29:16.904Z monthly 0.8 @@ -27848,7 +28037,7 @@ https://www.rfc1437.de/2008/07/07/postgresql-gets-religion-about-replication/ - 2026-03-03T15:29:20.000Z + 2026-03-03T15:29:20.282Z monthly 0.8 @@ -27857,7 +28046,7 @@ https://www.rfc1437.de/2008/07/03/court-ruling-will-expose-viewing-habits-of/ - 2026-03-03T15:29:24.000Z + 2026-03-03T15:29:24.628Z monthly 0.8 @@ -27866,7 +28055,7 @@ https://www.rfc1437.de/2008/07/03/drobo/ - 2026-03-03T15:29:28.000Z + 2026-03-03T15:29:28.682Z monthly 0.8 @@ -27875,7 +28064,7 @@ https://www.rfc1437.de/2008/07/03/google-talk-for-the-iphone/ - 2026-03-03T15:29:32.000Z + 2026-03-03T15:29:32.757Z monthly 0.8 @@ -27884,7 +28073,7 @@ https://www.rfc1437.de/2008/07/03/kartellamt-durchsucht-bundesweit-kaffee/ - 2026-03-03T15:29:36.000Z + 2026-03-03T15:29:36.466Z monthly 0.8 @@ -27893,7 +28082,7 @@ https://www.rfc1437.de/2008/07/03/phone-smart-cellphone-termination-fees-seem-to-be/ - 2026-03-03T15:29:41.000Z + 2026-03-03T15:29:41.164Z monthly 0.8 @@ -27902,7 +28091,7 @@ https://www.rfc1437.de/2008/07/03/python-underscore-methods/ - 2026-03-03T15:29:44.000Z + 2026-03-03T15:29:44.225Z monthly 0.8 @@ -27911,7 +28100,7 @@ https://www.rfc1437.de/2008/07/03/steinbrueck-harte-worte-gegen-kindergelderhoehung/ - 2026-03-03T15:29:48.000Z + 2026-03-03T15:29:48.135Z monthly 0.8 @@ -27920,7 +28109,7 @@ https://www.rfc1437.de/2008/07/03/watermelon-found-to-have-a-viagra-effect/ - 2026-03-03T15:29:51.000Z + 2026-03-03T15:29:51.697Z monthly 0.8 @@ -27929,7 +28118,7 @@ https://www.rfc1437.de/2008/07/02/new-law-says-computer-repair-guys-in-texas-must/ - 2026-03-03T15:29:56.000Z + 2026-03-03T15:29:56.639Z monthly 0.8 @@ -27938,7 +28127,7 @@ https://www.rfc1437.de/2008/07/02/t-mobile-abzocker/ - 2026-03-03T15:30:01.000Z + 2026-03-03T15:30:01.560Z monthly 0.8 @@ -27947,7 +28136,7 @@ https://www.rfc1437.de/2008/07/01/nikon-d700-hands-on-preview/ - 2026-03-03T15:30:06.000Z + 2026-03-03T15:30:06.605Z monthly 0.8 @@ -27956,7 +28145,7 @@ https://www.rfc1437.de/2008/06/30/cocoa-on-the-web-280-north-objective-j-and/ - 2026-03-03T15:30:11.000Z + 2026-03-03T15:30:11.215Z monthly 0.8 @@ -27965,7 +28154,7 @@ https://www.rfc1437.de/2008/06/30/nndb-mapper-tracking-the-entire-world/ - 2026-03-03T15:30:15.000Z + 2026-03-03T15:30:15.547Z monthly 0.8 @@ -27974,7 +28163,7 @@ https://www.rfc1437.de/2008/06/30/seltsame-praxis-bei-handyaltvertragshandelsportal/ - 2026-03-03T15:30:20.000Z + 2026-03-03T15:30:20.756Z monthly 0.8 @@ -27983,7 +28172,7 @@ https://www.rfc1437.de/2008/06/30/studie-rauchverbot-in-england-verhindert-40-000/ - 2026-03-03T15:30:25.000Z + 2026-03-03T15:30:25.474Z monthly 0.8 @@ -28001,7 +28190,7 @@ https://www.rfc1437.de/2008/06/30/wikidbase/ - 2026-03-03T15:30:32.000Z + 2026-03-03T15:30:32.487Z monthly 0.8 @@ -28010,7 +28199,7 @@ https://www.rfc1437.de/2008/06/29/datenschacher-mit-dem-fbi/ - 2026-03-03T15:30:37.000Z + 2026-03-03T15:30:37.189Z monthly 0.8 @@ -28019,7 +28208,7 @@ https://www.rfc1437.de/2008/06/29/icann-und-iana-defacements/ - 2026-03-03T15:30:41.000Z + 2026-03-03T15:30:41.405Z monthly 0.8 @@ -28028,7 +28217,7 @@ https://www.rfc1437.de/2008/06/28/graphite/ - 2026-03-03T15:30:45.000Z + 2026-03-03T15:30:45.121Z monthly 0.8 @@ -28037,7 +28226,7 @@ https://www.rfc1437.de/2008/06/28/iphone-3g-t-mobile-verspricht-unbegrenzte-vpn/ - 2026-03-03T15:30:50.000Z + 2026-03-03T15:30:50.351Z monthly 0.8 @@ -28046,7 +28235,7 @@ https://www.rfc1437.de/2008/06/27/avg-ist-ne-schweinesoftware/ - 2026-03-03T15:30:55.000Z + 2026-03-03T15:30:55.570Z monthly 0.8 @@ -28055,7 +28244,7 @@ https://www.rfc1437.de/2008/06/27/chuck-moore-s-wonderful-colorforth-programming/ - 2026-03-07T21:08:52.000Z + 2026-03-07T21:08:52.424Z monthly 0.8 @@ -28064,7 +28253,7 @@ https://www.rfc1437.de/2008/06/27/keylogger-in-javascript-mit-ie-bis-version-8beta/ - 2026-03-03T15:31:05.000Z + 2026-03-03T15:31:05.786Z monthly 0.8 @@ -28073,7 +28262,7 @@ https://www.rfc1437.de/2008/06/27/so-kann-man-mit-atommuell-nicht-umgehen/ - 2026-03-03T15:31:09.000Z + 2026-03-03T15:31:09.927Z monthly 0.8 @@ -28082,7 +28271,7 @@ https://www.rfc1437.de/2008/06/27/the-a-z-of-programming-languages-forth/ - 2026-03-07T21:08:56.000Z + 2026-03-07T21:08:56.018Z monthly 0.8 @@ -28091,7 +28280,7 @@ https://www.rfc1437.de/2008/06/26/amphibious-robot-snake-video/ - 2026-03-07T21:08:56.000Z + 2026-03-07T21:08:56.725Z monthly 0.8 @@ -28100,7 +28289,7 @@ https://www.rfc1437.de/2008/06/26/it-s-l-i-n-u-x-that-is-an-operating-system/ - 2026-03-03T15:31:22.000Z + 2026-03-03T15:31:22.454Z monthly 0.8 @@ -28109,7 +28298,7 @@ https://www.rfc1437.de/2008/06/26/omnifocus-for-iphone-and-ipod-touch/ - 2026-03-03T15:31:26.000Z + 2026-03-03T15:31:26.940Z monthly 0.8 @@ -28118,7 +28307,7 @@ https://www.rfc1437.de/2008/06/26/one-man-one-long-list-no-more-web-ads/ - 2026-03-03T15:31:31.000Z + 2026-03-03T15:31:31.939Z monthly 0.8 @@ -28127,7 +28316,7 @@ https://www.rfc1437.de/2008/06/26/perfect-multi-column-css-liquid-layouts-iphone/ - 2026-03-03T15:31:35.000Z + 2026-03-03T15:31:35.546Z monthly 0.8 @@ -28136,7 +28325,7 @@ https://www.rfc1437.de/2008/06/26/ruinen-von-babylon-durch-irakkrieg-irreparabel/ - 2026-03-03T15:31:40.000Z + 2026-03-03T15:31:40.518Z monthly 0.8 @@ -28145,7 +28334,7 @@ https://www.rfc1437.de/2008/06/26/stroebele-verlaesst-bnd-ausschuss-zeitweilig/ - 2026-03-03T15:31:45.000Z + 2026-03-03T15:31:45.453Z monthly 0.8 @@ -28154,7 +28343,7 @@ https://www.rfc1437.de/2008/06/26/the-floating-boxes-css-layout/ - 2026-03-03T15:31:49.000Z + 2026-03-03T15:31:49.055Z monthly 0.8 @@ -28163,7 +28352,7 @@ https://www.rfc1437.de/2008/06/25/abhoerwahn-in-berlin/ - 2026-03-03T15:31:53.000Z + 2026-03-03T15:31:53.937Z monthly 0.8 @@ -28172,7 +28361,7 @@ https://www.rfc1437.de/2008/06/25/arbeitslosengeld-ab-2012-nur-noch-mit-chipkarte/ - 2026-03-03T15:31:57.000Z + 2026-03-03T15:31:57.913Z monthly 0.8 @@ -28181,7 +28370,7 @@ https://www.rfc1437.de/2008/06/25/front-range-pythoneering-flipping-the-2-5-bit-for/ - 2026-03-03T15:32:02.000Z + 2026-03-03T15:32:02.454Z monthly 0.8 @@ -28190,7 +28379,7 @@ https://www.rfc1437.de/2008/06/25/white-house-refused-to-open-pollutants-e-mail/ - 2026-03-03T15:32:06.000Z + 2026-03-03T15:32:06.912Z monthly 0.8 @@ -28199,7 +28388,7 @@ https://www.rfc1437.de/2008/06/24/politische-datenbank-parteienfinanzierung/ - 2026-03-03T15:32:10.000Z + 2026-03-03T15:32:10.437Z monthly 0.8 @@ -28208,7 +28397,7 @@ https://www.rfc1437.de/2008/06/24/symbian-soll-open-source-werden/ - 2026-03-03T15:32:13.000Z + 2026-03-03T15:32:13.603Z monthly 0.8 @@ -28217,7 +28406,7 @@ https://www.rfc1437.de/2008/06/23/amazon-ec2-basics-for-python-programmers/ - 2026-03-03T15:32:17.000Z + 2026-03-03T15:32:17.685Z monthly 0.8 @@ -28235,7 +28424,7 @@ https://www.rfc1437.de/2008/06/23/interview-oel-spekulanten-sind-keine-preistreiber/ - 2026-03-03T15:32:27.000Z + 2026-03-03T15:32:27.904Z monthly 0.8 @@ -28244,7 +28433,7 @@ https://www.rfc1437.de/2008/06/23/more-systems-programming-with-plt-scheme/ - 2026-03-03T15:32:31.000Z + 2026-03-03T15:32:31.471Z monthly 0.8 @@ -28253,7 +28442,7 @@ https://www.rfc1437.de/2008/06/23/nokia-kauft-plazes/ - 2026-03-03T15:32:35.000Z + 2026-03-03T15:32:35.504Z monthly 0.8 @@ -28262,7 +28451,7 @@ https://www.rfc1437.de/2008/06/23/olympus-e-420-review/ - 2026-03-03T15:32:40.000Z + 2026-03-03T15:32:40.428Z monthly 0.8 @@ -28271,7 +28460,7 @@ https://www.rfc1437.de/2008/06/23/olympus-zuiko-digital-25mm-1-2-8-lens-review/ - 2026-03-03T15:32:44.000Z + 2026-03-03T15:32:44.971Z monthly 0.8 @@ -28280,7 +28469,7 @@ https://www.rfc1437.de/2008/06/23/python-cookbook-2nd-edition/ - 2026-03-03T15:32:48.000Z + 2026-03-03T15:32:48.559Z monthly 0.8 @@ -28289,7 +28478,7 @@ https://www.rfc1437.de/2008/06/23/ravelry-a-knit-and-crochet-community/ - 2026-03-03T15:32:52.000Z + 2026-03-03T15:32:52.605Z monthly 0.8 @@ -28298,7 +28487,7 @@ https://www.rfc1437.de/2008/06/23/screamyguy-random-acts-of-programming/ - 2026-03-03T15:32:55.000Z + 2026-03-03T15:32:55.754Z monthly 0.8 @@ -28307,7 +28496,7 @@ https://www.rfc1437.de/2008/06/21/telekom-hoerte-mutmassliche-hacker-ab/ - 2026-03-03T15:33:00.000Z + 2026-03-03T15:33:00.669Z monthly 0.8 @@ -28316,7 +28505,7 @@ https://www.rfc1437.de/2008/06/20/aquamacs-emacs-for-mac-os-x/ - 2026-03-03T15:33:05.000Z + 2026-03-03T15:33:05.594Z monthly 0.8 @@ -28325,7 +28514,7 @@ https://www.rfc1437.de/2008/06/19/alte-google-mail-domain-in-deutschland-verboten/ - 2026-03-03T15:33:09.000Z + 2026-03-03T15:33:09.170Z monthly 0.8 @@ -28334,7 +28523,7 @@ https://www.rfc1437.de/2008/06/19/klassische-ermittlung-halt-doch-besser-als/ - 2026-03-03T15:33:14.000Z + 2026-03-03T15:33:14.281Z monthly 0.8 @@ -28343,7 +28532,7 @@ https://www.rfc1437.de/2008/06/17/the-mundaneum-museum-honors-the-first-concept-of/ - 2026-03-07T21:08:59.000Z + 2026-03-07T21:08:59.705Z monthly 0.8 @@ -28352,7 +28541,7 @@ https://www.rfc1437.de/2008/06/16/olympus-ls-10-digitaler-recorder/ - 2026-03-03T15:33:22.000Z + 2026-03-03T15:33:22.225Z monthly 0.8 @@ -28361,7 +28550,7 @@ https://www.rfc1437.de/2008/06/13/fan-programming-language/ - 2026-03-03T15:33:25.000Z + 2026-03-03T15:33:25.778Z monthly 0.8 @@ -28370,7 +28559,7 @@ https://www.rfc1437.de/2008/06/13/plt-scheme-blog/ - 2026-03-03T15:33:29.000Z + 2026-03-03T15:33:29.389Z monthly 0.8 @@ -28379,7 +28568,7 @@ https://www.rfc1437.de/2008/06/12/squeak-on-the-iphone/ - 2026-03-03T15:33:33.000Z + 2026-03-03T15:33:33.092Z monthly 0.8 @@ -28388,7 +28577,7 @@ https://www.rfc1437.de/2008/06/11/alice-org/ - 2026-03-03T15:33:37.000Z + 2026-03-03T15:33:37.071Z monthly 0.8 @@ -28397,7 +28586,7 @@ https://www.rfc1437.de/2008/06/11/avox-antares-vocal-toolkit/ - 2026-03-03T15:33:41.000Z + 2026-03-03T15:33:41.983Z monthly 0.8 @@ -28406,7 +28595,7 @@ https://www.rfc1437.de/2008/06/11/lunatic-python/ - 2026-03-03T15:33:45.000Z + 2026-03-03T15:33:45.231Z monthly 0.8 @@ -28415,7 +28604,7 @@ https://www.rfc1437.de/2008/06/09/90-of-enviro-skeptic-books-have-think-tank-roots/ - 2026-03-03T15:33:50.000Z + 2026-03-03T15:33:50.196Z monthly 0.8 @@ -28424,7 +28613,7 @@ https://www.rfc1437.de/2008/06/09/a-spellchecker-used-to-be-a-major-feat-of/ - 2026-03-07T21:09:00.000Z + 2026-03-07T21:09:00.628Z monthly 0.8 @@ -28433,7 +28622,7 @@ https://www.rfc1437.de/2008/06/09/algorithmic-botany-publications/ - 2026-03-03T15:33:57.000Z + 2026-03-03T15:33:57.335Z monthly 0.8 @@ -28442,7 +28631,7 @@ https://www.rfc1437.de/2008/06/09/cog-blog/ - 2026-03-03T15:34:01.000Z + 2026-03-03T15:34:01.780Z monthly 0.8 @@ -28451,7 +28640,7 @@ https://www.rfc1437.de/2008/06/09/factor-a-practical-stack-language/ - 2026-03-03T15:34:06.000Z + 2026-03-03T15:34:06.269Z monthly 0.8 @@ -28460,7 +28649,7 @@ https://www.rfc1437.de/2008/06/09/fractured-yearfrac-and-discounted-disc/ - 2026-03-03T15:34:11.000Z + 2026-03-03T15:34:11.215Z monthly 0.8 @@ -28469,7 +28658,7 @@ https://www.rfc1437.de/2008/06/09/tilestack-your-creative-playground/ - 2026-03-03T15:34:14.000Z + 2026-03-03T15:34:14.786Z monthly 0.8 @@ -28478,7 +28667,7 @@ https://www.rfc1437.de/2008/06/06/an-exotic-matter/ - 2026-03-03T15:34:18.000Z + 2026-03-03T15:34:18.443Z monthly 0.8 @@ -28487,7 +28676,7 @@ https://www.rfc1437.de/2008/06/06/anne-gegen-den-politischen-willen/ - 2026-03-03T15:34:22.000Z + 2026-03-03T15:34:22.912Z monthly 0.8 @@ -28496,7 +28685,7 @@ https://www.rfc1437.de/2008/06/06/introducing-gmail-labs/ - 2026-03-03T15:34:26.000Z + 2026-03-03T15:34:26.955Z monthly 0.8 @@ -28505,7 +28694,7 @@ https://www.rfc1437.de/2008/06/06/regierung-will-persoenliche-buergerdaten-an-die/ - 2026-03-03T15:34:31.000Z + 2026-03-03T15:34:31.437Z monthly 0.8 @@ -28514,7 +28703,7 @@ https://www.rfc1437.de/2008/06/06/toy-scheme-interpreter-in-j/ - 2026-03-03T15:34:34.000Z + 2026-03-03T15:34:34.965Z monthly 0.8 @@ -28523,7 +28712,7 @@ https://www.rfc1437.de/2008/06/06/zukunft-nichts-als-ein-grosser-spass-tagesschau-de/ - 2026-03-03T15:34:39.000Z + 2026-03-03T15:34:39.451Z monthly 0.8 @@ -28532,7 +28721,7 @@ https://www.rfc1437.de/2008/06/05/ruby-processing/ - 2026-03-03T15:34:42.000Z + 2026-03-03T15:34:42.993Z monthly 0.8 @@ -28541,7 +28730,7 @@ https://www.rfc1437.de/2008/06/05/the-lew-language/ - 2026-03-03T15:34:47.000Z + 2026-03-03T15:34:47.553Z monthly 0.8 @@ -28550,7 +28739,7 @@ https://www.rfc1437.de/2008/06/04/plt-scheme-version-4-0-is-coming-soon/ - 2026-03-03T15:34:51.000Z + 2026-03-03T15:34:51.610Z monthly 0.8 @@ -28559,7 +28748,7 @@ https://www.rfc1437.de/2008/06/03/kalte-platte-bei-kerzenschein/ - 2026-03-03T15:34:56.000Z + 2026-03-03T15:34:56.619Z monthly 0.8 @@ -28568,7 +28757,7 @@ https://www.rfc1437.de/2008/06/02/dive-into-greasemonkey/ - 2026-03-03T15:35:00.000Z + 2026-03-03T15:35:00.177Z monthly 0.8 @@ -28577,7 +28766,7 @@ https://www.rfc1437.de/2008/06/02/django-ae-utils/ - 2026-03-03T15:35:03.000Z + 2026-03-03T15:35:03.749Z monthly 0.8 @@ -28586,7 +28775,7 @@ https://www.rfc1437.de/2008/06/02/flickrfs/ - 2026-03-03T15:35:07.000Z + 2026-03-03T15:35:07.771Z monthly 0.8 @@ -28595,7 +28784,7 @@ https://www.rfc1437.de/2008/06/02/google-will-doch-nur-spielen/ - 2026-03-03T15:35:12.000Z + 2026-03-03T15:35:12.329Z monthly 0.8 @@ -28604,7 +28793,7 @@ https://www.rfc1437.de/2008/06/02/goosh-org-the-unofficial-google-shell/ - 2026-03-03T15:35:15.000Z + 2026-03-03T15:35:15.906Z monthly 0.8 @@ -28613,7 +28802,7 @@ https://www.rfc1437.de/2008/06/02/retroshare-a-secure-combined-file-sharing-chat-im/ - 2026-03-03T15:35:20.000Z + 2026-03-03T15:35:20.585Z monthly 0.8 @@ -28622,7 +28811,7 @@ https://www.rfc1437.de/2008/06/02/rwe-will-kunden-reinen-atomstrom-tarif-anbieten/ - 2026-03-03T15:35:24.000Z + 2026-03-03T15:35:24.613Z monthly 0.8 @@ -28631,7 +28820,7 @@ https://www.rfc1437.de/2008/06/01/arbeitgeber-drohen-mit-klage-gegen-lohnnebenkosten/ - 2026-03-03T15:35:29.000Z + 2026-03-03T15:35:29.571Z monthly 0.8 @@ -28640,7 +28829,7 @@ https://www.rfc1437.de/2008/05/30/conway-s-game-of-life-in-one-line-of-apl/ - 2026-03-07T21:09:03.000Z + 2026-03-07T21:09:03.700Z monthly 0.8 @@ -28649,7 +28838,7 @@ https://www.rfc1437.de/2008/05/30/no-racism-net-presseerklaerung-der-rechtshilfe/ - 2026-03-03T15:35:38.000Z + 2026-03-03T15:35:38.151Z monthly 0.8 @@ -28658,7 +28847,7 @@ https://www.rfc1437.de/2008/05/30/revision3-dos/ - 2026-03-07T21:09:05.000Z + 2026-03-07T21:09:05.742Z monthly 0.8 @@ -28667,7 +28856,7 @@ https://www.rfc1437.de/2008/05/26/best-image-ever/ - 2026-03-07T21:09:06.000Z + 2026-03-07T21:09:06.771Z monthly 0.8 @@ -28676,7 +28865,7 @@ https://www.rfc1437.de/2008/05/26/cocoa-text-system/ - 2026-03-03T15:35:49.000Z + 2026-03-03T15:35:49.897Z monthly 0.8 @@ -28685,7 +28874,7 @@ https://www.rfc1437.de/2008/05/26/impromptu/ - 2026-03-03T15:35:53.000Z + 2026-03-03T15:35:53.094Z monthly 0.8 @@ -28694,7 +28883,7 @@ https://www.rfc1437.de/2008/05/26/tp-opfer-auf-dem-altar-der-einheitlichkeit/ - 2026-03-03T15:35:58.000Z + 2026-03-03T15:35:58.051Z monthly 0.8 @@ -28703,7 +28892,7 @@ https://www.rfc1437.de/2008/05/19/amazon-byteflow-hgshelve/ - 2026-03-03T15:36:02.000Z + 2026-03-03T15:36:02.031Z monthly 0.8 @@ -28712,7 +28901,7 @@ https://www.rfc1437.de/2008/05/19/yhc-erlang-proof-of-concept/ - 2026-03-03T15:36:06.000Z + 2026-03-03T15:36:06.042Z monthly 0.8 @@ -28721,7 +28910,7 @@ https://www.rfc1437.de/2008/05/18/endgueltiges-aus-fuer-wahlcomputer-in-den/ - 2026-03-03T15:36:11.000Z + 2026-03-03T15:36:11.016Z monthly 0.8 @@ -28730,7 +28919,7 @@ https://www.rfc1437.de/2008/05/18/radius-hornet/ - 2026-03-03T15:36:15.000Z + 2026-03-03T15:36:15.930Z monthly 0.8 @@ -28739,7 +28928,7 @@ https://www.rfc1437.de/2008/05/17/sic-transit-gloria-laptopi/ - 2026-03-03T15:36:20.000Z + 2026-03-03T15:36:20.622Z monthly 0.8 @@ -28748,7 +28937,7 @@ https://www.rfc1437.de/2008/05/15/consequences-of-the-ssh-ssl-weakness/ - 2026-03-03T15:36:25.000Z + 2026-03-03T15:36:25.159Z monthly 0.8 @@ -28757,7 +28946,7 @@ https://www.rfc1437.de/2008/05/15/debian-openssl-predictable-prng-toys/ - 2026-03-03T15:36:29.000Z + 2026-03-03T15:36:29.164Z monthly 0.8 @@ -28766,7 +28955,7 @@ https://www.rfc1437.de/2008/05/15/fragwuerdige-risikobewertung-ist-gen-futter/ - 2026-03-03T15:36:34.000Z + 2026-03-03T15:36:34.634Z monthly 0.8 @@ -28775,7 +28964,7 @@ https://www.rfc1437.de/2008/05/15/getting-started-with-processing-js/ - 2026-03-03T15:36:38.000Z + 2026-03-03T15:36:38.213Z monthly 0.8 @@ -28784,7 +28973,7 @@ https://www.rfc1437.de/2008/05/15/google-doctype/ - 2026-03-03T15:36:41.000Z + 2026-03-03T15:36:41.764Z monthly 0.8 @@ -28793,7 +28982,7 @@ https://www.rfc1437.de/2008/05/15/lily/ - 2026-03-03T15:36:44.000Z + 2026-03-03T15:36:44.946Z monthly 0.8 @@ -28802,7 +28991,7 @@ https://www.rfc1437.de/2008/05/15/nudibranchs/ - 2026-03-03T15:36:48.000Z + 2026-03-03T15:36:48.552Z monthly 0.8 @@ -28811,7 +29000,7 @@ https://www.rfc1437.de/2008/05/15/processing-appjet-net/ - 2026-03-03T15:36:52.000Z + 2026-03-03T15:36:52.218Z monthly 0.8 @@ -28820,7 +29009,7 @@ https://www.rfc1437.de/2008/05/15/some-chrome-for-pjs/ - 2026-03-03T15:36:56.000Z + 2026-03-03T15:36:56.080Z monthly 0.8 @@ -28829,7 +29018,7 @@ https://www.rfc1437.de/2008/05/15/the-bla-page/ - 2026-03-03T15:36:59.000Z + 2026-03-03T15:36:59.245Z monthly 0.8 @@ -28838,7 +29027,7 @@ https://www.rfc1437.de/2008/05/14/debian-and-openssl-the-aftermath/ - 2026-03-03T15:37:03.000Z + 2026-03-03T15:37:03.746Z monthly 0.8 @@ -28847,7 +29036,7 @@ https://www.rfc1437.de/2008/05/14/panoramafreiheit-in-gefahr/ - 2026-03-03T15:37:08.000Z + 2026-03-03T15:37:08.691Z monthly 0.8 @@ -28856,7 +29045,7 @@ https://www.rfc1437.de/2008/05/14/vendors-are-bad-for-security/ - 2026-03-03T15:37:13.000Z + 2026-03-03T15:37:13.707Z monthly 0.8 @@ -28865,7 +29054,7 @@ https://www.rfc1437.de/2008/05/14/wallraff-deckt-missstaende-in-brotfabrik-auf/ - 2026-03-03T15:37:17.000Z + 2026-03-03T15:37:17.348Z monthly 0.8 @@ -28874,7 +29063,7 @@ https://www.rfc1437.de/2008/05/13/injektion-gegen-laehmung/ - 2026-03-03T15:37:21.000Z + 2026-03-03T15:37:21.180Z monthly 0.8 @@ -28883,7 +29072,7 @@ https://www.rfc1437.de/2008/05/13/kamelia/ - 2026-03-03T15:37:24.000Z + 2026-03-03T15:37:24.871Z monthly 0.8 @@ -28892,7 +29081,7 @@ https://www.rfc1437.de/2008/05/13/pg8000-pure-python-postgresql-interface-w-dbapi-2/ - 2026-03-07T21:09:09.000Z + 2026-03-07T21:09:09.640Z monthly 0.8 @@ -28901,7 +29090,7 @@ https://www.rfc1437.de/2008/05/13/us-offizier-will-abschreckung-im-cyberspace/ - 2026-03-03T15:37:33.000Z + 2026-03-03T15:37:33.585Z monthly 0.8 @@ -28910,7 +29099,7 @@ https://www.rfc1437.de/2008/05/13/why-your-internet-experience-is-slow/ - 2026-03-07T21:09:10.000Z + 2026-03-07T21:09:10.771Z monthly 0.8 @@ -28919,7 +29108,7 @@ https://www.rfc1437.de/2008/05/09/eine-gewisse-schamlosigkeit/ - 2026-03-03T15:39:42.000Z + 2026-03-03T15:39:42.818Z monthly 0.8 @@ -28928,7 +29117,7 @@ https://www.rfc1437.de/2008/05/09/fseventer/ - 2026-03-03T15:39:45.000Z + 2026-03-03T15:39:45.882Z monthly 0.8 @@ -28937,7 +29126,7 @@ https://www.rfc1437.de/2008/05/09/muenster-steht-kurz-still/ - 2026-03-03T15:39:48.000Z + 2026-03-03T15:39:48.727Z monthly 0.8 @@ -28946,7 +29135,7 @@ https://www.rfc1437.de/2008/05/09/taskpaper/ - 2026-03-03T15:39:52.000Z + 2026-03-03T15:39:52.303Z monthly 0.8 @@ -28955,7 +29144,7 @@ https://www.rfc1437.de/2008/05/09/wurde-schrottbeton-im-kernkraftwerk-verbaut/ - 2026-03-03T15:39:56.000Z + 2026-03-03T15:39:56.089Z monthly 0.8 @@ -28964,7 +29153,7 @@ https://www.rfc1437.de/2008/05/07/hacksector-cc-als-musterfall-fuer-202-c/ - 2026-03-03T15:40:00.000Z + 2026-03-03T15:40:00.247Z monthly 0.8 @@ -28973,7 +29162,7 @@ https://www.rfc1437.de/2008/05/07/phisher-gehen-mit-vorladungen-auf-walfang/ - 2026-03-03T15:40:04.000Z + 2026-03-03T15:40:04.008Z monthly 0.8 @@ -28982,7 +29171,7 @@ https://www.rfc1437.de/2008/05/07/scm-integration-scripts/ - 2026-03-03T15:40:06.000Z + 2026-03-03T15:40:06.774Z monthly 0.8 @@ -28991,7 +29180,7 @@ https://www.rfc1437.de/2008/05/07/telekom-chef-sieht-managerbezuege-als-angemessen/ - 2026-03-03T15:40:10.000Z + 2026-03-03T15:40:10.296Z monthly 0.8 @@ -29000,7 +29189,7 @@ https://www.rfc1437.de/2008/05/06/sneaking-ruby-through-google-app-engine-and-other/ - 2026-03-03T15:40:13.000Z + 2026-03-03T15:40:13.406Z monthly 0.8 @@ -29009,7 +29198,7 @@ https://www.rfc1437.de/2008/05/06/vi-in-javascript/ - 2026-03-03T15:40:15.000Z + 2026-03-03T15:40:15.835Z monthly 0.8 @@ -29018,7 +29207,7 @@ https://www.rfc1437.de/2008/05/05/announcing-teh-the-minimalist-blog-tool-using/ - 2026-03-03T15:40:19.000Z + 2026-03-03T15:40:19.029Z monthly 0.8 @@ -29027,7 +29216,7 @@ https://www.rfc1437.de/2008/05/05/frag/ - 2026-03-03T15:40:21.000Z + 2026-03-03T15:40:21.488Z monthly 0.8 @@ -29036,7 +29225,7 @@ https://www.rfc1437.de/2008/05/05/magma/ - 2026-03-03T15:40:23.000Z + 2026-03-03T15:40:23.936Z monthly 0.8 @@ -29045,7 +29234,7 @@ https://www.rfc1437.de/2008/05/05/ready-lisp-common-lisp-for-mac-os-x/ - 2026-03-03T15:40:27.000Z + 2026-03-03T15:40:27.100Z monthly 0.8 @@ -29054,7 +29243,7 @@ https://www.rfc1437.de/2008/05/02/daz-productions-hexagon-2-5/ - 2026-03-03T15:40:30.000Z + 2026-03-03T15:40:30.892Z monthly 0.8 @@ -29063,7 +29252,7 @@ https://www.rfc1437.de/2008/05/02/greasekit-user-scripting-for-all-webkit/ - 2026-03-03T15:40:34.000Z + 2026-03-03T15:40:34.417Z monthly 0.8 @@ -29072,7 +29261,7 @@ https://www.rfc1437.de/2008/05/02/mailplane/ - 2026-03-03T15:40:37.000Z + 2026-03-03T15:40:37.906Z monthly 0.8 @@ -29081,7 +29270,7 @@ https://www.rfc1437.de/2008/05/02/neue-version-von-virtualbox-laeuft-auch-unter-mac/ - 2026-03-03T15:40:41.000Z + 2026-03-03T15:40:41.798Z monthly 0.8 @@ -29090,7 +29279,7 @@ https://www.rfc1437.de/2008/05/02/tidbits-entertainment-thank-you-for-not-playing/ - 2026-03-03T15:40:44.000Z + 2026-03-03T15:40:44.992Z monthly 0.8 @@ -29099,7 +29288,7 @@ https://www.rfc1437.de/2008/05/02/your-personal-data-just-got-permanently-cached-at/ - 2026-03-03T15:40:48.000Z + 2026-03-03T15:40:48.582Z monthly 0.8 @@ -29108,7 +29297,7 @@ https://www.rfc1437.de/2008/05/01/how-do-i-delete-my-facebook-account/ - 2026-03-03T15:40:51.000Z + 2026-03-03T15:40:51.444Z monthly 0.8 @@ -29117,7 +29306,7 @@ https://www.rfc1437.de/2008/04/28/usboverdrive/ - 2026-03-03T15:40:54.000Z + 2026-03-03T15:40:54.658Z monthly 0.8 @@ -29126,7 +29315,7 @@ https://www.rfc1437.de/2008/04/27/limp-when-you-need-more-than-just-a-lisp/ - 2026-03-03T15:40:57.000Z + 2026-03-03T15:40:57.880Z monthly 0.8 @@ -29135,7 +29324,7 @@ https://www.rfc1437.de/2008/04/26/verlogenes-getue-gegen-internetzensur/ - 2026-03-03T15:41:01.000Z + 2026-03-03T15:41:01.471Z monthly 0.8 @@ -29144,7 +29333,7 @@ https://www.rfc1437.de/2008/04/25/victorian-all-in-one-pc/ - 2026-03-03T15:41:04.000Z + 2026-03-03T15:41:04.305Z monthly 0.8 @@ -29153,7 +29342,7 @@ https://www.rfc1437.de/2008/04/21/geplantes-bka-gesetz-die-lidlisierung-des-rechts/ - 2026-03-03T15:41:08.000Z + 2026-03-03T15:41:08.296Z monthly 0.8 @@ -29162,7 +29351,7 @@ https://www.rfc1437.de/2008/04/21/programming-languages-application-and/ - 2026-03-03T15:41:11.000Z + 2026-03-03T15:41:11.185Z monthly 0.8 @@ -29171,7 +29360,7 @@ https://www.rfc1437.de/2008/04/21/rfid-system-mifare-classic-geknackt/ - 2026-03-03T15:41:15.000Z + 2026-03-03T15:41:15.202Z monthly 0.8 @@ -29180,7 +29369,7 @@ https://www.rfc1437.de/2008/04/18/bbc-radio-4-the-hitchhiker-s-guide-to-the-galaxy/ - 2026-03-03T15:41:18.000Z + 2026-03-03T15:41:18.130Z monthly 0.8 @@ -29189,7 +29378,7 @@ https://www.rfc1437.de/2008/04/18/milliways-infocom-s-unreleased-sequel-to/ - 2026-03-07T21:09:14.000Z + 2026-03-07T21:09:14.753Z monthly 0.8 @@ -29198,7 +29387,7 @@ https://www.rfc1437.de/2008/04/18/nikon-d3-review/ - 2026-03-03T15:41:25.000Z + 2026-03-03T15:41:25.700Z monthly 0.8 @@ -29207,7 +29396,7 @@ https://www.rfc1437.de/2008/04/18/stundenloehne-unter-fuenf-euro-brutto/ - 2026-03-03T15:41:29.000Z + 2026-03-03T15:41:29.114Z monthly 0.8 @@ -29216,7 +29405,7 @@ https://www.rfc1437.de/2008/04/18/the-flying-meat-wiki-acorn/ - 2026-03-03T15:41:32.000Z + 2026-03-03T15:41:32.709Z monthly 0.8 @@ -29225,7 +29414,7 @@ https://www.rfc1437.de/2008/04/18/the-flying-meat-wiki-voodoopad/ - 2026-03-03T15:41:36.000Z + 2026-03-03T15:41:36.670Z monthly 0.8 @@ -29234,7 +29423,7 @@ https://www.rfc1437.de/2008/04/17/as3-flash-physics-engine-box2dflashas3-2-0-0/ - 2026-03-07T21:09:15.000Z + 2026-03-07T21:09:15.575Z monthly 0.8 @@ -29243,7 +29432,7 @@ https://www.rfc1437.de/2008/04/17/breaking-news-for-sky-afficionados-apophis-risk/ - 2026-03-03T15:41:44.000Z + 2026-03-03T15:41:44.611Z monthly 0.8 @@ -29252,7 +29441,7 @@ https://www.rfc1437.de/2008/04/17/infektionswerkzeug-fuer-sql-server-und-iis/ - 2026-03-03T15:41:48.000Z + 2026-03-03T15:41:48.425Z monthly 0.8 @@ -29261,7 +29450,7 @@ https://www.rfc1437.de/2008/04/17/kirchliche-arbeitgeber-wollen-keinen-mindestlohn/ - 2026-03-03T15:41:53.000Z + 2026-03-03T15:41:53.343Z monthly 0.8 @@ -29270,7 +29459,7 @@ https://www.rfc1437.de/2008/04/17/lighthouse/ - 2026-03-03T15:41:56.000Z + 2026-03-03T15:41:56.904Z monthly 0.8 @@ -29279,7 +29468,7 @@ https://www.rfc1437.de/2008/04/17/nasa-extends-saturn-mission-for-another-2-years/ - 2026-03-03T15:42:01.000Z + 2026-03-03T15:42:01.451Z monthly 0.8 @@ -29288,7 +29477,7 @@ https://www.rfc1437.de/2008/04/17/port-map-and-tcmportmapper/ - 2026-03-03T15:42:05.000Z + 2026-03-03T15:42:05.625Z monthly 0.8 @@ -29297,7 +29486,7 @@ https://www.rfc1437.de/2008/04/17/sleep-java-scripting-language/ - 2026-03-03T15:42:09.000Z + 2026-03-03T15:42:09.409Z monthly 0.8 @@ -29306,7 +29495,7 @@ https://www.rfc1437.de/2008/04/17/the-iphone-sdk-and-free-software-not-a-match/ - 2026-03-03T15:42:13.000Z + 2026-03-03T15:42:13.710Z monthly 0.8 @@ -29315,7 +29504,7 @@ https://www.rfc1437.de/2008/04/14/amazon-web-services-blog-storage-space-the-final/ - 2026-03-03T15:42:18.000Z + 2026-03-03T15:42:18.052Z monthly 0.8 @@ -29324,7 +29513,7 @@ https://www.rfc1437.de/2008/04/14/chdk-in-brief/ - 2026-03-03T15:42:23.000Z + 2026-03-03T15:42:23.699Z monthly 0.8 @@ -29333,7 +29522,7 @@ https://www.rfc1437.de/2008/04/14/gericht-anzeige-von-thumbnails-bei-suchmaschinen/ - 2026-03-03T15:42:29.000Z + 2026-03-03T15:42:29.766Z monthly 0.8 @@ -29342,7 +29531,7 @@ https://www.rfc1437.de/2008/04/14/latest-advance-in-artificial-intelligence/ - 2026-03-07T21:09:17.000Z + 2026-03-07T21:09:17.010Z monthly 0.8 @@ -29351,7 +29540,7 @@ https://www.rfc1437.de/2008/04/14/seasidexul/ - 2026-03-03T15:42:41.000Z + 2026-03-03T15:42:41.112Z monthly 0.8 @@ -29360,7 +29549,7 @@ https://www.rfc1437.de/2008/04/11/ard-und-zdf-zurueck-ins-mittelalter/ - 2026-03-03T15:42:47.000Z + 2026-03-03T15:42:47.130Z monthly 0.8 @@ -29369,7 +29558,7 @@ https://www.rfc1437.de/2008/04/11/digging-into-factor-s-compiler/ - 2026-03-03T15:42:51.000Z + 2026-03-03T15:42:51.626Z monthly 0.8 @@ -29378,7 +29567,7 @@ https://www.rfc1437.de/2008/04/11/filesharing-wird-gefaehrlicher-oder-auch-nicht/ - 2026-03-03T15:42:56.000Z + 2026-03-03T15:42:56.093Z monthly 0.8 @@ -29387,7 +29576,7 @@ https://www.rfc1437.de/2008/04/11/github/ - 2026-03-03T15:42:59.000Z + 2026-03-03T15:42:59.922Z monthly 0.8 @@ -29396,7 +29585,7 @@ https://www.rfc1437.de/2008/04/11/google-app-engine-for-developers/ - 2026-03-03T15:43:03.000Z + 2026-03-03T15:43:03.869Z monthly 0.8 @@ -29405,7 +29594,7 @@ https://www.rfc1437.de/2008/04/11/network-solutions-not-just-thieves-and-hijackers/ - 2026-03-03T15:43:09.000Z + 2026-03-03T15:43:09.210Z monthly 0.8 @@ -29414,7 +29603,7 @@ https://www.rfc1437.de/2008/04/11/strange-tcp-networking-problems-with-mac-os-x-10/ - 2026-03-03T15:43:13.000Z + 2026-03-03T15:43:13.572Z monthly 0.8 @@ -29423,7 +29612,7 @@ https://www.rfc1437.de/2008/04/11/unicode-5-1-enthaelt-ss-als-grossbuchstaben/ - 2026-03-03T15:43:17.000Z + 2026-03-03T15:43:17.876Z monthly 0.8 @@ -29432,7 +29621,7 @@ https://www.rfc1437.de/2008/04/09/google-app-engine/ - 2026-03-03T15:43:22.000Z + 2026-03-03T15:43:22.834Z monthly 0.8 @@ -29441,7 +29630,7 @@ https://www.rfc1437.de/2008/04/04/the-world-in-virtual-reality-vr-city-maps-360/ - 2026-03-07T21:09:17.000Z + 2026-03-07T21:09:17.985Z monthly 0.8 @@ -29450,7 +29639,7 @@ https://www.rfc1437.de/2008/04/03/der-neue-geschaeftsplan-von-sco-stoesst-schon-im/ - 2026-03-03T15:43:32.000Z + 2026-03-03T15:43:32.837Z monthly 0.8 @@ -29459,7 +29648,7 @@ https://www.rfc1437.de/2008/04/03/magenta/ - 2026-03-03T15:43:38.000Z + 2026-03-03T15:43:38.520Z monthly 0.8 @@ -29468,7 +29657,7 @@ https://www.rfc1437.de/2008/04/03/pydev/ - 2026-03-03T15:43:42.000Z + 2026-03-03T15:43:42.693Z monthly 0.8 @@ -29477,7 +29666,7 @@ https://www.rfc1437.de/2008/04/03/pydev-extensions/ - 2026-03-03T15:43:46.000Z + 2026-03-03T15:43:46.413Z monthly 0.8 @@ -29486,7 +29675,7 @@ https://www.rfc1437.de/2008/04/03/ral-4010-bf1773-google-search/ - 2026-03-03T15:43:50.000Z + 2026-03-03T15:43:50.584Z monthly 0.8 @@ -29495,7 +29684,7 @@ https://www.rfc1437.de/2008/04/03/ral-4010-c03f7d-google-search/ - 2026-03-03T15:43:55.000Z + 2026-03-03T15:43:55.155Z monthly 0.8 @@ -29504,7 +29693,7 @@ https://www.rfc1437.de/2008/04/03/telekom-farbverwendung/ - 2026-03-03T15:44:00.000Z + 2026-03-03T15:44:00.215Z monthly 0.8 @@ -29513,7 +29702,7 @@ https://www.rfc1437.de/2008/04/03/the-diaries-of-john-quincy-adams-a-digital/ - 2026-03-03T15:44:03.000Z + 2026-03-03T15:44:03.801Z monthly 0.8 @@ -29522,7 +29711,7 @@ https://www.rfc1437.de/2008/04/03/thompson-rivers-university-owlcam/ - 2026-03-03T15:44:07.000Z + 2026-03-03T15:44:07.407Z monthly 0.8 @@ -29531,7 +29720,7 @@ https://www.rfc1437.de/2008/04/03/towers-of-hanoi/ - 2026-03-03T15:44:11.000Z + 2026-03-03T15:44:11.554Z monthly 0.8 @@ -29540,7 +29729,7 @@ https://www.rfc1437.de/2008/04/02/interview-die-bankenaufsicht-hat-versagt-und-ist/ - 2026-03-03T15:44:16.000Z + 2026-03-03T15:44:16.612Z monthly 0.8 @@ -29549,7 +29738,7 @@ https://www.rfc1437.de/2008/04/02/itunes-jetzt-mit-tv-inhalten-auch-in-deutschland/ - 2026-03-03T15:44:21.000Z + 2026-03-03T15:44:21.143Z monthly 0.8 @@ -29558,7 +29747,7 @@ https://www.rfc1437.de/2008/04/01/kassenpatienten-muessen-laenger-auf/ - 2026-03-03T15:44:24.000Z + 2026-03-03T15:44:24.913Z monthly 0.8 @@ -29567,7 +29756,7 @@ https://www.rfc1437.de/2008/04/01/norway-seeks-to-reverse-open-xml-vote-at-iso/ - 2026-03-07T21:09:21.000Z + 2026-03-07T21:09:21.925Z monthly 0.8 @@ -29576,7 +29765,7 @@ https://www.rfc1437.de/2008/04/01/ooxml-warten-auf-die-iso-entscheidung/ - 2026-03-03T15:44:34.000Z + 2026-03-03T15:44:34.472Z monthly 0.8 @@ -29585,7 +29774,7 @@ https://www.rfc1437.de/2008/04/01/python-processing/ - 2026-03-03T15:44:38.000Z + 2026-03-03T15:44:38.516Z monthly 0.8 @@ -29594,7 +29783,7 @@ https://www.rfc1437.de/2008/04/01/tuerkei-praesident-und-premier-muessen-vor-gericht/ - 2026-03-03T15:44:43.000Z + 2026-03-03T15:44:43.121Z monthly 0.8 @@ -29603,7 +29792,7 @@ https://www.rfc1437.de/2008/03/31/ccc-publiziert-schaeubles-fingerabdruck/ - 2026-03-03T15:44:47.000Z + 2026-03-03T15:44:47.749Z monthly 0.8 @@ -29612,7 +29801,7 @@ https://www.rfc1437.de/2008/03/28/cusp/ - 2026-03-03T15:44:53.000Z + 2026-03-03T15:44:53.145Z monthly 0.8 @@ -29621,7 +29810,7 @@ https://www.rfc1437.de/2008/03/28/din-sagt-ja-zur-iso-standardisierung-von-ooxml/ - 2026-03-03T15:44:58.000Z + 2026-03-03T15:44:58.824Z monthly 0.8 @@ -29630,7 +29819,7 @@ https://www.rfc1437.de/2008/03/28/lispwithcusp/ - 2026-03-03T15:45:04.000Z + 2026-03-03T15:45:04.138Z monthly 0.8 @@ -29639,7 +29828,7 @@ https://www.rfc1437.de/2008/03/28/tdd-proven-effective-or-is-it/ - 2026-03-03T15:45:08.000Z + 2026-03-03T15:45:08.952Z monthly 0.8 @@ -29648,7 +29837,7 @@ https://www.rfc1437.de/2008/03/28/usability-problems-with-mac-sync/ - 2026-03-03T15:45:14.000Z + 2026-03-03T15:45:14.153Z monthly 0.8 @@ -29657,7 +29846,7 @@ https://www.rfc1437.de/2008/03/27/sap-ist-muell/ - 2026-03-03T15:45:18.000Z + 2026-03-03T15:45:18.320Z monthly 0.8 @@ -29666,7 +29855,7 @@ https://www.rfc1437.de/2008/03/27/transrapid-flop-stoiber-verwundert-maget-haemisch/ - 2026-03-03T15:45:23.000Z + 2026-03-03T15:45:23.720Z monthly 0.8 @@ -29675,7 +29864,7 @@ https://www.rfc1437.de/2008/03/26/spirit-darf-weiter-den-mars-erkunden/ - 2026-03-03T15:45:27.000Z + 2026-03-03T15:45:27.815Z monthly 0.8 @@ -29684,7 +29873,7 @@ https://www.rfc1437.de/2008/03/25/mars-roboter-spirit-wird-stillgelegt/ - 2026-03-03T15:45:32.000Z + 2026-03-03T15:45:32.039Z monthly 0.8 @@ -29693,7 +29882,7 @@ https://www.rfc1437.de/2008/03/25/south-park-studios/ - 2026-03-03T15:45:35.000Z + 2026-03-03T15:45:35.226Z monthly 0.8 @@ -29702,7 +29891,7 @@ https://www.rfc1437.de/2008/03/22/mcl-5-2-has-been-released-as-open-source/ - 2026-03-03T15:45:39.000Z + 2026-03-03T15:45:39.806Z monthly 0.8 @@ -29711,7 +29900,7 @@ https://www.rfc1437.de/2008/03/21/after-security-update-today-bus/ - 2026-03-03T15:45:43.000Z + 2026-03-03T15:45:43.920Z monthly 0.8 @@ -29720,7 +29909,7 @@ https://www.rfc1437.de/2008/03/21/banken-und-das-web/ - 2026-03-03T15:45:48.000Z + 2026-03-03T15:45:48.593Z monthly 0.8 @@ -29729,7 +29918,7 @@ https://www.rfc1437.de/2008/03/21/itimemachine/ - 2026-03-03T15:45:52.000Z + 2026-03-03T15:45:52.657Z monthly 0.8 @@ -29738,7 +29927,7 @@ https://www.rfc1437.de/2008/03/20/fscklog-firmware-7-3-1-fuer-802-11n-airport/ - 2026-03-03T15:45:58.000Z + 2026-03-03T15:45:58.448Z monthly 0.8 @@ -29747,7 +29936,7 @@ https://www.rfc1437.de/2008/03/18/raetsel-um-saint-exup-ry-geloest-ich-bedauere-es/ - 2026-03-03T15:46:04.000Z + 2026-03-03T15:46:04.553Z monthly 0.8 @@ -29756,7 +29945,7 @@ https://www.rfc1437.de/2008/03/17/panda3d-full-featured-open-source-python-3d-engine/ - 2026-03-03T15:46:08.000Z + 2026-03-03T15:46:08.648Z monthly 0.8 @@ -29765,7 +29954,7 @@ https://www.rfc1437.de/2008/03/17/this-is-the-end-my-friend-negroponte-says-xp-on/ - 2026-03-07T21:09:23.000Z + 2026-03-07T21:09:23.392Z monthly 0.8 @@ -29774,7 +29963,7 @@ https://www.rfc1437.de/2008/03/17/ur-scheme-a-gpl-self-hosting-compiler-from-a/ - 2026-03-03T15:46:18.000Z + 2026-03-03T15:46:18.035Z monthly 0.8 @@ -29783,7 +29972,7 @@ https://www.rfc1437.de/2008/03/15/building-a-codeless-language-module-with-bbedit-8/ - 2026-03-03T15:46:22.000Z + 2026-03-03T15:46:22.138Z monthly 0.8 @@ -29792,7 +29981,7 @@ https://www.rfc1437.de/2008/03/15/jill-bolte-taylor-my-stroke-of-insight-video/ - 2026-03-07T21:09:25.000Z + 2026-03-07T21:09:25.099Z monthly 0.8 @@ -29801,7 +29990,7 @@ https://www.rfc1437.de/2008/03/13/hacking-implanted-defibrillators-shockingly-easy/ - 2026-03-07T21:09:27.000Z + 2026-03-07T21:09:27.076Z monthly 0.8 @@ -29810,7 +29999,7 @@ https://www.rfc1437.de/2008/03/13/wie-hessens-landeschef-weiterregieren-kann-fuer/ - 2026-03-03T15:46:35.000Z + 2026-03-03T15:46:35.673Z monthly 0.8 @@ -29819,7 +30008,7 @@ https://www.rfc1437.de/2008/03/09/midikeys/ - 2026-03-03T15:46:38.000Z + 2026-03-03T15:46:38.876Z monthly 0.8 @@ -29828,7 +30017,7 @@ https://www.rfc1437.de/2008/03/09/nodebox-superfolia/ - 2026-03-03T15:46:42.000Z + 2026-03-03T15:46:42.507Z monthly 0.8 @@ -29837,7 +30026,7 @@ https://www.rfc1437.de/2008/03/09/why-is-37signals-so-arrogant/ - 2026-03-07T21:09:28.000Z + 2026-03-07T21:09:28.376Z monthly 0.8 @@ -29846,7 +30035,7 @@ https://www.rfc1437.de/2008/03/08/fluid-free-site-specific-browser-for-mac-os-x/ - 2026-03-03T15:46:51.000Z + 2026-03-03T15:46:51.194Z monthly 0.8 @@ -29855,7 +30044,7 @@ https://www.rfc1437.de/2008/03/08/prism/ - 2026-03-03T15:46:54.000Z + 2026-03-03T15:46:54.430Z monthly 0.8 @@ -29864,7 +30053,7 @@ https://www.rfc1437.de/2008/03/07/grenzen-des-wissens-wir-gegen-die-gier/ - 2026-03-03T15:46:58.000Z + 2026-03-03T15:46:58.549Z monthly 0.8 @@ -29873,7 +30062,7 @@ https://www.rfc1437.de/2008/03/07/iphone-developer-program-details/ - 2026-03-03T15:47:02.000Z + 2026-03-03T15:47:02.193Z monthly 0.8 @@ -29882,7 +30071,7 @@ https://www.rfc1437.de/2008/03/07/seaside-development-with-gnu-smalltalk/ - 2026-03-03T15:47:06.000Z + 2026-03-03T15:47:06.779Z monthly 0.8 @@ -29891,7 +30080,7 @@ https://www.rfc1437.de/2008/03/07/the-secret-diary-of-steve-jobs-happy-now-bitches/ - 2026-03-07T21:09:31.000Z + 2026-03-07T21:09:31.653Z monthly 0.8 @@ -29900,7 +30089,7 @@ https://www.rfc1437.de/2008/03/05/materialized-views-in-postgresql/ - 2026-03-03T15:47:15.000Z + 2026-03-03T15:47:15.609Z monthly 0.8 @@ -29909,7 +30098,7 @@ https://www.rfc1437.de/2008/03/03/das-ripe-analysiert-das-youtube-hijacking/ - 2026-03-03T15:47:19.000Z + 2026-03-03T15:47:19.188Z monthly 0.8 @@ -29918,7 +30107,7 @@ https://www.rfc1437.de/2008/03/03/programming-nu/ - 2026-03-03T15:47:22.000Z + 2026-03-03T15:47:22.806Z monthly 0.8 @@ -29927,7 +30116,7 @@ https://www.rfc1437.de/2008/03/02/bka-chef-voll-abgedreht/ - 2026-03-03T15:47:27.000Z + 2026-03-03T15:47:27.469Z monthly 0.8 @@ -29936,7 +30125,7 @@ https://www.rfc1437.de/2008/03/02/pygui/ - 2026-03-03T15:47:31.000Z + 2026-03-03T15:47:31.577Z monthly 0.8 @@ -29945,7 +30134,7 @@ https://www.rfc1437.de/2008/03/02/vimperator/ - 2026-03-03T15:47:35.000Z + 2026-03-03T15:47:35.265Z monthly 0.8 @@ -29954,7 +30143,7 @@ https://www.rfc1437.de/2008/03/01/pyinjector-embed-python-interpreter-and-object/ - 2026-03-08T14:20:20.000Z + 2026-03-08T14:20:20.057Z monthly 0.8 @@ -29963,7 +30152,7 @@ https://www.rfc1437.de/2008/02/29/abramowitz-and-stegun-handbook-of-mathematical/ - 2026-03-03T15:47:42.000Z + 2026-03-03T15:47:42.572Z monthly 0.8 @@ -29972,7 +30161,7 @@ https://www.rfc1437.de/2008/02/29/changes/ - 2026-03-03T15:47:46.000Z + 2026-03-03T15:47:46.716Z monthly 0.8 @@ -29981,7 +30170,7 @@ https://www.rfc1437.de/2008/02/29/flying-meat-acorn/ - 2026-03-03T15:47:50.000Z + 2026-03-03T15:47:50.856Z monthly 0.8 @@ -29990,7 +30179,7 @@ https://www.rfc1437.de/2008/02/29/imaginator/ - 2026-03-03T15:47:54.000Z + 2026-03-03T15:47:54.945Z monthly 0.8 @@ -29999,7 +30188,7 @@ https://www.rfc1437.de/2008/02/29/special-report-fixing-short-iphone-battery-life/ - 2026-03-03T15:47:59.000Z + 2026-03-03T15:47:59.476Z monthly 0.8 @@ -30008,7 +30197,7 @@ https://www.rfc1437.de/2008/02/29/the-truth-about-autism-scientists-reconsider-what/ - 2026-03-08T14:20:28.000Z + 2026-03-08T14:20:28.593Z monthly 0.8 @@ -30017,7 +30206,7 @@ https://www.rfc1437.de/2008/02/29/vi-textmate-together-at-last/ - 2026-03-03T15:48:07.000Z + 2026-03-03T15:48:07.686Z monthly 0.8 @@ -30026,7 +30215,7 @@ https://www.rfc1437.de/2008/02/28/ant-ant-is-not-tex/ - 2026-03-03T15:48:11.000Z + 2026-03-03T15:48:11.341Z monthly 0.8 @@ -30035,7 +30224,7 @@ https://www.rfc1437.de/2008/02/27/karlsruhe-laesst-kaum-raum-fuer-heimliche-online/ - 2026-03-03T15:48:16.000Z + 2026-03-03T15:48:16.449Z monthly 0.8 @@ -30044,7 +30233,7 @@ https://www.rfc1437.de/2008/02/26/abyssoft-teleport/ - 2026-03-03T15:48:20.000Z + 2026-03-03T15:48:20.103Z monthly 0.8 @@ -30053,7 +30242,7 @@ https://www.rfc1437.de/2008/02/26/fsclass-3-0/ - 2026-03-03T15:48:24.000Z + 2026-03-03T15:48:24.633Z monthly 0.8 @@ -30062,7 +30251,7 @@ https://www.rfc1437.de/2008/02/26/learn-f-script-in-20-minutes-and-have-fun-playing/ - 2026-03-03T15:48:28.000Z + 2026-03-03T15:48:28.888Z monthly 0.8 @@ -30071,7 +30260,7 @@ https://www.rfc1437.de/2008/02/26/lego-universe-lego-star-wars-multiplied-by-a/ - 2026-03-03T15:48:32.000Z + 2026-03-03T15:48:32.569Z monthly 0.8 @@ -30080,7 +30269,7 @@ https://www.rfc1437.de/2008/02/26/mathomatic/ - 2026-03-03T15:48:36.000Z + 2026-03-03T15:48:36.318Z monthly 0.8 @@ -30089,7 +30278,7 @@ https://www.rfc1437.de/2008/02/26/murphy-s-law-strikes-again-as7007/ - 2026-03-03T15:48:40.000Z + 2026-03-03T15:48:40.419Z monthly 0.8 @@ -30098,7 +30287,7 @@ https://www.rfc1437.de/2008/02/26/rope-a-python-refactoring-library/ - 2026-03-03T15:48:44.000Z + 2026-03-03T15:48:44.052Z monthly 0.8 @@ -30107,7 +30296,7 @@ https://www.rfc1437.de/2008/02/26/steuer-razzien-bisher-fast-hundert-gestaendnisse/ - 2026-03-03T15:48:49.000Z + 2026-03-03T15:48:49.129Z monthly 0.8 @@ -30116,7 +30305,7 @@ https://www.rfc1437.de/2008/02/25/django-snippets-mintcache/ - 2026-03-03T15:48:53.000Z + 2026-03-03T15:48:53.695Z monthly 0.8 @@ -30125,7 +30314,7 @@ https://www.rfc1437.de/2008/02/25/obsolete-skills-wiki-the-more-you-know/ - 2026-03-07T21:09:46.000Z + 2026-03-07T21:09:46.295Z monthly 0.8 @@ -30134,7 +30323,7 @@ https://www.rfc1437.de/2008/02/22/cryptanalysis-of-a5-1/ - 2026-03-07T21:09:47.000Z + 2026-03-07T21:09:47.322Z monthly 0.8 @@ -30143,7 +30332,7 @@ https://www.rfc1437.de/2008/02/22/erlware/ - 2026-03-03T15:49:05.000Z + 2026-03-03T15:49:05.511Z monthly 0.8 @@ -30152,7 +30341,7 @@ https://www.rfc1437.de/2008/02/22/memcachedb/ - 2026-03-03T15:49:10.000Z + 2026-03-03T15:49:10.069Z monthly 0.8 @@ -30161,7 +30350,7 @@ https://www.rfc1437.de/2008/02/22/new-research-result-cold-boot-attacks-on-disk/ - 2026-03-03T15:49:14.000Z + 2026-03-03T15:49:14.131Z monthly 0.8 @@ -30170,7 +30359,7 @@ https://www.rfc1437.de/2008/02/19/aquacurry/ - 2026-03-03T15:49:18.000Z + 2026-03-03T15:49:18.740Z monthly 0.8 @@ -30179,7 +30368,7 @@ https://www.rfc1437.de/2008/02/19/djapian/ - 2026-03-03T15:49:22.000Z + 2026-03-03T15:49:22.387Z monthly 0.8 @@ -30188,7 +30377,7 @@ https://www.rfc1437.de/2008/02/19/harsche-kritik-aus-liechtenstein-wegen-steuer/ - 2026-03-03T15:49:27.000Z + 2026-03-03T15:49:27.503Z monthly 0.8 @@ -30197,7 +30386,7 @@ https://www.rfc1437.de/2008/02/19/mysteries-of-computer-from-65bc-are-solved/ - 2026-03-07T21:09:48.000Z + 2026-03-07T21:09:48.245Z monthly 0.8 @@ -30206,7 +30395,7 @@ https://www.rfc1437.de/2008/02/19/os-2008-hacker-edition/ - 2026-03-03T15:49:35.000Z + 2026-03-03T15:49:35.841Z monthly 0.8 @@ -30215,7 +30404,7 @@ https://www.rfc1437.de/2008/02/19/rumaenische-gewerkschaft-ruegt-nokias-neue-form/ - 2026-03-03T15:49:40.000Z + 2026-03-03T15:49:40.907Z monthly 0.8 @@ -30224,7 +30413,7 @@ https://www.rfc1437.de/2008/02/19/thousand-parsec/ - 2026-03-03T15:49:44.000Z + 2026-03-03T15:49:44.570Z monthly 0.8 @@ -30233,7 +30422,7 @@ https://www.rfc1437.de/2008/02/18/chumby/ - 2026-03-03T15:49:48.000Z + 2026-03-03T15:49:48.261Z monthly 0.8 @@ -30242,7 +30431,7 @@ https://www.rfc1437.de/2008/02/18/command-line-haskell-and-error-handling-examples/ - 2026-03-03T15:49:53.000Z + 2026-03-03T15:49:53.518Z monthly 0.8 @@ -30251,7 +30440,7 @@ https://www.rfc1437.de/2008/02/18/cooperative-linux/ - 2026-03-03T15:49:57.000Z + 2026-03-03T15:49:57.151Z monthly 0.8 @@ -30260,7 +30449,7 @@ https://www.rfc1437.de/2008/02/18/kommentar-stasi-aeusserung-fuer-die-linke-ein/ - 2026-03-03T15:50:02.000Z + 2026-03-03T15:50:02.256Z monthly 0.8 @@ -30269,7 +30458,7 @@ https://www.rfc1437.de/2008/02/18/pisa-verlierer-sind-opfer-ihres-medienkonsums/ - 2026-03-03T15:50:05.000Z + 2026-03-03T15:50:05.296Z monthly 0.8 @@ -30278,7 +30467,7 @@ https://www.rfc1437.de/2008/02/18/steueraffaere-mehr-fahnder-und-haertere-strafen/ - 2026-03-03T15:50:09.000Z + 2026-03-03T15:50:09.740Z monthly 0.8 @@ -30287,7 +30476,7 @@ https://www.rfc1437.de/2008/02/18/wiebetech-micro-storage-solutions-hotplug-move-a/ - 2026-03-03T15:50:15.000Z + 2026-03-03T15:50:15.093Z monthly 0.8 @@ -30296,7 +30485,7 @@ https://www.rfc1437.de/2008/02/15/become-a-mac-os-x-services-ninja/ - 2026-03-03T15:50:19.000Z + 2026-03-03T15:50:19.816Z monthly 0.8 @@ -30305,7 +30494,7 @@ https://www.rfc1437.de/2008/02/15/sco-vs-linux-klagen-bis-zum-ende-doch-ohne-darl/ - 2026-03-03T15:50:24.000Z + 2026-03-03T15:50:24.889Z monthly 0.8 @@ -30314,7 +30503,7 @@ https://www.rfc1437.de/2008/02/15/zumwinkel-tritt-als-postchef-zurueck/ - 2026-03-03T15:50:28.000Z + 2026-03-03T15:50:28.356Z monthly 0.8 @@ -30323,7 +30512,7 @@ https://www.rfc1437.de/2008/02/14/atomic-commit-in-sqlite/ - 2026-03-03T15:50:31.000Z + 2026-03-03T15:50:31.966Z monthly 0.8 @@ -30332,7 +30521,7 @@ https://www.rfc1437.de/2008/02/13/astana-nicht-zur-tour-2008/ - 2026-03-03T15:50:36.000Z + 2026-03-03T15:50:36.226Z monthly 0.8 @@ -30341,7 +30530,7 @@ https://www.rfc1437.de/2008/02/13/bundesregierung-haelt-big-brother-szenarien-bei/ - 2026-03-03T15:50:40.000Z + 2026-03-03T15:50:40.166Z monthly 0.8 @@ -30350,7 +30539,7 @@ https://www.rfc1437.de/2008/02/13/lg-hamburg-will-umfassendere-forenhaftung-bei/ - 2026-03-03T15:50:45.000Z + 2026-03-03T15:50:45.756Z monthly 0.8 @@ -30359,7 +30548,7 @@ https://www.rfc1437.de/2008/02/13/zypries-droht-haft-oder-ordnungsgeld-beim/ - 2026-03-03T15:50:52.000Z + 2026-03-03T15:50:52.129Z monthly 0.8 @@ -30368,7 +30557,7 @@ https://www.rfc1437.de/2008/02/12/so-you-re-going-to-write-an-iphone-app/ - 2026-03-03T15:50:56.000Z + 2026-03-03T15:50:56.783Z monthly 0.8 @@ -30377,7 +30566,7 @@ https://www.rfc1437.de/2008/02/11/caecilian/ - 2026-03-07T21:09:48.000Z + 2026-03-07T21:09:48.923Z monthly 0.8 @@ -30386,7 +30575,7 @@ https://www.rfc1437.de/2008/02/11/in-depth-timevault-review-backing-up-in-ubuntu-is/ - 2026-03-03T15:51:04.000Z + 2026-03-03T15:51:04.327Z monthly 0.8 @@ -30395,7 +30584,7 @@ https://www.rfc1437.de/2008/02/11/polaroid-verabschiedet-sich-vom-sofortbildfilm/ - 2026-03-03T15:51:09.000Z + 2026-03-03T15:51:09.413Z monthly 0.8 @@ -30404,7 +30593,7 @@ https://www.rfc1437.de/2008/02/11/the-world-s-rubbish-dump-a-garbage-tip-that/ - 2026-03-07T21:09:50.000Z + 2026-03-07T21:09:50.384Z monthly 0.8 @@ -30413,7 +30602,7 @@ https://www.rfc1437.de/2008/02/07/camlx/ - 2026-03-03T15:51:18.000Z + 2026-03-03T15:51:18.208Z monthly 0.8 @@ -30422,7 +30611,7 @@ https://www.rfc1437.de/2008/02/07/fastcgi-programmer-s-guide-chapter-2-developing/ - 2026-03-03T15:51:22.000Z + 2026-03-03T15:51:22.312Z monthly 0.8 @@ -30431,7 +30620,7 @@ https://www.rfc1437.de/2008/02/06/tenerife-skunkworks-parsing-text-and-binary-files/ - 2026-03-03T15:51:26.000Z + 2026-03-03T15:51:26.974Z monthly 0.8 @@ -30440,7 +30629,7 @@ https://www.rfc1437.de/2008/02/01/developing-an-iphoto-export-plugin/ - 2026-03-03T15:51:30.000Z + 2026-03-03T15:51:30.860Z monthly 0.8 @@ -30449,7 +30638,7 @@ https://www.rfc1437.de/2008/02/01/microsoft-bereitet-uebernahme-von-yahoo-vor/ - 2026-03-03T15:51:35.000Z + 2026-03-03T15:51:35.039Z monthly 0.8 @@ -30458,7 +30647,7 @@ https://www.rfc1437.de/2008/02/01/n8gray-org-scriptexport/ - 2026-03-03T15:51:39.000Z + 2026-03-03T15:51:39.595Z monthly 0.8 @@ -30467,7 +30656,7 @@ https://www.rfc1437.de/2008/02/01/programming-nu-2/ - 2026-03-03T15:51:42.000Z + 2026-03-03T15:51:42.794Z monthly 0.8 @@ -30476,7 +30665,7 @@ https://www.rfc1437.de/2008/02/01/real-programmers/ - 2026-03-07T21:09:51.000Z + 2026-03-07T21:09:51.318Z monthly 0.8 @@ -30485,7 +30674,7 @@ https://www.rfc1437.de/2008/02/01/upload-with-scp/ - 2026-03-03T15:51:49.000Z + 2026-03-03T15:51:49.633Z monthly 0.8 @@ -30494,7 +30683,7 @@ https://www.rfc1437.de/2008/01/31/a9-com-patentiert-http-redirects/ - 2026-03-03T15:51:54.000Z + 2026-03-03T15:51:54.578Z monthly 0.8 @@ -30503,7 +30692,7 @@ https://www.rfc1437.de/2008/01/31/arc/ - 2026-03-03T15:51:59.000Z + 2026-03-03T15:51:59.036Z monthly 0.8 @@ -30512,7 +30701,7 @@ https://www.rfc1437.de/2008/01/31/bei-shell-sprudeln-die-milliarden/ - 2026-03-03T15:52:03.000Z + 2026-03-03T15:52:03.893Z monthly 0.8 @@ -30521,7 +30710,7 @@ https://www.rfc1437.de/2008/01/31/jython-2-5/ - 2026-03-03T15:52:08.000Z + 2026-03-03T15:52:08.322Z monthly 0.8 @@ -30530,7 +30719,7 @@ https://www.rfc1437.de/2008/01/31/paten-auf-mobiles-unterhaltungsgeraet-mit-telefon/ - 2026-03-03T15:52:13.000Z + 2026-03-03T15:52:13.147Z monthly 0.8 @@ -30539,7 +30728,7 @@ https://www.rfc1437.de/2008/01/31/post-konkurrenten-klagen-gegen-den-mindestlohn/ - 2026-03-03T15:52:18.000Z + 2026-03-03T15:52:18.053Z monthly 0.8 @@ -30548,7 +30737,7 @@ https://www.rfc1437.de/2008/01/31/sigma-announces-dp1-to-be-available-spring-2008/ - 2026-03-03T15:52:21.000Z + 2026-03-03T15:52:21.997Z monthly 0.8 @@ -30557,7 +30746,7 @@ https://www.rfc1437.de/2008/01/28/allegorithmic-mapzone/ - 2026-03-03T15:52:25.000Z + 2026-03-03T15:52:25.902Z monthly 0.8 @@ -30566,7 +30755,7 @@ https://www.rfc1437.de/2008/01/28/nokia-hinweise-auf-verstoss-gegen-auflagen/ - 2026-03-03T15:52:30.000Z + 2026-03-03T15:52:30.964Z monthly 0.8 @@ -30575,7 +30764,7 @@ https://www.rfc1437.de/2008/01/28/oesterreichische-auskunfteien-muessen/ - 2026-03-03T15:52:34.000Z + 2026-03-03T15:52:34.444Z monthly 0.8 @@ -30584,7 +30773,7 @@ https://www.rfc1437.de/2008/01/28/tunneling-over-icmp/ - 2026-03-03T15:52:38.000Z + 2026-03-03T15:52:38.341Z monthly 0.8 @@ -30593,7 +30782,7 @@ https://www.rfc1437.de/2008/01/28/wahlbeobachter-in-hessen/ - 2026-03-03T15:52:42.000Z + 2026-03-03T15:52:42.233Z monthly 0.8 @@ -30602,7 +30791,7 @@ https://www.rfc1437.de/2008/01/25/10919-incorrect-pluralization-rails-trac/ - 2026-03-03T15:52:45.000Z + 2026-03-03T15:52:45.770Z monthly 0.8 @@ -30611,7 +30800,7 @@ https://www.rfc1437.de/2008/01/24/osxcrypt-org-truecrypt-for-mac/ - 2026-03-03T15:52:49.000Z + 2026-03-03T15:52:49.244Z monthly 0.8 @@ -30620,7 +30809,7 @@ https://www.rfc1437.de/2008/01/23/finanzhof-gekuerzte-pendlerpauschale/ - 2026-03-03T15:52:53.000Z + 2026-03-03T15:52:53.635Z monthly 0.8 @@ -30629,7 +30818,7 @@ https://www.rfc1437.de/2008/01/23/ich-mag-das-internet-und-meine-gene/ - 2026-03-03T15:52:57.000Z + 2026-03-03T15:52:57.976Z monthly 0.8 @@ -30638,7 +30827,7 @@ https://www.rfc1437.de/2008/01/23/immer-noch-keine-klingeltoene-in-deutschland/ - 2026-03-03T15:53:02.000Z + 2026-03-03T15:53:02.728Z monthly 0.8 @@ -30647,7 +30836,7 @@ https://www.rfc1437.de/2008/01/23/olg-frankfurt-provider-muessen-inhalte-nicht/ - 2026-03-03T15:53:06.000Z + 2026-03-03T15:53:06.180Z monthly 0.8 @@ -30656,7 +30845,7 @@ https://www.rfc1437.de/2008/01/22/an-offline-wikipedia-reader-for-the-iphone/ - 2026-03-03T15:53:10.000Z + 2026-03-03T15:53:10.100Z monthly 0.8 @@ -30665,7 +30854,7 @@ https://www.rfc1437.de/2008/01/22/durchbruch-fuer-cc-musik/ - 2026-03-03T15:53:13.000Z + 2026-03-03T15:53:13.586Z monthly 0.8 @@ -30674,7 +30863,7 @@ https://www.rfc1437.de/2008/01/22/evolution-major-vanishes-from-approved-federal/ - 2026-03-03T15:53:18.000Z + 2026-03-03T15:53:18.399Z monthly 0.8 @@ -30683,7 +30872,7 @@ https://www.rfc1437.de/2008/01/22/japan-wants-to-fly-paper-plane-from-international/ - 2026-03-07T21:09:52.000Z + 2026-03-07T21:09:52.430Z monthly 0.8 @@ -30692,7 +30881,7 @@ https://www.rfc1437.de/2008/01/22/strasheela/ - 2026-03-03T15:53:26.000Z + 2026-03-03T15:53:26.149Z monthly 0.8 @@ -30701,7 +30890,7 @@ https://www.rfc1437.de/2008/01/22/unshaking-and-refocusing-your-photos/ - 2026-03-03T15:53:29.000Z + 2026-03-03T15:53:29.844Z monthly 0.8 @@ -30710,7 +30899,7 @@ https://www.rfc1437.de/2008/01/21/60-000-dollar-strafe-fuer-dns-abruf/ - 2026-03-03T15:53:34.000Z + 2026-03-03T15:53:34.226Z monthly 0.8 @@ -30719,7 +30908,7 @@ https://www.rfc1437.de/2008/01/21/amerikas-beste-hausfrau-duepiert-deutsche-digital/ - 2026-03-03T15:53:38.000Z + 2026-03-03T15:53:38.534Z monthly 0.8 @@ -30728,7 +30917,7 @@ https://www.rfc1437.de/2008/01/21/cdu-hessen-soll-interne-schulamtsdaten-fuer/ - 2026-03-03T15:53:43.000Z + 2026-03-03T15:53:43.322Z monthly 0.8 @@ -30737,7 +30926,7 @@ https://www.rfc1437.de/2008/01/21/der-carlos-hoax/ - 2026-03-03T15:53:47.000Z + 2026-03-03T15:53:47.241Z monthly 0.8 @@ -30746,7 +30935,7 @@ https://www.rfc1437.de/2008/01/21/drei-verfassungsrichter-rangeln-um-zustaendigkeit/ - 2026-03-03T15:53:51.000Z + 2026-03-03T15:53:51.605Z monthly 0.8 @@ -30755,7 +30944,7 @@ https://www.rfc1437.de/2008/01/21/elephants-evolve-smaller-tusks-due-to-poaching/ - 2026-03-07T21:09:53.000Z + 2026-03-07T21:09:53.977Z monthly 0.8 @@ -30764,7 +30953,7 @@ https://www.rfc1437.de/2008/01/21/kapitalspritze-fuer-westlb/ - 2026-03-03T15:54:00.000Z + 2026-03-03T15:54:00.296Z monthly 0.8 @@ -30773,7 +30962,7 @@ https://www.rfc1437.de/2008/01/21/mac-os-x-und-dtrace/ - 2026-03-03T15:54:04.000Z + 2026-03-03T15:54:04.624Z monthly 0.8 @@ -30782,7 +30971,7 @@ https://www.rfc1437.de/2008/01/21/spd-debattiert-ueber-massnahmen-gegen-clement/ - 2026-03-03T15:54:09.000Z + 2026-03-03T15:54:09.365Z monthly 0.8 @@ -30791,7 +30980,7 @@ https://www.rfc1437.de/2008/01/21/the-tintypes/ - 2026-03-03T15:54:12.000Z + 2026-03-03T15:54:12.828Z monthly 0.8 @@ -30800,7 +30989,7 @@ https://www.rfc1437.de/2008/01/21/the-unburdened-mind/ - 2026-03-07T21:09:55.000Z + 2026-03-07T21:09:55.958Z monthly 0.8 @@ -30809,7 +30998,7 @@ https://www.rfc1437.de/2008/01/20/schaeuble-greift-verfassungsrichter-papier-scharf/ - 2026-03-03T15:54:21.000Z + 2026-03-03T15:54:21.994Z monthly 0.8 @@ -30818,7 +31007,7 @@ https://www.rfc1437.de/2008/01/18/bundestag-setzt-sich-fuer-regionale-top-level/ - 2026-03-03T15:54:26.000Z + 2026-03-03T15:54:26.790Z monthly 0.8 @@ -30827,7 +31016,7 @@ https://www.rfc1437.de/2008/01/18/innenministerium-sperrt-herausgabe-der-buback/ - 2026-03-03T15:54:31.000Z + 2026-03-03T15:54:31.357Z monthly 0.8 @@ -30836,7 +31025,7 @@ https://www.rfc1437.de/2008/01/18/spd-entscheidung-fuer-online-durchsuchung-ist/ - 2026-03-03T15:54:35.000Z + 2026-03-03T15:54:35.740Z monthly 0.8 @@ -30845,7 +31034,7 @@ https://www.rfc1437.de/2008/01/17/eu-abgeordneter-provider-sollen-bei/ - 2026-03-03T15:54:40.000Z + 2026-03-03T15:54:40.520Z monthly 0.8 @@ -30854,7 +31043,7 @@ https://www.rfc1437.de/2008/01/17/firegpg-use-gpg-easily-in-firefox/ - 2026-03-03T15:54:44.000Z + 2026-03-03T15:54:44.015Z monthly 0.8 @@ -30863,7 +31052,7 @@ https://www.rfc1437.de/2008/01/17/macworld-carl-zeiss-stellt-eine-videobrille-fuer/ - 2026-03-03T15:54:48.000Z + 2026-03-03T15:54:48.008Z monthly 0.8 @@ -30872,7 +31061,7 @@ https://www.rfc1437.de/2008/01/17/navy-wins-exemption-from-bush-to-continue-sonar/ - 2026-03-07T21:09:57.000Z + 2026-03-07T21:09:57.463Z monthly 0.8 @@ -30881,7 +31070,7 @@ https://www.rfc1437.de/2008/01/17/schaeubles-neue-plaene-empoeren-die-opposition/ - 2026-03-03T15:54:57.000Z + 2026-03-03T15:54:57.788Z monthly 0.8 @@ -30890,7 +31079,7 @@ https://www.rfc1437.de/2008/01/16/dreamhost-blog-um-whoops/ - 2026-03-03T15:55:02.000Z + 2026-03-03T15:55:02.159Z monthly 0.8 @@ -30899,7 +31088,7 @@ https://www.rfc1437.de/2008/01/15/bahn-kuendigt-nach-einigung-mit-gdl-stellenabbau/ - 2026-03-03T15:55:06.000Z + 2026-03-03T15:55:06.917Z monthly 0.8 @@ -30908,7 +31097,7 @@ https://www.rfc1437.de/2008/01/15/usa-wollen-mit-verbuendeten-internationale/ - 2026-03-03T15:55:11.000Z + 2026-03-03T15:55:11.263Z monthly 0.8 @@ -30917,7 +31106,7 @@ https://www.rfc1437.de/2008/01/11/airfoil-3-spreads-music-streaming-beyond-airport/ - 2026-03-03T15:55:14.000Z + 2026-03-03T15:55:14.763Z monthly 0.8 @@ -30926,7 +31115,7 @@ https://www.rfc1437.de/2008/01/11/dryad/ - 2026-03-03T15:55:18.000Z + 2026-03-03T15:55:18.272Z monthly 0.8 @@ -30935,7 +31124,7 @@ https://www.rfc1437.de/2008/01/11/struck-lehnt-entschuldigung-bei-koch-ab/ - 2026-03-03T15:55:23.000Z + 2026-03-03T15:55:23.092Z monthly 0.8 @@ -30944,7 +31133,7 @@ https://www.rfc1437.de/2008/01/11/the-definitive-four-fours-answer-key-by-david-a/ - 2026-03-08T14:20:35.000Z + 2026-03-08T14:20:35.813Z monthly 0.8 @@ -30953,7 +31142,7 @@ https://www.rfc1437.de/2008/01/11/ver-di-kuendigt-funktionaer-die-npd-ist-erfreut/ - 2026-03-03T15:55:31.000Z + 2026-03-03T15:55:31.586Z monthly 0.8 @@ -30962,7 +31151,7 @@ https://www.rfc1437.de/2008/01/11/why-crunch-mode-doesn-t-work/ - 2026-03-03T15:55:35.000Z + 2026-03-03T15:55:35.465Z monthly 0.8 @@ -30971,7 +31160,7 @@ https://www.rfc1437.de/2008/01/09/wilber-loves-apple/ - 2026-03-03T15:55:39.000Z + 2026-03-03T15:55:39.869Z monthly 0.8 @@ -30980,7 +31169,7 @@ https://www.rfc1437.de/2008/01/08/rueffel-fuer-existenz-bedrohende-warndatei-der/ - 2026-03-03T15:55:44.000Z + 2026-03-03T15:55:44.231Z monthly 0.8 @@ -30989,7 +31178,7 @@ https://www.rfc1437.de/2008/01/08/valued-lessons-monads-in-python-with-nice-syntax/ - 2026-03-03T15:55:48.000Z + 2026-03-03T15:55:48.149Z monthly 0.8 @@ -30998,7 +31187,7 @@ https://www.rfc1437.de/2008/01/07/at-a-loss-for-words/ - 2026-03-03T15:55:52.000Z + 2026-03-03T15:55:52.558Z monthly 0.8 @@ -31007,7 +31196,7 @@ https://www.rfc1437.de/2008/01/07/backscatterer-org-eine-weitere-asoziale-und/ - 2026-03-03T15:55:57.000Z + 2026-03-03T15:55:57.624Z monthly 0.8 @@ -31016,7 +31205,7 @@ https://www.rfc1437.de/2008/01/07/base2/ - 2026-03-03T15:56:00.000Z + 2026-03-03T15:56:00.819Z monthly 0.8 @@ -31025,7 +31214,7 @@ https://www.rfc1437.de/2008/01/07/dean-edwards-ie7-js-version-2-0-beta/ - 2026-03-03T15:56:05.000Z + 2026-03-03T15:56:05.208Z monthly 0.8 @@ -31034,7 +31223,7 @@ https://www.rfc1437.de/2008/01/07/kinderpornografie-firmen-sollen-festplatten/ - 2026-03-03T15:56:10.000Z + 2026-03-03T15:56:10.436Z monthly 0.8 @@ -31043,7 +31232,7 @@ https://www.rfc1437.de/2008/01/07/marskollision-wird-wahrscheinlicher/ - 2026-03-03T15:56:14.000Z + 2026-03-03T15:56:14.753Z monthly 0.8 @@ -31052,7 +31241,7 @@ https://www.rfc1437.de/2008/01/06/scratch-home-imagine-program-share/ - 2026-03-03T15:56:19.000Z + 2026-03-03T15:56:19.355Z monthly 0.8 @@ -31061,7 +31250,7 @@ https://www.rfc1437.de/2008/01/04/adobe-produkte-kommunizieren-ueber-dubiose-web/ - 2026-03-03T15:56:23.000Z + 2026-03-03T15:56:23.883Z monthly 0.8 @@ -31070,7 +31259,7 @@ https://www.rfc1437.de/2008/01/04/bgh-razzien-gegen-globalisierungskritiker-waren/ - 2026-03-03T15:56:28.000Z + 2026-03-03T15:56:28.515Z monthly 0.8 @@ -31079,7 +31268,7 @@ https://www.rfc1437.de/2008/01/04/django-on-jython-minding-the-gap/ - 2026-03-03T15:56:33.000Z + 2026-03-03T15:56:33.233Z monthly 0.8 @@ -31088,7 +31277,7 @@ https://www.rfc1437.de/2008/01/04/hd-monitor-causes-drm-issues-with-netflix/ - 2026-03-03T15:56:38.000Z + 2026-03-03T15:56:38.787Z monthly 0.8 @@ -31097,7 +31286,7 @@ https://www.rfc1437.de/2008/01/04/icab-ist-wieder-da/ - 2026-03-03T15:56:43.000Z + 2026-03-03T15:56:43.307Z monthly 0.8 @@ -31106,7 +31295,7 @@ https://www.rfc1437.de/2008/01/03/baut-australien-eine-great-firewall/ - 2026-03-03T15:56:48.000Z + 2026-03-03T15:56:48.048Z monthly 0.8 @@ -31115,7 +31304,7 @@ https://www.rfc1437.de/2008/01/03/grabfs-the-screenshot-file-system/ - 2026-03-03T15:56:52.000Z + 2026-03-03T15:56:52.078Z monthly 0.8 @@ -31124,7 +31313,7 @@ https://www.rfc1437.de/2008/01/03/olpc-technikchefin-macht-sich-selbststaendig/ - 2026-03-03T15:56:56.000Z + 2026-03-03T15:56:56.988Z monthly 0.8 @@ -31133,7 +31322,7 @@ https://www.rfc1437.de/2008/01/02/gmail-filesystem/ - 2026-03-03T15:57:00.000Z + 2026-03-03T15:57:00.923Z monthly 0.8 @@ -31142,7 +31331,7 @@ https://www.rfc1437.de/2008/01/02/psychology-today-dreams-night-school/ - 2026-03-03T15:57:05.000Z + 2026-03-03T15:57:05.456Z monthly 0.8 @@ -31151,7 +31340,7 @@ https://www.rfc1437.de/2007/12/27/varnish/ - 2026-03-03T15:57:09.000Z + 2026-03-03T15:57:09.393Z monthly 0.8 @@ -31160,7 +31349,7 @@ https://www.rfc1437.de/2007/12/25/australia-to-enforce-a-rating-system-on-web-track/ - 2026-03-03T15:57:14.000Z + 2026-03-03T15:57:14.306Z monthly 0.8 @@ -31169,7 +31358,7 @@ https://www.rfc1437.de/2007/12/21/david-byrne-s-survival-strategies-for-emerging/ - 2026-03-03T15:57:18.000Z + 2026-03-03T15:57:18.772Z monthly 0.8 @@ -31178,7 +31367,7 @@ https://www.rfc1437.de/2007/12/21/more-on-widgets-when-one-e-mail-is-enough-to/ - 2026-03-03T15:57:23.000Z + 2026-03-03T15:57:23.719Z monthly 0.8 @@ -31187,7 +31376,7 @@ https://www.rfc1437.de/2007/12/21/samba-team-receives-microsoft-protocol-docs/ - 2026-03-03T15:57:27.000Z + 2026-03-03T15:57:27.270Z monthly 0.8 @@ -31196,7 +31385,7 @@ https://www.rfc1437.de/2007/12/21/surfen-fuer-61-98-euro-pro-stunde/ - 2026-03-03T15:57:31.000Z + 2026-03-03T15:57:31.438Z monthly 0.8 @@ -31205,7 +31394,7 @@ https://www.rfc1437.de/2007/12/20/a-young-blonde-icelandic-woman-s-recent/ - 2026-03-03T15:57:35.000Z + 2026-03-03T15:57:35.420Z monthly 0.8 @@ -31214,7 +31403,7 @@ https://www.rfc1437.de/2007/12/20/harvey-wasserman-on-new-ohio-voting-report-the/ - 2026-03-03T15:57:40.000Z + 2026-03-03T15:57:40.298Z monthly 0.8 @@ -31223,7 +31412,7 @@ https://www.rfc1437.de/2007/12/19/creative-commons-will-eu-schutzrecht-fuer/ - 2026-03-03T15:57:43.000Z + 2026-03-03T15:57:43.868Z monthly 0.8 @@ -31232,7 +31421,7 @@ https://www.rfc1437.de/2007/12/19/die-samariter-definition-der-sueddeutschen/ - 2026-03-03T15:57:47.000Z + 2026-03-03T15:57:47.826Z monthly 0.8 @@ -31241,7 +31430,7 @@ https://www.rfc1437.de/2007/12/19/neue-schlappe-fuer-abmahnanwalt-der-musikindustrie/ - 2026-03-03T15:57:52.000Z + 2026-03-03T15:57:52.720Z monthly 0.8 @@ -31250,7 +31439,7 @@ https://www.rfc1437.de/2007/12/18/colds-alcohol-medicine-and-health/ - 2026-03-03T15:57:58.000Z + 2026-03-03T15:57:58.268Z monthly 0.8 @@ -31259,7 +31448,7 @@ https://www.rfc1437.de/2007/12/17/ping-tunnel-send-tcp-traffic-over-icmp/ - 2026-03-07T21:10:02.000Z + 2026-03-07T21:10:02.276Z monthly 0.8 @@ -31268,7 +31457,7 @@ https://www.rfc1437.de/2007/12/17/run-python-script/ - 2026-03-03T15:58:05.000Z + 2026-03-03T15:58:05.005Z monthly 0.8 @@ -31277,7 +31466,7 @@ https://www.rfc1437.de/2007/12/17/spd-innenpolitiker-kuendigt-zustimmung-zu-online/ - 2026-03-03T15:58:08.000Z + 2026-03-03T15:58:08.960Z monthly 0.8 @@ -31286,7 +31475,7 @@ https://www.rfc1437.de/2007/12/17/tor-server-durch-vorratsdatenspeicherung-von/ - 2026-03-03T15:58:13.000Z + 2026-03-03T15:58:13.365Z monthly 0.8 @@ -31295,7 +31484,7 @@ https://www.rfc1437.de/2007/12/14/129a-lesereise-hinter-gitter/ - 2026-03-03T15:58:18.000Z + 2026-03-03T15:58:18.252Z monthly 0.8 @@ -31304,7 +31493,7 @@ https://www.rfc1437.de/2007/12/14/amazon-web-services-simpledb/ - 2026-03-03T15:58:22.000Z + 2026-03-03T15:58:22.237Z monthly 0.8 @@ -31313,7 +31502,7 @@ https://www.rfc1437.de/2007/12/14/heise-online-erweiterte-polizeiliche/ - 2026-03-03T15:58:27.000Z + 2026-03-03T15:58:27.686Z monthly 0.8 @@ -31322,7 +31511,7 @@ https://www.rfc1437.de/2007/12/14/shoe-fitting-fluoroscope/ - 2026-03-07T21:10:03.000Z + 2026-03-07T21:10:03.591Z monthly 0.8 @@ -31331,7 +31520,7 @@ https://www.rfc1437.de/2007/12/11/doris-lessing-nobel-lecture/ - 2026-03-08T14:20:43.000Z + 2026-03-08T14:20:43.095Z monthly 0.8 @@ -31340,7 +31529,7 @@ https://www.rfc1437.de/2007/12/11/experten-bestaetigen-zusammenhang-zwischen-akw/ - 2026-03-03T15:58:40.000Z + 2026-03-03T15:58:40.259Z monthly 0.8 @@ -31349,7 +31538,7 @@ https://www.rfc1437.de/2007/12/11/nokia-ogg-formate-im-html-standard-nicht-mit-uns/ - 2026-03-03T15:58:45.000Z + 2026-03-03T15:58:45.098Z monthly 0.8 @@ -31358,7 +31547,7 @@ https://www.rfc1437.de/2007/12/11/skype-on-os2007he-umm-working/ - 2026-03-03T15:58:49.000Z + 2026-03-03T15:58:49.481Z monthly 0.8 @@ -31367,7 +31556,7 @@ https://www.rfc1437.de/2007/12/11/the-glass-books-of-the-dream-eaters/ - 2026-03-03T15:58:53.000Z + 2026-03-03T15:58:53.824Z monthly 0.8 @@ -31376,7 +31565,7 @@ https://www.rfc1437.de/2007/12/07/foren-haftung-lg-hamburg-besteht-auf-vorab/ - 2026-03-03T15:58:58.000Z + 2026-03-03T15:58:58.730Z monthly 0.8 @@ -31385,7 +31574,7 @@ https://www.rfc1437.de/2007/12/07/kriminalisierung-von-parallelimporten-weiter/ - 2026-03-03T15:59:03.000Z + 2026-03-03T15:59:03.543Z monthly 0.8 @@ -31394,7 +31583,7 @@ https://www.rfc1437.de/2007/12/07/new-version-of-ready-lisp-for-mac-os-x-available/ - 2026-03-03T15:59:08.000Z + 2026-03-03T15:59:08.416Z monthly 0.8 @@ -31403,7 +31592,7 @@ https://www.rfc1437.de/2007/12/07/objects-have-failed/ - 2026-03-08T14:20:50.000Z + 2026-03-08T14:20:50.266Z monthly 0.8 @@ -31412,7 +31601,7 @@ https://www.rfc1437.de/2007/12/07/sie-haben-das-recht-zu-schweigen/ - 2026-03-03T15:59:15.000Z + 2026-03-03T15:59:15.017Z monthly 0.8 @@ -31421,7 +31610,7 @@ https://www.rfc1437.de/2007/12/06/ajatus-manifesto/ - 2026-03-03T15:59:18.000Z + 2026-03-03T15:59:18.938Z monthly 0.8 @@ -31430,7 +31619,7 @@ https://www.rfc1437.de/2007/12/06/microsoft-und-olpc/ - 2026-03-03T15:59:23.000Z + 2026-03-03T15:59:23.005Z monthly 0.8 @@ -31439,7 +31628,7 @@ https://www.rfc1437.de/2007/12/06/mindestlohn-streit-pin-entlaesst-fast-900/ - 2026-03-03T15:59:27.000Z + 2026-03-03T15:59:27.828Z monthly 0.8 @@ -31448,7 +31637,7 @@ https://www.rfc1437.de/2007/12/06/moonlight-silverlight-unfug/ - 2026-03-03T15:59:32.000Z + 2026-03-03T15:59:32.845Z monthly 0.8 @@ -31457,7 +31646,7 @@ https://www.rfc1437.de/2007/12/06/programming-couchdb-with-javascript/ - 2026-03-03T15:59:36.000Z + 2026-03-03T15:59:36.348Z monthly 0.8 @@ -31466,7 +31655,7 @@ https://www.rfc1437.de/2007/12/05/nodebox/ - 2026-03-03T15:59:39.000Z + 2026-03-03T15:59:39.846Z monthly 0.8 @@ -31475,7 +31664,7 @@ https://www.rfc1437.de/2007/12/05/solar-tiny-pc-linux-sweeeet/ - 2026-03-03T15:59:43.000Z + 2026-03-03T15:59:43.384Z monthly 0.8 @@ -31484,7 +31673,7 @@ https://www.rfc1437.de/2007/12/05/standpauke-vs-requiem/ - 2026-03-03T15:59:46.000Z + 2026-03-03T15:59:46.922Z monthly 0.8 @@ -31493,7 +31682,7 @@ https://www.rfc1437.de/2007/12/04/clojure/ - 2026-03-03T15:59:51.000Z + 2026-03-03T15:59:51.370Z monthly 0.8 @@ -31502,7 +31691,7 @@ https://www.rfc1437.de/2007/12/04/getting-started-on-natural-language-processing/ - 2026-03-03T15:59:54.000Z + 2026-03-03T15:59:54.929Z monthly 0.8 @@ -31511,7 +31700,7 @@ https://www.rfc1437.de/2007/12/04/jline/ - 2026-03-03T15:59:58.000Z + 2026-03-03T15:59:58.092Z monthly 0.8 @@ -31520,7 +31709,7 @@ https://www.rfc1437.de/2007/12/04/saurier-entpuppt-sich-als-muskelpaket/ - 2026-03-03T16:00:01.000Z + 2026-03-03T16:00:01.574Z monthly 0.8 @@ -31529,7 +31718,7 @@ https://www.rfc1437.de/2007/12/04/voip-signatur-patent-fuer-fraunhofer/ - 2026-03-03T16:00:06.000Z + 2026-03-03T16:00:06.477Z monthly 0.8 @@ -31538,7 +31727,7 @@ https://www.rfc1437.de/2007/12/03/iphone-in-deutschland-warten-aufs-gericht/ - 2026-03-03T16:00:11.000Z + 2026-03-03T16:00:11.309Z monthly 0.8 @@ -31547,7 +31736,7 @@ https://www.rfc1437.de/2007/11/30/bgh-erklaert-kontrolle-von-briefen-in-hamburg/ - 2026-03-03T16:00:15.000Z + 2026-03-03T16:00:15.845Z monthly 0.8 @@ -31556,7 +31745,7 @@ https://www.rfc1437.de/2007/11/30/chromatron-by-silver-spaceship-software/ - 2026-03-03T16:00:19.000Z + 2026-03-03T16:00:19.296Z monthly 0.8 @@ -31565,7 +31754,7 @@ https://www.rfc1437.de/2007/11/30/cory-docterow-ueber-facebook/ - 2026-03-03T16:00:22.000Z + 2026-03-03T16:00:22.788Z monthly 0.8 @@ -31574,7 +31763,7 @@ https://www.rfc1437.de/2007/11/30/irseeking-trouble/ - 2026-03-07T21:10:12.000Z + 2026-03-07T21:10:12.189Z monthly 0.8 @@ -31583,7 +31772,7 @@ https://www.rfc1437.de/2007/11/29/warnung-vor-unertraeglicher-verschaerfung-der/ - 2026-03-03T16:00:31.000Z + 2026-03-03T16:00:31.833Z monthly 0.8 @@ -31592,7 +31781,7 @@ https://www.rfc1437.de/2007/11/28/bgh-militante-gruppe-keine-terroristische/ - 2026-03-03T16:00:35.000Z + 2026-03-03T16:00:35.783Z monthly 0.8 @@ -31601,7 +31790,7 @@ https://www.rfc1437.de/2007/11/28/lka-direktor-huettemann-zurueckgetreten/ - 2026-03-03T16:00:39.000Z + 2026-03-03T16:00:39.709Z monthly 0.8 @@ -31610,7 +31799,7 @@ https://www.rfc1437.de/2007/11/28/network/ - 2026-03-03T16:00:42.000Z + 2026-03-03T16:00:42.815Z monthly 0.8 @@ -31619,7 +31808,7 @@ https://www.rfc1437.de/2007/11/28/olpc-in-nigeria-wegen-patentverletzung-verklagt/ - 2026-03-03T16:00:47.000Z + 2026-03-03T16:00:47.700Z monthly 0.8 @@ -31628,7 +31817,7 @@ https://www.rfc1437.de/2007/11/28/richter-haelt-vorratsdatenspeicherung-fuer/ - 2026-03-03T16:00:52.000Z + 2026-03-03T16:00:52.092Z monthly 0.8 @@ -31637,7 +31826,7 @@ https://www.rfc1437.de/2007/11/28/telekom-steigt-aus-radsport-aus/ - 2026-03-03T16:00:56.000Z + 2026-03-03T16:00:56.954Z monthly 0.8 @@ -31646,7 +31835,7 @@ https://www.rfc1437.de/2007/11/26/the-future-of-reading-a-play-in-six-acts/ - 2026-03-03T16:01:01.000Z + 2026-03-03T16:01:01.329Z monthly 0.8 @@ -31655,7 +31844,7 @@ https://www.rfc1437.de/2007/11/23/aloha-ken-wharton/ - 2026-03-07T21:10:13.000Z + 2026-03-07T21:10:13.153Z monthly 0.8 @@ -31664,7 +31853,7 @@ https://www.rfc1437.de/2007/11/23/karnevalsverein-mit-tuev-siegel/ - 2026-03-03T16:01:08.000Z + 2026-03-03T16:01:08.846Z monthly 0.8 @@ -31673,7 +31862,7 @@ https://www.rfc1437.de/2007/11/23/lxml-html/ - 2026-03-03T16:01:12.000Z + 2026-03-03T16:01:12.342Z monthly 0.8 @@ -31682,7 +31871,7 @@ https://www.rfc1437.de/2007/11/19/bundestag-nickt-abkommen-zur-weitergabe-von/ - 2026-03-03T16:01:16.000Z + 2026-03-03T16:01:16.334Z monthly 0.8 @@ -31691,7 +31880,7 @@ https://www.rfc1437.de/2007/11/19/encrypted-e-mail-company-hushmail-spills-to-feds/ - 2026-03-03T16:01:20.000Z + 2026-03-03T16:01:20.275Z monthly 0.8 @@ -31700,7 +31889,7 @@ https://www.rfc1437.de/2007/11/19/ip2f/ - 2026-03-03T16:01:24.000Z + 2026-03-03T16:01:24.274Z monthly 0.8 @@ -31709,7 +31898,7 @@ https://www.rfc1437.de/2007/11/19/patentklage-gegen-apple-microsoft-und-21-weitere/ - 2026-03-03T16:01:28.000Z + 2026-03-03T16:01:28.780Z monthly 0.8 @@ -31718,7 +31907,7 @@ https://www.rfc1437.de/2007/11/19/schaeuble-faehrt-softwareentwicklung-hoch-golem-de/ - 2026-03-03T16:01:32.000Z + 2026-03-03T16:01:32.810Z monthly 0.8 @@ -31727,7 +31916,7 @@ https://www.rfc1437.de/2007/11/19/tarimporter/ - 2026-03-03T16:01:36.000Z + 2026-03-03T16:01:36.335Z monthly 0.8 @@ -31736,7 +31925,7 @@ https://www.rfc1437.de/2007/11/19/verschluesselungsstandard-unter-backdoor-verdacht/ - 2026-03-03T16:01:40.000Z + 2026-03-03T16:01:40.329Z monthly 0.8 @@ -31745,7 +31934,7 @@ https://www.rfc1437.de/2007/11/19/warner-music-chef-wir-lagen-falsch/ - 2026-03-03T16:01:43.000Z + 2026-03-03T16:01:43.881Z monthly 0.8 @@ -31754,7 +31943,7 @@ https://www.rfc1437.de/2007/11/19/ziplight-search-zip-files-with-spotlight/ - 2026-03-03T16:01:47.000Z + 2026-03-03T16:01:47.408Z monthly 0.8 @@ -31763,7 +31952,7 @@ https://www.rfc1437.de/2007/11/14/polizei-gibt-rechner-von-beschuldigten-an/ - 2026-03-03T16:01:51.000Z + 2026-03-03T16:01:51.369Z monthly 0.8 @@ -31772,7 +31961,7 @@ https://www.rfc1437.de/2007/11/12/dirvish/ - 2026-03-03T16:01:54.000Z + 2026-03-03T16:01:54.482Z monthly 0.8 @@ -31781,7 +31970,7 @@ https://www.rfc1437.de/2007/11/12/kommt-die-bundesabhoerzentrale/ - 2026-03-03T16:01:58.000Z + 2026-03-03T16:01:58.449Z monthly 0.8 @@ -31790,7 +31979,7 @@ https://www.rfc1437.de/2007/11/12/rechnungshof-verschwendet-millionen/ - 2026-03-03T16:02:01.000Z + 2026-03-03T16:02:01.965Z monthly 0.8 @@ -31799,7 +31988,7 @@ https://www.rfc1437.de/2007/11/12/reinteract/ - 2026-03-03T16:02:05.000Z + 2026-03-03T16:02:05.972Z monthly 0.8 @@ -31808,7 +31997,7 @@ https://www.rfc1437.de/2007/11/12/rsnapshot/ - 2026-03-03T16:02:09.000Z + 2026-03-03T16:02:09.441Z monthly 0.8 @@ -31817,7 +32006,7 @@ https://www.rfc1437.de/2007/11/12/sicherheitsberater-wegen-betreiben-eines-bot/ - 2026-03-03T16:02:12.000Z + 2026-03-03T16:02:12.955Z monthly 0.8 @@ -31826,7 +32015,7 @@ https://www.rfc1437.de/2007/11/12/the-terrifying-toothpick-fish/ - 2026-03-03T16:02:16.000Z + 2026-03-03T16:02:16.587Z monthly 0.8 @@ -31835,7 +32024,7 @@ https://www.rfc1437.de/2007/11/12/upside-down-ternet/ - 2026-03-03T16:02:20.000Z + 2026-03-03T16:02:20.052Z monthly 0.8 @@ -31844,7 +32033,7 @@ https://www.rfc1437.de/2007/11/08/e-vergabe-nutzer-von-linux-oder-mac-muessen/ - 2026-03-03T16:02:24.000Z + 2026-03-03T16:02:24.058Z monthly 0.8 @@ -31853,7 +32042,7 @@ https://www.rfc1437.de/2007/11/06/zope-using-utf-8-in-the-management-interface-zmi/ - 2026-03-03T16:02:27.000Z + 2026-03-03T16:02:27.614Z monthly 0.8 @@ -31862,7 +32051,7 @@ https://www.rfc1437.de/2007/11/05/spiegel-hinweise-auf-absprachen-der-stromkonzerne/ - 2026-03-03T16:02:31.000Z + 2026-03-03T16:02:31.714Z monthly 0.8 @@ -31871,7 +32060,7 @@ https://www.rfc1437.de/2007/11/05/zypries-wirft-kritikern-der/ - 2026-03-03T16:02:36.000Z + 2026-03-03T16:02:36.580Z monthly 0.8 @@ -31880,7 +32069,7 @@ https://www.rfc1437.de/2007/10/30/mac-os-x-10-5-leopard-the-ars-technica-review/ - 2026-03-03T16:02:40.000Z + 2026-03-03T16:02:40.582Z monthly 0.8 @@ -31889,7 +32078,7 @@ https://www.rfc1437.de/2007/10/29/doing-the-leopard-moan/ - 2026-03-03T16:02:45.000Z + 2026-03-03T16:02:45.088Z monthly 0.8 @@ -31898,7 +32087,7 @@ https://www.rfc1437.de/2007/10/29/tidbits-macs-mac-os-x-getting-to-know-time-machine/ - 2026-03-03T16:02:49.000Z + 2026-03-03T16:02:49.048Z monthly 0.8 @@ -31907,7 +32096,7 @@ https://www.rfc1437.de/2007/10/26/ccc-hackt-hamburger-wahlstift/ - 2026-03-03T16:02:53.000Z + 2026-03-03T16:02:53.882Z monthly 0.8 @@ -31916,7 +32105,7 @@ https://www.rfc1437.de/2007/10/23/cowboy-programming-mature-optimization/ - 2026-03-07T21:10:14.000Z + 2026-03-07T21:10:14.457Z monthly 0.8 @@ -31925,7 +32114,7 @@ https://www.rfc1437.de/2007/10/23/heise-online-softwarepatent-gegner-beklagen-deal/ - 2026-03-03T16:03:02.000Z + 2026-03-03T16:03:02.757Z monthly 0.8 @@ -31934,7 +32123,7 @@ https://www.rfc1437.de/2007/10/23/ist-die-inflationsrate-wirklich-bedrohlich/ - 2026-03-03T16:03:07.000Z + 2026-03-03T16:03:07.647Z monthly 0.8 @@ -31943,7 +32132,7 @@ https://www.rfc1437.de/2007/10/22/anwaelte-verbieten-ansicht-des-html-codes-ihrer/ - 2026-03-03T16:03:11.000Z + 2026-03-03T16:03:11.153Z monthly 0.8 @@ -31952,7 +32141,7 @@ https://www.rfc1437.de/2007/10/22/clozure-cl-ide-for-tiger/ - 2026-03-03T16:03:15.000Z + 2026-03-03T16:03:15.191Z monthly 0.8 @@ -31961,7 +32150,7 @@ https://www.rfc1437.de/2007/10/21/arcor-muss-youporn-sperren/ - 2026-03-03T16:03:19.000Z + 2026-03-03T16:03:19.991Z monthly 0.8 @@ -31970,7 +32159,7 @@ https://www.rfc1437.de/2007/10/20/sorge-um-nutzerrechte-wegen-copyright-filter/ - 2026-03-03T16:03:24.000Z + 2026-03-03T16:03:24.870Z monthly 0.8 @@ -31979,7 +32168,7 @@ https://www.rfc1437.de/2007/10/19/annalist/ - 2026-03-03T16:03:28.000Z + 2026-03-03T16:03:28.953Z monthly 0.8 @@ -31988,7 +32177,7 @@ https://www.rfc1437.de/2007/10/19/wie-wird-man-terrorist/ - 2026-03-03T16:03:32.000Z + 2026-03-03T16:03:32.642Z monthly 0.8 @@ -31997,7 +32186,7 @@ https://www.rfc1437.de/2007/10/18/cl-objc-project/ - 2026-03-03T16:03:36.000Z + 2026-03-03T16:03:36.109Z monthly 0.8 @@ -32006,7 +32195,7 @@ https://www.rfc1437.de/2007/10/18/hello-bob-hello-joe/ - 2026-03-03T16:03:39.000Z + 2026-03-03T16:03:39.653Z monthly 0.8 @@ -32015,7 +32204,7 @@ https://www.rfc1437.de/2007/10/18/jobs-freut-sich-auf-hunderte-iphone-anwendungen/ - 2026-03-03T16:03:43.000Z + 2026-03-03T16:03:43.679Z monthly 0.8 @@ -32024,7 +32213,7 @@ https://www.rfc1437.de/2007/10/18/nikon-d3-first-impressions/ - 2026-03-03T16:03:47.000Z + 2026-03-03T16:03:47.256Z monthly 0.8 @@ -32033,7 +32222,7 @@ https://www.rfc1437.de/2007/10/18/wahlcomputer-und-die-grenzen-der/ - 2026-03-03T16:03:51.000Z + 2026-03-03T16:03:51.752Z monthly 0.8 @@ -32042,7 +32231,7 @@ https://www.rfc1437.de/2007/10/17/ag-koeln-oeffentliches-singen-ist-keine/ - 2026-03-03T16:03:55.000Z + 2026-03-03T16:03:55.224Z monthly 0.8 @@ -32051,7 +32240,7 @@ https://www.rfc1437.de/2007/10/17/amazons-ein-klick-patent-groesstenteils-fuer/ - 2026-03-03T16:03:58.000Z + 2026-03-03T16:03:58.787Z monthly 0.8 @@ -32060,7 +32249,7 @@ https://www.rfc1437.de/2007/10/17/dot-com-fever-stirs-sense-of-d-j-vu/ - 2026-03-03T16:04:02.000Z + 2026-03-03T16:04:02.331Z monthly 0.8 @@ -32069,7 +32258,7 @@ https://www.rfc1437.de/2007/10/17/it-only-tuesday/ - 2026-03-07T21:10:15.000Z + 2026-03-07T21:10:15.690Z monthly 0.8 @@ -32078,7 +32267,7 @@ https://www.rfc1437.de/2007/10/17/nokia-announces-n810-internet-tablet-with-gps-and/ - 2026-03-03T16:04:10.000Z + 2026-03-03T16:04:10.265Z monthly 0.8 @@ -32087,7 +32276,7 @@ https://www.rfc1437.de/2007/10/17/ooxml-payback-time-as-global-standards-work-in-sc/ - 2026-03-03T16:04:14.000Z + 2026-03-03T16:04:14.693Z monthly 0.8 @@ -32096,7 +32285,7 @@ https://www.rfc1437.de/2007/10/16/biometrie-gegner-wegen-hausfriedensbruch-angezeigt/ - 2026-03-03T16:04:18.000Z + 2026-03-03T16:04:18.640Z monthly 0.8 @@ -32105,7 +32294,7 @@ https://www.rfc1437.de/2007/10/16/canon-kuendigt-objektive-mit-200mm-f-2-und-800mm/ - 2026-03-03T16:04:23.000Z + 2026-03-03T16:04:23.088Z monthly 0.8 @@ -32114,7 +32303,7 @@ https://www.rfc1437.de/2007/10/16/second-earth-found-20-light-years-away/ - 2026-03-03T16:04:27.000Z + 2026-03-03T16:04:27.044Z monthly 0.8 @@ -32123,7 +32312,7 @@ https://www.rfc1437.de/2007/10/12/patentklage-wegen-linux-desktops/ - 2026-03-03T16:04:31.000Z + 2026-03-03T16:04:31.232Z monthly 0.8 @@ -32132,7 +32321,7 @@ https://www.rfc1437.de/2007/10/12/re-digitool-mcl-clozure-openmcl/ - 2026-03-03T16:04:35.000Z + 2026-03-03T16:04:35.625Z monthly 0.8 @@ -32141,7 +32330,7 @@ https://www.rfc1437.de/2007/10/11/tale-of-tales/ - 2026-03-03T16:04:39.000Z + 2026-03-03T16:04:39.276Z monthly 0.8 @@ -32150,7 +32339,7 @@ https://www.rfc1437.de/2007/10/10/bevoelkerung-ab-16-soll-fuer-perso/ - 2026-03-03T16:04:44.000Z + 2026-03-03T16:04:44.181Z monthly 0.8 @@ -32159,7 +32348,7 @@ https://www.rfc1437.de/2007/10/10/kirch-ist-zurueck-auf-der-grossen-buehne/ - 2026-03-03T16:04:47.000Z + 2026-03-03T16:04:47.794Z monthly 0.8 @@ -32168,7 +32357,7 @@ https://www.rfc1437.de/2007/10/05/text-tabellen-google-hat-kritisierte-agb-nicht/ - 2026-03-03T16:04:51.000Z + 2026-03-03T16:04:51.843Z monthly 0.8 @@ -32177,7 +32366,7 @@ https://www.rfc1437.de/2007/10/04/swift-entzieht-eu-daten-dem-einfachen-zugriff/ - 2026-03-03T16:04:55.000Z + 2026-03-03T16:04:55.424Z monthly 0.8 @@ -32186,7 +32375,7 @@ https://www.rfc1437.de/2007/10/02/creative-commons-verklagt/ - 2026-03-03T16:04:59.000Z + 2026-03-03T16:04:59.409Z monthly 0.8 @@ -32195,7 +32384,7 @@ https://www.rfc1437.de/2007/10/01/berliner-amtsgericht-verbietet-speichern-von/ - 2026-03-03T16:05:03.000Z + 2026-03-03T16:05:03.831Z monthly 0.8 @@ -32204,7 +32393,7 @@ https://www.rfc1437.de/2007/10/01/pandoc/ - 2026-03-03T16:05:08.000Z + 2026-03-03T16:05:08.269Z monthly 0.8 @@ -32213,7 +32402,7 @@ https://www.rfc1437.de/2007/10/01/vortragsfolien-mit-s5-cognitiones-publicae/ - 2026-03-03T16:05:12.000Z + 2026-03-03T16:05:12.696Z monthly 0.8 @@ -32222,7 +32411,7 @@ https://www.rfc1437.de/2007/09/28/empoerung-ueber-eu-plaene-fuer-web-zensur/ - 2026-03-03T16:05:16.000Z + 2026-03-03T16:05:16.772Z monthly 0.8 @@ -32231,7 +32420,7 @@ https://www.rfc1437.de/2007/09/28/flying-logic-software-for-visual-planning-support/ - 2026-03-03T16:05:20.000Z + 2026-03-03T16:05:20.275Z monthly 0.8 @@ -32240,7 +32429,7 @@ https://www.rfc1437.de/2007/09/28/niederlande-aus-fuer-nedap-wahlcomputer/ - 2026-03-03T16:05:24.000Z + 2026-03-03T16:05:24.257Z monthly 0.8 @@ -32249,7 +32438,7 @@ https://www.rfc1437.de/2007/09/28/schwarzgeldaffaere-kanther-kommt-mit-geldstrafe/ - 2026-03-03T16:05:29.000Z + 2026-03-03T16:05:29.228Z monthly 0.8 @@ -32258,7 +32447,7 @@ https://www.rfc1437.de/2007/09/28/tour-rasmussen-hatte-kuenstliches-epo-im-urin/ - 2026-03-03T16:05:34.000Z + 2026-03-03T16:05:34.148Z monthly 0.8 @@ -32267,7 +32456,7 @@ https://www.rfc1437.de/2007/09/28/wie-der-weltuntergang-aussieht/ - 2026-03-03T16:05:38.000Z + 2026-03-03T16:05:38.599Z monthly 0.8 @@ -32276,7 +32465,7 @@ https://www.rfc1437.de/2007/09/24/bounce-verbot-fuer-bundes-mailserver/ - 2026-03-03T16:05:43.000Z + 2026-03-03T16:05:43.077Z monthly 0.8 @@ -32285,7 +32474,7 @@ https://www.rfc1437.de/2007/09/24/pin-code-und-fingerabdruck/ - 2026-03-03T16:05:47.000Z + 2026-03-03T16:05:47.525Z monthly 0.8 @@ -32294,7 +32483,7 @@ https://www.rfc1437.de/2007/09/24/polizeizugriffe-bei-demo-gegen-den/ - 2026-03-03T16:05:52.000Z + 2026-03-03T16:05:52.421Z monthly 0.8 @@ -32303,7 +32492,7 @@ https://www.rfc1437.de/2007/09/24/sachverstaendige-haben-erhebliche-bedenken-gegen/ - 2026-03-03T16:05:56.000Z + 2026-03-03T16:05:56.364Z monthly 0.8 @@ -32312,7 +32501,7 @@ https://www.rfc1437.de/2007/09/24/zwei-olpc-notebooks-kaufen-eines-spenden/ - 2026-03-03T16:06:00.000Z + 2026-03-03T16:06:00.293Z monthly 0.8 @@ -32321,7 +32510,7 @@ https://www.rfc1437.de/2007/09/20/dolderer-zurueck-an-denic-spitze/ - 2026-03-03T16:06:03.000Z + 2026-03-03T16:06:03.922Z monthly 0.8 @@ -32330,7 +32519,7 @@ https://www.rfc1437.de/2007/09/17/ie-pwns-secondlife/ - 2026-03-03T16:06:08.000Z + 2026-03-03T16:06:08.474Z monthly 0.8 @@ -32339,7 +32528,7 @@ https://www.rfc1437.de/2007/09/17/ozbus-london-to-sydney-bus-travel/ - 2026-03-03T16:06:11.000Z + 2026-03-03T16:06:11.601Z monthly 0.8 @@ -32348,7 +32537,7 @@ https://www.rfc1437.de/2007/09/17/tor-server-betreiber-stellt-nach-razzia/ - 2026-03-03T16:06:16.000Z + 2026-03-03T16:06:16.525Z monthly 0.8 @@ -32357,7 +32546,7 @@ https://www.rfc1437.de/2007/09/17/veroeffentlichter-mailverkehr-belastet-anti/ - 2026-03-03T16:06:20.000Z + 2026-03-03T16:06:20.064Z monthly 0.8 @@ -32366,7 +32555,7 @@ https://www.rfc1437.de/2007/09/15/merkel-findet-debatte-ueber-online-razzien/ - 2026-03-03T16:06:25.000Z + 2026-03-03T16:06:25.134Z monthly 0.8 @@ -32375,7 +32564,7 @@ https://www.rfc1437.de/2007/09/15/sco-beantragt-glaeubigerschutz/ - 2026-03-03T16:06:29.000Z + 2026-03-03T16:06:29.227Z monthly 0.8 @@ -32384,7 +32573,7 @@ https://www.rfc1437.de/2007/09/12/anonymisierungsnetz-tor-abgephisht/ - 2026-03-03T16:06:33.000Z + 2026-03-03T16:06:33.508Z monthly 0.8 @@ -32393,7 +32582,7 @@ https://www.rfc1437.de/2007/09/12/anwalt-gravenreuth-zu-haftstrafe-verurteilt/ - 2026-03-03T16:06:39.000Z + 2026-03-03T16:06:39.224Z monthly 0.8 @@ -32402,7 +32591,7 @@ https://www.rfc1437.de/2007/09/12/eu-kommissar-will-gefaehrliche-woerter-im/ - 2026-03-03T16:06:43.000Z + 2026-03-03T16:06:43.353Z monthly 0.8 @@ -32411,7 +32600,7 @@ https://www.rfc1437.de/2007/09/12/microsoft-erhaelt-patent-auf-benachrichtung-ueber/ - 2026-03-03T16:06:47.000Z + 2026-03-03T16:06:47.876Z monthly 0.8 @@ -32420,7 +32609,7 @@ https://www.rfc1437.de/2007/09/10/bayern-will-schaerfe-strafen-fuer-gotteslaesterung/ - 2026-03-03T16:06:52.000Z + 2026-03-03T16:06:52.335Z monthly 0.8 @@ -32429,7 +32618,7 @@ https://www.rfc1437.de/2007/09/07/leatherman-skeletool-the-lightweight-multi-tool/ - 2026-03-03T16:06:56.000Z + 2026-03-03T16:06:56.310Z monthly 0.8 @@ -32438,7 +32627,7 @@ https://www.rfc1437.de/2007/09/07/shades/ - 2026-03-03T16:07:00.000Z + 2026-03-03T16:07:00.401Z monthly 0.8 @@ -32447,7 +32636,7 @@ https://www.rfc1437.de/2007/09/05/external-filters-from-erlang/ - 2026-03-03T16:07:04.000Z + 2026-03-03T16:07:04.397Z monthly 0.8 @@ -32456,7 +32645,7 @@ https://www.rfc1437.de/2007/09/05/mobile-processing/ - 2026-03-03T16:07:07.000Z + 2026-03-03T16:07:07.514Z monthly 0.8 @@ -32465,7 +32654,7 @@ https://www.rfc1437.de/2007/09/05/nasaworldwind-in-processing/ - 2026-03-03T16:07:11.000Z + 2026-03-03T16:07:11.142Z monthly 0.8 @@ -32474,7 +32663,7 @@ https://www.rfc1437.de/2007/09/05/processing-1-0-beta/ - 2026-03-03T16:07:15.000Z + 2026-03-03T16:07:15.200Z monthly 0.8 @@ -32483,7 +32672,7 @@ https://www.rfc1437.de/2007/09/05/world-wind-java-sdk/ - 2026-03-03T16:07:18.000Z + 2026-03-03T16:07:18.694Z monthly 0.8 @@ -32492,7 +32681,7 @@ https://www.rfc1437.de/2007/09/04/tin-foil-hats/ - 2026-03-03T16:07:22.000Z + 2026-03-03T16:07:22.226Z monthly 0.8 @@ -32501,7 +32690,7 @@ https://www.rfc1437.de/2007/09/03/babeldjango/ - 2026-03-03T16:07:26.000Z + 2026-03-03T16:07:26.262Z monthly 0.8 @@ -32510,7 +32699,7 @@ https://www.rfc1437.de/2007/09/02/microsoft-allegedly-bullies-and-bribes-to-make/ - 2026-03-03T16:07:30.000Z + 2026-03-03T16:07:30.476Z monthly 0.8 @@ -32519,7 +32708,7 @@ https://www.rfc1437.de/2007/08/30/abmahnung-gez-untersagt-gez-gebuehren-pc/ - 2026-03-03T16:07:35.000Z + 2026-03-03T16:07:35.459Z monthly 0.8 @@ -32528,7 +32717,7 @@ https://www.rfc1437.de/2007/08/11/court-rules-novell-owns-the-unix-and-unixware/ - 2026-03-07T21:10:17.000Z + 2026-03-07T21:10:17.230Z monthly 0.8 @@ -32537,7 +32726,7 @@ https://www.rfc1437.de/2007/08/10/the-shakespeare-programming-language/ - 2026-03-03T16:07:44.000Z + 2026-03-03T16:07:44.006Z monthly 0.8 @@ -32546,7 +32735,7 @@ https://www.rfc1437.de/2007/08/10/wir-alle-haben-kommentarspam-zugestimmt/ - 2026-03-03T16:07:48.000Z + 2026-03-03T16:07:48.589Z monthly 0.8 @@ -32555,7 +32744,7 @@ https://www.rfc1437.de/2007/08/09/brandweeknrx-red-cross-sued-over-its-red-cross/ - 2026-03-03T16:07:53.000Z + 2026-03-03T16:07:53.052Z monthly 0.8 @@ -32564,7 +32753,7 @@ https://www.rfc1437.de/2007/08/09/mathtrek-cracking-the-cube/ - 2026-03-03T16:07:57.000Z + 2026-03-03T16:07:57.074Z monthly 0.8 @@ -32573,7 +32762,7 @@ https://www.rfc1437.de/2007/08/09/new-fcc-rules-may-impact-linux-based-devices/ - 2026-03-03T16:08:01.000Z + 2026-03-03T16:08:01.066Z monthly 0.8 @@ -32582,7 +32771,7 @@ https://www.rfc1437.de/2007/08/08/tidbits-new-ilife-08-revealed/ - 2026-03-03T16:08:05.000Z + 2026-03-03T16:08:05.118Z monthly 0.8 @@ -32591,7 +32780,7 @@ https://www.rfc1437.de/2007/08/06/freie-erp-und-crm-loesung-fuer-linux-windows-und/ - 2026-03-03T16:08:09.000Z + 2026-03-03T16:08:09.585Z monthly 0.8 @@ -32600,7 +32789,7 @@ https://www.rfc1437.de/2007/08/06/herber-rueckschlag-fuer-us-wahlmaschinenhersteller/ - 2026-03-03T16:08:13.000Z + 2026-03-03T16:08:13.201Z monthly 0.8 @@ -32609,7 +32798,7 @@ https://www.rfc1437.de/2007/08/06/light-blue-touchpaper-electoral-commission/ - 2026-03-07T21:10:18.000Z + 2026-03-07T21:10:18.400Z monthly 0.8 @@ -32618,7 +32807,7 @@ https://www.rfc1437.de/2007/08/06/m-e-c-as2-open-source-as2-software/ - 2026-03-03T16:08:21.000Z + 2026-03-03T16:08:21.345Z monthly 0.8 @@ -32627,7 +32816,7 @@ https://www.rfc1437.de/2007/08/06/real-time-gps-shark-hunting/ - 2026-03-03T16:08:25.000Z + 2026-03-03T16:08:25.412Z monthly 0.8 @@ -32636,7 +32825,7 @@ https://www.rfc1437.de/2007/08/03/amazon-fps-amazon-flexible-payment-service/ - 2026-03-03T16:08:30.000Z + 2026-03-03T16:08:30.111Z monthly 0.8 @@ -32645,7 +32834,7 @@ https://www.rfc1437.de/2007/08/03/multiverse/ - 2026-03-03T16:08:34.000Z + 2026-03-03T16:08:34.209Z monthly 0.8 @@ -32654,7 +32843,7 @@ https://www.rfc1437.de/2007/08/03/unter-hausarrest/ - 2026-03-03T16:08:38.000Z + 2026-03-03T16:08:38.270Z monthly 0.8 @@ -32663,7 +32852,7 @@ https://www.rfc1437.de/2007/08/03/us-wahlcomputer-koennen-keine-vertrauenswuerdigen/ - 2026-03-03T16:08:42.000Z + 2026-03-03T16:08:42.273Z monthly 0.8 @@ -32672,7 +32861,7 @@ https://www.rfc1437.de/2007/08/03/vimdoc-the-online-source-for-vim-documentation/ - 2026-03-07T21:10:19.000Z + 2026-03-07T21:10:19.204Z monthly 0.8 @@ -32681,7 +32870,7 @@ https://www.rfc1437.de/2007/08/03/virtualisierungs-rootkit-blue-pill-frei-verfuegbar/ - 2026-03-03T16:08:49.000Z + 2026-03-03T16:08:49.110Z monthly 0.8 @@ -32690,7 +32879,7 @@ https://www.rfc1437.de/2007/08/03/zypries-verschaerft-kritik-an-online-razzien/ - 2026-03-03T16:08:53.000Z + 2026-03-03T16:08:53.098Z monthly 0.8 @@ -32699,7 +32888,7 @@ https://www.rfc1437.de/2007/08/02/eu-klage-gegen-deutsche-datenschutz-gesetze/ - 2026-03-03T16:08:57.000Z + 2026-03-03T16:08:57.130Z monthly 0.8 @@ -32708,7 +32897,7 @@ https://www.rfc1437.de/2007/08/01/1-3-megapixel-usb-digital-microscope/ - 2026-03-03T16:09:00.000Z + 2026-03-03T16:09:00.812Z monthly 0.8 @@ -32717,7 +32906,7 @@ https://www.rfc1437.de/2007/08/01/leica-m8-review-1-introduction-digital/ - 2026-03-03T16:09:05.000Z + 2026-03-03T16:09:05.297Z monthly 0.8 @@ -32726,7 +32915,7 @@ https://www.rfc1437.de/2007/08/01/scan-this-guy-s-e-passport-and-watch-your-system/ - 2026-03-03T16:09:08.000Z + 2026-03-03T16:09:08.900Z monthly 0.8 @@ -32735,7 +32924,7 @@ https://www.rfc1437.de/2007/07/31/ergebnisse-des-groessten-hacker-tests-fuer-us/ - 2026-03-03T16:09:12.000Z + 2026-03-03T16:09:12.929Z monthly 0.8 @@ -32744,7 +32933,7 @@ https://www.rfc1437.de/2007/07/31/harter-kurs-gegen-drogensuender/ - 2026-03-03T16:09:17.000Z + 2026-03-03T16:09:17.917Z monthly 0.8 @@ -32753,7 +32942,7 @@ https://www.rfc1437.de/2007/07/31/project-wonderland/ - 2026-03-03T16:09:21.000Z + 2026-03-03T16:09:21.505Z monthly 0.8 @@ -32762,7 +32951,7 @@ https://www.rfc1437.de/2007/07/31/skeptical-science-and-technology-quotes/ - 2026-03-07T21:10:22.000Z + 2026-03-07T21:10:22.449Z monthly 0.8 @@ -32771,7 +32960,7 @@ https://www.rfc1437.de/2007/07/31/the-effects-of-data-fragmentation-in-a-mixed-load/ - 2026-03-07T21:10:23.000Z + 2026-03-07T21:10:23.360Z monthly 0.8 @@ -32780,7 +32969,7 @@ https://www.rfc1437.de/2007/07/31/totgesagte-leben-nicht-laenger-kein-amiga-center/ - 2026-03-03T16:09:32.000Z + 2026-03-03T16:09:32.488Z monthly 0.8 @@ -32789,7 +32978,7 @@ https://www.rfc1437.de/2007/07/31/uh-oh-another-smooth-move-from-microsoft-watch/ - 2026-03-03T16:09:37.000Z + 2026-03-03T16:09:37.438Z monthly 0.8 @@ -32798,7 +32987,7 @@ https://www.rfc1437.de/2007/07/30/anti-grain-geometry-texts-rasterization-exposures/ - 2026-03-03T16:09:41.000Z + 2026-03-03T16:09:41.124Z monthly 0.8 @@ -32807,7 +32996,7 @@ https://www.rfc1437.de/2007/07/30/coding-horror-the-coming-software-patent/ - 2026-03-08T14:20:58.000Z + 2026-03-08T14:20:58.050Z monthly 0.8 @@ -32816,7 +33005,7 @@ https://www.rfc1437.de/2007/07/30/top-beamter-der-bundespolizei-liess-e-mails/ - 2026-03-03T16:09:49.000Z + 2026-03-03T16:09:49.284Z monthly 0.8 @@ -32825,7 +33014,7 @@ https://www.rfc1437.de/2007/07/30/wget-1-10-2-for-windows-win32/ - 2026-03-03T16:09:53.000Z + 2026-03-03T16:09:53.037Z monthly 0.8 @@ -32834,7 +33023,7 @@ https://www.rfc1437.de/2007/07/27/second-life-fuer-deutsche/ - 2026-03-03T16:09:57.000Z + 2026-03-03T16:09:57.601Z monthly 0.8 @@ -32843,7 +33032,7 @@ https://www.rfc1437.de/2007/07/26/ermittlung-des-anschlussinhabers-bei/ - 2026-03-03T16:10:02.000Z + 2026-03-03T16:10:02.054Z monthly 0.8 @@ -32852,7 +33041,7 @@ https://www.rfc1437.de/2007/07/26/japanese-watch-maker/ - 2026-03-03T16:10:05.000Z + 2026-03-03T16:10:05.246Z monthly 0.8 @@ -32861,7 +33050,7 @@ https://www.rfc1437.de/2007/07/26/rasmussen-gefeuert-und-aus-der-tour-genommen/ - 2026-03-03T16:10:09.000Z + 2026-03-03T16:10:09.790Z monthly 0.8 @@ -32870,7 +33059,7 @@ https://www.rfc1437.de/2007/07/26/stackless-python-soll-eve-online-schneller-machen/ - 2026-03-03T16:10:14.000Z + 2026-03-03T16:10:14.701Z monthly 0.8 @@ -32879,7 +33068,7 @@ https://www.rfc1437.de/2007/07/26/the-church-of-the-latter-day-dude/ - 2026-03-07T21:10:30.000Z + 2026-03-07T21:10:30.121Z monthly 0.8 @@ -32888,7 +33077,7 @@ https://www.rfc1437.de/2007/07/25/antique-engines-inspire-nano-chip/ - 2026-03-03T16:10:21.000Z + 2026-03-03T16:10:21.491Z monthly 0.8 @@ -32897,7 +33086,7 @@ https://www.rfc1437.de/2007/07/25/auf-nummer-sicher/ - 2026-03-03T16:10:25.000Z + 2026-03-03T16:10:25.106Z monthly 0.8 @@ -32906,7 +33095,7 @@ https://www.rfc1437.de/2007/07/25/britische-musikindustrie-greift-regierung-an/ - 2026-03-03T16:10:30.000Z + 2026-03-03T16:10:30.345Z monthly 0.8 @@ -32915,7 +33104,7 @@ https://www.rfc1437.de/2007/07/25/free-your-imagination/ - 2026-03-03T16:10:33.000Z + 2026-03-03T16:10:33.521Z monthly 0.8 @@ -32924,7 +33113,7 @@ https://www.rfc1437.de/2007/07/25/iphoto-library-manager/ - 2026-03-07T21:10:30.000Z + 2026-03-07T21:10:30.940Z monthly 0.8 @@ -32933,7 +33122,7 @@ https://www.rfc1437.de/2007/07/25/jamendo-fabrice-collette/ - 2026-03-03T16:10:40.000Z + 2026-03-03T16:10:40.355Z monthly 0.8 @@ -32942,7 +33131,7 @@ https://www.rfc1437.de/2007/07/25/tour-macht-weiter-trotz-aller-probleme/ - 2026-03-03T16:10:44.000Z + 2026-03-03T16:10:44.830Z monthly 0.8 @@ -32951,7 +33140,7 @@ https://www.rfc1437.de/2007/07/25/we-re-all-gonna-die/ - 2026-03-03T16:10:48.000Z + 2026-03-03T16:10:48.894Z monthly 0.8 @@ -32960,7 +33149,7 @@ https://www.rfc1437.de/2007/07/24/darwiinremote/ - 2026-03-03T16:10:52.000Z + 2026-03-03T16:10:52.087Z monthly 0.8 @@ -32969,7 +33158,7 @@ https://www.rfc1437.de/2007/07/24/re-question-about-erlang-s-future/ - 2026-03-03T16:10:56.000Z + 2026-03-03T16:10:56.173Z monthly 0.8 @@ -32978,7 +33167,7 @@ https://www.rfc1437.de/2007/07/24/the-real-problem-with-alexa/ - 2026-03-03T16:10:59.000Z + 2026-03-03T16:10:59.757Z monthly 0.8 @@ -32987,7 +33176,7 @@ https://www.rfc1437.de/2007/07/24/urteil-gegen-skype-wegen-gpl-verletzung/ - 2026-03-03T16:11:03.000Z + 2026-03-03T16:11:03.802Z monthly 0.8 @@ -32996,7 +33185,7 @@ https://www.rfc1437.de/2007/07/23/david-carr-deadlines-overtime-and-undertime/ - 2026-03-03T16:11:07.000Z + 2026-03-03T16:11:07.944Z monthly 0.8 @@ -33005,7 +33194,7 @@ https://www.rfc1437.de/2007/07/23/what-linspire-agreed-to/ - 2026-03-07T21:10:32.000Z + 2026-03-07T21:10:32.978Z monthly 0.8 @@ -33014,7 +33203,7 @@ https://www.rfc1437.de/2007/07/20/bush-abolishes-fifth-amendment/ - 2026-03-07T21:10:33.000Z + 2026-03-07T21:10:33.700Z monthly 0.8 @@ -33023,7 +33212,7 @@ https://www.rfc1437.de/2007/07/20/chax-miscellaneous-ichat-improvements/ - 2026-03-07T21:10:36.000Z + 2026-03-07T21:10:36.571Z monthly 0.8 @@ -33032,7 +33221,7 @@ https://www.rfc1437.de/2007/07/20/dame-durchgespielt/ - 2026-03-03T16:11:22.000Z + 2026-03-03T16:11:22.888Z monthly 0.8 @@ -33041,7 +33230,7 @@ https://www.rfc1437.de/2007/07/20/dead-iron-monsters-legacy-of-soviet-union/ - 2026-03-08T14:23:03.000Z + 2026-03-08T14:23:03.242Z monthly 0.8 @@ -33050,7 +33239,7 @@ https://www.rfc1437.de/2007/07/20/distel-erlang-like-concurrency-in-emacs/ - 2026-03-03T16:11:30.000Z + 2026-03-03T16:11:30.381Z monthly 0.8 @@ -33059,7 +33248,7 @@ https://www.rfc1437.de/2007/07/20/iglasses-for-ichat-av/ - 2026-03-07T21:10:43.000Z + 2026-03-07T21:10:43.721Z monthly 0.8 @@ -33068,7 +33257,7 @@ https://www.rfc1437.de/2007/07/20/learning-from-dave-winer/ - 2026-03-03T16:11:38.000Z + 2026-03-03T16:11:38.080Z monthly 0.8 @@ -33077,7 +33266,7 @@ https://www.rfc1437.de/2007/07/20/tiny-pc-sips-power-runs-linux/ - 2026-03-03T16:11:41.000Z + 2026-03-03T16:11:41.740Z monthly 0.8 @@ -33086,7 +33275,7 @@ https://www.rfc1437.de/2007/07/20/trojaner-basteln-fuer-dummys/ - 2026-03-03T16:11:45.000Z + 2026-03-03T16:11:45.391Z monthly 0.8 @@ -33095,7 +33284,7 @@ https://www.rfc1437.de/2007/07/19/jing-project-visual-conversation-starts-here-mac/ - 2026-03-03T16:11:49.000Z + 2026-03-03T16:11:49.074Z monthly 0.8 @@ -33104,7 +33293,7 @@ https://www.rfc1437.de/2007/07/19/nokia-veroeffentlicht-browser-fuer-maemo/ - 2026-03-03T16:11:53.000Z + 2026-03-03T16:11:53.196Z monthly 0.8 @@ -33113,7 +33302,7 @@ https://www.rfc1437.de/2007/07/19/project-details-for-lejos/ - 2026-03-03T16:11:57.000Z + 2026-03-03T16:11:57.229Z monthly 0.8 @@ -33122,7 +33311,7 @@ https://www.rfc1437.de/2007/07/19/schenk/ - 2026-03-03T16:12:01.000Z + 2026-03-03T16:12:01.321Z monthly 0.8 @@ -33131,7 +33320,7 @@ https://www.rfc1437.de/2007/07/19/the-history-of-software-patents-bitlaw/ - 2026-03-03T16:12:04.000Z + 2026-03-03T16:12:04.918Z monthly 0.8 @@ -33140,7 +33329,7 @@ https://www.rfc1437.de/2007/07/18/abmahngrund-fotos-vom-fotostudio/ - 2026-03-03T16:12:09.000Z + 2026-03-03T16:12:09.009Z monthly 0.8 @@ -33149,7 +33338,7 @@ https://www.rfc1437.de/2007/07/18/absurditaeten-der-median/ - 2026-03-03T16:12:13.000Z + 2026-03-03T16:12:13.933Z monthly 0.8 @@ -33158,7 +33347,7 @@ https://www.rfc1437.de/2007/07/18/browseback-visual-web-history-you-can-search/ - 2026-03-03T16:12:17.000Z + 2026-03-03T16:12:17.971Z monthly 0.8 @@ -33167,7 +33356,7 @@ https://www.rfc1437.de/2007/07/17/amflora-kommt-eu-will-basf-kartoffel-zulassen/ - 2026-03-03T16:12:21.000Z + 2026-03-03T16:12:21.993Z monthly 0.8 @@ -33176,7 +33365,7 @@ https://www.rfc1437.de/2007/07/17/integer-overflows/ - 2026-03-03T16:12:26.000Z + 2026-03-03T16:12:26.097Z monthly 0.8 @@ -33185,7 +33374,7 @@ https://www.rfc1437.de/2007/07/17/microsofts-digital-rights-management-umgangen/ - 2026-03-03T16:12:29.000Z + 2026-03-03T16:12:29.946Z monthly 0.8 @@ -33194,7 +33383,7 @@ https://www.rfc1437.de/2007/07/16/ipod-operating-system/ - 2026-03-03T16:12:33.000Z + 2026-03-03T16:12:33.997Z monthly 0.8 @@ -33203,7 +33392,7 @@ https://www.rfc1437.de/2007/07/16/linux-creator-calls-gplv3-authors-hypocrites-as/ - 2026-03-03T16:12:38.000Z + 2026-03-03T16:12:38.904Z monthly 0.8 @@ -33212,7 +33401,7 @@ https://www.rfc1437.de/2007/07/16/low-level-network-packets-with-python/ - 2026-03-03T16:12:42.000Z + 2026-03-03T16:12:42.528Z monthly 0.8 @@ -33221,7 +33410,7 @@ https://www.rfc1437.de/2007/07/16/tinderbox-downloads/ - 2026-03-03T16:12:47.000Z + 2026-03-03T16:12:47.113Z monthly 0.8 @@ -33230,7 +33419,7 @@ https://www.rfc1437.de/2007/07/13/bischof-fordert-schoepfungslehre-im-bio-unterricht/ - 2026-03-03T16:12:52.000Z + 2026-03-03T16:12:52.063Z monthly 0.8 @@ -33239,7 +33428,7 @@ https://www.rfc1437.de/2007/07/13/face-blindness-prosopagnosia-and-stones/ - 2026-03-03T16:12:55.000Z + 2026-03-03T16:12:55.717Z monthly 0.8 @@ -33248,7 +33437,7 @@ https://www.rfc1437.de/2007/07/13/why-spiders-aren-t-insects-ii-a-primer-on/ - 2026-03-08T14:23:10.000Z + 2026-03-08T14:23:10.993Z monthly 0.8 @@ -33257,7 +33446,7 @@ https://www.rfc1437.de/2007/07/11/at-t-cingular-vertragsbedingungen-fuer-iphone/ - 2026-03-03T16:13:02.000Z + 2026-03-03T16:13:02.980Z monthly 0.8 @@ -33266,7 +33455,7 @@ https://www.rfc1437.de/2007/07/11/genera-concepts/ - 2026-03-03T16:13:06.000Z + 2026-03-03T16:13:06.630Z monthly 0.8 @@ -33275,7 +33464,7 @@ https://www.rfc1437.de/2007/07/10/ampache-web-musicbox/ - 2026-03-03T16:13:10.000Z + 2026-03-03T16:13:10.196Z monthly 0.8 @@ -33284,7 +33473,7 @@ https://www.rfc1437.de/2007/07/10/eu-bei-fluggastdaten-ueber-den-tisch-gezogen/ - 2026-03-03T16:13:15.000Z + 2026-03-03T16:13:15.190Z monthly 0.8 @@ -33293,7 +33482,7 @@ https://www.rfc1437.de/2007/07/10/konrad-zuse-turing-s-alter-ego/ - 2026-03-03T16:13:18.000Z + 2026-03-03T16:13:18.784Z monthly 0.8 @@ -33302,7 +33491,7 @@ https://www.rfc1437.de/2007/07/09/nokia-skypes-its-n800-linux-tablet/ - 2026-03-03T16:13:23.000Z + 2026-03-03T16:13:23.269Z monthly 0.8 @@ -33311,7 +33500,7 @@ https://www.rfc1437.de/2007/07/09/perlbal/ - 2026-03-03T16:13:26.000Z + 2026-03-03T16:13:26.870Z monthly 0.8 @@ -33320,7 +33509,7 @@ https://www.rfc1437.de/2007/07/09/popstars-retten-die-erde/ - 2026-03-03T16:13:30.000Z + 2026-03-03T16:13:30.709Z monthly 0.8 @@ -33329,7 +33518,7 @@ https://www.rfc1437.de/2007/07/09/professional-farters/ - 2026-03-07T21:10:50.000Z + 2026-03-07T21:10:50.806Z monthly 0.8 @@ -33338,7 +33527,7 @@ https://www.rfc1437.de/2007/07/09/schaeuble-fordert-internierung-internet-und/ - 2026-03-03T16:13:38.000Z + 2026-03-03T16:13:38.333Z monthly 0.8 @@ -33347,7 +33536,7 @@ https://www.rfc1437.de/2007/07/09/sqlite-performance-and-django/ - 2026-03-07T21:10:51.000Z + 2026-03-07T21:10:51.523Z monthly 0.8 @@ -33356,7 +33545,7 @@ https://www.rfc1437.de/2007/07/09/union-droht-ard-und-zdf-mit-werbeverbot/ - 2026-03-03T16:13:45.000Z + 2026-03-03T16:13:45.995Z monthly 0.8 @@ -33365,7 +33554,7 @@ https://www.rfc1437.de/2007/07/08/winmtr/ - 2026-03-03T16:13:49.000Z + 2026-03-03T16:13:49.172Z monthly 0.8 @@ -33374,7 +33563,7 @@ https://www.rfc1437.de/2007/07/07/i-can-t-stop-thinking-6/ - 2026-03-07T21:10:52.000Z + 2026-03-07T21:10:52.241Z monthly 0.8 @@ -33383,7 +33572,7 @@ https://www.rfc1437.de/2007/07/06/bgh-erleichtert-telefonauskuenften-herausgabe-von/ - 2026-03-03T16:13:57.000Z + 2026-03-03T16:13:57.317Z monthly 0.8 @@ -33392,7 +33581,7 @@ https://www.rfc1437.de/2007/07/06/macfusion-the-gui-for-macfuse/ - 2026-03-07T21:10:52.000Z + 2026-03-07T21:10:52.960Z monthly 0.8 @@ -33401,7 +33590,7 @@ https://www.rfc1437.de/2007/07/06/performance-tuning-postgresql/ - 2026-03-08T14:23:18.000Z + 2026-03-08T14:23:18.100Z monthly 0.8 @@ -33410,7 +33599,7 @@ https://www.rfc1437.de/2007/07/06/unternehmensnamen-in-blog-domains-sind/ - 2026-03-03T16:14:08.000Z + 2026-03-03T16:14:08.071Z monthly 0.8 @@ -33419,7 +33608,7 @@ https://www.rfc1437.de/2007/07/05/the-story-of-mel/ - 2026-03-07T21:10:57.000Z + 2026-03-07T21:10:57.871Z monthly 0.8 @@ -33428,7 +33617,7 @@ https://www.rfc1437.de/2007/07/04/bush-on-overruling-judgements/ - 2026-03-07T21:10:59.000Z + 2026-03-07T21:10:59.042Z monthly 0.8 @@ -33437,7 +33626,7 @@ https://www.rfc1437.de/2007/07/04/karlsruhe-abgeordnete-muessen-erstmals/ - 2026-03-03T16:14:19.000Z + 2026-03-03T16:14:19.844Z monthly 0.8 @@ -33446,7 +33635,7 @@ https://www.rfc1437.de/2007/07/04/l-tat-c-est-moi/ - 2026-03-07T19:13:21.000Z + 2026-03-07T19:13:21.746Z monthly 0.8 @@ -33455,7 +33644,7 @@ https://www.rfc1437.de/2007/07/03/freace-wieder-das-gleiche-muster/ - 2026-03-03T16:14:28.000Z + 2026-03-03T16:14:28.597Z monthly 0.8 @@ -33464,7 +33653,7 @@ https://www.rfc1437.de/2007/07/03/perian-1-0-macht-macs-zu-universellen-video/ - 2026-03-03T16:14:32.000Z + 2026-03-03T16:14:32.260Z monthly 0.8 @@ -33473,7 +33662,7 @@ https://www.rfc1437.de/2007/07/03/python-networkspaces-and-parallel-programs/ - 2026-03-07T21:10:59.000Z + 2026-03-07T21:10:59.818Z monthly 0.8 @@ -33482,7 +33671,7 @@ https://www.rfc1437.de/2007/07/03/sos-bundestag-soll-patentierte-standards-abnicken/ - 2026-03-03T16:14:39.000Z + 2026-03-03T16:14:39.480Z monthly 0.8 @@ -33491,7 +33680,7 @@ https://www.rfc1437.de/2007/07/03/terror-suspects-all-linked-to-nhs/ - 2026-03-07T21:11:01.000Z + 2026-03-07T21:11:01.767Z monthly 0.8 @@ -33500,7 +33689,7 @@ https://www.rfc1437.de/2007/07/02/golfstrom-droht-spaetestens-2100-zu-versiegen/ - 2026-03-03T16:14:47.000Z + 2026-03-03T16:14:47.680Z monthly 0.8 @@ -33509,7 +33698,7 @@ https://www.rfc1437.de/2007/07/02/t-online-sperrt-tcp-port-8085/ - 2026-03-03T16:14:51.000Z + 2026-03-03T16:14:51.730Z monthly 0.8 @@ -33518,7 +33707,7 @@ https://www.rfc1437.de/2007/07/02/thousands-of-rubber-ducks-to-land-on-british/ - 2026-03-07T21:11:02.000Z + 2026-03-07T21:11:02.692Z monthly 0.8 @@ -33527,7 +33716,7 @@ https://www.rfc1437.de/2007/06/29/giftiger-riesenbaerenklau-wird-bekaempft/ - 2026-03-03T16:15:00.000Z + 2026-03-03T16:15:00.837Z monthly 0.8 @@ -33536,7 +33725,7 @@ https://www.rfc1437.de/2007/06/29/linux-smartphone-openmoko-ab-juli-2007-zu-haben/ - 2026-03-03T16:15:05.000Z + 2026-03-03T16:15:05.364Z monthly 0.8 @@ -33545,7 +33734,7 @@ https://www.rfc1437.de/2007/06/29/polizei-entschaerft-sprengsatz-in-london/ - 2026-03-03T16:15:10.000Z + 2026-03-03T16:15:10.297Z monthly 0.8 @@ -33554,7 +33743,7 @@ https://www.rfc1437.de/2007/06/28/code-kennt-keine-fairness/ - 2026-03-03T16:15:13.000Z + 2026-03-03T16:15:13.944Z monthly 0.8 @@ -33563,7 +33752,7 @@ https://www.rfc1437.de/2007/06/28/eu-und-usa-haben-vereinbarungen-ueber-weitergabe/ - 2026-03-03T16:15:18.000Z + 2026-03-03T16:15:18.951Z monthly 0.8 @@ -33572,7 +33761,7 @@ https://www.rfc1437.de/2007/06/28/intel-core-2/ - 2026-03-07T21:11:03.000Z + 2026-03-07T21:11:03.604Z monthly 0.8 @@ -33581,7 +33770,7 @@ https://www.rfc1437.de/2007/06/28/millionenschaden-durch-manipulierte-geldautomaten/ - 2026-03-03T16:15:27.000Z + 2026-03-03T16:15:27.455Z monthly 0.8 @@ -33590,7 +33779,7 @@ https://www.rfc1437.de/2007/06/28/when-sysadmins-ruled-the-earth-by-cory-doctorow/ - 2026-03-08T14:23:24.000Z + 2026-03-08T14:23:24.671Z monthly 0.8 @@ -33599,7 +33788,7 @@ https://www.rfc1437.de/2007/06/27/alte-domains-raus/ - 2026-03-03T16:15:36.000Z + 2026-03-03T16:15:36.179Z monthly 0.8 @@ -33608,7 +33797,7 @@ https://www.rfc1437.de/2007/06/27/ari-jaaksi-on-nokia-and-open-source-and-the-n770/ - 2026-03-03T16:15:40.000Z + 2026-03-03T16:15:40.358Z monthly 0.8 @@ -33617,7 +33806,7 @@ https://www.rfc1437.de/2007/06/27/kaczynski-droht-bundesregierung-wegen-karikatur/ - 2026-03-03T16:15:44.000Z + 2026-03-03T16:15:44.354Z monthly 0.8 @@ -33626,7 +33815,7 @@ https://www.rfc1437.de/2007/06/27/the-iphone-matches-most-of-its-hype/ - 2026-03-03T16:15:49.000Z + 2026-03-03T16:15:49.815Z monthly 0.8 @@ -33635,7 +33824,7 @@ https://www.rfc1437.de/2007/06/26/banned-by-gaussian/ - 2026-03-03T16:15:54.000Z + 2026-03-03T16:15:54.318Z monthly 0.8 @@ -33644,7 +33833,7 @@ https://www.rfc1437.de/2007/06/26/schwere-dopingvorwuerfe-gegen-bdr/ - 2026-03-03T16:15:58.000Z + 2026-03-03T16:15:58.776Z monthly 0.8 @@ -33653,7 +33842,7 @@ https://www.rfc1437.de/2007/06/26/zwangsausschluss-von-aktionaeren/ - 2026-03-03T16:16:03.000Z + 2026-03-03T16:16:03.723Z monthly 0.8 @@ -33662,7 +33851,7 @@ https://www.rfc1437.de/2007/06/25/full-map-of-europe-in-year-1000/ - 2026-03-03T16:16:07.000Z + 2026-03-03T16:16:07.336Z monthly 0.8 @@ -33671,7 +33860,7 @@ https://www.rfc1437.de/2007/06/25/google-mail-will-bei-vorratsdatenspeicherung/ - 2026-03-03T16:16:11.000Z + 2026-03-03T16:16:11.829Z monthly 0.8 @@ -33680,7 +33869,7 @@ https://www.rfc1437.de/2007/06/25/inhaltsfilter-fuer-second-life/ - 2026-03-03T16:16:15.000Z + 2026-03-03T16:16:15.584Z monthly 0.8 @@ -33689,7 +33878,7 @@ https://www.rfc1437.de/2007/06/25/schaeuble-haelt-online-durchsuchungen-fuer/ - 2026-03-03T16:16:20.000Z + 2026-03-03T16:16:20.651Z monthly 0.8 @@ -33698,7 +33887,7 @@ https://www.rfc1437.de/2007/06/25/try-these-different-ways-to-become-invisible/ - 2026-03-07T21:11:10.000Z + 2026-03-07T21:11:10.966Z monthly 0.8 @@ -33707,7 +33896,7 @@ https://www.rfc1437.de/2007/06/25/von-tarifpolitischen-zukunftsperspektiven-und/ - 2026-03-03T16:16:27.000Z + 2026-03-03T16:16:27.992Z monthly 0.8 @@ -33716,7 +33905,7 @@ https://www.rfc1437.de/2007/06/25/xgp/ - 2026-03-03T16:16:31.000Z + 2026-03-03T16:16:31.399Z monthly 0.8 @@ -33725,7 +33914,7 @@ https://www.rfc1437.de/2007/06/22/bald-bei-allen-eu-autos-hoechstgeschwindigkeit-ab/ - 2026-03-03T16:16:35.000Z + 2026-03-03T16:16:35.979Z monthly 0.8 @@ -33734,7 +33923,7 @@ https://www.rfc1437.de/2007/06/22/binary-marble-adding-machine/ - 2026-03-03T16:16:39.000Z + 2026-03-03T16:16:39.165Z monthly 0.8 @@ -33743,7 +33932,7 @@ https://www.rfc1437.de/2007/06/22/paul-dowman-ruby-on-rails-ec2-appliance/ - 2026-03-03T16:16:42.000Z + 2026-03-03T16:16:42.751Z monthly 0.8 @@ -33752,7 +33941,7 @@ https://www.rfc1437.de/2007/06/22/wettbewerbsbeschwerde-gegen-bbc-wegen-videoformat/ - 2026-03-03T16:16:47.000Z + 2026-03-03T16:16:47.751Z monthly 0.8 @@ -33761,7 +33950,7 @@ https://www.rfc1437.de/2007/06/22/yahoo-censoring-open-source/ - 2026-03-03T16:16:51.000Z + 2026-03-03T16:16:51.374Z monthly 0.8 @@ -33770,7 +33959,7 @@ https://www.rfc1437.de/2007/06/21/musikindustrie-will-schrankenlosen-zugriff-auf/ - 2026-03-03T16:16:55.000Z + 2026-03-03T16:16:55.878Z monthly 0.8 @@ -33779,7 +33968,7 @@ https://www.rfc1437.de/2007/06/21/programming-experiments-initial-release-of-my-web/ - 2026-03-03T16:16:59.000Z + 2026-03-03T16:16:59.999Z monthly 0.8 @@ -33788,7 +33977,7 @@ https://www.rfc1437.de/2007/06/20/an-analysis-of-eos-1d-mark-iii-autofocus/ - 2026-03-03T16:17:03.000Z + 2026-03-03T16:17:03.646Z monthly 0.8 @@ -33797,7 +33986,7 @@ https://www.rfc1437.de/2007/06/20/anthracite/ - 2026-03-03T16:17:06.000Z + 2026-03-03T16:17:06.858Z monthly 0.8 @@ -33806,7 +33995,7 @@ https://www.rfc1437.de/2007/06/20/spamhaus-org-relativiert-nic-at-listing/ - 2026-03-03T16:17:10.000Z + 2026-03-03T16:17:10.923Z monthly 0.8 @@ -33815,7 +34004,7 @@ https://www.rfc1437.de/2007/06/19/python-3000-status-update-long/ - 2026-03-08T14:23:32.000Z + 2026-03-08T14:23:32.387Z monthly 0.8 @@ -33824,7 +34013,7 @@ https://www.rfc1437.de/2007/06/18/atombombenexplosion-im-tschechischen/ - 2026-03-03T16:24:22.000Z + 2026-03-03T16:24:22.035Z monthly 0.8 @@ -33833,7 +34022,7 @@ https://www.rfc1437.de/2007/06/15/skulptur-projekte-muenster-07/ - 2026-03-03T16:24:25.000Z + 2026-03-03T16:24:25.046Z monthly 0.8 @@ -33842,7 +34031,7 @@ https://www.rfc1437.de/2007/06/15/third-view/ - 2026-03-03T16:24:27.000Z + 2026-03-03T16:24:27.715Z monthly 0.8 @@ -33851,7 +34040,7 @@ https://www.rfc1437.de/2007/06/14/schneier-on-security-portrait-of-the-modern/ - 2026-03-03T16:24:30.000Z + 2026-03-03T16:24:30.783Z monthly 0.8 @@ -33860,7 +34049,7 @@ https://www.rfc1437.de/2007/06/13/aerger-um-neue-flickr-filter/ - 2026-03-03T16:24:34.000Z + 2026-03-03T16:24:34.147Z monthly 0.8 @@ -33869,7 +34058,7 @@ https://www.rfc1437.de/2007/06/13/yahoo-aktionaere-lehnen-menschenrechtsantraege-ab/ - 2026-03-03T16:24:37.000Z + 2026-03-03T16:24:37.824Z monthly 0.8 @@ -33878,7 +34067,7 @@ https://www.rfc1437.de/2007/06/13/zfs-ist-in-macos-x-10-5-golem-de/ - 2026-03-03T16:24:41.000Z + 2026-03-03T16:24:41.368Z monthly 0.8 @@ -33887,7 +34076,7 @@ https://www.rfc1437.de/2007/06/11/gutachten-bestaetigt-manipulierbarkeit-von/ - 2026-03-03T16:24:44.000Z + 2026-03-03T16:24:44.476Z monthly 0.8 @@ -33896,7 +34085,7 @@ https://www.rfc1437.de/2007/06/11/httplib2-py/ - 2026-03-03T16:24:46.000Z + 2026-03-03T16:24:46.906Z monthly 0.8 @@ -33905,7 +34094,7 @@ https://www.rfc1437.de/2007/06/11/keine-kennzeichnung-noetig-eu-erlaubt-spuren-von/ - 2026-03-03T16:24:50.000Z + 2026-03-03T16:24:50.723Z monthly 0.8 @@ -33914,7 +34103,7 @@ https://www.rfc1437.de/2007/06/11/media-saturn-trennt-sich-von-anwalt-steinhoefel/ - 2026-03-03T16:24:53.000Z + 2026-03-03T16:24:53.855Z monthly 0.8 @@ -33923,7 +34112,7 @@ https://www.rfc1437.de/2007/06/08/csc-stoppt-moeglicherweise-radsport-sponsoring/ - 2026-03-03T16:24:57.000Z + 2026-03-03T16:24:57.293Z monthly 0.8 @@ -33932,7 +34121,7 @@ https://www.rfc1437.de/2007/06/08/reportage-zwanzig-in-einem-kaefig-24-stunden-licht/ - 2026-03-03T16:25:01.000Z + 2026-03-03T16:25:01.087Z monthly 0.8 @@ -33941,7 +34130,7 @@ https://www.rfc1437.de/2007/06/08/sun-zfs-wird-neues-dateisystem-in-apples-leopard/ - 2026-03-03T16:25:04.000Z + 2026-03-03T16:25:04.176Z monthly 0.8 @@ -33950,7 +34139,7 @@ https://www.rfc1437.de/2007/06/06/camino-mozilla-power-mac-style/ - 2026-03-03T16:25:06.000Z + 2026-03-03T16:25:06.935Z monthly 0.8 @@ -33959,7 +34148,7 @@ https://www.rfc1437.de/2007/06/06/marsedit/ - 2026-03-03T16:25:09.000Z + 2026-03-03T16:25:09.867Z monthly 0.8 @@ -33968,7 +34157,7 @@ https://www.rfc1437.de/2007/06/06/microsoft-threatens-its-most-valuable-professional/ - 2026-03-07T21:11:23.000Z + 2026-03-07T21:11:23.882Z monthly 0.8 @@ -33977,7 +34166,7 @@ https://www.rfc1437.de/2007/06/06/the-contact-lenses-that-could-restore-20-20-vision/ - 2026-03-03T16:25:15.000Z + 2026-03-03T16:25:15.572Z monthly 0.8 @@ -33986,7 +34175,7 @@ https://www.rfc1437.de/2007/06/05/3-awesome-free-math-programs/ - 2026-03-03T16:25:18.000Z + 2026-03-03T16:25:18.257Z monthly 0.8 @@ -33995,7 +34184,7 @@ https://www.rfc1437.de/2007/06/05/a-10-minute-tutorial-for-solving-math-problems/ - 2026-03-03T16:25:21.000Z + 2026-03-03T16:25:21.312Z monthly 0.8 @@ -34004,7 +34193,7 @@ https://www.rfc1437.de/2007/06/05/linux-com-encrypt-and-sign-gmail-messages-with/ - 2026-03-03T16:25:24.000Z + 2026-03-03T16:25:24.723Z monthly 0.8 @@ -34013,7 +34202,7 @@ https://www.rfc1437.de/2007/06/05/mailtags/ - 2026-03-03T16:25:27.000Z + 2026-03-03T16:25:27.590Z monthly 0.8 @@ -34022,7 +34211,7 @@ https://www.rfc1437.de/2007/06/05/pistol-shrimp/ - 2026-03-03T16:25:30.000Z + 2026-03-03T16:25:30.387Z monthly 0.8 @@ -34031,7 +34220,7 @@ https://www.rfc1437.de/2007/06/05/relocating-itunes-music-libraries-to-removable/ - 2026-03-03T16:25:33.000Z + 2026-03-03T16:25:33.848Z monthly 0.8 @@ -34040,7 +34229,7 @@ https://www.rfc1437.de/2007/06/05/wxmaxima/ - 2026-03-03T16:25:36.000Z + 2026-03-03T16:25:36.560Z monthly 0.8 @@ -34049,7 +34238,7 @@ https://www.rfc1437.de/2007/06/04/rtl-will-sich-nicht-kopieren-lassen/ - 2026-03-03T16:25:39.000Z + 2026-03-03T16:25:39.323Z monthly 0.8 @@ -34058,7 +34247,7 @@ https://www.rfc1437.de/2007/06/04/tv-ad-sound-levels/ - 2026-03-03T16:25:42.000Z + 2026-03-03T16:25:42.109Z monthly 0.8 @@ -34067,7 +34256,7 @@ https://www.rfc1437.de/2007/06/04/uberwach/ - 2026-03-03T16:25:44.000Z + 2026-03-03T16:25:44.843Z monthly 0.8 @@ -34076,7 +34265,7 @@ https://www.rfc1437.de/2007/06/01/astronomers-capture-the-first-image-of-surface/ - 2026-03-03T16:25:47.000Z + 2026-03-03T16:25:47.934Z monthly 0.8 @@ -34085,7 +34274,7 @@ https://www.rfc1437.de/2007/06/01/google-gears-for-webkit/ - 2026-03-03T16:25:51.000Z + 2026-03-03T16:25:51.439Z monthly 0.8 @@ -34094,7 +34283,7 @@ https://www.rfc1437.de/2007/06/01/hd-dvd-und-blu-ray-disc-wieder-kopierbar/ - 2026-03-03T16:25:54.000Z + 2026-03-03T16:25:54.204Z monthly 0.8 @@ -34103,7 +34292,7 @@ https://www.rfc1437.de/2007/06/01/how-to-swear-in-any-language/ - 2026-03-08T14:23:39.000Z + 2026-03-08T14:23:39.121Z monthly 0.8 @@ -34112,7 +34301,7 @@ https://www.rfc1437.de/2007/06/01/personal-history-how-i-spent-the-war/ - 2026-03-03T16:25:59.000Z + 2026-03-03T16:25:59.459Z monthly 0.8 @@ -34121,7 +34310,7 @@ https://www.rfc1437.de/2007/06/01/single-spinning-nuclei-in-diamond-offer-a-stable/ - 2026-03-07T21:11:28.000Z + 2026-03-07T21:11:28.950Z monthly 0.8 @@ -34130,7 +34319,7 @@ https://www.rfc1437.de/2007/06/01/trackback/ - 2026-03-07T21:11:29.000Z + 2026-03-07T21:11:29.584Z monthly 0.8 @@ -34139,7 +34328,7 @@ https://www.rfc1437.de/2007/05/31/bundesratsausschuesse-fuer-deutlichen-ausbau-der/ - 2026-03-03T16:26:07.000Z + 2026-03-03T16:26:07.942Z monthly 0.8 @@ -34148,7 +34337,7 @@ https://www.rfc1437.de/2007/05/31/csu-seehofer-droht-parteifreunden-mit-sex/ - 2026-03-03T16:26:11.000Z + 2026-03-03T16:26:11.136Z monthly 0.8 @@ -34157,7 +34346,7 @@ https://www.rfc1437.de/2007/05/31/don-t-mess-with-our-chocolate/ - 2026-03-07T21:11:30.000Z + 2026-03-07T21:11:30.440Z monthly 0.8 @@ -34166,7 +34355,7 @@ https://www.rfc1437.de/2007/05/31/dumb-dumber-bush-mooo/ - 2026-03-07T21:11:31.000Z + 2026-03-07T21:11:31.870Z monthly 0.8 @@ -34175,7 +34364,7 @@ https://www.rfc1437.de/2007/05/31/exklusiv-fatih-akins-gegen-die-wand-im-internet/ - 2026-03-03T16:26:19.000Z + 2026-03-03T16:26:19.736Z monthly 0.8 @@ -34184,7 +34373,7 @@ https://www.rfc1437.de/2007/05/31/man-described-as-a-top-spammer-arrested/ - 2026-03-03T16:26:22.000Z + 2026-03-03T16:26:22.758Z monthly 0.8 @@ -34193,7 +34382,7 @@ https://www.rfc1437.de/2007/05/31/verwertungsgesellschaften-kritisieren-commons/ - 2026-03-03T16:26:26.000Z + 2026-03-03T16:26:26.569Z monthly 0.8 @@ -34202,7 +34391,7 @@ https://www.rfc1437.de/2007/05/30/20-ways-to-use-gmail-filters/ - 2026-03-03T16:26:29.000Z + 2026-03-03T16:26:29.691Z monthly 0.8 @@ -34211,7 +34400,7 @@ https://www.rfc1437.de/2007/05/30/ard-zdf-wollen-tour-vertrag-vorerst-nicht/ - 2026-03-03T16:26:34.000Z + 2026-03-03T16:26:34.079Z monthly 0.8 @@ -34220,7 +34409,7 @@ https://www.rfc1437.de/2007/05/30/bundesregierung-praezisiert-pflichten-zur/ - 2026-03-03T16:26:38.000Z + 2026-03-03T16:26:38.465Z monthly 0.8 @@ -34229,7 +34418,7 @@ https://www.rfc1437.de/2007/05/30/diebe-stehlen-seekabel-vor-vietnam/ - 2026-03-03T16:26:41.000Z + 2026-03-03T16:26:41.657Z monthly 0.8 @@ -34238,7 +34427,7 @@ https://www.rfc1437.de/2007/05/30/duplicity-2/ - 2026-03-03T16:26:44.000Z + 2026-03-03T16:26:44.545Z monthly 0.8 @@ -34247,7 +34436,7 @@ https://www.rfc1437.de/2007/05/30/gericht-untersagt-artikelversand-per-e-mail/ - 2026-03-03T16:26:49.000Z + 2026-03-03T16:26:49.098Z monthly 0.8 @@ -34256,7 +34445,7 @@ https://www.rfc1437.de/2007/05/30/gvu-und-ermittlungen/ - 2026-03-03T16:26:52.000Z + 2026-03-03T16:26:52.482Z monthly 0.8 @@ -34265,7 +34454,7 @@ https://www.rfc1437.de/2007/05/30/our-oceans-are-turning-into-plastic-are-we/ - 2026-03-03T16:26:56.000Z + 2026-03-03T16:26:56.776Z monthly 0.8 @@ -34274,7 +34463,7 @@ https://www.rfc1437.de/2007/05/30/park-place-the-amazon-s3-clone/ - 2026-03-07T21:11:32.000Z + 2026-03-07T21:11:32.692Z monthly 0.8 @@ -34283,7 +34472,7 @@ https://www.rfc1437.de/2007/05/30/vi-in-javascript-2/ - 2026-03-03T16:27:03.000Z + 2026-03-03T16:27:03.629Z monthly 0.8 @@ -34292,7 +34481,7 @@ https://www.rfc1437.de/2007/05/29/bka-ermittler-fahnden-im-biergarten/ - 2026-03-03T16:27:07.000Z + 2026-03-03T16:27:07.551Z monthly 0.8 @@ -34301,7 +34490,7 @@ https://www.rfc1437.de/2007/05/29/it-chronik/ - 2026-03-03T16:27:11.000Z + 2026-03-03T16:27:11.548Z monthly 0.8 @@ -34310,7 +34499,7 @@ https://www.rfc1437.de/2007/05/29/new-database-class-hyperdb/ - 2026-03-03T16:27:15.000Z + 2026-03-03T16:27:15.597Z monthly 0.8 @@ -34319,7 +34508,7 @@ https://www.rfc1437.de/2007/05/29/studie-atomstrom-weder-billig-noch-gut-fuers-klima/ - 2026-03-03T16:27:20.000Z + 2026-03-03T16:27:20.987Z monthly 0.8 @@ -34328,7 +34517,7 @@ https://www.rfc1437.de/2007/05/27/rfc-gegen-spam/ - 2026-03-03T16:27:25.000Z + 2026-03-03T16:27:25.795Z monthly 0.8 @@ -34337,7 +34526,7 @@ https://www.rfc1437.de/2007/05/25/ein-terrorist-wie-du-und-ich/ - 2026-03-03T16:27:30.000Z + 2026-03-03T16:27:30.626Z monthly 0.8 @@ -34346,7 +34535,7 @@ https://www.rfc1437.de/2007/05/25/einzelhandel-frohlockt-biometriebilder-fuer/ - 2026-03-03T16:27:35.000Z + 2026-03-03T16:27:35.182Z monthly 0.8 @@ -34355,7 +34544,7 @@ https://www.rfc1437.de/2007/05/25/undercover-guenter-wallraff-ist-zurueck/ - 2026-03-03T16:27:39.000Z + 2026-03-03T16:27:39.072Z monthly 0.8 @@ -34364,7 +34553,7 @@ https://www.rfc1437.de/2007/05/24/amnesty-international-prangert-politik-der-angst/ - 2026-03-03T16:27:43.000Z + 2026-03-03T16:27:43.739Z monthly 0.8 @@ -34373,7 +34562,7 @@ https://www.rfc1437.de/2007/05/24/die-ard-tonstoerung-namens-godefroot-update-3/ - 2026-03-03T16:27:48.000Z + 2026-03-03T16:27:48.049Z monthly 0.8 @@ -34382,7 +34571,7 @@ https://www.rfc1437.de/2007/05/24/dietz-henn-boeltz-aldag-ullrich/ - 2026-03-03T16:27:52.000Z + 2026-03-03T16:27:52.862Z monthly 0.8 @@ -34391,7 +34580,7 @@ https://www.rfc1437.de/2007/05/24/microsoft-will-den-unbekannten-internetbenutzer/ - 2026-03-03T16:27:57.000Z + 2026-03-03T16:27:57.201Z monthly 0.8 @@ -34400,7 +34589,7 @@ https://www.rfc1437.de/2007/05/24/ndr-zensiert-dietz-inteview-bei-beckmann/ - 2026-03-03T16:28:01.000Z + 2026-03-03T16:28:01.602Z monthly 0.8 @@ -34409,7 +34598,7 @@ https://www.rfc1437.de/2007/05/24/ornithopters-to-revolutionize-aircraft-design/ - 2026-03-03T16:28:05.000Z + 2026-03-03T16:28:05.735Z monthly 0.8 @@ -34418,7 +34607,7 @@ https://www.rfc1437.de/2007/05/24/wiesenhof-steigt-aus/ - 2026-03-03T16:28:09.000Z + 2026-03-03T16:28:09.427Z monthly 0.8 @@ -34427,7 +34616,7 @@ https://www.rfc1437.de/2007/05/23/bundesinnenminister-warnt-vor-zunehmender/ - 2026-03-03T16:28:13.000Z + 2026-03-03T16:28:13.942Z monthly 0.8 @@ -34436,7 +34625,7 @@ https://www.rfc1437.de/2007/05/23/cyborg-feeling-fuer-jedermann/ - 2026-03-03T16:28:18.000Z + 2026-03-03T16:28:18.028Z monthly 0.8 @@ -34445,7 +34634,7 @@ https://www.rfc1437.de/2007/05/23/google-turns-the-page-in-a-bad-way/ - 2026-03-03T16:28:22.000Z + 2026-03-03T16:28:22.050Z monthly 0.8 @@ -34454,7 +34643,7 @@ https://www.rfc1437.de/2007/05/23/inside-the-monkeysphere/ - 2026-03-07T21:11:33.000Z + 2026-03-07T21:11:33.235Z monthly 0.8 @@ -34463,7 +34652,7 @@ https://www.rfc1437.de/2007/05/23/introducing-mahlee/ - 2026-03-03T16:28:28.000Z + 2026-03-03T16:28:28.430Z monthly 0.8 @@ -34472,7 +34661,7 @@ https://www.rfc1437.de/2007/05/23/pycells/ - 2026-03-03T16:28:32.000Z + 2026-03-03T16:28:32.203Z monthly 0.8 @@ -34481,7 +34670,7 @@ https://www.rfc1437.de/2007/05/22/ex-telekom-profi-beichtet-doping/ - 2026-03-03T16:28:36.000Z + 2026-03-03T16:28:36.270Z monthly 0.8 @@ -34490,7 +34679,7 @@ https://www.rfc1437.de/2007/05/22/innere-sicherheit-der-duft-des-terrors/ - 2026-03-03T16:28:40.000Z + 2026-03-03T16:28:40.327Z monthly 0.8 @@ -34499,7 +34688,7 @@ https://www.rfc1437.de/2007/05/22/the-birth-control-of-yesteryear/ - 2026-03-03T16:28:43.000Z + 2026-03-03T16:28:43.831Z monthly 0.8 @@ -34508,7 +34697,7 @@ https://www.rfc1437.de/2007/05/22/warner-legt-bei-emi-offerte-nach/ - 2026-03-03T16:28:47.000Z + 2026-03-03T16:28:47.476Z monthly 0.8 @@ -34517,7 +34706,7 @@ https://www.rfc1437.de/2007/05/22/wirtschaftsprofessor-fordert-wir-brauchen-einen/ - 2026-03-03T16:28:52.000Z + 2026-03-03T16:28:52.599Z monthly 0.8 @@ -34526,7 +34715,7 @@ https://www.rfc1437.de/2007/05/21/100-dollar-laptop-negroponte-greift-intel-scharf/ - 2026-03-03T16:28:57.000Z + 2026-03-03T16:28:57.146Z monthly 0.8 @@ -34535,7 +34724,7 @@ https://www.rfc1437.de/2007/05/21/cia-s-harsh-interrogation-techniques-described/ - 2026-03-03T16:29:01.000Z + 2026-03-03T16:29:01.995Z monthly 0.8 @@ -34544,7 +34733,7 @@ https://www.rfc1437.de/2007/05/21/diamonds-tell-tale-of-comet-that-killed-off-the/ - 2026-03-03T16:29:06.000Z + 2026-03-03T16:29:06.038Z monthly 0.8 @@ -34553,7 +34742,7 @@ https://www.rfc1437.de/2007/05/21/jason-corso-vi-input-manager-plugin/ - 2026-03-07T21:11:34.000Z + 2026-03-07T21:11:34.023Z monthly 0.8 @@ -34562,7 +34751,7 @@ https://www.rfc1437.de/2007/05/21/the-cerne-abbas-giant/ - 2026-03-03T16:29:12.000Z + 2026-03-03T16:29:12.598Z monthly 0.8 @@ -34571,7 +34760,7 @@ https://www.rfc1437.de/2007/05/21/the-red-hot-erlang-blog/ - 2026-03-03T16:29:16.000Z + 2026-03-03T16:29:16.224Z monthly 0.8 @@ -34580,7 +34769,7 @@ https://www.rfc1437.de/2007/05/21/uffington-white-horse/ - 2026-03-03T16:29:19.000Z + 2026-03-03T16:29:19.760Z monthly 0.8 @@ -34589,7 +34778,7 @@ https://www.rfc1437.de/2007/05/21/wilmington/ - 2026-03-03T16:29:23.000Z + 2026-03-03T16:29:23.259Z monthly 0.8 @@ -34598,7 +34787,7 @@ https://www.rfc1437.de/2007/05/18/amazon-kuendigt-drm-freie-mp3-downloads-an/ - 2026-03-03T16:29:28.000Z + 2026-03-03T16:29:28.807Z monthly 0.8 @@ -34607,7 +34796,7 @@ https://www.rfc1437.de/2007/05/18/deutsche-telekom-verabschiedet-sich-von-marke-t/ - 2026-03-03T16:29:34.000Z + 2026-03-03T16:29:34.228Z monthly 0.8 @@ -34616,7 +34805,7 @@ https://www.rfc1437.de/2007/05/18/freitag-20-es-geht-um-fast-alles/ - 2026-03-03T16:29:38.000Z + 2026-03-03T16:29:38.321Z monthly 0.8 @@ -34625,7 +34814,7 @@ https://www.rfc1437.de/2007/05/18/individual-i-de/ - 2026-03-03T16:29:43.000Z + 2026-03-03T16:29:43.168Z monthly 0.8 @@ -34634,7 +34823,7 @@ https://www.rfc1437.de/2007/05/18/jpc-computer-virtualization-in-java/ - 2026-03-03T16:29:46.000Z + 2026-03-03T16:29:46.824Z monthly 0.8 @@ -34643,7 +34832,7 @@ https://www.rfc1437.de/2007/05/18/why-oh-why-do-those-nutheads-use-vi/ - 2026-03-03T16:29:51.000Z + 2026-03-03T16:29:51.079Z monthly 0.8 @@ -34652,7 +34841,7 @@ https://www.rfc1437.de/2007/05/18/wmap-mission-results/ - 2026-03-07T21:11:34.000Z + 2026-03-07T21:11:34.623Z monthly 0.8 @@ -34661,7 +34850,7 @@ https://www.rfc1437.de/2007/05/17/unterstuetzung-fuer-globalisierungskritiker/ - 2026-03-03T16:29:59.000Z + 2026-03-03T16:29:59.587Z monthly 0.8 @@ -34670,7 +34859,7 @@ https://www.rfc1437.de/2007/05/16/atze-schroeder-und-die-wikipedia/ - 2026-03-03T16:30:03.000Z + 2026-03-03T16:30:03.946Z monthly 0.8 @@ -34679,7 +34868,7 @@ https://www.rfc1437.de/2007/05/16/capsulehotel/ - 2026-03-07T21:11:35.000Z + 2026-03-07T21:11:35.459Z monthly 0.8 @@ -34688,7 +34877,7 @@ https://www.rfc1437.de/2007/05/16/marcopolo-automatic-location-switching-for-mac-os/ - 2026-03-03T16:30:11.000Z + 2026-03-03T16:30:11.423Z monthly 0.8 @@ -34697,7 +34886,7 @@ https://www.rfc1437.de/2007/05/16/verwaltungsgericht-honig-muss-vor-pollen-von-gen/ - 2026-03-03T16:30:15.000Z + 2026-03-03T16:30:15.747Z monthly 0.8 @@ -34706,7 +34895,7 @@ https://www.rfc1437.de/2007/05/15/beautiful-soup-we-called-him-tortoise-because-he/ - 2026-03-03T16:30:19.000Z + 2026-03-03T16:30:19.808Z monthly 0.8 @@ -34715,7 +34904,7 @@ https://www.rfc1437.de/2007/05/15/create-a-tumblr-widget-using-dashcode/ - 2026-03-07T21:11:36.000Z + 2026-03-07T21:11:36.886Z monthly 0.8 @@ -34724,7 +34913,7 @@ https://www.rfc1437.de/2007/05/15/iso-arbeitsgruppe-schlaegt-unicode-mit-ss-als/ - 2026-03-03T16:30:27.000Z + 2026-03-03T16:30:27.781Z monthly 0.8 @@ -34733,7 +34922,7 @@ https://www.rfc1437.de/2007/05/15/twill-a-simple-scripting-language-for-web-browsing-2/ - 2026-03-03T16:30:31.000Z + 2026-03-03T16:30:31.612Z monthly 0.8 @@ -34742,7 +34931,7 @@ https://www.rfc1437.de/2007/05/14/apple-und-microsoft-sollen-zu-drm-einsatz/ - 2026-03-03T16:30:36.000Z + 2026-03-03T16:30:36.010Z monthly 0.8 @@ -34751,7 +34940,7 @@ https://www.rfc1437.de/2007/05/14/flickr-iphoto/ - 2026-03-03T16:30:39.000Z + 2026-03-03T16:30:39.630Z monthly 0.8 @@ -34760,7 +34949,7 @@ https://www.rfc1437.de/2007/05/14/flickrexport/ - 2026-03-03T16:30:43.000Z + 2026-03-03T16:30:43.859Z monthly 0.8 @@ -34769,7 +34958,7 @@ https://www.rfc1437.de/2007/05/14/google-will-aus-online-spielen-psychologische/ - 2026-03-03T16:30:47.000Z + 2026-03-03T16:30:47.955Z monthly 0.8 @@ -34778,7 +34967,7 @@ https://www.rfc1437.de/2007/05/11/public-acceptance-of-evolution/ - 2026-03-07T21:11:39.000Z + 2026-03-07T21:11:39.744Z monthly 0.8 @@ -34787,7 +34976,7 @@ https://www.rfc1437.de/2007/05/11/stig-s-inferno-by-ty-templeton/ - 2026-03-03T16:30:55.000Z + 2026-03-03T16:30:55.378Z monthly 0.8 @@ -34796,7 +34985,7 @@ https://www.rfc1437.de/2007/05/11/xml-transformation-in-scheme/ - 2026-03-03T16:30:58.000Z + 2026-03-03T16:30:58.997Z monthly 0.8 @@ -34805,7 +34994,7 @@ https://www.rfc1437.de/2007/05/10/doping-szene-deutschland-heile-welt-in-magenta/ - 2026-03-03T16:31:04.000Z + 2026-03-03T16:31:04.852Z monthly 0.8 @@ -34814,7 +35003,7 @@ https://www.rfc1437.de/2007/05/10/escaping-the-data-panopticon-prof-says-computers/ - 2026-03-03T16:31:09.000Z + 2026-03-03T16:31:09.696Z monthly 0.8 @@ -34823,7 +35012,7 @@ https://www.rfc1437.de/2007/05/10/musikindustrie-und-udo-juergens-setzen-kanzlerin/ - 2026-03-03T16:31:14.000Z + 2026-03-03T16:31:14.197Z monthly 0.8 @@ -34832,7 +35021,7 @@ https://www.rfc1437.de/2007/05/10/streit-bei-axel-springer-wams-kommentarchef/ - 2026-03-03T16:31:19.000Z + 2026-03-03T16:31:19.020Z monthly 0.8 @@ -34841,7 +35030,7 @@ https://www.rfc1437.de/2007/05/10/terror-webseiten-europol-sucht-terroristen-im-netz/ - 2026-03-03T16:31:23.000Z + 2026-03-03T16:31:23.909Z monthly 0.8 @@ -34850,7 +35039,7 @@ https://www.rfc1437.de/2007/05/09/a-macfuse-based-process-file-system-for-mac-os-x/ - 2026-03-03T16:31:28.000Z + 2026-03-03T16:31:28.181Z monthly 0.8 @@ -34859,7 +35048,7 @@ https://www.rfc1437.de/2007/05/09/alligator-eggs/ - 2026-03-03T16:31:32.000Z + 2026-03-03T16:31:32.383Z monthly 0.8 @@ -34868,7 +35057,7 @@ https://www.rfc1437.de/2007/05/09/erlang-for-the-practical-man/ - 2026-03-03T16:31:36.000Z + 2026-03-03T16:31:36.337Z monthly 0.8 @@ -34877,7 +35066,7 @@ https://www.rfc1437.de/2007/05/09/ertrunken-in-der-datenflut-man-kann-mit-solchen/ - 2026-03-03T16:31:41.000Z + 2026-03-03T16:31:41.713Z monthly 0.8 @@ -34886,7 +35075,7 @@ https://www.rfc1437.de/2007/05/09/evolved-virtual-creatures/ - 2026-03-03T16:31:45.000Z + 2026-03-03T16:31:45.550Z monthly 0.8 @@ -34895,7 +35084,7 @@ https://www.rfc1437.de/2007/05/09/lambda-associates-home-page/ - 2026-03-03T16:31:49.000Z + 2026-03-03T16:31:49.366Z monthly 0.8 @@ -34904,7 +35093,7 @@ https://www.rfc1437.de/2007/05/09/linuxtag-mit-schirmherr-wolfgang-schaeuble/ - 2026-03-03T16:31:54.000Z + 2026-03-03T16:31:54.715Z monthly 0.8 @@ -34913,7 +35102,7 @@ https://www.rfc1437.de/2007/05/09/philip-linden-s-folly/ - 2026-03-03T16:31:59.000Z + 2026-03-03T16:31:59.773Z monthly 0.8 @@ -34922,7 +35111,7 @@ https://www.rfc1437.de/2007/05/09/reset-reloaded/ - 2026-03-03T16:32:04.000Z + 2026-03-03T16:32:04.115Z monthly 0.8 @@ -34931,7 +35120,7 @@ https://www.rfc1437.de/2007/05/09/us-buergerrechtler-werfen-uri-geller/ - 2026-03-03T16:32:08.000Z + 2026-03-03T16:32:08.348Z monthly 0.8 @@ -34940,7 +35129,7 @@ https://www.rfc1437.de/2007/05/08/basso-gesteht-doping/ - 2026-03-03T16:32:13.000Z + 2026-03-03T16:32:13.355Z monthly 0.8 @@ -34949,7 +35138,7 @@ https://www.rfc1437.de/2007/05/08/schaeuble-deutschland-gehoert-zu-den-sichersten/ - 2026-03-03T16:32:17.000Z + 2026-03-03T16:32:17.595Z monthly 0.8 @@ -34958,7 +35147,7 @@ https://www.rfc1437.de/2007/05/08/schaeuble-und-zypries-wollen-paragraph-129-stgb/ - 2026-03-03T16:32:22.000Z + 2026-03-03T16:32:22.329Z monthly 0.8 @@ -34967,7 +35156,7 @@ https://www.rfc1437.de/2007/05/08/t-online-adidas-und-gumball-3000/ - 2026-03-03T16:32:26.000Z + 2026-03-03T16:32:26.768Z monthly 0.8 @@ -34976,7 +35165,7 @@ https://www.rfc1437.de/2007/05/07/desktop-factory-kuendigt-billig-3d-drucker-an/ - 2026-03-03T16:32:30.000Z + 2026-03-03T16:32:30.973Z monthly 0.8 @@ -34985,7 +35174,7 @@ https://www.rfc1437.de/2007/05/07/impromptu-2/ - 2026-03-03T16:32:34.000Z + 2026-03-03T16:32:34.821Z monthly 0.8 @@ -34994,7 +35183,7 @@ https://www.rfc1437.de/2007/05/07/jsonstore-0-2/ - 2026-03-03T16:32:38.000Z + 2026-03-03T16:32:38.422Z monthly 0.8 @@ -35003,7 +35192,7 @@ https://www.rfc1437.de/2007/05/07/polizei-setzt-bei-kinderporno-jagd-auf-private/ - 2026-03-03T16:32:42.000Z + 2026-03-03T16:32:42.556Z monthly 0.8 @@ -35012,7 +35201,7 @@ https://www.rfc1437.de/2007/05/07/pyinstaller/ - 2026-03-03T16:32:46.000Z + 2026-03-03T16:32:46.312Z monthly 0.8 @@ -35021,7 +35210,7 @@ https://www.rfc1437.de/2007/05/06/chanalyzer-software-und-wi-spy-stick/ - 2026-03-03T16:32:50.000Z + 2026-03-03T16:32:50.341Z monthly 0.8 @@ -35030,7 +35219,7 @@ https://www.rfc1437.de/2007/05/04/die-erfinder-von-helmut-kohl/ - 2026-03-03T16:32:54.000Z + 2026-03-03T16:32:54.094Z monthly 0.8 @@ -35039,7 +35228,7 @@ https://www.rfc1437.de/2007/05/04/jungledisk-reliable-online-storage-powered-by/ - 2026-03-03T16:32:58.000Z + 2026-03-03T16:32:58.707Z monthly 0.8 @@ -35048,7 +35237,7 @@ https://www.rfc1437.de/2007/05/04/rampant-layering-violation/ - 2026-03-03T16:33:02.000Z + 2026-03-03T16:33:02.649Z monthly 0.8 @@ -35057,7 +35246,7 @@ https://www.rfc1437.de/2007/05/04/thursday-biggest-anti-spam-lawsuit-ever/ - 2026-03-03T16:33:07.000Z + 2026-03-03T16:33:07.029Z monthly 0.8 @@ -35066,7 +35255,7 @@ https://www.rfc1437.de/2007/05/04/transterpreter/ - 2026-03-03T16:33:11.000Z + 2026-03-03T16:33:11.457Z monthly 0.8 @@ -35075,7 +35264,7 @@ https://www.rfc1437.de/2007/05/03/ardour/ - 2026-03-03T16:33:14.000Z + 2026-03-03T16:33:14.779Z monthly 0.8 @@ -35084,7 +35273,7 @@ https://www.rfc1437.de/2007/05/03/ext3cow/ - 2026-03-03T16:33:18.000Z + 2026-03-03T16:33:18.438Z monthly 0.8 @@ -35093,7 +35282,7 @@ https://www.rfc1437.de/2007/05/03/frag-2/ - 2026-03-07T21:11:42.000Z + 2026-03-07T21:11:42.517Z monthly 0.8 @@ -35102,7 +35291,7 @@ https://www.rfc1437.de/2007/05/03/glass-gemstone-linux-apache-seaside-and-smalltalk/ - 2026-03-03T16:33:26.000Z + 2026-03-03T16:33:26.304Z monthly 0.8 @@ -35111,7 +35300,7 @@ https://www.rfc1437.de/2007/05/03/haskell-vs-erlang-in-einem-beispielprojekt/ - 2026-03-03T16:33:30.000Z + 2026-03-03T16:33:30.504Z monthly 0.8 @@ -35120,7 +35309,7 @@ https://www.rfc1437.de/2007/05/03/manually-adding-dns-sd-service-discovery-records/ - 2026-03-03T16:33:34.000Z + 2026-03-03T16:33:34.985Z monthly 0.8 @@ -35129,7 +35318,7 @@ https://www.rfc1437.de/2007/05/02/f-script/ - 2026-03-03T16:33:38.000Z + 2026-03-03T16:33:38.235Z monthly 0.8 @@ -35138,7 +35327,7 @@ https://www.rfc1437.de/2007/05/02/vorsicht-ist-die-mutter-der-porzelankiste/ - 2026-03-03T16:33:42.000Z + 2026-03-03T16:33:42.486Z monthly 0.8 @@ -35147,7 +35336,7 @@ https://www.rfc1437.de/2007/04/27/fantasy-mounts-custom-creature-taxidermy-gaffs/ - 2026-03-07T21:11:45.000Z + 2026-03-07T21:11:45.487Z monthly 0.8 @@ -35156,7 +35345,7 @@ https://www.rfc1437.de/2007/04/27/faster-page-loads-with-image-concatenation/ - 2026-03-03T16:33:49.000Z + 2026-03-03T16:33:49.908Z monthly 0.8 @@ -35165,7 +35354,7 @@ https://www.rfc1437.de/2007/04/27/mark-jenkins-street-installations/ - 2026-03-03T16:33:53.000Z + 2026-03-03T16:33:53.130Z monthly 0.8 @@ -35174,7 +35363,7 @@ https://www.rfc1437.de/2007/04/26/allegrograph/ - 2026-03-03T16:33:57.000Z + 2026-03-03T16:33:57.825Z monthly 0.8 @@ -35183,7 +35372,7 @@ https://www.rfc1437.de/2007/04/25/erde-2-0-eso-forscher-entdecken-bislang/ - 2026-03-03T16:34:02.000Z + 2026-03-03T16:34:02.609Z monthly 0.8 @@ -35192,7 +35381,7 @@ https://www.rfc1437.de/2007/04/25/innenministerium-online-durchsuchungen-laengst/ - 2026-03-03T16:34:06.000Z + 2026-03-03T16:34:06.475Z monthly 0.8 @@ -35201,7 +35390,7 @@ https://www.rfc1437.de/2007/04/25/introducing-dashcode/ - 2026-03-03T16:34:10.000Z + 2026-03-03T16:34:10.799Z monthly 0.8 @@ -35210,7 +35399,7 @@ https://www.rfc1437.de/2007/04/25/israel-s-modesty-buses-draw-fire/ - 2026-03-03T16:34:15.000Z + 2026-03-03T16:34:15.165Z monthly 0.8 @@ -35219,7 +35408,7 @@ https://www.rfc1437.de/2007/04/25/keine-sorge-wir-passen-schon-gut-auf-dich-auf/ - 2026-03-03T16:34:18.000Z + 2026-03-03T16:34:18.942Z monthly 0.8 @@ -35228,7 +35417,7 @@ https://www.rfc1437.de/2007/04/25/seven-javascript-techniques-you-should-be-using/ - 2026-03-07T21:11:48.000Z + 2026-03-07T21:11:48.355Z monthly 0.8 @@ -35237,7 +35426,7 @@ https://www.rfc1437.de/2007/04/25/the-carina-nebula-star-birth-in-the-extreme/ - 2026-03-03T16:34:26.000Z + 2026-03-03T16:34:26.862Z monthly 0.8 @@ -35246,7 +35435,7 @@ https://www.rfc1437.de/2007/04/25/vendetta-online/ - 2026-03-03T16:34:31.000Z + 2026-03-03T16:34:31.121Z monthly 0.8 @@ -35255,7 +35444,7 @@ https://www.rfc1437.de/2007/04/24/even-ceo-can-t-figure-out-how-radioshack-still-in/ - 2026-03-07T21:11:49.000Z + 2026-03-07T21:11:49.339Z monthly 0.8 @@ -35264,7 +35453,7 @@ https://www.rfc1437.de/2007/04/24/fingerabdruecke-aus-reisepaessen-sollen-nicht/ - 2026-03-03T16:34:40.000Z + 2026-03-03T16:34:40.468Z monthly 0.8 @@ -35273,7 +35462,7 @@ https://www.rfc1437.de/2007/04/24/javascripttemplates/ - 2026-03-03T16:34:44.000Z + 2026-03-03T16:34:44.157Z monthly 0.8 @@ -35282,7 +35471,7 @@ https://www.rfc1437.de/2007/04/24/major-labels-the-problem-with-music/ - 2026-03-03T16:34:47.000Z + 2026-03-03T16:34:47.900Z monthly 0.8 @@ -35291,7 +35480,7 @@ https://www.rfc1437.de/2007/04/24/tercio/ - 2026-03-03T16:34:51.000Z + 2026-03-03T16:34:51.661Z monthly 0.8 @@ -35300,7 +35489,7 @@ https://www.rfc1437.de/2007/04/24/the-deep/ - 2026-03-03T16:34:54.000Z + 2026-03-03T16:34:54.924Z monthly 0.8 @@ -35309,7 +35498,7 @@ https://www.rfc1437.de/2007/04/24/the-side-effects-of-truth/ - 2026-03-03T16:34:59.000Z + 2026-03-03T16:34:59.320Z monthly 0.8 @@ -35318,7 +35507,7 @@ https://www.rfc1437.de/2007/04/24/the-universe-is-a-string-net-liquid/ - 2026-03-03T16:35:03.000Z + 2026-03-03T16:35:03.199Z monthly 0.8 @@ -35327,7 +35516,7 @@ https://www.rfc1437.de/2007/04/23/delibar/ - 2026-03-03T16:35:06.000Z + 2026-03-03T16:35:06.810Z monthly 0.8 @@ -35336,7 +35525,7 @@ https://www.rfc1437.de/2007/04/23/delimport/ - 2026-03-03T16:35:10.000Z + 2026-03-03T16:35:10.053Z monthly 0.8 @@ -35345,7 +35534,7 @@ https://www.rfc1437.de/2007/04/23/etos-compiler/ - 2026-03-03T16:35:15.000Z + 2026-03-03T16:35:15.045Z monthly 0.8 @@ -35354,7 +35543,7 @@ https://www.rfc1437.de/2007/04/23/greg-haerr-s-nano-x-window-system-page-previously/ - 2026-03-03T16:35:19.000Z + 2026-03-03T16:35:19.755Z monthly 0.8 @@ -35363,7 +35552,7 @@ https://www.rfc1437.de/2007/04/23/internet-verbindungen-auf-dem-mac/ - 2026-03-03T16:35:24.000Z + 2026-03-03T16:35:24.655Z monthly 0.8 @@ -35372,7 +35561,7 @@ https://www.rfc1437.de/2007/04/23/last-night-s-performance-of-invincible-summer-was/ - 2026-03-07T21:11:52.000Z + 2026-03-07T21:11:52.658Z monthly 0.8 @@ -35381,7 +35570,7 @@ https://www.rfc1437.de/2007/04/23/quirksmode-for-all-your-browser-quirks/ - 2026-03-03T16:35:33.000Z + 2026-03-03T16:35:33.900Z monthly 0.8 @@ -35390,7 +35579,7 @@ https://www.rfc1437.de/2007/04/23/spoon/ - 2026-03-03T16:35:37.000Z + 2026-03-03T16:35:37.891Z monthly 0.8 @@ -35399,7 +35588,7 @@ https://www.rfc1437.de/2007/04/23/textmate-power-editing-for-the-mac/ - 2026-03-03T16:35:41.000Z + 2026-03-03T16:35:41.834Z monthly 0.8 @@ -35408,7 +35597,7 @@ https://www.rfc1437.de/2007/04/23/the-messing-link-home-of-a-delicious-widget/ - 2026-03-03T16:35:45.000Z + 2026-03-03T16:35:45.830Z monthly 0.8 @@ -35417,7 +35606,7 @@ https://www.rfc1437.de/2007/04/23/xmonad-0-1/ - 2026-03-03T16:35:49.000Z + 2026-03-03T16:35:49.776Z monthly 0.8 @@ -35426,7 +35615,7 @@ https://www.rfc1437.de/2007/04/20/freie-smalltalk-buecher/ - 2026-03-03T16:35:53.000Z + 2026-03-03T16:35:53.183Z monthly 0.8 @@ -35435,7 +35624,7 @@ https://www.rfc1437.de/2007/04/20/union-will-den-schaeuble-katalog-in-allen-punkten/ - 2026-03-03T16:35:57.000Z + 2026-03-03T16:35:57.753Z monthly 0.8 @@ -35444,7 +35633,7 @@ https://www.rfc1437.de/2007/04/20/usethesource-published-code-snippets/ - 2026-03-07T21:11:55.000Z + 2026-03-07T21:11:55.525Z monthly 0.8 @@ -35453,7 +35642,7 @@ https://www.rfc1437.de/2007/04/20/vista-smalltalk-wiki/ - 2026-03-03T16:36:05.000Z + 2026-03-03T16:36:05.885Z monthly 0.8 @@ -35462,7 +35651,7 @@ https://www.rfc1437.de/2007/04/19/blacksburg-amoklaeufer-schickte-manifest-an-sender/ - 2026-03-03T16:36:10.000Z + 2026-03-03T16:36:10.549Z monthly 0.8 @@ -35471,7 +35660,7 @@ https://www.rfc1437.de/2007/04/19/erlang-cookbook/ - 2026-03-03T16:36:14.000Z + 2026-03-03T16:36:14.155Z monthly 0.8 @@ -35480,7 +35669,7 @@ https://www.rfc1437.de/2007/04/19/npr-giant-bats-snatch-birds-from-night-sky/ - 2026-03-03T16:36:18.000Z + 2026-03-03T16:36:18.005Z monthly 0.8 @@ -35489,7 +35678,7 @@ https://www.rfc1437.de/2007/04/18/bundesinnenminister-schaeuble-will-grundsatz-der/ - 2026-03-03T16:36:23.000Z + 2026-03-03T16:36:23.054Z monthly 0.8 @@ -35498,7 +35687,7 @@ https://www.rfc1437.de/2007/04/18/gericht-bestaetigt-haftung-des-admin-c/ - 2026-03-03T16:36:27.000Z + 2026-03-03T16:36:27.236Z monthly 0.8 @@ -35507,7 +35696,7 @@ https://www.rfc1437.de/2007/04/18/kamelia-2/ - 2026-03-03T16:36:31.000Z + 2026-03-03T16:36:31.006Z monthly 0.8 @@ -35516,7 +35705,7 @@ https://www.rfc1437.de/2007/04/18/pragdave-adding-concurrency-to-our-erlang-program/ - 2026-03-03T16:36:35.000Z + 2026-03-03T16:36:35.781Z monthly 0.8 @@ -35525,7 +35714,7 @@ https://www.rfc1437.de/2007/04/18/quickcheck-an-automatic-testing-tool-for-haskell/ - 2026-03-03T16:36:39.000Z + 2026-03-03T16:36:39.928Z monthly 0.8 @@ -35534,7 +35723,7 @@ https://www.rfc1437.de/2007/04/18/the-scheme-way-erlang-or-gambit-c-termite-a/ - 2026-03-03T16:36:44.000Z + 2026-03-03T16:36:44.600Z monthly 0.8 @@ -35543,7 +35732,7 @@ https://www.rfc1437.de/2007/04/18/what-the-fuck-is-informationelle-selbstbestimmung/ - 2026-03-03T16:36:48.000Z + 2026-03-03T16:36:48.258Z monthly 0.8 @@ -35552,7 +35741,7 @@ https://www.rfc1437.de/2007/04/18/wings3d/ - 2026-03-03T16:36:52.000Z + 2026-03-03T16:36:52.089Z monthly 0.8 @@ -35561,7 +35750,7 @@ https://www.rfc1437.de/2007/04/17/chronosync/ - 2026-03-03T16:36:56.000Z + 2026-03-03T16:36:56.294Z monthly 0.8 @@ -35570,7 +35759,7 @@ https://www.rfc1437.de/2007/04/17/couchdb-project-website/ - 2026-03-03T16:36:59.000Z + 2026-03-03T16:36:59.906Z monthly 0.8 @@ -35579,7 +35768,7 @@ https://www.rfc1437.de/2007/04/17/current-work/ - 2026-03-03T16:37:03.000Z + 2026-03-03T16:37:03.713Z monthly 0.8 @@ -35588,7 +35777,7 @@ https://www.rfc1437.de/2007/04/17/history-of-the-tilde/ - 2026-03-03T16:37:07.000Z + 2026-03-03T16:37:07.624Z monthly 0.8 @@ -35597,7 +35786,7 @@ https://www.rfc1437.de/2007/04/17/html5-xhtml2-and-the-future-of-the-web/ - 2026-03-03T16:37:13.000Z + 2026-03-03T16:37:13.226Z monthly 0.8 @@ -35606,7 +35795,7 @@ https://www.rfc1437.de/2007/04/17/pragdave-a-first-erlang-program/ - 2026-03-03T16:37:17.000Z + 2026-03-03T16:37:17.775Z monthly 0.8 @@ -35615,7 +35804,7 @@ https://www.rfc1437.de/2007/04/17/translation-from-pr-speak-to-english-of-selected/ - 2026-03-03T16:37:23.000Z + 2026-03-03T16:37:23.795Z monthly 0.8 @@ -35624,7 +35813,7 @@ https://www.rfc1437.de/2007/04/17/why-you-should-be-using-html-4-01-instead-of-xhtml/ - 2026-03-03T16:37:28.000Z + 2026-03-03T16:37:28.249Z monthly 0.8 @@ -35633,7 +35822,7 @@ https://www.rfc1437.de/2007/04/16/apple-downloads-mac-os-x-automator-actions/ - 2026-03-03T16:37:32.000Z + 2026-03-03T16:37:32.263Z monthly 0.8 @@ -35642,7 +35831,7 @@ https://www.rfc1437.de/2007/04/16/automator-actions/ - 2026-03-03T16:37:35.000Z + 2026-03-03T16:37:35.834Z monthly 0.8 @@ -35651,7 +35840,7 @@ https://www.rfc1437.de/2007/04/16/automator-world/ - 2026-03-03T16:37:39.000Z + 2026-03-03T16:37:39.228Z monthly 0.8 @@ -35660,7 +35849,7 @@ https://www.rfc1437.de/2007/04/16/doug-s-applescripts-for-itunes-2/ - 2026-03-03T16:37:43.000Z + 2026-03-03T16:37:43.176Z monthly 0.8 @@ -35669,7 +35858,7 @@ https://www.rfc1437.de/2007/04/16/metalua/ - 2026-03-03T16:37:47.000Z + 2026-03-03T16:37:47.130Z monthly 0.8 @@ -35678,7 +35867,7 @@ https://www.rfc1437.de/2007/04/16/usb-to-ethernet-adaptors-for-mac-os-x/ - 2026-03-03T16:37:51.000Z + 2026-03-03T16:37:51.110Z monthly 0.8 @@ -35687,7 +35876,7 @@ https://www.rfc1437.de/2007/04/16/write-your-own-automator-actions/ - 2026-03-03T16:37:55.000Z + 2026-03-03T16:37:55.057Z monthly 0.8 @@ -35696,7 +35885,7 @@ https://www.rfc1437.de/2007/04/14/google-kauft-doubleclick/ - 2026-03-03T16:37:59.000Z + 2026-03-03T16:37:59.116Z monthly 0.8 @@ -35705,7 +35894,7 @@ https://www.rfc1437.de/2007/04/14/speakeasy-speed-test/ - 2026-03-03T16:38:02.000Z + 2026-03-03T16:38:02.993Z monthly 0.8 @@ -35714,7 +35903,7 @@ https://www.rfc1437.de/2007/04/14/vinton-cerf-denkt-an-internet-neustart/ - 2026-03-03T16:38:07.000Z + 2026-03-03T16:38:07.886Z monthly 0.8 @@ -35723,7 +35912,7 @@ https://www.rfc1437.de/2007/04/13/navigation-kit-fuer-das-nokia-n800-internet-tablet/ - 2026-03-03T16:38:11.000Z + 2026-03-03T16:38:11.853Z monthly 0.8 @@ -35732,7 +35921,7 @@ https://www.rfc1437.de/2007/04/12/5-question-interview-with-twitter-developer-alex/ - 2026-03-03T16:38:16.000Z + 2026-03-03T16:38:16.336Z monthly 0.8 @@ -35741,7 +35930,7 @@ https://www.rfc1437.de/2007/04/12/door-to-door-atheists/ - 2026-03-07T21:11:58.000Z + 2026-03-07T21:11:58.796Z monthly 0.8 @@ -35750,7 +35939,7 @@ https://www.rfc1437.de/2007/04/12/polizei-soll-automatisch-auf-digitale-passfotos/ - 2026-03-03T16:38:25.000Z + 2026-03-03T16:38:25.045Z monthly 0.8 @@ -35759,7 +35948,7 @@ https://www.rfc1437.de/2007/04/12/senduit/ - 2026-03-03T16:38:29.000Z + 2026-03-03T16:38:29.492Z monthly 0.8 @@ -35768,7 +35957,7 @@ https://www.rfc1437.de/2007/04/11/hacker-reissen-neues-loch-in-aacs-verschluesselung/ - 2026-03-03T16:38:35.000Z + 2026-03-03T16:38:35.174Z monthly 0.8 @@ -35777,7 +35966,7 @@ https://www.rfc1437.de/2007/04/11/mogilefs/ - 2026-03-07T21:11:59.000Z + 2026-03-07T21:11:59.302Z monthly 0.8 @@ -35786,7 +35975,7 @@ https://www.rfc1437.de/2007/04/11/rabbitmq-open-source-enterprise-messaging/ - 2026-03-03T16:38:42.000Z + 2026-03-03T16:38:42.849Z monthly 0.8 @@ -35795,7 +35984,7 @@ https://www.rfc1437.de/2007/04/10/datenschuetzer-schlagen-alarm-us-geheimdienst-vor/ - 2026-03-03T16:38:48.000Z + 2026-03-03T16:38:48.456Z monthly 0.8 @@ -35804,7 +35993,7 @@ https://www.rfc1437.de/2007/04/10/debian-4-0-finally-arrives/ - 2026-03-03T16:38:52.000Z + 2026-03-03T16:38:52.386Z monthly 0.8 @@ -35813,7 +36002,7 @@ https://www.rfc1437.de/2007/04/10/imified-developer-community/ - 2026-03-03T16:38:55.000Z + 2026-03-03T16:38:55.812Z monthly 0.8 @@ -35822,7 +36011,7 @@ https://www.rfc1437.de/2007/04/10/just-how-smart-are-ravens/ - 2026-03-03T16:38:59.000Z + 2026-03-03T16:38:59.777Z monthly 0.8 @@ -35831,7 +36020,7 @@ https://www.rfc1437.de/2007/04/10/kuler/ - 2026-03-03T16:39:03.000Z + 2026-03-03T16:39:03.467Z monthly 0.8 @@ -35840,7 +36029,7 @@ https://www.rfc1437.de/2007/04/10/scribd/ - 2026-03-03T16:39:08.000Z + 2026-03-03T16:39:08.102Z monthly 0.8 @@ -35849,7 +36038,7 @@ https://www.rfc1437.de/2007/04/06/debatte-um-christian-klar-wenn-wir-schon-von-mord/ - 2026-03-03T16:39:12.000Z + 2026-03-03T16:39:12.529Z monthly 0.8 @@ -35858,7 +36047,7 @@ https://www.rfc1437.de/2007/04/05/breaking-wep-in-under-a-minute/ - 2026-03-03T16:39:16.000Z + 2026-03-03T16:39:16.579Z monthly 0.8 @@ -35867,7 +36056,7 @@ https://www.rfc1437.de/2007/04/05/dabble-db-commons/ - 2026-03-03T16:39:21.000Z + 2026-03-03T16:39:21.073Z monthly 0.8 @@ -35876,7 +36065,7 @@ https://www.rfc1437.de/2007/04/05/genossenschaftsbanken-und-was-draus-wurde/ - 2026-03-03T16:39:26.000Z + 2026-03-03T16:39:26.613Z monthly 0.8 @@ -35885,7 +36074,7 @@ https://www.rfc1437.de/2007/04/05/globulation2/ - 2026-03-03T16:39:30.000Z + 2026-03-03T16:39:30.582Z monthly 0.8 @@ -35894,7 +36083,7 @@ https://www.rfc1437.de/2007/04/04/bknr/ - 2026-03-03T16:39:34.000Z + 2026-03-03T16:39:34.824Z monthly 0.8 @@ -35903,7 +36092,7 @@ https://www.rfc1437.de/2007/04/04/cliki-commonlispprevalence/ - 2026-03-03T16:39:39.000Z + 2026-03-03T16:39:39.227Z monthly 0.8 @@ -35912,7 +36101,7 @@ https://www.rfc1437.de/2007/04/04/hunchentoot-the-common-lisp-web-server-formerly/ - 2026-03-07T21:12:02.000Z + 2026-03-07T21:12:02.284Z monthly 0.8 @@ -35921,7 +36110,7 @@ https://www.rfc1437.de/2007/04/04/lispbox/ - 2026-03-03T16:39:47.000Z + 2026-03-03T16:39:47.576Z monthly 0.8 @@ -35930,7 +36119,7 @@ https://www.rfc1437.de/2007/04/04/pleac-programming-language-examples-alike-cookbook/ - 2026-03-03T16:39:51.000Z + 2026-03-03T16:39:51.552Z monthly 0.8 @@ -35939,7 +36128,7 @@ https://www.rfc1437.de/2007/04/04/the-elephant-persistent-object-metaprotocol-and/ - 2026-03-03T16:39:55.000Z + 2026-03-03T16:39:55.602Z monthly 0.8 @@ -35948,7 +36137,7 @@ https://www.rfc1437.de/2007/04/04/usa-reklamieren-absolutes-recht-auf-persoenliche/ - 2026-03-03T16:40:00.000Z + 2026-03-03T16:40:00.458Z monthly 0.8 @@ -35957,7 +36146,7 @@ https://www.rfc1437.de/2007/04/03/devicescape-connect-all-your-wi-fi-devices-to-any/ - 2026-03-03T16:40:04.000Z + 2026-03-03T16:40:04.910Z monthly 0.8 @@ -35966,7 +36155,7 @@ https://www.rfc1437.de/2007/04/03/franzoesische-bahn-stellt-geschwindigkeitsrekord/ - 2026-03-03T16:40:08.000Z + 2026-03-03T16:40:08.936Z monthly 0.8 @@ -35975,7 +36164,7 @@ https://www.rfc1437.de/2007/04/03/locomotive/ - 2026-03-03T16:40:12.000Z + 2026-03-03T16:40:12.828Z monthly 0.8 @@ -35984,7 +36173,7 @@ https://www.rfc1437.de/2007/04/03/scheme-48/ - 2026-03-03T16:40:16.000Z + 2026-03-03T16:40:16.812Z monthly 0.8 @@ -35993,7 +36182,7 @@ https://www.rfc1437.de/2007/04/03/vista-smalltalk/ - 2026-03-03T16:40:21.000Z + 2026-03-03T16:40:21.276Z monthly 0.8 @@ -36002,7 +36191,7 @@ https://www.rfc1437.de/2007/04/02/emi-music-launches-drm-free-superior-sound/ - 2026-03-03T16:40:25.000Z + 2026-03-03T16:40:25.725Z monthly 0.8 @@ -36011,7 +36200,7 @@ https://www.rfc1437.de/2007/04/02/good-math-bad-math-damn-damn-damn-damn-damn-it-i/ - 2026-03-03T16:40:31.000Z + 2026-03-03T16:40:31.208Z monthly 0.8 @@ -36020,7 +36209,7 @@ https://www.rfc1437.de/2007/03/29/djangokit/ - 2026-03-03T16:40:35.000Z + 2026-03-03T16:40:35.320Z monthly 0.8 @@ -36029,7 +36218,7 @@ https://www.rfc1437.de/2007/03/29/industrie-will-raubkopierer-oeffentlich-machen/ - 2026-03-03T16:40:40.000Z + 2026-03-03T16:40:40.378Z monthly 0.8 @@ -36038,7 +36227,7 @@ https://www.rfc1437.de/2007/03/29/serval/ - 2026-03-03T16:40:44.000Z + 2026-03-03T16:40:44.345Z monthly 0.8 @@ -36047,7 +36236,7 @@ https://www.rfc1437.de/2007/03/29/tsung/ - 2026-03-03T16:40:48.000Z + 2026-03-03T16:40:48.257Z monthly 0.8 @@ -36056,7 +36245,7 @@ https://www.rfc1437.de/2007/03/29/what-is-eddie/ - 2026-03-03T16:40:52.000Z + 2026-03-03T16:40:52.238Z monthly 0.8 @@ -36065,7 +36254,7 @@ https://www.rfc1437.de/2007/03/28/open-croquet-sdk-1-0/ - 2026-03-03T16:40:56.000Z + 2026-03-03T16:40:56.784Z monthly 0.8 @@ -36074,7 +36263,7 @@ https://www.rfc1437.de/2007/03/28/uni-verse-home/ - 2026-03-03T16:41:00.000Z + 2026-03-03T16:41:00.667Z monthly 0.8 @@ -36083,7 +36272,7 @@ https://www.rfc1437.de/2007/03/27/a-sign-a-flipped-structure-and-a-scientific/ - 2026-03-03T16:41:05.000Z + 2026-03-03T16:41:05.065Z monthly 0.8 @@ -36092,7 +36281,7 @@ https://www.rfc1437.de/2007/03/27/appscript/ - 2026-03-03T16:41:08.000Z + 2026-03-03T16:41:08.463Z monthly 0.8 @@ -36101,7 +36290,7 @@ https://www.rfc1437.de/2007/03/27/comprehensive-erlang-archive-network/ - 2026-03-03T16:41:12.000Z + 2026-03-03T16:41:12.551Z monthly 0.8 @@ -36110,7 +36299,7 @@ https://www.rfc1437.de/2007/03/27/imified-instant-productivity/ - 2026-03-03T16:41:17.000Z + 2026-03-03T16:41:17.439Z monthly 0.8 @@ -36119,7 +36308,7 @@ https://www.rfc1437.de/2007/03/27/skeptico-pretty-soon/ - 2026-03-07T21:12:05.000Z + 2026-03-07T21:12:05.252Z monthly 0.8 @@ -36128,7 +36317,7 @@ https://www.rfc1437.de/2007/03/26/emergent-technologies-inc-lmi-k-machine/ - 2026-03-07T21:12:08.000Z + 2026-03-07T21:12:08.132Z monthly 0.8 @@ -36137,7 +36326,7 @@ https://www.rfc1437.de/2007/03/26/gtk-for-mac-os-x/ - 2026-03-03T16:41:29.000Z + 2026-03-03T16:41:29.117Z monthly 0.8 @@ -36146,7 +36335,7 @@ https://www.rfc1437.de/2007/03/23/google-code-prettify-google-code/ - 2026-03-03T16:41:33.000Z + 2026-03-03T16:41:33.355Z monthly 0.8 @@ -36155,7 +36344,7 @@ https://www.rfc1437.de/2007/03/23/lambdavm-the-haskell-to-java-translator/ - 2026-03-07T21:12:08.000Z + 2026-03-07T21:12:08.839Z monthly 0.8 @@ -36164,7 +36353,7 @@ https://www.rfc1437.de/2007/03/22/10-most-magnificent-trees-in-the-world/ - 2026-03-07T21:12:11.000Z + 2026-03-07T21:12:11.702Z monthly 0.8 @@ -36173,7 +36362,7 @@ https://www.rfc1437.de/2007/03/22/backhoe/ - 2026-03-03T16:41:46.000Z + 2026-03-03T16:41:46.225Z monthly 0.8 @@ -36182,7 +36371,7 @@ https://www.rfc1437.de/2007/03/22/gymnasium-verbannt-harry-potter/ - 2026-03-03T16:41:51.000Z + 2026-03-03T16:41:51.889Z monthly 0.8 @@ -36191,7 +36380,7 @@ https://www.rfc1437.de/2007/03/22/koran-urteil-empoerung-ueber-frankfurter-richterin/ - 2026-03-03T16:41:56.000Z + 2026-03-03T16:41:56.944Z monthly 0.8 @@ -36200,7 +36389,7 @@ https://www.rfc1437.de/2007/03/22/lift-web-framework/ - 2026-03-03T16:42:00.000Z + 2026-03-03T16:42:00.952Z monthly 0.8 @@ -36209,7 +36398,7 @@ https://www.rfc1437.de/2007/03/22/maya-second-life-beta-version/ - 2026-03-03T16:42:05.000Z + 2026-03-03T16:42:05.091Z monthly 0.8 @@ -36218,7 +36407,7 @@ https://www.rfc1437.de/2007/03/22/the-scala-programming-language/ - 2026-03-03T16:42:09.000Z + 2026-03-03T16:42:09.585Z monthly 0.8 @@ -36227,7 +36416,7 @@ https://www.rfc1437.de/2007/03/21/hyperlook-aka-hypernews-aka-goodnews/ - 2026-03-03T16:42:14.000Z + 2026-03-03T16:42:14.178Z monthly 0.8 @@ -36236,7 +36425,7 @@ https://www.rfc1437.de/2007/03/21/n800-video-playback/ - 2026-03-03T16:42:18.000Z + 2026-03-03T16:42:18.708Z monthly 0.8 @@ -36245,7 +36434,7 @@ https://www.rfc1437.de/2007/03/21/spd-sprecher-online-durchsuchungen-kommen-auf/ - 2026-03-03T16:42:23.000Z + 2026-03-03T16:42:23.706Z monthly 0.8 @@ -36254,7 +36443,7 @@ https://www.rfc1437.de/2007/03/21/sprachlicher-verbraucherschutz-union-gegen/ - 2026-03-03T16:42:27.000Z + 2026-03-03T16:42:27.702Z monthly 0.8 @@ -36263,7 +36452,7 @@ https://www.rfc1437.de/2007/03/21/sugar-ideas-for-sugar-development-environment/ - 2026-03-03T16:42:31.000Z + 2026-03-03T16:42:31.727Z monthly 0.8 @@ -36272,7 +36461,7 @@ https://www.rfc1437.de/2007/03/19/amnesty-singles/ - 2026-03-03T16:42:35.000Z + 2026-03-03T16:42:35.341Z monthly 0.8 @@ -36281,7 +36470,7 @@ https://www.rfc1437.de/2007/03/19/eurion-constellation/ - 2026-03-03T16:42:38.000Z + 2026-03-03T16:42:38.965Z monthly 0.8 @@ -36290,7 +36479,7 @@ https://www.rfc1437.de/2007/03/19/sqlite-introduction/ - 2026-03-03T16:42:44.000Z + 2026-03-03T16:42:44.016Z monthly 0.8 @@ -36299,7 +36488,7 @@ https://www.rfc1437.de/2007/03/19/weil-sich-ein-paar-leute-gewundert-hatten/ - 2026-03-03T16:42:47.000Z + 2026-03-03T16:42:47.515Z monthly 0.8 @@ -36308,7 +36497,7 @@ https://www.rfc1437.de/2007/03/16/federal-patent-court-declares-fat-patent-of/ - 2026-03-07T21:12:14.000Z + 2026-03-07T21:12:14.777Z monthly 0.8 @@ -36317,7 +36506,7 @@ https://www.rfc1437.de/2007/03/16/javascript-for-the-macintosh/ - 2026-03-03T16:42:56.000Z + 2026-03-03T16:42:56.005Z monthly 0.8 @@ -36326,7 +36515,7 @@ https://www.rfc1437.de/2007/03/16/lingon-by-peter-borg/ - 2026-03-03T16:42:59.000Z + 2026-03-03T16:42:59.941Z monthly 0.8 @@ -36335,7 +36524,7 @@ https://www.rfc1437.de/2007/03/16/networklocation/ - 2026-03-07T21:12:17.000Z + 2026-03-07T21:12:17.638Z monthly 0.8 @@ -36344,7 +36533,7 @@ https://www.rfc1437.de/2007/03/16/python-django-and-db2-we-need-your-input/ - 2026-03-03T16:43:08.000Z + 2026-03-03T16:43:08.079Z monthly 0.8 @@ -36353,7 +36542,7 @@ https://www.rfc1437.de/2007/03/16/script-debugger-4-0/ - 2026-03-03T16:43:12.000Z + 2026-03-03T16:43:12.916Z monthly 0.8 @@ -36362,7 +36551,7 @@ https://www.rfc1437.de/2007/03/15/lsl-module-for-bbedit-textwrangler/ - 2026-03-03T16:43:17.000Z + 2026-03-03T16:43:17.146Z monthly 0.8 @@ -36371,7 +36560,7 @@ https://www.rfc1437.de/2007/03/15/programming-erlang/ - 2026-03-03T16:43:21.000Z + 2026-03-03T16:43:21.957Z monthly 0.8 @@ -36380,7 +36569,7 @@ https://www.rfc1437.de/2007/03/15/shill-lsl-syntax-files/ - 2026-03-03T16:43:26.000Z + 2026-03-03T16:43:26.177Z monthly 0.8 @@ -36389,7 +36578,7 @@ https://www.rfc1437.de/2007/03/14/bericht-openbsd-entwickler-wollten-kritische/ - 2026-03-03T16:43:32.000Z + 2026-03-03T16:43:32.298Z monthly 0.8 @@ -36398,7 +36587,7 @@ https://www.rfc1437.de/2007/03/14/gen-mais-ratten-zeigen-schaeden-an-leber-und/ - 2026-03-03T16:43:37.000Z + 2026-03-03T16:43:37.891Z monthly 0.8 @@ -36407,7 +36596,7 @@ https://www.rfc1437.de/2007/03/14/mono-on-nokia-770-800/ - 2026-03-03T16:43:43.000Z + 2026-03-03T16:43:43.063Z monthly 0.8 @@ -36416,7 +36605,7 @@ https://www.rfc1437.de/2007/03/14/nochmal-picolisp-2/ - 2026-03-03T16:43:48.000Z + 2026-03-03T16:43:48.115Z monthly 0.8 @@ -36425,7 +36614,7 @@ https://www.rfc1437.de/2007/03/14/pico-lisp/ - 2026-03-03T16:43:52.000Z + 2026-03-03T16:43:52.134Z monthly 0.8 @@ -36434,7 +36623,7 @@ https://www.rfc1437.de/2007/03/14/polen-minister-will-homosexuelle-agitation/ - 2026-03-03T16:43:56.000Z + 2026-03-03T16:43:56.750Z monthly 0.8 @@ -36443,7 +36632,7 @@ https://www.rfc1437.de/2007/03/14/scigen-an-automatic-cs-paper-generator/ - 2026-03-07T21:12:20.000Z + 2026-03-07T21:12:20.303Z monthly 0.8 @@ -36452,7 +36641,7 @@ https://www.rfc1437.de/2007/03/12/leica-25mm-f1-4-four-thirds-lens/ - 2026-03-03T16:44:05.000Z + 2026-03-03T16:44:05.350Z monthly 0.8 @@ -36461,7 +36650,7 @@ https://www.rfc1437.de/2007/03/12/sigma-dp1/ - 2026-03-03T16:44:10.000Z + 2026-03-03T16:44:10.473Z monthly 0.8 @@ -36470,7 +36659,7 @@ https://www.rfc1437.de/2007/03/11/alioth-debian-root-software-raid-documentation/ - 2026-03-03T16:44:15.000Z + 2026-03-03T16:44:15.640Z monthly 0.8 @@ -36479,7 +36668,7 @@ https://www.rfc1437.de/2007/03/10/debian-administration-migrating-to-raid1-mirror/ - 2026-03-03T16:44:19.000Z + 2026-03-03T16:44:19.740Z monthly 0.8 @@ -36488,7 +36677,7 @@ https://www.rfc1437.de/2007/03/10/raid-1-part-2-linux-journal/ - 2026-03-03T16:44:23.000Z + 2026-03-03T16:44:23.705Z monthly 0.8 @@ -36497,7 +36686,7 @@ https://www.rfc1437.de/2007/02/22/cargo-cult-science/ - 2026-03-03T16:44:27.000Z + 2026-03-03T16:44:27.208Z monthly 0.8 @@ -36506,7 +36695,7 @@ https://www.rfc1437.de/2007/02/21/bewaehrungsstrafen-fuer-ftpwelt-betreiber/ - 2026-03-03T16:44:32.000Z + 2026-03-03T16:44:32.947Z monthly 0.8 @@ -36515,7 +36704,7 @@ https://www.rfc1437.de/2007/02/21/darwin-streaming-server-unter-ubuntu-debian/ - 2026-03-03T16:44:37.000Z + 2026-03-03T16:44:37.064Z monthly 0.8 @@ -36524,7 +36713,7 @@ https://www.rfc1437.de/2007/02/21/quicktime-broadcaster/ - 2026-03-03T16:44:41.000Z + 2026-03-03T16:44:41.105Z monthly 0.8 @@ -36533,7 +36722,7 @@ https://www.rfc1437.de/2007/02/21/rtsp-org-real-time-streaming-protocol-rtsp/ - 2026-03-07T21:12:22.000Z + 2026-03-07T21:12:22.997Z monthly 0.8 @@ -36542,7 +36731,7 @@ https://www.rfc1437.de/2007/02/21/streaming-mit-linux/ - 2026-03-03T16:44:48.000Z + 2026-03-03T16:44:48.961Z monthly 0.8 @@ -36551,7 +36740,7 @@ https://www.rfc1437.de/2007/02/21/using-nicecast-with-streaming-server/ - 2026-03-03T16:44:53.000Z + 2026-03-03T16:44:53.970Z monthly 0.8 @@ -36560,7 +36749,7 @@ https://www.rfc1437.de/2007/02/20/build-me-a-tapeworm/ - 2026-03-03T16:44:58.000Z + 2026-03-03T16:44:58.324Z monthly 0.8 @@ -36569,7 +36758,7 @@ https://www.rfc1437.de/2007/02/20/rzip/ - 2026-03-03T16:45:02.000Z + 2026-03-03T16:45:02.211Z monthly 0.8 @@ -36578,7 +36767,7 @@ https://www.rfc1437.de/2007/02/19/die-mehrheit-der-schweiger/ - 2026-03-03T16:45:06.000Z + 2026-03-03T16:45:06.483Z monthly 0.8 @@ -36587,7 +36776,7 @@ https://www.rfc1437.de/2007/02/19/jungerl-a-dense-and-chaotic-jungle-of-erlang-code/ - 2026-03-03T16:45:10.000Z + 2026-03-03T16:45:10.822Z monthly 0.8 @@ -36596,7 +36785,7 @@ https://www.rfc1437.de/2007/02/16/personal-computers-will-never-have-gigabytes-of/ - 2026-03-03T16:45:15.000Z + 2026-03-03T16:45:15.460Z monthly 0.8 @@ -36605,7 +36794,7 @@ https://www.rfc1437.de/2007/02/15/grandperspective/ - 2026-03-03T16:45:19.000Z + 2026-03-03T16:45:19.479Z monthly 0.8 @@ -36614,7 +36803,7 @@ https://www.rfc1437.de/2007/02/14/the-largest-drain-hole-in-the-world/ - 2026-03-03T16:45:23.000Z + 2026-03-03T16:45:23.495Z monthly 0.8 @@ -36623,7 +36812,7 @@ https://www.rfc1437.de/2007/02/13/schneier-on-drm-in-windows-vista/ - 2026-03-03T16:45:27.000Z + 2026-03-03T16:45:27.528Z monthly 0.8 @@ -36632,7 +36821,7 @@ https://www.rfc1437.de/2007/02/13/scientist-finds-new-ocean-in-inner-earth/ - 2026-03-03T16:45:32.000Z + 2026-03-03T16:45:32.655Z monthly 0.8 @@ -36641,7 +36830,7 @@ https://www.rfc1437.de/2007/02/13/soaplib/ - 2026-03-03T16:45:37.000Z + 2026-03-03T16:45:37.335Z monthly 0.8 @@ -36650,7 +36839,7 @@ https://www.rfc1437.de/2007/02/12/boto/ - 2026-03-03T16:45:41.000Z + 2026-03-03T16:45:41.714Z monthly 0.8 @@ -36659,7 +36848,7 @@ https://www.rfc1437.de/2007/02/12/jython-2-2-beta/ - 2026-03-03T16:45:46.000Z + 2026-03-03T16:45:46.586Z monthly 0.8 @@ -36668,7 +36857,7 @@ https://www.rfc1437.de/2007/02/09/caught-in-the-network/ - 2026-03-03T16:45:51.000Z + 2026-03-03T16:45:51.958Z monthly 0.8 @@ -36677,7 +36866,7 @@ https://www.rfc1437.de/2007/02/09/politiker-gegen-einbuergerung-von-kurnaz/ - 2026-03-03T16:45:57.000Z + 2026-03-03T16:45:57.922Z monthly 0.8 @@ -36686,7 +36875,7 @@ https://www.rfc1437.de/2007/02/09/schaeuble-trojaner-sollen-auch-private/ - 2026-03-03T16:46:03.000Z + 2026-03-03T16:46:03.205Z monthly 0.8 @@ -36695,7 +36884,7 @@ https://www.rfc1437.de/2007/02/09/yahoos-kleine-mashup-revolution/ - 2026-03-03T16:46:08.000Z + 2026-03-03T16:46:08.498Z monthly 0.8 @@ -36704,7 +36893,7 @@ https://www.rfc1437.de/2007/02/08/asimov-what-is-intelligence/ - 2026-03-07T21:12:23.000Z + 2026-03-07T21:12:23.634Z monthly 0.8 @@ -36713,7 +36902,7 @@ https://www.rfc1437.de/2007/02/08/wi-fi-hacking-with-a-handheld-pda/ - 2026-03-03T16:46:16.000Z + 2026-03-03T16:46:16.861Z monthly 0.8 @@ -36722,7 +36911,7 @@ https://www.rfc1437.de/2007/02/07/older-than-the-sun-the-meteorite-scientists-call/ - 2026-03-07T21:12:26.000Z + 2026-03-07T21:12:26.656Z monthly 0.8 @@ -36731,7 +36920,7 @@ https://www.rfc1437.de/2007/02/07/the-pi-search-page/ - 2026-03-03T16:46:25.000Z + 2026-03-03T16:46:25.395Z monthly 0.8 @@ -36740,7 +36929,7 @@ https://www.rfc1437.de/2007/02/07/useless-account/ - 2026-03-03T16:46:29.000Z + 2026-03-03T16:46:29.548Z monthly 0.8 @@ -36749,7 +36938,7 @@ https://www.rfc1437.de/2007/02/06/linux-vserver-on-debian-testing-etch-the-easy-way/ - 2026-03-03T16:46:34.000Z + 2026-03-03T16:46:34.119Z monthly 0.8 @@ -36758,7 +36947,7 @@ https://www.rfc1437.de/2007/02/05/adium/ - 2026-03-03T16:46:38.000Z + 2026-03-03T16:46:38.464Z monthly 0.8 @@ -36767,7 +36956,7 @@ https://www.rfc1437.de/2007/02/05/docucolor-tracking-dot-decoding-guide/ - 2026-03-03T16:46:42.000Z + 2026-03-03T16:46:42.959Z monthly 0.8 @@ -36776,7 +36965,7 @@ https://www.rfc1437.de/2007/02/05/electric-slide-on-slippery-dmca-slope/ - 2026-03-03T16:46:48.000Z + 2026-03-03T16:46:48.314Z monthly 0.8 @@ -36785,7 +36974,7 @@ https://www.rfc1437.de/2007/02/05/heimliche-online-durchsuchungen-sind-unzulaessig/ - 2026-03-03T16:46:54.000Z + 2026-03-03T16:46:54.172Z monthly 0.8 @@ -36794,7 +36983,7 @@ https://www.rfc1437.de/2007/02/05/schaeuble-heizt-nach-bgh-urteil-debatte-um-online/ - 2026-03-03T16:46:59.000Z + 2026-03-03T16:46:59.623Z monthly 0.8 @@ -36803,7 +36992,7 @@ https://www.rfc1437.de/2007/02/05/slimbox-the-ultimate-lightweight-lightbox-clone/ - 2026-03-03T16:47:03.000Z + 2026-03-03T16:47:03.620Z monthly 0.8 @@ -36812,7 +37001,7 @@ https://www.rfc1437.de/2007/02/02/gothia-gazette/ - 2026-03-07T21:12:29.000Z + 2026-03-07T21:12:29.518Z monthly 0.8 @@ -36821,7 +37010,7 @@ https://www.rfc1437.de/2007/02/02/modwsgi/ - 2026-03-03T16:47:12.000Z + 2026-03-03T16:47:12.458Z monthly 0.8 @@ -36830,7 +37019,7 @@ https://www.rfc1437.de/2007/02/02/non-terrorist-embarrassment-in-boston/ - 2026-03-07T21:12:30.000Z + 2026-03-07T21:12:30.340Z monthly 0.8 @@ -36839,7 +37028,7 @@ https://www.rfc1437.de/2007/02/02/we-need-to-remove-this-access-barrier-before-it/ - 2026-03-03T16:47:21.000Z + 2026-03-03T16:47:21.641Z monthly 0.8 @@ -36848,7 +37037,7 @@ https://www.rfc1437.de/2007/02/01/an-iron-curtain-is-descending-and-most-americans/ - 2026-03-03T16:47:25.000Z + 2026-03-03T16:47:25.940Z monthly 0.8 @@ -36857,7 +37046,7 @@ https://www.rfc1437.de/2007/02/01/courtney-love-does-the-math/ - 2026-03-03T16:47:29.000Z + 2026-03-03T16:47:29.813Z monthly 0.8 @@ -36866,7 +37055,7 @@ https://www.rfc1437.de/2007/02/01/king-mojo/ - 2026-03-03T16:47:33.000Z + 2026-03-03T16:47:33.560Z monthly 0.8 @@ -36875,7 +37064,7 @@ https://www.rfc1437.de/2007/01/31/us-urges-scientists-to-block-out-sun/ - 2026-03-03T16:47:38.000Z + 2026-03-03T16:47:38.374Z monthly 0.8 @@ -36884,7 +37073,7 @@ https://www.rfc1437.de/2007/01/31/village-may-have-housed-builders-of-stonehenge/ - 2026-03-08T14:23:45.000Z + 2026-03-08T14:23:45.679Z monthly 0.8 @@ -36893,7 +37082,7 @@ https://www.rfc1437.de/2007/01/31/worldmapper-the-world-as-you-ve-never-seen-it/ - 2026-03-03T16:47:46.000Z + 2026-03-03T16:47:46.504Z monthly 0.8 @@ -36902,7 +37091,7 @@ https://www.rfc1437.de/2007/01/31/yes-in-10-years-we-may-have-no-bananas/ - 2026-03-07T21:12:36.000Z + 2026-03-07T21:12:36.694Z monthly 0.8 @@ -36911,7 +37100,7 @@ https://www.rfc1437.de/2007/01/30/auf-in-den-ueberwachungsstaat/ - 2026-03-03T16:47:54.000Z + 2026-03-03T16:47:54.598Z monthly 0.8 @@ -36920,7 +37109,7 @@ https://www.rfc1437.de/2007/01/30/hobbit-human-is-a-new-species/ - 2026-03-03T16:47:58.000Z + 2026-03-03T16:47:58.885Z monthly 0.8 @@ -36929,7 +37118,7 @@ https://www.rfc1437.de/2007/01/30/legal-wrangle-puts-india-s-generic-drugs-at-risk/ - 2026-03-03T16:48:03.000Z + 2026-03-03T16:48:03.729Z monthly 0.8 @@ -36938,7 +37127,7 @@ https://www.rfc1437.de/2007/01/29/microsoft-copies-bluej-admits-it-then-patents-it/ - 2026-03-03T16:48:08.000Z + 2026-03-03T16:48:08.126Z monthly 0.8 @@ -36947,7 +37136,7 @@ https://www.rfc1437.de/2007/01/29/soll-haben-die-doppelmoral-des-rechtsanwalts/ - 2026-03-03T16:48:12.000Z + 2026-03-03T16:48:12.648Z monthly 0.8 @@ -36956,7 +37145,7 @@ https://www.rfc1437.de/2007/01/26/blogs-mit-link-redirector-haben-doofe-ohren/ - 2026-03-03T16:48:17.000Z + 2026-03-03T16:48:17.792Z monthly 0.8 @@ -36965,7 +37154,7 @@ https://www.rfc1437.de/2007/01/26/life-is-complicated/ - 2026-03-03T16:48:22.000Z + 2026-03-03T16:48:22.901Z monthly 0.8 @@ -36974,7 +37163,7 @@ https://www.rfc1437.de/2007/01/26/mindestloehne-in-europa/ - 2026-03-03T16:48:27.000Z + 2026-03-03T16:48:27.434Z monthly 0.8 @@ -36983,7 +37172,7 @@ https://www.rfc1437.de/2007/01/26/musikindustrie-regierung-will-urheberrecht-zum/ - 2026-03-03T16:48:33.000Z + 2026-03-03T16:48:33.292Z monthly 0.8 @@ -36992,7 +37181,7 @@ https://www.rfc1437.de/2007/01/26/willard-wigan-micro-sculptor/ - 2026-03-07T21:12:37.000Z + 2026-03-07T21:12:37.406Z monthly 0.8 @@ -37001,7 +37190,7 @@ https://www.rfc1437.de/2007/01/25/exotischer-tiefseehai-ins-netz-gegangen/ - 2026-03-03T16:48:40.000Z + 2026-03-03T16:48:40.943Z monthly 0.8 @@ -37010,7 +37199,7 @@ https://www.rfc1437.de/2007/01/25/frozen-waves/ - 2026-03-07T21:12:38.000Z + 2026-03-07T21:12:38.023Z monthly 0.8 @@ -37019,7 +37208,7 @@ https://www.rfc1437.de/2007/01/25/interview-with-muslix64-developer-of-backuphddvd/ - 2026-03-07T21:12:41.000Z + 2026-03-07T21:12:41.405Z monthly 0.8 @@ -37028,7 +37217,7 @@ https://www.rfc1437.de/2007/01/25/muenstersche-zeitung-verleger-stellt-ganze/ - 2026-03-03T16:48:55.000Z + 2026-03-03T16:48:55.283Z monthly 0.8 @@ -37037,7 +37226,7 @@ https://www.rfc1437.de/2007/01/25/reddit-com-user-agreement/ - 2026-03-07T21:12:43.000Z + 2026-03-07T21:12:43.038Z monthly 0.8 @@ -37046,7 +37235,7 @@ https://www.rfc1437.de/2007/01/25/regular-expression-matching-can-be-simple-and-fast/ - 2026-03-03T16:49:04.000Z + 2026-03-03T16:49:04.311Z monthly 0.8 @@ -37055,7 +37244,7 @@ https://www.rfc1437.de/2007/01/25/the-text-editor-sam/ - 2026-03-03T16:49:08.000Z + 2026-03-03T16:49:08.389Z monthly 0.8 @@ -37064,7 +37253,7 @@ https://www.rfc1437.de/2007/01/25/the-truth-about-working-in-the-it-industry/ - 2026-03-07T21:12:45.000Z + 2026-03-07T21:12:45.863Z monthly 0.8 @@ -37073,7 +37262,7 @@ https://www.rfc1437.de/2007/01/24/literature-and-latte-scrivener/ - 2026-03-03T16:49:16.000Z + 2026-03-03T16:49:16.536Z monthly 0.8 @@ -37082,7 +37271,7 @@ https://www.rfc1437.de/2007/01/24/pando-tree/ - 2026-03-03T16:49:21.000Z + 2026-03-03T16:49:21.643Z monthly 0.8 @@ -37091,7 +37280,7 @@ https://www.rfc1437.de/2007/01/23/bundestag-abhoergeraete-in-abgeordnetenbuero/ - 2026-03-03T16:49:26.000Z + 2026-03-03T16:49:26.179Z monthly 0.8 @@ -37100,7 +37289,7 @@ https://www.rfc1437.de/2007/01/23/ironpython-und-libsecondlife/ - 2026-03-03T16:49:31.000Z + 2026-03-03T16:49:31.359Z monthly 0.8 @@ -37109,7 +37298,7 @@ https://www.rfc1437.de/2007/01/23/macfuse/ - 2026-03-03T16:49:36.000Z + 2026-03-03T16:49:36.153Z monthly 0.8 @@ -37118,7 +37307,7 @@ https://www.rfc1437.de/2007/01/23/net-languages/ - 2026-03-03T16:49:40.000Z + 2026-03-03T16:49:40.406Z monthly 0.8 @@ -37127,7 +37316,7 @@ https://www.rfc1437.de/2007/01/23/news-anfaengerfehler-in-mac-os-x/ - 2026-03-03T16:49:45.000Z + 2026-03-03T16:49:45.342Z monthly 0.8 @@ -37136,7 +37325,7 @@ https://www.rfc1437.de/2007/01/23/rinderbraten-und-broetchen/ - 2026-03-03T16:49:49.000Z + 2026-03-03T16:49:49.743Z monthly 0.8 @@ -37145,7 +37334,7 @@ https://www.rfc1437.de/2007/01/22/identicon/ - 2026-03-03T16:49:54.000Z + 2026-03-03T16:49:54.389Z monthly 0.8 @@ -37154,7 +37343,7 @@ https://www.rfc1437.de/2007/01/22/m-is-for-monkey/ - 2026-03-03T16:49:59.000Z + 2026-03-03T16:49:59.445Z monthly 0.8 @@ -37163,7 +37352,7 @@ https://www.rfc1437.de/2007/01/19/geschichte-ab-1945/ - 2026-03-03T16:50:03.000Z + 2026-03-03T16:50:03.490Z monthly 0.8 @@ -37172,7 +37361,7 @@ https://www.rfc1437.de/2007/01/19/pointless-sites-useless-sites/ - 2026-03-03T16:50:07.000Z + 2026-03-03T16:50:07.510Z monthly 0.8 @@ -37181,7 +37370,7 @@ https://www.rfc1437.de/2007/01/19/polyglot/ - 2026-03-03T16:50:11.000Z + 2026-03-03T16:50:11.711Z monthly 0.8 @@ -37190,7 +37379,7 @@ https://www.rfc1437.de/2007/01/19/tupper-s-self-referential-formula/ - 2026-03-03T16:50:15.000Z + 2026-03-03T16:50:15.799Z monthly 0.8 @@ -37199,7 +37388,7 @@ https://www.rfc1437.de/2007/01/18/bill-m-gates-foundation-for-profit-investments/ - 2026-03-07T21:12:46.000Z + 2026-03-07T21:12:46.593Z monthly 0.8 @@ -37208,7 +37397,7 @@ https://www.rfc1437.de/2007/01/18/think-gloves/ - 2026-03-03T16:50:24.000Z + 2026-03-03T16:50:24.831Z monthly 0.8 @@ -37217,7 +37406,7 @@ https://www.rfc1437.de/2007/01/18/think-gloves-2/ - 2026-03-07T21:12:49.000Z + 2026-03-07T21:12:49.527Z monthly 0.8 @@ -37226,7 +37415,7 @@ https://www.rfc1437.de/2007/01/17/nutzerdaten-sollen-zur-gefahrenabwehr-freigeben/ - 2026-03-03T16:50:34.000Z + 2026-03-03T16:50:34.645Z monthly 0.8 @@ -37235,7 +37424,7 @@ https://www.rfc1437.de/2007/01/17/python-for-maemo/ - 2026-03-03T16:50:38.000Z + 2026-03-03T16:50:38.211Z monthly 0.8 @@ -37244,7 +37433,7 @@ https://www.rfc1437.de/2007/01/17/second-life-warum/ - 2026-03-03T16:50:43.000Z + 2026-03-03T16:50:43.254Z monthly 0.8 @@ -37253,7 +37442,7 @@ https://www.rfc1437.de/2007/01/16/take-the-aq-test/ - 2026-03-07T21:12:50.000Z + 2026-03-07T21:12:50.513Z monthly 0.8 @@ -37262,7 +37451,7 @@ https://www.rfc1437.de/2007/01/15/diy-guide-your-own-supervillain-hideout-aka/ - 2026-03-07T21:12:53.000Z + 2026-03-07T21:12:53.490Z monthly 0.8 @@ -37271,7 +37460,7 @@ https://www.rfc1437.de/2007/01/15/entity-crisis-unity3d-evaluated-wow/ - 2026-03-03T16:50:56.000Z + 2026-03-03T16:50:56.005Z monthly 0.8 @@ -37280,7 +37469,7 @@ https://www.rfc1437.de/2007/01/15/generalverdacht-gegen-alle-kreditkartenbesitzer/ - 2026-03-03T16:51:00.000Z + 2026-03-03T16:51:00.467Z monthly 0.8 @@ -37289,7 +37478,7 @@ https://www.rfc1437.de/2007/01/15/photography-of-the-unexpected-and-neglected/ - 2026-03-07T19:15:10.000Z + 2026-03-07T19:15:10.764Z monthly 0.8 @@ -37298,7 +37487,7 @@ https://www.rfc1437.de/2007/01/15/the-jaquet-droz-androids-three-extraordinary/ - 2026-03-03T16:51:08.000Z + 2026-03-03T16:51:08.896Z monthly 0.8 @@ -37307,7 +37496,7 @@ https://www.rfc1437.de/2007/01/15/xo-wave/ - 2026-03-03T16:51:12.000Z + 2026-03-03T16:51:12.813Z monthly 0.8 @@ -37316,7 +37505,7 @@ https://www.rfc1437.de/2007/01/12/2006-darwin-awards/ - 2026-03-03T16:51:16.000Z + 2026-03-03T16:51:16.830Z monthly 0.8 @@ -37325,7 +37514,7 @@ https://www.rfc1437.de/2007/01/12/macfuse-2/ - 2026-03-03T16:51:20.000Z + 2026-03-03T16:51:20.309Z monthly 0.8 @@ -37334,7 +37523,7 @@ https://www.rfc1437.de/2007/01/12/mehr-schweine-als-menschen-in-niedersachsen/ - 2026-03-03T16:51:24.000Z + 2026-03-03T16:51:24.297Z monthly 0.8 @@ -37343,7 +37532,7 @@ https://www.rfc1437.de/2007/01/12/robert-a-wilson-gestorben/ - 2026-03-03T16:51:28.000Z + 2026-03-03T16:51:28.211Z monthly 0.8 @@ -37352,7 +37541,7 @@ https://www.rfc1437.de/2007/01/12/soviet-roadside-bus-stops/ - 2026-03-03T16:51:32.000Z + 2026-03-03T16:51:32.259Z monthly 0.8 @@ -37361,7 +37550,7 @@ https://www.rfc1437.de/2007/01/11/ebay/ - 2026-03-03T16:51:36.000Z + 2026-03-03T16:51:36.310Z monthly 0.8 @@ -37370,7 +37559,7 @@ https://www.rfc1437.de/2007/01/11/mindestlohn/ - 2026-03-03T16:51:40.000Z + 2026-03-03T16:51:40.346Z monthly 0.8 @@ -37379,7 +37568,7 @@ https://www.rfc1437.de/2007/01/11/studivz-gegendarstellung-per-defacement-update/ - 2026-03-03T16:51:44.000Z + 2026-03-03T16:51:44.784Z monthly 0.8 @@ -37388,7 +37577,7 @@ https://www.rfc1437.de/2007/01/11/tappt-blu-ray-in-die-anti-porno-falle/ - 2026-03-03T16:51:49.000Z + 2026-03-03T16:51:49.174Z monthly 0.8 @@ -37397,7 +37586,7 @@ https://www.rfc1437.de/2007/01/11/zwei-programmierstellen-fuer-den-bundestrojaner/ - 2026-03-03T16:51:53.000Z + 2026-03-03T16:51:53.673Z monthly 0.8 @@ -37406,7 +37595,7 @@ https://www.rfc1437.de/2007/01/10/fab-home/ - 2026-03-03T16:51:57.000Z + 2026-03-03T16:51:57.592Z monthly 0.8 @@ -37415,7 +37604,7 @@ https://www.rfc1437.de/2007/01/10/geexbox-ushare-upnp-a-v-media-server-homepage/ - 2026-03-03T16:52:02.000Z + 2026-03-03T16:52:02.397Z monthly 0.8 @@ -37424,7 +37613,7 @@ https://www.rfc1437.de/2007/01/10/magnatune-free-mp3-music-and-music-licensing/ - 2026-03-03T16:52:07.000Z + 2026-03-03T16:52:07.266Z monthly 0.8 @@ -37433,7 +37622,7 @@ https://www.rfc1437.de/2007/01/10/need-a-painter/ - 2026-03-07T21:12:54.000Z + 2026-03-07T21:12:54.407Z monthly 0.8 @@ -37442,7 +37631,7 @@ https://www.rfc1437.de/2007/01/10/reprap/ - 2026-03-03T16:52:14.000Z + 2026-03-03T16:52:14.730Z monthly 0.8 @@ -37451,7 +37640,7 @@ https://www.rfc1437.de/2007/01/10/towboat/ - 2026-03-07T21:12:57.000Z + 2026-03-07T21:12:57.090Z monthly 0.8 @@ -37460,7 +37649,7 @@ https://www.rfc1437.de/2007/01/10/wikipedia-skins/ - 2026-03-03T16:52:22.000Z + 2026-03-03T16:52:22.186Z monthly 0.8 @@ -37469,7 +37658,7 @@ https://www.rfc1437.de/2007/01/09/correo-a-new-mail-client-for-os-x/ - 2026-03-03T16:52:26.000Z + 2026-03-03T16:52:26.052Z monthly 0.8 @@ -37478,7 +37667,7 @@ https://www.rfc1437.de/2007/01/09/if-you-don-t-have-the-balls-to-be-hated-then-you/ - 2026-03-07T21:13:00.000Z + 2026-03-07T21:13:00.239Z monthly 0.8 @@ -37487,7 +37676,7 @@ https://www.rfc1437.de/2007/01/09/kinderpornografie-im-internet-fahnder/ - 2026-03-03T16:52:36.000Z + 2026-03-03T16:52:36.220Z monthly 0.8 @@ -37496,7 +37685,7 @@ https://www.rfc1437.de/2007/01/08/chaostables-ideas-for-firewalling/ - 2026-03-03T16:52:40.000Z + 2026-03-03T16:52:40.649Z monthly 0.8 @@ -37505,7 +37694,7 @@ https://www.rfc1437.de/2007/01/08/free-will-now-you-have-it-now-you-don-t/ - 2026-03-07T21:13:01.000Z + 2026-03-07T21:13:01.256Z monthly 0.8 @@ -37514,7 +37703,7 @@ https://www.rfc1437.de/2007/01/08/look-around-you/ - 2026-03-03T16:52:49.000Z + 2026-03-03T16:52:49.535Z monthly 0.8 @@ -37523,7 +37712,7 @@ https://www.rfc1437.de/2007/01/08/max-macintosh-audio-for-os-x/ - 2026-03-03T16:52:54.000Z + 2026-03-03T16:52:54.060Z monthly 0.8 @@ -37532,7 +37721,7 @@ https://www.rfc1437.de/2007/01/08/momofuku-ando/ - 2026-03-03T16:52:57.000Z + 2026-03-03T16:52:57.959Z monthly 0.8 @@ -37541,7 +37730,7 @@ https://www.rfc1437.de/2007/01/08/nokia-n800-is-now-public-available/ - 2026-03-03T16:53:02.000Z + 2026-03-03T16:53:02.364Z monthly 0.8 @@ -37550,7 +37739,7 @@ https://www.rfc1437.de/2007/01/08/ophcrack/ - 2026-03-03T16:53:06.000Z + 2026-03-03T16:53:06.262Z monthly 0.8 @@ -37559,7 +37748,7 @@ https://www.rfc1437.de/2007/01/08/second-life-goes-open-source/ - 2026-03-03T16:53:10.000Z + 2026-03-03T16:53:10.207Z monthly 0.8 @@ -37568,7 +37757,7 @@ https://www.rfc1437.de/2007/01/08/skype-fuer-das-nokia-tablet/ - 2026-03-03T16:53:15.000Z + 2026-03-03T16:53:15.202Z monthly 0.8 @@ -37577,7 +37766,7 @@ https://www.rfc1437.de/2007/01/08/what-really-happened-on-mars-authoritative-account/ - 2026-03-03T16:53:19.000Z + 2026-03-03T16:53:19.105Z monthly 0.8 @@ -37586,7 +37775,7 @@ https://www.rfc1437.de/2007/01/04/gwup-willkommen-bei-den-skeptikern/ - 2026-03-03T16:53:23.000Z + 2026-03-03T16:53:23.014Z monthly 0.8 @@ -37595,7 +37784,7 @@ https://www.rfc1437.de/2007/01/04/health-of-brazilian-rainforest-depends-on-dust/ - 2026-03-07T21:13:04.000Z + 2026-03-07T21:13:04.396Z monthly 0.8 @@ -37604,7 +37793,7 @@ https://www.rfc1437.de/2007/01/03/amazon-mystery-pricing-of-books/ - 2026-03-03T16:53:31.000Z + 2026-03-03T16:53:31.507Z monthly 0.8 @@ -37613,7 +37802,7 @@ https://www.rfc1437.de/2007/01/03/der-vrs-foerdert-minderjaehrige-raucher/ - 2026-03-03T16:53:36.000Z + 2026-03-03T16:53:36.080Z monthly 0.8 @@ -37622,7 +37811,7 @@ https://www.rfc1437.de/2007/01/03/fbi-workers-saw-prisoner-abuse-at-guantanamo/ - 2026-03-07T21:13:05.000Z + 2026-03-07T21:13:05.496Z monthly 0.8 @@ -37631,7 +37820,7 @@ https://www.rfc1437.de/2007/01/03/pegasus-fliegt-nicht-mehr/ - 2026-03-03T16:53:45.000Z + 2026-03-03T16:53:45.493Z monthly 0.8 @@ -37640,7 +37829,7 @@ https://www.rfc1437.de/2007/01/03/soso-2007/ - 2026-03-03T16:53:48.000Z + 2026-03-03T16:53:48.927Z monthly 0.8 @@ -37649,7 +37838,7 @@ https://www.rfc1437.de/2006/12/29/cutmp3/ - 2026-03-03T16:53:52.000Z + 2026-03-03T16:53:52.883Z monthly 0.8 @@ -37658,7 +37847,7 @@ https://www.rfc1437.de/2006/12/29/dallas-food-what-s-noka-worth-part-1/ - 2026-03-03T16:53:57.000Z + 2026-03-03T16:53:57.893Z monthly 0.8 @@ -37667,7 +37856,7 @@ https://www.rfc1437.de/2006/12/29/how-old-is-the-grand-canyon-park-service-won-t-say/ - 2026-03-03T16:54:02.000Z + 2026-03-03T16:54:02.334Z monthly 0.8 @@ -37676,7 +37865,7 @@ https://www.rfc1437.de/2006/12/28/pushtunwali-honour-among-them/ - 2026-03-03T16:54:06.000Z + 2026-03-03T16:54:06.726Z monthly 0.8 @@ -37685,7 +37874,7 @@ https://www.rfc1437.de/2006/12/28/sleek/ - 2026-03-03T16:54:11.000Z + 2026-03-03T16:54:11.153Z monthly 0.8 @@ -37694,7 +37883,7 @@ https://www.rfc1437.de/2006/12/27/der-grosse-bruder-im-privaten-computer/ - 2026-03-03T16:54:15.000Z + 2026-03-03T16:54:15.184Z monthly 0.8 @@ -37703,7 +37892,7 @@ https://www.rfc1437.de/2006/12/23/billy-s-band-clap-hands-live-at-the-6th-russian/ - 2026-03-07T21:13:08.000Z + 2026-03-07T21:13:08.436Z monthly 0.8 @@ -37712,7 +37901,7 @@ https://www.rfc1437.de/2006/12/15/bildzeitung-erscheint-in-second-life/ - 2026-03-03T16:54:24.000Z + 2026-03-03T16:54:24.548Z monthly 0.8 @@ -37721,7 +37910,7 @@ https://www.rfc1437.de/2006/12/15/google-pagerank-algorithm/ - 2026-03-03T16:54:28.000Z + 2026-03-03T16:54:28.450Z monthly 0.8 @@ -37730,7 +37919,7 @@ https://www.rfc1437.de/2006/12/15/mysql-quietly-drops-support-for-most-linux/ - 2026-03-03T16:54:33.000Z + 2026-03-03T16:54:33.679Z monthly 0.8 @@ -37739,7 +37928,7 @@ https://www.rfc1437.de/2006/12/15/olympische-abmahnung-saftblog-gibt-auf/ - 2026-03-03T16:54:38.000Z + 2026-03-03T16:54:38.668Z monthly 0.8 @@ -37748,7 +37937,7 @@ https://www.rfc1437.de/2006/12/15/real-world-passwords/ - 2026-03-03T16:54:43.000Z + 2026-03-03T16:54:43.217Z monthly 0.8 @@ -37757,7 +37946,7 @@ https://www.rfc1437.de/2006/12/14/john-sore-his-afro-safety/ - 2026-03-07T21:13:09.000Z + 2026-03-07T21:13:09.050Z monthly 0.8 @@ -37766,7 +37955,7 @@ https://www.rfc1437.de/2006/12/14/man-with-no-pulse-considered-a-medical/ - 2026-03-03T16:54:51.000Z + 2026-03-03T16:54:51.252Z monthly 0.8 @@ -37775,7 +37964,7 @@ https://www.rfc1437.de/2006/12/13/ajp-wsgi/ - 2026-03-03T16:54:56.000Z + 2026-03-03T16:54:56.001Z monthly 0.8 @@ -37784,7 +37973,7 @@ https://www.rfc1437.de/2006/12/13/eu-parlament-stimmt-fuer-liberalisierung-der/ - 2026-03-03T16:55:01.000Z + 2026-03-03T16:55:01.436Z monthly 0.8 @@ -37793,7 +37982,7 @@ https://www.rfc1437.de/2006/12/13/libsecondlife-java/ - 2026-03-03T16:55:05.000Z + 2026-03-03T16:55:05.386Z monthly 0.8 @@ -37802,7 +37991,7 @@ https://www.rfc1437.de/2006/12/13/object-debugger/ - 2026-03-03T16:55:09.000Z + 2026-03-03T16:55:09.864Z monthly 0.8 @@ -37811,7 +38000,7 @@ https://www.rfc1437.de/2006/12/13/retired-from-security-php-net/ - 2026-03-07T21:13:12.000Z + 2026-03-07T21:13:12.015Z monthly 0.8 @@ -37820,7 +38009,7 @@ https://www.rfc1437.de/2006/12/11/bgh-verbietet-online-durchsuchung-von/ - 2026-03-03T16:55:19.000Z + 2026-03-03T16:55:19.353Z monthly 0.8 @@ -37829,7 +38018,7 @@ https://www.rfc1437.de/2006/12/11/map-of-the-internet/ - 2026-03-03T16:55:23.000Z + 2026-03-03T16:55:23.274Z monthly 0.8 @@ -37838,7 +38027,7 @@ https://www.rfc1437.de/2006/12/11/schaeuble-internet-ist-fernuniversitaet-und/ - 2026-03-03T16:55:28.000Z + 2026-03-03T16:55:28.230Z monthly 0.8 @@ -37847,7 +38036,7 @@ https://www.rfc1437.de/2006/12/07/fliessend-wasser-auf-dem-mars/ - 2026-03-03T16:55:32.000Z + 2026-03-03T16:55:32.281Z monthly 0.8 @@ -37856,7 +38045,7 @@ https://www.rfc1437.de/2006/12/07/online-durchsuchung-von-pcs-durch-strafverfolger/ - 2026-03-03T16:55:37.000Z + 2026-03-03T16:55:37.842Z monthly 0.8 @@ -37865,7 +38054,7 @@ https://www.rfc1437.de/2006/12/07/putziges-aus-der-blogosphaere/ - 2026-03-03T16:55:41.000Z + 2026-03-03T16:55:41.816Z monthly 0.8 @@ -37874,7 +38063,7 @@ https://www.rfc1437.de/2006/12/06/angeblich-200-000-deutschsprachige/ - 2026-03-03T16:55:46.000Z + 2026-03-03T16:55:46.801Z monthly 0.8 @@ -37883,7 +38072,7 @@ https://www.rfc1437.de/2006/12/06/crossroads/ - 2026-03-03T16:55:50.000Z + 2026-03-03T16:55:50.251Z monthly 0.8 @@ -37892,7 +38081,7 @@ https://www.rfc1437.de/2006/12/06/swivel-aims-to-become-the-internet-archive-for/ - 2026-03-03T16:55:55.000Z + 2026-03-03T16:55:55.257Z monthly 0.8 @@ -37901,7 +38090,7 @@ https://www.rfc1437.de/2006/12/06/top-10-marijuana-myths/ - 2026-03-08T14:23:51.000Z + 2026-03-08T14:23:51.514Z monthly 0.8 @@ -37910,7 +38099,7 @@ https://www.rfc1437.de/2006/12/05/ball-gegen-bahn-1-zu-0/ - 2026-03-03T16:56:03.000Z + 2026-03-03T16:56:03.151Z monthly 0.8 @@ -37919,7 +38108,7 @@ https://www.rfc1437.de/2006/12/05/giving-it-away/ - 2026-03-03T16:56:07.000Z + 2026-03-03T16:56:07.069Z monthly 0.8 @@ -37928,7 +38117,7 @@ https://www.rfc1437.de/2006/12/05/mecklenburg-vorpommern-bleibt-auf-grossteil-der/ - 2026-03-03T16:56:12.000Z + 2026-03-03T16:56:12.549Z monthly 0.8 @@ -37937,7 +38126,7 @@ https://www.rfc1437.de/2006/12/05/musicovery-interactive-webradio/ - 2026-03-03T16:56:16.000Z + 2026-03-03T16:56:16.572Z monthly 0.8 @@ -37946,7 +38135,7 @@ https://www.rfc1437.de/2006/12/05/you-cannot-rely-on-javascript-being-available/ - 2026-03-03T16:56:20.000Z + 2026-03-03T16:56:20.959Z monthly 0.8 @@ -37955,7 +38144,7 @@ https://www.rfc1437.de/2006/12/04/database-test-dual-intel-xeon-5160-6-6/ - 2026-03-03T16:56:25.000Z + 2026-03-03T16:56:25.895Z monthly 0.8 @@ -37964,7 +38153,7 @@ https://www.rfc1437.de/2006/12/04/internationale-suche-nach-hamburgs-ex-senator/ - 2026-03-03T16:56:30.000Z + 2026-03-03T16:56:30.298Z monthly 0.8 @@ -37973,7 +38162,7 @@ https://www.rfc1437.de/2006/12/04/man-kriegt-es-ueberall/ - 2026-03-03T16:56:35.000Z + 2026-03-03T16:56:35.080Z monthly 0.8 @@ -37982,7 +38171,7 @@ https://www.rfc1437.de/2006/12/04/richard-dawkins/ - 2026-03-03T16:56:38.000Z + 2026-03-03T16:56:38.963Z monthly 0.8 @@ -37991,7 +38180,7 @@ https://www.rfc1437.de/2006/12/04/sieben-milliarden-fuer-it-projekt-der-bundeswehr/ - 2026-03-03T16:56:43.000Z + 2026-03-03T16:56:43.867Z monthly 0.8 @@ -38000,7 +38189,7 @@ https://www.rfc1437.de/2006/12/04/siemens-manager-packt-im-korruptionsskandal-aus/ - 2026-03-03T16:56:48.000Z + 2026-03-03T16:56:48.855Z monthly 0.8 @@ -38009,7 +38198,7 @@ https://www.rfc1437.de/2006/12/04/the-post-rapture-post-send-messages-to-loved-ones/ - 2026-03-07T21:13:17.000Z + 2026-03-07T21:13:17.237Z monthly 0.8 @@ -38018,7 +38207,7 @@ https://www.rfc1437.de/2006/12/04/verfassungssschuetzer-wuerde-folter-gestaendnisse/ - 2026-03-03T16:56:58.000Z + 2026-03-03T16:56:58.227Z monthly 0.8 @@ -38027,7 +38216,7 @@ https://www.rfc1437.de/2006/12/01/adobe-photoshop-textures-and-patterns-tutorials/ - 2026-03-03T16:57:02.000Z + 2026-03-03T16:57:02.116Z monthly 0.8 @@ -38036,7 +38225,7 @@ https://www.rfc1437.de/2006/12/01/satan-and-the-damned-schocken-kunden/ - 2026-03-03T16:57:06.000Z + 2026-03-03T16:57:06.525Z monthly 0.8 @@ -38045,7 +38234,7 @@ https://www.rfc1437.de/2006/12/01/startling-discovery-the-first-human-ritual/ - 2026-03-03T16:57:10.000Z + 2026-03-03T16:57:10.451Z monthly 0.8 @@ -38054,7 +38243,7 @@ https://www.rfc1437.de/2006/12/01/vrml-x3d-und-3d-praesentationen/ - 2026-03-03T16:57:14.000Z + 2026-03-03T16:57:14.908Z monthly 0.8 @@ -38063,7 +38252,7 @@ https://www.rfc1437.de/2006/11/30/antike-feinmechanik/ - 2026-03-03T16:57:19.000Z + 2026-03-03T16:57:19.417Z monthly 0.8 @@ -38072,7 +38261,7 @@ https://www.rfc1437.de/2006/11/30/firefox/ - 2026-03-03T16:57:24.000Z + 2026-03-03T16:57:24.289Z monthly 0.8 @@ -38081,7 +38270,7 @@ https://www.rfc1437.de/2006/11/30/kabinett-beschliesst-rente-mit-67/ - 2026-03-03T16:57:29.000Z + 2026-03-03T16:57:29.139Z monthly 0.8 @@ -38090,7 +38279,7 @@ https://www.rfc1437.de/2006/11/30/sofanet-startet-nachbarschafts-wlan/ - 2026-03-03T16:57:33.000Z + 2026-03-03T16:57:33.400Z monthly 0.8 @@ -38099,7 +38288,7 @@ https://www.rfc1437.de/2006/11/30/stop-motion-piano-and-drums/ - 2026-03-07T21:13:18.000Z + 2026-03-07T21:13:18.162Z monthly 0.8 @@ -38108,7 +38297,7 @@ https://www.rfc1437.de/2006/11/30/zensurvorwuerfe-gegen-eu-bericht-zur-it-zukunft/ - 2026-03-03T16:57:41.000Z + 2026-03-03T16:57:41.826Z monthly 0.8 @@ -38117,7 +38306,7 @@ https://www.rfc1437.de/2006/11/29/3d-game-programming-all-in-one-with-cdrom-course/ - 2026-03-03T16:57:46.000Z + 2026-03-03T16:57:46.261Z monthly 0.8 @@ -38126,7 +38315,7 @@ https://www.rfc1437.de/2006/11/29/a-leap-back/ - 2026-03-03T16:57:50.000Z + 2026-03-03T16:57:50.220Z monthly 0.8 @@ -38135,7 +38324,7 @@ https://www.rfc1437.de/2006/11/29/the-official-quark-website/ - 2026-03-03T16:57:54.000Z + 2026-03-03T16:57:54.244Z monthly 0.8 @@ -38144,7 +38333,7 @@ https://www.rfc1437.de/2006/11/28/10-minute-mail/ - 2026-03-03T16:57:58.000Z + 2026-03-03T16:57:58.721Z monthly 0.8 @@ -38153,7 +38342,7 @@ https://www.rfc1437.de/2006/11/28/4-jahre-bloggen/ - 2026-03-03T16:58:02.000Z + 2026-03-03T16:58:02.661Z monthly 0.8 @@ -38162,7 +38351,7 @@ https://www.rfc1437.de/2006/11/28/kopierschutz-von-microsofts-zune-geknackt/ - 2026-03-03T16:58:07.000Z + 2026-03-03T16:58:07.105Z monthly 0.8 @@ -38171,7 +38360,7 @@ https://www.rfc1437.de/2006/11/27/3d-atlas-gaia-nicht-mehr-verfuegbar/ - 2026-03-03T16:58:11.000Z + 2026-03-03T16:58:11.574Z monthly 0.8 @@ -38180,7 +38369,7 @@ https://www.rfc1437.de/2006/11/27/hexfiend/ - 2026-03-03T16:58:15.000Z + 2026-03-03T16:58:15.104Z monthly 0.8 @@ -38189,7 +38378,7 @@ https://www.rfc1437.de/2006/11/27/peinliche-pleite-von-axel-schulz/ - 2026-03-03T16:58:19.000Z + 2026-03-03T16:58:19.101Z monthly 0.8 @@ -38198,7 +38387,7 @@ https://www.rfc1437.de/2006/11/27/rueckkehr-der-paper-disk-256-gbyte-auf-a4-blatt/ - 2026-03-03T16:58:24.000Z + 2026-03-03T16:58:24.153Z monthly 0.8 @@ -38207,7 +38396,7 @@ https://www.rfc1437.de/2006/11/27/uebereifrige-spam-blockliste-sperrt-server4you/ - 2026-03-03T16:58:28.000Z + 2026-03-03T16:58:28.655Z monthly 0.8 @@ -38216,7 +38405,7 @@ https://www.rfc1437.de/2006/11/27/wenn-die-anti-korruptionsabteilung-bei-der/ - 2026-03-03T16:58:33.000Z + 2026-03-03T16:58:33.238Z monthly 0.8 @@ -38225,7 +38414,7 @@ https://www.rfc1437.de/2006/11/24/eu-darf-bankdaten-nicht-an-die-usa-uebermitteln/ - 2026-03-03T16:58:37.000Z + 2026-03-03T16:58:37.901Z monthly 0.8 @@ -38234,7 +38423,7 @@ https://www.rfc1437.de/2006/11/24/fairgame/ - 2026-03-03T16:58:42.000Z + 2026-03-03T16:58:42.396Z monthly 0.8 @@ -38243,7 +38432,7 @@ https://www.rfc1437.de/2006/11/24/gefaelschte-waren-gefaehrden-second-life/ - 2026-03-03T16:58:48.000Z + 2026-03-03T16:58:48.405Z monthly 0.8 @@ -38252,7 +38441,7 @@ https://www.rfc1437.de/2006/11/24/m8-a-missed-opportunity/ - 2026-03-03T16:58:53.000Z + 2026-03-03T16:58:53.117Z monthly 0.8 @@ -38261,7 +38450,7 @@ https://www.rfc1437.de/2006/11/24/mannesmann-prozess-vor-dem-aus/ - 2026-03-03T16:58:57.000Z + 2026-03-03T16:58:57.873Z monthly 0.8 @@ -38270,7 +38459,7 @@ https://www.rfc1437.de/2006/11/24/studivz-700-stalker-und-der-datenschutz/ - 2026-03-03T16:59:02.000Z + 2026-03-03T16:59:02.965Z monthly 0.8 @@ -38279,7 +38468,7 @@ https://www.rfc1437.de/2006/11/23/owl-content-2/ - 2026-03-03T16:59:07.000Z + 2026-03-03T16:59:07.884Z monthly 0.8 @@ -38288,7 +38477,7 @@ https://www.rfc1437.de/2006/11/23/tausende-strafverfahren-gegen-internet/ - 2026-03-03T16:59:13.000Z + 2026-03-03T16:59:13.156Z monthly 0.8 @@ -38297,7 +38486,7 @@ https://www.rfc1437.de/2006/11/22/flickr-camera-finder/ - 2026-03-03T16:59:17.000Z + 2026-03-03T16:59:17.290Z monthly 0.8 @@ -38306,7 +38495,7 @@ https://www.rfc1437.de/2006/11/22/kontrollierte-heroinabgabe-vor-dem-aus/ - 2026-03-03T16:59:22.000Z + 2026-03-03T16:59:22.823Z monthly 0.8 @@ -38315,7 +38504,7 @@ https://www.rfc1437.de/2006/11/22/sap-network-use/ - 2026-03-03T16:59:26.000Z + 2026-03-03T16:59:26.371Z monthly 0.8 @@ -38324,7 +38513,7 @@ https://www.rfc1437.de/2006/11/22/the-rolex-awards-a-cheap-technique-for-food/ - 2026-03-03T16:59:31.000Z + 2026-03-03T16:59:31.951Z monthly 0.8 @@ -38333,7 +38522,7 @@ https://www.rfc1437.de/2006/11/22/united-states-patent-application-0060242178/ - 2026-03-03T16:59:38.000Z + 2026-03-03T16:59:38.610Z monthly 0.8 @@ -38342,7 +38531,7 @@ https://www.rfc1437.de/2006/11/21/3d-game-textures-create-professional-game-art/ - 2026-03-03T16:59:43.000Z + 2026-03-03T16:59:43.470Z monthly 0.8 @@ -38351,7 +38540,7 @@ https://www.rfc1437.de/2006/11/21/coccinella-jabber-client-with-integrated/ - 2026-03-03T16:59:47.000Z + 2026-03-03T16:59:47.699Z monthly 0.8 @@ -38360,7 +38549,7 @@ https://www.rfc1437.de/2006/11/21/forderungen-nach-verbot-von-killerspielen-werden/ - 2026-03-03T16:59:53.000Z + 2026-03-03T16:59:53.648Z monthly 0.8 @@ -38369,7 +38558,7 @@ https://www.rfc1437.de/2006/11/21/the-dark-side-of-game-texturing-books-david/ - 2026-03-03T16:59:58.000Z + 2026-03-03T16:59:58.427Z monthly 0.8 @@ -38378,7 +38567,7 @@ https://www.rfc1437.de/2006/11/20/cracked-it/ - 2026-03-03T17:00:02.000Z + 2026-03-03T17:00:02.815Z monthly 0.8 @@ -38387,7 +38576,7 @@ https://www.rfc1437.de/2006/11/20/getting-cute-with-the-gpl/ - 2026-03-07T21:13:18.000Z + 2026-03-07T21:13:18.947Z monthly 0.8 @@ -38396,7 +38585,7 @@ https://www.rfc1437.de/2006/11/20/microsoft-chef-linux-nutzt-unser-geistiges/ - 2026-03-03T17:00:11.000Z + 2026-03-03T17:00:11.303Z monthly 0.8 @@ -38405,7 +38594,7 @@ https://www.rfc1437.de/2006/11/20/online-preisvergleich-fuer-zahnarztpatienten/ - 2026-03-03T17:00:15.000Z + 2026-03-03T17:00:15.211Z monthly 0.8 @@ -38414,7 +38603,7 @@ https://www.rfc1437.de/2006/11/20/schiesserei-an-schule-in-emsdetten/ - 2026-03-03T17:00:19.000Z + 2026-03-03T17:00:19.247Z monthly 0.8 @@ -38423,7 +38612,7 @@ https://www.rfc1437.de/2006/11/20/stopping-spam-with-the-anti-spam-smtp-proxy-assp/ - 2026-03-03T17:00:23.000Z + 2026-03-03T17:00:23.452Z monthly 0.8 @@ -38432,7 +38621,7 @@ https://www.rfc1437.de/2006/11/16/if-i-dig-a-very-deep-hole-where-i-go-to-stop/ - 2026-03-03T17:00:27.000Z + 2026-03-03T17:00:27.679Z monthly 0.8 @@ -38441,7 +38630,7 @@ https://www.rfc1437.de/2006/11/16/the-zfone-project/ - 2026-03-03T17:00:31.000Z + 2026-03-03T17:00:31.533Z monthly 0.8 @@ -38450,7 +38639,7 @@ https://www.rfc1437.de/2006/11/15/e-mail-konto-nur-noch-gegen-personalausweis/ - 2026-03-03T17:00:36.000Z + 2026-03-03T17:00:36.744Z monthly 0.8 @@ -38459,7 +38648,7 @@ https://www.rfc1437.de/2006/11/15/studivz-der-hitler-screenshot-und-der-kaeufer/ - 2026-03-03T17:00:41.000Z + 2026-03-03T17:00:41.337Z monthly 0.8 @@ -38468,7 +38657,7 @@ https://www.rfc1437.de/2006/11/13/der-lotto-zwangsproxy/ - 2026-03-03T17:00:46.000Z + 2026-03-03T17:00:46.112Z monthly 0.8 @@ -38477,7 +38666,7 @@ https://www.rfc1437.de/2006/11/13/e-voting/ - 2026-03-03T17:00:50.000Z + 2026-03-03T17:00:50.141Z monthly 0.8 @@ -38486,7 +38675,7 @@ https://www.rfc1437.de/2006/11/13/freie-waehler-fuehlen-sich-erpresst-koch-weist/ - 2026-03-03T17:00:55.000Z + 2026-03-03T17:00:55.268Z monthly 0.8 @@ -38495,7 +38684,7 @@ https://www.rfc1437.de/2006/11/13/merkel-plaediert-fuer-mehr-ueberwachung-trotz/ - 2026-03-03T17:00:59.000Z + 2026-03-03T17:00:59.771Z monthly 0.8 @@ -38504,7 +38693,7 @@ https://www.rfc1437.de/2006/11/10/guidelines-for-platonic-friendship/ - 2026-03-08T14:23:59.000Z + 2026-03-08T14:23:59.271Z monthly 0.8 @@ -38513,7 +38702,7 @@ https://www.rfc1437.de/2006/11/10/jmri-defense-our-story-so-far/ - 2026-03-03T17:01:07.000Z + 2026-03-03T17:01:07.689Z monthly 0.8 @@ -38522,7 +38711,7 @@ https://www.rfc1437.de/2006/11/10/richter-staerken-datenschutz-fuer-versicherte/ - 2026-03-03T17:01:12.000Z + 2026-03-03T17:01:12.181Z monthly 0.8 @@ -38531,7 +38720,7 @@ https://www.rfc1437.de/2006/11/09/basso-zu-discovery/ - 2026-03-03T17:01:16.000Z + 2026-03-03T17:01:16.725Z monthly 0.8 @@ -38540,7 +38729,7 @@ https://www.rfc1437.de/2006/11/09/croatia-plitvicka-jezera-national-park-waterfalls/ - 2026-03-03T17:01:20.000Z + 2026-03-03T17:01:20.829Z monthly 0.8 @@ -38549,7 +38738,7 @@ https://www.rfc1437.de/2006/11/09/innenminister-schuenemann-t-mobile-behindert/ - 2026-03-03T17:01:25.000Z + 2026-03-03T17:01:25.414Z monthly 0.8 @@ -38558,7 +38747,7 @@ https://www.rfc1437.de/2006/11/09/teh-internets/ - 2026-03-03T17:01:29.000Z + 2026-03-03T17:01:29.526Z monthly 0.8 @@ -38567,7 +38756,7 @@ https://www.rfc1437.de/2006/11/09/woo-math-steiner-and-theosophical-math/ - 2026-03-03T17:01:33.000Z + 2026-03-03T17:01:33.808Z monthly 0.8 @@ -38576,7 +38765,7 @@ https://www.rfc1437.de/2006/11/08/cssedit/ - 2026-03-03T17:01:38.000Z + 2026-03-03T17:01:38.061Z monthly 0.8 @@ -38585,7 +38774,7 @@ https://www.rfc1437.de/2006/11/08/die-mythen-der-arbeitgeber/ - 2026-03-03T17:01:42.000Z + 2026-03-03T17:01:42.199Z monthly 0.8 @@ -38594,7 +38783,7 @@ https://www.rfc1437.de/2006/11/08/fefe-s-blog/ - 2026-03-03T17:01:46.000Z + 2026-03-03T17:01:46.345Z monthly 0.8 @@ -38603,7 +38792,7 @@ https://www.rfc1437.de/2006/11/08/jumpbox/ - 2026-03-03T17:01:50.000Z + 2026-03-03T17:01:50.366Z monthly 0.8 @@ -38612,7 +38801,7 @@ https://www.rfc1437.de/2006/11/08/perian-the-swiss-army-knife-of-quicktime/ - 2026-03-03T17:01:54.000Z + 2026-03-03T17:01:54.417Z monthly 0.8 @@ -38621,7 +38810,7 @@ https://www.rfc1437.de/2006/11/08/statistiken-ueber-copyright-verstoesse-sind/ - 2026-03-03T17:01:58.000Z + 2026-03-03T17:01:58.342Z monthly 0.8 @@ -38630,7 +38819,7 @@ https://www.rfc1437.de/2006/11/08/studie-jeder-vierte-deutsche-wuenscht-sich-eine/ - 2026-03-03T17:02:03.000Z + 2026-03-03T17:02:03.387Z monthly 0.8 @@ -38639,7 +38828,7 @@ https://www.rfc1437.de/2006/11/07/datenschuetzer-spricht-offen-vom-weg-in-den/ - 2026-03-03T17:02:07.000Z + 2026-03-03T17:02:07.824Z monthly 0.8 @@ -38648,7 +38837,7 @@ https://www.rfc1437.de/2006/11/07/efficient-javascript/ - 2026-03-03T17:02:11.000Z + 2026-03-03T17:02:11.301Z monthly 0.8 @@ -38657,7 +38846,7 @@ https://www.rfc1437.de/2006/11/07/fission-for-mac-os-x/ - 2026-03-03T17:02:15.000Z + 2026-03-03T17:02:15.311Z monthly 0.8 @@ -38666,7 +38855,7 @@ https://www.rfc1437.de/2006/11/07/inches/ - 2026-03-07T21:13:26.000Z + 2026-03-07T21:13:26.222Z monthly 0.8 @@ -38675,7 +38864,7 @@ https://www.rfc1437.de/2006/11/07/light-zone/ - 2026-03-03T17:02:22.000Z + 2026-03-03T17:02:22.779Z monthly 0.8 @@ -38684,7 +38873,7 @@ https://www.rfc1437.de/2006/11/07/personalauswahl-per-gesichtsanalyse/ - 2026-03-03T17:02:27.000Z + 2026-03-03T17:02:27.746Z monthly 0.8 @@ -38693,7 +38882,7 @@ https://www.rfc1437.de/2006/11/07/urteil-t-online-darf-verbindungsdaten-nicht/ - 2026-03-03T17:02:33.000Z + 2026-03-03T17:02:33.155Z monthly 0.8 @@ -38702,7 +38891,7 @@ https://www.rfc1437.de/2006/11/07/via-schliesst-treiberquellen/ - 2026-03-03T17:02:37.000Z + 2026-03-03T17:02:37.356Z monthly 0.8 @@ -38711,7 +38900,7 @@ https://www.rfc1437.de/2006/11/07/world-mysteries-voynich-manuscript/ - 2026-03-07T21:13:27.000Z + 2026-03-07T21:13:27.276Z monthly 0.8 @@ -38720,7 +38909,7 @@ https://www.rfc1437.de/2006/11/06/ballmer-invites-patent-talks-with-competing-linux/ - 2026-03-03T17:02:46.000Z + 2026-03-03T17:02:46.706Z monthly 0.8 @@ -38729,7 +38918,7 @@ https://www.rfc1437.de/2006/11/06/bill-gates-warnt-vor-digitaler-spaltung-in/ - 2026-03-03T17:02:52.000Z + 2026-03-03T17:02:52.080Z monthly 0.8 @@ -38738,7 +38927,7 @@ https://www.rfc1437.de/2006/11/06/brandenburg-neonazis-schlagen-journalistin-nieder/ - 2026-03-03T17:02:58.000Z + 2026-03-03T17:02:58.027Z monthly 0.8 @@ -38747,7 +38936,7 @@ https://www.rfc1437.de/2006/11/06/kuendigungsschutz-glos-plaene-in-der-kritik/ - 2026-03-03T17:03:03.000Z + 2026-03-03T17:03:03.769Z monthly 0.8 @@ -38756,7 +38945,7 @@ https://www.rfc1437.de/2006/11/06/millionen-europaeer-sassen-im-dunkeln/ - 2026-03-03T17:03:08.000Z + 2026-03-03T17:03:08.499Z monthly 0.8 @@ -38765,7 +38954,7 @@ https://www.rfc1437.de/2006/11/06/programming-in-color/ - 2026-03-03T17:03:12.000Z + 2026-03-03T17:03:12.809Z monthly 0.8 @@ -38774,7 +38963,7 @@ https://www.rfc1437.de/2006/11/06/torque-tge/ - 2026-03-03T17:03:17.000Z + 2026-03-03T17:03:17.048Z monthly 0.8 @@ -38783,7 +38972,7 @@ https://www.rfc1437.de/2006/11/03/britischer-angriff-auf-die-telekom/ - 2026-03-03T17:03:21.000Z + 2026-03-03T17:03:21.373Z monthly 0.8 @@ -38792,7 +38981,7 @@ https://www.rfc1437.de/2006/11/03/das-ende-von-second-life-bild-kommt/ - 2026-03-03T17:03:25.000Z + 2026-03-03T17:03:25.837Z monthly 0.8 @@ -38801,7 +38990,7 @@ https://www.rfc1437.de/2006/11/03/korrumpierte-pharma-forschung/ - 2026-03-03T17:03:30.000Z + 2026-03-03T17:03:30.331Z monthly 0.8 @@ -38810,7 +38999,7 @@ https://www.rfc1437.de/2006/11/03/man-removes-sharp-hand-tool-from-rear-at-gunpoint/ - 2026-03-03T17:03:35.000Z + 2026-03-03T17:03:35.300Z monthly 0.8 @@ -38819,7 +39008,7 @@ https://www.rfc1437.de/2006/11/03/thank-goodness-by-daniel-c-dennett/ - 2026-03-07T21:13:28.000Z + 2026-03-07T21:13:28.211Z monthly 0.8 @@ -38828,7 +39017,7 @@ https://www.rfc1437.de/2006/11/03/the-parable-of-the-two-programmers/ - 2026-03-07T21:13:29.000Z + 2026-03-07T21:13:29.013Z monthly 0.8 @@ -38837,7 +39026,7 @@ https://www.rfc1437.de/2006/11/03/with-microscope-and-tweezers-chronology/ - 2026-03-03T17:03:49.000Z + 2026-03-03T17:03:49.043Z monthly 0.8 @@ -38846,7 +39035,7 @@ https://www.rfc1437.de/2006/11/02/artists-in-metal-mark-ho/ - 2026-03-03T17:03:53.000Z + 2026-03-03T17:03:53.065Z monthly 0.8 @@ -38855,7 +39044,7 @@ https://www.rfc1437.de/2006/11/02/explosion-erschuettert-paypal-hauptquartier/ - 2026-03-03T17:03:57.000Z + 2026-03-03T17:03:57.317Z monthly 0.8 @@ -38864,7 +39053,7 @@ https://www.rfc1437.de/2006/11/02/geldscheine-loesen-sich-auf/ - 2026-03-03T17:04:01.000Z + 2026-03-03T17:04:01.864Z monthly 0.8 @@ -38873,7 +39062,7 @@ https://www.rfc1437.de/2006/11/02/jamendo-mach-die-ohren-auf/ - 2026-03-03T17:04:06.000Z + 2026-03-03T17:04:06.031Z monthly 0.8 @@ -38882,7 +39071,7 @@ https://www.rfc1437.de/2006/11/02/nasa-will-weltraumteleskop-hubble-doch-reparieren/ - 2026-03-03T17:04:10.000Z + 2026-03-03T17:04:10.451Z monthly 0.8 @@ -38891,7 +39080,7 @@ https://www.rfc1437.de/2006/11/02/the-c-is-efficient-language-fallacy/ - 2026-03-07T21:13:31.000Z + 2026-03-07T21:13:31.989Z monthly 0.8 @@ -38900,7 +39089,7 @@ https://www.rfc1437.de/2006/11/02/the-django-book/ - 2026-03-03T17:04:19.000Z + 2026-03-03T17:04:19.188Z monthly 0.8 @@ -38909,7 +39098,7 @@ https://www.rfc1437.de/2006/11/02/weniger-rechte-fuer-personalraete-im/ - 2026-03-03T17:04:23.000Z + 2026-03-03T17:04:23.306Z monthly 0.8 @@ -38918,7 +39107,7 @@ https://www.rfc1437.de/2006/11/02/world-s-smallest-fish-title-in-dispute-new-marine/ - 2026-03-07T21:13:33.000Z + 2026-03-07T21:13:33.065Z monthly 0.8 @@ -38927,7 +39116,7 @@ https://www.rfc1437.de/2006/10/31/charlie-s-diary-the-book-is-not-that-interesting/ - 2026-03-07T21:13:36.000Z + 2026-03-07T21:13:36.158Z monthly 0.8 @@ -38936,7 +39125,7 @@ https://www.rfc1437.de/2006/10/31/converting-pi-to-binary/ - 2026-03-07T21:13:37.000Z + 2026-03-07T21:13:37.088Z monthly 0.8 @@ -38945,7 +39134,7 @@ https://www.rfc1437.de/2006/10/31/electronic-voting-machines/ - 2026-03-07T21:13:39.000Z + 2026-03-07T21:13:39.976Z monthly 0.8 @@ -38954,7 +39143,7 @@ https://www.rfc1437.de/2006/10/31/leica-m8-review/ - 2026-03-03T17:04:45.000Z + 2026-03-03T17:04:45.168Z monthly 0.8 @@ -38963,7 +39152,7 @@ https://www.rfc1437.de/2006/10/31/sdu-wahlcomputer-von-niederlaendischen/ - 2026-03-03T17:04:50.000Z + 2026-03-03T17:04:50.176Z monthly 0.8 @@ -38972,7 +39161,7 @@ https://www.rfc1437.de/2006/10/31/six-word-stories-about-programming-languages/ - 2026-03-03T17:04:54.000Z + 2026-03-03T17:04:54.492Z monthly 0.8 @@ -38981,7 +39170,7 @@ https://www.rfc1437.de/2006/10/31/skandal-um-protestaktion-privater-krankenkassen/ - 2026-03-03T17:04:58.000Z + 2026-03-03T17:04:58.940Z monthly 0.8 @@ -38990,7 +39179,7 @@ https://www.rfc1437.de/2006/10/31/small-crimes-against-the-planet/ - 2026-03-07T21:13:43.000Z + 2026-03-07T21:13:43.148Z monthly 0.8 @@ -38999,7 +39188,7 @@ https://www.rfc1437.de/2006/10/31/staatsanwaltschaft-darf-gvu-nicht-bei/ - 2026-03-03T17:05:07.000Z + 2026-03-03T17:05:07.440Z monthly 0.8 @@ -39008,7 +39197,7 @@ https://www.rfc1437.de/2006/10/30/alice-and-bob/ - 2026-03-07T21:13:46.000Z + 2026-03-07T21:13:46.831Z monthly 0.8 @@ -39017,7 +39206,7 @@ https://www.rfc1437.de/2006/10/30/good-math-bad-math-pathological-programming/ - 2026-03-03T17:05:15.000Z + 2026-03-03T17:05:15.993Z monthly 0.8 @@ -39026,7 +39215,7 @@ https://www.rfc1437.de/2006/10/30/good-math-bad-math-prime-number-pathology-fractran/ - 2026-03-03T17:05:20.000Z + 2026-03-03T17:05:20.411Z monthly 0.8 @@ -39035,7 +39224,7 @@ https://www.rfc1437.de/2006/10/30/molecule-of-the-day-l-methamphetamine-would-you/ - 2026-03-03T17:05:24.000Z + 2026-03-03T17:05:24.916Z monthly 0.8 @@ -39044,7 +39233,7 @@ https://www.rfc1437.de/2006/10/30/push-push-push/ - 2026-03-03T17:05:28.000Z + 2026-03-03T17:05:28.861Z monthly 0.8 @@ -39053,7 +39242,7 @@ https://www.rfc1437.de/2006/10/30/websnapr/ - 2026-03-03T17:05:32.000Z + 2026-03-03T17:05:32.426Z monthly 0.8 @@ -39062,7 +39251,7 @@ https://www.rfc1437.de/2006/10/30/weichensteller-krank-bahnstrecke-stundenlang/ - 2026-03-03T17:05:37.000Z + 2026-03-03T17:05:37.030Z monthly 0.8 @@ -39071,7 +39260,7 @@ https://www.rfc1437.de/2006/10/27/bundesregierung-will-kundendaten-fuer-vorbeugende/ - 2026-03-03T17:05:42.000Z + 2026-03-03T17:05:42.544Z monthly 0.8 @@ -39080,7 +39269,7 @@ https://www.rfc1437.de/2006/10/27/der-wahlschrank/ - 2026-03-03T17:05:46.000Z + 2026-03-03T17:05:46.627Z monthly 0.8 @@ -39089,7 +39278,7 @@ https://www.rfc1437.de/2006/10/27/dubioser-verein-mahnt-massenhaft-ebay-haendler-ab/ - 2026-03-03T17:05:50.000Z + 2026-03-03T17:05:50.574Z monthly 0.8 @@ -39098,7 +39287,7 @@ https://www.rfc1437.de/2006/10/27/miss-congeniality/ - 2026-03-07T21:13:47.000Z + 2026-03-07T21:13:47.654Z monthly 0.8 @@ -39107,7 +39296,7 @@ https://www.rfc1437.de/2006/10/27/opengl-tools-for-serious-graphics-development/ - 2026-03-03T17:05:58.000Z + 2026-03-03T17:05:58.489Z monthly 0.8 @@ -39116,7 +39305,7 @@ https://www.rfc1437.de/2006/10/27/oracle-linux-uncovered/ - 2026-03-03T17:06:02.000Z + 2026-03-03T17:06:02.925Z monthly 0.8 @@ -39125,7 +39314,7 @@ https://www.rfc1437.de/2006/10/27/the-elephant-and-the-event-horizon/ - 2026-03-03T17:06:06.000Z + 2026-03-03T17:06:06.899Z monthly 0.8 @@ -39134,7 +39323,7 @@ https://www.rfc1437.de/2006/10/27/the-victorian-internet/ - 2026-03-03T17:06:10.000Z + 2026-03-03T17:06:10.991Z monthly 0.8 @@ -39143,7 +39332,7 @@ https://www.rfc1437.de/2006/10/25/analyse-von-spamthru/ - 2026-03-03T17:06:16.000Z + 2026-03-03T17:06:16.051Z monthly 0.8 @@ -39152,7 +39341,7 @@ https://www.rfc1437.de/2006/10/25/bericht-der-ccc-wahlbeobachtergruppe-von-der/ - 2026-03-03T17:06:20.000Z + 2026-03-03T17:06:20.499Z monthly 0.8 @@ -39161,7 +39350,7 @@ https://www.rfc1437.de/2006/10/25/elektrosmog-heisse-gespraeche/ - 2026-03-03T17:06:24.000Z + 2026-03-03T17:06:24.406Z monthly 0.8 @@ -39170,7 +39359,7 @@ https://www.rfc1437.de/2006/10/25/leg-wird-privatisiert/ - 2026-03-03T17:06:29.000Z + 2026-03-03T17:06:29.345Z monthly 0.8 @@ -39179,7 +39368,7 @@ https://www.rfc1437.de/2006/10/25/mac-os-x-leopard-mit-erweiterter-zugriffskontrolle/ - 2026-03-03T17:06:33.000Z + 2026-03-03T17:06:33.571Z monthly 0.8 @@ -39188,7 +39377,7 @@ https://www.rfc1437.de/2006/10/25/new-snapshot-tarballs-finally/ - 2026-03-03T17:06:37.000Z + 2026-03-03T17:06:37.538Z monthly 0.8 @@ -39197,7 +39386,7 @@ https://www.rfc1437.de/2006/10/24/error-message-your-password-must-be-at-least/ - 2026-03-03T17:06:42.000Z + 2026-03-03T17:06:42.403Z monthly 0.8 @@ -39206,7 +39395,7 @@ https://www.rfc1437.de/2006/10/24/koehler-stoppt-privatisierung-der-flugsicherung/ - 2026-03-03T17:06:47.000Z + 2026-03-03T17:06:47.707Z monthly 0.8 @@ -39215,7 +39404,7 @@ https://www.rfc1437.de/2006/10/24/ogoglio/ - 2026-03-03T17:06:51.000Z + 2026-03-03T17:06:51.306Z monthly 0.8 @@ -39224,7 +39413,7 @@ https://www.rfc1437.de/2006/10/24/pi/ - 2026-03-03T17:06:55.000Z + 2026-03-03T17:06:55.779Z monthly 0.8 @@ -39233,7 +39422,7 @@ https://www.rfc1437.de/2006/10/24/pressefreiheit-immer-mehr-bedroht/ - 2026-03-03T17:07:00.000Z + 2026-03-03T17:07:00.826Z monthly 0.8 @@ -39242,7 +39431,7 @@ https://www.rfc1437.de/2006/10/24/towel-incident-at-the-westin-tokyo/ - 2026-03-03T17:07:04.000Z + 2026-03-03T17:07:04.989Z monthly 0.8 @@ -39251,7 +39440,7 @@ https://www.rfc1437.de/2006/10/23/fefe-s-blog-3/ - 2026-03-03T17:07:09.000Z + 2026-03-03T17:07:09.643Z monthly 0.8 @@ -39260,7 +39449,7 @@ https://www.rfc1437.de/2006/10/23/fefe-s-blog-4/ - 2026-03-03T17:07:13.000Z + 2026-03-03T17:07:13.452Z monthly 0.8 @@ -39269,7 +39458,7 @@ https://www.rfc1437.de/2006/10/23/kategorie-verbraucherschutz-verband-deutscher/ - 2026-03-03T17:07:18.000Z + 2026-03-03T17:07:18.423Z monthly 0.8 @@ -39278,7 +39467,7 @@ https://www.rfc1437.de/2006/10/23/unmut-ueber-honorarsystem-aerzte-schliessen-praxen/ - 2026-03-03T17:07:22.000Z + 2026-03-03T17:07:22.661Z monthly 0.8 @@ -39287,7 +39476,7 @@ https://www.rfc1437.de/2006/10/23/wohnungen-sollen-aus-reit-gesetz-gestrichen-werden/ - 2026-03-03T17:07:26.000Z + 2026-03-03T17:07:26.890Z monthly 0.8 @@ -39296,7 +39485,7 @@ https://www.rfc1437.de/2006/10/20/bundestags-petition-gegen-wahlcomputer/ - 2026-03-03T17:07:31.000Z + 2026-03-03T17:07:31.677Z monthly 0.8 @@ -39305,7 +39494,7 @@ https://www.rfc1437.de/2006/10/18/auch-beim-bildblog-rechnen-milchmaedchen/ - 2026-03-03T17:07:36.000Z + 2026-03-03T17:07:36.567Z monthly 0.8 @@ -39314,7 +39503,7 @@ https://www.rfc1437.de/2006/10/18/das-diktat-der-meritokraten/ - 2026-03-03T17:07:40.000Z + 2026-03-03T17:07:40.844Z monthly 0.8 @@ -39323,7 +39512,7 @@ https://www.rfc1437.de/2006/10/18/ralph-griswold-died/ - 2026-03-03T17:07:45.000Z + 2026-03-03T17:07:45.253Z monthly 0.8 @@ -39332,7 +39521,7 @@ https://www.rfc1437.de/2006/10/18/teen-using-myspace-to-lure-bands-to-los-angeles/ - 2026-03-07T21:13:48.000Z + 2026-03-07T21:13:48.429Z monthly 0.8 @@ -39341,7 +39530,7 @@ https://www.rfc1437.de/2006/10/17/addressbook-x-ldap/ - 2026-03-03T17:07:53.000Z + 2026-03-03T17:07:53.132Z monthly 0.8 @@ -39350,7 +39539,7 @@ https://www.rfc1437.de/2006/10/17/edelentmant-luege-bestechung-und-diffamierung/ - 2026-03-03T17:07:57.000Z + 2026-03-03T17:07:57.464Z monthly 0.8 @@ -39359,7 +39548,7 @@ https://www.rfc1437.de/2006/10/17/unternehmen-kehren-reumuetig-aus-dem-osten-zurueck/ - 2026-03-03T17:08:01.000Z + 2026-03-03T17:08:01.807Z monthly 0.8 @@ -39368,7 +39557,7 @@ https://www.rfc1437.de/2006/10/16/glos-will-flexiblere-lehrlinge/ - 2026-03-03T17:08:06.000Z + 2026-03-03T17:08:06.876Z monthly 0.8 @@ -39377,7 +39566,7 @@ https://www.rfc1437.de/2006/10/16/innen-staatssekretaer-internet-wichtiges-mittel/ - 2026-03-03T17:08:12.000Z + 2026-03-03T17:08:12.049Z monthly 0.8 @@ -39386,7 +39575,7 @@ https://www.rfc1437.de/2006/10/16/terror-zahnaerzte/ - 2026-03-03T17:08:16.000Z + 2026-03-03T17:08:16.759Z monthly 0.8 @@ -39395,7 +39584,7 @@ https://www.rfc1437.de/2006/10/16/would-you-like-fries-with-your-spyware/ - 2026-03-03T17:08:21.000Z + 2026-03-03T17:08:21.248Z monthly 0.8 @@ -39404,7 +39593,7 @@ https://www.rfc1437.de/2006/10/13/vista-licenses-limit-os-transfers-ban-vm-use/ - 2026-03-07T21:13:49.000Z + 2026-03-07T21:13:49.906Z monthly 0.8 @@ -39413,7 +39602,7 @@ https://www.rfc1437.de/2006/10/13/world-s-worst-use-of-a-jpeg/ - 2026-03-07T21:13:55.000Z + 2026-03-07T21:13:55.500Z monthly 0.8 @@ -39422,7 +39611,7 @@ https://www.rfc1437.de/2006/10/12/concrete-and-clay/ - 2026-03-03T17:08:36.000Z + 2026-03-03T17:08:36.177Z monthly 0.8 @@ -39431,7 +39620,7 @@ https://www.rfc1437.de/2006/10/12/doctor-paradox-the-metaphysician/ - 2026-03-07T21:13:56.000Z + 2026-03-07T21:13:56.150Z monthly 0.8 @@ -39440,7 +39629,7 @@ https://www.rfc1437.de/2006/10/12/g2image/ - 2026-03-03T17:08:44.000Z + 2026-03-03T17:08:44.689Z monthly 0.8 @@ -39449,7 +39638,7 @@ https://www.rfc1437.de/2006/10/12/hotbitcharsenal/ - 2026-03-07T21:13:57.000Z + 2026-03-07T21:13:57.383Z monthly 0.8 @@ -39458,7 +39647,7 @@ https://www.rfc1437.de/2006/10/12/paulo-sacramento-creative-commons-soundtracks-and/ - 2026-03-03T17:08:52.000Z + 2026-03-03T17:08:52.784Z monthly 0.8 @@ -39467,7 +39656,7 @@ https://www.rfc1437.de/2006/10/12/simple-image-manager-uploader/ - 2026-03-03T17:08:57.000Z + 2026-03-03T17:08:57.619Z monthly 0.8 @@ -39476,7 +39665,7 @@ https://www.rfc1437.de/2006/10/12/stromausfall-beim-hoster-hetzner-legte-tausende/ - 2026-03-03T17:09:02.000Z + 2026-03-03T17:09:02.356Z monthly 0.8 @@ -39485,7 +39674,7 @@ https://www.rfc1437.de/2006/10/12/tinymce-javascript-content-editor/ - 2026-03-03T17:09:06.000Z + 2026-03-03T17:09:06.522Z monthly 0.8 @@ -39494,7 +39683,7 @@ https://www.rfc1437.de/2006/10/11/schuenemann-fordert-verbot-des-herunterladens-von/ - 2026-03-03T17:09:11.000Z + 2026-03-03T17:09:11.288Z monthly 0.8 @@ -39503,7 +39692,7 @@ https://www.rfc1437.de/2006/10/10/bioresonanz-psychotronik-und-homoeopathie-my/ - 2026-03-03T17:09:16.000Z + 2026-03-03T17:09:16.107Z monthly 0.8 @@ -39512,7 +39701,7 @@ https://www.rfc1437.de/2006/10/10/boese-grosse-verlage-arme-kleine-uebersetzer/ - 2026-03-03T17:09:21.000Z + 2026-03-03T17:09:21.349Z monthly 0.8 @@ -39521,7 +39710,7 @@ https://www.rfc1437.de/2006/10/10/fabjectory/ - 2026-03-03T17:09:25.000Z + 2026-03-03T17:09:25.585Z monthly 0.8 @@ -39530,7 +39719,7 @@ https://www.rfc1437.de/2006/10/10/genealogische-datenbank-vornamen/ - 2026-03-03T17:09:31.000Z + 2026-03-03T17:09:31.206Z monthly 0.8 @@ -39539,7 +39728,7 @@ https://www.rfc1437.de/2006/10/10/geonames/ - 2026-03-03T17:09:36.000Z + 2026-03-03T17:09:36.383Z monthly 0.8 @@ -39548,7 +39737,7 @@ https://www.rfc1437.de/2006/10/10/google-code-search/ - 2026-03-03T17:09:40.000Z + 2026-03-03T17:09:40.879Z monthly 0.8 @@ -39557,7 +39746,7 @@ https://www.rfc1437.de/2006/10/10/lightning-exits-woman-s-bottom/ - 2026-03-07T21:13:58.000Z + 2026-03-07T21:13:58.099Z monthly 0.8 @@ -39566,7 +39755,7 @@ https://www.rfc1437.de/2006/10/10/moinx/ - 2026-03-03T17:09:49.000Z + 2026-03-03T17:09:49.857Z monthly 0.8 @@ -39575,7 +39764,7 @@ https://www.rfc1437.de/2006/10/10/the-heath-robinson-rube-goldberg-computer-part-1/ - 2026-03-03T17:09:55.000Z + 2026-03-03T17:09:55.445Z monthly 0.8 @@ -39584,7 +39773,7 @@ https://www.rfc1437.de/2006/10/09/100-000-jahre-alte-kamelknochen-gefunden/ - 2026-03-03T17:10:00.000Z + 2026-03-03T17:10:00.549Z monthly 0.8 @@ -39593,7 +39782,7 @@ https://www.rfc1437.de/2006/10/09/chinas-billigwaren-wer-profitiert-wirklich/ - 2026-03-03T17:10:05.000Z + 2026-03-03T17:10:05.636Z monthly 0.8 @@ -39602,7 +39791,7 @@ https://www.rfc1437.de/2006/10/09/justizministerium-sieht-keinen-aenderungsbedarf/ - 2026-03-03T17:10:10.000Z + 2026-03-03T17:10:10.590Z monthly 0.8 @@ -39611,7 +39800,7 @@ https://www.rfc1437.de/2006/10/09/ptb-keine-hinweise-auf-manipulierte-wahlcomputer/ - 2026-03-03T17:10:16.000Z + 2026-03-03T17:10:16.252Z monthly 0.8 @@ -39620,7 +39809,7 @@ https://www.rfc1437.de/2006/10/09/sicherheitsluecke-in-python-2-3-und-aufwaerts/ - 2026-03-03T17:10:21.000Z + 2026-03-03T17:10:21.100Z monthly 0.8 @@ -39629,7 +39818,7 @@ https://www.rfc1437.de/2006/10/09/uni-mannheim-will-informatik-institut-schliessen/ - 2026-03-03T17:10:27.000Z + 2026-03-03T17:10:27.156Z monthly 0.8 @@ -39638,7 +39827,7 @@ https://www.rfc1437.de/2006/10/09/your-ancestors-disgust-me/ - 2026-03-07T21:14:01.000Z + 2026-03-07T21:14:01.152Z monthly 0.8 @@ -39647,7 +39836,7 @@ https://www.rfc1437.de/2006/10/06/3d-scanner-aus-webcam-und-laser-fuer-jedermann/ - 2026-03-03T17:10:37.000Z + 2026-03-03T17:10:37.112Z monthly 0.8 @@ -39656,7 +39845,7 @@ https://www.rfc1437.de/2006/10/06/6502asm-com-6502-compatible-compiler-and-emulator/ - 2026-03-03T17:10:41.000Z + 2026-03-03T17:10:41.171Z monthly 0.8 @@ -39665,7 +39854,7 @@ https://www.rfc1437.de/2006/10/06/fefe-s-blog-2/ - 2026-03-03T17:10:45.000Z + 2026-03-03T17:10:45.182Z monthly 0.8 @@ -39674,7 +39863,7 @@ https://www.rfc1437.de/2006/10/06/how-to-create-a-new-generation-of-scientists/ - 2026-03-03T17:10:49.000Z + 2026-03-03T17:10:49.267Z monthly 0.8 @@ -39683,7 +39872,7 @@ https://www.rfc1437.de/2006/10/06/parallelport-adapter-mit-usb-und-bluetooth/ - 2026-03-03T17:10:53.000Z + 2026-03-03T17:10:53.798Z monthly 0.8 @@ -39692,7 +39881,7 @@ https://www.rfc1437.de/2006/10/06/scribus-aqua/ - 2026-03-03T17:10:58.000Z + 2026-03-03T17:10:58.012Z monthly 0.8 @@ -39701,7 +39890,7 @@ https://www.rfc1437.de/2006/10/05/gizmondo-s-spectacular-crack-up/ - 2026-03-03T17:11:02.000Z + 2026-03-03T17:11:02.514Z monthly 0.8 @@ -39710,7 +39899,7 @@ https://www.rfc1437.de/2006/10/05/icalamus-net/ - 2026-03-03T17:11:06.000Z + 2026-03-03T17:11:06.554Z monthly 0.8 @@ -39719,7 +39908,7 @@ https://www.rfc1437.de/2006/10/05/nedap-wahlcomputer-gehackt/ - 2026-03-03T17:11:11.000Z + 2026-03-03T17:11:11.038Z monthly 0.8 @@ -39728,7 +39917,7 @@ https://www.rfc1437.de/2006/10/05/new-drug-blocks-influenza-including-bird-flu-virus/ - 2026-03-03T17:11:15.000Z + 2026-03-03T17:11:15.117Z monthly 0.8 @@ -39737,7 +39926,7 @@ https://www.rfc1437.de/2006/10/05/schachcomputer/ - 2026-03-03T17:11:19.000Z + 2026-03-03T17:11:19.542Z monthly 0.8 @@ -39746,7 +39935,7 @@ https://www.rfc1437.de/2006/10/05/verleger-fordern-schrankenlosen-auskunftsanspruch/ - 2026-03-03T17:11:24.000Z + 2026-03-03T17:11:24.558Z monthly 0.8 @@ -39755,7 +39944,7 @@ https://www.rfc1437.de/2006/10/04/exploding-hello-kitty-toys-recalled/ - 2026-03-03T17:11:28.000Z + 2026-03-03T17:11:28.555Z monthly 0.8 @@ -39764,7 +39953,7 @@ https://www.rfc1437.de/2006/10/04/immaterial-music/ - 2026-03-03T17:11:32.000Z + 2026-03-03T17:11:32.246Z monthly 0.8 @@ -39773,7 +39962,7 @@ https://www.rfc1437.de/2006/10/04/novell-will-sco-an-die-kriegskasse/ - 2026-03-03T17:11:37.000Z + 2026-03-03T17:11:37.384Z monthly 0.8 @@ -39782,7 +39971,7 @@ https://www.rfc1437.de/2006/10/04/pubsigs/ - 2026-03-03T17:11:41.000Z + 2026-03-03T17:11:41.398Z monthly 0.8 @@ -39791,7 +39980,7 @@ https://www.rfc1437.de/2006/10/04/shearer/ - 2026-03-03T17:11:45.000Z + 2026-03-03T17:11:45.138Z monthly 0.8 @@ -39809,7 +39998,7 @@ https://www.rfc1437.de/2006/10/02/ati-grafikchips-falten-proteine-schneller/ - 2026-03-03T17:11:55.000Z + 2026-03-03T17:11:55.266Z monthly 0.8 @@ -39818,7 +40007,7 @@ https://www.rfc1437.de/2006/10/02/teacher-fired-due-to-dallas-museum-of-art/ - 2026-03-03T17:11:59.000Z + 2026-03-03T17:11:59.772Z monthly 0.8 @@ -39827,7 +40016,7 @@ https://www.rfc1437.de/2006/10/02/vmware-how-to-osx86/ - 2026-03-03T17:12:04.000Z + 2026-03-03T17:12:04.033Z monthly 0.8 @@ -39836,7 +40025,7 @@ https://www.rfc1437.de/2006/09/29/blender-3d-noob-to-pro/ - 2026-03-03T17:12:08.000Z + 2026-03-03T17:12:08.061Z monthly 0.8 @@ -39845,7 +40034,7 @@ https://www.rfc1437.de/2006/09/29/final-vote-results-for-roll-call-491/ - 2026-03-03T17:12:13.000Z + 2026-03-03T17:12:13.189Z monthly 0.8 @@ -39854,7 +40043,7 @@ https://www.rfc1437.de/2006/09/29/gewerkschaft-sieht-in-benq-mobile-insolvenz-einen/ - 2026-03-03T17:12:18.000Z + 2026-03-03T17:12:18.902Z monthly 0.8 @@ -39863,7 +40052,7 @@ https://www.rfc1437.de/2006/09/29/google-sketchup-second-life-export/ - 2026-03-03T17:12:23.000Z + 2026-03-03T17:12:23.962Z monthly 0.8 @@ -39872,7 +40061,7 @@ https://www.rfc1437.de/2006/09/29/the-gpl-is-not-a-compromise/ - 2026-03-03T17:12:29.000Z + 2026-03-03T17:12:29.092Z monthly 0.8 @@ -39881,7 +40070,7 @@ https://www.rfc1437.de/2006/09/29/tutorial-walk-cycle/ - 2026-03-03T17:12:33.000Z + 2026-03-03T17:12:33.332Z monthly 0.8 @@ -39890,7 +40079,7 @@ https://www.rfc1437.de/2006/09/28/benq-mobile-in-deutschland-stellt-insolvenzantrag/ - 2026-03-03T17:12:38.000Z + 2026-03-03T17:12:38.504Z monthly 0.8 @@ -39899,7 +40088,7 @@ https://www.rfc1437.de/2006/09/28/mason/ - 2026-03-03T17:12:42.000Z + 2026-03-03T17:12:42.414Z monthly 0.8 @@ -39908,7 +40097,7 @@ https://www.rfc1437.de/2006/09/28/siemens-vorstand-sieht-gefahr-einer-feindlichen/ - 2026-03-03T17:12:47.000Z + 2026-03-03T17:12:47.404Z monthly 0.8 @@ -39917,7 +40106,7 @@ https://www.rfc1437.de/2006/09/28/types-of-mazes/ - 2026-03-03T17:12:51.000Z + 2026-03-03T17:12:51.406Z monthly 0.8 @@ -39926,7 +40115,7 @@ https://www.rfc1437.de/2006/09/28/welcome-to-the-worldforge-project/ - 2026-03-03T17:12:54.000Z + 2026-03-03T17:12:54.956Z monthly 0.8 @@ -39935,7 +40124,7 @@ https://www.rfc1437.de/2006/09/27/e-on-erhoeht-endesa-angebot-auf-35-euro-je-aktie/ - 2026-03-03T17:13:00.000Z + 2026-03-03T17:13:00.552Z monthly 0.8 @@ -39944,7 +40133,7 @@ https://www.rfc1437.de/2006/09/27/freeplay-energy-plc/ - 2026-03-03T17:13:04.000Z + 2026-03-03T17:13:04.546Z monthly 0.8 @@ -39953,7 +40142,7 @@ https://www.rfc1437.de/2006/09/27/idiotic-examples-of-corporate-cost-cutting/ - 2026-03-03T17:13:08.000Z + 2026-03-03T17:13:08.585Z monthly 0.8 @@ -39962,7 +40151,7 @@ https://www.rfc1437.de/2006/09/27/one-planet-many-people/ - 2026-03-03T17:13:12.000Z + 2026-03-03T17:13:12.805Z monthly 0.8 @@ -39971,7 +40160,7 @@ https://www.rfc1437.de/2006/09/26/die-electronic-forntier-foundation-stellt-sich/ - 2026-03-03T17:13:18.000Z + 2026-03-03T17:13:18.137Z monthly 0.8 @@ -39980,7 +40169,7 @@ https://www.rfc1437.de/2006/09/26/in-tiny-courts-of-n-y-abuses-of-law-and-power/ - 2026-03-03T17:13:23.000Z + 2026-03-03T17:13:23.804Z monthly 0.8 @@ -39989,7 +40178,7 @@ https://www.rfc1437.de/2006/09/26/ruebstiel-stielmus/ - 2026-03-03T17:13:27.000Z + 2026-03-03T17:13:27.857Z monthly 0.8 @@ -39998,7 +40187,7 @@ https://www.rfc1437.de/2006/09/25/toepfer-will-atomausstieg-und-ruegt/ - 2026-03-03T17:13:32.000Z + 2026-03-03T17:13:32.484Z monthly 0.8 @@ -40007,7 +40196,7 @@ https://www.rfc1437.de/2006/09/24/rare-woodpecker-sends-a-town-running-for-its/ - 2026-03-07T21:14:02.000Z + 2026-03-07T21:14:02.486Z monthly 0.8 @@ -40016,7 +40205,7 @@ https://www.rfc1437.de/2006/09/22/spamcop-genauso-inkompetent-wie-sorbs/ - 2026-03-03T17:13:43.000Z + 2026-03-03T17:13:43.281Z monthly 0.8 @@ -40025,7 +40214,7 @@ https://www.rfc1437.de/2006/09/22/virtuelle-mode-als-lebensunterhalt/ - 2026-03-03T17:13:48.000Z + 2026-03-03T17:13:48.471Z monthly 0.8 @@ -40034,7 +40223,7 @@ https://www.rfc1437.de/2006/09/21/eu-will-verbindungsdaten-an-die-usa-weitergeben/ - 2026-03-03T17:13:52.000Z + 2026-03-03T17:13:52.588Z monthly 0.8 @@ -40043,7 +40232,7 @@ https://www.rfc1437.de/2006/09/21/netzbetreiber-ignorieren-thoben-frist/ - 2026-03-03T17:13:58.000Z + 2026-03-03T17:13:58.257Z monthly 0.8 @@ -40052,7 +40241,7 @@ https://www.rfc1437.de/2006/09/21/popkomm-musikwirtschaft-will-zugangsanbieter-zur/ - 2026-03-03T17:14:03.000Z + 2026-03-03T17:14:03.855Z monthly 0.8 @@ -40061,7 +40250,7 @@ https://www.rfc1437.de/2006/09/21/understanding-html-xml-and-xhtml/ - 2026-03-03T17:14:08.000Z + 2026-03-03T17:14:08.884Z monthly 0.8 @@ -40070,7 +40259,7 @@ https://www.rfc1437.de/2006/09/20/microsoft-s-masterpiece-of-fud/ - 2026-03-07T21:14:03.000Z + 2026-03-07T21:14:03.502Z monthly 0.8 @@ -40079,7 +40268,7 @@ https://www.rfc1437.de/2006/09/20/nova-1-photo-selection/ - 2026-03-03T17:14:17.000Z + 2026-03-03T17:14:17.152Z monthly 0.8 @@ -40088,7 +40277,7 @@ https://www.rfc1437.de/2006/09/20/regierung-will-letzte-luecken-im/ - 2026-03-03T17:14:22.000Z + 2026-03-03T17:14:22.300Z monthly 0.8 @@ -40097,7 +40286,7 @@ https://www.rfc1437.de/2006/09/20/seehofer-veraergert-bauern-und-gentech-kritiker/ - 2026-03-03T17:14:26.000Z + 2026-03-03T17:14:26.912Z monthly 0.8 @@ -40106,7 +40295,7 @@ https://www.rfc1437.de/2006/09/20/the-denial-industry/ - 2026-03-03T17:14:32.000Z + 2026-03-03T17:14:32.142Z monthly 0.8 @@ -40115,7 +40304,7 @@ https://www.rfc1437.de/2006/09/20/von-kontrollierten-abstuerzen-und-bail-out-zonen/ - 2026-03-03T17:14:37.000Z + 2026-03-03T17:14:37.446Z monthly 0.8 @@ -40124,7 +40313,7 @@ https://www.rfc1437.de/2006/09/19/gutachten-bagatellklausel-bei-tauschboersen-ist/ - 2026-03-03T17:14:43.000Z + 2026-03-03T17:14:43.116Z monthly 0.8 @@ -40133,7 +40322,7 @@ https://www.rfc1437.de/2006/09/18/h-i-p-p-o-p-o-t-a-m-o-u-s-e/ - 2026-03-07T21:14:06.000Z + 2026-03-07T21:14:06.392Z monthly 0.8 @@ -40142,7 +40331,7 @@ https://www.rfc1437.de/2006/09/18/internet-jaeger-des-virtuellen-schatzes/ - 2026-03-03T17:14:52.000Z + 2026-03-03T17:14:52.557Z monthly 0.8 @@ -40151,7 +40340,7 @@ https://www.rfc1437.de/2006/09/18/netzeitung-internet-google-muss-belgische/ - 2026-03-03T17:14:56.000Z + 2026-03-03T17:14:56.791Z monthly 0.8 @@ -40160,7 +40349,7 @@ https://www.rfc1437.de/2006/09/18/spam-gegner-sollen-11-millionen-dollar-zahlen/ - 2026-03-03T17:15:01.000Z + 2026-03-03T17:15:01.408Z monthly 0.8 @@ -40169,7 +40358,7 @@ https://www.rfc1437.de/2006/09/18/the-perry-bible-fellowship/ - 2026-03-03T17:15:05.000Z + 2026-03-03T17:15:05.049Z monthly 0.8 @@ -40178,7 +40367,7 @@ https://www.rfc1437.de/2006/09/18/the-triple-x-hack-an-exclusive-css-filter-for-ie7/ - 2026-03-03T17:15:09.000Z + 2026-03-03T17:15:09.029Z monthly 0.8 @@ -40187,7 +40376,7 @@ https://www.rfc1437.de/2006/09/15/little-people-a-tiny-street-art-project/ - 2026-03-03T17:15:13.000Z + 2026-03-03T17:15:13.050Z monthly 0.8 @@ -40196,7 +40385,7 @@ https://www.rfc1437.de/2006/09/14/leica-m8-hands-on-preview/ - 2026-03-03T17:15:18.000Z + 2026-03-03T17:15:18.247Z monthly 0.8 @@ -40205,7 +40394,7 @@ https://www.rfc1437.de/2006/09/13/strongtalk-a-high-performance-open-source/ - 2026-03-03T17:15:22.000Z + 2026-03-03T17:15:22.241Z monthly 0.8 @@ -40214,7 +40403,7 @@ https://www.rfc1437.de/2006/09/12/connecting-with-people-in-six-steps/ - 2026-03-07T21:14:09.000Z + 2026-03-07T21:14:09.221Z monthly 0.8 @@ -40223,7 +40412,7 @@ https://www.rfc1437.de/2006/09/12/elektrosmog-three-in-one/ - 2026-03-03T17:15:31.000Z + 2026-03-03T17:15:31.296Z monthly 0.8 @@ -40232,7 +40421,7 @@ https://www.rfc1437.de/2006/09/12/john-graham-cumming-did-softscan-sophos-and-panda/ - 2026-03-03T17:15:37.000Z + 2026-03-03T17:15:37.323Z monthly 0.8 @@ -40241,7 +40430,7 @@ https://www.rfc1437.de/2006/09/12/kettle/ - 2026-03-03T17:15:41.000Z + 2026-03-03T17:15:41.452Z monthly 0.8 @@ -40250,7 +40439,7 @@ https://www.rfc1437.de/2006/09/12/wearing-helmets-more-dangerous/ - 2026-03-03T17:15:46.000Z + 2026-03-03T17:15:46.199Z monthly 0.8 @@ -40259,7 +40448,7 @@ https://www.rfc1437.de/2006/09/11/nigeria-widows-lose-their-fortune/ - 2026-03-07T21:14:10.000Z + 2026-03-07T21:14:10.284Z monthly 0.8 @@ -40268,7 +40457,7 @@ https://www.rfc1437.de/2006/09/11/staatsanwaltschaft-beschlagnahmt/ - 2026-03-03T17:15:55.000Z + 2026-03-03T17:15:55.256Z monthly 0.8 @@ -40277,7 +40466,7 @@ https://www.rfc1437.de/2006/09/11/unverschluesseltes-wlan-und-stoererhaftung-lg/ - 2026-03-03T17:16:00.000Z + 2026-03-03T17:16:00.509Z monthly 0.8 @@ -40286,7 +40475,7 @@ https://www.rfc1437.de/2006/09/04/studie-viel-chatter-haben-haeufig-psychische/ - 2026-03-03T17:16:05.000Z + 2026-03-03T17:16:05.489Z monthly 0.8 @@ -40295,7 +40484,7 @@ https://www.rfc1437.de/2006/09/03/elektrosmog-flickragentur/ - 2026-03-03T17:16:10.000Z + 2026-03-03T17:16:10.128Z monthly 0.8 @@ -40304,7 +40493,7 @@ https://www.rfc1437.de/2006/09/02/firewire-ultra-scsi-converter-fr1sx-ratoc/ - 2026-03-03T17:16:14.000Z + 2026-03-03T17:16:14.865Z monthly 0.8 @@ -40313,7 +40502,7 @@ https://www.rfc1437.de/2006/08/29/going-for-a-walk/ - 2026-03-03T17:16:19.000Z + 2026-03-03T17:16:19.463Z monthly 0.8 @@ -40322,7 +40511,7 @@ https://www.rfc1437.de/2006/08/25/pluto-kein-planet-mehr/ - 2026-03-03T17:16:24.000Z + 2026-03-03T17:16:24.021Z monthly 0.8 @@ -40331,7 +40520,7 @@ https://www.rfc1437.de/2006/08/23/kieler-justizminister-kritisiert/ - 2026-03-03T17:16:28.000Z + 2026-03-03T17:16:28.762Z monthly 0.8 @@ -40340,7 +40529,7 @@ https://www.rfc1437.de/2006/08/23/spd-debattiert-ueber-kuerzung-der-witwenrente/ - 2026-03-03T17:16:35.000Z + 2026-03-03T17:16:35.813Z monthly 0.8 @@ -40349,7 +40538,7 @@ https://www.rfc1437.de/2006/08/23/tom-cruise-demnaechst-arbeitslos/ - 2026-03-03T17:16:39.000Z + 2026-03-03T17:16:39.846Z monthly 0.8 @@ -40358,7 +40547,7 @@ https://www.rfc1437.de/2006/08/18/boom-der-riester-rente-haelt-an/ - 2026-03-03T17:16:45.000Z + 2026-03-03T17:16:45.690Z monthly 0.8 @@ -40367,7 +40556,7 @@ https://www.rfc1437.de/2006/08/17/sternwarte-bochum-hat-originalaufzeichnungen-der/ - 2026-03-03T17:16:50.000Z + 2026-03-03T17:16:50.684Z monthly 0.8 @@ -40376,7 +40565,7 @@ https://www.rfc1437.de/2006/08/16/kurth-raet-telekom-zu-gespraechen-ueber-vdsl/ - 2026-03-03T17:16:56.000Z + 2026-03-03T17:16:56.543Z monthly 0.8 @@ -40385,7 +40574,7 @@ https://www.rfc1437.de/2006/08/16/unsicherheit-ueber-rechtsgueltigkeit-von/ - 2026-03-03T17:17:00.000Z + 2026-03-03T17:17:00.659Z monthly 0.8 @@ -40394,7 +40583,7 @@ https://www.rfc1437.de/2006/08/16/vampire-sea-spiders-suck-on-prey/ - 2026-03-03T17:17:04.000Z + 2026-03-03T17:17:04.779Z monthly 0.8 @@ -40403,7 +40592,7 @@ https://www.rfc1437.de/2006/08/16/verschollene-fischer-nach-neun-monaten-gerettet/ - 2026-03-03T17:17:09.000Z + 2026-03-03T17:17:09.362Z monthly 0.8 @@ -40412,7 +40601,7 @@ https://www.rfc1437.de/2006/08/15/basic-mit-come-from/ - 2026-03-03T17:17:13.000Z + 2026-03-03T17:17:13.357Z monthly 0.8 @@ -40421,7 +40610,7 @@ https://www.rfc1437.de/2006/08/15/dm-s-esoteric-programming-languages-piet-samples/ - 2026-03-03T17:17:17.000Z + 2026-03-03T17:17:17.613Z monthly 0.8 @@ -40430,7 +40619,7 @@ https://www.rfc1437.de/2006/08/15/off/ - 2026-03-03T17:17:22.000Z + 2026-03-03T17:17:22.838Z monthly 0.8 @@ -40439,7 +40628,7 @@ https://www.rfc1437.de/2006/08/11/eine-naive-idee/ - 2026-03-03T17:17:27.000Z + 2026-03-03T17:17:27.699Z monthly 0.8 @@ -40448,7 +40637,7 @@ https://www.rfc1437.de/2006/08/11/if-the-liquid-could-be-explosive-why-are-you/ - 2026-03-07T21:14:13.000Z + 2026-03-07T21:14:13.257Z monthly 0.8 @@ -40457,7 +40646,7 @@ https://www.rfc1437.de/2006/08/11/merlin-xu870-3g-hsdpa-7-2-expresscard/ - 2026-03-03T17:17:36.000Z + 2026-03-03T17:17:36.786Z monthly 0.8 @@ -40466,7 +40655,7 @@ https://www.rfc1437.de/2006/08/10/amd-talks-about-ati/ - 2026-03-03T17:17:40.000Z + 2026-03-03T17:17:40.824Z monthly 0.8 @@ -40475,7 +40664,7 @@ https://www.rfc1437.de/2006/08/10/bill-biggart-s-final-exposures/ - 2026-03-03T17:17:44.000Z + 2026-03-03T17:17:44.935Z monthly 0.8 @@ -40484,7 +40673,7 @@ https://www.rfc1437.de/2006/08/10/escher-s-relativity-in-lego/ - 2026-03-07T21:14:14.000Z + 2026-03-07T21:14:14.073Z monthly 0.8 @@ -40493,7 +40682,7 @@ https://www.rfc1437.de/2006/08/10/idaho-observer-aspartame-the-world-s-best-ant/ - 2026-03-03T17:17:53.000Z + 2026-03-03T17:17:53.668Z monthly 0.8 @@ -40502,7 +40691,7 @@ https://www.rfc1437.de/2006/08/09/a-face-is-exposed-for-aol-searcher-no-4417749/ - 2026-03-03T17:17:59.000Z + 2026-03-03T17:17:59.778Z monthly 0.8 @@ -40511,7 +40700,7 @@ https://www.rfc1437.de/2006/08/09/o-reillys-liste-der-beliebtesten/ - 2026-03-03T17:18:05.000Z + 2026-03-03T17:18:05.017Z monthly 0.8 @@ -40520,7 +40709,7 @@ https://www.rfc1437.de/2006/08/09/update-beschleunigt-parallels-desktop-fuer-mac-os/ - 2026-03-03T17:18:09.000Z + 2026-03-03T17:18:09.542Z monthly 0.8 @@ -40529,7 +40718,7 @@ https://www.rfc1437.de/2006/08/08/applicationrepositories-maemo-wiki/ - 2026-03-03T17:18:13.000Z + 2026-03-03T17:18:13.536Z monthly 0.8 @@ -40538,7 +40727,7 @@ https://www.rfc1437.de/2006/08/08/star-trek-inspirational-posters/ - 2026-03-03T17:18:17.000Z + 2026-03-03T17:18:17.106Z monthly 0.8 @@ -40547,7 +40736,7 @@ https://www.rfc1437.de/2006/08/07/bs-exporter-for-blender/ - 2026-03-03T17:18:21.000Z + 2026-03-03T17:18:21.095Z monthly 0.8 @@ -40556,7 +40745,7 @@ https://www.rfc1437.de/2006/08/07/david-byrne/ - 2026-03-03T17:18:25.000Z + 2026-03-03T17:18:25.152Z monthly 0.8 @@ -40565,7 +40754,7 @@ https://www.rfc1437.de/2006/08/07/der-staat-geht-die-wirtschaft-kommt/ - 2026-03-03T17:18:29.000Z + 2026-03-03T17:18:29.232Z monthly 0.8 @@ -40574,7 +40763,7 @@ https://www.rfc1437.de/2006/08/07/macweb3d/ - 2026-03-03T17:18:32.000Z + 2026-03-03T17:18:32.908Z monthly 0.8 @@ -40583,7 +40772,7 @@ https://www.rfc1437.de/2006/08/07/synthetisches-testosteron/ - 2026-03-03T17:18:37.000Z + 2026-03-03T17:18:37.132Z monthly 0.8 @@ -40592,7 +40781,7 @@ https://www.rfc1437.de/2006/08/07/the-annotated-vrml97-reference-manual/ - 2026-03-07T21:14:17.000Z + 2026-03-07T21:14:17.719Z monthly 0.8 @@ -40601,7 +40790,7 @@ https://www.rfc1437.de/2006/08/07/voigt-in-gelb/ - 2026-03-03T17:18:45.000Z + 2026-03-03T17:18:45.153Z monthly 0.8 @@ -40610,7 +40799,7 @@ https://www.rfc1437.de/2006/08/07/voigt-siegt-und-haelt-die-konkurrenz-in-schach/ - 2026-03-03T17:18:49.000Z + 2026-03-03T17:18:49.133Z monthly 0.8 @@ -40619,7 +40808,7 @@ https://www.rfc1437.de/2006/08/07/vrml-primer-and-tutorial/ - 2026-03-03T17:18:53.000Z + 2026-03-03T17:18:53.191Z monthly 0.8 @@ -40628,7 +40817,7 @@ https://www.rfc1437.de/2006/08/07/wie-die-bahn-verhackstueckt-wird/ - 2026-03-03T17:18:57.000Z + 2026-03-03T17:18:57.170Z monthly 0.8 @@ -40637,7 +40826,7 @@ https://www.rfc1437.de/2006/08/05/qavimator/ - 2026-03-03T17:19:01.000Z + 2026-03-03T17:19:01.232Z monthly 0.8 @@ -40646,7 +40835,7 @@ https://www.rfc1437.de/2006/08/04/hackers-clone-rfid-passports/ - 2026-03-03T17:19:06.000Z + 2026-03-03T17:19:06.275Z monthly 0.8 @@ -40655,7 +40844,7 @@ https://www.rfc1437.de/2006/08/04/neue-web-n-walk-datenoptionen-bei-t-mobile/ - 2026-03-03T17:19:11.000Z + 2026-03-03T17:19:11.356Z monthly 0.8 @@ -40664,7 +40853,7 @@ https://www.rfc1437.de/2006/08/04/slstats-is-big-brother-watch-ing/ - 2026-03-03T17:19:15.000Z + 2026-03-03T17:19:15.984Z monthly 0.8 @@ -40673,7 +40862,7 @@ https://www.rfc1437.de/2006/08/04/the-scientist-whom-history-forgot/ - 2026-03-07T21:14:18.000Z + 2026-03-07T21:14:18.575Z monthly 0.8 @@ -40682,7 +40871,7 @@ https://www.rfc1437.de/2006/08/04/when-did-we-forget-our-dreams/ - 2026-03-07T21:14:21.000Z + 2026-03-07T21:14:21.360Z monthly 0.8 @@ -40691,7 +40880,7 @@ https://www.rfc1437.de/2006/08/03/amtliche-vorformulierung-zum-online/ - 2026-03-03T17:19:27.000Z + 2026-03-03T17:19:27.853Z monthly 0.8 @@ -40700,7 +40889,7 @@ https://www.rfc1437.de/2006/08/03/black-hat-macbook-via-wlan-gehackt/ - 2026-03-03T17:19:31.000Z + 2026-03-03T17:19:31.961Z monthly 0.8 @@ -40709,7 +40898,7 @@ https://www.rfc1437.de/2006/08/03/girllovers-hinter-den-spiegeln/ - 2026-03-03T17:19:36.000Z + 2026-03-03T17:19:36.300Z monthly 0.8 @@ -40718,7 +40907,7 @@ https://www.rfc1437.de/2006/08/03/kinderschutzbund-kassen-muessen-fuer-narkosen/ - 2026-03-03T17:19:40.000Z + 2026-03-03T17:19:40.867Z monthly 0.8 @@ -40727,7 +40916,7 @@ https://www.rfc1437.de/2006/08/02/frankreich-itunes-gesetz-verstoesst-gegen/ - 2026-03-03T17:19:46.000Z + 2026-03-03T17:19:46.083Z monthly 0.8 @@ -40736,7 +40925,7 @@ https://www.rfc1437.de/2006/08/01/apple-support-download-techtool-deluxe/ - 2026-03-03T17:19:50.000Z + 2026-03-03T17:19:50.673Z monthly 0.8 @@ -40745,7 +40934,7 @@ https://www.rfc1437.de/2006/08/01/cruel-com-ancient-chinese-secret-huh/ - 2026-03-03T17:19:55.000Z + 2026-03-03T17:19:55.500Z monthly 0.8 @@ -40754,7 +40943,7 @@ https://www.rfc1437.de/2006/08/01/humorous-poems-by-joachim-ringelnatz/ - 2026-03-03T17:19:59.000Z + 2026-03-03T17:19:59.631Z monthly 0.8 @@ -40763,7 +40952,7 @@ https://www.rfc1437.de/2006/08/01/konsternation-nach-franzoesischem-grundsatzurteil/ - 2026-03-03T17:20:04.000Z + 2026-03-03T17:20:04.256Z monthly 0.8 @@ -40772,7 +40961,7 @@ https://www.rfc1437.de/2006/08/01/kriminalbeamte-kritisieren-aeusserungen-des/ - 2026-03-03T17:20:09.000Z + 2026-03-03T17:20:09.754Z monthly 0.8 @@ -40781,7 +40970,7 @@ https://www.rfc1437.de/2006/08/01/nonsense-poetry-by-christian-morgenstern/ - 2026-03-03T17:20:13.000Z + 2026-03-03T17:20:13.798Z monthly 0.8 @@ -40790,7 +40979,7 @@ https://www.rfc1437.de/2006/08/01/sco-is-distributing-elf-under-the-gpl-still-yes/ - 2026-03-03T17:20:18.000Z + 2026-03-03T17:20:18.925Z monthly 0.8 @@ -40799,7 +40988,7 @@ https://www.rfc1437.de/2006/07/31/apple-tauscht-defekte-akkus-bei-macbook-pro/ - 2026-03-03T17:20:22.000Z + 2026-03-03T17:20:22.952Z monthly 0.8 @@ -40808,7 +40997,7 @@ https://www.rfc1437.de/2006/07/31/atomic-rocket-space-war-weapons/ - 2026-03-03T17:20:27.000Z + 2026-03-03T17:20:27.080Z monthly 0.8 @@ -40817,7 +41006,7 @@ https://www.rfc1437.de/2006/07/31/banken-vollstrecker-aus-texas/ - 2026-03-03T17:20:32.000Z + 2026-03-03T17:20:32.957Z monthly 0.8 @@ -40826,7 +41015,7 @@ https://www.rfc1437.de/2006/07/31/free-movies-fallen-out-of-copyright-public-domain/ - 2026-03-03T17:20:37.000Z + 2026-03-03T17:20:37.282Z monthly 0.8 @@ -40835,7 +41024,7 @@ https://www.rfc1437.de/2006/07/31/how-to-bypass-most-firewall-restrictions-and/ - 2026-03-03T17:20:41.000Z + 2026-03-03T17:20:41.354Z monthly 0.8 @@ -40844,7 +41033,7 @@ https://www.rfc1437.de/2006/07/31/how-to-criticizing-computer-scientists/ - 2026-03-07T21:14:22.000Z + 2026-03-07T21:14:22.161Z monthly 0.8 @@ -40853,7 +41042,7 @@ https://www.rfc1437.de/2006/07/31/introducing-django-0-95/ - 2026-03-03T17:20:49.000Z + 2026-03-03T17:20:49.989Z monthly 0.8 @@ -40862,7 +41051,7 @@ https://www.rfc1437.de/2006/07/31/leben-mit-fehlern-der-schluessel-zum-scaleout/ - 2026-03-03T17:20:54.000Z + 2026-03-03T17:20:54.601Z monthly 0.8 @@ -40871,7 +41060,7 @@ https://www.rfc1437.de/2006/07/31/new-in-javascript-1-7/ - 2026-03-03T17:20:59.000Z + 2026-03-03T17:20:59.330Z monthly 0.8 @@ -40880,7 +41069,7 @@ https://www.rfc1437.de/2006/07/31/riaa-will-drop-cases-if-you-point-out-that-an-ip/ - 2026-03-03T17:21:04.000Z + 2026-03-03T17:21:04.692Z monthly 0.8 @@ -40889,7 +41078,7 @@ https://www.rfc1437.de/2006/07/31/wings-3d/ - 2026-03-03T17:21:08.000Z + 2026-03-03T17:21:08.230Z monthly 0.8 @@ -40898,7 +41087,7 @@ https://www.rfc1437.de/2006/07/28/intershop-schreibt-weiter-verluste/ - 2026-03-03T17:21:12.000Z + 2026-03-03T17:21:12.340Z monthly 0.8 @@ -40907,7 +41096,7 @@ https://www.rfc1437.de/2006/07/28/landis-positiv/ - 2026-03-03T17:21:17.000Z + 2026-03-03T17:21:17.021Z monthly 0.8 @@ -40916,7 +41105,7 @@ https://www.rfc1437.de/2006/07/28/ungewisse-zukunft-fuer-fraunhofer-institut-in/ - 2026-03-03T17:21:22.000Z + 2026-03-03T17:21:22.234Z monthly 0.8 @@ -40925,7 +41114,7 @@ https://www.rfc1437.de/2006/07/28/wphp/ - 2026-03-03T17:21:26.000Z + 2026-03-03T17:21:26.493Z monthly 0.8 @@ -40934,7 +41123,7 @@ https://www.rfc1437.de/2006/07/27/stop-making-fun-of-us/ - 2026-03-07T21:14:24.000Z + 2026-03-07T21:14:24.998Z monthly 0.8 @@ -40943,7 +41132,7 @@ https://www.rfc1437.de/2006/07/26/rwe-will-strompreise-erneut-erhoehen-tagesschau-de/ - 2026-03-03T17:21:35.000Z + 2026-03-03T17:21:35.326Z monthly 0.8 @@ -40952,7 +41141,7 @@ https://www.rfc1437.de/2006/07/25/aldag-als-t-mobile-sportchef/ - 2026-03-03T17:21:40.000Z + 2026-03-03T17:21:40.159Z monthly 0.8 @@ -40961,7 +41150,7 @@ https://www.rfc1437.de/2006/07/25/arbeitsamt-erlasse-im-netz/ - 2026-03-03T17:21:44.000Z + 2026-03-03T17:21:44.803Z monthly 0.8 @@ -40970,7 +41159,7 @@ https://www.rfc1437.de/2006/07/25/der-computerclub-ist-wieder-da/ - 2026-03-03T17:21:48.000Z + 2026-03-03T17:21:48.803Z monthly 0.8 @@ -40979,7 +41168,7 @@ https://www.rfc1437.de/2006/07/24/metasploit-internet-drive-by-shootings/ - 2026-03-03T17:21:52.000Z + 2026-03-03T17:21:52.804Z monthly 0.8 @@ -40988,7 +41177,7 @@ https://www.rfc1437.de/2006/07/21/bloghud-second-life-blogging-system/ - 2026-03-03T17:21:57.000Z + 2026-03-03T17:21:57.263Z monthly 0.8 @@ -40997,7 +41186,7 @@ https://www.rfc1437.de/2006/07/21/my-boring-ass-life/ - 2026-03-03T17:22:00.000Z + 2026-03-03T17:22:00.723Z monthly 0.8 @@ -41006,7 +41195,7 @@ https://www.rfc1437.de/2006/07/21/woe-betide-my-dell/ - 2026-03-07T21:14:25.000Z + 2026-03-07T21:14:25.746Z monthly 0.8 @@ -41015,7 +41204,7 @@ https://www.rfc1437.de/2006/07/20/landis-ist-zurueck/ - 2026-03-03T17:22:09.000Z + 2026-03-03T17:22:09.323Z monthly 0.8 @@ -41024,7 +41213,7 @@ https://www.rfc1437.de/2006/07/19/billig-und-willig/ - 2026-03-03T17:22:13.000Z + 2026-03-03T17:22:13.830Z monthly 0.8 @@ -41033,7 +41222,7 @@ https://www.rfc1437.de/2006/07/19/rasmussen-gewinnt-landis-bricht-ein/ - 2026-03-03T17:22:18.000Z + 2026-03-03T17:22:18.425Z monthly 0.8 @@ -41042,7 +41231,7 @@ https://www.rfc1437.de/2006/07/19/the-ugly-truth-our-president-is-an-imbecile/ - 2026-03-07T21:14:28.000Z + 2026-03-07T21:14:28.538Z monthly 0.8 @@ -41051,7 +41240,7 @@ https://www.rfc1437.de/2006/07/19/tls-lite/ - 2026-03-03T17:22:27.000Z + 2026-03-03T17:22:27.012Z monthly 0.8 @@ -41060,7 +41249,7 @@ https://www.rfc1437.de/2006/07/17/it-branchenverband-will-zuwanderung-gegen/ - 2026-03-03T17:22:32.000Z + 2026-03-03T17:22:32.676Z monthly 0.8 @@ -41069,7 +41258,7 @@ https://www.rfc1437.de/2006/07/17/mal-ne-andere-meinung/ - 2026-03-03T17:22:37.000Z + 2026-03-03T17:22:37.484Z monthly 0.8 @@ -41078,7 +41267,7 @@ https://www.rfc1437.de/2006/07/17/numbers-station/ - 2026-03-03T17:22:41.000Z + 2026-03-03T17:22:41.473Z monthly 0.8 @@ -41087,7 +41276,7 @@ https://www.rfc1437.de/2006/07/14/debian-hack-einbrecher-kam-ueber-bekannte-luecke/ - 2026-03-03T17:22:46.000Z + 2026-03-03T17:22:46.093Z monthly 0.8 @@ -41096,7 +41285,7 @@ https://www.rfc1437.de/2006/07/14/garfield-permanent-monday/ - 2026-03-03T17:22:50.000Z + 2026-03-03T17:22:50.170Z monthly 0.8 @@ -41105,7 +41294,7 @@ https://www.rfc1437.de/2006/07/14/gizmo-a-free-phone-for-your-computer/ - 2026-03-03T17:22:54.000Z + 2026-03-03T17:22:54.597Z monthly 0.8 @@ -41114,7 +41303,7 @@ https://www.rfc1437.de/2006/07/14/magnolia-hall-victorian-furniture/ - 2026-03-07T21:14:31.000Z + 2026-03-07T21:14:31.481Z monthly 0.8 @@ -41123,7 +41312,7 @@ https://www.rfc1437.de/2006/07/13/beatunes-build-better-playlists/ - 2026-03-03T17:23:01.000Z + 2026-03-03T17:23:01.894Z monthly 0.8 @@ -41132,7 +41321,7 @@ https://www.rfc1437.de/2006/07/12/pink-floyd-mitbegruender-syd-barrett-gestorben/ - 2026-03-03T17:23:06.000Z + 2026-03-03T17:23:06.403Z monthly 0.8 @@ -41141,7 +41330,7 @@ https://www.rfc1437.de/2006/07/11/blue-people-of-kentucky/ - 2026-03-07T21:14:32.000Z + 2026-03-07T21:14:32.201Z monthly 0.8 @@ -41150,7 +41339,7 @@ https://www.rfc1437.de/2006/07/11/the-phrontistery-obscure-words-and-vocabulary/ - 2026-03-03T17:23:14.000Z + 2026-03-03T17:23:14.605Z monthly 0.8 @@ -41159,7 +41348,7 @@ https://www.rfc1437.de/2006/07/10/enigma-homepage/ - 2026-03-03T17:23:18.000Z + 2026-03-03T17:23:18.255Z monthly 0.8 @@ -41168,7 +41357,7 @@ https://www.rfc1437.de/2006/07/10/galileo-verschluesselung-geknackt/ - 2026-03-03T17:23:22.000Z + 2026-03-03T17:23:22.340Z monthly 0.8 @@ -41177,7 +41366,7 @@ https://www.rfc1437.de/2006/07/10/landis-hat-osteonecrose/ - 2026-03-03T17:23:26.000Z + 2026-03-03T17:23:26.857Z monthly 0.8 @@ -41186,7 +41375,7 @@ https://www.rfc1437.de/2006/07/10/oxyd-extra/ - 2026-03-03T17:23:30.000Z + 2026-03-03T17:23:30.391Z monthly 0.8 @@ -41195,7 +41384,7 @@ https://www.rfc1437.de/2006/07/10/patent-auf-social-networking/ - 2026-03-03T17:23:34.000Z + 2026-03-03T17:23:34.777Z monthly 0.8 @@ -41204,7 +41393,7 @@ https://www.rfc1437.de/2006/07/10/running-linux-on-the-sony-ux-180p/ - 2026-03-07T21:14:35.000Z + 2026-03-07T21:14:35.067Z monthly 0.8 @@ -41213,7 +41402,7 @@ https://www.rfc1437.de/2006/07/10/suitable-systems-seismac/ - 2026-03-03T17:23:43.000Z + 2026-03-03T17:23:43.223Z monthly 0.8 @@ -41222,7 +41411,7 @@ https://www.rfc1437.de/2006/07/05/clpython-an-implementation-of-python-in-common-2/ - 2026-03-03T17:23:47.000Z + 2026-03-03T17:23:47.231Z monthly 0.8 @@ -41231,7 +41420,7 @@ https://www.rfc1437.de/2006/07/05/der-weltmeister-in-gruen-und-gelb/ - 2026-03-03T17:23:51.000Z + 2026-03-03T17:23:51.746Z monthly 0.8 @@ -41240,7 +41429,7 @@ https://www.rfc1437.de/2006/07/04/grosse-koalition-ueber-verschaerfung-der-anti/ - 2026-03-03T17:23:56.000Z + 2026-03-03T17:23:56.248Z monthly 0.8 @@ -41249,7 +41438,7 @@ https://www.rfc1437.de/2006/07/04/na-also-geht-doch/ - 2026-03-03T17:24:00.000Z + 2026-03-03T17:24:00.254Z monthly 0.8 @@ -41258,7 +41447,7 @@ https://www.rfc1437.de/2006/06/30/basso-auch-in-doping-skandal-verwickelt/ - 2026-03-03T17:24:04.000Z + 2026-03-03T17:24:04.755Z monthly 0.8 @@ -41267,7 +41456,7 @@ https://www.rfc1437.de/2006/06/30/oberster-gerichtshof-guantanamo-tribunale-illegal/ - 2026-03-03T17:24:10.000Z + 2026-03-03T17:24:10.539Z monthly 0.8 @@ -41276,7 +41465,7 @@ https://www.rfc1437.de/2006/06/30/textureshop/ - 2026-03-03T17:24:14.000Z + 2026-03-03T17:24:14.951Z monthly 0.8 @@ -41285,7 +41474,7 @@ https://www.rfc1437.de/2006/06/30/ullrich-sevilla-und-pevenage-vorerst-suspendiert/ - 2026-03-03T17:24:20.000Z + 2026-03-03T17:24:20.096Z monthly 0.8 @@ -41294,7 +41483,7 @@ https://www.rfc1437.de/2006/06/29/heise-online-googl-wgn-lnks-z-prdktflschrn-vrrtlt/ - 2026-03-03T17:24:25.000Z + 2026-03-03T17:24:25.782Z monthly 0.8 @@ -41303,7 +41492,7 @@ https://www.rfc1437.de/2006/06/29/omg-girlz-don-t-exist-on-teh-intarweb-1/ - 2026-03-03T17:24:30.000Z + 2026-03-03T17:24:30.411Z monthly 0.8 @@ -41312,7 +41501,7 @@ https://www.rfc1437.de/2006/06/29/wells-grants-in-part-ibm-s-motion-to-limit-sco-s/ - 2026-03-03T17:24:35.000Z + 2026-03-03T17:24:35.367Z monthly 0.8 @@ -41321,7 +41510,7 @@ https://www.rfc1437.de/2006/06/28/bankdaten-von-der-swift-abgepresst/ - 2026-03-03T17:24:40.000Z + 2026-03-03T17:24:40.141Z monthly 0.8 @@ -41330,7 +41519,7 @@ https://www.rfc1437.de/2006/06/28/conversation-with-boston-volkswagen/ - 2026-03-03T17:24:44.000Z + 2026-03-03T17:24:44.117Z monthly 0.8 @@ -41339,7 +41528,7 @@ https://www.rfc1437.de/2006/06/28/iview-multimedia-von-microsoft-aufgekauft/ - 2026-03-03T17:24:49.000Z + 2026-03-03T17:24:49.172Z monthly 0.8 @@ -41348,7 +41537,7 @@ https://www.rfc1437.de/2006/06/28/tinderbox-tinderbox-3-5/ - 2026-03-03T17:24:53.000Z + 2026-03-03T17:24:53.471Z monthly 0.8 @@ -41357,7 +41546,7 @@ https://www.rfc1437.de/2006/06/27/schrumpfkur-fuer-krankenkassen/ - 2026-03-03T17:24:58.000Z + 2026-03-03T17:24:58.916Z monthly 0.8 @@ -41366,7 +41555,7 @@ https://www.rfc1437.de/2006/06/26/30-milliarden-spende-fuer-bill-gates/ - 2026-03-03T17:25:04.000Z + 2026-03-03T17:25:04.280Z monthly 0.8 @@ -41375,7 +41564,7 @@ https://www.rfc1437.de/2006/06/26/58-profis-in-spanische-affaere-verwickelt/ - 2026-03-03T17:25:08.000Z + 2026-03-03T17:25:08.828Z monthly 0.8 @@ -41384,7 +41573,7 @@ https://www.rfc1437.de/2006/06/26/braunbaer-bruno-von-jaegern-getoetet/ - 2026-03-03T17:25:12.000Z + 2026-03-03T17:25:12.972Z monthly 0.8 @@ -41393,7 +41582,7 @@ https://www.rfc1437.de/2006/06/26/der-staat-entmachtet-sich-selbst/ - 2026-03-03T17:25:18.000Z + 2026-03-03T17:25:18.901Z monthly 0.8 @@ -41402,7 +41591,7 @@ https://www.rfc1437.de/2006/06/26/exploring-cocoa-with-f-script/ - 2026-03-03T17:25:22.000Z + 2026-03-03T17:25:22.847Z monthly 0.8 @@ -41411,7 +41600,7 @@ https://www.rfc1437.de/2006/06/26/freenode-gehackt/ - 2026-03-03T17:25:27.000Z + 2026-03-03T17:25:27.506Z monthly 0.8 @@ -41420,7 +41609,7 @@ https://www.rfc1437.de/2006/06/26/hartz-iv-missbrauch-unser-menschenbild-war-zu/ - 2026-03-03T17:25:32.000Z + 2026-03-03T17:25:32.489Z monthly 0.8 @@ -41429,7 +41618,7 @@ https://www.rfc1437.de/2006/06/26/microsoft-beerdigt-winfs/ - 2026-03-03T17:25:36.000Z + 2026-03-03T17:25:36.785Z monthly 0.8 @@ -41438,7 +41627,7 @@ https://www.rfc1437.de/2006/06/26/python-cheese-shop-saprfc-0-08/ - 2026-03-03T17:25:41.000Z + 2026-03-03T17:25:41.365Z monthly 0.8 @@ -41447,7 +41636,7 @@ https://www.rfc1437.de/2006/06/26/trotz-steigender-umsaetze-baut-industrie-stellen/ - 2026-03-03T17:25:46.000Z + 2026-03-03T17:25:46.021Z monthly 0.8 @@ -41456,7 +41645,7 @@ https://www.rfc1437.de/2006/06/26/verkauf-von-nrw-unikliniken/ - 2026-03-03T17:25:50.000Z + 2026-03-03T17:25:50.986Z monthly 0.8 @@ -41465,7 +41654,7 @@ https://www.rfc1437.de/2006/06/19/drscheme-2/ - 2026-03-03T17:25:55.000Z + 2026-03-03T17:25:55.154Z monthly 0.8 @@ -41474,7 +41663,7 @@ https://www.rfc1437.de/2006/06/19/generische-tabellenrelationen/ - 2026-03-03T17:25:59.000Z + 2026-03-03T17:25:59.303Z monthly 0.8 @@ -41483,7 +41672,7 @@ https://www.rfc1437.de/2006/06/19/grosser-rueckschlag-fuer-walfanggegner/ - 2026-03-03T17:26:03.000Z + 2026-03-03T17:26:03.452Z monthly 0.8 @@ -41492,7 +41681,7 @@ https://www.rfc1437.de/2006/06/19/handys-sind-wegwerfprodukte/ - 2026-03-03T17:26:08.000Z + 2026-03-03T17:26:08.494Z monthly 0.8 @@ -41501,7 +41690,7 @@ https://www.rfc1437.de/2006/06/19/jan-ullrich-legt-auf/ - 2026-03-03T17:26:13.000Z + 2026-03-03T17:26:13.029Z monthly 0.8 @@ -41510,7 +41699,7 @@ https://www.rfc1437.de/2006/06/19/wengophone-voip-done-right/ - 2026-03-03T17:26:17.000Z + 2026-03-03T17:26:17.719Z monthly 0.8 @@ -41519,7 +41708,7 @@ https://www.rfc1437.de/2006/06/16/allegro-common-lisp-express/ - 2026-03-03T17:26:22.000Z + 2026-03-03T17:26:22.463Z monthly 0.8 @@ -41528,7 +41717,7 @@ https://www.rfc1437.de/2006/06/16/urteil-vorabpruefung-von-forenbeitraegen-ist/ - 2026-03-03T17:26:27.000Z + 2026-03-03T17:26:27.372Z monthly 0.8 @@ -41537,7 +41726,7 @@ https://www.rfc1437.de/2006/06/14/automatic-pickle-serialization-and/ - 2026-03-03T17:26:31.000Z + 2026-03-03T17:26:31.734Z monthly 0.8 @@ -41546,7 +41735,7 @@ https://www.rfc1437.de/2006/06/12/bundestag-beschliesst-staatlich-verordnetes/ - 2026-03-03T17:26:37.000Z + 2026-03-03T17:26:37.646Z monthly 0.8 @@ -41555,7 +41744,7 @@ https://www.rfc1437.de/2006/06/12/die-welt-nackt-zu-gast-bei-freunden/ - 2026-03-03T17:26:43.000Z + 2026-03-03T17:26:43.337Z monthly 0.8 @@ -41564,7 +41753,7 @@ https://www.rfc1437.de/2006/06/12/frueherer-bnd-spitzel-belastet-hanning-tagesschau/ - 2026-03-03T17:26:48.000Z + 2026-03-03T17:26:48.743Z monthly 0.8 @@ -41573,7 +41762,7 @@ https://www.rfc1437.de/2006/06/12/microsoft-s-calling-home-problem/ - 2026-03-03T17:26:52.000Z + 2026-03-03T17:26:52.879Z monthly 0.8 @@ -41582,7 +41771,7 @@ https://www.rfc1437.de/2006/06/12/speaking-frankly-from-leitz-sublime-to-leica/ - 2026-03-03T17:26:58.000Z + 2026-03-03T17:26:58.286Z monthly 0.8 @@ -41591,7 +41780,7 @@ https://www.rfc1437.de/2006/06/09/mcdonald-s-interactive-division/ - 2026-03-03T17:27:02.000Z + 2026-03-03T17:27:02.357Z monthly 0.8 @@ -41600,7 +41789,7 @@ https://www.rfc1437.de/2006/06/09/tod-eines-unschuldigen-bleibt-ohne-juristische/ - 2026-03-03T17:27:07.000Z + 2026-03-03T17:27:07.019Z monthly 0.8 @@ -41609,7 +41798,7 @@ https://www.rfc1437.de/2006/06/09/us-repraesentantenhaus-stimmt-gegen/ - 2026-03-03T17:27:11.000Z + 2026-03-03T17:27:11.482Z monthly 0.8 @@ -41618,7 +41807,7 @@ https://www.rfc1437.de/2006/06/07/skypeout-das-aus/ - 2026-03-03T17:27:16.000Z + 2026-03-03T17:27:16.169Z monthly 0.8 @@ -41627,7 +41816,7 @@ https://www.rfc1437.de/2006/06/06/create-sl-objects-in-blender-if-you-dare/ - 2026-03-03T17:27:20.000Z + 2026-03-03T17:27:20.686Z monthly 0.8 @@ -41636,7 +41825,7 @@ https://www.rfc1437.de/2006/06/06/sony-10-megapixel-kamera-mit-staubwedel-aus-der/ - 2026-03-03T17:27:25.000Z + 2026-03-03T17:27:25.193Z monthly 0.8 @@ -41645,7 +41834,7 @@ https://www.rfc1437.de/2006/06/02/caller-id-spoofing/ - 2026-03-03T17:27:29.000Z + 2026-03-03T17:27:29.298Z monthly 0.8 @@ -41654,7 +41843,7 @@ https://www.rfc1437.de/2006/06/02/rolling-stone-was-the-2004-election-stolen/ - 2026-03-03T17:27:34.000Z + 2026-03-03T17:27:34.091Z monthly 0.8 @@ -41663,7 +41852,7 @@ https://www.rfc1437.de/2006/06/01/olg-frankfurt-online-demonstration-ist-keine/ - 2026-03-03T17:27:38.000Z + 2026-03-03T17:27:38.662Z monthly 0.8 @@ -41672,7 +41861,7 @@ https://www.rfc1437.de/2006/05/31/digitale-messsucherkamera-epson-r-d1s-kommt/ - 2026-03-03T17:27:43.000Z + 2026-03-03T17:27:43.239Z monthly 0.8 @@ -41681,7 +41870,7 @@ https://www.rfc1437.de/2006/05/31/steptalk/ - 2026-03-03T17:27:46.000Z + 2026-03-03T17:27:46.887Z monthly 0.8 @@ -41690,7 +41879,7 @@ https://www.rfc1437.de/2006/05/31/the-illustrated-nethack-monsters/ - 2026-03-03T17:27:51.000Z + 2026-03-03T17:27:51.060Z monthly 0.8 @@ -41699,7 +41888,7 @@ https://www.rfc1437.de/2006/05/29/basso-deklassiert-die-konkurrenz/ - 2026-03-03T17:27:55.000Z + 2026-03-03T17:27:55.656Z monthly 0.8 @@ -41708,7 +41897,7 @@ https://www.rfc1437.de/2006/05/29/beleidigte-italienische-leberwurst/ - 2026-03-03T17:27:59.000Z + 2026-03-03T17:27:59.747Z monthly 0.8 @@ -41717,7 +41906,7 @@ https://www.rfc1437.de/2006/05/29/die-quelltexte-fuer-ucsd-pascal-sind-frei/ - 2026-03-03T17:28:04.000Z + 2026-03-03T17:28:04.361Z monthly 0.8 @@ -41726,7 +41915,7 @@ https://www.rfc1437.de/2006/05/29/feedjack-a-django-python-powered-feed-aggregator/ - 2026-03-03T17:28:08.000Z + 2026-03-03T17:28:08.921Z monthly 0.8 @@ -41735,7 +41924,7 @@ https://www.rfc1437.de/2006/05/29/microsoft-moechte-kooperierende-redaktionen/ - 2026-03-03T17:28:13.000Z + 2026-03-03T17:28:13.523Z monthly 0.8 @@ -41744,7 +41933,7 @@ https://www.rfc1437.de/2006/05/29/pl-1-for-gcc/ - 2026-03-03T17:28:17.000Z + 2026-03-03T17:28:17.636Z monthly 0.8 @@ -41753,7 +41942,7 @@ https://www.rfc1437.de/2006/05/29/pycells-and-peak-events/ - 2026-03-03T17:28:22.000Z + 2026-03-03T17:28:22.334Z monthly 0.8 @@ -41762,7 +41951,7 @@ https://www.rfc1437.de/2006/05/29/theorie-fuer-tarnkappen/ - 2026-03-03T17:28:26.000Z + 2026-03-03T17:28:26.355Z monthly 0.8 @@ -41771,7 +41960,7 @@ https://www.rfc1437.de/2006/05/29/us-patentamt-weist-ansprueche-in-forgents-jpeg/ - 2026-03-03T17:28:30.000Z + 2026-03-03T17:28:30.518Z monthly 0.8 @@ -41780,7 +41969,7 @@ https://www.rfc1437.de/2006/05/26/medallia-blog-smackbook-pro/ - 2026-03-03T17:28:35.000Z + 2026-03-03T17:28:35.432Z monthly 0.8 @@ -41789,7 +41978,7 @@ https://www.rfc1437.de/2006/05/26/o-reilly-trademarks-web-2-0-and-sets-lawyers-on/ - 2026-03-03T17:28:41.000Z + 2026-03-03T17:28:41.078Z monthly 0.8 @@ -41798,7 +41987,7 @@ https://www.rfc1437.de/2006/05/26/safari-tidy-plugin/ - 2026-03-03T17:28:45.000Z + 2026-03-03T17:28:45.106Z monthly 0.8 @@ -41807,7 +41996,7 @@ https://www.rfc1437.de/2006/05/26/x48-emulator/ - 2026-03-03T17:28:49.000Z + 2026-03-03T17:28:49.093Z monthly 0.8 @@ -41816,7 +42005,7 @@ https://www.rfc1437.de/2006/05/24/bild-kneift-vor-bluem/ - 2026-03-03T17:28:54.000Z + 2026-03-03T17:28:54.850Z monthly 0.8 @@ -41825,7 +42014,7 @@ https://www.rfc1437.de/2006/05/22/are-you-generic/ - 2026-03-03T17:28:59.000Z + 2026-03-03T17:28:59.053Z monthly 0.8 @@ -41834,7 +42023,7 @@ https://www.rfc1437.de/2006/05/22/free42-for-zaurus-x-qt-and-nokia-770/ - 2026-03-03T17:29:03.000Z + 2026-03-03T17:29:03.401Z monthly 0.8 @@ -41843,7 +42032,7 @@ https://www.rfc1437.de/2006/05/22/mytunesrss/ - 2026-03-03T17:29:08.000Z + 2026-03-03T17:29:08.016Z monthly 0.8 @@ -41852,7 +42041,7 @@ https://www.rfc1437.de/2006/05/22/rogue-amoeba-nicecast-for-mac-os-x/ - 2026-03-03T17:29:12.000Z + 2026-03-03T17:29:12.926Z monthly 0.8 @@ -41861,7 +42050,7 @@ https://www.rfc1437.de/2006/05/19/klinikstreik-sind-kassenpatienten-keine-notfaelle/ - 2026-03-03T17:29:18.000Z + 2026-03-03T17:29:18.239Z monthly 0.8 @@ -41870,7 +42059,7 @@ https://www.rfc1437.de/2006/05/19/us-richter-weist-masris-folter-klage-gegen-cia-ab/ - 2026-03-03T17:29:22.000Z + 2026-03-03T17:29:22.944Z monthly 0.8 @@ -41879,7 +42068,7 @@ https://www.rfc1437.de/2006/05/18/mgtalk-google-talk-for-mobile/ - 2026-03-03T17:29:27.000Z + 2026-03-03T17:29:27.066Z monthly 0.8 @@ -41888,7 +42077,7 @@ https://www.rfc1437.de/2006/05/18/what-happened-to-dynamic-range/ - 2026-03-03T17:29:31.000Z + 2026-03-03T17:29:31.082Z monthly 0.8 @@ -41897,7 +42086,7 @@ https://www.rfc1437.de/2006/05/17/adactio-journal-the-ugly-american/ - 2026-03-03T17:29:35.000Z + 2026-03-03T17:29:35.696Z monthly 0.8 @@ -41906,7 +42095,7 @@ https://www.rfc1437.de/2006/05/17/kauder-warnt-vor-veroeffentlichung-des-bnd/ - 2026-03-03T17:29:40.000Z + 2026-03-03T17:29:40.322Z monthly 0.8 @@ -41915,7 +42104,7 @@ https://www.rfc1437.de/2006/05/17/neue-macbooks/ - 2026-03-03T17:29:44.000Z + 2026-03-03T17:29:44.984Z monthly 0.8 @@ -41924,7 +42113,7 @@ https://www.rfc1437.de/2006/05/16/debunking-linus-s-latest/ - 2026-03-03T17:29:49.000Z + 2026-03-03T17:29:49.137Z monthly 0.8 @@ -41933,7 +42122,7 @@ https://www.rfc1437.de/2006/05/16/nokia-announces-the-internet-tablet-2006-os-update/ - 2026-03-03T17:29:54.000Z + 2026-03-03T17:29:54.255Z monthly 0.8 @@ -41942,7 +42131,7 @@ https://www.rfc1437.de/2006/05/16/tanenbaum-torvalds-debate-part-ii/ - 2026-03-03T17:29:58.000Z + 2026-03-03T17:29:58.427Z monthly 0.8 @@ -41951,7 +42140,7 @@ https://www.rfc1437.de/2006/05/15/in-den-muehlen-der-fuersorge/ - 2026-03-03T17:30:02.000Z + 2026-03-03T17:30:02.573Z monthly 0.8 @@ -41960,7 +42149,7 @@ https://www.rfc1437.de/2006/05/15/rwe-der-profit-der-aus-der-kaelte-kam/ - 2026-03-03T17:30:07.000Z + 2026-03-03T17:30:07.275Z monthly 0.8 @@ -41969,7 +42158,7 @@ https://www.rfc1437.de/2006/05/14/nokia-will-google-talk-vorinstallieren/ - 2026-03-03T17:30:11.000Z + 2026-03-03T17:30:11.398Z monthly 0.8 @@ -41978,7 +42167,7 @@ https://www.rfc1437.de/2006/05/12/schneier-on-security-major-vulnerability-found-in/ - 2026-03-03T17:30:16.000Z + 2026-03-03T17:30:16.384Z monthly 0.8 @@ -41987,7 +42176,7 @@ https://www.rfc1437.de/2006/05/09/bluetooth-sig-idioten-am-ruder/ - 2026-03-03T17:30:21.000Z + 2026-03-03T17:30:21.573Z monthly 0.8 @@ -41996,7 +42185,7 @@ https://www.rfc1437.de/2006/05/09/heise-online-lg-duesseldorf-forenhaftung-erst-ab/ - 2026-03-03T17:30:26.000Z + 2026-03-03T17:30:26.684Z monthly 0.8 @@ -42005,7 +42194,7 @@ https://www.rfc1437.de/2006/05/09/rotten-effort/ - 2026-03-03T17:30:30.000Z + 2026-03-03T17:30:30.932Z monthly 0.8 @@ -42014,7 +42203,7 @@ https://www.rfc1437.de/2006/05/08/hashcaml/ - 2026-03-03T17:30:35.000Z + 2026-03-03T17:30:35.635Z monthly 0.8 @@ -42023,7 +42212,7 @@ https://www.rfc1437.de/2006/05/07/ab-in-den-asozialstaat/ - 2026-03-03T17:30:41.000Z + 2026-03-03T17:30:41.452Z monthly 0.8 @@ -42032,7 +42221,7 @@ https://www.rfc1437.de/2006/05/06/django-for-non-programmers/ - 2026-03-03T17:30:45.000Z + 2026-03-03T17:30:45.741Z monthly 0.8 @@ -42041,7 +42230,7 @@ https://www.rfc1437.de/2006/05/02/aldag-gewinnt-eigenes-abschiedsrennen/ - 2026-03-03T17:30:50.000Z + 2026-03-03T17:30:50.071Z monthly 0.8 @@ -42050,7 +42239,7 @@ https://www.rfc1437.de/2006/05/02/django-weblog-magic-removal-branch-merged/ - 2026-03-03T17:30:54.000Z + 2026-03-03T17:30:54.397Z monthly 0.8 @@ -42059,7 +42248,7 @@ https://www.rfc1437.de/2006/05/02/how-to-cure-your-asthma-or-hayfever-using/ - 2026-03-03T17:30:59.000Z + 2026-03-03T17:30:59.081Z monthly 0.8 @@ -42068,7 +42257,7 @@ https://www.rfc1437.de/2006/05/02/workbench-settlement-reached-with-dave-winer/ - 2026-03-03T17:31:03.000Z + 2026-03-03T17:31:03.840Z monthly 0.8 @@ -42077,7 +42266,7 @@ https://www.rfc1437.de/2006/04/29/wenn-firmen-ihren-doppelgaenger-treffen/ - 2026-03-03T17:31:07.000Z + 2026-03-03T17:31:07.989Z monthly 0.8 @@ -42086,7 +42275,7 @@ https://www.rfc1437.de/2006/04/28/das-waren-die-roots-wie-das-internet-nach/ - 2026-03-03T17:31:12.000Z + 2026-03-03T17:31:12.578Z monthly 0.8 @@ -42095,7 +42284,7 @@ https://www.rfc1437.de/2006/04/27/geruecht-apple-hat-aperture-entwicklungsteam/ - 2026-03-03T17:31:16.000Z + 2026-03-03T17:31:16.827Z monthly 0.8 @@ -42104,7 +42293,7 @@ https://www.rfc1437.de/2006/04/27/oberon-script-a-lightweight-compiler-and-runtime/ - 2026-03-03T17:31:20.000Z + 2026-03-03T17:31:20.939Z monthly 0.8 @@ -42113,7 +42302,7 @@ https://www.rfc1437.de/2006/04/27/world-press-photos-2005-deutschlandpremiere-in/ - 2026-03-03T17:31:25.000Z + 2026-03-03T17:31:25.485Z monthly 0.8 @@ -42122,7 +42311,7 @@ https://www.rfc1437.de/2006/04/26/mamiya-to-sell-camera-division/ - 2026-03-03T17:31:29.000Z + 2026-03-03T17:31:29.685Z monthly 0.8 @@ -42131,7 +42320,7 @@ https://www.rfc1437.de/2006/04/26/wasg-bundesvorstandsmitglied-wechselt-zur-npd/ - 2026-03-03T17:31:34.000Z + 2026-03-03T17:31:34.908Z monthly 0.8 @@ -42140,7 +42329,7 @@ https://www.rfc1437.de/2006/04/24/hyperlink-prozess-netzaktivist-erneut/ - 2026-03-03T17:31:39.000Z + 2026-03-03T17:31:39.137Z monthly 0.8 @@ -42149,7 +42338,7 @@ https://www.rfc1437.de/2006/04/24/netzwerk-spiele/ - 2026-03-03T17:31:44.000Z + 2026-03-03T17:31:44.440Z monthly 0.8 @@ -42158,7 +42347,7 @@ https://www.rfc1437.de/2006/04/23/pur3d-de-texturen/ - 2026-03-03T17:31:48.000Z + 2026-03-03T17:31:48.638Z monthly 0.8 @@ -42167,7 +42356,7 @@ https://www.rfc1437.de/2006/04/23/uvmapper/ - 2026-03-07T21:14:35.000Z + 2026-03-07T21:14:35.673Z monthly 0.8 @@ -42176,7 +42365,7 @@ https://www.rfc1437.de/2006/04/22/aol-de-zugang/ - 2026-03-03T17:31:56.000Z + 2026-03-03T17:31:56.498Z monthly 0.8 @@ -42185,7 +42374,7 @@ https://www.rfc1437.de/2006/04/22/kritische-sicherheitsluecken-in-mac-os-x/ - 2026-03-03T17:32:01.000Z + 2026-03-03T17:32:01.067Z monthly 0.8 @@ -42194,7 +42383,7 @@ https://www.rfc1437.de/2006/04/21/empoerung-ueber-schaeuble/ - 2026-03-03T17:32:05.000Z + 2026-03-03T17:32:05.203Z monthly 0.8 @@ -42203,7 +42392,7 @@ https://www.rfc1437.de/2006/04/21/gazprom-droht-eu-mit-gas-entzug/ - 2026-03-03T17:32:09.000Z + 2026-03-03T17:32:09.874Z monthly 0.8 @@ -42212,7 +42401,7 @@ https://www.rfc1437.de/2006/04/21/metasploit-exploit-development-groupwise/ - 2026-03-03T17:32:15.000Z + 2026-03-03T17:32:15.149Z monthly 0.8 @@ -42221,7 +42410,7 @@ https://www.rfc1437.de/2006/04/21/neues-von-den-christianismus-mullahs/ - 2026-03-03T17:32:21.000Z + 2026-03-03T17:32:21.404Z monthly 0.8 @@ -42230,7 +42419,7 @@ https://www.rfc1437.de/2006/04/21/pioneer-anomalie-raetselhafte-kraft-im-al/ - 2026-03-03T17:32:25.000Z + 2026-03-03T17:32:25.982Z monthly 0.8 @@ -42239,7 +42428,7 @@ https://www.rfc1437.de/2006/04/21/yes-finally-me-too/ - 2026-03-03T17:32:30.000Z + 2026-03-03T17:32:30.193Z monthly 0.8 @@ -42248,7 +42437,7 @@ https://www.rfc1437.de/2006/04/19/philips-will-umschalten-in-werbepausen-verhindern/ - 2026-03-03T17:32:34.000Z + 2026-03-03T17:32:34.568Z monthly 0.8 @@ -42257,7 +42446,7 @@ https://www.rfc1437.de/2006/04/19/volksverhetzung-teil-iii-staatsanwalt-gegen-alvar/ - 2026-03-03T17:32:38.000Z + 2026-03-03T17:32:38.826Z monthly 0.8 @@ -42266,7 +42455,7 @@ https://www.rfc1437.de/2006/04/18/open-letter-to-d-link-about-their-ntp-vandalism/ - 2026-03-03T17:32:42.000Z + 2026-03-03T17:32:42.900Z monthly 0.8 @@ -42275,7 +42464,7 @@ https://www.rfc1437.de/2006/04/18/spd-besteht-auf-bagatellklausel-fuer-kopien/ - 2026-03-03T17:32:47.000Z + 2026-03-03T17:32:47.546Z monthly 0.8 @@ -42284,7 +42473,7 @@ https://www.rfc1437.de/2006/04/18/tibet-bei-wikipedia-und-faz/ - 2026-03-03T17:32:55.000Z + 2026-03-03T17:32:55.678Z monthly 0.8 @@ -42293,7 +42482,7 @@ https://www.rfc1437.de/2006/04/18/yummy-mummy-feeds-young-its-skin/ - 2026-03-03T17:33:00.000Z + 2026-03-03T17:33:00.891Z monthly 0.8 @@ -42302,7 +42491,7 @@ https://www.rfc1437.de/2006/04/16/virtuelle-welten-und-angriffsszenarien/ - 2026-03-03T17:33:06.000Z + 2026-03-03T17:33:06.697Z monthly 0.8 @@ -42311,7 +42500,7 @@ https://www.rfc1437.de/2006/04/14/hamburger-landgericht-forenbetreiber-sind-fuer/ - 2026-03-03T17:33:11.000Z + 2026-03-03T17:33:11.445Z monthly 0.8 @@ -42320,7 +42509,7 @@ https://www.rfc1437.de/2006/04/13/2003-ub313-zehnter-planet-kaum-groesser-als-pluto/ - 2026-03-03T17:33:16.000Z + 2026-03-03T17:33:16.311Z monthly 0.8 @@ -42329,7 +42518,7 @@ https://www.rfc1437.de/2006/04/13/get-a-life-core-wars-tierra/ - 2026-03-03T17:33:21.000Z + 2026-03-03T17:33:21.050Z monthly 0.8 @@ -42338,7 +42527,7 @@ https://www.rfc1437.de/2006/04/13/texas-judge-orders-medication-for-inmate/ - 2026-03-03T17:33:27.000Z + 2026-03-03T17:33:27.091Z monthly 0.8 @@ -42347,7 +42536,7 @@ https://www.rfc1437.de/2006/04/11/umts-ueber-vodafone-und-sony-ericsson-v600i-v600/ - 2026-03-03T17:33:32.000Z + 2026-03-03T17:33:32.331Z monthly 0.8 @@ -42356,7 +42545,7 @@ https://www.rfc1437.de/2006/04/10/bundesrat-liebaeugelt-mit-softwarepatenten/ - 2026-03-03T17:33:36.000Z + 2026-03-03T17:33:36.846Z monthly 0.8 @@ -42365,7 +42554,7 @@ https://www.rfc1437.de/2006/04/10/phi-the-golden-ratio/ - 2026-03-03T17:33:41.000Z + 2026-03-03T17:33:41.020Z monthly 0.8 @@ -42374,7 +42563,7 @@ https://www.rfc1437.de/2006/04/10/the-nonsense-about-adsense/ - 2026-03-03T17:33:45.000Z + 2026-03-03T17:33:45.170Z monthly 0.8 @@ -42383,7 +42572,7 @@ https://www.rfc1437.de/2006/04/08/rechteinhaber-wlln-sknft-vn-prvdrn-hn-rchtrbschlss/ - 2026-03-03T17:33:49.000Z + 2026-03-03T17:33:49.765Z monthly 0.8 @@ -42392,7 +42581,7 @@ https://www.rfc1437.de/2006/04/07/experte-google-earth-gefaehrdet-wm-sicherheit/ - 2026-03-03T17:33:53.000Z + 2026-03-03T17:33:53.796Z monthly 0.8 @@ -42401,7 +42590,7 @@ https://www.rfc1437.de/2006/04/06/eiffel-entwicklungsumgebung-wird-open-source/ - 2026-03-03T17:33:57.000Z + 2026-03-03T17:33:57.926Z monthly 0.8 @@ -42410,7 +42599,7 @@ https://www.rfc1437.de/2006/04/06/man-was-enduring-the-dentist-s-drill-9-000-years/ - 2026-03-03T17:34:03.000Z + 2026-03-03T17:34:03.120Z monthly 0.8 @@ -42419,7 +42608,7 @@ https://www.rfc1437.de/2006/04/06/patent-busting-eff-gegen-patent-auf-online/ - 2026-03-03T17:34:07.000Z + 2026-03-03T17:34:07.134Z monthly 0.8 @@ -42428,7 +42617,7 @@ https://www.rfc1437.de/2006/04/06/python-3000-adaptation-or-generic-functions/ - 2026-03-03T17:34:11.000Z + 2026-03-03T17:34:11.780Z monthly 0.8 @@ -42437,7 +42626,7 @@ https://www.rfc1437.de/2006/04/06/things-nobody-tells-you-about-the-south-pole/ - 2026-03-03T17:34:15.000Z + 2026-03-03T17:34:15.952Z monthly 0.8 @@ -42446,7 +42635,7 @@ https://www.rfc1437.de/2006/04/04/maemo-development-platform-roadmap/ - 2026-03-03T17:34:19.000Z + 2026-03-03T17:34:19.911Z monthly 0.8 @@ -42455,7 +42644,7 @@ https://www.rfc1437.de/2006/04/02/colorblind-web-page-filter/ - 2026-03-03T17:34:23.000Z + 2026-03-03T17:34:23.925Z monthly 0.8 @@ -42464,7 +42653,7 @@ https://www.rfc1437.de/2006/04/01/apple-converts-xserves-from-powerpc-to-amd/ - 2026-03-03T17:34:28.000Z + 2026-03-03T17:34:28.462Z monthly 0.8 @@ -42473,7 +42662,7 @@ https://www.rfc1437.de/2006/04/01/deutsche-bahn-wird-zum-dsl-anbieter/ - 2026-03-03T17:34:32.000Z + 2026-03-03T17:34:32.624Z monthly 0.8 @@ -42482,7 +42671,7 @@ https://www.rfc1437.de/2006/04/01/ip-adressen-fuer-die-eitelkeit/ - 2026-03-03T17:34:36.000Z + 2026-03-03T17:34:36.860Z monthly 0.8 @@ -42491,7 +42680,7 @@ https://www.rfc1437.de/2006/04/01/wordpattern/ - 2026-03-03T17:34:40.000Z + 2026-03-03T17:34:40.281Z monthly 0.8 @@ -42500,7 +42689,7 @@ https://www.rfc1437.de/2006/03/31/bildungsziel-mythos-statt-wissen-pressemitteilngws/ - 2026-03-03T17:34:46.000Z + 2026-03-03T17:34:46.726Z monthly 0.8 @@ -42509,7 +42698,7 @@ https://www.rfc1437.de/2006/03/31/ibm-offers-bounty-for-exchange-customers/ - 2026-03-03T17:34:51.000Z + 2026-03-03T17:34:51.365Z monthly 0.8 @@ -42518,7 +42707,7 @@ https://www.rfc1437.de/2006/03/31/python-constraint/ - 2026-03-03T17:34:55.000Z + 2026-03-03T17:34:55.600Z monthly 0.8 @@ -42527,7 +42716,7 @@ https://www.rfc1437.de/2006/03/30/geogen/ - 2026-03-03T17:34:59.000Z + 2026-03-03T17:34:59.521Z monthly 0.8 @@ -42536,7 +42725,7 @@ https://www.rfc1437.de/2006/03/30/merquery-text-indexing-and-search-with-a-focus/ - 2026-03-03T17:35:04.000Z + 2026-03-03T17:35:04.093Z monthly 0.8 @@ -42545,7 +42734,7 @@ https://www.rfc1437.de/2006/03/30/the-spider-of-doom/ - 2026-03-03T17:35:08.000Z + 2026-03-03T17:35:08.052Z monthly 0.8 @@ -42554,7 +42743,7 @@ https://www.rfc1437.de/2006/03/29/backfire-fuer-transparency-international/ - 2026-03-03T17:35:13.000Z + 2026-03-03T17:35:13.665Z monthly 0.8 @@ -42563,7 +42752,7 @@ https://www.rfc1437.de/2006/03/29/muente-schickt-vereinbarung-zum-kuendigungsschutz/ - 2026-03-03T17:35:18.000Z + 2026-03-03T17:35:18.900Z monthly 0.8 @@ -42572,7 +42761,7 @@ https://www.rfc1437.de/2006/03/29/ullrich-verschiebt-saisondebuet/ - 2026-03-03T17:35:24.000Z + 2026-03-03T17:35:24.058Z monthly 0.8 @@ -42581,7 +42770,7 @@ https://www.rfc1437.de/2006/03/28/microsoft-drohung-mit-patentklagen-in-den-usa/ - 2026-03-03T17:35:29.000Z + 2026-03-03T17:35:29.186Z monthly 0.8 @@ -42590,7 +42779,7 @@ https://www.rfc1437.de/2006/03/28/seed-prime-numbers-get-hitched-2/ - 2026-03-03T17:35:34.000Z + 2026-03-03T17:35:34.781Z monthly 0.8 @@ -42599,7 +42788,7 @@ https://www.rfc1437.de/2006/03/27/iq-forscher-nennt-deutsche-kluegste-europaeer/ - 2026-03-03T17:35:40.000Z + 2026-03-03T17:35:40.514Z monthly 0.8 @@ -42608,7 +42797,7 @@ https://www.rfc1437.de/2006/03/27/spd-fraktion-lehnt-neues-urheberrecht-ab/ - 2026-03-03T17:35:47.000Z + 2026-03-03T17:35:47.657Z monthly 0.8 @@ -42617,7 +42806,7 @@ https://www.rfc1437.de/2006/03/26/nasa-sonde-macht-superfoto-vom-mars/ - 2026-03-03T17:35:51.000Z + 2026-03-03T17:35:51.913Z monthly 0.8 @@ -42626,7 +42815,7 @@ https://www.rfc1437.de/2006/03/25/ajaxwrite/ - 2026-03-03T17:35:56.000Z + 2026-03-03T17:35:56.204Z monthly 0.8 @@ -42635,7 +42824,7 @@ https://www.rfc1437.de/2006/03/25/the-mac-os-mud-zone-clients/ - 2026-03-03T17:36:00.000Z + 2026-03-03T17:36:00.538Z monthly 0.8 @@ -42644,7 +42833,7 @@ https://www.rfc1437.de/2006/03/25/trnsprncy-ntrntnl-mg-kn-krtk-nd-schckt-dn-nwlt-g/ - 2026-03-03T17:36:06.000Z + 2026-03-03T17:36:06.018Z monthly 0.8 @@ -42653,7 +42842,7 @@ https://www.rfc1437.de/2006/03/24/virtueller-big-brother/ - 2026-03-03T17:36:11.000Z + 2026-03-03T17:36:11.881Z monthly 0.8 @@ -42662,7 +42851,7 @@ https://www.rfc1437.de/2006/03/23/bundesjustizministerin-ohne-durchblick/ - 2026-03-03T17:36:17.000Z + 2026-03-03T17:36:17.320Z monthly 0.8 @@ -42671,7 +42860,7 @@ https://www.rfc1437.de/2006/03/22/empoerung-ueber-drohendes-todesurteil-gegen-x-mslm/ - 2026-03-03T17:36:23.000Z + 2026-03-03T17:36:23.238Z monthly 0.8 @@ -42680,7 +42869,7 @@ https://www.rfc1437.de/2006/03/22/urteil-dolzers-domain-engel-darf-nicht-zuschlagen/ - 2026-03-03T17:36:29.000Z + 2026-03-03T17:36:29.101Z monthly 0.8 @@ -42689,7 +42878,7 @@ https://www.rfc1437.de/2006/03/21/open-source-web-design/ - 2026-03-03T17:36:33.000Z + 2026-03-03T17:36:33.354Z monthly 0.8 @@ -42698,7 +42887,7 @@ https://www.rfc1437.de/2006/03/20/abmahnwahn-gibts-ueberall/ - 2026-03-03T17:36:39.000Z + 2026-03-03T17:36:39.429Z monthly 0.8 @@ -42707,7 +42896,7 @@ https://www.rfc1437.de/2006/03/20/erschreckend/ - 2026-03-03T17:36:44.000Z + 2026-03-03T17:36:44.906Z monthly 0.8 @@ -42716,7 +42905,7 @@ https://www.rfc1437.de/2006/03/20/meinungsfreiheit-ala-euroweb/ - 2026-03-03T17:36:50.000Z + 2026-03-03T17:36:50.946Z monthly 0.8 @@ -42725,7 +42914,7 @@ https://www.rfc1437.de/2006/03/20/und-weil-die-absurditaeten-noch-nicht-reichen/ - 2026-03-03T17:36:55.000Z + 2026-03-03T17:36:55.685Z monthly 0.8 @@ -42734,7 +42923,7 @@ https://www.rfc1437.de/2006/03/18/die-froesche-machen-einen-schwindelig/ - 2026-03-03T17:37:02.000Z + 2026-03-03T17:37:02.053Z monthly 0.8 @@ -42743,7 +42932,7 @@ https://www.rfc1437.de/2006/03/18/muensterland-giro-als-profi-rennen/ - 2026-03-03T17:37:08.000Z + 2026-03-03T17:37:08.871Z monthly 0.8 @@ -42752,7 +42941,7 @@ https://www.rfc1437.de/2006/03/18/ps3-kommt-mit-linux/ - 2026-03-03T17:37:15.000Z + 2026-03-03T17:37:15.299Z monthly 0.8 @@ -42761,7 +42950,7 @@ https://www.rfc1437.de/2006/03/18/tolles-sap-betriebsklima/ - 2026-03-03T17:37:20.000Z + 2026-03-03T17:37:20.482Z monthly 0.8 @@ -42770,7 +42959,7 @@ https://www.rfc1437.de/2006/03/18/was-machen-wenn-man-verklagt-wird/ - 2026-03-03T17:37:25.000Z + 2026-03-03T17:37:25.234Z monthly 0.8 @@ -42779,7 +42968,7 @@ https://www.rfc1437.de/2006/03/16/dave-winer-breakdown/ - 2026-03-03T17:37:31.000Z + 2026-03-03T17:37:31.342Z monthly 0.8 @@ -42788,7 +42977,7 @@ https://www.rfc1437.de/2006/03/16/google-kauft-sketchup/ - 2026-03-03T17:37:37.000Z + 2026-03-03T17:37:37.911Z monthly 0.8 @@ -42797,7 +42986,7 @@ https://www.rfc1437.de/2006/03/16/horizon/ - 2026-03-03T17:37:41.000Z + 2026-03-03T17:37:41.606Z monthly 0.8 @@ -42806,7 +42995,7 @@ https://www.rfc1437.de/2006/03/16/tud-os-tu-dresden-operating-systems/ - 2026-03-03T17:37:46.000Z + 2026-03-03T17:37:46.560Z monthly 0.8 @@ -42815,7 +43004,7 @@ https://www.rfc1437.de/2006/03/14/karlsruhe-rezzo-schlauch-beraet-enbw-nachrichten/ - 2026-03-03T17:37:51.000Z + 2026-03-03T17:37:51.945Z monthly 0.8 @@ -42824,7 +43013,7 @@ https://www.rfc1437.de/2006/03/13/avimator/ - 2026-03-03T17:50:41.000Z + 2026-03-03T17:50:41.039Z monthly 0.8 @@ -42833,7 +43022,7 @@ https://www.rfc1437.de/2006/03/13/demonstranten-niederreiten/ - 2026-03-03T17:50:44.000Z + 2026-03-03T17:50:44.293Z monthly 0.8 @@ -42842,7 +43031,7 @@ https://www.rfc1437.de/2006/03/13/lambdamoo-with-lambdamoo-map-an-introduction/ - 2026-03-03T17:50:47.000Z + 2026-03-03T17:50:47.567Z monthly 0.8 @@ -42851,7 +43040,7 @@ https://www.rfc1437.de/2006/03/13/mudwalker-a-mud-client-for-mac-os-x/ - 2026-03-03T17:50:50.000Z + 2026-03-03T17:50:50.523Z monthly 0.8 @@ -42860,7 +43049,7 @@ https://www.rfc1437.de/2006/03/13/naked-objects-in-virtual-life/ - 2026-03-03T17:50:54.000Z + 2026-03-03T17:50:54.248Z monthly 0.8 @@ -42869,7 +43058,7 @@ https://www.rfc1437.de/2006/03/13/nicht-mehr-ganz-so-geheim/ - 2026-03-03T17:50:57.000Z + 2026-03-03T17:50:57.482Z monthly 0.8 @@ -42878,7 +43067,7 @@ https://www.rfc1437.de/2006/03/13/npd-blog/ - 2026-03-03T17:51:00.000Z + 2026-03-03T17:51:00.294Z monthly 0.8 @@ -42887,7 +43076,7 @@ https://www.rfc1437.de/2006/03/13/roam/ - 2026-03-03T17:51:03.000Z + 2026-03-03T17:51:03.466Z monthly 0.8 @@ -42896,7 +43085,7 @@ https://www.rfc1437.de/2006/03/13/technische-revolution/ - 2026-03-03T17:51:06.000Z + 2026-03-03T17:51:06.368Z monthly 0.8 @@ -42905,7 +43094,7 @@ https://www.rfc1437.de/2006/03/12/gosling-didn-t-get-the-memo/ - 2026-03-03T17:51:09.000Z + 2026-03-03T17:51:09.537Z monthly 0.8 @@ -42914,7 +43103,7 @@ https://www.rfc1437.de/2006/03/12/mal-wieder-ne-woche-muenchen/ - 2026-03-03T17:51:12.000Z + 2026-03-03T17:51:12.382Z monthly 0.8 @@ -42923,7 +43112,7 @@ https://www.rfc1437.de/2006/03/12/was-firmenchefs-heute-so-lernen/ - 2026-03-03T17:51:16.000Z + 2026-03-03T17:51:16.350Z monthly 0.8 @@ -42932,7 +43121,7 @@ https://www.rfc1437.de/2006/03/10/official-google-blog-writely-so/ - 2026-03-03T17:51:19.000Z + 2026-03-03T17:51:19.516Z monthly 0.8 @@ -42941,7 +43130,7 @@ https://www.rfc1437.de/2006/03/09/apple-beantragt-patente-auf-feed-viewer-und/ - 2026-03-03T17:51:22.000Z + 2026-03-03T17:51:22.795Z monthly 0.8 @@ -42950,7 +43139,7 @@ https://www.rfc1437.de/2006/03/09/cassini-finds-signs-of-liquid-water-on-saturn-s/ - 2026-03-03T17:51:25.000Z + 2026-03-03T17:51:25.999Z monthly 0.8 @@ -42959,7 +43148,7 @@ https://www.rfc1437.de/2006/03/09/lego-hats-geschnallt/ - 2026-03-03T17:51:29.000Z + 2026-03-03T17:51:29.867Z monthly 0.8 @@ -42968,7 +43157,7 @@ https://www.rfc1437.de/2006/03/09/merkels-neuer-kumpel-2/ - 2026-03-03T17:51:33.000Z + 2026-03-03T17:51:33.120Z monthly 0.8 @@ -42977,7 +43166,7 @@ https://www.rfc1437.de/2006/03/09/p-k-k-purzel-kollektiv-kuebelreiter/ - 2026-03-03T17:51:35.000Z + 2026-03-03T17:51:35.983Z monthly 0.8 @@ -42986,7 +43175,7 @@ https://www.rfc1437.de/2006/03/09/shit-hits-fan-bei-debian/ - 2026-03-03T17:51:38.000Z + 2026-03-03T17:51:38.833Z monthly 0.8 @@ -42995,7 +43184,7 @@ https://www.rfc1437.de/2006/03/09/waterfall-2006-international-conference-on/ - 2026-03-03T17:51:41.000Z + 2026-03-03T17:51:41.700Z monthly 0.8 @@ -43004,7 +43193,7 @@ https://www.rfc1437.de/2006/03/07/mac-os-x-security-challenge/ - 2026-03-03T17:51:45.000Z + 2026-03-03T17:51:45.609Z monthly 0.8 @@ -43013,7 +43202,7 @@ https://www.rfc1437.de/2006/03/06/aries-umweltprodukte-die-spezialisten-fuer/ - 2026-03-03T17:51:48.000Z + 2026-03-03T17:51:48.611Z monthly 0.8 @@ -43022,7 +43211,7 @@ https://www.rfc1437.de/2006/03/06/mp3-python-module/ - 2026-03-03T17:51:51.000Z + 2026-03-03T17:51:51.203Z monthly 0.8 @@ -43031,7 +43220,7 @@ https://www.rfc1437.de/2006/03/06/opus-zivilrechtliche-ansprueche-gegen/ - 2026-03-03T17:51:54.000Z + 2026-03-03T17:51:54.556Z monthly 0.8 @@ -43040,7 +43229,7 @@ https://www.rfc1437.de/2006/03/06/religion-ist-opium-fuers-volk/ - 2026-03-03T17:51:57.000Z + 2026-03-03T17:51:57.533Z monthly 0.8 @@ -43049,7 +43238,7 @@ https://www.rfc1437.de/2006/03/05/aspectes-tigris-org/ - 2026-03-03T17:52:00.000Z + 2026-03-03T17:52:00.144Z monthly 0.8 @@ -43058,7 +43247,7 @@ https://www.rfc1437.de/2006/03/05/cpu-mem-with-swap-on-off/ - 2026-03-03T17:52:03.000Z + 2026-03-03T17:52:03.877Z monthly 0.8 @@ -43067,7 +43256,7 @@ https://www.rfc1437.de/2006/03/05/hmm/ - 2026-03-03T17:52:06.000Z + 2026-03-03T17:52:06.526Z monthly 0.8 @@ -43076,7 +43265,7 @@ https://www.rfc1437.de/2006/03/04/lebowski-fest-west/ - 2026-03-03T17:52:09.000Z + 2026-03-03T17:52:09.522Z monthly 0.8 @@ -43085,7 +43274,7 @@ https://www.rfc1437.de/2006/03/04/manaos-0-1-2-is-out/ - 2026-03-03T17:52:12.000Z + 2026-03-03T17:52:12.917Z monthly 0.8 @@ -43094,7 +43283,7 @@ https://www.rfc1437.de/2006/03/04/netzneutralitaet-und-die-realitaet/ - 2026-03-03T17:52:16.000Z + 2026-03-03T17:52:16.732Z monthly 0.8 @@ -43103,7 +43292,7 @@ https://www.rfc1437.de/2006/03/04/ob-das-ebay-schmeckt/ - 2026-03-03T17:52:20.000Z + 2026-03-03T17:52:20.535Z monthly 0.8 @@ -43112,7 +43301,7 @@ https://www.rfc1437.de/2006/03/04/principia-discordia-the-book-of-chaos-discord-and/ - 2026-03-07T21:14:38.000Z + 2026-03-07T21:14:38.460Z monthly 0.8 @@ -43121,7 +43310,7 @@ https://www.rfc1437.de/2006/03/04/sharedappvnc/ - 2026-03-03T17:52:26.000Z + 2026-03-03T17:52:26.653Z monthly 0.8 @@ -43130,7 +43319,7 @@ https://www.rfc1437.de/2006/03/04/ufraw/ - 2026-03-03T17:52:29.000Z + 2026-03-03T17:52:29.691Z monthly 0.8 @@ -43139,7 +43328,7 @@ https://www.rfc1437.de/2006/03/04/zurueck-zu-den-kz-huehnern/ - 2026-03-03T17:52:34.000Z + 2026-03-03T17:52:34.034Z monthly 0.8 @@ -43148,7 +43337,7 @@ https://www.rfc1437.de/2006/03/03/land-of-the-stupid-and-unfree/ - 2026-03-03T17:52:37.000Z + 2026-03-03T17:52:37.560Z monthly 0.8 @@ -43157,7 +43346,7 @@ https://www.rfc1437.de/2006/03/03/larrys-verzerrte-realitaet/ - 2026-03-03T17:52:41.000Z + 2026-03-03T17:52:41.646Z monthly 0.8 @@ -43166,7 +43355,7 @@ https://www.rfc1437.de/2006/03/03/lernkurven-diverser-unix-editoren/ - 2026-03-03T17:52:45.000Z + 2026-03-03T17:52:45.397Z monthly 0.8 @@ -43175,7 +43364,7 @@ https://www.rfc1437.de/2006/03/02/datengier-ist-geil/ - 2026-03-03T17:52:49.000Z + 2026-03-03T17:52:49.820Z monthly 0.8 @@ -43184,7 +43373,7 @@ https://www.rfc1437.de/2006/03/02/warum-ich-php-software-nicht-mag/ - 2026-03-03T17:52:54.000Z + 2026-03-03T17:52:54.120Z monthly 0.8 @@ -43193,7 +43382,7 @@ https://www.rfc1437.de/2006/03/01/arbeitsplaetze-auf-dem-altar-des-aktienkurses-pfrn/ - 2026-03-03T17:52:58.000Z + 2026-03-03T17:52:58.927Z monthly 0.8 @@ -43202,7 +43391,7 @@ https://www.rfc1437.de/2006/03/01/bock-zum-gaertner-machen/ - 2026-03-03T17:53:03.000Z + 2026-03-03T17:53:03.186Z monthly 0.8 @@ -43211,7 +43400,7 @@ https://www.rfc1437.de/2006/03/01/zensur-per-anwalt/ - 2026-03-03T17:53:07.000Z + 2026-03-03T17:53:07.993Z monthly 0.8 @@ -43220,7 +43409,7 @@ https://www.rfc1437.de/2006/02/28/blue-ball-machine/ - 2026-03-03T17:53:11.000Z + 2026-03-03T17:53:11.625Z monthly 0.8 @@ -43229,7 +43418,7 @@ https://www.rfc1437.de/2006/02/28/branchbaseddevelopment/ - 2026-03-03T17:53:15.000Z + 2026-03-03T17:53:15.392Z monthly 0.8 @@ -43238,7 +43427,7 @@ https://www.rfc1437.de/2006/02/28/divmod/ - 2026-03-03T17:53:19.000Z + 2026-03-03T17:53:19.061Z monthly 0.8 @@ -43247,7 +43436,7 @@ https://www.rfc1437.de/2006/02/28/macmini-mit-core-duo/ - 2026-03-03T17:53:23.000Z + 2026-03-03T17:53:23.923Z monthly 0.8 @@ -43256,7 +43445,7 @@ https://www.rfc1437.de/2006/02/28/mehr-bilder-von-der-dmc-l1/ - 2026-03-03T17:53:28.000Z + 2026-03-03T17:53:28.969Z monthly 0.8 @@ -43265,7 +43454,7 @@ https://www.rfc1437.de/2006/02/28/nasa-world-wind/ - 2026-03-03T17:53:32.000Z + 2026-03-03T17:53:32.709Z monthly 0.8 @@ -43274,7 +43463,7 @@ https://www.rfc1437.de/2006/02/28/pictures-of-a-guy-in-a-blue-shirt/ - 2026-03-07T19:17:21.000Z + 2026-03-07T19:17:21.846Z monthly 0.8 @@ -43283,7 +43472,7 @@ https://www.rfc1437.de/2006/02/28/screencast-ueber-web-anwendungen/ - 2026-03-03T17:53:42.000Z + 2026-03-03T17:53:42.508Z monthly 0.8 @@ -43292,7 +43481,7 @@ https://www.rfc1437.de/2006/02/28/sonystyle-usa-prs-500/ - 2026-03-03T17:53:48.000Z + 2026-03-03T17:53:48.054Z monthly 0.8 @@ -43301,7 +43490,7 @@ https://www.rfc1437.de/2006/02/28/tail-call-optimization-in-python/ - 2026-03-03T17:53:53.000Z + 2026-03-03T17:53:53.992Z monthly 0.8 @@ -43310,7 +43499,7 @@ https://www.rfc1437.de/2006/02/28/was-sich-firmengruender-so-vorstellen/ - 2026-03-03T17:53:59.000Z + 2026-03-03T17:53:59.348Z monthly 0.8 @@ -43319,7 +43508,7 @@ https://www.rfc1437.de/2006/02/27/disk-inventory-x/ - 2026-03-03T17:54:03.000Z + 2026-03-03T17:54:03.470Z monthly 0.8 @@ -43328,7 +43517,7 @@ https://www.rfc1437.de/2006/02/27/id-design-inc-whatsize/ - 2026-03-03T17:54:07.000Z + 2026-03-03T17:54:07.759Z monthly 0.8 @@ -43337,7 +43526,7 @@ https://www.rfc1437.de/2006/02/27/monolingual/ - 2026-03-03T17:54:11.000Z + 2026-03-03T17:54:11.935Z monthly 0.8 @@ -43346,7 +43535,7 @@ https://www.rfc1437.de/2006/02/26/digi-wunder-chip-von-ti/ - 2026-03-03T17:54:17.000Z + 2026-03-03T17:54:17.895Z monthly 0.8 @@ -43355,7 +43544,7 @@ https://www.rfc1437.de/2006/02/26/instant-community-building/ - 2026-03-03T17:54:22.000Z + 2026-03-03T17:54:22.979Z monthly 0.8 @@ -43364,7 +43553,7 @@ https://www.rfc1437.de/2006/02/26/leica-und-panasonic-mit-digi-slr-kombo/ - 2026-03-03T17:54:29.000Z + 2026-03-03T17:54:29.664Z monthly 0.8 @@ -43373,7 +43562,7 @@ https://www.rfc1437.de/2006/02/26/textpander/ - 2026-03-03T17:54:34.000Z + 2026-03-03T17:54:34.318Z monthly 0.8 @@ -43382,7 +43571,7 @@ https://www.rfc1437.de/2006/02/25/hetima-safaristand/ - 2026-03-03T17:54:38.000Z + 2026-03-03T17:54:38.708Z monthly 0.8 @@ -43391,7 +43580,7 @@ https://www.rfc1437.de/2006/02/25/london-20-rc-4-monday-3rd-april/ - 2026-03-07T21:14:41.000Z + 2026-03-07T21:14:41.924Z monthly 0.8 @@ -43400,7 +43589,7 @@ https://www.rfc1437.de/2006/02/25/pimp-my-safari/ - 2026-03-03T17:54:48.000Z + 2026-03-03T17:54:48.113Z monthly 0.8 @@ -43409,7 +43598,7 @@ https://www.rfc1437.de/2006/02/25/stripsquad-se/ - 2026-03-03T17:54:52.000Z + 2026-03-03T17:54:52.553Z monthly 0.8 @@ -43418,7 +43607,7 @@ https://www.rfc1437.de/2006/02/25/surfrabbit/ - 2026-03-03T17:54:56.000Z + 2026-03-03T17:54:56.630Z monthly 0.8 @@ -43427,7 +43616,7 @@ https://www.rfc1437.de/2006/02/25/wow/ - 2026-03-03T17:55:02.000Z + 2026-03-03T17:55:02.574Z monthly 0.8 @@ -43436,7 +43625,7 @@ https://www.rfc1437.de/2006/02/24/angebliche-wettermanipulation/ - 2026-03-03T17:55:08.000Z + 2026-03-03T17:55:08.232Z monthly 0.8 @@ -43445,7 +43634,7 @@ https://www.rfc1437.de/2006/02/24/democracy-player/ - 2026-03-03T17:55:12.000Z + 2026-03-03T17:55:12.347Z monthly 0.8 @@ -43454,7 +43643,7 @@ https://www.rfc1437.de/2006/02/24/google-macintosh-dashboard-widgets/ - 2026-03-03T17:55:15.000Z + 2026-03-03T17:55:15.915Z monthly 0.8 @@ -43463,7 +43652,7 @@ https://www.rfc1437.de/2006/02/24/growl/ - 2026-03-03T17:55:20.000Z + 2026-03-03T17:55:20.020Z monthly 0.8 @@ -43472,7 +43661,7 @@ https://www.rfc1437.de/2006/02/24/live-thumbnails-watch-em-grow/ - 2026-03-03T17:55:24.000Z + 2026-03-03T17:55:24.472Z monthly 0.8 @@ -43481,7 +43670,7 @@ https://www.rfc1437.de/2006/02/24/the-little-calculist-javascript-language-level/ - 2026-03-03T17:55:29.000Z + 2026-03-03T17:55:29.076Z monthly 0.8 @@ -43490,7 +43679,7 @@ https://www.rfc1437.de/2006/02/24/water-the-structure-and-properties-of-liquid-water/ - 2026-03-03T17:55:33.000Z + 2026-03-03T17:55:33.057Z monthly 0.8 @@ -43499,7 +43688,7 @@ https://www.rfc1437.de/2006/02/23/iweb-und-sein-output/ - 2026-03-03T17:55:38.000Z + 2026-03-03T17:55:38.627Z monthly 0.8 @@ -43508,7 +43697,7 @@ https://www.rfc1437.de/2006/02/23/nikon-d200-full-review/ - 2026-03-03T17:55:44.000Z + 2026-03-03T17:55:44.040Z monthly 0.8 @@ -43517,7 +43706,7 @@ https://www.rfc1437.de/2006/02/23/patentamtsidiotie-in-den-usa/ - 2026-03-03T17:55:49.000Z + 2026-03-03T17:55:49.057Z monthly 0.8 @@ -43526,7 +43715,7 @@ https://www.rfc1437.de/2006/02/23/rubyforge-ruby-port-to-nokia-770-internet-tablet/ - 2026-03-03T17:55:53.000Z + 2026-03-03T17:55:53.449Z monthly 0.8 @@ -43535,7 +43724,7 @@ https://www.rfc1437.de/2006/02/23/scsh-photobase/ - 2026-03-03T17:55:57.000Z + 2026-03-03T17:55:57.943Z monthly 0.8 @@ -43544,7 +43733,7 @@ https://www.rfc1437.de/2006/02/23/so-bescheisst-man-kunden/ - 2026-03-03T17:56:03.000Z + 2026-03-03T17:56:03.562Z monthly 0.8 @@ -43553,7 +43742,7 @@ https://www.rfc1437.de/2006/02/23/tomato-torrent/ - 2026-03-03T17:56:07.000Z + 2026-03-03T17:56:07.013Z monthly 0.8 @@ -43562,7 +43751,7 @@ https://www.rfc1437.de/2006/02/23/tor-gui-competition/ - 2026-03-03T17:56:12.000Z + 2026-03-03T17:56:12.091Z monthly 0.8 @@ -43571,7 +43760,7 @@ https://www.rfc1437.de/2006/02/23/verstrahlter-koch/ - 2026-03-03T17:56:17.000Z + 2026-03-03T17:56:17.614Z monthly 0.8 @@ -43580,7 +43769,7 @@ https://www.rfc1437.de/2006/02/23/wasabi-systems/ - 2026-03-03T17:56:21.000Z + 2026-03-03T17:56:21.832Z monthly 0.8 @@ -43589,7 +43778,7 @@ https://www.rfc1437.de/2006/02/22/an-die-content-diebe/ - 2026-03-03T17:56:27.000Z + 2026-03-03T17:56:27.264Z monthly 0.8 @@ -43598,7 +43787,7 @@ https://www.rfc1437.de/2006/02/22/babylonische-erklaerung-fuer-die-nebra-himmelsschb/ - 2026-03-03T17:56:32.000Z + 2026-03-03T17:56:32.955Z monthly 0.8 @@ -43607,7 +43796,7 @@ https://www.rfc1437.de/2006/02/22/clim-desktop-project/ - 2026-03-03T17:56:37.000Z + 2026-03-03T17:56:37.223Z monthly 0.8 @@ -43616,7 +43805,7 @@ https://www.rfc1437.de/2006/02/22/jetzt-kommt-ibm-in-fahrt/ - 2026-03-03T17:56:42.000Z + 2026-03-03T17:56:42.232Z monthly 0.8 @@ -43625,7 +43814,7 @@ https://www.rfc1437.de/2006/02/22/musikindustrie-verbloedet-immer-mehr/ - 2026-03-03T17:56:47.000Z + 2026-03-03T17:56:47.930Z monthly 0.8 @@ -43634,7 +43823,7 @@ https://www.rfc1437.de/2006/02/22/netz-neutralitaet-gefaehrdet/ - 2026-03-03T17:56:53.000Z + 2026-03-03T17:56:53.644Z monthly 0.8 @@ -43643,7 +43832,7 @@ https://www.rfc1437.de/2006/02/22/phollowing-the-phlopping-phish/ - 2026-03-03T17:56:58.000Z + 2026-03-03T17:56:58.898Z monthly 0.8 @@ -43652,7 +43841,7 @@ https://www.rfc1437.de/2006/02/22/the-linux-kernel-driver-interface/ - 2026-03-03T17:57:02.000Z + 2026-03-03T17:57:02.991Z monthly 0.8 @@ -43661,7 +43850,7 @@ https://www.rfc1437.de/2006/02/22/virtuelles-bluetooth-keyboard/ - 2026-03-03T17:57:07.000Z + 2026-03-03T17:57:07.917Z monthly 0.8 @@ -43670,7 +43859,7 @@ https://www.rfc1437.de/2006/02/22/zeichen-der-krise/ - 2026-03-03T17:57:13.000Z + 2026-03-03T17:57:13.931Z monthly 0.8 @@ -43679,7 +43868,7 @@ https://www.rfc1437.de/2006/02/21/4g-european-grounded-shuko-adapter-walkabout/ - 2026-03-03T17:57:18.000Z + 2026-03-03T17:57:18.460Z monthly 0.8 @@ -43688,7 +43877,7 @@ https://www.rfc1437.de/2006/02/21/8-p-info-creammonkey/ - 2026-03-03T17:57:22.000Z + 2026-03-03T17:57:22.418Z monthly 0.8 @@ -43697,7 +43886,7 @@ https://www.rfc1437.de/2006/02/21/bluetooth-security/ - 2026-03-03T17:57:26.000Z + 2026-03-03T17:57:26.311Z monthly 0.8 @@ -43706,7 +43895,7 @@ https://www.rfc1437.de/2006/02/21/migrate-apps-from-internet-explorer-to-mozilla/ - 2026-03-03T17:57:30.000Z + 2026-03-03T17:57:30.253Z monthly 0.8 @@ -43715,7 +43904,7 @@ https://www.rfc1437.de/2006/02/21/playdeluxe-shop-online-shop/ - 2026-03-03T17:57:34.000Z + 2026-03-03T17:57:34.424Z monthly 0.8 @@ -43724,7 +43913,7 @@ https://www.rfc1437.de/2006/02/20/browser-sind-eben-keine-programmstarter/ - 2026-03-03T17:57:39.000Z + 2026-03-03T17:57:39.557Z monthly 0.8 @@ -43733,7 +43922,7 @@ https://www.rfc1437.de/2006/02/20/know-your-enemy-learning-with-vmware/ - 2026-03-03T17:57:43.000Z + 2026-03-03T17:57:43.756Z monthly 0.8 @@ -43742,7 +43931,7 @@ https://www.rfc1437.de/2006/02/20/snowball/ - 2026-03-03T17:57:48.000Z + 2026-03-03T17:57:48.007Z monthly 0.8 @@ -43751,7 +43940,7 @@ https://www.rfc1437.de/2006/02/20/st-phane-ducasse-free-online-books/ - 2026-03-03T17:57:52.000Z + 2026-03-03T17:57:52.451Z monthly 0.8 @@ -43760,7 +43949,7 @@ https://www.rfc1437.de/2006/02/20/znc-rottenboy/ - 2026-03-03T17:57:56.000Z + 2026-03-03T17:57:56.592Z monthly 0.8 @@ -43769,7 +43958,7 @@ https://www.rfc1437.de/2006/02/19/bush-und-die-atomkraft/ - 2026-03-03T17:58:02.000Z + 2026-03-03T17:58:02.061Z monthly 0.8 @@ -43778,7 +43967,7 @@ https://www.rfc1437.de/2006/02/19/united-states-of-absurdity/ - 2026-03-03T17:58:07.000Z + 2026-03-03T17:58:07.563Z monthly 0.8 @@ -43787,7 +43976,7 @@ https://www.rfc1437.de/2006/02/18/cocoa-fuer-klammerfetischisten/ - 2026-03-03T17:58:13.000Z + 2026-03-03T17:58:13.122Z monthly 0.8 @@ -43796,7 +43985,7 @@ https://www.rfc1437.de/2006/02/18/gauche-objectivecbridge/ - 2026-03-03T17:58:17.000Z + 2026-03-03T17:58:17.386Z monthly 0.8 @@ -43805,7 +43994,7 @@ https://www.rfc1437.de/2006/02/18/hoc-a-haskell-to-objective-c-binding/ - 2026-03-03T17:58:21.000Z + 2026-03-03T17:58:21.580Z monthly 0.8 @@ -43814,7 +44003,7 @@ https://www.rfc1437.de/2006/02/17/der-wirkliche-grund-hinter-hartz-iv/ - 2026-03-03T17:58:27.000Z + 2026-03-03T17:58:27.417Z monthly 0.8 @@ -43823,7 +44012,7 @@ https://www.rfc1437.de/2006/02/17/dresdner-war-vertrauensbank-der-ss/ - 2026-03-03T17:58:33.000Z + 2026-03-03T17:58:33.119Z monthly 0.8 @@ -43832,7 +44021,7 @@ https://www.rfc1437.de/2006/02/17/nokia-770-and-virtual-bluetooth-keyboard/ - 2026-03-03T17:58:37.000Z + 2026-03-03T17:58:37.311Z monthly 0.8 @@ -43841,7 +44030,7 @@ https://www.rfc1437.de/2006/02/17/openvpn-on-maemo/ - 2026-03-03T17:58:41.000Z + 2026-03-03T17:58:41.377Z monthly 0.8 @@ -43850,7 +44039,7 @@ https://www.rfc1437.de/2006/02/17/protzgehabe-testosteron-geschaedigter-prolethiker/ - 2026-03-03T17:58:47.000Z + 2026-03-03T17:58:47.221Z monthly 0.8 @@ -43859,7 +44048,7 @@ https://www.rfc1437.de/2006/02/16/bayrisches-innenministerium-gegen-das-grundgesetz/ - 2026-03-03T17:58:52.000Z + 2026-03-03T17:58:52.246Z monthly 0.8 @@ -43868,7 +44057,7 @@ https://www.rfc1437.de/2006/02/16/firewall-anbieter-spitzt-die-fueller/ - 2026-03-03T17:58:57.000Z + 2026-03-03T17:58:57.772Z monthly 0.8 @@ -43877,7 +44066,7 @@ https://www.rfc1437.de/2006/02/16/schoene-neue-rfid-welt/ - 2026-03-03T17:59:02.000Z + 2026-03-03T17:59:02.828Z monthly 0.8 @@ -43886,7 +44075,7 @@ https://www.rfc1437.de/2006/02/16/und-wann-gruenden-sie-die-stasi-neu/ - 2026-03-03T17:59:08.000Z + 2026-03-03T17:59:08.530Z monthly 0.8 @@ -43895,7 +44084,7 @@ https://www.rfc1437.de/2006/02/15/google-maps-plugin-for-address-book-brian-toth/ - 2026-03-03T17:59:12.000Z + 2026-03-03T17:59:12.539Z monthly 0.8 @@ -43904,7 +44093,7 @@ https://www.rfc1437.de/2006/02/15/karlsruhe/ - 2026-03-03T17:59:18.000Z + 2026-03-03T17:59:18.136Z monthly 0.8 @@ -43913,7 +44102,7 @@ https://www.rfc1437.de/2006/02/15/management-by-stupidity-or-by-corruption/ - 2026-03-03T17:59:23.000Z + 2026-03-03T17:59:23.890Z monthly 0.8 @@ -43922,7 +44111,7 @@ https://www.rfc1437.de/2006/02/15/mulliner-org-nokia770/ - 2026-03-03T17:59:28.000Z + 2026-03-03T17:59:28.156Z monthly 0.8 @@ -43931,7 +44120,7 @@ https://www.rfc1437.de/2006/02/15/slimserverandnokia770/ - 2026-03-03T17:59:32.000Z + 2026-03-03T17:59:32.266Z monthly 0.8 @@ -43940,7 +44129,7 @@ https://www.rfc1437.de/2006/02/14/bnt-sttt-brn-bndns-fr-mnstr-ggn-rchtsrdklsms-t-n/ - 2026-03-03T17:59:38.000Z + 2026-03-03T17:59:38.998Z monthly 0.8 @@ -43949,7 +44138,7 @@ https://www.rfc1437.de/2006/02/14/datenschutz-und-sicherheitsinteressen/ - 2026-03-03T17:59:44.000Z + 2026-03-03T17:59:44.402Z monthly 0.8 @@ -43958,7 +44147,7 @@ https://www.rfc1437.de/2006/02/14/druck-auf-hardware-hersteller/ - 2026-03-03T17:59:49.000Z + 2026-03-03T17:59:49.068Z monthly 0.8 @@ -43967,7 +44156,7 @@ https://www.rfc1437.de/2006/02/14/ich-mach-den-job-ja-gerne/ - 2026-03-03T17:59:54.000Z + 2026-03-03T17:59:54.309Z monthly 0.8 @@ -43976,7 +44165,7 @@ https://www.rfc1437.de/2006/02/14/mobil-870-mb-sind-mobil/ - 2026-03-03T17:59:59.000Z + 2026-03-03T17:59:59.740Z monthly 0.8 @@ -43985,7 +44174,7 @@ https://www.rfc1437.de/2006/02/14/peinliche-ssl-panne-bei-geotrust/ - 2026-03-03T18:00:05.000Z + 2026-03-03T18:00:05.557Z monthly 0.8 @@ -43994,7 +44183,7 @@ https://www.rfc1437.de/2006/02/14/pyopenssl-python-interface-to-the-openssl-library/ - 2026-03-03T18:00:09.000Z + 2026-03-03T18:00:09.706Z monthly 0.8 @@ -44003,7 +44192,7 @@ https://www.rfc1437.de/2006/02/14/sabrina-und-twister/ - 2026-03-03T18:00:14.000Z + 2026-03-03T18:00:14.177Z monthly 0.8 @@ -44012,7 +44201,7 @@ https://www.rfc1437.de/2006/02/14/statistical-programming-with-r-2/ - 2026-03-03T18:00:21.000Z + 2026-03-03T18:00:21.946Z monthly 0.8 @@ -44021,7 +44210,7 @@ https://www.rfc1437.de/2006/02/14/yahoo-design-pattern-library/ - 2026-03-03T18:00:26.000Z + 2026-03-03T18:00:26.090Z monthly 0.8 @@ -44030,7 +44219,7 @@ https://www.rfc1437.de/2006/02/14/yahoo-ui-library/ - 2026-03-03T18:00:30.000Z + 2026-03-03T18:00:30.377Z monthly 0.8 @@ -44039,7 +44228,7 @@ https://www.rfc1437.de/2006/02/13/man-muss-ask-metafilter-einfach-lieben/ - 2026-03-03T18:00:35.000Z + 2026-03-03T18:00:35.326Z monthly 0.8 @@ -44048,7 +44237,7 @@ https://www.rfc1437.de/2006/02/13/screen4dslr-changing-focusing-screen-for-canon/ - 2026-03-03T18:00:40.000Z + 2026-03-03T18:00:40.055Z monthly 0.8 @@ -44057,7 +44246,7 @@ https://www.rfc1437.de/2006/02/13/spirit-erreicht-homeplate/ - 2026-03-03T18:00:44.000Z + 2026-03-03T18:00:44.329Z monthly 0.8 @@ -44066,7 +44255,7 @@ https://www.rfc1437.de/2006/02/12/kids/ - 2026-03-03T18:00:50.000Z + 2026-03-03T18:00:50.599Z monthly 0.8 @@ -44075,7 +44264,7 @@ https://www.rfc1437.de/2006/02/12/strategische-arbeitsmarktpolitik/ - 2026-03-03T18:00:55.000Z + 2026-03-03T18:00:55.686Z monthly 0.8 @@ -44084,7 +44273,7 @@ https://www.rfc1437.de/2006/02/11/aber-bei-uns-hat-ja-keiner-was-gewusst/ - 2026-03-03T18:01:01.000Z + 2026-03-03T18:01:01.406Z monthly 0.8 @@ -44093,7 +44282,7 @@ https://www.rfc1437.de/2006/02/11/online-luftbilder-von-deutschland/ - 2026-03-03T18:01:06.000Z + 2026-03-03T18:01:06.085Z monthly 0.8 @@ -44102,7 +44291,7 @@ https://www.rfc1437.de/2006/02/10/im-not-a-hater-i-just-flush-a-lot/ - 2026-03-03T18:01:11.000Z + 2026-03-03T18:01:11.208Z monthly 0.8 @@ -44111,7 +44300,7 @@ https://www.rfc1437.de/2006/02/10/klar-ich-pack-daten-zu-google/ - 2026-03-03T18:01:16.000Z + 2026-03-03T18:01:16.442Z monthly 0.8 @@ -44120,7 +44309,7 @@ https://www.rfc1437.de/2006/02/10/language-design-is-not-just-solving-puzzles/ - 2026-03-03T18:01:21.000Z + 2026-03-03T18:01:21.559Z monthly 0.8 @@ -44129,7 +44318,7 @@ https://www.rfc1437.de/2006/02/10/powerful-remote-x-displays-with-freenx/ - 2026-03-03T18:01:26.000Z + 2026-03-03T18:01:26.167Z monthly 0.8 @@ -44138,7 +44327,7 @@ https://www.rfc1437.de/2006/02/10/renaissance-le-site-officiel-du-film-de-christian/ - 2026-03-07T19:17:25.000Z + 2026-03-07T19:17:25.197Z monthly 0.8 @@ -44147,7 +44336,7 @@ https://www.rfc1437.de/2006/02/10/sin-city/ - 2026-03-03T18:01:36.000Z + 2026-03-03T18:01:36.529Z monthly 0.8 @@ -44156,7 +44345,7 @@ https://www.rfc1437.de/2006/02/10/vmware-server-jetzt-freibier/ - 2026-03-03T18:01:41.000Z + 2026-03-03T18:01:41.906Z monthly 0.8 @@ -44165,7 +44354,7 @@ https://www.rfc1437.de/2006/02/09/django-templates-are-not-limited/ - 2026-03-07T21:14:46.000Z + 2026-03-07T21:14:46.235Z monthly 0.8 @@ -44174,7 +44363,7 @@ https://www.rfc1437.de/2006/02/09/eu-domain-debakel/ - 2026-03-03T18:01:51.000Z + 2026-03-03T18:01:51.217Z monthly 0.8 @@ -44183,7 +44372,7 @@ https://www.rfc1437.de/2006/02/09/holistech-limited-free-software-pwsafe/ - 2026-03-03T18:01:55.000Z + 2026-03-03T18:01:55.317Z monthly 0.8 @@ -44192,7 +44381,7 @@ https://www.rfc1437.de/2006/02/09/menschen-den-maerkten-opfern/ - 2026-03-03T18:02:00.000Z + 2026-03-03T18:02:00.457Z monthly 0.8 @@ -44201,7 +44390,7 @@ https://www.rfc1437.de/2006/02/09/password-safe/ - 2026-03-03T18:02:04.000Z + 2026-03-03T18:02:04.530Z monthly 0.8 @@ -44210,7 +44399,7 @@ https://www.rfc1437.de/2006/02/09/pwsafe-password-database/ - 2026-03-03T18:02:08.000Z + 2026-03-03T18:02:08.146Z monthly 0.8 @@ -44219,7 +44408,7 @@ https://www.rfc1437.de/2006/02/09/spuren-im-netz/ - 2026-03-03T18:02:13.000Z + 2026-03-03T18:02:13.710Z monthly 0.8 @@ -44228,7 +44417,7 @@ https://www.rfc1437.de/2006/02/08/benford-s-law/ - 2026-03-03T18:02:17.000Z + 2026-03-03T18:02:17.824Z monthly 0.8 @@ -44237,7 +44426,7 @@ https://www.rfc1437.de/2006/02/08/eu-verliert-gentechnik-streit-mit-den-usa/ - 2026-03-03T18:02:23.000Z + 2026-03-03T18:02:23.391Z monthly 0.8 @@ -44246,7 +44435,7 @@ https://www.rfc1437.de/2006/02/08/hedgehog/ - 2026-03-07T21:14:46.000Z + 2026-03-07T21:14:46.946Z monthly 0.8 @@ -44255,7 +44444,7 @@ https://www.rfc1437.de/2006/02/08/lego-technic-difference-engine/ - 2026-03-03T18:02:30.000Z + 2026-03-03T18:02:30.515Z monthly 0.8 @@ -44264,7 +44453,7 @@ https://www.rfc1437.de/2006/02/08/loecher-im-java-sandkasten/ - 2026-03-03T18:02:35.000Z + 2026-03-03T18:02:35.903Z monthly 0.8 @@ -44273,7 +44462,7 @@ https://www.rfc1437.de/2006/02/08/scientists-find-new-species-in-garden-of-eden/ - 2026-03-03T18:02:40.000Z + 2026-03-03T18:02:40.596Z monthly 0.8 @@ -44282,7 +44471,7 @@ https://www.rfc1437.de/2006/02/07/css-fisheye/ - 2026-03-03T18:02:44.000Z + 2026-03-03T18:02:44.567Z monthly 0.8 @@ -44291,7 +44480,7 @@ https://www.rfc1437.de/2006/02/07/greycstoration/ - 2026-03-03T18:02:48.000Z + 2026-03-03T18:02:48.742Z monthly 0.8 @@ -44300,7 +44489,7 @@ https://www.rfc1437.de/2006/02/07/lightbox-js/ - 2026-03-03T18:02:52.000Z + 2026-03-03T18:02:52.297Z monthly 0.8 @@ -44309,7 +44498,7 @@ https://www.rfc1437.de/2006/02/06/avm-koennte-ja-einfach-treiber-unter-gpl-schreiben/ - 2026-03-03T18:02:57.000Z + 2026-03-03T18:02:57.917Z monthly 0.8 @@ -44318,7 +44507,7 @@ https://www.rfc1437.de/2006/02/06/howto-bluetooth-gps-and-gpsdrive-on-the-nokia-770/ - 2026-03-03T18:03:02.000Z + 2026-03-03T18:03:02.374Z monthly 0.8 @@ -44327,7 +44516,7 @@ https://www.rfc1437.de/2006/02/06/kommt-einem-alles-so-bekannt-vor/ - 2026-03-03T18:03:08.000Z + 2026-03-03T18:03:08.357Z monthly 0.8 @@ -44336,7 +44525,7 @@ https://www.rfc1437.de/2006/02/06/lambda-bleibt-in-python/ - 2026-03-03T18:03:12.000Z + 2026-03-03T18:03:12.436Z monthly 0.8 @@ -44345,7 +44534,7 @@ https://www.rfc1437.de/2006/02/06/nennt-mich-einen-pessimisten/ - 2026-03-03T18:03:17.000Z + 2026-03-03T18:03:17.523Z monthly 0.8 @@ -44354,7 +44543,7 @@ https://www.rfc1437.de/2006/02/06/oesi-paesse-auch-anfaellig/ - 2026-03-03T18:03:22.000Z + 2026-03-03T18:03:22.985Z monthly 0.8 @@ -44363,7 +44552,7 @@ https://www.rfc1437.de/2006/02/05/bmw-bei-google-rausgeworfen/ - 2026-03-03T18:03:29.000Z + 2026-03-03T18:03:29.022Z monthly 0.8 @@ -44372,7 +44561,7 @@ https://www.rfc1437.de/2006/02/05/console-password-manager/ - 2026-03-03T18:03:33.000Z + 2026-03-03T18:03:33.584Z monthly 0.8 @@ -44381,7 +44570,7 @@ https://www.rfc1437.de/2006/02/04/the-end-of-the-internet/ - 2026-03-03T18:03:39.000Z + 2026-03-03T18:03:39.152Z monthly 0.8 @@ -44390,7 +44579,7 @@ https://www.rfc1437.de/2006/02/03/bielefelder-schienenklau/ - 2026-03-03T18:03:44.000Z + 2026-03-03T18:03:44.628Z monthly 0.8 @@ -44399,7 +44588,7 @@ https://www.rfc1437.de/2006/02/03/zeichen-von-intelligenz/ - 2026-03-03T18:03:50.000Z + 2026-03-03T18:03:50.431Z monthly 0.8 @@ -44408,7 +44597,7 @@ https://www.rfc1437.de/2006/02/02/book-review-the-debian-system-concepts-and/ - 2026-03-03T18:03:54.000Z + 2026-03-03T18:03:54.752Z monthly 0.8 @@ -44417,7 +44606,7 @@ https://www.rfc1437.de/2006/02/02/die-luege-von-der-informationsfreiheit/ - 2026-03-03T18:04:00.000Z + 2026-03-03T18:04:00.341Z monthly 0.8 @@ -44426,7 +44615,7 @@ https://www.rfc1437.de/2006/02/02/fischertechnik-und-der-mac/ - 2026-03-03T18:04:05.000Z + 2026-03-03T18:04:05.379Z monthly 0.8 @@ -44435,7 +44624,7 @@ https://www.rfc1437.de/2006/02/02/internet-tablet-talk-gnumeric-1-6-2-released/ - 2026-03-03T18:04:09.000Z + 2026-03-03T18:04:09.402Z monthly 0.8 @@ -44444,7 +44633,7 @@ https://www.rfc1437.de/2006/02/02/kopf-in-den-sand/ - 2026-03-03T18:04:14.000Z + 2026-03-03T18:04:14.659Z monthly 0.8 @@ -44453,7 +44642,7 @@ https://www.rfc1437.de/2006/02/02/man-fuehlt-sich-schon-etwas-missbraucht/ - 2026-03-03T18:04:20.000Z + 2026-03-03T18:04:20.163Z monthly 0.8 @@ -44462,7 +44651,7 @@ https://www.rfc1437.de/2006/02/02/mandelbrot-set-labix/ - 2026-03-03T18:04:24.000Z + 2026-03-03T18:04:24.199Z monthly 0.8 @@ -44471,7 +44660,7 @@ https://www.rfc1437.de/2006/02/02/nokia-770-internet-tablet/ - 2026-03-03T18:04:29.000Z + 2026-03-03T18:04:29.276Z monthly 0.8 @@ -44480,7 +44669,7 @@ https://www.rfc1437.de/2006/02/02/schickt-muente-in-rente/ - 2026-03-03T18:04:35.000Z + 2026-03-03T18:04:35.179Z monthly 0.8 @@ -44489,7 +44678,7 @@ https://www.rfc1437.de/2006/02/02/verraten-ueberwacht-und-verkauft/ - 2026-03-03T18:04:40.000Z + 2026-03-03T18:04:40.504Z monthly 0.8 @@ -44498,7 +44687,7 @@ https://www.rfc1437.de/2006/02/01/biometrischer-reisepass-unsicher/ - 2026-03-03T18:04:46.000Z + 2026-03-03T18:04:46.168Z monthly 0.8 @@ -44507,7 +44696,7 @@ https://www.rfc1437.de/2006/02/01/dummschwaetzer/ - 2026-03-03T18:04:51.000Z + 2026-03-03T18:04:51.399Z monthly 0.8 @@ -44516,7 +44705,7 @@ https://www.rfc1437.de/2006/02/01/eiffel-for-os-x/ - 2026-03-03T18:04:55.000Z + 2026-03-03T18:04:55.916Z monthly 0.8 @@ -44525,7 +44714,7 @@ https://www.rfc1437.de/2006/02/01/just-in-time-scheme/ - 2026-03-03T18:05:01.000Z + 2026-03-03T18:05:01.629Z monthly 0.8 @@ -44534,7 +44723,7 @@ https://www.rfc1437.de/2006/02/01/uebergewichtig/ - 2026-03-03T18:05:06.000Z + 2026-03-03T18:05:06.174Z monthly 0.8 @@ -44543,7 +44732,7 @@ https://www.rfc1437.de/2006/01/31/applicationcatalog-maemo-wiki/ - 2026-03-03T18:05:10.000Z + 2026-03-03T18:05:10.148Z monthly 0.8 @@ -44552,7 +44741,7 @@ https://www.rfc1437.de/2006/01/31/springer-und-die-ministererlaubnis/ - 2026-03-03T18:05:16.000Z + 2026-03-03T18:05:16.172Z monthly 0.8 @@ -44561,7 +44750,7 @@ https://www.rfc1437.de/2006/01/29/domain-engel-wird-pampig/ - 2026-03-03T18:05:22.000Z + 2026-03-03T18:05:22.064Z monthly 0.8 @@ -44570,7 +44759,7 @@ https://www.rfc1437.de/2006/01/29/strickmoden-stricken-mit-strickmaschine/ - 2026-03-03T18:05:26.000Z + 2026-03-03T18:05:26.548Z monthly 0.8 @@ -44579,7 +44768,7 @@ https://www.rfc1437.de/2006/01/29/thoughtfix-on-the-nokia-770-usb-power-injector-2/ - 2026-03-03T18:05:31.000Z + 2026-03-03T18:05:31.051Z monthly 0.8 @@ -44588,7 +44777,7 @@ https://www.rfc1437.de/2006/01/28/fussball-leinwaende-und-webseiten/ - 2026-03-03T18:05:37.000Z + 2026-03-03T18:05:37.422Z monthly 0.8 @@ -44597,7 +44786,7 @@ https://www.rfc1437.de/2006/01/28/guido-van-rossum-und-web-frameworks/ - 2026-03-03T18:05:42.000Z + 2026-03-03T18:05:42.940Z monthly 0.8 @@ -44606,7 +44795,7 @@ https://www.rfc1437.de/2006/01/27/bruder-johannes-gestorben/ - 2026-03-03T18:05:48.000Z + 2026-03-03T18:05:48.866Z monthly 0.8 @@ -44615,7 +44804,7 @@ https://www.rfc1437.de/2006/01/27/pythonformaemo-python-for-maemo/ - 2026-03-03T18:05:53.000Z + 2026-03-03T18:05:53.667Z monthly 0.8 @@ -44624,7 +44813,7 @@ https://www.rfc1437.de/2006/01/27/twill-a-simple-scripting-language-for-web-browsing/ - 2026-03-03T18:05:58.000Z + 2026-03-03T18:05:58.584Z monthly 0.8 @@ -44633,7 +44822,7 @@ https://www.rfc1437.de/2006/01/27/wir-tun-uns-immer-noch-schwer/ - 2026-03-03T18:06:04.000Z + 2026-03-03T18:06:04.174Z monthly 0.8 @@ -44642,7 +44831,7 @@ https://www.rfc1437.de/2006/01/26/hirnfuerze-von-ex-ministern/ - 2026-03-03T18:06:10.000Z + 2026-03-03T18:06:10.367Z monthly 0.8 @@ -44651,7 +44840,7 @@ https://www.rfc1437.de/2006/01/26/interessanter-hybride-von-olympus/ - 2026-03-03T18:06:15.000Z + 2026-03-03T18:06:15.529Z monthly 0.8 @@ -44660,7 +44849,7 @@ https://www.rfc1437.de/2006/01/26/leichte-uebertreibungen-bei-der-netzzeitung/ - 2026-03-03T18:06:21.000Z + 2026-03-03T18:06:21.217Z monthly 0.8 @@ -44669,7 +44858,7 @@ https://www.rfc1437.de/2006/01/26/spiele-protokolle-und-firewalls/ - 2026-03-03T18:06:26.000Z + 2026-03-03T18:06:26.801Z monthly 0.8 @@ -44678,7 +44867,7 @@ https://www.rfc1437.de/2006/01/26/torvalds-insert-foot-into-mouth/ - 2026-03-03T18:06:32.000Z + 2026-03-03T18:06:32.328Z monthly 0.8 @@ -44687,7 +44876,7 @@ https://www.rfc1437.de/2006/01/26/windows-source-offenlegen/ - 2026-03-03T18:06:38.000Z + 2026-03-03T18:06:38.294Z monthly 0.8 @@ -44696,7 +44885,7 @@ https://www.rfc1437.de/2006/01/25/opera-mini-gratis-html-browser-fuers-handy/ - 2026-03-03T18:06:42.000Z + 2026-03-03T18:06:42.881Z monthly 0.8 @@ -44705,7 +44894,7 @@ https://www.rfc1437.de/2006/01/25/stigmatisierung-von-jugendlichen-schon-n-dn-zgnssn/ - 2026-03-03T18:06:48.000Z + 2026-03-03T18:06:48.415Z monthly 0.8 @@ -44714,7 +44903,7 @@ https://www.rfc1437.de/2006/01/25/t-online-darf-nutzungsdaten-nicht-speichern/ - 2026-03-03T18:06:54.000Z + 2026-03-03T18:06:54.085Z monthly 0.8 @@ -44723,7 +44912,7 @@ https://www.rfc1437.de/2006/01/24/gvu-soll-raubkopierer-gesponsert-haben/ - 2026-03-03T18:06:59.000Z + 2026-03-03T18:06:59.657Z monthly 0.8 @@ -44732,7 +44921,7 @@ https://www.rfc1437.de/2006/01/24/jean-remy-von-matt-entkollert-dafuer-neidisch/ - 2026-03-03T18:07:05.000Z + 2026-03-03T18:07:05.197Z monthly 0.8 @@ -44741,7 +44930,7 @@ https://www.rfc1437.de/2006/01/24/microsoft-macht-die-schotten-gegen-oss-dicht/ - 2026-03-03T18:07:10.000Z + 2026-03-03T18:07:10.274Z monthly 0.8 @@ -44750,7 +44939,7 @@ https://www.rfc1437.de/2006/01/24/pyvm-home/ - 2026-03-03T18:07:14.000Z + 2026-03-03T18:07:14.768Z monthly 0.8 @@ -44759,7 +44948,7 @@ https://www.rfc1437.de/2006/01/23/a-p-r-e-s-s-c-o-m-practical-common-lisp/ - 2026-03-03T18:07:19.000Z + 2026-03-03T18:07:19.308Z monthly 0.8 @@ -44768,7 +44957,7 @@ https://www.rfc1437.de/2006/01/23/bill-clementson-s-blog-update-on-termite-a-lisp/ - 2026-03-03T18:07:24.000Z + 2026-03-03T18:07:24.325Z monthly 0.8 @@ -44777,7 +44966,7 @@ https://www.rfc1437.de/2006/01/23/boocompany/ - 2026-03-03T18:07:28.000Z + 2026-03-03T18:07:28.389Z monthly 0.8 @@ -44786,7 +44975,7 @@ https://www.rfc1437.de/2006/01/23/thinking-forth-2/ - 2026-03-03T18:07:32.000Z + 2026-03-03T18:07:32.262Z monthly 0.8 @@ -44795,7 +44984,7 @@ https://www.rfc1437.de/2006/01/23/unofficial-documentation-of-iphoto-6-0/ - 2026-03-03T18:07:37.000Z + 2026-03-03T18:07:37.534Z monthly 0.8 @@ -44804,7 +44993,7 @@ https://www.rfc1437.de/2006/01/23/wann-entdecken-devs-endlich-notebooks/ - 2026-03-03T18:07:42.000Z + 2026-03-03T18:07:42.834Z monthly 0.8 @@ -44813,7 +45002,7 @@ https://www.rfc1437.de/2006/01/23/zum-20-todestag-von-joseph-beuys/ - 2026-03-03T18:07:48.000Z + 2026-03-03T18:07:48.847Z monthly 0.8 @@ -44822,7 +45011,7 @@ https://www.rfc1437.de/2006/01/22/hs-nln-nbrchtgtr-zgrff-f-ml-rchtfrtgt-frstls-kn/ - 2026-03-03T18:07:54.000Z + 2026-03-03T18:07:54.652Z monthly 0.8 @@ -44831,7 +45020,7 @@ https://www.rfc1437.de/2006/01/21/a-list-of-open-source-http-proxies-written-in/ - 2026-03-03T18:07:59.000Z + 2026-03-03T18:07:59.123Z monthly 0.8 @@ -44840,7 +45029,7 @@ https://www.rfc1437.de/2006/01/21/runit-a-unix-init-scheme-with-service-supervision/ - 2026-03-03T18:08:03.000Z + 2026-03-03T18:08:03.376Z monthly 0.8 @@ -44849,7 +45038,7 @@ https://www.rfc1437.de/2006/01/21/webcleaner-a-filtering-http-proxy/ - 2026-03-03T18:08:08.000Z + 2026-03-03T18:08:08.098Z monthly 0.8 @@ -44858,7 +45047,7 @@ https://www.rfc1437.de/2006/01/20/feed-icons-help-establish-the-new-standard/ - 2026-03-03T18:08:12.000Z + 2026-03-03T18:08:12.234Z monthly 0.8 @@ -44867,7 +45056,7 @@ https://www.rfc1437.de/2006/01/20/hd-nix-da-sagt-hollywood/ - 2026-03-03T18:08:18.000Z + 2026-03-03T18:08:18.474Z monthly 0.8 @@ -44876,7 +45065,7 @@ https://www.rfc1437.de/2006/01/20/hurring-com-code-python-php-serialize-implemented/ - 2026-03-03T18:08:23.000Z + 2026-03-03T18:08:23.074Z monthly 0.8 @@ -44885,7 +45074,7 @@ https://www.rfc1437.de/2006/01/20/ok-sandvox-saugt-nicht-nur-hamster/ - 2026-03-03T18:08:28.000Z + 2026-03-03T18:08:28.617Z monthly 0.8 @@ -44894,7 +45083,7 @@ https://www.rfc1437.de/2006/01/20/ross-barkman-s-home-page/ - 2026-03-03T18:08:32.000Z + 2026-03-03T18:08:32.825Z monthly 0.8 @@ -44903,7 +45092,7 @@ https://www.rfc1437.de/2006/01/20/scriptaculous-mochikit-trac/ - 2026-03-03T18:08:38.000Z + 2026-03-03T18:08:38.042Z monthly 0.8 @@ -44912,7 +45101,7 @@ https://www.rfc1437.de/2006/01/20/sinar-m/ - 2026-03-03T18:08:43.000Z + 2026-03-03T18:08:43.480Z monthly 0.8 @@ -44921,7 +45110,7 @@ https://www.rfc1437.de/2006/01/20/the-scanner-photography-project/ - 2026-03-03T18:08:49.000Z + 2026-03-03T18:08:49.029Z monthly 0.8 @@ -44930,7 +45119,7 @@ https://www.rfc1437.de/2006/01/20/us-justiz-will-google-daten/ - 2026-03-03T18:08:54.000Z + 2026-03-03T18:08:54.622Z monthly 0.8 @@ -44939,7 +45128,7 @@ https://www.rfc1437.de/2006/01/20/vertuschen-verleugnen-und-ignorieren/ - 2026-03-03T18:09:00.000Z + 2026-03-03T18:09:00.869Z monthly 0.8 @@ -44948,7 +45137,7 @@ https://www.rfc1437.de/2006/01/19/monitor-vorwuerfe-gegen-ratiopharm/ - 2026-03-03T18:09:05.000Z + 2026-03-03T18:09:05.728Z monthly 0.8 @@ -44957,7 +45146,7 @@ https://www.rfc1437.de/2006/01/19/putzige-werbefuzzis/ - 2026-03-03T18:09:11.000Z + 2026-03-03T18:09:11.926Z monthly 0.8 @@ -44966,7 +45155,7 @@ https://www.rfc1437.de/2006/01/19/und-der-naechste-verlaesst-uns/ - 2026-03-03T18:09:17.000Z + 2026-03-03T18:09:17.213Z monthly 0.8 @@ -44975,7 +45164,7 @@ https://www.rfc1437.de/2006/01/19/wikipediade-derzeit-abgeschaltet/ - 2026-03-03T18:09:22.000Z + 2026-03-03T18:09:22.739Z monthly 0.8 @@ -44984,7 +45173,7 @@ https://www.rfc1437.de/2006/01/18/cosina-ist-das-neue-contax-sort-of/ - 2026-03-03T18:09:29.000Z + 2026-03-03T18:09:29.370Z monthly 0.8 @@ -44993,7 +45182,7 @@ https://www.rfc1437.de/2006/01/18/katz-eye-focusing-screen-for-the-canon-10d/ - 2026-03-03T18:09:36.000Z + 2026-03-03T18:09:36.375Z monthly 0.8 @@ -45002,7 +45191,7 @@ https://www.rfc1437.de/2006/01/18/rapidweaver-das-naechste-website-tool/ - 2026-03-03T18:09:41.000Z + 2026-03-03T18:09:41.957Z monthly 0.8 @@ -45011,7 +45200,7 @@ https://www.rfc1437.de/2006/01/17/an-alle-oberonistas/ - 2026-03-03T18:09:48.000Z + 2026-03-03T18:09:48.368Z monthly 0.8 @@ -45020,7 +45209,7 @@ https://www.rfc1437.de/2006/01/17/erster-test-mit-sandvox/ - 2026-03-03T18:09:54.000Z + 2026-03-03T18:09:54.210Z monthly 0.8 @@ -45029,7 +45218,7 @@ https://www.rfc1437.de/2006/01/17/fdp-spannt-sich-vor-die-musikindustrie/ - 2026-03-03T18:10:00.000Z + 2026-03-03T18:10:00.455Z monthly 0.8 @@ -45038,7 +45227,7 @@ https://www.rfc1437.de/2006/01/17/junge-welt-vom-17012006-ploetzlich-evangelisch/ - 2026-03-03T18:10:06.000Z + 2026-03-03T18:10:06.264Z monthly 0.8 @@ -45047,7 +45236,7 @@ https://www.rfc1437.de/2006/01/17/sandvox-test-teil-2/ - 2026-03-03T18:10:12.000Z + 2026-03-03T18:10:12.029Z monthly 0.8 @@ -45056,7 +45245,7 @@ https://www.rfc1437.de/2006/01/16/du-bist-bloed/ - 2026-03-03T18:10:17.000Z + 2026-03-03T18:10:17.374Z monthly 0.8 @@ -45065,7 +45254,7 @@ https://www.rfc1437.de/2006/01/15/fiddling-with-iweb/ - 2026-03-03T18:10:23.000Z + 2026-03-03T18:10:23.701Z monthly 0.8 @@ -45074,7 +45263,7 @@ https://www.rfc1437.de/2006/01/15/rfid-zapper-22c3/ - 2026-03-03T18:10:28.000Z + 2026-03-03T18:10:28.122Z monthly 0.8 @@ -45083,7 +45272,7 @@ https://www.rfc1437.de/2006/01/14/ancient-languages-perl/ - 2026-03-03T18:10:32.000Z + 2026-03-03T18:10:32.582Z monthly 0.8 @@ -45092,7 +45281,7 @@ https://www.rfc1437.de/2006/01/13/auf-schilys-spuren/ - 2026-03-03T18:10:39.000Z + 2026-03-03T18:10:39.151Z monthly 0.8 @@ -45101,7 +45290,7 @@ https://www.rfc1437.de/2006/01/13/django-paste/ - 2026-03-03T18:10:44.000Z + 2026-03-03T18:10:44.896Z monthly 0.8 @@ -45110,7 +45299,7 @@ https://www.rfc1437.de/2006/01/13/europaeisches-schulterklopfen-auf-kstn-dr-brgrrcht/ - 2026-03-03T18:10:50.000Z + 2026-03-03T18:10:50.846Z monthly 0.8 @@ -45119,7 +45308,7 @@ https://www.rfc1437.de/2006/01/13/products-flip4mac-wmv/ - 2026-03-03T18:10:55.000Z + 2026-03-03T18:10:55.203Z monthly 0.8 @@ -45128,7 +45317,7 @@ https://www.rfc1437.de/2006/01/12/apples-photocast-format/ - 2026-03-03T18:11:00.000Z + 2026-03-03T18:11:00.601Z monthly 0.8 @@ -45137,7 +45326,7 @@ https://www.rfc1437.de/2006/01/12/jetzt-mal-ganz-ehrlich/ - 2026-03-03T18:11:06.000Z + 2026-03-03T18:11:06.171Z monthly 0.8 @@ -45146,7 +45335,7 @@ https://www.rfc1437.de/2006/01/12/moinmoin-release-1-5/ - 2026-03-03T18:11:10.000Z + 2026-03-03T18:11:10.461Z monthly 0.8 @@ -45155,7 +45344,7 @@ https://www.rfc1437.de/2006/01/11/das-kalte-grausen-packt-einen/ - 2026-03-03T18:11:16.000Z + 2026-03-03T18:11:16.452Z monthly 0.8 @@ -45164,7 +45353,7 @@ https://www.rfc1437.de/2006/01/11/feeds-auf-diesem-server/ - 2026-03-03T18:11:21.000Z + 2026-03-03T18:11:21.722Z monthly 0.8 @@ -45173,7 +45362,7 @@ https://www.rfc1437.de/2006/01/11/microsoft-behaelt-fat-patente/ - 2026-03-03T18:11:27.000Z + 2026-03-03T18:11:27.026Z monthly 0.8 @@ -45182,7 +45371,7 @@ https://www.rfc1437.de/2006/01/11/prograph-fuer-os-x/ - 2026-03-03T18:11:32.000Z + 2026-03-03T18:11:32.338Z monthly 0.8 @@ -45191,7 +45380,7 @@ https://www.rfc1437.de/2006/01/11/sandbox-spam-filter-the-trac-project-trac/ - 2026-03-03T18:11:37.000Z + 2026-03-03T18:11:37.522Z monthly 0.8 @@ -45200,7 +45389,7 @@ https://www.rfc1437.de/2006/01/11/was-man-so-mit-arbeitslosen-machen-kann/ - 2026-03-03T18:11:43.000Z + 2026-03-03T18:11:43.523Z monthly 0.8 @@ -45209,7 +45398,7 @@ https://www.rfc1437.de/2006/01/10/dotmac-nervt/ - 2026-03-03T18:11:49.000Z + 2026-03-03T18:11:49.234Z monthly 0.8 @@ -45218,7 +45407,7 @@ https://www.rfc1437.de/2006/01/10/efficient-editing-with-vim-jonathan-mcpherson/ - 2026-03-03T18:11:53.000Z + 2026-03-03T18:11:53.424Z monthly 0.8 @@ -45227,7 +45416,7 @@ https://www.rfc1437.de/2006/01/10/farbenfroh/ - 2026-03-03T18:11:59.000Z + 2026-03-03T18:11:59.770Z monthly 0.8 @@ -45236,7 +45425,7 @@ https://www.rfc1437.de/2006/01/10/freie-alternative-zu-flash/ - 2026-03-03T18:12:04.000Z + 2026-03-03T18:12:04.318Z monthly 0.8 @@ -45245,7 +45434,7 @@ https://www.rfc1437.de/2006/01/10/gerade-einen-schreck-gekriegt/ - 2026-03-03T18:12:09.000Z + 2026-03-03T18:12:09.753Z monthly 0.8 @@ -45254,7 +45443,7 @@ https://www.rfc1437.de/2006/01/10/kann-mir-bitte-mal-jemand-erklaeren/ - 2026-03-03T18:12:16.000Z + 2026-03-03T18:12:16.386Z monthly 0.8 @@ -45263,7 +45452,7 @@ https://www.rfc1437.de/2006/01/10/open-sword-pixen/ - 2026-03-03T18:12:20.000Z + 2026-03-03T18:12:20.642Z monthly 0.8 @@ -45272,7 +45461,7 @@ https://www.rfc1437.de/2006/01/09/adobe-lightroom-beta-digital-photography-review/ - 2026-03-03T18:12:24.000Z + 2026-03-03T18:12:24.844Z monthly 0.8 @@ -45281,7 +45470,7 @@ https://www.rfc1437.de/2006/01/09/introducing-sandvox-karelia-software/ - 2026-03-03T18:12:29.000Z + 2026-03-03T18:12:29.664Z monthly 0.8 @@ -45290,7 +45479,7 @@ https://www.rfc1437.de/2006/01/09/lightroom-erste-tests/ - 2026-03-03T18:12:35.000Z + 2026-03-03T18:12:35.137Z monthly 0.8 @@ -45299,7 +45488,7 @@ https://www.rfc1437.de/2006/01/09/mancher-abmahnwahnsinn-wird-verstaendlich/ - 2026-03-03T18:12:41.000Z + 2026-03-03T18:12:41.257Z monthly 0.8 @@ -45308,7 +45497,7 @@ https://www.rfc1437.de/2006/01/09/mexico-bars-canadian-over-us-no-fly-list/ - 2026-03-03T18:12:47.000Z + 2026-03-03T18:12:47.593Z monthly 0.8 @@ -45317,7 +45506,7 @@ https://www.rfc1437.de/2006/01/09/nadamac-camiscript/ - 2026-03-03T18:12:51.000Z + 2026-03-03T18:12:51.345Z monthly 0.8 @@ -45326,7 +45515,7 @@ https://www.rfc1437.de/2006/01/09/nadamac-camiscript-script-repository/ - 2026-03-03T18:12:55.000Z + 2026-03-03T18:12:55.427Z monthly 0.8 @@ -45335,7 +45524,7 @@ https://www.rfc1437.de/2006/01/09/picturesync-photo-sharing-for-mac-os-x/ - 2026-03-03T18:13:00.000Z + 2026-03-03T18:13:00.078Z monthly 0.8 @@ -45344,7 +45533,7 @@ https://www.rfc1437.de/2006/01/09/polaris-opensolaris-fuer-den-powerpc/ - 2026-03-03T18:13:04.000Z + 2026-03-03T18:13:04.218Z monthly 0.8 @@ -45353,7 +45542,7 @@ https://www.rfc1437.de/2006/01/08/billys-band-polnische-rock-polka/ - 2026-03-03T18:13:09.000Z + 2026-03-03T18:13:09.921Z monthly 0.8 @@ -45362,7 +45551,7 @@ https://www.rfc1437.de/2006/01/08/loading-a-zx-spectrum-from-an-ipod/ - 2026-03-03T18:13:14.000Z + 2026-03-03T18:13:14.223Z monthly 0.8 @@ -45371,7 +45560,7 @@ https://www.rfc1437.de/2006/01/07/gambit-scheme-eine-neue-beta/ - 2026-03-03T18:13:19.000Z + 2026-03-03T18:13:19.463Z monthly 0.8 @@ -45380,7 +45569,7 @@ https://www.rfc1437.de/2006/01/07/impotenz-per-funk-diagnostizierbar/ - 2026-03-03T18:13:25.000Z + 2026-03-03T18:13:25.060Z monthly 0.8 @@ -45389,7 +45578,7 @@ https://www.rfc1437.de/2006/01/07/nazi-und-ss-mann-harrer-verstorben/ - 2026-03-03T18:13:30.000Z + 2026-03-03T18:13:30.781Z monthly 0.8 @@ -45398,7 +45587,7 @@ https://www.rfc1437.de/2006/01/07/nur-die-besten-absichten/ - 2026-03-03T18:13:37.000Z + 2026-03-03T18:13:37.089Z monthly 0.8 @@ -45407,7 +45596,7 @@ https://www.rfc1437.de/2006/01/07/wahrung-der-interessen-des-senats/ - 2026-03-03T18:13:42.000Z + 2026-03-03T18:13:42.689Z monthly 0.8 @@ -45416,7 +45605,7 @@ https://www.rfc1437.de/2006/01/07/wiedereinfuehrung-des-schuldturms/ - 2026-03-03T18:13:48.000Z + 2026-03-03T18:13:48.430Z monthly 0.8 @@ -45425,7 +45614,7 @@ https://www.rfc1437.de/2006/01/06/aes-rijndael-encryption-test-in-javascript/ - 2026-03-07T21:14:47.000Z + 2026-03-07T21:14:47.712Z monthly 0.8 @@ -45434,7 +45623,7 @@ https://www.rfc1437.de/2006/01/06/fudmachine-sco/ - 2026-03-03T18:13:56.000Z + 2026-03-03T18:13:56.856Z monthly 0.8 @@ -45443,7 +45632,7 @@ https://www.rfc1437.de/2006/01/06/informationsfreiheitsgesetz-und-seine-umsetzung/ - 2026-03-03T18:14:02.000Z + 2026-03-03T18:14:02.392Z monthly 0.8 @@ -45452,7 +45641,7 @@ https://www.rfc1437.de/2006/01/06/javascript-encryption-library/ - 2026-03-07T21:14:48.000Z + 2026-03-07T21:14:48.417Z monthly 0.8 @@ -45461,7 +45650,7 @@ https://www.rfc1437.de/2006/01/06/openpgp-message-encryption-in-javascript/ - 2026-03-03T18:14:09.000Z + 2026-03-03T18:14:09.994Z monthly 0.8 @@ -45470,7 +45659,7 @@ https://www.rfc1437.de/2006/01/06/pangasius/ - 2026-03-03T18:14:13.000Z + 2026-03-03T18:14:13.581Z monthly 0.8 @@ -45479,7 +45668,7 @@ https://www.rfc1437.de/2006/01/06/putty-for-symbian-os/ - 2026-03-03T18:14:17.000Z + 2026-03-03T18:14:17.156Z monthly 0.8 @@ -45488,7 +45677,7 @@ https://www.rfc1437.de/2006/01/06/rijndael-in-javascript/ - 2026-03-03T18:14:21.000Z + 2026-03-03T18:14:21.213Z monthly 0.8 @@ -45497,7 +45686,7 @@ https://www.rfc1437.de/2006/01/06/spekulationen-um-neue-atommeiler-in-nrw/ - 2026-03-03T18:14:26.000Z + 2026-03-03T18:14:26.750Z monthly 0.8 @@ -45506,7 +45695,7 @@ https://www.rfc1437.de/2006/01/06/terrorverdaechtiger-hut/ - 2026-03-03T18:14:32.000Z + 2026-03-03T18:14:32.346Z monthly 0.8 @@ -45515,7 +45704,7 @@ https://www.rfc1437.de/2006/01/06/twofish-javascript/ - 2026-03-07T21:14:51.000Z + 2026-03-07T21:14:51.136Z monthly 0.8 @@ -45524,7 +45713,7 @@ https://www.rfc1437.de/2006/01/05/code-enthought-com-enthought-tool-suite/ - 2026-03-03T18:14:40.000Z + 2026-03-03T18:14:40.782Z monthly 0.8 @@ -45533,7 +45722,7 @@ https://www.rfc1437.de/2006/01/05/morons-org-anti-gay-preacher-arrested-for/ - 2026-03-03T18:14:45.000Z + 2026-03-03T18:14:45.305Z monthly 0.8 @@ -45542,7 +45731,7 @@ https://www.rfc1437.de/2006/01/05/my-cssquery/ - 2026-03-03T18:14:50.000Z + 2026-03-03T18:14:50.318Z monthly 0.8 @@ -45551,7 +45740,7 @@ https://www.rfc1437.de/2006/01/05/neues-von-lego-mindstorms/ - 2026-03-03T18:14:56.000Z + 2026-03-03T18:14:56.741Z monthly 0.8 @@ -45560,7 +45749,7 @@ https://www.rfc1437.de/2006/01/05/schmeissen-wir-doch-gleich-das-geld-in-den-tank/ - 2026-03-03T18:15:02.000Z + 2026-03-03T18:15:02.633Z monthly 0.8 @@ -45569,7 +45758,7 @@ https://www.rfc1437.de/2006/01/04/aggregatoren-und-referrer-spamming/ - 2026-03-03T18:15:08.000Z + 2026-03-03T18:15:08.425Z monthly 0.8 @@ -45578,7 +45767,7 @@ https://www.rfc1437.de/2006/01/04/baden-wuerttemberg-das-etwas-deutschere-deutschlnd/ - 2026-03-03T18:15:14.000Z + 2026-03-03T18:15:14.371Z monthly 0.8 @@ -45587,7 +45776,7 @@ https://www.rfc1437.de/2006/01/04/codeville/ - 2026-03-03T18:15:18.000Z + 2026-03-03T18:15:18.403Z monthly 0.8 @@ -45596,7 +45785,7 @@ https://www.rfc1437.de/2006/01/04/crossroads-0-23/ - 2026-03-03T18:15:22.000Z + 2026-03-03T18:15:22.842Z monthly 0.8 @@ -45605,7 +45794,7 @@ https://www.rfc1437.de/2006/01/04/csu-kann-gas-und-strom-nicht-auseinanderhalten/ - 2026-03-03T18:15:28.000Z + 2026-03-03T18:15:28.893Z monthly 0.8 @@ -45614,7 +45803,7 @@ https://www.rfc1437.de/2006/01/04/hat-so-ein-rfid-pass-eigentlich-garantie/ - 2026-03-03T18:15:34.000Z + 2026-03-03T18:15:34.318Z monthly 0.8 @@ -45623,7 +45812,7 @@ https://www.rfc1437.de/2006/01/04/monotone-distributed-version-control/ - 2026-03-03T18:15:38.000Z + 2026-03-03T18:15:38.871Z monthly 0.8 @@ -45632,7 +45821,7 @@ https://www.rfc1437.de/2006/01/04/xmledit-a-filetype-plugin-to-help-edit-xml-html/ - 2026-03-03T18:15:43.000Z + 2026-03-03T18:15:43.929Z monthly 0.8 @@ -45641,7 +45830,7 @@ https://www.rfc1437.de/2006/01/03/cucumber2-an-object-relational-mapping-system-for/ - 2026-03-03T18:15:48.000Z + 2026-03-03T18:15:48.652Z monthly 0.8 @@ -45650,7 +45839,7 @@ https://www.rfc1437.de/2006/01/03/folter-hoax-und-die-aktzeptanz/ - 2026-03-03T18:15:54.000Z + 2026-03-03T18:15:54.834Z monthly 0.8 @@ -45659,7 +45848,7 @@ https://www.rfc1437.de/2006/01/03/schon-seltsam/ - 2026-03-03T18:16:00.000Z + 2026-03-03T18:16:00.312Z monthly 0.8 @@ -45668,7 +45857,7 @@ https://www.rfc1437.de/2006/01/03/wap-internet-multimedia-messaging-mms/ - 2026-03-03T18:16:05.000Z + 2026-03-03T18:16:05.687Z monthly 0.8 @@ -45677,7 +45866,7 @@ https://www.rfc1437.de/2006/01/03/wie-man-sich-vor-verantwortung-drueckt/ - 2026-03-03T18:16:10.000Z + 2026-03-03T18:16:10.987Z monthly 0.8 @@ -45686,7 +45875,7 @@ https://www.rfc1437.de/2006/01/02/camino-bookmarklets/ - 2026-03-03T18:16:15.000Z + 2026-03-03T18:16:15.345Z monthly 0.8 @@ -45695,7 +45884,7 @@ https://www.rfc1437.de/2006/01/02/damit-softwarepatente-nicht-in-vergessenheit-gertn/ - 2026-03-03T18:16:21.000Z + 2026-03-03T18:16:21.046Z monthly 0.8 @@ -45704,7 +45893,7 @@ https://www.rfc1437.de/2006/01/02/firefox-ist-schon-strange/ - 2026-03-03T18:16:26.000Z + 2026-03-03T18:16:26.250Z monthly 0.8 @@ -45713,7 +45902,7 @@ https://www.rfc1437.de/2006/01/02/lisp-at-light-speed/ - 2026-03-03T18:16:29.000Z + 2026-03-03T18:16:29.957Z monthly 0.8 @@ -45722,7 +45911,7 @@ https://www.rfc1437.de/2006/01/02/nadamac-camitools/ - 2026-03-03T18:16:34.000Z + 2026-03-03T18:16:34.130Z monthly 0.8 @@ -45731,7 +45920,7 @@ https://www.rfc1437.de/2006/01/02/noch-mehr-abmahnereien-zum-neuen-jahr/ - 2026-03-03T18:16:40.000Z + 2026-03-03T18:16:40.574Z monthly 0.8 @@ -45740,7 +45929,7 @@ https://www.rfc1437.de/2006/01/02/noscript-whitelist-javascript-blocking-for-a/ - 2026-03-03T18:16:45.000Z + 2026-03-03T18:16:45.261Z monthly 0.8 @@ -45749,7 +45938,7 @@ https://www.rfc1437.de/2006/01/02/taste-for-the-web/ - 2026-03-03T18:16:50.000Z + 2026-03-03T18:16:50.159Z monthly 0.8 @@ -45758,7 +45947,7 @@ https://www.rfc1437.de/2006/01/02/verfassungsbeschwerd-ggn-mstrttn-bhrbfgnss-ds-zlls/ - 2026-03-03T18:16:55.000Z + 2026-03-03T18:16:55.866Z monthly 0.8 @@ -45767,7 +45956,7 @@ https://www.rfc1437.de/2006/01/02/web-developer-extension/ - 2026-03-03T18:17:00.000Z + 2026-03-03T18:17:00.024Z monthly 0.8 @@ -45776,7 +45965,7 @@ https://www.rfc1437.de/2005/12/31/forscher-neigen-zu-uebertreibungen/ - 2026-03-03T18:17:05.000Z + 2026-03-03T18:17:05.228Z monthly 0.8 @@ -45785,7 +45974,7 @@ https://www.rfc1437.de/2005/12/31/re-web-application-design-the-rest-of-the-story/ - 2026-03-03T18:17:09.000Z + 2026-03-03T18:17:09.825Z monthly 0.8 @@ -45794,7 +45983,7 @@ https://www.rfc1437.de/2005/12/31/wiehernde-amtsschimmel/ - 2026-03-03T18:17:15.000Z + 2026-03-03T18:17:15.630Z monthly 0.8 @@ -45803,7 +45992,7 @@ https://www.rfc1437.de/2005/12/30/lgt-lightweight-game-toolkit-for-python/ - 2026-03-03T18:17:20.000Z + 2026-03-03T18:17:20.200Z monthly 0.8 @@ -45812,7 +46001,7 @@ https://www.rfc1437.de/2005/12/30/newsriver-aggregator-fuer-den-opml-editor/ - 2026-03-03T18:17:25.000Z + 2026-03-03T18:17:25.927Z monthly 0.8 @@ -45821,7 +46010,7 @@ https://www.rfc1437.de/2005/12/30/sixtus-net-blog-papi-wo-kommen-eigenlich-die/ - 2026-03-03T18:17:31.000Z + 2026-03-03T18:17:31.552Z monthly 0.8 @@ -45830,7 +46019,7 @@ https://www.rfc1437.de/2005/12/30/tp-noch-nicht-aus-dem-vollen-geschoepft/ - 2026-03-03T18:17:36.000Z + 2026-03-03T18:17:36.442Z monthly 0.8 @@ -45839,7 +46028,7 @@ https://www.rfc1437.de/2005/12/30/webstemmer/ - 2026-03-03T18:17:40.000Z + 2026-03-03T18:17:40.504Z monthly 0.8 @@ -45848,7 +46037,7 @@ https://www.rfc1437.de/2005/12/29/raw-developer-upgrade/ - 2026-03-03T18:17:45.000Z + 2026-03-03T18:17:45.689Z monthly 0.8 @@ -45857,7 +46046,7 @@ https://www.rfc1437.de/2005/12/29/susanne-osthoff-und-die-presse-und-politik/ - 2026-03-03T18:17:51.000Z + 2026-03-03T18:17:51.394Z monthly 0.8 @@ -45866,7 +46055,7 @@ https://www.rfc1437.de/2005/12/28/wer-ist-denn-jetzt-hier-der-hassprediger/ - 2026-03-03T18:17:57.000Z + 2026-03-03T18:17:57.636Z monthly 0.8 @@ -45875,7 +46064,7 @@ https://www.rfc1437.de/2005/12/27/was-ist-los-mit-dem-glos/ - 2026-03-03T18:18:03.000Z + 2026-03-03T18:18:03.581Z monthly 0.8 @@ -45884,7 +46073,7 @@ https://www.rfc1437.de/2005/12/27/wettbewerb-des-horrors/ - 2026-03-03T18:18:08.000Z + 2026-03-03T18:18:08.791Z monthly 0.8 @@ -45893,7 +46082,7 @@ https://www.rfc1437.de/2005/12/26/hwang-soll-alle-ergebnisse-gefaelscht-haben/ - 2026-03-03T18:18:13.000Z + 2026-03-03T18:18:13.942Z monthly 0.8 @@ -45902,7 +46091,7 @@ https://www.rfc1437.de/2005/12/26/internet-explorer-sucks/ - 2026-03-07T21:14:52.000Z + 2026-03-07T21:14:52.371Z monthly 0.8 @@ -45911,7 +46100,7 @@ https://www.rfc1437.de/2005/12/26/leica-digital-m/ - 2026-03-03T18:18:26.000Z + 2026-03-03T18:18:26.135Z monthly 0.8 @@ -45920,7 +46109,7 @@ https://www.rfc1437.de/2005/12/26/neue-kleinbild-optiken-von-zeiss/ - 2026-03-03T18:18:31.000Z + 2026-03-03T18:18:31.919Z monthly 0.8 @@ -45929,7 +46118,7 @@ https://www.rfc1437.de/2005/12/26/simple-json-1-0/ - 2026-03-03T18:18:36.000Z + 2026-03-03T18:18:36.969Z monthly 0.8 @@ -45938,7 +46127,7 @@ https://www.rfc1437.de/2005/12/26/strelitzia-reginae/ - 2026-03-03T18:18:43.000Z + 2026-03-03T18:18:43.298Z monthly 0.8 @@ -45947,7 +46136,7 @@ https://www.rfc1437.de/2005/12/23/nun-habt-doch-mal-verstaendnis/ - 2026-03-03T18:18:48.000Z + 2026-03-03T18:18:48.816Z monthly 0.8 @@ -45956,7 +46145,7 @@ https://www.rfc1437.de/2005/12/23/sco-damit-wohl-bald-besiegelt/ - 2026-03-03T18:18:54.000Z + 2026-03-03T18:18:54.153Z monthly 0.8 @@ -45965,7 +46154,7 @@ https://www.rfc1437.de/2005/12/22/demontage-von-nrw-geht-voran/ - 2026-03-03T18:18:59.000Z + 2026-03-03T18:18:59.501Z monthly 0.8 @@ -45974,7 +46163,7 @@ https://www.rfc1437.de/2005/12/22/ja-watt-denn-nu/ - 2026-03-03T18:19:04.000Z + 2026-03-03T18:19:04.437Z monthly 0.8 @@ -45983,7 +46172,7 @@ https://www.rfc1437.de/2005/12/22/rennende-riesen-down-under/ - 2026-03-03T18:19:09.000Z + 2026-03-03T18:19:09.753Z monthly 0.8 @@ -45992,7 +46181,7 @@ https://www.rfc1437.de/2005/12/21/css2-dom-styling-an-input-type-file/ - 2026-03-03T18:19:13.000Z + 2026-03-03T18:19:13.597Z monthly 0.8 @@ -46001,7 +46190,7 @@ https://www.rfc1437.de/2005/12/21/rechenspielchen/ - 2026-03-03T18:19:17.000Z + 2026-03-03T18:19:17.941Z monthly 0.8 @@ -46010,7 +46199,7 @@ https://www.rfc1437.de/2005/12/21/stickblog-blog-archive-upload-multiple-files-with/ - 2026-03-03T18:19:22.000Z + 2026-03-03T18:19:22.247Z monthly 0.8 @@ -46019,7 +46208,7 @@ https://www.rfc1437.de/2005/12/21/weblogs/ - 2026-03-08T16:33:33.000Z + 2026-03-08T16:33:33.082Z monthly 0.8 @@ -46028,7 +46217,7 @@ https://www.rfc1437.de/2005/12/21/werft-die-purschen-zu-poden/ - 2026-03-03T18:19:31.000Z + 2026-03-03T18:19:31.396Z monthly 0.8 @@ -46037,7 +46226,7 @@ https://www.rfc1437.de/2005/12/20/experten-am-werk/ - 2026-03-03T18:19:36.000Z + 2026-03-03T18:19:36.447Z monthly 0.8 @@ -46046,7 +46235,7 @@ https://www.rfc1437.de/2005/12/20/reichsarbeitsdienst/ - 2026-03-03T18:19:41.000Z + 2026-03-03T18:19:41.839Z monthly 0.8 @@ -46055,7 +46244,7 @@ https://www.rfc1437.de/2005/12/20/verschollener-mars-roboter-beagle-2-entdeckt/ - 2026-03-03T18:19:46.000Z + 2026-03-03T18:19:46.164Z monthly 0.8 @@ -46064,7 +46253,7 @@ https://www.rfc1437.de/2005/12/19/dejavu-trac-2/ - 2026-03-03T18:19:49.000Z + 2026-03-03T18:19:49.973Z monthly 0.8 @@ -46073,7 +46262,7 @@ https://www.rfc1437.de/2005/12/19/homebrew-cpu-home-page/ - 2026-03-03T18:19:54.000Z + 2026-03-03T18:19:54.590Z monthly 0.8 @@ -46082,7 +46271,7 @@ https://www.rfc1437.de/2005/12/19/leichte-instabilitaet-dieser-site/ - 2026-03-03T18:19:59.000Z + 2026-03-03T18:19:59.413Z monthly 0.8 @@ -46091,7 +46280,7 @@ https://www.rfc1437.de/2005/12/18/download-drscheme-v300/ - 2026-03-03T18:20:03.000Z + 2026-03-03T18:20:03.870Z monthly 0.8 @@ -46100,7 +46289,7 @@ https://www.rfc1437.de/2005/12/18/elende-abzocker/ - 2026-03-03T18:20:09.000Z + 2026-03-03T18:20:09.197Z monthly 0.8 @@ -46109,7 +46298,7 @@ https://www.rfc1437.de/2005/12/18/pandora-erste-spielereien/ - 2026-03-03T18:20:14.000Z + 2026-03-03T18:20:14.462Z monthly 0.8 @@ -46118,7 +46307,7 @@ https://www.rfc1437.de/2005/12/18/qualitaetssicherung-im-itunes-music-store/ - 2026-03-03T18:20:20.000Z + 2026-03-03T18:20:20.320Z monthly 0.8 @@ -46127,7 +46316,7 @@ https://www.rfc1437.de/2005/12/18/svg-has-landed/ - 2026-03-03T18:20:25.000Z + 2026-03-03T18:20:25.673Z monthly 0.8 @@ -46136,7 +46325,7 @@ https://www.rfc1437.de/2005/12/18/wie-waers-denn-mal-mit-ausbilden/ - 2026-03-03T18:20:32.000Z + 2026-03-03T18:20:32.305Z monthly 0.8 @@ -46145,7 +46334,7 @@ https://www.rfc1437.de/2005/12/17/airtunes-nur-ne-halbe-sache/ - 2026-03-03T18:20:37.000Z + 2026-03-03T18:20:37.585Z monthly 0.8 @@ -46154,7 +46343,7 @@ https://www.rfc1437.de/2005/12/17/apple-und-firewire-bald-ein-ende/ - 2026-03-03T18:20:43.000Z + 2026-03-03T18:20:43.314Z monthly 0.8 @@ -46163,7 +46352,7 @@ https://www.rfc1437.de/2005/12/17/appscript-3/ - 2026-03-03T18:20:47.000Z + 2026-03-03T18:20:47.360Z monthly 0.8 @@ -46172,7 +46361,7 @@ https://www.rfc1437.de/2005/12/17/generische-funktionen-mit-python/ - 2026-03-03T18:20:53.000Z + 2026-03-03T18:20:53.105Z monthly 0.8 @@ -46181,7 +46370,7 @@ https://www.rfc1437.de/2005/12/17/ltk-the-lisp-toolkit/ - 2026-03-03T18:20:57.000Z + 2026-03-03T18:20:57.585Z monthly 0.8 @@ -46190,7 +46379,7 @@ https://www.rfc1437.de/2005/12/17/sams-teach-yourself-shell-programming-in-24-hours/ - 2026-03-03T18:21:03.000Z + 2026-03-03T18:21:03.185Z monthly 0.8 @@ -46199,7 +46388,7 @@ https://www.rfc1437.de/2005/12/17/tonnenschwere-moore-skulptur-gestohlen/ - 2026-03-03T18:21:08.000Z + 2026-03-03T18:21:08.837Z monthly 0.8 @@ -46208,7 +46397,7 @@ https://www.rfc1437.de/2005/12/16/bundestag-verlaengert-zoll-befugnisse/ - 2026-03-03T18:21:14.000Z + 2026-03-03T18:21:14.620Z monthly 0.8 @@ -46217,7 +46406,7 @@ https://www.rfc1437.de/2005/12/16/gen-food-dreck-auch-bald-in-deutschland/ - 2026-03-03T18:21:20.000Z + 2026-03-03T18:21:20.502Z monthly 0.8 @@ -46226,7 +46415,7 @@ https://www.rfc1437.de/2005/12/16/goodie-headless-squeak-for-os-x-re-mac-vm-3-2-x/ - 2026-03-03T18:21:26.000Z + 2026-03-03T18:21:26.286Z monthly 0.8 @@ -46235,7 +46424,7 @@ https://www.rfc1437.de/2005/12/16/hyper-estraier-a-full-text-search-system-for/ - 2026-03-03T18:21:30.000Z + 2026-03-03T18:21:30.383Z monthly 0.8 @@ -46244,7 +46433,7 @@ https://www.rfc1437.de/2005/12/16/the-xapian-project/ - 2026-03-03T18:21:34.000Z + 2026-03-03T18:21:34.591Z monthly 0.8 @@ -46253,7 +46442,7 @@ https://www.rfc1437.de/2005/12/15/bankenskandal-in-italien-keine-kleinen-broetchen/ - 2026-03-03T18:21:40.000Z + 2026-03-03T18:21:40.430Z monthly 0.8 @@ -46262,7 +46451,7 @@ https://www.rfc1437.de/2005/12/15/inets-2-5-5/ - 2026-03-08T14:24:07.000Z + 2026-03-08T14:24:07.731Z monthly 0.8 @@ -46271,7 +46460,7 @@ https://www.rfc1437.de/2005/12/15/is-rails-a-dsl-what-is-a-dsl-and-is-it-possible/ - 2026-03-03T18:21:49.000Z + 2026-03-03T18:21:49.512Z monthly 0.8 @@ -46280,7 +46469,7 @@ https://www.rfc1437.de/2005/12/15/juristische-nidrlg-fr-strfnzgn-mschnr-ggn-p2p-ntzr/ - 2026-03-03T18:21:54.000Z + 2026-03-03T18:21:54.803Z monthly 0.8 @@ -46289,7 +46478,7 @@ https://www.rfc1437.de/2005/12/15/linux-daemon-writing-howto/ - 2026-03-03T18:21:58.000Z + 2026-03-03T18:21:58.883Z monthly 0.8 @@ -46298,7 +46487,7 @@ https://www.rfc1437.de/2005/12/15/yaws/ - 2026-03-03T18:22:02.000Z + 2026-03-03T18:22:02.979Z monthly 0.8 @@ -46307,7 +46496,7 @@ https://www.rfc1437.de/2005/12/14/python-cheese-shop-python-fastcgi-1-0/ - 2026-03-03T18:22:07.000Z + 2026-03-03T18:22:07.431Z monthly 0.8 @@ -46316,7 +46505,7 @@ https://www.rfc1437.de/2005/12/14/python-openid-1-0-1-released-openid-enabled/ - 2026-03-03T18:22:12.000Z + 2026-03-03T18:22:12.174Z monthly 0.8 @@ -46325,7 +46514,7 @@ https://www.rfc1437.de/2005/12/14/vorratsdatenspeicherung-ist-ein-skandal/ - 2026-03-03T18:22:17.000Z + 2026-03-03T18:22:17.785Z monthly 0.8 @@ -46334,7 +46523,7 @@ https://www.rfc1437.de/2005/12/13/bruessel-will-jetzt-auch-am-fernsehprgrmm-rmpfschn/ - 2026-03-03T18:22:23.000Z + 2026-03-03T18:22:23.272Z monthly 0.8 @@ -46343,7 +46532,7 @@ https://www.rfc1437.de/2005/12/13/hacking-the-jproject-the-daily-wtf/ - 2026-03-03T18:22:27.000Z + 2026-03-03T18:22:27.162Z monthly 0.8 @@ -46352,7 +46541,7 @@ https://www.rfc1437.de/2005/12/13/how-to-guide-for-descriptors/ - 2026-03-03T18:22:31.000Z + 2026-03-03T18:22:31.500Z monthly 0.8 @@ -46361,7 +46550,7 @@ https://www.rfc1437.de/2005/12/13/jacobian-org-django-performance-tips/ - 2026-03-03T18:22:36.000Z + 2026-03-03T18:22:36.153Z monthly 0.8 @@ -46370,7 +46559,7 @@ https://www.rfc1437.de/2005/12/13/nur-so-eine-ueberlegung/ - 2026-03-03T18:22:41.000Z + 2026-03-03T18:22:41.134Z monthly 0.8 @@ -46379,7 +46568,7 @@ https://www.rfc1437.de/2005/12/13/pgpool-page/ - 2026-03-03T18:22:44.000Z + 2026-03-03T18:22:44.638Z monthly 0.8 @@ -46388,7 +46577,7 @@ https://www.rfc1437.de/2005/12/12/von-kontrolle-redet-mal-wieder-keiner/ - 2026-03-03T18:22:49.000Z + 2026-03-03T18:22:49.964Z monthly 0.8 @@ -46397,7 +46586,7 @@ https://www.rfc1437.de/2005/12/12/westerwelle-an-laecherlichkeit-kaum-zu-ueberbieten/ - 2026-03-03T18:22:55.000Z + 2026-03-03T18:22:55.318Z monthly 0.8 @@ -46406,7 +46595,7 @@ https://www.rfc1437.de/2005/12/12/wikipedia-verklagen/ - 2026-03-03T18:23:00.000Z + 2026-03-03T18:23:00.751Z monthly 0.8 @@ -46415,7 +46604,7 @@ https://www.rfc1437.de/2005/12/11/seltsames-itunes-verhalten/ - 2026-03-03T18:23:05.000Z + 2026-03-03T18:23:05.626Z monthly 0.8 @@ -46424,7 +46613,7 @@ https://www.rfc1437.de/2005/12/10/guardian-unlimited-special-reports-how/ - 2026-03-03T18:23:10.000Z + 2026-03-03T18:23:10.146Z monthly 0.8 @@ -46433,7 +46622,7 @@ https://www.rfc1437.de/2005/12/10/super-drm-architektur-der-zukunft/ - 2026-03-03T18:23:15.000Z + 2026-03-03T18:23:15.869Z monthly 0.8 @@ -46442,7 +46631,7 @@ https://www.rfc1437.de/2005/12/10/und-wir-machen-alle-fehler-erneut/ - 2026-03-03T18:23:21.000Z + 2026-03-03T18:23:21.163Z monthly 0.8 @@ -46451,7 +46640,7 @@ https://www.rfc1437.de/2005/12/09/deadlock/ - 2026-03-03T18:23:24.000Z + 2026-03-03T18:23:24.991Z monthly 0.8 @@ -46460,7 +46649,7 @@ https://www.rfc1437.de/2005/12/09/fragen-die-man-sich-stellen-muss/ - 2026-03-03T18:23:28.000Z + 2026-03-03T18:23:28.858Z monthly 0.8 @@ -46469,7 +46658,7 @@ https://www.rfc1437.de/2005/12/09/groessenwahnsinnige-musikverlage/ - 2026-03-03T18:23:34.000Z + 2026-03-03T18:23:34.355Z monthly 0.8 @@ -46478,7 +46667,7 @@ https://www.rfc1437.de/2005/12/09/kampfsprache/ - 2026-03-03T18:23:39.000Z + 2026-03-03T18:23:39.361Z monthly 0.8 @@ -46487,7 +46676,7 @@ https://www.rfc1437.de/2005/12/09/klimagipfel-usa-drohen-mit-veto/ - 2026-03-03T18:23:44.000Z + 2026-03-03T18:23:44.790Z monthly 0.8 @@ -46496,7 +46685,7 @@ https://www.rfc1437.de/2005/12/09/setting-user-passwords-in-admin/ - 2026-03-07T21:14:59.000Z + 2026-03-07T21:14:59.536Z monthly 0.8 @@ -46505,7 +46694,7 @@ https://www.rfc1437.de/2005/12/09/sony-faellt-schon-wieder-auf/ - 2026-03-03T18:23:55.000Z + 2026-03-03T18:23:55.512Z monthly 0.8 @@ -46514,7 +46703,7 @@ https://www.rfc1437.de/2005/12/09/systemexit-und-exception-handlers/ - 2026-03-03T18:24:00.000Z + 2026-03-03T18:24:00.468Z monthly 0.8 @@ -46523,7 +46712,7 @@ https://www.rfc1437.de/2005/12/09/vampire/ - 2026-03-03T18:24:04.000Z + 2026-03-03T18:24:04.346Z monthly 0.8 @@ -46532,7 +46721,7 @@ https://www.rfc1437.de/2005/12/09/yellow-box-fuer-windows/ - 2026-03-03T18:24:09.000Z + 2026-03-03T18:24:09.258Z monthly 0.8 @@ -46541,7 +46730,7 @@ https://www.rfc1437.de/2005/12/08/apple-aperture-review-oder-beware-of-version-1-0/ - 2026-03-03T18:24:14.000Z + 2026-03-03T18:24:14.281Z monthly 0.8 @@ -46550,7 +46739,7 @@ https://www.rfc1437.de/2005/12/08/erschreckend-ist/ - 2026-03-03T18:24:19.000Z + 2026-03-03T18:24:19.139Z monthly 0.8 @@ -46559,7 +46748,7 @@ https://www.rfc1437.de/2005/12/08/learning-seaside/ - 2026-03-03T18:24:23.000Z + 2026-03-03T18:24:23.845Z monthly 0.8 @@ -46568,7 +46757,7 @@ https://www.rfc1437.de/2005/12/08/umschaltung-komplett/ - 2026-03-03T18:24:29.000Z + 2026-03-03T18:24:29.123Z monthly 0.8 @@ -46577,7 +46766,7 @@ https://www.rfc1437.de/2005/12/07/ajax-sucks-most-of-the-time-jakob-nielsen-s/ - 2026-03-07T21:15:00.000Z + 2026-03-07T21:15:00.355Z monthly 0.8 @@ -46586,7 +46775,7 @@ https://www.rfc1437.de/2005/12/07/commentary/ - 2026-03-03T18:24:37.000Z + 2026-03-03T18:24:37.181Z monthly 0.8 @@ -46595,7 +46784,7 @@ https://www.rfc1437.de/2005/12/07/frankreich-will-urheberrecht-verschaerfen/ - 2026-03-03T18:24:42.000Z + 2026-03-03T18:24:42.059Z monthly 0.8 @@ -46604,7 +46793,7 @@ https://www.rfc1437.de/2005/12/07/kriegt-sony-jetzt-aerger-mit-apple/ - 2026-03-03T18:24:47.000Z + 2026-03-03T18:24:47.479Z monthly 0.8 @@ -46613,7 +46802,7 @@ https://www.rfc1437.de/2005/12/07/pyinotify/ - 2026-03-03T18:24:51.000Z + 2026-03-03T18:24:51.343Z monthly 0.8 @@ -46622,7 +46811,7 @@ https://www.rfc1437.de/2005/12/07/seltsame-aeusserungen-von-condoleezza-rice/ - 2026-03-03T18:24:56.000Z + 2026-03-03T18:24:56.790Z monthly 0.8 @@ -46631,7 +46820,7 @@ https://www.rfc1437.de/2005/12/06/discover-music-pandora/ - 2026-03-03T18:25:00.000Z + 2026-03-03T18:25:00.551Z monthly 0.8 @@ -46640,7 +46829,7 @@ https://www.rfc1437.de/2005/12/06/kampagne-gegen-freie-software-in-frankreich/ - 2026-03-03T18:25:04.000Z + 2026-03-03T18:25:04.860Z monthly 0.8 @@ -46649,7 +46838,7 @@ https://www.rfc1437.de/2005/12/06/unsterblicher-briefwechsel/ - 2026-03-03T18:25:08.000Z + 2026-03-03T18:25:08.667Z monthly 0.8 @@ -46658,7 +46847,7 @@ https://www.rfc1437.de/2005/12/06/weblog-umzug/ - 2026-03-03T18:25:13.000Z + 2026-03-03T18:25:13.493Z monthly 0.8 @@ -46667,7 +46856,7 @@ https://www.rfc1437.de/2005/12/05/aperture-page-1/ - 2026-03-03T18:25:18.000Z + 2026-03-03T18:25:18.311Z monthly 0.8 @@ -46676,7 +46865,7 @@ https://www.rfc1437.de/2005/12/05/oh-mann-bei-solchen-rchtrn-brchn-wr-kn-vrbrchr-mhr/ - 2026-03-03T18:25:23.000Z + 2026-03-03T18:25:23.158Z monthly 0.8 @@ -46685,7 +46874,7 @@ https://www.rfc1437.de/2005/12/05/paj-s-home-cryptography-javascript-md5-sha1-js/ - 2026-03-03T18:25:27.000Z + 2026-03-03T18:25:27.886Z monthly 0.8 @@ -46694,7 +46883,7 @@ https://www.rfc1437.de/2005/12/05/und-wech-mit-den-schranken/ - 2026-03-03T18:25:33.000Z + 2026-03-03T18:25:33.176Z monthly 0.8 @@ -46703,7 +46892,7 @@ https://www.rfc1437.de/2005/12/04/gehts-otto-orwell-endlich-an-den-kragen/ - 2026-03-03T18:25:38.000Z + 2026-03-03T18:25:38.822Z monthly 0.8 @@ -46712,7 +46901,7 @@ https://www.rfc1437.de/2005/12/04/geisler-und-andere-uber-seine-und-ihre-partei/ - 2026-03-03T18:25:44.000Z + 2026-03-03T18:25:44.156Z monthly 0.8 @@ -46721,7 +46910,7 @@ https://www.rfc1437.de/2005/12/04/trolle-in-kommentaren-gescheitert-am-intellignztst/ - 2026-03-03T18:25:49.000Z + 2026-03-03T18:25:49.119Z monthly 0.8 @@ -46730,7 +46919,7 @@ https://www.rfc1437.de/2005/12/03/bild-als-kulturproblem-von-gerhard-henschel/ - 2026-03-03T18:25:52.000Z + 2026-03-03T18:25:52.931Z monthly 0.8 @@ -46739,7 +46928,7 @@ https://www.rfc1437.de/2005/12/03/bosdorf-fallt-mal-wieder-auf/ - 2026-03-03T18:25:57.000Z + 2026-03-03T18:25:57.869Z monthly 0.8 @@ -46748,7 +46937,7 @@ https://www.rfc1437.de/2005/12/03/eu-will-telefondaten-sechs-monate-speichern/ - 2026-03-03T18:26:02.000Z + 2026-03-03T18:26:02.719Z monthly 0.8 @@ -46757,7 +46946,7 @@ https://www.rfc1437.de/2005/12/03/muss-die-fdp-eine-millionenstrafe-zahlen/ - 2026-03-03T18:26:06.000Z + 2026-03-03T18:26:06.977Z monthly 0.8 @@ -46766,7 +46955,7 @@ https://www.rfc1437.de/2005/12/03/userscripts-org-universal-repository/ - 2026-03-03T18:26:10.000Z + 2026-03-03T18:26:10.787Z monthly 0.8 @@ -46775,7 +46964,7 @@ https://www.rfc1437.de/2005/12/03/wusste-rwe-von-maengeln-bei-strommasten/ - 2026-03-03T18:26:15.000Z + 2026-03-03T18:26:15.153Z monthly 0.8 @@ -46784,7 +46973,7 @@ https://www.rfc1437.de/2005/12/02/akismet-py/ - 2026-03-03T18:26:18.000Z + 2026-03-03T18:26:18.960Z monthly 0.8 @@ -46793,7 +46982,7 @@ https://www.rfc1437.de/2005/12/02/daten-nichtschutz-erklarungen-bei-versicherungen/ - 2026-03-03T18:26:23.000Z + 2026-03-03T18:26:23.723Z monthly 0.8 @@ -46802,7 +46991,7 @@ https://www.rfc1437.de/2005/12/02/development-akismet/ - 2026-03-03T18:26:27.000Z + 2026-03-03T18:26:27.087Z monthly 0.8 @@ -46811,7 +47000,7 @@ https://www.rfc1437.de/2005/12/02/louie/ - 2026-03-03T18:26:30.000Z + 2026-03-03T18:26:30.507Z monthly 0.8 @@ -46820,7 +47009,7 @@ https://www.rfc1437.de/2005/12/02/neue-gesundheitssystem-beschnitte/ - 2026-03-03T18:26:35.000Z + 2026-03-03T18:26:35.452Z monthly 0.8 @@ -46829,7 +47018,7 @@ https://www.rfc1437.de/2005/12/01/manchmal-zweifelt-man-an-apple/ - 2026-03-03T18:26:40.000Z + 2026-03-03T18:26:40.570Z monthly 0.8 @@ -46838,7 +47027,7 @@ https://www.rfc1437.de/2005/12/01/sqlalchemy-readme/ - 2026-03-03T18:26:44.000Z + 2026-03-03T18:26:44.487Z monthly 0.8 @@ -46847,7 +47036,7 @@ https://www.rfc1437.de/2005/12/01/vorratsspeicherung-vn-tk-dtn-d-grsn-frktnn-knckn-n/ - 2026-03-03T18:26:49.000Z + 2026-03-03T18:26:49.765Z monthly 0.8 @@ -46856,7 +47045,7 @@ https://www.rfc1437.de/2005/11/30/axentric-a-web-designer-s-tackboard/ - 2026-03-03T18:26:54.000Z + 2026-03-03T18:26:54.043Z monthly 0.8 @@ -46865,7 +47054,7 @@ https://www.rfc1437.de/2005/11/30/gericht-verhandelt-bleiberecht-des-bremer-taliban/ - 2026-03-03T18:26:59.000Z + 2026-03-03T18:26:59.385Z monthly 0.8 @@ -46874,7 +47063,7 @@ https://www.rfc1437.de/2005/11/30/overview-of-new-features-in-apache-2-2-apache/ - 2026-03-03T18:27:04.000Z + 2026-03-03T18:27:04.232Z monthly 0.8 @@ -46883,7 +47072,7 @@ https://www.rfc1437.de/2005/11/30/privatsender-ueber-stllt-nr-nch-vrschlsslt-tgsschd/ - 2026-03-03T18:27:09.000Z + 2026-03-03T18:27:09.472Z monthly 0.8 @@ -46892,7 +47081,7 @@ https://www.rfc1437.de/2005/11/30/what-s-new-in-wordpress-2-0-asymptomatic/ - 2026-03-03T18:27:14.000Z + 2026-03-03T18:27:14.320Z monthly 0.8 @@ -46901,7 +47090,7 @@ https://www.rfc1437.de/2005/11/29/mal-wieder-was-von-der-bastelfront/ - 2026-03-03T18:27:18.000Z + 2026-03-03T18:27:18.644Z monthly 0.8 @@ -46910,7 +47099,7 @@ https://www.rfc1437.de/2005/11/28/google-groups-microsoft-public-windowsmedia-drm/ - 2026-03-03T18:27:22.000Z + 2026-03-03T18:27:22.948Z monthly 0.8 @@ -46919,7 +47108,7 @@ https://www.rfc1437.de/2005/11/28/kardinalsspruche-gegen-ipod-und-co/ - 2026-03-03T18:27:28.000Z + 2026-03-03T18:27:28.945Z monthly 0.8 @@ -46928,7 +47117,7 @@ https://www.rfc1437.de/2005/11/28/merkel-legt-die-gleitcreme-auf/ - 2026-03-03T18:27:32.000Z + 2026-03-03T18:27:32.879Z monthly 0.8 @@ -46937,7 +47126,7 @@ https://www.rfc1437.de/2005/11/28/nur-wenige-tage-im-amt-aber-korrupt-bis-ins-mark/ - 2026-03-03T18:27:38.000Z + 2026-03-03T18:27:38.434Z monthly 0.8 @@ -46946,7 +47135,7 @@ https://www.rfc1437.de/2005/11/28/warum-unsere-politiker-keine-volksbegehren-wollen/ - 2026-03-03T18:27:43.000Z + 2026-03-03T18:27:43.295Z monthly 0.8 @@ -46955,7 +47144,7 @@ https://www.rfc1437.de/2005/11/27/another-opml-server/ - 2026-03-03T18:27:48.000Z + 2026-03-03T18:27:48.235Z monthly 0.8 @@ -46964,7 +47153,7 @@ https://www.rfc1437.de/2005/11/27/jobcontrol-django-projects-trac/ - 2026-03-03T18:27:52.000Z + 2026-03-03T18:27:52.075Z monthly 0.8 @@ -46973,7 +47162,7 @@ https://www.rfc1437.de/2005/11/26/das-versagen-der-rwe/ - 2026-03-03T18:27:56.000Z + 2026-03-03T18:27:56.935Z monthly 0.8 @@ -46982,7 +47171,7 @@ https://www.rfc1437.de/2005/11/26/eine-schneeflocke-fallt/ - 2026-03-03T18:28:02.000Z + 2026-03-03T18:28:02.182Z monthly 0.8 @@ -46991,7 +47180,7 @@ https://www.rfc1437.de/2005/11/26/erster-anstehender-abgang-der-regierung/ - 2026-03-03T18:28:07.000Z + 2026-03-03T18:28:07.496Z monthly 0.8 @@ -47000,7 +47189,7 @@ https://www.rfc1437.de/2005/11/26/family-update/ - 2026-03-03T18:28:11.000Z + 2026-03-03T18:28:11.266Z monthly 0.8 @@ -47009,7 +47198,7 @@ https://www.rfc1437.de/2005/11/24/airport-blog/ - 2026-03-03T18:28:14.000Z + 2026-03-03T18:28:14.681Z monthly 0.8 @@ -47018,7 +47207,7 @@ https://www.rfc1437.de/2005/11/24/auf-in-die-totale-uberwachung/ - 2026-03-03T18:28:19.000Z + 2026-03-03T18:28:19.979Z monthly 0.8 @@ -47027,7 +47216,7 @@ https://www.rfc1437.de/2005/11/24/dope-squad-security/ - 2026-03-03T18:28:23.000Z + 2026-03-03T18:28:23.759Z monthly 0.8 @@ -47036,7 +47225,7 @@ https://www.rfc1437.de/2005/11/24/draganddrop-mochikit-trac/ - 2026-03-03T18:28:27.000Z + 2026-03-03T18:28:27.564Z monthly 0.8 @@ -47045,7 +47234,7 @@ https://www.rfc1437.de/2005/11/24/holografische-wechselmedien-mit-bis-zu-16-terabyte/ - 2026-03-03T18:28:32.000Z + 2026-03-03T18:28:32.449Z monthly 0.8 @@ -47054,7 +47243,7 @@ https://www.rfc1437.de/2005/11/24/how-secure-is-wep-anyway/ - 2026-03-03T18:28:36.000Z + 2026-03-03T18:28:36.626Z monthly 0.8 @@ -47063,7 +47252,7 @@ https://www.rfc1437.de/2005/11/24/weird-python-23-bug/ - 2026-03-03T18:28:42.000Z + 2026-03-03T18:28:42.021Z monthly 0.8 @@ -47072,7 +47261,7 @@ https://www.rfc1437.de/2005/11/23/manchmal-ist-os-x-etwas-strange/ - 2026-03-03T18:28:47.000Z + 2026-03-03T18:28:47.368Z monthly 0.8 @@ -47081,7 +47270,7 @@ https://www.rfc1437.de/2005/11/23/microsoft-to-standardize-office-formats-in-ecma/ - 2026-03-07T21:15:02.000Z + 2026-03-07T21:15:02.203Z monthly 0.8 @@ -47090,7 +47279,7 @@ https://www.rfc1437.de/2005/11/23/the-vienna-conclusion-sponsorshippoliticsinfluence/ - 2026-03-03T18:28:56.000Z + 2026-03-03T18:28:56.963Z monthly 0.8 @@ -47099,7 +47288,7 @@ https://www.rfc1437.de/2005/11/23/vatikan-papier-schwule-durfen-keine-priester-werdn/ - 2026-03-03T18:29:02.000Z + 2026-03-03T18:29:02.770Z monthly 0.8 @@ -47108,7 +47297,7 @@ https://www.rfc1437.de/2005/11/23/web-development-bookmarklets-2/ - 2026-03-03T18:29:06.000Z + 2026-03-03T18:29:06.538Z monthly 0.8 @@ -47117,7 +47306,7 @@ https://www.rfc1437.de/2005/11/22/closures-python-scheme-ruby/ - 2026-03-03T18:29:10.000Z + 2026-03-03T18:29:10.817Z monthly 0.8 @@ -47126,7 +47315,7 @@ https://www.rfc1437.de/2005/11/22/eu-generalanwalt-gegen-datenweitergabe/ - 2026-03-03T18:29:16.000Z + 2026-03-03T18:29:16.129Z monthly 0.8 @@ -47135,7 +47324,7 @@ https://www.rfc1437.de/2005/11/22/hab-ich-eigentlich-schon-gesagt/ - 2026-03-03T18:29:19.000Z + 2026-03-03T18:29:19.472Z monthly 0.8 @@ -47144,7 +47333,7 @@ https://www.rfc1437.de/2005/11/22/light-field-photography-with-a-hand-held/ - 2026-03-03T18:29:24.000Z + 2026-03-03T18:29:24.258Z monthly 0.8 @@ -47153,7 +47342,7 @@ https://www.rfc1437.de/2005/11/22/linux-on-an-apple-powerbook-g4/ - 2026-03-03T18:29:28.000Z + 2026-03-03T18:29:28.165Z monthly 0.8 @@ -47162,7 +47351,7 @@ https://www.rfc1437.de/2005/11/22/routes-1-0-released/ - 2026-03-03T18:29:32.000Z + 2026-03-03T18:29:32.519Z monthly 0.8 @@ -47171,7 +47360,7 @@ https://www.rfc1437.de/2005/11/22/the-whitespace-thing-for-ocaml/ - 2026-03-03T18:29:37.000Z + 2026-03-03T18:29:37.922Z monthly 0.8 @@ -47180,7 +47369,7 @@ https://www.rfc1437.de/2005/11/22/ubuntu-on-the-powerbook-g4-powerbook5-6/ - 2026-03-03T18:29:43.000Z + 2026-03-03T18:29:43.822Z monthly 0.8 @@ -47189,7 +47378,7 @@ https://www.rfc1437.de/2005/11/22/ubuntu-und-powerbook/ - 2026-03-03T18:29:48.000Z + 2026-03-03T18:29:48.754Z monthly 0.8 @@ -47198,7 +47387,7 @@ https://www.rfc1437.de/2005/11/21/dejavu-trac/ - 2026-03-03T18:29:52.000Z + 2026-03-03T18:29:52.943Z monthly 0.8 @@ -47207,7 +47396,7 @@ https://www.rfc1437.de/2005/11/21/ein-marsjahr-unterwegs/ - 2026-03-03T18:29:58.000Z + 2026-03-03T18:29:58.577Z monthly 0.8 @@ -47216,7 +47405,7 @@ https://www.rfc1437.de/2005/11/21/na-endlich-gehts-der-dilr-vrwrtngsktt-ml-n-dn-krgn/ - 2026-03-03T18:30:04.000Z + 2026-03-03T18:30:04.014Z monthly 0.8 @@ -47225,7 +47414,7 @@ https://www.rfc1437.de/2005/11/21/rechtsstreit-um-ard-wahl-grafiken-beigelegt/ - 2026-03-03T18:30:09.000Z + 2026-03-03T18:30:09.027Z monthly 0.8 @@ -47234,7 +47423,7 @@ https://www.rfc1437.de/2005/11/19/deutschland-waffenschieber/ - 2026-03-03T18:30:15.000Z + 2026-03-03T18:30:15.362Z monthly 0.8 @@ -47243,7 +47432,7 @@ https://www.rfc1437.de/2005/11/19/hyperthreading-hurts-server-performance-say/ - 2026-03-03T18:30:20.000Z + 2026-03-03T18:30:20.506Z monthly 0.8 @@ -47252,7 +47441,7 @@ https://www.rfc1437.de/2005/11/19/richard-stallman-gets-in-trouble-with-un-security/ - 2026-03-03T18:30:25.000Z + 2026-03-03T18:30:25.694Z monthly 0.8 @@ -47261,7 +47450,7 @@ https://www.rfc1437.de/2005/11/19/taxi-3/ - 2026-03-03T18:30:29.000Z + 2026-03-03T18:30:29.904Z monthly 0.8 @@ -47270,7 +47459,7 @@ https://www.rfc1437.de/2005/11/19/widerwartig/ - 2026-03-03T18:30:34.000Z + 2026-03-03T18:30:34.610Z monthly 0.8 @@ -47279,7 +47468,7 @@ https://www.rfc1437.de/2005/11/18/definition-peinlich/ - 2026-03-03T18:30:38.000Z + 2026-03-03T18:30:38.855Z monthly 0.8 @@ -47288,7 +47477,7 @@ https://www.rfc1437.de/2005/11/17/betrug-am-fussball/ - 2026-03-03T18:30:43.000Z + 2026-03-03T18:30:43.860Z monthly 0.8 @@ -47297,7 +47486,7 @@ https://www.rfc1437.de/2005/11/17/hibernate-on-your-non-brandnew-mac/ - 2026-03-03T18:30:48.000Z + 2026-03-03T18:30:48.399Z monthly 0.8 @@ -47306,7 +47495,7 @@ https://www.rfc1437.de/2005/11/17/kritische-lucke-in-content-management-system-mambo/ - 2026-03-03T18:30:54.000Z + 2026-03-03T18:30:54.137Z monthly 0.8 @@ -47315,7 +47504,7 @@ https://www.rfc1437.de/2005/11/16/ein-millimeter/ - 2026-03-03T18:31:00.000Z + 2026-03-03T18:31:00.841Z monthly 0.8 @@ -47324,7 +47513,7 @@ https://www.rfc1437.de/2005/11/16/kaktusmilbe/ - 2026-03-03T18:31:05.000Z + 2026-03-03T18:31:05.822Z monthly 0.8 @@ -47333,7 +47522,7 @@ https://www.rfc1437.de/2005/11/16/kaktusmilbe-revisited/ - 2026-03-03T18:31:11.000Z + 2026-03-03T18:31:11.428Z monthly 0.8 @@ -47342,7 +47531,7 @@ https://www.rfc1437.de/2005/11/16/kaktusstachelpolster/ - 2026-03-03T18:31:16.000Z + 2026-03-03T18:31:16.459Z monthly 0.8 @@ -47351,7 +47540,7 @@ https://www.rfc1437.de/2005/11/14/e-voting-anfechtung-der-bundestgswhl-wgn-whlcmptrn/ - 2026-03-03T18:31:22.000Z + 2026-03-03T18:31:22.662Z monthly 0.8 @@ -47360,7 +47549,7 @@ https://www.rfc1437.de/2005/11/14/manches-aergert-mich-fuerchterlich/ - 2026-03-03T18:31:28.000Z + 2026-03-03T18:31:28.753Z monthly 0.8 @@ -47369,7 +47558,7 @@ https://www.rfc1437.de/2005/11/14/und-dann-war-da-noch/ - 2026-03-03T18:31:34.000Z + 2026-03-03T18:31:34.730Z monthly 0.8 @@ -47378,7 +47567,7 @@ https://www.rfc1437.de/2005/11/13/apples-webobjects-mit-neuen-lizenzbedingungen/ - 2026-03-03T18:31:40.000Z + 2026-03-03T18:31:40.007Z monthly 0.8 @@ -47387,7 +47576,7 @@ https://www.rfc1437.de/2005/11/13/astgewirr/ - 2026-03-03T18:31:44.000Z + 2026-03-03T18:31:44.660Z monthly 0.8 @@ -47396,7 +47585,7 @@ https://www.rfc1437.de/2005/11/13/beim-geocaching-fotografiert/ - 2026-03-03T18:31:49.000Z + 2026-03-03T18:31:49.133Z monthly 0.8 @@ -47405,7 +47594,7 @@ https://www.rfc1437.de/2005/11/13/ein-paar-mehr-bilder/ - 2026-03-03T18:31:54.000Z + 2026-03-03T18:31:54.968Z monthly 0.8 @@ -47414,7 +47603,7 @@ https://www.rfc1437.de/2005/11/13/esmeralda/ - 2026-03-07T19:18:07.000Z + 2026-03-07T19:18:07.805Z monthly 0.8 @@ -47423,7 +47612,7 @@ https://www.rfc1437.de/2005/11/13/fliessender-fluss/ - 2026-03-03T18:32:04.000Z + 2026-03-03T18:32:04.625Z monthly 0.8 @@ -47432,7 +47621,7 @@ https://www.rfc1437.de/2005/11/13/gefaellter-baum/ - 2026-03-03T18:32:09.000Z + 2026-03-03T18:32:09.529Z monthly 0.8 @@ -47441,7 +47630,7 @@ https://www.rfc1437.de/2005/11/13/jaeger-und-beute/ - 2026-03-03T18:32:14.000Z + 2026-03-03T18:32:14.493Z monthly 0.8 @@ -47450,7 +47639,7 @@ https://www.rfc1437.de/2005/11/13/love-2/ - 2026-03-07T21:15:02.000Z + 2026-03-07T21:15:02.926Z monthly 0.8 @@ -47459,7 +47648,7 @@ https://www.rfc1437.de/2005/11/13/moorsee/ - 2026-03-08T14:24:55.000Z + 2026-03-08T14:24:55.692Z monthly 0.8 @@ -47468,7 +47657,7 @@ https://www.rfc1437.de/2005/11/12/linux-vserver-on-debian-sarge/ - 2026-03-03T18:32:28.000Z + 2026-03-03T18:32:28.540Z monthly 0.8 @@ -47477,7 +47666,7 @@ https://www.rfc1437.de/2005/11/12/mac-on-linux/ - 2026-03-03T18:32:33.000Z + 2026-03-03T18:32:33.448Z monthly 0.8 @@ -47486,7 +47675,7 @@ https://www.rfc1437.de/2005/11/12/mac-on-mac/ - 2026-03-03T18:32:38.000Z + 2026-03-03T18:32:38.754Z monthly 0.8 @@ -47495,7 +47684,7 @@ https://www.rfc1437.de/2005/11/12/traumtanzer-at-work/ - 2026-03-03T18:32:44.000Z + 2026-03-03T18:32:44.327Z monthly 0.8 @@ -47504,7 +47693,7 @@ https://www.rfc1437.de/2005/11/11/boykottiert-sony-bmg/ - 2026-03-03T18:32:50.000Z + 2026-03-03T18:32:50.532Z monthly 0.8 @@ -47513,7 +47702,7 @@ https://www.rfc1437.de/2005/11/11/phishing-auch-die-itan-bietet-keinen-schutz/ - 2026-03-03T18:32:55.000Z + 2026-03-03T18:32:55.475Z monthly 0.8 @@ -47522,7 +47711,7 @@ https://www.rfc1437.de/2005/11/11/realitatsverlust-bei-sap-vorstandlern/ - 2026-03-03T18:33:01.000Z + 2026-03-03T18:33:01.579Z monthly 0.8 @@ -47531,7 +47720,7 @@ https://www.rfc1437.de/2005/11/10/wikicalc/ - 2026-03-03T18:33:06.000Z + 2026-03-03T18:33:06.386Z monthly 0.8 @@ -47540,7 +47729,7 @@ https://www.rfc1437.de/2005/11/07/mal-wieder-ne-woche-munchen/ - 2026-03-03T18:33:10.000Z + 2026-03-03T18:33:10.250Z monthly 0.8 @@ -47549,7 +47738,7 @@ https://www.rfc1437.de/2005/11/05/spd-verkauft-den-kundigungsschutz/ - 2026-03-03T18:33:15.000Z + 2026-03-03T18:33:15.636Z monthly 0.8 @@ -47558,7 +47747,7 @@ https://www.rfc1437.de/2005/11/05/sql-relay/ - 2026-03-03T18:33:19.000Z + 2026-03-03T18:33:19.914Z monthly 0.8 @@ -47567,7 +47756,7 @@ https://www.rfc1437.de/2005/11/04/auf-in-den-polizeitstaat-deutschland/ - 2026-03-03T18:33:24.000Z + 2026-03-03T18:33:24.803Z monthly 0.8 @@ -47576,7 +47765,7 @@ https://www.rfc1437.de/2005/11/04/mehrwertsteuer-vs-vermogenssteuer/ - 2026-03-03T18:33:30.000Z + 2026-03-03T18:33:30.084Z monthly 0.8 @@ -47585,7 +47774,7 @@ https://www.rfc1437.de/2005/11/02/die-feigheit-der-spd/ - 2026-03-03T18:33:35.000Z + 2026-03-03T18:33:35.607Z monthly 0.8 @@ -47594,7 +47783,7 @@ https://www.rfc1437.de/2005/11/02/rumsfeld-verweigert-uno-zugang-zu-haftlingen/ - 2026-03-03T18:33:41.000Z + 2026-03-03T18:33:41.162Z monthly 0.8 @@ -47603,7 +47792,7 @@ https://www.rfc1437.de/2005/11/01/coverage/ - 2026-03-03T18:33:45.000Z + 2026-03-03T18:33:45.500Z monthly 0.8 @@ -47612,7 +47801,7 @@ https://www.rfc1437.de/2005/11/01/sony-bmgs-kopierschutz-mit-rootkit-funktionen/ - 2026-03-03T18:33:50.000Z + 2026-03-03T18:33:50.768Z monthly 0.8 @@ -47621,7 +47810,7 @@ https://www.rfc1437.de/2005/11/01/stoiber-hat-ausgestaubt/ - 2026-03-03T18:33:56.000Z + 2026-03-03T18:33:56.149Z monthly 0.8 @@ -47630,7 +47819,7 @@ https://www.rfc1437.de/2005/10/31/a-test-framework-for-django/ - 2026-03-07T21:15:09.000Z + 2026-03-07T21:15:09.880Z monthly 0.8 @@ -47639,7 +47828,7 @@ https://www.rfc1437.de/2005/10/31/bildung-und-wohlstand-aber-nicht-fur-jeden/ - 2026-03-03T18:34:06.000Z + 2026-03-03T18:34:06.272Z monthly 0.8 @@ -47648,7 +47837,7 @@ https://www.rfc1437.de/2005/10/31/muntes-abgang/ - 2026-03-03T18:34:11.000Z + 2026-03-03T18:34:11.101Z monthly 0.8 @@ -47657,7 +47846,7 @@ https://www.rfc1437.de/2005/10/31/selenium/ - 2026-03-03T18:34:14.000Z + 2026-03-03T18:34:14.956Z monthly 0.8 @@ -47666,7 +47855,7 @@ https://www.rfc1437.de/2005/10/31/stoiber-kneift/ - 2026-03-03T18:34:19.000Z + 2026-03-03T18:34:19.948Z monthly 0.8 @@ -47675,7 +47864,7 @@ https://www.rfc1437.de/2005/10/30/casewhenotherwise-for-django/ - 2026-03-07T21:15:12.000Z + 2026-03-07T21:15:12.134Z monthly 0.8 @@ -47684,7 +47873,7 @@ https://www.rfc1437.de/2005/10/29/hochgestapelt/ - 2026-03-03T18:34:29.000Z + 2026-03-03T18:34:29.593Z monthly 0.8 @@ -47693,7 +47882,7 @@ https://www.rfc1437.de/2005/10/29/spaziergang-am-kanal/ - 2026-03-03T18:34:32.000Z + 2026-03-03T18:34:32.960Z monthly 0.8 @@ -47702,7 +47891,7 @@ https://www.rfc1437.de/2005/10/29/zugbruecke/ - 2026-03-03T18:34:37.000Z + 2026-03-03T18:34:37.612Z monthly 0.8 @@ -47720,7 +47909,7 @@ https://www.rfc1437.de/2005/10/28/werbebanner-in-2005/ - 2026-03-03T18:34:47.000Z + 2026-03-03T18:34:47.791Z monthly 0.8 @@ -47729,7 +47918,7 @@ https://www.rfc1437.de/2005/10/27/aperture-und-performance/ - 2026-03-03T18:34:54.000Z + 2026-03-03T18:34:54.074Z monthly 0.8 @@ -47738,7 +47927,7 @@ https://www.rfc1437.de/2005/10/27/bock-meet-gartner/ - 2026-03-03T18:34:57.000Z + 2026-03-03T18:34:57.828Z monthly 0.8 @@ -47747,7 +47936,7 @@ https://www.rfc1437.de/2005/10/27/cucumber2/ - 2026-03-03T18:35:00.000Z + 2026-03-03T18:35:00.961Z monthly 0.8 @@ -47756,7 +47945,7 @@ https://www.rfc1437.de/2005/10/27/django-project/ - 2026-03-03T18:35:04.000Z + 2026-03-03T18:35:04.320Z monthly 0.8 @@ -47765,7 +47954,7 @@ https://www.rfc1437.de/2005/10/27/postgresql-81/ - 2026-03-03T18:35:08.000Z + 2026-03-03T18:35:08.194Z monthly 0.8 @@ -47774,7 +47963,7 @@ https://www.rfc1437.de/2005/10/27/unheimliche-allianz/ - 2026-03-03T18:35:11.000Z + 2026-03-03T18:35:11.653Z monthly 0.8 @@ -47783,7 +47972,7 @@ https://www.rfc1437.de/2005/10/27/xml-unter-patentschutz/ - 2026-03-03T18:35:15.000Z + 2026-03-03T18:35:15.755Z monthly 0.8 @@ -47792,7 +47981,7 @@ https://www.rfc1437.de/2005/10/26/akismet-zentralistischer-anti-spam-filter/ - 2026-03-03T18:35:20.000Z + 2026-03-03T18:35:20.141Z monthly 0.8 @@ -47801,7 +47990,7 @@ https://www.rfc1437.de/2005/10/26/fitting-on-some-framework/ - 2026-03-07T21:15:25.000Z + 2026-03-07T21:15:25.958Z monthly 0.8 @@ -47810,7 +47999,7 @@ https://www.rfc1437.de/2005/10/26/javascript-interactive-interpreter/ - 2026-03-03T18:35:28.000Z + 2026-03-03T18:35:28.010Z monthly 0.8 @@ -47819,7 +48008,7 @@ https://www.rfc1437.de/2005/10/26/markdown-for-django/ - 2026-03-07T21:15:27.000Z + 2026-03-07T21:15:27.881Z monthly 0.8 @@ -47828,7 +48017,7 @@ https://www.rfc1437.de/2005/10/26/scatha-and-glaurung/ - 2026-03-03T18:35:36.000Z + 2026-03-03T18:35:36.644Z monthly 0.8 @@ -47837,7 +48026,7 @@ https://www.rfc1437.de/2005/10/26/twisted-buch-ist-raus/ - 2026-03-03T18:50:45.000Z + 2026-03-03T18:50:45.359Z monthly 0.8 @@ -47846,7 +48035,7 @@ https://www.rfc1437.de/2005/10/25/akadav-lightweight-webdav-server-and-python-module/ - 2026-03-03T18:50:52.000Z + 2026-03-03T18:50:52.942Z monthly 0.8 @@ -47855,7 +48044,7 @@ https://www.rfc1437.de/2005/10/25/googles-web-accelerator-and-damager/ - 2026-03-03T18:51:04.000Z + 2026-03-03T18:51:04.405Z monthly 0.8 @@ -47864,7 +48053,7 @@ https://www.rfc1437.de/2005/10/25/python-webdav-server/ - 2026-03-03T18:51:11.000Z + 2026-03-03T18:51:11.825Z monthly 0.8 @@ -47873,7 +48062,7 @@ https://www.rfc1437.de/2005/10/25/spam-blockliste-lief-amok/ - 2026-03-03T18:51:19.000Z + 2026-03-03T18:51:19.970Z monthly 0.8 @@ -47882,7 +48071,7 @@ https://www.rfc1437.de/2005/10/24/launch-box/ - 2026-03-03T18:51:27.000Z + 2026-03-03T18:51:27.155Z monthly 0.8 @@ -47891,7 +48080,7 @@ https://www.rfc1437.de/2005/10/24/linux-and-raw-digital-photography/ - 2026-03-03T18:51:33.000Z + 2026-03-03T18:51:33.656Z monthly 0.8 @@ -47900,7 +48089,7 @@ https://www.rfc1437.de/2005/10/24/lphoto/ - 2026-03-03T18:51:40.000Z + 2026-03-03T18:51:40.239Z monthly 0.8 @@ -47909,7 +48098,7 @@ https://www.rfc1437.de/2005/10/23/generic-search-service-for-django/ - 2026-03-07T21:15:30.000Z + 2026-03-07T21:15:30.349Z monthly 0.8 @@ -47918,7 +48107,7 @@ https://www.rfc1437.de/2005/10/23/ubuntu-breezy-badger/ - 2026-03-03T18:58:17.000Z + 2026-03-03T18:58:17.854Z monthly 0.8 @@ -47927,7 +48116,7 @@ https://www.rfc1437.de/2005/10/22/nanomobil-faehrt-auf-gold/ - 2026-03-03T18:58:24.000Z + 2026-03-03T18:58:24.094Z monthly 0.8 @@ -47936,7 +48125,7 @@ https://www.rfc1437.de/2005/10/22/to-flock-zusammenrotten/ - 2026-03-03T18:58:27.000Z + 2026-03-03T18:58:27.773Z monthly 0.8 @@ -47945,7 +48134,7 @@ https://www.rfc1437.de/2005/10/22/version-control-with-svk/ - 2026-03-03T18:58:31.000Z + 2026-03-03T18:58:31.222Z monthly 0.8 @@ -47954,7 +48143,7 @@ https://www.rfc1437.de/2005/10/22/very-simple-view-functions/ - 2026-03-07T21:15:32.000Z + 2026-03-07T21:15:32.629Z monthly 0.8 @@ -47963,7 +48152,7 @@ https://www.rfc1437.de/2005/10/21/mannesmann-prozess-diesmal-ohne-victory-fur-ckrmnn/ - 2026-03-03T18:58:38.000Z + 2026-03-03T18:58:38.457Z monthly 0.8 @@ -47972,7 +48161,7 @@ https://www.rfc1437.de/2005/10/21/module-hacking-for-django/ - 2026-03-07T21:15:37.000Z + 2026-03-07T21:15:37.324Z monthly 0.8 @@ -47981,7 +48170,7 @@ https://www.rfc1437.de/2005/10/21/twisted-names/ - 2026-03-03T18:58:44.000Z + 2026-03-03T18:58:44.667Z monthly 0.8 @@ -47990,7 +48179,7 @@ https://www.rfc1437.de/2005/10/20/agfaphoto-ade/ - 2026-03-03T18:58:47.000Z + 2026-03-03T18:58:47.793Z monthly 0.8 @@ -47999,7 +48188,7 @@ https://www.rfc1437.de/2005/10/20/aperture/ - 2026-03-03T18:58:51.000Z + 2026-03-03T18:58:51.251Z monthly 0.8 @@ -48008,7 +48197,7 @@ https://www.rfc1437.de/2005/10/20/tuckesburg/ - 2026-03-03T18:58:54.000Z + 2026-03-03T18:58:54.719Z monthly 0.8 @@ -48017,7 +48206,7 @@ https://www.rfc1437.de/2005/10/19/tagging-with-django/ - 2026-03-07T21:15:38.000Z + 2026-03-07T21:15:38.963Z monthly 0.8 @@ -48026,7 +48215,7 @@ https://www.rfc1437.de/2005/10/18/dooh/ - 2026-03-07T21:15:39.000Z + 2026-03-07T21:15:39.682Z monthly 0.8 @@ -48035,7 +48224,7 @@ https://www.rfc1437.de/2005/10/18/name/ - 2026-03-03T18:59:05.000Z + 2026-03-03T18:59:05.409Z monthly 0.8 @@ -48044,7 +48233,7 @@ https://www.rfc1437.de/2005/10/18/the-coolest-dhtml-javascript-calendar/ - 2026-03-03T18:59:08.000Z + 2026-03-03T18:59:08.187Z monthly 0.8 @@ -48053,7 +48242,7 @@ https://www.rfc1437.de/2005/10/17/call-of-the-noodle/ - 2026-03-03T18:59:11.000Z + 2026-03-03T18:59:11.297Z monthly 0.8 @@ -48062,7 +48251,7 @@ https://www.rfc1437.de/2005/10/16/using-django-as-a-cms/ - 2026-03-07T21:15:42.000Z + 2026-03-07T21:15:42.371Z monthly 0.8 @@ -48071,7 +48260,7 @@ https://www.rfc1437.de/2005/10/15/demontage-des-angeblichen-retters/ - 2026-03-03T18:59:18.000Z + 2026-03-03T18:59:18.877Z monthly 0.8 @@ -48080,7 +48269,7 @@ https://www.rfc1437.de/2005/10/15/dooh-2/ - 2026-03-07T21:15:42.000Z + 2026-03-07T21:15:42.986Z monthly 0.8 @@ -48089,7 +48278,7 @@ https://www.rfc1437.de/2005/10/15/kirchensteuer-und-konfessionslose-ehepartner/ - 2026-03-03T18:59:25.000Z + 2026-03-03T18:59:25.791Z monthly 0.8 @@ -48098,7 +48287,7 @@ https://www.rfc1437.de/2005/10/15/matt-mullenweg-und-das-geld/ - 2026-03-03T18:59:29.000Z + 2026-03-03T18:59:29.235Z monthly 0.8 @@ -48107,7 +48296,7 @@ https://www.rfc1437.de/2005/10/15/sonnenschein/ - 2026-03-03T18:59:32.000Z + 2026-03-03T18:59:32.321Z monthly 0.8 @@ -48116,7 +48305,7 @@ https://www.rfc1437.de/2005/10/15/wofur-sich-medien-so-einsetzen/ - 2026-03-03T18:59:35.000Z + 2026-03-03T18:59:35.776Z monthly 0.8 @@ -48125,7 +48314,7 @@ https://www.rfc1437.de/2005/10/14/auch-son-modell-fur-die-vollversager/ - 2026-03-03T18:59:39.000Z + 2026-03-03T18:59:39.597Z monthly 0.8 @@ -48134,7 +48323,7 @@ https://www.rfc1437.de/2005/10/14/desktruktiv/ - 2026-03-03T18:59:42.000Z + 2026-03-03T18:59:42.695Z monthly 0.8 @@ -48143,7 +48332,7 @@ https://www.rfc1437.de/2005/10/14/geschaftsmodell-von-open-source/ - 2026-03-03T18:59:45.000Z + 2026-03-03T18:59:45.451Z monthly 0.8 @@ -48152,7 +48341,7 @@ https://www.rfc1437.de/2005/10/14/ie7-und-auswirkungen-auf-css-hacks/ - 2026-03-03T18:59:49.000Z + 2026-03-03T18:59:49.262Z monthly 0.8 @@ -48161,7 +48350,7 @@ https://www.rfc1437.de/2005/10/14/seehofer-starkt-die-position-der-spd/ - 2026-03-03T18:59:52.000Z + 2026-03-03T18:59:52.022Z monthly 0.8 @@ -48170,7 +48359,7 @@ https://www.rfc1437.de/2005/10/14/spyware-in-world-of-warcraft/ - 2026-03-03T18:59:55.000Z + 2026-03-03T18:59:55.481Z monthly 0.8 @@ -48179,7 +48368,7 @@ https://www.rfc1437.de/2005/10/14/tailor-versionsvermittler/ - 2026-03-03T18:59:58.000Z + 2026-03-03T18:59:58.313Z monthly 0.8 @@ -48188,7 +48377,7 @@ https://www.rfc1437.de/2005/10/14/thatcher/ - 2026-03-03T19:00:01.000Z + 2026-03-03T19:00:01.794Z monthly 0.8 @@ -48197,7 +48386,7 @@ https://www.rfc1437.de/2005/10/14/trac-on-darcs/ - 2026-03-03T19:00:05.000Z + 2026-03-03T19:00:05.319Z monthly 0.8 @@ -48206,7 +48395,7 @@ https://www.rfc1437.de/2005/10/13/oracle-sql-tutorial/ - 2026-03-03T19:00:08.000Z + 2026-03-03T19:00:08.102Z monthly 0.8 @@ -48215,7 +48404,7 @@ https://www.rfc1437.de/2005/10/13/svk-subversion-distributed/ - 2026-03-03T19:00:11.000Z + 2026-03-03T19:00:11.577Z monthly 0.8 @@ -48224,7 +48413,7 @@ https://www.rfc1437.de/2005/10/12/snippetsemu/ - 2026-03-03T19:00:14.000Z + 2026-03-03T19:00:14.404Z monthly 0.8 @@ -48233,7 +48422,7 @@ https://www.rfc1437.de/2005/10/12/vi-meets-word/ - 2026-03-03T19:00:17.000Z + 2026-03-03T19:00:17.192Z monthly 0.8 @@ -48242,7 +48431,7 @@ https://www.rfc1437.de/2005/10/11/accent-zeichen-in-ihr-basiszeichen-umwandelt/ - 2026-03-03T19:00:20.000Z + 2026-03-03T19:00:20.344Z monthly 0.8 @@ -48251,7 +48440,7 @@ https://www.rfc1437.de/2005/10/11/caching-tutorial-for-web-authors-and-webmasters/ - 2026-03-03T19:00:23.000Z + 2026-03-03T19:00:23.475Z monthly 0.8 @@ -48260,7 +48449,7 @@ https://www.rfc1437.de/2005/10/11/django-i18n-status/ - 2026-03-03T19:00:27.000Z + 2026-03-03T19:00:27.013Z monthly 0.8 @@ -48269,7 +48458,7 @@ https://www.rfc1437.de/2005/10/11/ein-loch-ist-im-kanal/ - 2026-03-03T19:00:30.000Z + 2026-03-03T19:00:30.534Z monthly 0.8 @@ -48278,7 +48467,7 @@ https://www.rfc1437.de/2005/10/11/getting-nix-done/ - 2026-03-03T19:00:33.000Z + 2026-03-03T19:00:33.032Z monthly 0.8 @@ -48287,7 +48476,7 @@ https://www.rfc1437.de/2005/10/11/innovationskraft-von-softwarepatenten/ - 2026-03-03T19:00:37.000Z + 2026-03-03T19:00:37.309Z monthly 0.8 @@ -48296,7 +48485,7 @@ https://www.rfc1437.de/2005/10/11/kreationistenpest/ - 2026-03-03T19:00:41.000Z + 2026-03-03T19:00:41.275Z monthly 0.8 @@ -48305,7 +48494,7 @@ https://www.rfc1437.de/2005/10/09/cryosat-sturzt-ins-eis/ - 2026-03-03T19:00:44.000Z + 2026-03-03T19:00:44.896Z monthly 0.8 @@ -48314,7 +48503,7 @@ https://www.rfc1437.de/2005/10/09/von-galen-seine-seeligkeit-und-sein-widerstand/ - 2026-03-03T19:00:48.000Z + 2026-03-03T19:00:48.855Z monthly 0.8 @@ -48323,7 +48512,7 @@ https://www.rfc1437.de/2005/10/09/wetterbloggen/ - 2026-03-03T19:00:51.000Z + 2026-03-03T19:00:51.349Z monthly 0.8 @@ -48332,7 +48521,7 @@ https://www.rfc1437.de/2005/10/09/zabels-abschied-von-t-mobile/ - 2026-03-03T19:00:54.000Z + 2026-03-03T19:00:54.546Z monthly 0.8 @@ -48341,7 +48530,7 @@ https://www.rfc1437.de/2005/10/08/ajax-mal-anders/ - 2026-03-03T19:00:58.000Z + 2026-03-03T19:00:58.190Z monthly 0.8 @@ -48350,7 +48539,7 @@ https://www.rfc1437.de/2005/10/08/blogcounter-schwanzlangen-und-andere-lugen/ - 2026-03-03T19:01:01.000Z + 2026-03-03T19:01:01.825Z monthly 0.8 @@ -48359,7 +48548,7 @@ https://www.rfc1437.de/2005/10/08/vatikan-weiter-auf-anti-gay-kurs/ - 2026-03-03T19:01:06.000Z + 2026-03-03T19:01:06.436Z monthly 0.8 @@ -48368,7 +48557,7 @@ https://www.rfc1437.de/2005/10/08/wenn-google-schon-einen-neuen-feedreader-baut/ - 2026-03-03T19:01:08.000Z + 2026-03-03T19:01:08.948Z monthly 0.8 @@ -48377,7 +48566,7 @@ https://www.rfc1437.de/2005/10/07/nessus-demnachst-unbrauchbar/ - 2026-03-03T19:01:12.000Z + 2026-03-03T19:01:12.614Z monthly 0.8 @@ -48386,7 +48575,7 @@ https://www.rfc1437.de/2005/10/07/pragmatic-ajax/ - 2026-03-03T19:01:15.000Z + 2026-03-03T19:01:15.952Z monthly 0.8 @@ -48395,7 +48584,7 @@ https://www.rfc1437.de/2005/10/07/weblogscom-an-verisign-verkauft/ - 2026-03-03T19:01:20.000Z + 2026-03-03T19:01:20.343Z monthly 0.8 @@ -48404,7 +48593,7 @@ https://www.rfc1437.de/2005/10/07/wsgi-and-wsgi-middleware-is-easy/ - 2026-03-03T19:01:23.000Z + 2026-03-03T19:01:23.285Z monthly 0.8 @@ -48413,7 +48602,7 @@ https://www.rfc1437.de/2005/10/06/die-eu-kommission-mal-wieder/ - 2026-03-03T19:01:27.000Z + 2026-03-03T19:01:27.285Z monthly 0.8 @@ -48422,7 +48611,7 @@ https://www.rfc1437.de/2005/10/06/diese-komische-umfrage/ - 2026-03-03T19:01:31.000Z + 2026-03-03T19:01:31.375Z monthly 0.8 @@ -48431,7 +48620,7 @@ https://www.rfc1437.de/2005/10/06/robotflow/ - 2026-03-03T19:01:34.000Z + 2026-03-03T19:01:34.683Z monthly 0.8 @@ -48440,7 +48629,7 @@ https://www.rfc1437.de/2005/10/05/autofahren-macht-blod/ - 2026-03-03T19:01:38.000Z + 2026-03-03T19:01:38.805Z monthly 0.8 @@ -48449,7 +48638,7 @@ https://www.rfc1437.de/2005/10/05/openmcl-1-0/ - 2026-03-03T19:01:41.000Z + 2026-03-03T19:01:41.825Z monthly 0.8 @@ -48458,7 +48647,7 @@ https://www.rfc1437.de/2005/10/05/python-paste-power/ - 2026-03-03T19:01:45.000Z + 2026-03-03T19:01:45.193Z monthly 0.8 @@ -48467,7 +48656,7 @@ https://www.rfc1437.de/2005/10/04/irc-logger-update/ - 2026-03-07T21:15:45.000Z + 2026-03-07T21:15:45.468Z monthly 0.8 @@ -48476,7 +48665,7 @@ https://www.rfc1437.de/2005/10/04/medien-statistiken-und-ihre-interpretationen/ - 2026-03-03T19:01:53.000Z + 2026-03-03T19:01:53.589Z monthly 0.8 @@ -48485,7 +48674,7 @@ https://www.rfc1437.de/2005/10/04/radfahren-macht-impotent/ - 2026-03-03T19:01:57.000Z + 2026-03-03T19:01:57.943Z monthly 0.8 @@ -48494,7 +48683,7 @@ https://www.rfc1437.de/2005/10/03/37signals-mal-wieder/ - 2026-03-03T19:02:02.000Z + 2026-03-03T19:02:02.016Z monthly 0.8 @@ -48503,7 +48692,7 @@ https://www.rfc1437.de/2005/10/03/googles-blogsuche-strohdumm/ - 2026-03-03T19:02:06.000Z + 2026-03-03T19:02:06.924Z monthly 0.8 @@ -48512,7 +48701,7 @@ https://www.rfc1437.de/2005/10/03/retrocomputing-mit-cadr-lisp-machines-2/ - 2026-03-03T19:02:11.000Z + 2026-03-03T19:02:11.370Z monthly 0.8 @@ -48521,7 +48710,7 @@ https://www.rfc1437.de/2005/10/02/irc-logger-for-django/ - 2026-03-07T21:15:48.000Z + 2026-03-07T21:15:48.999Z monthly 0.8 @@ -48530,7 +48719,7 @@ https://www.rfc1437.de/2005/10/02/politiker-und-die-realitat/ - 2026-03-03T19:02:20.000Z + 2026-03-03T19:02:20.450Z monthly 0.8 @@ -48539,7 +48728,7 @@ https://www.rfc1437.de/2005/10/01/leica-d-lux-2/ - 2026-03-03T19:02:25.000Z + 2026-03-03T19:02:25.016Z monthly 0.8 @@ -48548,7 +48737,7 @@ https://www.rfc1437.de/2005/10/01/lizenz-zum-gelddrucken/ - 2026-03-03T19:02:29.000Z + 2026-03-03T19:02:29.639Z monthly 0.8 @@ -48557,7 +48746,7 @@ https://www.rfc1437.de/2005/10/01/twisteddav/ - 2026-03-03T19:02:33.000Z + 2026-03-03T19:02:33.021Z monthly 0.8 @@ -48566,7 +48755,7 @@ https://www.rfc1437.de/2005/09/30/gericht-starkt-alte-rechtschreibung/ - 2026-03-03T19:02:37.000Z + 2026-03-03T19:02:37.736Z monthly 0.8 @@ -48575,7 +48764,7 @@ https://www.rfc1437.de/2005/09/30/how-to-get-decimal-py-if-i-have-python-2-3-x/ - 2026-03-03T19:02:41.000Z + 2026-03-03T19:02:41.933Z monthly 0.8 @@ -48584,7 +48773,7 @@ https://www.rfc1437.de/2005/09/30/rechtsstreit-ueber-kartoffelsorte-linda-geht/ - 2026-03-03T19:02:45.000Z + 2026-03-03T19:02:45.767Z monthly 0.8 @@ -48593,7 +48782,7 @@ https://www.rfc1437.de/2005/09/30/sonnenfinsternis-am-tag-der-deutschen-einheit/ - 2026-03-03T19:02:49.000Z + 2026-03-03T19:02:49.734Z monthly 0.8 @@ -48602,7 +48791,7 @@ https://www.rfc1437.de/2005/09/29/i18n-and-django/ - 2026-03-07T21:15:58.000Z + 2026-03-07T21:15:58.740Z monthly 0.8 @@ -48611,7 +48800,7 @@ https://www.rfc1437.de/2005/09/28/doch-kein-deutscher-boxweltmeister-heute/ - 2026-03-03T19:02:58.000Z + 2026-03-03T19:02:58.014Z monthly 0.8 @@ -48620,7 +48809,7 @@ https://www.rfc1437.de/2005/09/28/hh-cdu-und-demokratie-is-nich/ - 2026-03-03T19:03:02.000Z + 2026-03-03T19:03:02.917Z monthly 0.8 @@ -48629,7 +48818,7 @@ https://www.rfc1437.de/2005/09/28/open-dylan/ - 2026-03-03T19:03:07.000Z + 2026-03-03T19:03:07.242Z monthly 0.8 @@ -48638,7 +48827,7 @@ https://www.rfc1437.de/2005/09/27/prlmnt-lhnt-pln-ds-rts-zr-vrrtsdtnspchrng-ndgltg/ - 2026-03-03T19:03:12.000Z + 2026-03-03T19:03:12.028Z monthly 0.8 @@ -48647,7 +48836,7 @@ https://www.rfc1437.de/2005/09/27/routes-fur-python/ - 2026-03-03T19:03:16.000Z + 2026-03-03T19:03:16.364Z monthly 0.8 @@ -48656,7 +48845,7 @@ https://www.rfc1437.de/2005/09/27/warum-ich-so-bei-rails-meine-zweifel-habe/ - 2026-03-03T19:03:21.000Z + 2026-03-03T19:03:21.108Z monthly 0.8 @@ -48665,7 +48854,7 @@ https://www.rfc1437.de/2005/09/25/pocketmod-mini-papier-organizer/ - 2026-03-03T19:03:25.000Z + 2026-03-03T19:03:25.400Z monthly 0.8 @@ -48674,7 +48863,7 @@ https://www.rfc1437.de/2005/09/23/dusseliges-frage-spiel-aktiviert/ - 2026-03-03T19:03:29.000Z + 2026-03-03T19:03:29.771Z monthly 0.8 @@ -48683,7 +48872,7 @@ https://www.rfc1437.de/2005/09/23/tc-trustcenter-insolvent/ - 2026-03-03T19:03:33.000Z + 2026-03-03T19:03:33.637Z monthly 0.8 @@ -48692,7 +48881,7 @@ https://www.rfc1437.de/2005/09/23/weiterer-spam-fallot-kn-trckbck-nd-pngbck-mhr-b-mr/ - 2026-03-03T19:03:38.000Z + 2026-03-03T19:03:38.458Z monthly 0.8 @@ -48701,7 +48890,7 @@ https://www.rfc1437.de/2005/09/22/informixdb/ - 2026-03-03T19:03:41.000Z + 2026-03-03T19:03:41.945Z monthly 0.8 @@ -48710,7 +48899,7 @@ https://www.rfc1437.de/2005/09/21/feigheit-oder-faulheit/ - 2026-03-03T19:03:46.000Z + 2026-03-03T19:03:46.668Z monthly 0.8 @@ -48719,7 +48908,7 @@ https://www.rfc1437.de/2005/09/20/peinlicher-spiegel/ - 2026-03-03T19:03:50.000Z + 2026-03-03T19:03:50.999Z monthly 0.8 @@ -48728,7 +48917,7 @@ https://www.rfc1437.de/2005/09/19/arme-unverstandene-medien/ - 2026-03-03T19:03:55.000Z + 2026-03-03T19:03:55.910Z monthly 0.8 @@ -48737,7 +48926,7 @@ https://www.rfc1437.de/2005/09/19/wahlergebnisse-oder-qualergebnisse/ - 2026-03-03T19:04:00.000Z + 2026-03-03T19:04:00.921Z monthly 0.8 @@ -48746,7 +48935,7 @@ https://www.rfc1437.de/2005/09/17/microsoft-schleichwerbung-beim-ndr/ - 2026-03-03T19:04:05.000Z + 2026-03-03T19:04:05.443Z monthly 0.8 @@ -48755,7 +48944,7 @@ https://www.rfc1437.de/2005/09/17/what-has-trusted-computing-to-do-with-trust/ - 2026-03-03T19:04:09.000Z + 2026-03-03T19:04:09.498Z monthly 0.8 @@ -48764,7 +48953,7 @@ https://www.rfc1437.de/2005/09/17/wxwindows-buch/ - 2026-03-03T19:04:13.000Z + 2026-03-03T19:04:13.469Z monthly 0.8 @@ -48773,7 +48962,7 @@ https://www.rfc1437.de/2005/09/16/medienkompetenz-ala-csu/ - 2026-03-03T19:04:18.000Z + 2026-03-03T19:04:18.221Z monthly 0.8 @@ -48782,7 +48971,7 @@ https://www.rfc1437.de/2005/09/16/nachschub-fur-astronomie-freaks/ - 2026-03-03T19:04:22.000Z + 2026-03-03T19:04:22.481Z monthly 0.8 @@ -48791,7 +48980,7 @@ https://www.rfc1437.de/2005/09/16/noch-mehr-medien-inkompetenz-diesmal-cdu/ - 2026-03-03T19:04:27.000Z + 2026-03-03T19:04:27.313Z monthly 0.8 @@ -48800,7 +48989,7 @@ https://www.rfc1437.de/2005/09/16/peter-lustig-hort-auf/ - 2026-03-03T19:04:32.000Z + 2026-03-03T19:04:32.083Z monthly 0.8 @@ -48809,7 +48998,7 @@ https://www.rfc1437.de/2005/09/16/rfid-im-reisepass-kein-sicherheitsmerkmal/ - 2026-03-03T19:04:36.000Z + 2026-03-03T19:04:36.849Z monthly 0.8 @@ -48818,7 +49007,7 @@ https://www.rfc1437.de/2005/09/16/sie-machen-die-gleiche-scheisse-wie-in-den-usa/ - 2026-03-03T19:04:41.000Z + 2026-03-03T19:04:41.252Z monthly 0.8 @@ -48827,7 +49016,7 @@ https://www.rfc1437.de/2005/09/16/und-urplotzlich-fuhlt-man-sich-wieder-jung/ - 2026-03-03T19:04:44.000Z + 2026-03-03T19:04:44.792Z monthly 0.8 @@ -48836,7 +49025,7 @@ https://www.rfc1437.de/2005/09/16/yep-passt/ - 2026-03-03T19:04:49.000Z + 2026-03-03T19:04:49.485Z monthly 0.8 @@ -48845,7 +49034,7 @@ https://www.rfc1437.de/2005/09/15/djangoscgi-django-projects-trac/ - 2026-03-07T21:16:00.000Z + 2026-03-07T21:16:00.160Z monthly 0.8 @@ -48854,7 +49043,7 @@ https://www.rfc1437.de/2005/09/15/gaspreiskalkulationen-mussen-offengelegt-werden/ - 2026-03-03T19:04:58.000Z + 2026-03-03T19:04:58.899Z monthly 0.8 @@ -48863,7 +49052,7 @@ https://www.rfc1437.de/2005/09/15/security-by-complete-stupidity/ - 2026-03-03T19:05:03.000Z + 2026-03-03T19:05:03.411Z monthly 0.8 @@ -48872,7 +49061,7 @@ https://www.rfc1437.de/2005/09/14/google-blog-search/ - 2026-03-03T19:05:08.000Z + 2026-03-03T19:05:08.186Z monthly 0.8 @@ -48881,7 +49070,7 @@ https://www.rfc1437.de/2005/09/13/doppelt-blod-halt-besser/ - 2026-03-03T19:05:12.000Z + 2026-03-03T19:05:12.040Z monthly 0.8 @@ -48890,7 +49079,7 @@ https://www.rfc1437.de/2005/09/13/lugen-linssen-und-die-finanzen/ - 2026-03-03T19:05:16.000Z + 2026-03-03T19:05:16.815Z monthly 0.8 @@ -48899,7 +49088,7 @@ https://www.rfc1437.de/2005/09/12/hirnfurze/ - 2026-03-03T19:05:21.000Z + 2026-03-03T19:05:21.609Z monthly 0.8 @@ -48908,7 +49097,7 @@ https://www.rfc1437.de/2005/09/10/die-traumer-von-der-bfa/ - 2026-03-03T19:05:26.000Z + 2026-03-03T19:05:26.073Z monthly 0.8 @@ -48917,7 +49106,7 @@ https://www.rfc1437.de/2005/09/10/the-itunes-5-announcement-from-the-perspective-of/ - 2026-03-07T21:16:01.000Z + 2026-03-07T21:16:01.385Z monthly 0.8 @@ -48926,7 +49115,7 @@ https://www.rfc1437.de/2005/09/09/common-scheme/ - 2026-03-03T19:05:33.000Z + 2026-03-03T19:05:33.893Z monthly 0.8 @@ -48935,7 +49124,7 @@ https://www.rfc1437.de/2005/09/09/i-want-one/ - 2026-03-03T19:05:37.000Z + 2026-03-03T19:05:37.807Z monthly 0.8 @@ -48944,7 +49133,7 @@ https://www.rfc1437.de/2005/09/08/beware-the-monster-chick/ - 2026-03-03T19:05:42.000Z + 2026-03-03T19:05:42.614Z monthly 0.8 @@ -48953,7 +49142,7 @@ https://www.rfc1437.de/2005/09/08/qualitatsjournallie/ - 2026-03-03T19:05:47.000Z + 2026-03-03T19:05:47.443Z monthly 0.8 @@ -48962,7 +49151,7 @@ https://www.rfc1437.de/2005/09/07/erster-fallout-von-schwarz-gelb/ - 2026-03-03T19:05:52.000Z + 2026-03-03T19:05:52.035Z monthly 0.8 @@ -48971,7 +49160,7 @@ https://www.rfc1437.de/2005/09/06/alles-nur-geklaut/ - 2026-03-03T19:05:56.000Z + 2026-03-03T19:05:56.382Z monthly 0.8 @@ -48980,7 +49169,7 @@ https://www.rfc1437.de/2005/09/06/django-gallery-status/ - 2026-03-07T21:16:05.000Z + 2026-03-07T21:16:05.768Z monthly 0.8 @@ -48989,7 +49178,7 @@ https://www.rfc1437.de/2005/09/04/manchmal-spinnen-die-debianistas/ - 2026-03-03T19:06:05.000Z + 2026-03-03T19:06:05.891Z monthly 0.8 @@ -48998,7 +49187,7 @@ https://www.rfc1437.de/2005/09/04/nacht-der-museen-in-munster/ - 2026-03-03T19:06:10.000Z + 2026-03-03T19:06:10.302Z monthly 0.8 @@ -49007,7 +49196,7 @@ https://www.rfc1437.de/2005/09/04/parser-fur-python-ahnliche-konfigfiles/ - 2026-03-03T19:06:14.000Z + 2026-03-03T19:06:14.698Z monthly 0.8 @@ -49016,7 +49205,7 @@ https://www.rfc1437.de/2005/09/03/prioritaten/ - 2026-03-03T19:06:19.000Z + 2026-03-03T19:06:19.549Z monthly 0.8 @@ -49025,7 +49214,7 @@ https://www.rfc1437.de/2005/09/02/id-ist-grober-unfug/ - 2026-03-03T19:06:23.000Z + 2026-03-03T19:06:23.968Z monthly 0.8 @@ -49034,7 +49223,7 @@ https://www.rfc1437.de/2005/09/02/mochikit-tutorial-teil-1/ - 2026-03-03T19:06:27.000Z + 2026-03-03T19:06:27.938Z monthly 0.8 @@ -49043,7 +49232,7 @@ https://www.rfc1437.de/2005/09/02/und-sie-laufen-immer-noch/ - 2026-03-03T19:06:32.000Z + 2026-03-03T19:06:32.362Z monthly 0.8 @@ -49052,7 +49241,7 @@ https://www.rfc1437.de/2005/09/02/wahlkampfbeitrag/ - 2026-03-03T19:06:35.000Z + 2026-03-03T19:06:35.879Z monthly 0.8 @@ -49061,7 +49250,7 @@ https://www.rfc1437.de/2005/09/01/geocaching-status/ - 2026-03-03T19:06:39.000Z + 2026-03-03T19:06:39.443Z monthly 0.8 @@ -49070,7 +49259,7 @@ https://www.rfc1437.de/2005/08/30/gps-receiver-information-software-and-hardware/ - 2026-03-03T19:06:43.000Z + 2026-03-03T19:06:43.043Z monthly 0.8 @@ -49079,7 +49268,7 @@ https://www.rfc1437.de/2005/08/30/working-with-garmin-receivers-a-user-manual/ - 2026-03-03T19:06:46.000Z + 2026-03-03T19:06:46.563Z monthly 0.8 @@ -49088,7 +49277,7 @@ https://www.rfc1437.de/2005/08/29/gema-und-das-internet/ - 2026-03-03T19:06:51.000Z + 2026-03-03T19:06:51.386Z monthly 0.8 @@ -49097,7 +49286,7 @@ https://www.rfc1437.de/2005/08/29/mauscheleien-vor-gericht/ - 2026-03-03T19:06:56.000Z + 2026-03-03T19:06:56.233Z monthly 0.8 @@ -49106,7 +49295,7 @@ https://www.rfc1437.de/2005/08/29/offentliche-dienst-nichtleistungen/ - 2026-03-03T19:07:00.000Z + 2026-03-03T19:07:00.845Z monthly 0.8 @@ -49115,7 +49304,7 @@ https://www.rfc1437.de/2005/08/28/musiklabelchefs-immer-noch-vollig-verblodet/ - 2026-03-03T19:07:05.000Z + 2026-03-03T19:07:05.736Z monthly 0.8 @@ -49124,7 +49313,7 @@ https://www.rfc1437.de/2005/08/27/montgolfiade-in-munster/ - 2026-03-03T19:07:10.000Z + 2026-03-03T19:07:10.708Z monthly 0.8 @@ -49133,7 +49322,7 @@ https://www.rfc1437.de/2005/08/27/montgolfiade-in-munster-2/ - 2026-03-03T19:07:14.000Z + 2026-03-03T19:07:14.674Z monthly 0.8 @@ -49142,7 +49331,7 @@ https://www.rfc1437.de/2005/08/27/news-from-the-gallery-project/ - 2026-03-07T21:16:11.000Z + 2026-03-07T21:16:11.422Z monthly 0.8 @@ -49151,7 +49340,7 @@ https://www.rfc1437.de/2005/08/26/itan-verfahren-auch-nicht-sicher/ - 2026-03-03T19:07:23.000Z + 2026-03-03T19:07:23.986Z monthly 0.8 @@ -49160,7 +49349,7 @@ https://www.rfc1437.de/2005/08/25/javascript-css-box-modell-ratsel/ - 2026-03-03T19:07:28.000Z + 2026-03-03T19:07:28.419Z monthly 0.8 @@ -49169,7 +49358,7 @@ https://www.rfc1437.de/2005/08/25/karlsruhe-macht-weg-fur-neuwahlen-frei/ - 2026-03-03T19:07:32.000Z + 2026-03-03T19:07:32.818Z monthly 0.8 @@ -49178,7 +49367,7 @@ https://www.rfc1437.de/2005/08/24/javascript-und-die-escape-funktion/ - 2026-03-03T19:07:36.000Z + 2026-03-03T19:07:36.754Z monthly 0.8 @@ -49187,7 +49376,7 @@ https://www.rfc1437.de/2005/08/24/mochikit-erste-erfahrungen/ - 2026-03-03T19:07:40.000Z + 2026-03-03T19:07:40.803Z monthly 0.8 @@ -49196,7 +49385,7 @@ https://www.rfc1437.de/2005/08/23/armstrong-epo-gedoped-bei-erstem-toursieg/ - 2026-03-03T19:07:45.000Z + 2026-03-03T19:07:45.631Z monthly 0.8 @@ -49205,7 +49394,7 @@ https://www.rfc1437.de/2005/08/22/aldag-hort-auf/ - 2026-03-03T19:07:50.000Z + 2026-03-03T19:07:50.534Z monthly 0.8 @@ -49214,7 +49403,7 @@ https://www.rfc1437.de/2005/08/22/canon-eos-5d-full-frame-128-megapixel/ - 2026-03-03T19:07:54.000Z + 2026-03-03T19:07:54.936Z monthly 0.8 @@ -49223,7 +49412,7 @@ https://www.rfc1437.de/2005/08/21/armer-jorg-jaksche-schon-wieder/ - 2026-03-03T19:07:59.000Z + 2026-03-03T19:07:59.602Z monthly 0.8 @@ -49232,7 +49421,7 @@ https://www.rfc1437.de/2005/08/21/postgrespy/ - 2026-03-03T19:08:02.000Z + 2026-03-03T19:08:02.816Z monthly 0.8 @@ -49241,7 +49430,7 @@ https://www.rfc1437.de/2005/08/20/djangogallery-sample-app-with-sample-installation/ - 2026-03-07T21:16:14.000Z + 2026-03-07T21:16:14.323Z monthly 0.8 @@ -49250,7 +49439,7 @@ https://www.rfc1437.de/2005/08/20/kibot/ - 2026-03-03T19:08:10.000Z + 2026-03-03T19:08:10.845Z monthly 0.8 @@ -49259,7 +49448,7 @@ https://www.rfc1437.de/2005/08/20/kompetenz-inkompetenz-inkontinenz/ - 2026-03-03T19:08:15.000Z + 2026-03-03T19:08:15.790Z monthly 0.8 @@ -49268,7 +49457,7 @@ https://www.rfc1437.de/2005/08/20/posting-5000/ - 2026-03-03T19:08:19.000Z + 2026-03-03T19:08:19.754Z monthly 0.8 @@ -49277,7 +49466,7 @@ https://www.rfc1437.de/2005/08/19/erste-django-anwendung-life/ - 2026-03-03T19:08:24.000Z + 2026-03-03T19:08:24.224Z monthly 0.8 @@ -49286,7 +49475,7 @@ https://www.rfc1437.de/2005/08/19/objectiveclips/ - 2026-03-03T19:08:28.000Z + 2026-03-03T19:08:28.761Z monthly 0.8 @@ -49295,7 +49484,7 @@ https://www.rfc1437.de/2005/08/19/rss-3-gleich-zweimal/ - 2026-03-03T19:08:33.000Z + 2026-03-03T19:08:33.903Z monthly 0.8 @@ -49304,7 +49493,7 @@ https://www.rfc1437.de/2005/08/19/writing-plugins/ - 2026-03-03T19:08:37.000Z + 2026-03-03T19:08:37.797Z monthly 0.8 @@ -49313,7 +49502,7 @@ https://www.rfc1437.de/2005/08/18/sha-1-geht-weiter-den-bach-runter/ - 2026-03-03T19:08:42.000Z + 2026-03-03T19:08:42.863Z monthly 0.8 @@ -49322,7 +49511,7 @@ https://www.rfc1437.de/2005/08/17/11-spinnt/ - 2026-03-03T19:08:47.000Z + 2026-03-03T19:08:47.864Z monthly 0.8 @@ -49331,7 +49520,7 @@ https://www.rfc1437.de/2005/08/17/2029-geht-die-welt-unter/ - 2026-03-03T19:08:51.000Z + 2026-03-03T19:08:51.938Z monthly 0.8 @@ -49340,7 +49529,7 @@ https://www.rfc1437.de/2005/08/17/anonyme-sessions/ - 2026-03-03T19:08:55.000Z + 2026-03-03T19:08:55.909Z monthly 0.8 @@ -49349,7 +49538,7 @@ https://www.rfc1437.de/2005/08/17/cooperative-linux-2/ - 2026-03-03T19:08:59.000Z + 2026-03-03T19:08:59.804Z monthly 0.8 @@ -49358,7 +49547,7 @@ https://www.rfc1437.de/2005/08/17/crud-mit-django/ - 2026-03-03T19:09:05.000Z + 2026-03-03T19:09:05.543Z monthly 0.8 @@ -49367,7 +49556,7 @@ https://www.rfc1437.de/2005/08/17/london-zweifel-an-polizeiversion-im-fall-menezes/ - 2026-03-03T19:09:11.000Z + 2026-03-03T19:09:11.490Z monthly 0.8 @@ -49376,7 +49565,7 @@ https://www.rfc1437.de/2005/08/17/mal-was-interessantes-in-rails/ - 2026-03-03T19:09:16.000Z + 2026-03-03T19:09:16.532Z monthly 0.8 @@ -49385,7 +49574,7 @@ https://www.rfc1437.de/2005/08/16/a-comparison-of-django-with-rails/ - 2026-03-03T19:09:21.000Z + 2026-03-03T19:09:21.584Z monthly 0.8 @@ -49394,7 +49583,7 @@ https://www.rfc1437.de/2005/08/16/armer-jorg-jaksche/ - 2026-03-03T19:09:26.000Z + 2026-03-03T19:09:26.733Z monthly 0.8 @@ -49403,7 +49592,7 @@ https://www.rfc1437.de/2005/08/16/lebende-daten/ - 2026-03-03T19:09:32.000Z + 2026-03-03T19:09:32.080Z monthly 0.8 @@ -49412,7 +49601,7 @@ https://www.rfc1437.de/2005/08/16/wxwindows-jetzt-auch-fur-common-lisp/ - 2026-03-03T19:09:37.000Z + 2026-03-03T19:09:37.285Z monthly 0.8 @@ -49421,7 +49610,7 @@ https://www.rfc1437.de/2005/08/15/die-seltsame-neigung-der-php-programmierer-zu-eval/ - 2026-03-03T19:09:43.000Z + 2026-03-03T19:09:43.029Z monthly 0.8 @@ -49430,7 +49619,7 @@ https://www.rfc1437.de/2005/08/14/lahmes-posten-in-wordpress/ - 2026-03-03T19:09:48.000Z + 2026-03-03T19:09:48.942Z monthly 0.8 @@ -49439,7 +49628,7 @@ https://www.rfc1437.de/2005/08/14/seashore/ - 2026-03-03T19:09:53.000Z + 2026-03-03T19:09:53.728Z monthly 0.8 @@ -49448,7 +49637,7 @@ https://www.rfc1437.de/2005/08/14/spotlight-auf-wechsellaufwerk-ausschalten/ - 2026-03-03T19:09:58.000Z + 2026-03-03T19:09:58.123Z monthly 0.8 @@ -49457,7 +49646,7 @@ https://www.rfc1437.de/2005/08/14/trac-softwareprojektmanagement-leicht-gemacht/ - 2026-03-03T19:10:03.000Z + 2026-03-03T19:10:03.373Z monthly 0.8 @@ -49466,7 +49655,7 @@ https://www.rfc1437.de/2005/08/13/kenosis/ - 2026-03-03T19:10:07.000Z + 2026-03-03T19:10:07.736Z monthly 0.8 @@ -49475,7 +49664,7 @@ https://www.rfc1437.de/2005/08/13/nitro/ - 2026-03-03T19:10:12.000Z + 2026-03-03T19:10:12.008Z monthly 0.8 @@ -49484,7 +49673,7 @@ https://www.rfc1437.de/2005/08/13/rbl-betreiber-mal-wieder/ - 2026-03-03T19:10:17.000Z + 2026-03-03T19:10:17.274Z monthly 0.8 @@ -49493,7 +49682,7 @@ https://www.rfc1437.de/2005/08/12/awstats-pl/ - 2026-03-03T19:10:21.000Z + 2026-03-03T19:10:21.471Z monthly 0.8 @@ -49502,7 +49691,7 @@ https://www.rfc1437.de/2005/08/12/privacy-update-unter-os-x/ - 2026-03-03T19:10:26.000Z + 2026-03-03T19:10:26.800Z monthly 0.8 @@ -49511,7 +49700,7 @@ https://www.rfc1437.de/2005/08/12/zu-dem-bayern-getose/ - 2026-03-03T19:10:31.000Z + 2026-03-03T19:10:31.466Z monthly 0.8 @@ -49520,7 +49709,7 @@ https://www.rfc1437.de/2005/08/11/mac-os-x-intel-hacked-to-run-on-standard-pcs/ - 2026-03-03T19:10:36.000Z + 2026-03-03T19:10:36.591Z monthly 0.8 @@ -49529,7 +49718,7 @@ https://www.rfc1437.de/2005/08/11/rip-lastfm/ - 2026-03-03T19:10:41.000Z + 2026-03-03T19:10:41.806Z monthly 0.8 @@ -49538,7 +49727,7 @@ https://www.rfc1437.de/2005/08/11/sco-patent-fallout/ - 2026-03-03T19:10:46.000Z + 2026-03-03T19:10:46.934Z monthly 0.8 @@ -49547,7 +49736,7 @@ https://www.rfc1437.de/2005/08/11/xchatpython/ - 2026-03-03T19:10:50.000Z + 2026-03-03T19:10:50.535Z monthly 0.8 @@ -49556,7 +49745,7 @@ https://www.rfc1437.de/2005/08/10/coooool/ - 2026-03-03T19:10:55.000Z + 2026-03-03T19:10:55.180Z monthly 0.8 @@ -49565,7 +49754,7 @@ https://www.rfc1437.de/2005/08/10/informationen-zur-canon-eos-5d-aufgetaucht/ - 2026-03-03T19:10:59.000Z + 2026-03-03T19:10:59.957Z monthly 0.8 @@ -49574,7 +49763,7 @@ https://www.rfc1437.de/2005/08/10/oracle-cluster-file-system-2-fur-linux/ - 2026-03-03T19:11:05.000Z + 2026-03-03T19:11:05.114Z monthly 0.8 @@ -49583,7 +49772,7 @@ https://www.rfc1437.de/2005/08/10/the-hidden-boot-code-of-the-xbox/ - 2026-03-03T19:11:10.000Z + 2026-03-03T19:11:10.208Z monthly 0.8 @@ -49592,7 +49781,7 @@ https://www.rfc1437.de/2005/08/09/und-nun-herr-mcbride/ - 2026-03-03T19:11:15.000Z + 2026-03-03T19:11:15.220Z monthly 0.8 @@ -49601,7 +49790,7 @@ https://www.rfc1437.de/2005/08/09/yep-macht-sinn/ - 2026-03-03T19:11:19.000Z + 2026-03-03T19:11:19.322Z monthly 0.8 @@ -49610,7 +49799,7 @@ https://www.rfc1437.de/2005/08/08/eu-kommission-mal-wieder-im-alleingang/ - 2026-03-03T19:11:24.000Z + 2026-03-03T19:11:24.392Z monthly 0.8 @@ -49619,7 +49808,7 @@ https://www.rfc1437.de/2005/08/08/man-reiche-darl-mcbride-die-frog-pills/ - 2026-03-03T19:11:29.000Z + 2026-03-03T19:11:29.755Z monthly 0.8 @@ -49628,7 +49817,7 @@ https://www.rfc1437.de/2005/08/08/mathematische-unkenntniss/ - 2026-03-03T19:11:35.000Z + 2026-03-03T19:11:35.879Z monthly 0.8 @@ -49637,7 +49826,7 @@ https://www.rfc1437.de/2005/08/07/international-components-for-unicode/ - 2026-03-03T19:11:40.000Z + 2026-03-03T19:11:40.271Z monthly 0.8 @@ -49646,7 +49835,7 @@ https://www.rfc1437.de/2005/08/07/pyicu/ - 2026-03-03T19:11:43.000Z + 2026-03-03T19:11:43.971Z monthly 0.8 @@ -49655,7 +49844,7 @@ https://www.rfc1437.de/2005/08/06/man-lernt-doch-nie-aus/ - 2026-03-03T19:11:48.000Z + 2026-03-03T19:11:48.644Z monthly 0.8 @@ -49664,7 +49853,7 @@ https://www.rfc1437.de/2005/08/05/auf-dem-weg-in-die-medien-monokultur/ - 2026-03-03T19:11:54.000Z + 2026-03-03T19:11:54.056Z monthly 0.8 @@ -49673,7 +49862,7 @@ https://www.rfc1437.de/2005/08/05/connecting-databases-to-python-with-sqlobject/ - 2026-03-03T19:11:58.000Z + 2026-03-03T19:11:58.080Z monthly 0.8 @@ -49682,7 +49871,7 @@ https://www.rfc1437.de/2005/08/05/umwelt-ausverkauf-in-d-dorf/ - 2026-03-03T19:12:03.000Z + 2026-03-03T19:12:03.740Z monthly 0.8 @@ -49691,7 +49880,7 @@ https://www.rfc1437.de/2005/08/05/unicode-howto/ - 2026-03-03T19:12:07.000Z + 2026-03-03T19:12:07.107Z monthly 0.8 @@ -49700,7 +49889,7 @@ https://www.rfc1437.de/2005/08/04/crypt-passwdmd5/ - 2026-03-03T19:12:12.000Z + 2026-03-03T19:12:12.439Z monthly 0.8 @@ -49709,7 +49898,7 @@ https://www.rfc1437.de/2005/08/04/md5crypt-py/ - 2026-03-03T19:12:18.000Z + 2026-03-03T19:12:18.089Z monthly 0.8 @@ -49718,7 +49907,7 @@ https://www.rfc1437.de/2005/08/04/passworter-als-hashes-speichern-sicher/ - 2026-03-03T19:12:23.000Z + 2026-03-03T19:12:23.416Z monthly 0.8 @@ -49727,7 +49916,7 @@ https://www.rfc1437.de/2005/08/04/shoot-to-kill-direktiven-und-die-welt-wird-n-gshtr/ - 2026-03-03T19:12:30.000Z + 2026-03-03T19:12:30.109Z monthly 0.8 @@ -49736,7 +49925,7 @@ https://www.rfc1437.de/2005/08/04/treeview/ - 2026-03-03T19:12:34.000Z + 2026-03-03T19:12:34.638Z monthly 0.8 @@ -49745,7 +49934,7 @@ https://www.rfc1437.de/2005/08/03/ciscos-kundenpasswoerter-sind-weg/ - 2026-03-03T19:12:39.000Z + 2026-03-03T19:12:39.860Z monthly 0.8 @@ -49754,7 +49943,7 @@ https://www.rfc1437.de/2005/08/03/django-apache-and-fcgi/ - 2026-03-07T21:16:23.000Z + 2026-03-07T21:16:23.462Z monthly 0.8 @@ -49763,7 +49952,7 @@ https://www.rfc1437.de/2005/08/03/eu-hirnriss-zu-urheberrechtsverletzungen/ - 2026-03-03T19:12:51.000Z + 2026-03-03T19:12:51.253Z monthly 0.8 @@ -49772,7 +49961,7 @@ https://www.rfc1437.de/2005/08/03/geocaching-im-munsterland/ - 2026-03-03T19:12:56.000Z + 2026-03-03T19:12:56.703Z monthly 0.8 @@ -49781,7 +49970,7 @@ https://www.rfc1437.de/2005/08/03/mal-wieder-neues-bei-django/ - 2026-03-03T19:13:02.000Z + 2026-03-03T19:13:02.888Z monthly 0.8 @@ -49790,7 +49979,7 @@ https://www.rfc1437.de/2005/08/03/soziale-netzwerkerei/ - 2026-03-03T19:13:07.000Z + 2026-03-03T19:13:07.453Z monthly 0.8 @@ -49799,7 +49988,7 @@ https://www.rfc1437.de/2005/08/03/was-bei-sqlobject-derzeit-passiert/ - 2026-03-03T19:13:12.000Z + 2026-03-03T19:13:12.188Z monthly 0.8 @@ -49808,7 +49997,7 @@ https://www.rfc1437.de/2005/08/02/aber-patente-sind-ja-sooo-toll/ - 2026-03-03T19:13:17.000Z + 2026-03-03T19:13:17.030Z monthly 0.8 @@ -49817,7 +50006,7 @@ https://www.rfc1437.de/2005/08/02/automatically-mount-dm-crypt-encrypted-home-with/ - 2026-03-03T19:13:21.000Z + 2026-03-03T19:13:21.401Z monthly 0.8 @@ -49826,7 +50015,7 @@ https://www.rfc1437.de/2005/08/02/coroutinen-fur-python/ - 2026-03-03T19:13:27.000Z + 2026-03-03T19:13:27.176Z monthly 0.8 @@ -49835,7 +50024,7 @@ https://www.rfc1437.de/2005/08/02/ejabberd/ - 2026-03-03T19:13:32.000Z + 2026-03-03T19:13:32.946Z monthly 0.8 @@ -49844,7 +50033,7 @@ https://www.rfc1437.de/2005/08/02/hell-freezes-over-a-second-time/ - 2026-03-03T19:13:36.000Z + 2026-03-03T19:13:36.934Z monthly 0.8 @@ -49853,7 +50042,7 @@ https://www.rfc1437.de/2005/08/02/linux-auf-mac-story/ - 2026-03-03T19:13:41.000Z + 2026-03-03T19:13:41.138Z monthly 0.8 @@ -49862,7 +50051,7 @@ https://www.rfc1437.de/2005/08/02/linux-on-an-apple-powerbook-howto/ - 2026-03-03T19:13:45.000Z + 2026-03-03T19:13:45.509Z monthly 0.8 @@ -49871,7 +50060,7 @@ https://www.rfc1437.de/2005/08/02/the-illusive-setdefaultencoding/ - 2026-03-03T19:13:50.000Z + 2026-03-03T19:13:50.680Z monthly 0.8 @@ -49880,7 +50069,7 @@ https://www.rfc1437.de/2005/08/02/untrusted-platform-apple/ - 2026-03-03T19:13:57.000Z + 2026-03-03T19:13:57.208Z monthly 0.8 @@ -49889,7 +50078,7 @@ https://www.rfc1437.de/2005/08/02/wohin-abmahnwahn-und-vorauseilendr-ghrsm-fhrn-knnn/ - 2026-03-03T19:14:03.000Z + 2026-03-03T19:14:03.466Z monthly 0.8 @@ -49898,7 +50087,7 @@ https://www.rfc1437.de/2005/08/01/auswirkungen-von-gen-raps-und-co/ - 2026-03-03T19:14:08.000Z + 2026-03-03T19:14:08.868Z monthly 0.8 @@ -49907,7 +50096,7 @@ https://www.rfc1437.de/2005/07/31/daves-neuer-opml-editor-mit-blog/ - 2026-03-03T19:14:14.000Z + 2026-03-03T19:14:14.682Z monthly 0.8 @@ -49916,7 +50105,7 @@ https://www.rfc1437.de/2005/07/31/hew-cyclassics-2005/ - 2026-03-03T19:14:19.000Z + 2026-03-03T19:14:19.648Z monthly 0.8 @@ -49925,7 +50114,7 @@ https://www.rfc1437.de/2005/07/31/merkelnix-krampft-auch/ - 2026-03-03T19:14:25.000Z + 2026-03-03T19:14:25.285Z monthly 0.8 @@ -49934,7 +50123,7 @@ https://www.rfc1437.de/2005/07/31/softwarepatente-kommentar-bei-der-ny-times/ - 2026-03-03T19:14:31.000Z + 2026-03-03T19:14:31.034Z monthly 0.8 @@ -49943,7 +50132,7 @@ https://www.rfc1437.de/2005/07/31/wahlkampf-wahlkrampf/ - 2026-03-03T19:14:38.000Z + 2026-03-03T19:14:38.117Z monthly 0.8 @@ -49952,7 +50141,7 @@ https://www.rfc1437.de/2005/07/31/writing-a-simple-filesystem-browser-with-django/ - 2026-03-07T21:16:34.000Z + 2026-03-07T21:16:34.463Z monthly 0.8 @@ -49961,7 +50150,7 @@ https://www.rfc1437.de/2005/07/31/zerospan/ - 2026-03-03T19:14:47.000Z + 2026-03-03T19:14:47.623Z monthly 0.8 @@ -49970,7 +50159,7 @@ https://www.rfc1437.de/2005/07/30/ausbildung-als-billiglohnschiene/ - 2026-03-03T19:14:53.000Z + 2026-03-03T19:14:53.038Z monthly 0.8 @@ -49979,7 +50168,7 @@ https://www.rfc1437.de/2005/07/30/beckstein-on-the-roll/ - 2026-03-03T19:14:58.000Z + 2026-03-03T19:14:58.530Z monthly 0.8 @@ -49988,7 +50177,7 @@ https://www.rfc1437.de/2005/07/30/novell-will-sco-an-den-kragen/ - 2026-03-03T19:15:02.000Z + 2026-03-03T19:15:02.879Z monthly 0.8 @@ -49997,7 +50186,7 @@ https://www.rfc1437.de/2005/07/30/pluto-raus-oder-ein-neuer-rein/ - 2026-03-03T19:15:08.000Z + 2026-03-03T19:15:08.321Z monthly 0.8 @@ -50006,7 +50195,7 @@ https://www.rfc1437.de/2005/07/30/postgresql-extension-for-frontier/ - 2026-03-03T19:15:12.000Z + 2026-03-03T19:15:12.078Z monthly 0.8 @@ -50015,7 +50204,7 @@ https://www.rfc1437.de/2005/07/30/vom-umgang-mit-security/ - 2026-03-03T19:15:17.000Z + 2026-03-03T19:15:17.155Z monthly 0.8 @@ -50024,7 +50213,7 @@ https://www.rfc1437.de/2005/07/29/international-standard-date-and-time-notation/ - 2026-03-03T19:15:21.000Z + 2026-03-03T19:15:21.446Z monthly 0.8 @@ -50033,7 +50222,7 @@ https://www.rfc1437.de/2005/07/29/leichen-im-keller/ - 2026-03-03T19:15:26.000Z + 2026-03-03T19:15:26.391Z monthly 0.8 @@ -50042,7 +50231,7 @@ https://www.rfc1437.de/2005/07/29/linkhaftung-nach-dem-heise-urteil/ - 2026-03-03T19:15:31.000Z + 2026-03-03T19:15:31.690Z monthly 0.8 @@ -50051,7 +50240,7 @@ https://www.rfc1437.de/2005/07/29/pysqlitefactories/ - 2026-03-03T19:15:36.000Z + 2026-03-03T19:15:36.653Z monthly 0.8 @@ -50060,7 +50249,7 @@ https://www.rfc1437.de/2005/07/29/sysadmins-day/ - 2026-03-03T19:15:40.000Z + 2026-03-03T19:15:40.528Z monthly 0.8 @@ -50069,7 +50258,7 @@ https://www.rfc1437.de/2005/07/28/abridged-guide-to-http-caching/ - 2026-03-03T19:15:44.000Z + 2026-03-03T19:15:44.836Z monthly 0.8 @@ -50078,7 +50267,7 @@ https://www.rfc1437.de/2005/07/28/jsan/ - 2026-03-03T19:15:48.000Z + 2026-03-03T19:15:48.701Z monthly 0.8 @@ -50087,7 +50276,7 @@ https://www.rfc1437.de/2005/07/28/linux-vserver/ - 2026-03-03T19:15:53.000Z + 2026-03-03T19:15:53.497Z monthly 0.8 @@ -50096,7 +50285,7 @@ https://www.rfc1437.de/2005/07/28/tor-network-status/ - 2026-03-03T19:15:57.000Z + 2026-03-03T19:15:57.810Z monthly 0.8 @@ -50105,7 +50294,7 @@ https://www.rfc1437.de/2005/07/28/typo/ - 2026-03-03T19:16:02.000Z + 2026-03-03T19:16:02.105Z monthly 0.8 @@ -50114,7 +50303,7 @@ https://www.rfc1437.de/2005/07/28/und-die-erde-ist-doch-eine-scheibe/ - 2026-03-03T19:16:06.000Z + 2026-03-03T19:16:06.444Z monthly 0.8 @@ -50123,7 +50312,7 @@ https://www.rfc1437.de/2005/07/27/django-lighttpd-and-fcgi-second-take/ - 2026-03-07T21:16:52.000Z + 2026-03-07T21:16:52.678Z monthly 0.8 @@ -50132,7 +50321,7 @@ https://www.rfc1437.de/2005/07/27/eunuchs/ - 2026-03-03T19:16:15.000Z + 2026-03-03T19:16:15.698Z monthly 0.8 @@ -50141,7 +50330,7 @@ https://www.rfc1437.de/2005/07/27/noch-son-fragebogen/ - 2026-03-03T19:16:20.000Z + 2026-03-03T19:16:20.523Z monthly 0.8 @@ -50150,7 +50339,7 @@ https://www.rfc1437.de/2005/07/27/praventive-telefonuberwachung-is-nich/ - 2026-03-03T19:16:25.000Z + 2026-03-03T19:16:25.381Z monthly 0.8 @@ -50159,7 +50348,7 @@ https://www.rfc1437.de/2005/07/26/es-gibt-tage-da-hasst-mein-computer-mich/ - 2026-03-03T19:16:30.000Z + 2026-03-03T19:16:30.211Z monthly 0.8 @@ -50168,7 +50357,7 @@ https://www.rfc1437.de/2005/07/26/higher-order-perl/ - 2026-03-03T19:16:34.000Z + 2026-03-03T19:16:34.429Z monthly 0.8 @@ -50177,7 +50366,7 @@ https://www.rfc1437.de/2005/07/26/running-django-with-fcgi-and-lighttpd/ - 2026-03-07T21:17:02.000Z + 2026-03-07T21:17:02.192Z monthly 0.8 @@ -50186,7 +50375,7 @@ https://www.rfc1437.de/2005/07/24/flup-random-python-wsgi-stuff/ - 2026-03-03T19:16:44.000Z + 2026-03-03T19:16:44.056Z monthly 0.8 @@ -50195,7 +50384,7 @@ https://www.rfc1437.de/2005/07/24/idiotische-patente-die-elfundelfzigste/ - 2026-03-03T19:16:48.000Z + 2026-03-03T19:16:48.948Z monthly 0.8 @@ -50204,7 +50393,7 @@ https://www.rfc1437.de/2005/07/24/leonardo/ - 2026-03-03T19:16:52.000Z + 2026-03-03T19:16:52.752Z monthly 0.8 @@ -50213,7 +50402,7 @@ https://www.rfc1437.de/2005/07/24/python-paste/ - 2026-03-03T19:16:56.000Z + 2026-03-03T19:16:56.754Z monthly 0.8 @@ -50222,7 +50411,7 @@ https://www.rfc1437.de/2005/07/24/scotland-yard-erschiesst-unschuldigen/ - 2026-03-03T19:17:01.000Z + 2026-03-03T19:17:01.964Z monthly 0.8 @@ -50231,7 +50420,7 @@ https://www.rfc1437.de/2005/07/24/seaside/ - 2026-03-03T19:17:06.000Z + 2026-03-03T19:17:06.254Z monthly 0.8 @@ -50240,7 +50429,7 @@ https://www.rfc1437.de/2005/07/24/verpflichtetes-versicherungssponsoring-drch-dn-stt/ - 2026-03-03T19:17:11.000Z + 2026-03-03T19:17:11.535Z monthly 0.8 @@ -50249,7 +50438,7 @@ https://www.rfc1437.de/2005/07/24/verruckter-vinokourov/ - 2026-03-03T19:17:15.000Z + 2026-03-03T19:17:15.996Z monthly 0.8 @@ -50258,7 +50447,7 @@ https://www.rfc1437.de/2005/07/23/da-wird-otto-wieder-schaumen/ - 2026-03-03T19:17:21.000Z + 2026-03-03T19:17:21.709Z monthly 0.8 @@ -50267,7 +50456,7 @@ https://www.rfc1437.de/2005/07/23/gnu-modula-2/ - 2026-03-03T19:17:26.000Z + 2026-03-03T19:17:26.603Z monthly 0.8 @@ -50276,7 +50465,7 @@ https://www.rfc1437.de/2005/07/23/mochikit/ - 2026-03-03T19:17:30.000Z + 2026-03-03T19:17:30.829Z monthly 0.8 @@ -50285,7 +50474,7 @@ https://www.rfc1437.de/2005/07/23/spitzenkoeche-kaempfen-fuer-linda/ - 2026-03-03T19:17:35.000Z + 2026-03-03T19:17:35.062Z monthly 0.8 @@ -50294,7 +50483,7 @@ https://www.rfc1437.de/2005/07/23/von-pechvogeln-und-favoriten/ - 2026-03-03T19:17:40.000Z + 2026-03-03T19:17:40.440Z monthly 0.8 @@ -50303,7 +50492,7 @@ https://www.rfc1437.de/2005/07/22/und-wieder-mal-django/ - 2026-03-03T19:17:45.000Z + 2026-03-03T19:17:45.594Z monthly 0.8 @@ -50312,7 +50501,7 @@ https://www.rfc1437.de/2005/07/21/internet-pranger-der-us-strafverfolgungsbehorden/ - 2026-03-03T19:17:50.000Z + 2026-03-03T19:17:50.890Z monthly 0.8 @@ -50321,7 +50510,7 @@ https://www.rfc1437.de/2005/07/21/sachsns-vrfgrssr-lschngrff-ch-n-schsn-vrfssngswdrg/ - 2026-03-03T19:17:56.000Z + 2026-03-03T19:17:56.064Z monthly 0.8 @@ -50330,7 +50519,7 @@ https://www.rfc1437.de/2005/07/20/apache-modauthtkt/ - 2026-03-03T19:18:00.000Z + 2026-03-03T19:18:00.346Z monthly 0.8 @@ -50339,7 +50528,7 @@ https://www.rfc1437.de/2005/07/20/doohan-alias-scotty-gestorben/ - 2026-03-03T19:18:04.000Z + 2026-03-03T19:18:04.651Z monthly 0.8 @@ -50348,7 +50537,7 @@ https://www.rfc1437.de/2005/07/20/wie-die-bwler-unter-bertelsmnn-n-d-bldngspltk-nzhn/ - 2026-03-03T19:18:09.000Z + 2026-03-03T19:18:09.999Z monthly 0.8 @@ -50357,7 +50546,7 @@ https://www.rfc1437.de/2005/07/18/eu-haftbefehl-verfassungswidrig/ - 2026-03-03T19:18:15.000Z + 2026-03-03T19:18:15.540Z monthly 0.8 @@ -50366,7 +50555,7 @@ https://www.rfc1437.de/2005/07/18/jython-22-in-der-mache/ - 2026-03-03T19:18:20.000Z + 2026-03-03T19:18:20.767Z monthly 0.8 @@ -50375,7 +50564,7 @@ https://www.rfc1437.de/2005/07/17/erste-django-tutorials-online/ - 2026-03-03T19:18:25.000Z + 2026-03-03T19:18:25.602Z monthly 0.8 @@ -50384,7 +50573,7 @@ https://www.rfc1437.de/2005/07/16/erster-etappensieg-fur-gerolsteiner-in-der-tour/ - 2026-03-03T19:18:30.000Z + 2026-03-03T19:18:30.440Z monthly 0.8 @@ -50393,7 +50582,7 @@ https://www.rfc1437.de/2005/07/16/foundations-of-python-network-programming/ - 2026-03-03T19:18:35.000Z + 2026-03-03T19:18:35.244Z monthly 0.8 @@ -50402,7 +50591,7 @@ https://www.rfc1437.de/2005/07/16/hsshellscript/ - 2026-03-03T19:18:39.000Z + 2026-03-03T19:18:39.666Z monthly 0.8 @@ -50411,7 +50600,7 @@ https://www.rfc1437.de/2005/07/16/mod-haskell/ - 2026-03-03T19:18:43.000Z + 2026-03-03T19:18:43.543Z monthly 0.8 @@ -50420,7 +50609,7 @@ https://www.rfc1437.de/2005/07/16/perlpad/ - 2026-03-03T19:18:47.000Z + 2026-03-03T19:18:47.447Z monthly 0.8 @@ -50429,7 +50618,7 @@ https://www.rfc1437.de/2005/07/16/regular-expressions-in-haskell/ - 2026-03-03T19:18:50.000Z + 2026-03-03T19:18:50.860Z monthly 0.8 @@ -50438,7 +50627,7 @@ https://www.rfc1437.de/2005/07/16/web-authoring-system-haskell-wash-2/ - 2026-03-03T19:18:55.000Z + 2026-03-03T19:18:55.124Z monthly 0.8 @@ -50447,7 +50636,7 @@ https://www.rfc1437.de/2005/07/15/django-neues-webframework-fur-python/ - 2026-03-03T19:18:59.000Z + 2026-03-03T19:18:59.932Z monthly 0.8 @@ -50456,7 +50645,7 @@ https://www.rfc1437.de/2005/07/15/sco-stolpert-uber-die-eigenen-fusse/ - 2026-03-03T19:19:05.000Z + 2026-03-03T19:19:05.235Z monthly 0.8 @@ -50465,7 +50654,7 @@ https://www.rfc1437.de/2005/07/14/patentierte-menschen/ - 2026-03-03T19:19:10.000Z + 2026-03-03T19:19:10.598Z monthly 0.8 @@ -50474,7 +50663,7 @@ https://www.rfc1437.de/2005/07/13/integrationssicherung-oder-fremdenfeindlichkeit/ - 2026-03-03T19:19:15.000Z + 2026-03-03T19:19:15.936Z monthly 0.8 @@ -50483,7 +50672,7 @@ https://www.rfc1437.de/2005/07/13/robotstxt-als-angeblicher-kopierschutz/ - 2026-03-03T19:19:21.000Z + 2026-03-03T19:19:21.210Z monthly 0.8 @@ -50492,7 +50681,7 @@ https://www.rfc1437.de/2005/07/13/tour-trotz-armstrong-spannend/ - 2026-03-03T19:19:26.000Z + 2026-03-03T19:19:26.028Z monthly 0.8 @@ -50501,7 +50690,7 @@ https://www.rfc1437.de/2005/07/12/der-berg-ruft/ - 2026-03-03T19:19:29.000Z + 2026-03-03T19:19:29.858Z monthly 0.8 @@ -50510,7 +50699,7 @@ https://www.rfc1437.de/2005/07/12/kaum-mit-sauberen-mitteln/ - 2026-03-03T19:19:35.000Z + 2026-03-03T19:19:35.251Z monthly 0.8 @@ -50519,7 +50708,7 @@ https://www.rfc1437.de/2005/07/11/microsoft-liebt-spyware/ - 2026-03-03T19:19:40.000Z + 2026-03-03T19:19:40.295Z monthly 0.8 @@ -50528,7 +50717,7 @@ https://www.rfc1437.de/2005/07/11/strafverfolger-fordern-zugang-zu-whois-daten/ - 2026-03-03T19:19:46.000Z + 2026-03-03T19:19:46.865Z monthly 0.8 @@ -50537,7 +50726,7 @@ https://www.rfc1437.de/2005/07/10/finetunes/ - 2026-03-03T19:19:50.000Z + 2026-03-03T19:19:50.810Z monthly 0.8 @@ -50546,7 +50735,7 @@ https://www.rfc1437.de/2005/07/10/javascript-aktionen-uber-css-selektoren-zuordnen/ - 2026-03-03T19:19:55.000Z + 2026-03-03T19:19:55.899Z monthly 0.8 @@ -50555,7 +50744,7 @@ https://www.rfc1437.de/2005/07/10/jens-voigt-in-gelb/ - 2026-03-03T19:20:00.000Z + 2026-03-03T19:20:00.244Z monthly 0.8 @@ -50564,7 +50753,7 @@ https://www.rfc1437.de/2005/07/10/jutta/ - 2026-03-03T19:20:04.000Z + 2026-03-03T19:20:04.645Z monthly 0.8 @@ -50573,7 +50762,7 @@ https://www.rfc1437.de/2005/07/10/macminicolo-mac-mini-colocation/ - 2026-03-03T19:20:08.000Z + 2026-03-03T19:20:08.635Z monthly 0.8 @@ -50582,7 +50771,7 @@ https://www.rfc1437.de/2005/07/10/plash-the-principle-of-least-authority-shell/ - 2026-03-03T19:20:13.000Z + 2026-03-03T19:20:13.463Z monthly 0.8 @@ -50591,7 +50780,7 @@ https://www.rfc1437.de/2005/07/10/s5/ - 2026-03-03T19:20:18.000Z + 2026-03-03T19:20:18.326Z monthly 0.8 @@ -50600,7 +50789,7 @@ https://www.rfc1437.de/2005/07/10/schockwellenreiter/ - 2026-03-03T19:20:22.000Z + 2026-03-03T19:20:22.673Z monthly 0.8 @@ -50609,7 +50798,7 @@ https://www.rfc1437.de/2005/07/09/boot-knoppix-from-an-usb-memory-stick/ - 2026-03-03T19:20:27.000Z + 2026-03-03T19:20:27.076Z monthly 0.8 @@ -50618,7 +50807,7 @@ https://www.rfc1437.de/2005/07/09/die-katholische-kirche-und-die-evolution/ - 2026-03-03T19:20:33.000Z + 2026-03-03T19:20:33.334Z monthly 0.8 @@ -50627,7 +50816,7 @@ https://www.rfc1437.de/2005/07/09/keith-devens-weblog-i-hate-php-august-13-2003/ - 2026-03-03T19:20:37.000Z + 2026-03-03T19:20:37.711Z monthly 0.8 @@ -50636,7 +50825,7 @@ https://www.rfc1437.de/2005/07/09/kid/ - 2026-03-03T19:20:42.000Z + 2026-03-03T19:20:42.261Z monthly 0.8 @@ -50645,7 +50834,7 @@ https://www.rfc1437.de/2005/07/09/n3dst4-com-php-annoyances/ - 2026-03-03T19:20:46.000Z + 2026-03-03T19:20:46.140Z monthly 0.8 @@ -50654,7 +50843,7 @@ https://www.rfc1437.de/2005/07/09/spb-linux/ - 2026-03-03T19:20:50.000Z + 2026-03-03T19:20:50.488Z monthly 0.8 @@ -50663,7 +50852,7 @@ https://www.rfc1437.de/2005/07/09/spyce/ - 2026-03-03T19:20:54.000Z + 2026-03-03T19:20:54.823Z monthly 0.8 @@ -50672,7 +50861,7 @@ https://www.rfc1437.de/2005/07/09/spyced-why-php-sucks/ - 2026-03-03T19:20:58.000Z + 2026-03-03T19:20:58.973Z monthly 0.8 @@ -50681,7 +50870,7 @@ https://www.rfc1437.de/2005/07/09/why-php-sucks/ - 2026-03-03T19:21:02.000Z + 2026-03-03T19:21:02.692Z monthly 0.8 @@ -50690,7 +50879,7 @@ https://www.rfc1437.de/2005/07/08/deutschsprachigen-haskell-kurs/ - 2026-03-03T19:21:07.000Z + 2026-03-03T19:21:07.266Z monthly 0.8 @@ -50699,7 +50888,7 @@ https://www.rfc1437.de/2005/07/08/grossere-haskell-sourcen/ - 2026-03-03T19:21:12.000Z + 2026-03-03T19:21:12.729Z monthly 0.8 @@ -50708,7 +50897,7 @@ https://www.rfc1437.de/2005/07/08/helium-haskell-lehr-system/ - 2026-03-03T19:21:17.000Z + 2026-03-03T19:21:17.601Z monthly 0.8 @@ -50717,7 +50906,7 @@ https://www.rfc1437.de/2005/07/08/manchmal-treibt-mich-darwinports-zur-verzweiflung/ - 2026-03-03T19:21:22.000Z + 2026-03-03T19:21:22.488Z monthly 0.8 @@ -50726,7 +50915,7 @@ https://www.rfc1437.de/2005/07/08/monads/ - 2026-03-03T19:21:27.000Z + 2026-03-03T19:21:27.455Z monthly 0.8 @@ -50735,7 +50924,7 @@ https://www.rfc1437.de/2005/07/07/bombenserie-in-london/ - 2026-03-03T19:21:32.000Z + 2026-03-03T19:21:32.210Z monthly 0.8 @@ -50744,7 +50933,7 @@ https://www.rfc1437.de/2005/07/07/shiira-alternativer-webkit-browser/ - 2026-03-03T19:21:37.000Z + 2026-03-03T19:21:37.098Z monthly 0.8 @@ -50753,7 +50942,7 @@ https://www.rfc1437.de/2005/07/07/ssl-vpn-mit-browsersteuerung/ - 2026-03-03T19:21:42.000Z + 2026-03-03T19:21:42.188Z monthly 0.8 @@ -50762,7 +50951,7 @@ https://www.rfc1437.de/2005/07/06/hardened-php-project/ - 2026-03-03T19:21:46.000Z + 2026-03-03T19:21:46.490Z monthly 0.8 @@ -50771,7 +50960,7 @@ https://www.rfc1437.de/2005/07/06/musikindustrie-will-allofmp3com-tabuisieren/ - 2026-03-03T19:21:51.000Z + 2026-03-03T19:21:51.787Z monthly 0.8 @@ -50780,7 +50969,7 @@ https://www.rfc1437.de/2005/07/06/softwarepatente-erstmal-aufgehalten/ - 2026-03-03T19:21:56.000Z + 2026-03-03T19:21:56.661Z monthly 0.8 @@ -50789,7 +50978,7 @@ https://www.rfc1437.de/2005/07/06/sozialabzocke-verscharft/ - 2026-03-03T19:22:02.000Z + 2026-03-03T19:22:02.344Z monthly 0.8 @@ -50798,7 +50987,7 @@ https://www.rfc1437.de/2005/07/05/mexikos-besiedlung-alter-als-bisher-angenommen/ - 2026-03-03T19:22:07.000Z + 2026-03-03T19:22:07.353Z monthly 0.8 @@ -50807,7 +50996,7 @@ https://www.rfc1437.de/2005/07/05/php-serialize-fur-python/ - 2026-03-03T19:22:13.000Z + 2026-03-03T19:22:13.220Z monthly 0.8 @@ -50816,7 +51005,7 @@ https://www.rfc1437.de/2005/07/05/quengelkoppe-und-open-source/ - 2026-03-03T19:22:18.000Z + 2026-03-03T19:22:18.908Z monthly 0.8 @@ -50825,7 +51014,7 @@ https://www.rfc1437.de/2005/07/05/sodann-will-in-den-bundestag/ - 2026-03-03T19:22:23.000Z + 2026-03-03T19:22:23.779Z monthly 0.8 @@ -50834,7 +51023,7 @@ https://www.rfc1437.de/2005/07/05/softwarepatent-richtlinie-vor-dem-aus/ - 2026-03-03T19:22:28.000Z + 2026-03-03T19:22:28.667Z monthly 0.8 @@ -50843,7 +51032,7 @@ https://www.rfc1437.de/2005/07/05/verstrickungen-des-marzhasen/ - 2026-03-03T19:22:34.000Z + 2026-03-03T19:22:34.056Z monthly 0.8 @@ -50852,7 +51041,7 @@ https://www.rfc1437.de/2005/07/04/treffer-versenkt/ - 2026-03-03T19:22:37.000Z + 2026-03-03T19:22:37.854Z monthly 0.8 @@ -50861,7 +51050,7 @@ https://www.rfc1437.de/2005/07/03/every-smile-you-fake/ - 2026-03-03T19:22:41.000Z + 2026-03-03T19:22:41.578Z monthly 0.8 @@ -50870,7 +51059,7 @@ https://www.rfc1437.de/2005/07/03/objekte-und-funktionen-mit-javascript/ - 2026-03-03T19:22:46.000Z + 2026-03-03T19:22:46.495Z monthly 0.8 @@ -50879,7 +51068,7 @@ https://www.rfc1437.de/2005/07/03/open-source-dummschwatzer/ - 2026-03-03T19:22:51.000Z + 2026-03-03T19:22:51.748Z monthly 0.8 @@ -50888,7 +51077,7 @@ https://www.rfc1437.de/2005/07/03/shit-hits-fan/ - 2026-03-03T19:22:56.000Z + 2026-03-03T19:22:56.931Z monthly 0.8 @@ -50897,7 +51086,7 @@ https://www.rfc1437.de/2005/07/03/t-mobile-ist-damlich/ - 2026-03-03T19:23:01.000Z + 2026-03-03T19:23:01.456Z monthly 0.8 @@ -50906,7 +51095,7 @@ https://www.rfc1437.de/2005/07/03/weitere-demontage-des-rechtes-auf-bildung/ - 2026-03-03T19:23:06.000Z + 2026-03-03T19:23:06.681Z monthly 0.8 @@ -50915,7 +51104,7 @@ https://www.rfc1437.de/2005/07/01/auch-so-ein-stuck-aus-dem-tollhaus/ - 2026-03-03T19:23:11.000Z + 2026-03-03T19:23:11.640Z monthly 0.8 @@ -50924,7 +51113,7 @@ https://www.rfc1437.de/2005/07/01/gema-im-grossenwahn/ - 2026-03-03T19:23:16.000Z + 2026-03-03T19:23:16.904Z monthly 0.8 @@ -50933,7 +51122,7 @@ https://www.rfc1437.de/2005/07/01/kais-horrortools-flashback/ - 2026-03-03T19:23:22.000Z + 2026-03-03T19:23:22.054Z monthly 0.8 @@ -50942,7 +51131,7 @@ https://www.rfc1437.de/2005/07/01/nimm-das-otto/ - 2026-03-03T19:23:27.000Z + 2026-03-03T19:23:27.941Z monthly 0.8 @@ -50951,7 +51140,7 @@ https://www.rfc1437.de/2005/07/01/zum-heutigen-scharadenspiel/ - 2026-03-03T19:23:33.000Z + 2026-03-03T19:23:33.368Z monthly 0.8 @@ -50960,7 +51149,7 @@ https://www.rfc1437.de/2005/06/30/die-herberge-zur-verlorenen-freiheit/ - 2026-03-03T19:23:38.000Z + 2026-03-03T19:23:38.915Z monthly 0.8 @@ -50969,7 +51158,7 @@ https://www.rfc1437.de/2005/06/30/dnsch-rgrng-fr-grvrnd-ndrngn-n-dr-sftwrptnt-rchtln/ - 2026-03-03T19:23:44.000Z + 2026-03-03T19:23:44.408Z monthly 0.8 @@ -50978,7 +51167,7 @@ https://www.rfc1437.de/2005/06/30/heuschrecken-am-wasserhahn/ - 2026-03-03T19:23:49.000Z + 2026-03-03T19:23:49.773Z monthly 0.8 @@ -50987,7 +51176,7 @@ https://www.rfc1437.de/2005/06/30/microsoft-lernts-nie/ - 2026-03-03T19:23:55.000Z + 2026-03-03T19:23:55.209Z monthly 0.8 @@ -50996,7 +51185,7 @@ https://www.rfc1437.de/2005/06/30/pass-chips-und-deren-moglicher-missbrauch/ - 2026-03-03T19:24:01.000Z + 2026-03-03T19:24:01.271Z monthly 0.8 @@ -51005,7 +51194,7 @@ https://www.rfc1437.de/2005/06/30/wenn-webdesigner-ein-schimpfword-ist/ - 2026-03-03T19:24:07.000Z + 2026-03-03T19:24:07.810Z monthly 0.8 @@ -51014,7 +51203,7 @@ https://www.rfc1437.de/2005/06/29/banalpatent-mal-wieder/ - 2026-03-03T19:24:12.000Z + 2026-03-03T19:24:12.848Z monthly 0.8 @@ -51023,7 +51212,7 @@ https://www.rfc1437.de/2005/06/29/immer-noch-komische-finder-geschichten/ - 2026-03-03T19:24:18.000Z + 2026-03-03T19:24:18.010Z monthly 0.8 @@ -51032,7 +51221,7 @@ https://www.rfc1437.de/2005/06/29/schily-halt-datenschutz-fur-angstmacherei/ - 2026-03-03T19:24:23.000Z + 2026-03-03T19:24:23.887Z monthly 0.8 @@ -51041,7 +51230,7 @@ https://www.rfc1437.de/2005/06/29/wer-mal-wieder-lachen-will/ - 2026-03-03T19:24:29.000Z + 2026-03-03T19:24:29.351Z monthly 0.8 @@ -51050,7 +51239,7 @@ https://www.rfc1437.de/2005/06/29/wordpress-1513/ - 2026-03-03T19:24:33.000Z + 2026-03-03T19:24:33.338Z monthly 0.8 @@ -51059,7 +51248,7 @@ https://www.rfc1437.de/2005/06/28/amerikaner-und-logik/ - 2026-03-03T19:24:38.000Z + 2026-03-03T19:24:38.149Z monthly 0.8 @@ -51068,7 +51257,7 @@ https://www.rfc1437.de/2005/06/28/itunes-podcasting-nicht-mit-alten-ipods/ - 2026-03-03T19:24:43.000Z + 2026-03-03T19:24:43.539Z monthly 0.8 @@ -51077,7 +51266,7 @@ https://www.rfc1437.de/2005/06/28/pfahl-ist-gestandig/ - 2026-03-03T19:24:47.000Z + 2026-03-03T19:24:47.999Z monthly 0.8 @@ -51086,7 +51275,7 @@ https://www.rfc1437.de/2005/06/28/strucki-hat-wohl-doch-schaden-vom-schlaganfall/ - 2026-03-03T19:24:53.000Z + 2026-03-03T19:24:53.957Z monthly 0.8 @@ -51095,7 +51284,7 @@ https://www.rfc1437.de/2005/06/28/unternehmer-gegen-softwarepatente/ - 2026-03-03T19:24:59.000Z + 2026-03-03T19:24:59.202Z monthly 0.8 @@ -51104,7 +51293,7 @@ https://www.rfc1437.de/2005/06/28/vcxmlrpc/ - 2026-03-03T19:25:04.000Z + 2026-03-03T19:25:04.048Z monthly 0.8 @@ -51113,7 +51302,7 @@ https://www.rfc1437.de/2005/06/27/beruhigende-prioritaten/ - 2026-03-03T19:25:10.000Z + 2026-03-03T19:25:10.334Z monthly 0.8 @@ -51122,7 +51311,7 @@ https://www.rfc1437.de/2005/06/27/kulturloser-landtag/ - 2026-03-03T19:25:15.000Z + 2026-03-03T19:25:15.941Z monthly 0.8 @@ -51131,7 +51320,7 @@ https://www.rfc1437.de/2005/06/27/nw-scntst-spc-brkng-nws-hbbl-sps-lrd-f-th-stllr-rn/ - 2026-03-07T21:17:04.000Z + 2026-03-07T21:17:04.950Z monthly 0.8 @@ -51140,7 +51329,7 @@ https://www.rfc1437.de/2005/06/27/seltsame-gerichtsentscheidungen-sind-international/ - 2026-03-03T19:25:26.000Z + 2026-03-03T19:25:26.792Z monthly 0.8 @@ -51149,7 +51338,7 @@ https://www.rfc1437.de/2005/06/26/pep-342-coroutines-via-enhanced-generators/ - 2026-03-03T19:25:32.000Z + 2026-03-03T19:25:32.268Z monthly 0.8 @@ -51158,7 +51347,7 @@ https://www.rfc1437.de/2005/06/26/satellitenfoto-von-munster/ - 2026-03-03T19:25:38.000Z + 2026-03-03T19:25:38.221Z monthly 0.8 @@ -51167,7 +51356,7 @@ https://www.rfc1437.de/2005/06/26/scatman-eddy-als-aussenbeppel/ - 2026-03-03T19:25:42.000Z + 2026-03-03T19:25:42.275Z monthly 0.8 @@ -51176,7 +51365,7 @@ https://www.rfc1437.de/2005/06/25/da-geht-er-hin-der-datenschutz/ - 2026-03-03T19:25:48.000Z + 2026-03-03T19:25:48.278Z monthly 0.8 @@ -51185,7 +51374,7 @@ https://www.rfc1437.de/2005/06/25/john-cleese-speaking/ - 2026-03-03T19:25:53.000Z + 2026-03-03T19:25:53.538Z monthly 0.8 @@ -51194,7 +51383,7 @@ https://www.rfc1437.de/2005/06/25/linuxtag-vorgestellt/ - 2026-03-03T19:25:57.000Z + 2026-03-03T19:25:57.426Z monthly 0.8 @@ -51203,7 +51392,7 @@ https://www.rfc1437.de/2005/06/25/livesearch-mit-wordpress-klappt/ - 2026-03-03T19:26:02.000Z + 2026-03-03T19:26:02.360Z monthly 0.8 @@ -51212,7 +51401,7 @@ https://www.rfc1437.de/2005/06/25/microsoft-und-rss/ - 2026-03-03T19:26:07.000Z + 2026-03-03T19:26:07.248Z monthly 0.8 @@ -51221,7 +51410,7 @@ https://www.rfc1437.de/2005/06/25/safari-und-der-rabenhorst/ - 2026-03-03T19:26:12.000Z + 2026-03-03T19:26:12.674Z monthly 0.8 @@ -51230,7 +51419,7 @@ https://www.rfc1437.de/2005/06/24/merkelmaulkorb/ - 2026-03-03T19:26:18.000Z + 2026-03-03T19:26:18.131Z monthly 0.8 @@ -51239,7 +51428,7 @@ https://www.rfc1437.de/2005/06/24/umweltschutzer-kritisieren-walfangkommission/ - 2026-03-03T19:26:23.000Z + 2026-03-03T19:26:23.660Z monthly 0.8 @@ -51248,7 +51437,7 @@ https://www.rfc1437.de/2005/06/24/webobjects-53-und-linux/ - 2026-03-03T19:26:27.000Z + 2026-03-03T19:26:27.995Z monthly 0.8 @@ -51257,7 +51446,7 @@ https://www.rfc1437.de/2005/06/23/cardsystems-exposes-40-million-identities/ - 2026-03-03T19:26:32.000Z + 2026-03-03T19:26:32.932Z monthly 0.8 @@ -51266,7 +51455,7 @@ https://www.rfc1437.de/2005/06/23/frauen-sind-in-der-us-it-branche-weiterhin/ - 2026-03-03T19:26:37.000Z + 2026-03-03T19:26:37.240Z monthly 0.8 @@ -51275,7 +51464,7 @@ https://www.rfc1437.de/2005/06/23/microsofts-allmachtsphantasien/ - 2026-03-03T19:26:42.000Z + 2026-03-03T19:26:42.789Z monthly 0.8 @@ -51284,7 +51473,7 @@ https://www.rfc1437.de/2005/06/23/oxlook-open-xchange-verbindet-sich-mit-outlook/ - 2026-03-03T19:26:46.000Z + 2026-03-03T19:26:46.687Z monthly 0.8 @@ -51293,7 +51482,7 @@ https://www.rfc1437.de/2005/06/23/suchmaschinen-haften-nicht-fur-gespeichert-thmbnls/ - 2026-03-03T19:26:52.000Z + 2026-03-03T19:26:52.057Z monthly 0.8 @@ -51302,7 +51491,7 @@ https://www.rfc1437.de/2005/06/23/swissbit-victorinox-retroalox-1gb/ - 2026-03-03T19:26:56.000Z + 2026-03-03T19:26:56.939Z monthly 0.8 @@ -51311,7 +51500,7 @@ https://www.rfc1437.de/2005/06/23/the-diaries-of-franz-kafka-1910-1923/ - 2026-03-03T19:27:01.000Z + 2026-03-03T19:27:01.342Z monthly 0.8 @@ -51320,7 +51509,7 @@ https://www.rfc1437.de/2005/06/23/the-hitch-hiker-s-guide-to-the-smalltalk-compiler/ - 2026-03-03T19:27:05.000Z + 2026-03-03T19:27:05.679Z monthly 0.8 @@ -51329,7 +51518,7 @@ https://www.rfc1437.de/2005/06/23/uber-moleskines/ - 2026-03-03T19:27:10.000Z + 2026-03-03T19:27:10.617Z monthly 0.8 @@ -51338,7 +51527,7 @@ https://www.rfc1437.de/2005/06/23/verlogene-heuchler/ - 2026-03-03T19:27:15.000Z + 2026-03-03T19:27:15.726Z monthly 0.8 @@ -51347,7 +51536,7 @@ https://www.rfc1437.de/2005/06/23/webspammer-mit-neuen-tricks/ - 2026-03-03T19:27:20.000Z + 2026-03-03T19:27:20.611Z monthly 0.8 @@ -51356,7 +51545,7 @@ https://www.rfc1437.de/2005/06/22/neoofficej-11-final-ist-raus/ - 2026-03-03T19:27:25.000Z + 2026-03-03T19:27:25.521Z monthly 0.8 @@ -51365,7 +51554,7 @@ https://www.rfc1437.de/2005/06/21/altfuhl-surfing/ - 2026-03-03T19:27:31.000Z + 2026-03-03T19:27:31.014Z monthly 0.8 @@ -51374,7 +51563,7 @@ https://www.rfc1437.de/2005/06/21/apple-sued-over-itunes-interface/ - 2026-03-03T19:27:35.000Z + 2026-03-03T19:27:35.916Z monthly 0.8 @@ -51383,7 +51572,7 @@ https://www.rfc1437.de/2005/06/21/der-horror-von-sony-drm/ - 2026-03-03T19:27:41.000Z + 2026-03-03T19:27:41.449Z monthly 0.8 @@ -51392,7 +51581,7 @@ https://www.rfc1437.de/2005/06/21/der-staat-sieht-alles/ - 2026-03-03T19:27:48.000Z + 2026-03-03T19:27:48.550Z monthly 0.8 @@ -51401,7 +51590,7 @@ https://www.rfc1437.de/2005/06/21/google-sitemap-generator-for-wordpress/ - 2026-03-03T19:27:53.000Z + 2026-03-03T19:27:53.987Z monthly 0.8 @@ -51410,7 +51599,7 @@ https://www.rfc1437.de/2005/06/20/delicious-mal-wiki-code-snippets/ - 2026-03-03T19:27:58.000Z + 2026-03-03T19:27:58.809Z monthly 0.8 @@ -51419,7 +51608,7 @@ https://www.rfc1437.de/2005/06/20/der-grundrechtereport-2005/ - 2026-03-03T19:28:04.000Z + 2026-03-03T19:28:04.193Z monthly 0.8 @@ -51428,7 +51617,7 @@ https://www.rfc1437.de/2005/06/20/eu-abgeordnete-kippt-bei-softwarepatenten/ - 2026-03-03T19:28:09.000Z + 2026-03-03T19:28:09.585Z monthly 0.8 @@ -51437,7 +51626,7 @@ https://www.rfc1437.de/2005/06/20/finn-und-buckelwale-sollen-wieder-gejagt-werden/ - 2026-03-03T19:28:15.000Z + 2026-03-03T19:28:15.200Z monthly 0.8 @@ -51446,7 +51635,7 @@ https://www.rfc1437.de/2005/06/20/staats-gmbh-fuer-steuersoftware-wird-aufgeloest/ - 2026-03-03T19:28:19.000Z + 2026-03-03T19:28:19.281Z monthly 0.8 @@ -51455,7 +51644,7 @@ https://www.rfc1437.de/2005/06/20/studiengebuhren-in-nrw/ - 2026-03-03T19:28:25.000Z + 2026-03-03T19:28:25.071Z monthly 0.8 @@ -51464,7 +51653,7 @@ https://www.rfc1437.de/2005/06/20/uuuuups/ - 2026-03-03T19:28:29.000Z + 2026-03-03T19:28:29.454Z monthly 0.8 @@ -51473,7 +51662,7 @@ https://www.rfc1437.de/2005/06/19/handwerk-will-krankheitstag-mt-rlb-vrrchnn-tgsschd/ - 2026-03-03T19:28:34.000Z + 2026-03-03T19:28:34.881Z monthly 0.8 @@ -51482,7 +51671,7 @@ https://www.rfc1437.de/2005/06/19/kassen-streit-um-verwendung-des-sonderbeitrags/ - 2026-03-03T19:28:40.000Z + 2026-03-03T19:28:40.355Z monthly 0.8 @@ -51491,7 +51680,7 @@ https://www.rfc1437.de/2005/06/19/softwarebeschreibung-von-metaowlde/ - 2026-03-03T19:28:45.000Z + 2026-03-03T19:28:45.433Z monthly 0.8 @@ -51500,7 +51689,7 @@ https://www.rfc1437.de/2005/06/18/ausgerechnet-nrw/ - 2026-03-03T19:28:50.000Z + 2026-03-03T19:28:50.800Z monthly 0.8 @@ -51509,7 +51698,7 @@ https://www.rfc1437.de/2005/06/18/mal-ne-frage-an-die-mac-spezis/ - 2026-03-03T19:28:55.000Z + 2026-03-03T19:28:55.748Z monthly 0.8 @@ -51518,7 +51707,7 @@ https://www.rfc1437.de/2005/06/18/uber-die-sicherheit-von-kreditkarten/ - 2026-03-03T19:29:00.000Z + 2026-03-03T19:29:00.629Z monthly 0.8 @@ -51527,7 +51716,7 @@ https://www.rfc1437.de/2005/06/18/veranderungen-bei-der-metaeule/ - 2026-03-03T19:29:06.000Z + 2026-03-03T19:29:06.116Z monthly 0.8 @@ -51536,7 +51725,7 @@ https://www.rfc1437.de/2005/06/18/wp-cache-2-und-php-accelerator/ - 2026-03-03T19:29:11.000Z + 2026-03-03T19:29:11.503Z monthly 0.8 @@ -51545,7 +51734,7 @@ https://www.rfc1437.de/2005/06/17/ego-surfing-2/ - 2026-03-03T19:29:16.000Z + 2026-03-03T19:29:16.117Z monthly 0.8 @@ -51554,7 +51743,7 @@ https://www.rfc1437.de/2005/06/17/foren-betreiber-durfen-demnachst-kenn-rlb-mhr-mchn/ - 2026-03-03T19:29:21.000Z + 2026-03-03T19:29:21.435Z monthly 0.8 @@ -51563,7 +51752,7 @@ https://www.rfc1437.de/2005/06/17/schily-kampft-immer-noch-mit-der-demokratie/ - 2026-03-03T19:29:26.000Z + 2026-03-03T19:29:26.528Z monthly 0.8 @@ -51572,7 +51761,7 @@ https://www.rfc1437.de/2005/06/17/sogenannte-experten/ - 2026-03-03T19:29:31.000Z + 2026-03-03T19:29:31.976Z monthly 0.8 @@ -51581,7 +51770,7 @@ https://www.rfc1437.de/2005/06/17/us-einreisebeamte-sind-demnachst-spanner/ - 2026-03-03T19:29:37.000Z + 2026-03-03T19:29:37.429Z monthly 0.8 @@ -51590,7 +51779,7 @@ https://www.rfc1437.de/2005/06/16/die-uberwachung-ausweiten-ist-das-ziel/ - 2026-03-03T19:29:43.000Z + 2026-03-03T19:29:43.452Z monthly 0.8 @@ -51599,7 +51788,7 @@ https://www.rfc1437.de/2005/06/16/mailapp-filter-mit-tastencodes-aufrufen/ - 2026-03-03T19:29:48.000Z + 2026-03-03T19:29:48.952Z monthly 0.8 @@ -51608,7 +51797,7 @@ https://www.rfc1437.de/2005/06/16/metaowl-ist-life/ - 2026-03-03T19:29:54.000Z + 2026-03-03T19:29:54.587Z monthly 0.8 @@ -51617,7 +51806,7 @@ https://www.rfc1437.de/2005/06/16/popularity-contest/ - 2026-03-03T19:29:59.000Z + 2026-03-03T19:29:59.421Z monthly 0.8 @@ -51626,7 +51815,7 @@ https://www.rfc1437.de/2005/06/16/vermutlich-bald-ein-platz-in-der-regierung-frei/ - 2026-03-03T19:30:03.000Z + 2026-03-03T19:30:03.930Z monthly 0.8 @@ -51635,7 +51824,7 @@ https://www.rfc1437.de/2005/06/16/zabel-nicht-zur-tour/ - 2026-03-03T19:30:08.000Z + 2026-03-03T19:30:08.573Z monthly 0.8 @@ -51644,7 +51833,7 @@ https://www.rfc1437.de/2005/06/15/auch-mal-ein-gutes-urteil-zu-verkunden/ - 2026-03-03T19:30:13.000Z + 2026-03-03T19:30:13.521Z monthly 0.8 @@ -51653,7 +51842,7 @@ https://www.rfc1437.de/2005/06/14/mittagspause-mit-makro/ - 2026-03-03T19:30:19.000Z + 2026-03-03T19:30:19.415Z monthly 0.8 @@ -51662,7 +51851,7 @@ https://www.rfc1437.de/2005/06/14/mittagspause-mit-makro-2/ - 2026-03-03T19:30:23.000Z + 2026-03-03T19:30:23.854Z monthly 0.8 @@ -51671,7 +51860,7 @@ https://www.rfc1437.de/2005/06/14/wieder-eine-gefarbte-studie-von-microsoft/ - 2026-03-03T19:30:28.000Z + 2026-03-03T19:30:28.795Z monthly 0.8 @@ -51680,7 +51869,7 @@ https://www.rfc1437.de/2005/06/13/aelteste-zivilisationsspuren-in-sachsen-gefunden/ - 2026-03-03T19:30:32.000Z + 2026-03-03T19:30:32.685Z monthly 0.8 @@ -51689,7 +51878,7 @@ https://www.rfc1437.de/2005/06/13/der-kampf-gegen-die-freie-meinung/ - 2026-03-03T19:30:38.000Z + 2026-03-03T19:30:38.095Z monthly 0.8 @@ -51698,7 +51887,7 @@ https://www.rfc1437.de/2005/06/13/rss-language-und-wordpress/ - 2026-03-03T19:30:43.000Z + 2026-03-03T19:30:43.114Z monthly 0.8 @@ -51707,7 +51896,7 @@ https://www.rfc1437.de/2005/06/13/triple-xxx/ - 2026-03-03T19:30:46.000Z + 2026-03-03T19:30:46.673Z monthly 0.8 @@ -51716,7 +51905,7 @@ https://www.rfc1437.de/2005/06/13/tunnelblick-gui-for-openvpn-on-the-mac/ - 2026-03-03T19:30:51.000Z + 2026-03-03T19:30:51.564Z monthly 0.8 @@ -51725,7 +51914,7 @@ https://www.rfc1437.de/2005/06/12/audio-timeshift-recorder-und-mehr/ - 2026-03-03T19:30:56.000Z + 2026-03-03T19:30:56.479Z monthly 0.8 @@ -51734,7 +51923,7 @@ https://www.rfc1437.de/2005/06/12/heute-in-blogland/ - 2026-03-03T19:31:01.000Z + 2026-03-03T19:31:01.568Z monthly 0.8 @@ -51743,7 +51932,7 @@ https://www.rfc1437.de/2005/06/12/owl-content/ - 2026-03-03T19:31:06.000Z + 2026-03-03T19:31:06.996Z monthly 0.8 @@ -51752,7 +51941,7 @@ https://www.rfc1437.de/2005/06/11/markenrecht-jetzt-auch-noch-auf-benutzernamen/ - 2026-03-03T19:31:11.000Z + 2026-03-03T19:31:11.432Z monthly 0.8 @@ -51761,7 +51950,7 @@ https://www.rfc1437.de/2005/06/10/canon-optiken/ - 2026-03-03T19:31:16.000Z + 2026-03-03T19:31:16.030Z monthly 0.8 @@ -51770,7 +51959,7 @@ https://www.rfc1437.de/2005/06/10/dem-ist-nichts-hinzuzufugen/ - 2026-03-03T19:31:20.000Z + 2026-03-03T19:31:20.897Z monthly 0.8 @@ -51779,7 +51968,7 @@ https://www.rfc1437.de/2005/06/10/schoner-wordpressen/ - 2026-03-03T19:31:26.000Z + 2026-03-03T19:31:26.378Z monthly 0.8 @@ -51788,7 +51977,7 @@ https://www.rfc1437.de/2005/06/10/schwrz-glb-brcht-whlvrsprchn-schn-vr-dr-rgrngsbldn/ - 2026-03-03T19:31:31.000Z + 2026-03-03T19:31:31.813Z monthly 0.8 @@ -51797,7 +51986,7 @@ https://www.rfc1437.de/2005/06/10/vermutlich-glauben-sie-sich-selber-sogar/ - 2026-03-03T19:31:36.000Z + 2026-03-03T19:31:36.780Z monthly 0.8 @@ -51806,7 +51995,7 @@ https://www.rfc1437.de/2005/06/09/an-dreistigkeit-kaum-noch-zu-uberbieten/ - 2026-03-03T19:31:41.000Z + 2026-03-03T19:31:41.337Z monthly 0.8 @@ -51815,7 +52004,7 @@ https://www.rfc1437.de/2005/06/09/bbc-radio-3-beethoven-experience/ - 2026-03-03T19:31:45.000Z + 2026-03-03T19:31:45.903Z monthly 0.8 @@ -51824,7 +52013,7 @@ https://www.rfc1437.de/2005/06/09/irgendwann-in-mexiko/ - 2026-03-03T19:31:49.000Z + 2026-03-03T19:31:49.372Z monthly 0.8 @@ -51833,7 +52022,7 @@ https://www.rfc1437.de/2005/06/09/kritik-an-kohler/ - 2026-03-10T07:29:24.000Z + 2026-03-10T07:29:24.255Z monthly 0.8 @@ -51842,7 +52031,7 @@ https://www.rfc1437.de/2005/06/09/vinokurow-in-form-fur-die-tour/ - 2026-03-03T19:42:42.000Z + 2026-03-03T19:42:42.500Z monthly 0.8 @@ -51851,7 +52040,7 @@ https://www.rfc1437.de/2005/06/09/zum-abschuss-freigegeben/ - 2026-03-03T19:42:46.000Z + 2026-03-03T19:42:46.189Z monthly 0.8 @@ -51860,7 +52049,7 @@ https://www.rfc1437.de/2005/06/08/auf-in-den-polizeistaat/ - 2026-03-03T19:42:50.000Z + 2026-03-03T19:42:50.249Z monthly 0.8 @@ -51869,7 +52058,7 @@ https://www.rfc1437.de/2005/06/08/enclosures-im-bilderblog/ - 2026-03-03T19:42:53.000Z + 2026-03-03T19:42:53.982Z monthly 0.8 @@ -51878,7 +52067,7 @@ https://www.rfc1437.de/2005/06/08/grosse-brucke-ausstellung-in-berlin/ - 2026-03-03T19:42:57.000Z + 2026-03-03T19:42:57.702Z monthly 0.8 @@ -51887,7 +52076,7 @@ https://www.rfc1437.de/2005/06/08/hula-girl-dashboard-music/ - 2026-03-03T19:43:00.000Z + 2026-03-03T19:43:00.444Z monthly 0.8 @@ -51896,7 +52085,7 @@ https://www.rfc1437.de/2005/06/08/icann-als-erfullungsgehilfe-fur-verisgn-mnplnsprch/ - 2026-03-03T19:43:04.000Z + 2026-03-03T19:43:04.177Z monthly 0.8 @@ -51905,7 +52094,7 @@ https://www.rfc1437.de/2005/06/08/vs-vertraulich-nfd-und-outlook/ - 2026-03-03T19:43:07.000Z + 2026-03-03T19:43:07.949Z monthly 0.8 @@ -51914,7 +52103,7 @@ https://www.rfc1437.de/2005/06/08/was-von-versprechungen-der-wirtschaft-zu-halten-st/ - 2026-03-03T19:43:11.000Z + 2026-03-03T19:43:11.781Z monthly 0.8 @@ -51923,7 +52112,7 @@ https://www.rfc1437.de/2005/06/07/clement-will-alg-ii-empfanger-scharfer-kontrollirn/ - 2026-03-03T19:43:16.000Z + 2026-03-03T19:43:16.166Z monthly 0.8 @@ -51932,7 +52121,7 @@ https://www.rfc1437.de/2005/06/07/podcasts-und-der-gouvernator/ - 2026-03-03T19:43:19.000Z + 2026-03-03T19:43:19.257Z monthly 0.8 @@ -51941,7 +52130,7 @@ https://www.rfc1437.de/2005/06/07/supreme-court-makes-supreme-blunder/ - 2026-03-03T19:43:22.000Z + 2026-03-03T19:43:22.715Z monthly 0.8 @@ -51950,7 +52139,7 @@ https://www.rfc1437.de/2005/06/07/systemupgrade-auf-simonbofhms/ - 2026-03-03T19:43:25.000Z + 2026-03-03T19:43:25.800Z monthly 0.8 @@ -51959,7 +52148,7 @@ https://www.rfc1437.de/2005/06/07/systemupgrade-simonbofhms-part-2/ - 2026-03-03T19:43:29.000Z + 2026-03-03T19:43:29.258Z monthly 0.8 @@ -51968,7 +52157,7 @@ https://www.rfc1437.de/2005/06/07/the-transporter/ - 2026-03-03T19:43:31.000Z + 2026-03-03T19:43:31.707Z monthly 0.8 @@ -51977,7 +52166,7 @@ https://www.rfc1437.de/2005/06/07/webkit-webcore-und-javascripcore-open-source/ - 2026-03-03T19:43:35.000Z + 2026-03-03T19:43:35.495Z monthly 0.8 @@ -51986,7 +52175,7 @@ https://www.rfc1437.de/2005/06/07/webobjects-bestandteil-von-xcode-21/ - 2026-03-03T19:43:39.000Z + 2026-03-03T19:43:39.231Z monthly 0.8 @@ -51995,7 +52184,7 @@ https://www.rfc1437.de/2005/06/06/debian-gnu-linux-3-1-released/ - 2026-03-03T19:43:42.000Z + 2026-03-03T19:43:42.012Z monthly 0.8 @@ -52004,7 +52193,7 @@ https://www.rfc1437.de/2005/06/06/mac-mit-intel/ - 2026-03-03T19:43:45.000Z + 2026-03-03T19:43:45.443Z monthly 0.8 @@ -52013,7 +52202,7 @@ https://www.rfc1437.de/2005/06/06/wie-uns-unsere-regierung-mal-wieder-belugt/ - 2026-03-03T19:43:48.000Z + 2026-03-03T19:43:48.951Z monthly 0.8 @@ -52022,7 +52211,7 @@ https://www.rfc1437.de/2005/06/05/emacs-on-the-metal/ - 2026-03-03T19:43:52.000Z + 2026-03-03T19:43:52.442Z monthly 0.8 @@ -52031,7 +52220,7 @@ https://www.rfc1437.de/2005/06/05/mailapp-unter-104-und-self-signed-certificates/ - 2026-03-03T19:43:55.000Z + 2026-03-03T19:43:55.947Z monthly 0.8 @@ -52040,7 +52229,7 @@ https://www.rfc1437.de/2005/06/05/verfassungsschutz-will-pds-weiter-beobachten/ - 2026-03-03T19:43:59.000Z + 2026-03-03T19:43:59.447Z monthly 0.8 @@ -52049,7 +52238,7 @@ https://www.rfc1437.de/2005/06/04/anacron-for-mac-os-v104-tiger/ - 2026-03-03T19:44:03.000Z + 2026-03-03T19:44:03.324Z monthly 0.8 @@ -52058,7 +52247,7 @@ https://www.rfc1437.de/2005/06/04/keine-anwaltsgebuehren-fuer-abmahnungen-bei/ - 2026-03-03T19:44:07.000Z + 2026-03-03T19:44:07.141Z monthly 0.8 @@ -52067,7 +52256,7 @@ https://www.rfc1437.de/2005/06/04/oesterreichische-gesundheitskarte-verletzt-den/ - 2026-03-03T19:44:10.000Z + 2026-03-03T19:44:10.304Z monthly 0.8 @@ -52076,7 +52265,7 @@ https://www.rfc1437.de/2005/06/04/superduper-and-filevault/ - 2026-03-03T19:44:14.000Z + 2026-03-03T19:44:14.223Z monthly 0.8 @@ -52085,7 +52274,7 @@ https://www.rfc1437.de/2005/06/04/wie-funktioniert-filevault/ - 2026-03-03T19:44:17.000Z + 2026-03-03T19:44:17.719Z monthly 0.8 @@ -52094,7 +52283,7 @@ https://www.rfc1437.de/2005/06/02/brummsel/ - 2026-03-03T19:44:20.000Z + 2026-03-03T19:44:20.598Z monthly 0.8 @@ -52103,7 +52292,7 @@ https://www.rfc1437.de/2005/06/02/crw-0925crw/ - 2026-03-03T19:44:23.000Z + 2026-03-03T19:44:23.436Z monthly 0.8 @@ -52112,7 +52301,7 @@ https://www.rfc1437.de/2005/06/02/pgp-corporation-stort-pgp-freeware-mirror/ - 2026-03-03T19:44:27.000Z + 2026-03-03T19:44:27.344Z monthly 0.8 @@ -52121,7 +52310,7 @@ https://www.rfc1437.de/2005/06/02/photon-iphoto-plugin/ - 2026-03-03T19:44:30.000Z + 2026-03-03T19:44:30.897Z monthly 0.8 @@ -52130,7 +52319,7 @@ https://www.rfc1437.de/2005/06/01/anwalt-als-serien-bankraeuber/ - 2026-03-03T19:44:34.000Z + 2026-03-03T19:44:34.101Z monthly 0.8 @@ -52139,7 +52328,7 @@ https://www.rfc1437.de/2005/06/01/neues-objektiv-fur-meine-canon/ - 2026-03-03T19:44:38.000Z + 2026-03-03T19:44:38.030Z monthly 0.8 @@ -52148,7 +52337,7 @@ https://www.rfc1437.de/2005/06/01/schockwellenreiter-2/ - 2026-03-03T19:44:41.000Z + 2026-03-03T19:44:41.288Z monthly 0.8 @@ -52157,7 +52346,7 @@ https://www.rfc1437.de/2005/05/31/experten-pladieren-fur-mehrwertsteuer-erhohung/ - 2026-03-03T19:44:45.000Z + 2026-03-03T19:44:45.332Z monthly 0.8 @@ -52166,7 +52355,7 @@ https://www.rfc1437.de/2005/05/31/fdp-will-offenlegung-von-managerbezuegen/ - 2026-03-03T19:44:48.000Z + 2026-03-03T19:44:48.613Z monthly 0.8 @@ -52175,7 +52364,7 @@ https://www.rfc1437.de/2005/05/31/im-namen-der-sicherheit-ergeht-folgender-unfug/ - 2026-03-03T19:44:52.000Z + 2026-03-03T19:44:52.111Z monthly 0.8 @@ -52184,7 +52373,7 @@ https://www.rfc1437.de/2005/05/31/kodak-confirm-slr-n-and-slr-c-discontinued/ - 2026-03-03T19:44:56.000Z + 2026-03-03T19:44:56.337Z monthly 0.8 @@ -52193,7 +52382,7 @@ https://www.rfc1437.de/2005/05/31/neuer-unsinniger-pseudo-kopierschutz/ - 2026-03-03T19:45:00.000Z + 2026-03-03T19:45:00.636Z monthly 0.8 @@ -52202,7 +52391,7 @@ https://www.rfc1437.de/2005/05/31/pc-systeme-auf-dem-mac/ - 2026-03-03T19:45:05.000Z + 2026-03-03T19:45:05.054Z monthly 0.8 @@ -52211,7 +52400,7 @@ https://www.rfc1437.de/2005/05/31/the-chicken-scheme-compiler/ - 2026-03-03T19:45:09.000Z + 2026-03-03T19:45:09.244Z monthly 0.8 @@ -52220,7 +52409,7 @@ https://www.rfc1437.de/2005/05/31/typisch-mac-user-ist/ - 2026-03-03T19:45:12.000Z + 2026-03-03T19:45:12.747Z monthly 0.8 @@ -52229,7 +52418,7 @@ https://www.rfc1437.de/2005/05/31/upgrade-auf-wordpress-1512/ - 2026-03-03T19:45:16.000Z + 2026-03-03T19:45:16.206Z monthly 0.8 @@ -52238,7 +52427,7 @@ https://www.rfc1437.de/2005/05/30/gleis-22-zum-besten-musikclub-deutschlands-gewahlt/ - 2026-03-03T19:45:21.000Z + 2026-03-03T19:45:21.329Z monthly 0.8 @@ -52247,7 +52436,7 @@ https://www.rfc1437.de/2005/05/30/licht-und-schatten/ - 2026-03-03T19:45:25.000Z + 2026-03-03T19:45:25.719Z monthly 0.8 @@ -52256,7 +52445,7 @@ https://www.rfc1437.de/2005/05/30/licht-und-schatten-2/ - 2026-03-03T19:45:29.000Z + 2026-03-03T19:45:29.557Z monthly 0.8 @@ -52265,7 +52454,7 @@ https://www.rfc1437.de/2005/05/30/schroder-und-fischer-bedauern-frankreichs-votum/ - 2026-03-03T19:45:34.000Z + 2026-03-03T19:45:34.508Z monthly 0.8 @@ -52274,7 +52463,7 @@ https://www.rfc1437.de/2005/05/29/aber-atomkraft-ist-ja-soooo-sicher/ - 2026-03-03T19:45:39.000Z + 2026-03-03T19:45:39.470Z monthly 0.8 @@ -52283,7 +52472,7 @@ https://www.rfc1437.de/2005/05/29/pagerank-ist-seit-ein-paar-tagen-nicht-mehr-vrfgbr/ - 2026-03-03T19:45:43.000Z + 2026-03-03T19:45:43.574Z monthly 0.8 @@ -52292,7 +52481,7 @@ https://www.rfc1437.de/2005/05/29/unsere-computer-gehoren-uns-noch/ - 2026-03-03T19:45:48.000Z + 2026-03-03T19:45:48.497Z monthly 0.8 @@ -52301,7 +52490,7 @@ https://www.rfc1437.de/2005/05/28/algol-68-genie-an-algol-68-interpreter/ - 2026-03-03T19:45:53.000Z + 2026-03-03T19:45:53.078Z monthly 0.8 @@ -52310,7 +52499,7 @@ https://www.rfc1437.de/2005/05/28/giro-in-verdammt-spannend/ - 2026-03-03T19:45:57.000Z + 2026-03-03T19:45:57.723Z monthly 0.8 @@ -52319,7 +52508,7 @@ https://www.rfc1437.de/2005/05/28/pdf-browser-plugin/ - 2026-03-03T19:46:01.000Z + 2026-03-03T19:46:01.390Z monthly 0.8 @@ -52328,7 +52517,7 @@ https://www.rfc1437.de/2005/05/28/pithhelmet/ - 2026-03-03T19:46:06.000Z + 2026-03-03T19:46:06.121Z monthly 0.8 @@ -52337,7 +52526,7 @@ https://www.rfc1437.de/2005/05/28/safari-webdevadditions/ - 2026-03-03T19:46:09.000Z + 2026-03-03T19:46:09.823Z monthly 0.8 @@ -52346,7 +52535,7 @@ https://www.rfc1437.de/2005/05/28/saft/ - 2026-03-03T19:46:13.000Z + 2026-03-03T19:46:13.599Z monthly 0.8 @@ -52355,7 +52544,7 @@ https://www.rfc1437.de/2005/05/28/scharping-kandidiert-nicht-mehr-fuer-bundestag/ - 2026-03-03T19:46:17.000Z + 2026-03-03T19:46:17.663Z monthly 0.8 @@ -52364,7 +52553,7 @@ https://www.rfc1437.de/2005/05/27/agfa-photo-gmbh-geht-in-insolvenz/ - 2026-03-03T19:46:21.000Z + 2026-03-03T19:46:21.330Z monthly 0.8 @@ -52373,7 +52562,7 @@ https://www.rfc1437.de/2005/05/27/basso-again/ - 2026-03-03T19:46:25.000Z + 2026-03-03T19:46:25.189Z monthly 0.8 @@ -52382,7 +52571,7 @@ https://www.rfc1437.de/2005/05/27/bitte-nicht-rubbeln/ - 2026-03-03T19:46:28.000Z + 2026-03-03T19:46:28.345Z monthly 0.8 @@ -52391,7 +52580,7 @@ https://www.rfc1437.de/2005/05/27/blechtrommeln-machen-laerm/ - 2026-03-03T19:46:32.000Z + 2026-03-03T19:46:32.062Z monthly 0.8 @@ -52400,7 +52589,7 @@ https://www.rfc1437.de/2005/05/27/digibux-digitale-bibliothek-setzt-auf-open-source/ - 2026-03-03T19:46:37.000Z + 2026-03-03T19:46:37.072Z monthly 0.8 @@ -52409,7 +52598,7 @@ https://www.rfc1437.de/2005/05/27/lispworks-personal-445/ - 2026-03-03T19:46:41.000Z + 2026-03-03T19:46:41.658Z monthly 0.8 @@ -52418,7 +52607,7 @@ https://www.rfc1437.de/2005/05/27/prozessorlufter-beim-powerbook-12/ - 2026-03-03T19:46:46.000Z + 2026-03-03T19:46:46.617Z monthly 0.8 @@ -52427,7 +52616,7 @@ https://www.rfc1437.de/2005/05/27/x-4-dashboard-quarter-life-crisis/ - 2026-03-03T19:46:51.000Z + 2026-03-03T19:46:51.187Z monthly 0.8 @@ -52436,7 +52625,7 @@ https://www.rfc1437.de/2005/05/26/apple-ist-auch-manchmal-strange/ - 2026-03-03T19:46:54.000Z + 2026-03-03T19:46:54.454Z monthly 0.8 @@ -52445,7 +52634,7 @@ https://www.rfc1437.de/2005/05/26/delicious-library/ - 2026-03-03T19:46:57.000Z + 2026-03-03T19:46:57.605Z monthly 0.8 @@ -52454,7 +52643,7 @@ https://www.rfc1437.de/2005/05/26/einstweilige-verfugung-gegen-googles-mail-dienst/ - 2026-03-03T19:47:02.000Z + 2026-03-03T19:47:02.533Z monthly 0.8 @@ -52463,7 +52652,7 @@ https://www.rfc1437.de/2005/05/26/kranke-software/ - 2026-03-03T19:47:06.000Z + 2026-03-03T19:47:06.992Z monthly 0.8 @@ -52472,7 +52661,7 @@ https://www.rfc1437.de/2005/05/26/lauter-kleine-otto-orwells/ - 2026-03-03T19:47:10.000Z + 2026-03-03T19:47:10.185Z monthly 0.8 @@ -52481,7 +52670,7 @@ https://www.rfc1437.de/2005/05/26/nidrschssch-rgrng-schwcht-nflss-ds-dtnschtzbftrgtn/ - 2026-03-03T19:47:14.000Z + 2026-03-03T19:47:14.287Z monthly 0.8 @@ -52490,7 +52679,7 @@ https://www.rfc1437.de/2005/05/26/noch-ein-tiger-verlust/ - 2026-03-03T19:47:18.000Z + 2026-03-03T19:47:18.242Z monthly 0.8 @@ -52499,7 +52688,7 @@ https://www.rfc1437.de/2005/05/26/noch-was-zu-spotlight/ - 2026-03-03T19:47:22.000Z + 2026-03-03T19:47:22.748Z monthly 0.8 @@ -52508,7 +52697,7 @@ https://www.rfc1437.de/2005/05/26/performance-vom-tiger/ - 2026-03-03T19:47:27.000Z + 2026-03-03T19:47:27.188Z monthly 0.8 @@ -52517,7 +52706,7 @@ https://www.rfc1437.de/2005/05/26/shoebox/ - 2026-03-03T19:47:31.000Z + 2026-03-03T19:47:31.178Z monthly 0.8 @@ -52526,7 +52715,7 @@ https://www.rfc1437.de/2005/05/26/spotlight-support-in-voodoopad/ - 2026-03-03T19:47:35.000Z + 2026-03-03T19:47:35.126Z monthly 0.8 @@ -52535,7 +52724,7 @@ https://www.rfc1437.de/2005/05/25/drm-ist-und-bleibt-scheisse/ - 2026-03-03T19:47:39.000Z + 2026-03-03T19:47:39.605Z monthly 0.8 @@ -52544,7 +52733,7 @@ https://www.rfc1437.de/2005/05/25/tbnl-a-toolkit-for-dynamic-lisp-websites/ - 2026-03-03T19:47:43.000Z + 2026-03-03T19:47:43.177Z monthly 0.8 @@ -52553,7 +52742,7 @@ https://www.rfc1437.de/2005/05/25/tigerattacke/ - 2026-03-03T19:47:47.000Z + 2026-03-03T19:47:47.237Z monthly 0.8 @@ -52562,7 +52751,7 @@ https://www.rfc1437.de/2005/05/25/voyager-erreicht-die-grenze-des-sonnensystems/ - 2026-03-03T19:47:50.000Z + 2026-03-03T19:47:50.724Z monthly 0.8 @@ -52571,7 +52760,7 @@ https://www.rfc1437.de/2005/05/24/bulgarian-twin-spammers/ - 2026-03-03T19:47:54.000Z + 2026-03-03T19:47:54.287Z monthly 0.8 @@ -52580,7 +52769,7 @@ https://www.rfc1437.de/2005/05/24/nofollow-revisited/ - 2026-03-03T19:47:58.000Z + 2026-03-03T19:47:58.236Z monthly 0.8 @@ -52589,7 +52778,7 @@ https://www.rfc1437.de/2005/05/23/und-die-abzocke-geht-weiter/ - 2026-03-03T19:48:02.000Z + 2026-03-03T19:48:02.663Z monthly 0.8 @@ -52598,7 +52787,7 @@ https://www.rfc1437.de/2005/05/23/us-justizministerium-stellt-landesweites/ - 2026-03-03T19:48:06.000Z + 2026-03-03T19:48:06.672Z monthly 0.8 @@ -52607,7 +52796,7 @@ https://www.rfc1437.de/2005/05/22/wahlen-in-nrw/ - 2026-03-03T19:48:11.000Z + 2026-03-03T19:48:11.106Z monthly 0.8 @@ -52616,7 +52805,7 @@ https://www.rfc1437.de/2005/05/21/kassenbeitrage-werden-wieder-nicht-sinken/ - 2026-03-03T19:48:16.000Z + 2026-03-03T19:48:16.085Z monthly 0.8 @@ -52625,7 +52814,7 @@ https://www.rfc1437.de/2005/05/20/blogbucher-schreiben-aber-rss-nicht-kapieren/ - 2026-03-03T19:48:20.000Z + 2026-03-03T19:48:20.898Z monthly 0.8 @@ -52634,7 +52823,7 @@ https://www.rfc1437.de/2005/05/20/dive-into-greasemonkey-2/ - 2026-03-03T19:48:25.000Z + 2026-03-03T19:48:25.499Z monthly 0.8 @@ -52643,7 +52832,7 @@ https://www.rfc1437.de/2005/05/20/framerd/ - 2026-03-03T19:48:30.000Z + 2026-03-03T19:48:30.349Z monthly 0.8 @@ -52652,7 +52841,7 @@ https://www.rfc1437.de/2005/05/20/tim-pritlove/ - 2026-03-03T19:48:34.000Z + 2026-03-03T19:48:34.932Z monthly 0.8 @@ -52661,7 +52850,7 @@ https://www.rfc1437.de/2005/05/19/jubel-aum-oder-so/ - 2026-03-03T19:48:39.000Z + 2026-03-03T19:48:39.846Z monthly 0.8 @@ -52670,7 +52859,7 @@ https://www.rfc1437.de/2005/05/19/paypal-verschickt-phishing-mails/ - 2026-03-03T19:48:44.000Z + 2026-03-03T19:48:44.907Z monthly 0.8 @@ -52679,7 +52868,7 @@ https://www.rfc1437.de/2005/05/18/ackermann-zur-kapitalismusdebatte/ - 2026-03-03T19:48:49.000Z + 2026-03-03T19:48:49.305Z monthly 0.8 @@ -52688,7 +52877,7 @@ https://www.rfc1437.de/2005/05/18/das-keyboard-ubergeeks-only/ - 2026-03-03T19:48:53.000Z + 2026-03-03T19:48:53.326Z monthly 0.8 @@ -52697,7 +52886,7 @@ https://www.rfc1437.de/2005/05/18/feuerwehr-zerschneidet-falsches-auto/ - 2026-03-03T19:48:57.000Z + 2026-03-03T19:48:57.731Z monthly 0.8 @@ -52706,7 +52895,7 @@ https://www.rfc1437.de/2005/05/17/camlserv/ - 2026-03-03T19:49:02.000Z + 2026-03-03T19:49:02.206Z monthly 0.8 @@ -52715,7 +52904,7 @@ https://www.rfc1437.de/2005/05/17/quartus-forth-2-0-0/ - 2026-03-03T19:49:06.000Z + 2026-03-03T19:49:06.225Z monthly 0.8 @@ -52724,7 +52913,7 @@ https://www.rfc1437.de/2005/05/17/yadis-yet-another-distributed-identity-system/ - 2026-03-03T19:49:09.000Z + 2026-03-03T19:49:09.835Z monthly 0.8 @@ -52733,7 +52922,7 @@ https://www.rfc1437.de/2005/05/16/ende-einer-kartoffel-sorte-bald-keine-linda-mehr/ - 2026-03-03T19:49:14.000Z + 2026-03-03T19:49:14.784Z monthly 0.8 @@ -52742,7 +52931,7 @@ https://www.rfc1437.de/2005/05/16/free-pascal-20-ist-raus/ - 2026-03-03T19:49:19.000Z + 2026-03-03T19:49:19.209Z monthly 0.8 @@ -52751,7 +52940,7 @@ https://www.rfc1437.de/2005/05/16/softwarepatente-in-realer-anwendung/ - 2026-03-03T19:49:24.000Z + 2026-03-03T19:49:24.090Z monthly 0.8 @@ -52760,7 +52949,7 @@ https://www.rfc1437.de/2005/05/15/apropos-hirnfurze/ - 2026-03-03T19:49:29.000Z + 2026-03-03T19:49:29.012Z monthly 0.8 @@ -52769,7 +52958,7 @@ https://www.rfc1437.de/2005/05/15/unwahrscheinlich-positiv/ - 2026-03-03T19:49:34.000Z + 2026-03-03T19:49:34.034Z monthly 0.8 @@ -52778,7 +52967,7 @@ https://www.rfc1437.de/2005/05/14/opencobol-a-cobol-compiler/ - 2026-03-03T19:49:37.000Z + 2026-03-03T19:49:37.691Z monthly 0.8 @@ -52787,7 +52976,7 @@ https://www.rfc1437.de/2005/05/14/schluesselklau-auf-hyperthreading-systemen/ - 2026-03-03T19:49:41.000Z + 2026-03-03T19:49:41.750Z monthly 0.8 @@ -52796,7 +52985,7 @@ https://www.rfc1437.de/2005/05/12/bill-gates-hirnfurze/ - 2026-03-03T19:49:45.000Z + 2026-03-03T19:49:45.828Z monthly 0.8 @@ -52805,7 +52994,7 @@ https://www.rfc1437.de/2005/05/12/ping-topicexchange-von-wordpress/ - 2026-03-03T19:49:50.000Z + 2026-03-03T19:49:50.299Z monthly 0.8 @@ -52814,7 +53003,7 @@ https://www.rfc1437.de/2005/05/12/xds-modula-2-oberon-2-compiler/ - 2026-03-03T19:49:55.000Z + 2026-03-03T19:49:55.356Z monthly 0.8 @@ -52823,7 +53012,7 @@ https://www.rfc1437.de/2005/05/10/polizeitstaat-hessen/ - 2026-03-03T19:50:00.000Z + 2026-03-03T19:50:00.525Z monthly 0.8 @@ -52832,7 +53021,7 @@ https://www.rfc1437.de/2005/05/09/probleme-mit-dem-newsfeed-bei-wordpress/ - 2026-03-03T19:50:04.000Z + 2026-03-03T19:50:04.994Z monthly 0.8 @@ -52841,7 +53030,7 @@ https://www.rfc1437.de/2005/05/08/back-in-town/ - 2026-03-03T19:50:09.000Z + 2026-03-03T19:50:09.085Z monthly 0.8 @@ -52850,7 +53039,7 @@ https://www.rfc1437.de/2005/05/08/bilder-aus-flensburg/ - 2026-03-03T19:50:14.000Z + 2026-03-03T19:50:14.092Z monthly 0.8 @@ -52859,7 +53048,7 @@ https://www.rfc1437.de/2005/05/08/schily-will-anti-terror-gesetze-unbegrenzt-vrlngrn/ - 2026-03-03T19:50:18.000Z + 2026-03-03T19:50:18.934Z monthly 0.8 @@ -52868,7 +53057,7 @@ https://www.rfc1437.de/2005/05/02/sparkline-php-graphing-library/ - 2026-03-03T19:50:22.000Z + 2026-03-03T19:50:22.601Z monthly 0.8 @@ -52877,7 +53066,7 @@ https://www.rfc1437.de/2005/05/02/urlaub/ - 2026-03-03T19:50:27.000Z + 2026-03-03T19:50:27.341Z monthly 0.8 @@ -52886,7 +53075,7 @@ https://www.rfc1437.de/2005/05/01/hitchhikers-guide-als-film/ - 2026-03-03T19:50:31.000Z + 2026-03-03T19:50:31.772Z monthly 0.8 @@ -52895,7 +53084,7 @@ https://www.rfc1437.de/2005/05/01/zabel-gewinnt-henninger-turm/ - 2026-03-03T19:50:35.000Z + 2026-03-03T19:50:35.558Z monthly 0.8 @@ -52904,7 +53093,7 @@ https://www.rfc1437.de/2005/04/30/ex-bush-ministerin-veneman-wird-unicef-chefin/ - 2026-03-03T19:50:40.000Z + 2026-03-03T19:50:40.625Z monthly 0.8 @@ -52913,7 +53102,7 @@ https://www.rfc1437.de/2005/04/30/rbl-betreiber-entweder-soziopathen-oder-inkompetnt/ - 2026-03-03T19:50:45.000Z + 2026-03-03T19:50:45.627Z monthly 0.8 @@ -52922,7 +53111,7 @@ https://www.rfc1437.de/2005/04/29/apple-nutzer-in-parlamenten-beklagen/ - 2026-03-03T19:50:49.000Z + 2026-03-03T19:50:49.770Z monthly 0.8 @@ -52931,7 +53120,7 @@ https://www.rfc1437.de/2005/04/29/firefox-erhaelt-svg-unterstuetzung/ - 2026-03-03T19:50:53.000Z + 2026-03-03T19:50:53.432Z monthly 0.8 @@ -52940,7 +53129,7 @@ https://www.rfc1437.de/2005/04/29/gentechnik-es-geht-nicht-nur-um-die-wurst/ - 2026-03-03T19:50:58.000Z + 2026-03-03T19:50:58.482Z monthly 0.8 @@ -52949,7 +53138,7 @@ https://www.rfc1437.de/2005/04/29/kde-entwickler-veraergert-ueber-apple/ - 2026-03-03T19:51:02.000Z + 2026-03-03T19:51:02.550Z monthly 0.8 @@ -52958,7 +53147,7 @@ https://www.rfc1437.de/2005/04/29/neues-leica-objektiv/ - 2026-03-03T19:51:07.000Z + 2026-03-03T19:51:07.665Z monthly 0.8 @@ -52967,7 +53156,7 @@ https://www.rfc1437.de/2005/04/27/da-vinci-crock/ - 2026-03-03T19:51:12.000Z + 2026-03-03T19:51:12.176Z monthly 0.8 @@ -52976,7 +53165,7 @@ https://www.rfc1437.de/2005/04/27/diplom-burokaufmann/ - 2026-03-03T19:51:16.000Z + 2026-03-03T19:51:16.024Z monthly 0.8 @@ -52985,7 +53174,7 @@ https://www.rfc1437.de/2005/04/27/rechts-von-der-union-ist-die-union/ - 2026-03-03T19:51:21.000Z + 2026-03-03T19:51:21.470Z monthly 0.8 @@ -52994,7 +53183,7 @@ https://www.rfc1437.de/2005/04/26/microsoft-alles-nur-geklaut/ - 2026-03-03T19:51:26.000Z + 2026-03-03T19:51:26.632Z monthly 0.8 @@ -53003,7 +53192,7 @@ https://www.rfc1437.de/2005/04/26/spielerei-mit-neuen-theme/ - 2026-03-03T19:51:31.000Z + 2026-03-03T19:51:31.137Z monthly 0.8 @@ -53012,7 +53201,7 @@ https://www.rfc1437.de/2005/04/25/degradiert/ - 2026-03-03T19:51:35.000Z + 2026-03-03T19:51:35.340Z monthly 0.8 @@ -53021,7 +53210,7 @@ https://www.rfc1437.de/2005/04/25/erster-trojaner-fuer-mac-os-x-gesichtet/ - 2026-03-03T19:51:40.000Z + 2026-03-03T19:51:40.068Z monthly 0.8 @@ -53030,7 +53219,7 @@ https://www.rfc1437.de/2005/04/25/openraw-digital-image-preservatin-thrgh-pn-dcmnttn/ - 2026-03-03T19:51:44.000Z + 2026-03-03T19:51:44.807Z monthly 0.8 @@ -53039,7 +53228,7 @@ https://www.rfc1437.de/2005/04/25/softwarepatente-industrielobbying-mit-gezinkten/ - 2026-03-03T19:51:48.000Z + 2026-03-03T19:51:48.930Z monthly 0.8 @@ -53048,7 +53237,7 @@ https://www.rfc1437.de/2005/04/24/aquamacs/ - 2026-03-03T19:51:53.000Z + 2026-03-03T19:51:53.497Z monthly 0.8 @@ -53057,7 +53246,7 @@ https://www.rfc1437.de/2005/04/24/emacs-file/ - 2026-03-03T19:51:58.000Z + 2026-03-03T19:51:58.085Z monthly 0.8 @@ -53066,7 +53255,7 @@ https://www.rfc1437.de/2005/04/24/postgresqlx/ - 2026-03-03T19:52:02.000Z + 2026-03-03T19:52:02.640Z monthly 0.8 @@ -53075,7 +53264,7 @@ https://www.rfc1437.de/2005/04/24/spe-osx/ - 2026-03-03T19:52:06.000Z + 2026-03-03T19:52:06.362Z monthly 0.8 @@ -53084,7 +53273,7 @@ https://www.rfc1437.de/2005/04/24/sproutliner/ - 2026-03-03T19:52:10.000Z + 2026-03-03T19:52:10.059Z monthly 0.8 @@ -53093,7 +53282,7 @@ https://www.rfc1437.de/2005/04/23/auch-das-ist-munster/ - 2026-03-03T19:52:14.000Z + 2026-03-03T19:52:14.211Z monthly 0.8 @@ -53102,7 +53291,7 @@ https://www.rfc1437.de/2005/04/23/borland-open-sources-jbuilder/ - 2026-03-03T19:52:18.000Z + 2026-03-03T19:52:18.366Z monthly 0.8 @@ -53111,7 +53300,7 @@ https://www.rfc1437.de/2005/04/23/nikon-respond-to-raw-wb-concerns/ - 2026-03-03T19:52:23.000Z + 2026-03-03T19:52:23.425Z monthly 0.8 @@ -53120,7 +53309,7 @@ https://www.rfc1437.de/2005/04/23/streifenkalender-fur-wordpress/ - 2026-03-03T19:52:28.000Z + 2026-03-03T19:52:28.046Z monthly 0.8 @@ -53129,7 +53318,7 @@ https://www.rfc1437.de/2005/04/23/virtuelle-hosts-mit-wordpress/ - 2026-03-03T19:52:32.000Z + 2026-03-03T19:52:32.587Z monthly 0.8 @@ -53138,7 +53327,7 @@ https://www.rfc1437.de/2005/04/23/wordpress-versioning-plugin/ - 2026-03-03T19:52:36.000Z + 2026-03-03T19:52:36.341Z monthly 0.8 @@ -53147,7 +53336,7 @@ https://www.rfc1437.de/2005/04/22/barroso-mehrfach-auf-yacht-zu-gast/ - 2026-03-03T19:52:41.000Z + 2026-03-03T19:52:41.445Z monthly 0.8 @@ -53156,7 +53345,7 @@ https://www.rfc1437.de/2005/04/22/nasa-is-said-to-loosen-risk-standards-for-shuttle/ - 2026-03-03T19:52:45.000Z + 2026-03-03T19:52:45.992Z monthly 0.8 @@ -53165,7 +53354,7 @@ https://www.rfc1437.de/2005/04/21/hinterhaeltige-ameisen/ - 2026-03-03T19:52:49.000Z + 2026-03-03T19:52:49.731Z monthly 0.8 @@ -53174,7 +53363,7 @@ https://www.rfc1437.de/2005/04/21/practical-common-lisp/ - 2026-03-03T19:52:53.000Z + 2026-03-03T19:52:53.781Z monthly 0.8 @@ -53183,7 +53372,7 @@ https://www.rfc1437.de/2005/04/20/schily-und-die-demokratie/ - 2026-03-03T19:52:59.000Z + 2026-03-03T19:52:59.007Z monthly 0.8 @@ -53192,7 +53381,7 @@ https://www.rfc1437.de/2005/04/19/contax-rip-or-resurrection/ - 2026-03-03T19:53:03.000Z + 2026-03-03T19:53:03.542Z monthly 0.8 @@ -53201,7 +53390,7 @@ https://www.rfc1437.de/2005/04/19/nikon-encrypts-d2x-and-d2hs-white-balance-data/ - 2026-03-03T19:53:08.000Z + 2026-03-03T19:53:08.683Z monthly 0.8 @@ -53210,7 +53399,7 @@ https://www.rfc1437.de/2005/04/19/parlament-in-kuwait-stimmt-frauenwahlrecht-zu/ - 2026-03-03T19:53:12.000Z + 2026-03-03T19:53:12.790Z monthly 0.8 @@ -53219,7 +53408,7 @@ https://www.rfc1437.de/2005/04/19/spam-unter-strafe-stellen/ - 2026-03-03T19:53:17.000Z + 2026-03-03T19:53:17.949Z monthly 0.8 @@ -53228,7 +53417,7 @@ https://www.rfc1437.de/2005/04/19/urteil-gegen-kanther/ - 2026-03-03T19:53:22.000Z + 2026-03-03T19:53:22.945Z monthly 0.8 @@ -53237,7 +53426,7 @@ https://www.rfc1437.de/2005/04/19/vorbereitende-frage/ - 2026-03-03T19:53:26.000Z + 2026-03-03T19:53:26.252Z monthly 0.8 @@ -53246,7 +53435,7 @@ https://www.rfc1437.de/2005/04/19/was-von-der-bzo-zu-erwarten-ist/ - 2026-03-03T19:53:31.000Z + 2026-03-03T19:53:31.225Z monthly 0.8 @@ -53255,7 +53444,7 @@ https://www.rfc1437.de/2005/04/18/adobe-uebernimmt-macromedia-fuer-3-4-milliarden/ - 2026-03-03T19:53:34.000Z + 2026-03-03T19:53:34.850Z monthly 0.8 @@ -53264,7 +53453,7 @@ https://www.rfc1437.de/2005/04/18/ging-mir-gerade-durch-den-kopf/ - 2026-03-03T19:53:38.000Z + 2026-03-03T19:53:38.584Z monthly 0.8 @@ -53273,7 +53462,7 @@ https://www.rfc1437.de/2005/04/18/typoc/ - 2026-03-03T19:53:42.000Z + 2026-03-03T19:53:42.247Z monthly 0.8 @@ -53282,7 +53471,7 @@ https://www.rfc1437.de/2005/04/17/bistro-intro/ - 2026-03-03T19:53:45.000Z + 2026-03-03T19:53:45.909Z monthly 0.8 @@ -53291,7 +53480,7 @@ https://www.rfc1437.de/2005/04/17/seashore-2/ - 2026-03-03T19:53:49.000Z + 2026-03-03T19:53:49.629Z monthly 0.8 @@ -53300,7 +53489,7 @@ https://www.rfc1437.de/2005/04/17/westerwelle-will-nicht-mehr-kanzler-werden/ - 2026-03-03T19:53:53.000Z + 2026-03-03T19:53:53.656Z monthly 0.8 @@ -53309,7 +53498,7 @@ https://www.rfc1437.de/2005/04/16/cool-it-linus-bruce-perens/ - 2026-03-03T19:53:58.000Z + 2026-03-03T19:53:58.309Z monthly 0.8 @@ -53318,7 +53507,7 @@ https://www.rfc1437.de/2005/04/16/grune-geben-widerstand-ggn-rktnbwhrsystm-f-tgsschd/ - 2026-03-03T19:54:03.000Z + 2026-03-03T19:54:03.344Z monthly 0.8 @@ -53327,7 +53516,7 @@ https://www.rfc1437.de/2005/04/16/servernamen/ - 2026-03-03T19:54:08.000Z + 2026-03-03T19:54:08.008Z monthly 0.8 @@ -53336,7 +53525,7 @@ https://www.rfc1437.de/2005/04/15/lafontaine-steht-offenbar-vor-austritt-aus-der-spd/ - 2026-03-03T19:54:12.000Z + 2026-03-03T19:54:12.548Z monthly 0.8 @@ -53345,7 +53534,7 @@ https://www.rfc1437.de/2005/04/15/widerstand-unter-kardinaelen-gegen-ratzinger/ - 2026-03-03T19:54:16.000Z + 2026-03-03T19:54:16.709Z monthly 0.8 @@ -53354,7 +53543,7 @@ https://www.rfc1437.de/2005/04/14/auch-hondos-b-proben-positiv/ - 2026-03-03T19:54:20.000Z + 2026-03-03T19:54:20.452Z monthly 0.8 @@ -53363,7 +53552,7 @@ https://www.rfc1437.de/2005/04/14/eroeffnung-des-hauses-der-photographie-in-hamburg/ - 2026-03-03T19:54:24.000Z + 2026-03-03T19:54:24.574Z monthly 0.8 @@ -53372,7 +53561,7 @@ https://www.rfc1437.de/2005/04/14/selbstgemachtes-system-als-bitkeeper-ersatz/ - 2026-03-03T19:54:29.000Z + 2026-03-03T19:54:29.653Z monthly 0.8 @@ -53381,7 +53570,7 @@ https://www.rfc1437.de/2005/04/14/visa-missbrauch-schon-im-kohl-kabinett-ein-thema/ - 2026-03-03T19:54:34.000Z + 2026-03-03T19:54:34.663Z monthly 0.8 @@ -53390,7 +53579,7 @@ https://www.rfc1437.de/2005/04/13/abteilung-offentlichkeitsarbeit-mlu-halle-wittnbrg/ - 2026-03-03T19:54:39.000Z + 2026-03-03T19:54:39.883Z monthly 0.8 @@ -53399,7 +53588,7 @@ https://www.rfc1437.de/2005/04/13/achja-der-wahlkampf-hat-angefangen/ - 2026-03-03T19:54:43.000Z + 2026-03-03T19:54:43.610Z monthly 0.8 @@ -53408,7 +53597,7 @@ https://www.rfc1437.de/2005/04/13/es-gibt-so-tage/ - 2026-03-03T19:54:47.000Z + 2026-03-03T19:54:47.458Z monthly 0.8 @@ -53417,7 +53606,7 @@ https://www.rfc1437.de/2005/04/13/nur-so-als-hinweis/ - 2026-03-03T19:54:52.000Z + 2026-03-03T19:54:52.030Z monthly 0.8 @@ -53426,7 +53615,7 @@ https://www.rfc1437.de/2005/04/12/contax-brand-comes-to-an-end/ - 2026-03-03T19:54:57.000Z + 2026-03-03T19:54:57.146Z monthly 0.8 @@ -53435,7 +53624,7 @@ https://www.rfc1437.de/2005/04/12/dvddisaster/ - 2026-03-03T19:55:01.000Z + 2026-03-03T19:55:01.271Z monthly 0.8 @@ -53444,7 +53633,7 @@ https://www.rfc1437.de/2005/04/12/geeignet-ab-6-jahre/ - 2026-03-03T19:55:06.000Z + 2026-03-03T19:55:06.351Z monthly 0.8 @@ -53453,7 +53642,7 @@ https://www.rfc1437.de/2005/04/12/postgresql-802-released-with-patent-fix/ - 2026-03-03T19:55:12.000Z + 2026-03-03T19:55:12.805Z monthly 0.8 @@ -53462,7 +53651,7 @@ https://www.rfc1437.de/2005/04/11/dauerthema-sorbs/ - 2026-03-03T19:55:18.000Z + 2026-03-03T19:55:18.673Z monthly 0.8 @@ -53471,7 +53660,7 @@ https://www.rfc1437.de/2005/04/11/ie7/ - 2026-03-03T19:55:23.000Z + 2026-03-03T19:55:23.165Z monthly 0.8 @@ -53480,7 +53669,7 @@ https://www.rfc1437.de/2005/04/11/netzbuch/ - 2026-03-03T19:55:27.000Z + 2026-03-03T19:55:27.565Z monthly 0.8 @@ -53489,7 +53678,7 @@ https://www.rfc1437.de/2005/04/11/simulation-von-before-mit-content-in-ie6/ - 2026-03-03T19:55:33.000Z + 2026-03-03T19:55:33.074Z monthly 0.8 @@ -53498,7 +53687,7 @@ https://www.rfc1437.de/2005/04/10/delicious-days/ - 2026-03-03T19:55:38.000Z + 2026-03-03T19:55:38.647Z monthly 0.8 @@ -53507,7 +53696,7 @@ https://www.rfc1437.de/2005/04/10/lickr-flickr-without-the-flash/ - 2026-03-03T19:55:46.000Z + 2026-03-03T19:55:46.197Z monthly 0.8 @@ -53516,7 +53705,7 @@ https://www.rfc1437.de/2005/04/10/meine-firefox-erweiterungen/ - 2026-03-03T19:55:53.000Z + 2026-03-03T19:55:53.776Z monthly 0.8 @@ -53525,7 +53714,7 @@ https://www.rfc1437.de/2005/04/10/multimap-nettes-spielzeug/ - 2026-03-03T19:55:59.000Z + 2026-03-03T19:55:59.862Z monthly 0.8 @@ -53534,7 +53723,7 @@ https://www.rfc1437.de/2005/04/10/sisc-second-interpreter-of-scheme-code/ - 2026-03-03T19:56:04.000Z + 2026-03-03T19:56:04.715Z monthly 0.8 @@ -53543,7 +53732,7 @@ https://www.rfc1437.de/2005/04/10/studs-mvc-framework/ - 2026-03-03T19:56:09.000Z + 2026-03-03T19:56:09.469Z monthly 0.8 @@ -53552,7 +53741,7 @@ https://www.rfc1437.de/2005/04/10/tags-aus-terms/ - 2026-03-03T19:56:14.000Z + 2026-03-03T19:56:14.474Z monthly 0.8 @@ -53561,7 +53750,7 @@ https://www.rfc1437.de/2005/04/09/aus-fuer-berliner-symphoniker/ - 2026-03-03T19:56:19.000Z + 2026-03-03T19:56:19.363Z monthly 0.8 @@ -53570,7 +53759,7 @@ https://www.rfc1437.de/2005/04/09/resizeable-textarea/ - 2026-03-03T19:56:24.000Z + 2026-03-03T19:56:24.478Z monthly 0.8 @@ -53579,7 +53768,7 @@ https://www.rfc1437.de/2005/04/09/slr-objektive-an-der-leica-m-benutzen/ - 2026-03-03T19:56:29.000Z + 2026-03-03T19:56:29.842Z monthly 0.8 @@ -53588,7 +53777,7 @@ https://www.rfc1437.de/2005/04/09/xfn-graph/ - 2026-03-03T19:56:33.000Z + 2026-03-03T19:56:33.633Z monthly 0.8 @@ -53597,7 +53786,7 @@ https://www.rfc1437.de/2005/04/08/schily-will-sprayer-mit-hubschraubern-verfolgen/ - 2026-03-03T19:56:38.000Z + 2026-03-03T19:56:38.009Z monthly 0.8 @@ -53606,7 +53795,7 @@ https://www.rfc1437.de/2005/04/08/via-legt-epia-treiber-offen/ - 2026-03-03T19:56:42.000Z + 2026-03-03T19:56:42.478Z monthly 0.8 @@ -53615,7 +53804,7 @@ https://www.rfc1437.de/2005/04/07/datenschutzer-annymtt-m-ntz-n-gstzlch-vrbrfts-rcht/ - 2026-03-03T19:56:47.000Z + 2026-03-03T19:56:47.357Z monthly 0.8 @@ -53624,7 +53813,7 @@ https://www.rfc1437.de/2005/04/07/feedwordpress/ - 2026-03-03T19:56:51.000Z + 2026-03-03T19:56:51.498Z monthly 0.8 @@ -53633,7 +53822,7 @@ https://www.rfc1437.de/2005/04/07/jamba-vor-problemen-in-den-usa/ - 2026-03-03T19:56:56.000Z + 2026-03-03T19:56:56.020Z monthly 0.8 @@ -53642,7 +53831,7 @@ https://www.rfc1437.de/2005/04/06/die-seite-fuer-ural-und-dnepr-fahrer/ - 2026-03-03T19:56:59.000Z + 2026-03-03T19:56:59.802Z monthly 0.8 @@ -53651,7 +53840,7 @@ https://www.rfc1437.de/2005/04/06/polizei-furchtet-anonymitat-und-kryptographi-m-ntz/ - 2026-03-03T19:57:04.000Z + 2026-03-03T19:57:04.653Z monthly 0.8 @@ -53660,7 +53849,7 @@ https://www.rfc1437.de/2005/04/06/source-verwaltungssystem-bitkeeper-nur-noch/ - 2026-03-03T19:57:10.000Z + 2026-03-03T19:57:10.140Z monthly 0.8 @@ -53669,7 +53858,7 @@ https://www.rfc1437.de/2005/04/06/sun-bemakelt-die-gpl/ - 2026-03-03T19:57:15.000Z + 2026-03-03T19:57:15.357Z monthly 0.8 @@ -53678,7 +53867,7 @@ https://www.rfc1437.de/2005/04/06/themonadreader/ - 2026-03-03T19:57:20.000Z + 2026-03-03T19:57:20.071Z monthly 0.8 @@ -53687,7 +53876,7 @@ https://www.rfc1437.de/2005/04/05/ego-surfing/ - 2026-03-03T19:57:25.000Z + 2026-03-03T19:57:25.321Z monthly 0.8 @@ -53696,7 +53885,7 @@ https://www.rfc1437.de/2005/04/05/offentlich-rechtlicher-unfug/ - 2026-03-03T19:57:29.000Z + 2026-03-03T19:57:29.590Z monthly 0.8 @@ -53705,7 +53894,7 @@ https://www.rfc1437.de/2005/04/05/onlinemagazine-und-journalistische-ehrlichkeit/ - 2026-03-03T19:57:34.000Z + 2026-03-03T19:57:34.765Z monthly 0.8 @@ -53714,7 +53903,7 @@ https://www.rfc1437.de/2005/04/05/pugs-pugscode/ - 2026-03-03T19:57:38.000Z + 2026-03-03T19:57:38.683Z monthly 0.8 @@ -53723,7 +53912,7 @@ https://www.rfc1437.de/2005/04/05/urteil-in-sachen-musikindustrie-gegen-heise-online/ - 2026-03-03T19:57:43.000Z + 2026-03-03T19:57:43.607Z monthly 0.8 @@ -53732,7 +53921,7 @@ https://www.rfc1437.de/2005/04/05/zeugen-jehovas-bald-kirche-in-nrw/ - 2026-03-03T19:57:48.000Z + 2026-03-03T19:57:48.903Z monthly 0.8 @@ -53741,7 +53930,7 @@ https://www.rfc1437.de/2005/04/04/okay-we-give-up-we-feel-so-ashamed/ - 2026-03-03T19:57:53.000Z + 2026-03-03T19:57:53.644Z monthly 0.8 @@ -53750,7 +53939,7 @@ https://www.rfc1437.de/2005/04/04/papst-pontifikat-kritik-aus-politik-und-kirche/ - 2026-03-03T19:57:58.000Z + 2026-03-03T19:57:58.172Z monthly 0.8 @@ -53759,7 +53948,7 @@ https://www.rfc1437.de/2005/04/04/regierungsstudie-warnt-vor-blockade-drch-sftwrptnt/ - 2026-03-03T19:58:03.000Z + 2026-03-03T19:58:03.427Z monthly 0.8 @@ -53768,7 +53957,7 @@ https://www.rfc1437.de/2005/04/04/systemhaus-bog-stellt-insolvenzantrag/ - 2026-03-03T19:58:08.000Z + 2026-03-03T19:58:08.184Z monthly 0.8 @@ -53777,7 +53966,7 @@ https://www.rfc1437.de/2005/04/03/ist-eigentlich-schon-mal-jemandem-aufgefallen/ - 2026-03-03T19:58:12.000Z + 2026-03-03T19:58:12.809Z monthly 0.8 @@ -53786,7 +53975,7 @@ https://www.rfc1437.de/2005/04/03/javascript-windows/ - 2026-03-03T19:58:17.000Z + 2026-03-03T19:58:17.140Z monthly 0.8 @@ -53795,7 +53984,7 @@ https://www.rfc1437.de/2005/04/03/vn-bmtr-vrrtsdtnspchrng-wssnschft-nd-znsr-bntrlch/ - 2026-03-03T19:58:23.000Z + 2026-03-03T19:58:23.715Z monthly 0.8 @@ -53804,7 +53993,7 @@ https://www.rfc1437.de/2005/04/02/epson-r-d1-review/ - 2026-03-03T19:58:27.000Z + 2026-03-03T19:58:27.631Z monthly 0.8 @@ -53813,7 +54002,7 @@ https://www.rfc1437.de/2005/04/02/hp-photosmart-8750-photo-printer/ - 2026-03-03T19:58:33.000Z + 2026-03-03T19:58:33.191Z monthly 0.8 @@ -53822,7 +54011,7 @@ https://www.rfc1437.de/2005/04/01/a-response-to-the-noise/ - 2026-03-03T19:58:39.000Z + 2026-03-03T19:58:39.872Z monthly 0.8 @@ -53831,7 +54020,7 @@ https://www.rfc1437.de/2005/04/01/danilo-hondo-positiv-auf-doping-getestet/ - 2026-03-03T19:58:45.000Z + 2026-03-03T19:58:45.351Z monthly 0.8 @@ -53840,7 +54029,7 @@ https://www.rfc1437.de/2005/04/01/html-validator-for-firefox-and-mozilla/ - 2026-03-03T19:58:50.000Z + 2026-03-03T19:58:50.319Z monthly 0.8 @@ -53849,7 +54038,7 @@ https://www.rfc1437.de/2005/04/01/jubilaeumsangebote-der-lufthansa-bringen/ - 2026-03-03T19:58:54.000Z + 2026-03-03T19:58:54.471Z monthly 0.8 @@ -53858,7 +54047,7 @@ https://www.rfc1437.de/2005/04/01/rfc4041-requirements-for-morality-sections-in/ - 2026-03-03T19:58:58.000Z + 2026-03-03T19:58:58.942Z monthly 0.8 @@ -53867,7 +54056,7 @@ https://www.rfc1437.de/2005/04/01/sicherheitsrisiko-passwortschutz-bei-festplatten/ - 2026-03-03T19:59:02.000Z + 2026-03-03T19:59:02.594Z monthly 0.8 @@ -53876,7 +54065,7 @@ https://www.rfc1437.de/2005/04/01/upcoming-change-in-plt-scheme-v300/ - 2026-03-03T19:59:06.000Z + 2026-03-03T19:59:06.858Z monthly 0.8 @@ -53885,7 +54074,7 @@ https://www.rfc1437.de/2005/03/31/america-where-a-bumper-sticker-gets-you-banned/ - 2026-03-03T19:59:11.000Z + 2026-03-03T19:59:11.087Z monthly 0.8 @@ -53894,7 +54083,7 @@ https://www.rfc1437.de/2005/03/31/bruessel-steuert-auf-eklat-bei-der/ - 2026-03-03T19:59:16.000Z + 2026-03-03T19:59:16.426Z monthly 0.8 @@ -53903,7 +54092,7 @@ https://www.rfc1437.de/2005/03/31/ruf-nach-strikter-regelung-be-rgnspndn-wdrd-gsndht/ - 2026-03-03T19:59:20.000Z + 2026-03-03T19:59:20.994Z monthly 0.8 @@ -53912,7 +54101,7 @@ https://www.rfc1437.de/2005/03/31/stollwerck-schliesst-schoko-produktion/ - 2026-03-03T19:59:25.000Z + 2026-03-03T19:59:25.222Z monthly 0.8 @@ -53921,7 +54110,7 @@ https://www.rfc1437.de/2005/03/31/wordpress-websites-search-engine-spam/ - 2026-03-03T19:59:30.000Z + 2026-03-03T19:59:30.241Z monthly 0.8 @@ -53930,7 +54119,7 @@ https://www.rfc1437.de/2005/03/30/class-jabber-php/ - 2026-03-03T19:59:34.000Z + 2026-03-03T19:59:34.051Z monthly 0.8 @@ -53939,7 +54128,7 @@ https://www.rfc1437.de/2005/03/30/preserve-code-formatting/ - 2026-03-03T19:59:37.000Z + 2026-03-03T19:59:37.756Z monthly 0.8 @@ -53948,7 +54137,7 @@ https://www.rfc1437.de/2005/03/30/schroder-waffenlfrngn-n-chn-ch-ggn-wlln-ds-bndstgs/ - 2026-03-03T19:59:43.000Z + 2026-03-03T19:59:43.042Z monthly 0.8 @@ -53957,7 +54146,7 @@ https://www.rfc1437.de/2005/03/29/antwort-vom-bmwa-auf-mein-fax/ - 2026-03-03T19:59:48.000Z + 2026-03-03T19:59:48.115Z monthly 0.8 @@ -53966,7 +54155,7 @@ https://www.rfc1437.de/2005/03/29/denic-bei-net-bewerbung-draussen/ - 2026-03-03T19:59:53.000Z + 2026-03-03T19:59:53.258Z monthly 0.8 @@ -53975,7 +54164,7 @@ https://www.rfc1437.de/2005/03/29/freitag-08-09-2000-troepfe-und-innen-die-drei/ - 2026-03-03T19:59:58.000Z + 2026-03-03T19:59:58.292Z monthly 0.8 @@ -53984,7 +54173,7 @@ https://www.rfc1437.de/2005/03/29/leichter-zugriff-der-geheimdienste-auf-konten-und/ - 2026-03-03T20:00:02.000Z + 2026-03-03T20:00:02.919Z monthly 0.8 @@ -53993,7 +54182,7 @@ https://www.rfc1437.de/2005/03/29/studie-bescheinigt-windows-bessere-sicherht-ls-lnx/ - 2026-03-03T20:00:07.000Z + 2026-03-03T20:00:07.517Z monthly 0.8 @@ -54002,7 +54191,7 @@ https://www.rfc1437.de/2005/03/29/the-simcam-film-and-digital-camera-simulator/ - 2026-03-03T20:00:12.000Z + 2026-03-03T20:00:12.084Z monthly 0.8 @@ -54011,7 +54200,7 @@ https://www.rfc1437.de/2005/03/29/vertragsbedingungen-fuer-sperr-rufnummer/ - 2026-03-03T20:00:15.000Z + 2026-03-03T20:00:15.874Z monthly 0.8 @@ -54020,7 +54209,7 @@ https://www.rfc1437.de/2005/03/29/yahoo-360-grad/ - 2026-03-03T20:00:20.000Z + 2026-03-03T20:00:20.453Z monthly 0.8 @@ -54029,7 +54218,7 @@ https://www.rfc1437.de/2005/03/28/bbedit-8-1-brings-subversion-support/ - 2026-03-03T20:00:24.000Z + 2026-03-03T20:00:24.180Z monthly 0.8 @@ -54038,7 +54227,7 @@ https://www.rfc1437.de/2005/03/28/cat2tag-plugin/ - 2026-03-03T20:00:28.000Z + 2026-03-03T20:00:28.778Z monthly 0.8 @@ -54047,7 +54236,7 @@ https://www.rfc1437.de/2005/03/28/pheed-rss-specification/ - 2026-03-03T20:00:32.000Z + 2026-03-03T20:00:32.840Z monthly 0.8 @@ -54056,7 +54245,7 @@ https://www.rfc1437.de/2005/03/28/rund-um-koln/ - 2026-03-03T20:00:37.000Z + 2026-03-03T20:00:37.452Z monthly 0.8 @@ -54065,7 +54254,7 @@ https://www.rfc1437.de/2005/03/28/sco-uses-legal-documents-from-groklaw-and-tuxrocks/ - 2026-03-03T20:00:41.000Z + 2026-03-03T20:00:41.663Z monthly 0.8 @@ -54074,7 +54263,7 @@ https://www.rfc1437.de/2005/03/27/aplx-version-2-the-exciting-cross-platform-apl/ - 2026-03-03T20:00:46.000Z + 2026-03-03T20:00:46.700Z monthly 0.8 @@ -54083,7 +54272,7 @@ https://www.rfc1437.de/2005/03/27/powerbook-macht-zicken/ - 2026-03-03T20:00:51.000Z + 2026-03-03T20:00:51.309Z monthly 0.8 @@ -54092,7 +54281,7 @@ https://www.rfc1437.de/2005/03/27/time-zone-wp-plugin/ - 2026-03-03T20:00:56.000Z + 2026-03-03T20:00:56.342Z monthly 0.8 @@ -54101,7 +54290,7 @@ https://www.rfc1437.de/2005/03/26/alice/ - 2026-03-03T20:01:03.000Z + 2026-03-03T20:01:03.303Z monthly 0.8 @@ -54110,7 +54299,7 @@ https://www.rfc1437.de/2005/03/26/drscheme-300er-serie/ - 2026-03-03T20:01:09.000Z + 2026-03-03T20:01:09.097Z monthly 0.8 @@ -54119,7 +54308,7 @@ https://www.rfc1437.de/2005/03/26/grundlagen-wellenausbreitung-und-antennenbau/ - 2026-03-03T20:01:13.000Z + 2026-03-03T20:01:13.675Z monthly 0.8 @@ -54128,7 +54317,7 @@ https://www.rfc1437.de/2005/03/26/revanche-des-karteikastens/ - 2026-03-03T20:01:19.000Z + 2026-03-03T20:01:19.200Z monthly 0.8 @@ -54137,7 +54326,7 @@ https://www.rfc1437.de/2005/03/24/mac-mini-auf-der-arbeit-angekommen/ - 2026-03-03T20:01:24.000Z + 2026-03-03T20:01:24.105Z monthly 0.8 @@ -54146,7 +54335,7 @@ https://www.rfc1437.de/2005/03/24/mein-neues-fotoblog-und-der-erste-marienkafer/ - 2026-03-03T20:01:29.000Z + 2026-03-03T20:01:29.910Z monthly 0.8 @@ -54155,7 +54344,7 @@ https://www.rfc1437.de/2005/03/24/mein-neues-fotoblog-und-der-erste-marienkafer-2/ - 2026-03-03T20:01:34.000Z + 2026-03-03T20:01:34.789Z monthly 0.8 @@ -54164,7 +54353,7 @@ https://www.rfc1437.de/2005/03/24/microsoft-auf-patentraubzug/ - 2026-03-03T20:01:40.000Z + 2026-03-03T20:01:40.094Z monthly 0.8 @@ -54173,7 +54362,7 @@ https://www.rfc1437.de/2005/03/23/hackers-re-enable-pymusique-access-to-itms/ - 2026-03-07T21:17:06.000Z + 2026-03-07T21:17:06.394Z monthly 0.8 @@ -54182,7 +54371,7 @@ https://www.rfc1437.de/2005/03/23/journalism-is-a-joke/ - 2026-03-03T20:01:49.000Z + 2026-03-03T20:01:49.473Z monthly 0.8 @@ -54191,7 +54380,7 @@ https://www.rfc1437.de/2005/03/23/pythoneggs/ - 2026-03-03T20:01:53.000Z + 2026-03-03T20:01:53.791Z monthly 0.8 @@ -54200,7 +54389,7 @@ https://www.rfc1437.de/2005/03/23/sybase-stoppt-veroeffentlichung-von-details-zu/ - 2026-03-03T20:01:57.000Z + 2026-03-03T20:01:57.726Z monthly 0.8 @@ -54209,7 +54398,7 @@ https://www.rfc1437.de/2005/03/22/ajaxing-the-rails/ - 2026-03-03T20:02:02.000Z + 2026-03-03T20:02:02.132Z monthly 0.8 @@ -54218,7 +54407,7 @@ https://www.rfc1437.de/2005/03/22/all-complex-ecosystems-have-parasites/ - 2026-03-03T20:02:05.000Z + 2026-03-03T20:02:05.592Z monthly 0.8 @@ -54227,7 +54416,7 @@ https://www.rfc1437.de/2005/03/22/antwort-des-bmj-zu-softwarepatenten/ - 2026-03-03T20:02:11.000Z + 2026-03-03T20:02:11.460Z monthly 0.8 @@ -54236,7 +54425,7 @@ https://www.rfc1437.de/2005/03/22/tidbits-what-you-get-is-what-you-css-with-style/ - 2026-03-03T20:02:16.000Z + 2026-03-03T20:02:16.890Z monthly 0.8 @@ -54245,7 +54434,7 @@ https://www.rfc1437.de/2005/03/21/advanced-bash-scripting-guide/ - 2026-03-03T20:02:21.000Z + 2026-03-03T20:02:21.359Z monthly 0.8 @@ -54254,7 +54443,7 @@ https://www.rfc1437.de/2005/03/21/bfi-banker-zu-fast-sechs-jahren-haft-verurteilt/ - 2026-03-03T20:02:25.000Z + 2026-03-03T20:02:25.738Z monthly 0.8 @@ -54263,7 +54452,7 @@ https://www.rfc1437.de/2005/03/21/der-fall-schiavo-traurspl-zwschn-lbn-nd-td-tgsschd/ - 2026-03-03T20:02:31.000Z + 2026-03-03T20:02:31.382Z monthly 0.8 @@ -54272,7 +54461,7 @@ https://www.rfc1437.de/2005/03/21/hastymail/ - 2026-03-03T20:02:35.000Z + 2026-03-03T20:02:35.227Z monthly 0.8 @@ -54281,7 +54470,7 @@ https://www.rfc1437.de/2005/03/21/know-your-enemy-tracking-botnets/ - 2026-03-03T20:02:39.000Z + 2026-03-03T20:02:39.132Z monthly 0.8 @@ -54290,7 +54479,7 @@ https://www.rfc1437.de/2005/03/21/photomatt/ - 2026-03-03T20:02:43.000Z + 2026-03-03T20:02:43.610Z monthly 0.8 @@ -54299,7 +54488,7 @@ https://www.rfc1437.de/2005/03/21/strafbefehl-gegen-stefan-raab/ - 2026-03-03T20:02:47.000Z + 2026-03-03T20:02:47.403Z monthly 0.8 @@ -54308,7 +54497,7 @@ https://www.rfc1437.de/2005/03/21/was-ich-pervers-finde/ - 2026-03-03T20:02:52.000Z + 2026-03-03T20:02:52.393Z monthly 0.8 @@ -54317,7 +54506,7 @@ https://www.rfc1437.de/2005/03/21/yahoo-kauft-wirklich-flickr/ - 2026-03-03T20:02:57.000Z + 2026-03-03T20:02:57.348Z monthly 0.8 @@ -54326,7 +54515,7 @@ https://www.rfc1437.de/2005/03/20/schwarzes-loch-im-labor/ - 2026-03-03T20:03:00.000Z + 2026-03-03T20:03:00.798Z monthly 0.8 @@ -54335,7 +54524,7 @@ https://www.rfc1437.de/2005/03/20/stolpe-empfiehlt-autobahnen-fur-den-aufschwung/ - 2026-03-03T20:03:06.000Z + 2026-03-03T20:03:06.240Z monthly 0.8 @@ -54344,7 +54533,7 @@ https://www.rfc1437.de/2005/03/20/the-man-in-blue-experiments-widgeditor/ - 2026-03-03T20:03:11.000Z + 2026-03-03T20:03:11.131Z monthly 0.8 @@ -54353,7 +54542,7 @@ https://www.rfc1437.de/2005/03/19/hondo-ist-zweiter-bei-mailand-san-remo/ - 2026-03-03T20:03:15.000Z + 2026-03-03T20:03:15.299Z monthly 0.8 @@ -54362,7 +54551,7 @@ https://www.rfc1437.de/2005/03/18/ard-anstalten-contra-jw/ - 2026-03-03T20:03:20.000Z + 2026-03-03T20:03:20.639Z monthly 0.8 @@ -54371,7 +54560,7 @@ https://www.rfc1437.de/2005/03/18/bildbeschneidung-mit-dhtml/ - 2026-03-03T20:03:24.000Z + 2026-03-03T20:03:24.545Z monthly 0.8 @@ -54380,7 +54569,7 @@ https://www.rfc1437.de/2005/03/18/metasuchmaschinn-btrbr-mss-fr-hrvrltznd-ntrg-nsthn/ - 2026-03-03T20:03:29.000Z + 2026-03-03T20:03:29.947Z monthly 0.8 @@ -54389,7 +54578,7 @@ https://www.rfc1437.de/2005/03/17/agata-report/ - 2026-03-03T20:03:33.000Z + 2026-03-03T20:03:33.918Z monthly 0.8 @@ -54398,7 +54587,7 @@ https://www.rfc1437.de/2005/03/17/contax-rausverkauf/ - 2026-03-03T20:03:38.000Z + 2026-03-03T20:03:38.888Z monthly 0.8 @@ -54407,7 +54596,7 @@ https://www.rfc1437.de/2005/03/17/der-industriekanzler-und-die-konzeptlosigkeit/ - 2026-03-03T20:03:44.000Z + 2026-03-03T20:03:44.110Z monthly 0.8 @@ -54416,7 +54605,7 @@ https://www.rfc1437.de/2005/03/17/ein-grundrecht-ohne-grund-und-boden/ - 2026-03-03T20:03:48.000Z + 2026-03-03T20:03:48.077Z monthly 0.8 @@ -54425,7 +54614,7 @@ https://www.rfc1437.de/2005/03/17/fud-kampagne-gegen-linux/ - 2026-03-03T20:03:53.000Z + 2026-03-03T20:03:53.503Z monthly 0.8 @@ -54434,7 +54623,7 @@ https://www.rfc1437.de/2005/03/17/gmail-einladungen-erste-einstweilige-verfuegung/ - 2026-03-03T20:03:58.000Z + 2026-03-03T20:03:58.138Z monthly 0.8 @@ -54443,7 +54632,7 @@ https://www.rfc1437.de/2005/03/17/ihr-albernes-trikot/ - 2026-03-03T20:04:02.000Z + 2026-03-03T20:04:02.055Z monthly 0.8 @@ -54452,7 +54641,7 @@ https://www.rfc1437.de/2005/03/17/kurztripp-nach-koln/ - 2026-03-03T20:04:06.000Z + 2026-03-03T20:04:06.907Z monthly 0.8 @@ -54461,7 +54650,7 @@ https://www.rfc1437.de/2005/03/17/kurztripp-nach-koln-2/ - 2026-03-03T20:04:11.000Z + 2026-03-03T20:04:11.524Z monthly 0.8 @@ -54470,7 +54659,7 @@ https://www.rfc1437.de/2005/03/17/nach-dem-job-gipfel-hirnlosigkeit/ - 2026-03-03T20:04:17.000Z + 2026-03-03T20:04:17.235Z monthly 0.8 @@ -54479,7 +54668,7 @@ https://www.rfc1437.de/2005/03/17/onlinesysteme-ohne-useability/ - 2026-03-03T20:04:22.000Z + 2026-03-03T20:04:22.282Z monthly 0.8 @@ -54488,7 +54677,7 @@ https://www.rfc1437.de/2005/03/17/the-horror-of-software-patents/ - 2026-03-03T20:04:27.000Z + 2026-03-03T20:04:27.730Z monthly 0.8 @@ -54497,7 +54686,7 @@ https://www.rfc1437.de/2005/03/17/unverstandnis-und-kritik-nach-wolfowitz-nominierng/ - 2026-03-03T20:04:33.000Z + 2026-03-03T20:04:33.280Z monthly 0.8 @@ -54506,7 +54695,7 @@ https://www.rfc1437.de/2005/03/17/us-senat-segnet-oelbohrungen-in-alaska-ab/ - 2026-03-03T20:04:38.000Z + 2026-03-03T20:04:38.762Z monthly 0.8 @@ -54515,7 +54704,7 @@ https://www.rfc1437.de/2005/03/17/wahldebakel-in-kiel/ - 2026-03-03T20:04:44.000Z + 2026-03-03T20:04:44.531Z monthly 0.8 @@ -54524,7 +54713,7 @@ https://www.rfc1437.de/2005/03/16/aktionsbundnis-gegen-spam/ - 2026-03-03T20:04:49.000Z + 2026-03-03T20:04:49.846Z monthly 0.8 @@ -54533,7 +54722,7 @@ https://www.rfc1437.de/2005/03/16/bayerns-blinde-sollen-gefaelligst-zu-hause-bleiben/ - 2026-03-03T20:04:54.000Z + 2026-03-03T20:04:54.458Z monthly 0.8 @@ -54542,7 +54731,7 @@ https://www.rfc1437.de/2005/03/16/clement-kapiert-demokratie-nicht/ - 2026-03-03T20:04:59.000Z + 2026-03-03T20:04:59.276Z monthly 0.8 @@ -54551,7 +54740,7 @@ https://www.rfc1437.de/2005/03/16/cliki-cl-ajax/ - 2026-03-03T20:05:03.000Z + 2026-03-03T20:05:03.255Z monthly 0.8 @@ -54560,7 +54749,7 @@ https://www.rfc1437.de/2005/03/16/ein-java-applet-eine-signatur-hat/ - 2026-03-03T20:05:08.000Z + 2026-03-03T20:05:08.185Z monthly 0.8 @@ -54569,7 +54758,7 @@ https://www.rfc1437.de/2005/03/16/google-mit-eigenen-waffen-schlagen/ - 2026-03-03T20:05:14.000Z + 2026-03-03T20:05:14.068Z monthly 0.8 @@ -54578,7 +54767,7 @@ https://www.rfc1437.de/2005/03/16/naked-objects/ - 2026-03-03T20:05:18.000Z + 2026-03-03T20:05:18.934Z monthly 0.8 @@ -54587,7 +54776,7 @@ https://www.rfc1437.de/2005/03/16/o2-mahnt-sauerstoff-abfueller-ab/ - 2026-03-03T20:05:23.000Z + 2026-03-03T20:05:23.057Z monthly 0.8 @@ -54596,7 +54785,7 @@ https://www.rfc1437.de/2005/03/16/sajax-simple-ajax-toolkit-by-modernmethod/ - 2026-03-03T20:05:27.000Z + 2026-03-03T20:05:27.692Z monthly 0.8 @@ -54605,7 +54794,7 @@ https://www.rfc1437.de/2005/03/16/sco-openserver-6-mit-viel-open-source/ - 2026-03-03T20:05:32.000Z + 2026-03-03T20:05:32.468Z monthly 0.8 @@ -54614,7 +54803,7 @@ https://www.rfc1437.de/2005/03/16/usable-xmlhttprequest-in-practice/ - 2026-03-03T20:05:36.000Z + 2026-03-03T20:05:36.660Z monthly 0.8 @@ -54623,7 +54812,7 @@ https://www.rfc1437.de/2005/03/15/itunes-4-7-1-quietly-brings-sharing-restrictions/ - 2026-03-03T20:05:41.000Z + 2026-03-03T20:05:41.187Z monthly 0.8 @@ -54632,7 +54821,7 @@ https://www.rfc1437.de/2005/03/15/parenscript/ - 2026-03-03T20:05:46.000Z + 2026-03-03T20:05:46.215Z monthly 0.8 @@ -54641,7 +54830,7 @@ https://www.rfc1437.de/2005/03/14/arbeitgeber-legen-sofortprogramm-vor/ - 2026-03-03T20:05:50.000Z + 2026-03-03T20:05:50.991Z monthly 0.8 @@ -54650,7 +54839,7 @@ https://www.rfc1437.de/2005/03/14/cherryflow-continuations-in-python/ - 2026-03-03T20:05:56.000Z + 2026-03-03T20:05:56.574Z monthly 0.8 @@ -54659,7 +54848,7 @@ https://www.rfc1437.de/2005/03/14/debian-plant-verringerung-der-architekturanzahl/ - 2026-03-03T20:06:02.000Z + 2026-03-03T20:06:02.412Z monthly 0.8 @@ -54668,7 +54857,7 @@ https://www.rfc1437.de/2005/03/14/firefox-help-tips-tricks/ - 2026-03-03T20:06:06.000Z + 2026-03-03T20:06:06.988Z monthly 0.8 @@ -54677,7 +54866,7 @@ https://www.rfc1437.de/2005/03/14/heise-onlin-bsprchn-br-vrrtsdtnspchrng-lsn-mprng-s/ - 2026-03-03T20:06:13.000Z + 2026-03-03T20:06:13.446Z monthly 0.8 @@ -54686,7 +54875,7 @@ https://www.rfc1437.de/2005/03/14/markenname-milka-siegt-gegen-frau-milka/ - 2026-03-03T20:06:18.000Z + 2026-03-03T20:06:18.713Z monthly 0.8 @@ -54695,7 +54884,7 @@ https://www.rfc1437.de/2005/03/14/schrager-otto/ - 2026-03-03T20:06:24.000Z + 2026-03-03T20:06:24.248Z monthly 0.8 @@ -54704,7 +54893,7 @@ https://www.rfc1437.de/2005/03/14/urlaub-fur-mai-gebucht/ - 2026-03-03T20:06:28.000Z + 2026-03-03T20:06:28.178Z monthly 0.8 @@ -54713,7 +54902,7 @@ https://www.rfc1437.de/2005/03/14/was-man-so-auf-dachern-findet/ - 2026-03-03T20:06:32.000Z + 2026-03-03T20:06:32.632Z monthly 0.8 @@ -54722,7 +54911,7 @@ https://www.rfc1437.de/2005/03/14/wird-zeit-ichat-rauszuwerfen/ - 2026-03-03T20:06:38.000Z + 2026-03-03T20:06:38.703Z monthly 0.8 @@ -54731,7 +54920,7 @@ https://www.rfc1437.de/2005/03/13/orwell-mit-verspatung/ - 2026-03-03T20:06:45.000Z + 2026-03-03T20:06:45.863Z monthly 0.8 @@ -54740,7 +54929,7 @@ https://www.rfc1437.de/2005/03/13/zypries-will-dna-tests-ausweiten/ - 2026-03-03T20:06:51.000Z + 2026-03-03T20:06:51.762Z monthly 0.8 @@ -54749,7 +54938,7 @@ https://www.rfc1437.de/2005/03/11/polyml-home-page/ - 2026-03-03T20:06:56.000Z + 2026-03-03T20:06:56.714Z monthly 0.8 @@ -54758,7 +54947,7 @@ https://www.rfc1437.de/2005/03/11/ruby-stuff-for-macs/ - 2026-03-03T20:07:02.000Z + 2026-03-03T20:07:02.286Z monthly 0.8 @@ -54767,7 +54956,7 @@ https://www.rfc1437.de/2005/03/11/the-fate-of-reduce-in-python-3000/ - 2026-03-03T20:07:07.000Z + 2026-03-03T20:07:07.746Z monthly 0.8 @@ -54776,7 +54965,7 @@ https://www.rfc1437.de/2005/03/11/uncommon-web-tutorial/ - 2026-03-03T20:07:13.000Z + 2026-03-03T20:07:13.085Z monthly 0.8 @@ -54785,7 +54974,7 @@ https://www.rfc1437.de/2005/03/11/wp-gravatar-signup-tempus-fugit-txfx-net/ - 2026-03-03T20:07:18.000Z + 2026-03-03T20:07:18.190Z monthly 0.8 @@ -54794,7 +54983,7 @@ https://www.rfc1437.de/2005/03/10/abzockstar-laurenz-meyer/ - 2026-03-03T20:07:24.000Z + 2026-03-03T20:07:24.124Z monthly 0.8 @@ -54803,7 +54992,7 @@ https://www.rfc1437.de/2005/03/10/borderline-chaos/ - 2026-03-03T20:07:29.000Z + 2026-03-03T20:07:29.063Z monthly 0.8 @@ -54812,7 +55001,7 @@ https://www.rfc1437.de/2005/03/10/cherryos-verletzt-die-gpl/ - 2026-03-03T20:07:34.000Z + 2026-03-03T20:07:34.946Z monthly 0.8 @@ -54821,7 +55010,7 @@ https://www.rfc1437.de/2005/03/10/iridient-digital-raw-developer/ - 2026-03-03T20:07:40.000Z + 2026-03-03T20:07:40.056Z monthly 0.8 @@ -54830,7 +55019,7 @@ https://www.rfc1437.de/2005/03/10/perverse-geschmacksverirrungen/ - 2026-03-03T20:07:45.000Z + 2026-03-03T20:07:45.399Z monthly 0.8 @@ -54839,7 +55028,7 @@ https://www.rfc1437.de/2005/03/10/schmidt-droht-kassen-wegen-hoher-beitragssaetze/ - 2026-03-03T20:07:51.000Z + 2026-03-03T20:07:51.109Z monthly 0.8 @@ -54848,7 +55037,7 @@ https://www.rfc1437.de/2005/03/09/musikindustrie-und-ihr-angeblchs-ntrss-fr-mskrrcht/ - 2026-03-03T20:07:56.000Z + 2026-03-03T20:07:56.785Z monthly 0.8 @@ -54857,7 +55046,7 @@ https://www.rfc1437.de/2005/03/09/was-die-harvard-business-school-unter-hckng-vrstht/ - 2026-03-03T20:08:02.000Z + 2026-03-03T20:08:02.323Z monthly 0.8 @@ -54866,7 +55055,7 @@ https://www.rfc1437.de/2005/03/08/armut-ist-weiblich/ - 2026-03-03T20:08:07.000Z + 2026-03-03T20:08:07.786Z monthly 0.8 @@ -54875,7 +55064,7 @@ https://www.rfc1437.de/2005/03/08/hedgehog-2/ - 2026-03-03T20:08:12.000Z + 2026-03-03T20:08:12.665Z monthly 0.8 @@ -54884,7 +55073,7 @@ https://www.rfc1437.de/2005/03/08/rechte-auf-dem-weg-in-die-mitte/ - 2026-03-03T20:08:17.000Z + 2026-03-03T20:08:17.022Z monthly 0.8 @@ -54893,7 +55082,7 @@ https://www.rfc1437.de/2005/03/08/social-software-und-un-social-behaviour/ - 2026-03-03T20:08:21.000Z + 2026-03-03T20:08:21.850Z monthly 0.8 @@ -54902,7 +55091,7 @@ https://www.rfc1437.de/2005/03/08/uralter-land-angriff-funktioniert-wieder-im/ - 2026-03-03T20:08:25.000Z + 2026-03-03T20:08:25.761Z monthly 0.8 @@ -54911,7 +55100,7 @@ https://www.rfc1437.de/2005/03/08/weiterer-fehler-in-linux-sicherheitserweiterung/ - 2026-03-03T20:08:29.000Z + 2026-03-03T20:08:29.980Z monthly 0.8 @@ -54920,7 +55109,7 @@ https://www.rfc1437.de/2005/03/08/wladimir-kaminer-uber-einreise-nach-deutschland/ - 2026-03-03T20:08:35.000Z + 2026-03-03T20:08:35.322Z monthly 0.8 @@ -54929,7 +55118,7 @@ https://www.rfc1437.de/2005/03/07/authentication-plugins-patch/ - 2026-03-03T20:08:39.000Z + 2026-03-03T20:08:39.682Z monthly 0.8 @@ -54938,7 +55127,7 @@ https://www.rfc1437.de/2005/03/07/eu-ministerrat-fur-kompromiss-zu-software-patenten/ - 2026-03-03T20:08:45.000Z + 2026-03-03T20:08:45.245Z monthly 0.8 @@ -54947,7 +55136,7 @@ https://www.rfc1437.de/2005/03/07/munchner-landgericht-verbtt-lnk-f-kprsftwr-hrstllr/ - 2026-03-03T20:08:50.000Z + 2026-03-03T20:08:50.466Z monthly 0.8 @@ -54956,7 +55145,7 @@ https://www.rfc1437.de/2005/03/07/oser/ - 2026-03-03T20:08:55.000Z + 2026-03-03T20:08:55.222Z monthly 0.8 @@ -54965,7 +55154,7 @@ https://www.rfc1437.de/2005/03/07/top-level-domain-at-hat-keinn-zwngndn-bzg-z-strrch/ - 2026-03-03T20:09:00.000Z + 2026-03-03T20:09:00.554Z monthly 0.8 @@ -54974,7 +55163,7 @@ https://www.rfc1437.de/2005/03/07/umstrittene-kfz-kennzeichen-patent-ist-fuer/ - 2026-03-03T20:09:05.000Z + 2026-03-03T20:09:05.006Z monthly 0.8 @@ -54983,7 +55172,7 @@ https://www.rfc1437.de/2005/03/06/cyrusharmon-org-more-gcc-xml-new-and-improved-now/ - 2026-03-03T20:09:09.000Z + 2026-03-03T20:09:09.905Z monthly 0.8 @@ -54992,7 +55181,7 @@ https://www.rfc1437.de/2005/03/06/graffiti-und-kunst/ - 2026-03-03T20:09:16.000Z + 2026-03-03T20:09:16.550Z monthly 0.8 @@ -55001,7 +55190,7 @@ https://www.rfc1437.de/2005/03/06/graffiti-und-kunst-2/ - 2026-03-03T20:09:20.000Z + 2026-03-03T20:09:20.884Z monthly 0.8 @@ -55010,7 +55199,7 @@ https://www.rfc1437.de/2005/03/06/graffiti-und-kunst-3/ - 2026-03-03T20:09:25.000Z + 2026-03-03T20:09:25.126Z monthly 0.8 @@ -55019,7 +55208,7 @@ https://www.rfc1437.de/2005/03/06/graffiti-und-kunst-4/ - 2026-03-03T20:09:29.000Z + 2026-03-03T20:09:29.403Z monthly 0.8 @@ -55028,7 +55217,7 @@ https://www.rfc1437.de/2005/03/06/keine-bananenunion-europa-keine-softwarepatente/ - 2026-03-03T20:09:33.000Z + 2026-03-03T20:09:33.162Z monthly 0.8 @@ -55037,7 +55226,7 @@ https://www.rfc1437.de/2005/03/06/schneeblumen/ - 2026-03-03T20:09:38.000Z + 2026-03-03T20:09:38.467Z monthly 0.8 @@ -55046,7 +55235,7 @@ https://www.rfc1437.de/2005/03/06/schneeblumen-2/ - 2026-03-03T20:09:42.000Z + 2026-03-03T20:09:42.805Z monthly 0.8 @@ -55055,7 +55244,7 @@ https://www.rfc1437.de/2005/03/06/schneeblumen-2-2/ - 2026-03-03T20:09:47.000Z + 2026-03-03T20:09:47.114Z monthly 0.8 @@ -55064,7 +55253,7 @@ https://www.rfc1437.de/2005/03/06/strandguthutte-am-kanal/ - 2026-03-03T20:09:52.000Z + 2026-03-03T20:09:52.860Z monthly 0.8 @@ -55073,7 +55262,7 @@ https://www.rfc1437.de/2005/03/06/was-wir-aufgrund-der-schwarzen-liste-gegen/ - 2026-03-03T20:09:56.000Z + 2026-03-03T20:09:56.819Z monthly 0.8 @@ -55082,7 +55271,7 @@ https://www.rfc1437.de/2005/03/05/grsecurity-installieren/ - 2026-03-03T20:10:01.000Z + 2026-03-03T20:10:01.533Z monthly 0.8 @@ -55091,7 +55280,7 @@ https://www.rfc1437.de/2005/03/05/muensterlandes/ - 2026-03-03T20:10:05.000Z + 2026-03-03T20:10:05.737Z monthly 0.8 @@ -55100,7 +55289,7 @@ https://www.rfc1437.de/2005/03/05/wordpress-theme-gila/ - 2026-03-03T20:10:09.000Z + 2026-03-03T20:10:09.569Z monthly 0.8 @@ -55109,7 +55298,7 @@ https://www.rfc1437.de/2005/03/04/empoerung-ueber-aussage-von-juli-vorsitzendem/ - 2026-03-03T20:10:14.000Z + 2026-03-03T20:10:14.463Z monthly 0.8 @@ -55118,7 +55307,7 @@ https://www.rfc1437.de/2005/03/04/how-to-setup-webobjects-51-on-linux/ - 2026-03-03T20:10:19.000Z + 2026-03-03T20:10:19.583Z monthly 0.8 @@ -55127,7 +55316,7 @@ https://www.rfc1437.de/2005/03/04/openacs/ - 2026-03-03T20:10:24.000Z + 2026-03-03T20:10:24.393Z monthly 0.8 @@ -55136,7 +55325,7 @@ https://www.rfc1437.de/2005/03/04/softwarepatente-die-zeichen-sthn-f-nvrhndlng-m-rt/ - 2026-03-03T20:10:29.000Z + 2026-03-03T20:10:29.596Z monthly 0.8 @@ -55145,7 +55334,7 @@ https://www.rfc1437.de/2005/03/04/tabakindustrie-bestach-wissenschaftler/ - 2026-03-03T20:10:33.000Z + 2026-03-03T20:10:33.490Z monthly 0.8 @@ -55154,7 +55343,7 @@ https://www.rfc1437.de/2005/03/03/backup-mit-halben-daten/ - 2026-03-03T20:10:38.000Z + 2026-03-03T20:10:38.815Z monthly 0.8 @@ -55163,7 +55352,7 @@ https://www.rfc1437.de/2005/03/03/ekelerregend/ - 2026-03-03T20:10:44.000Z + 2026-03-03T20:10:44.105Z monthly 0.8 @@ -55172,7 +55361,7 @@ https://www.rfc1437.de/2005/03/03/forscher-erzeugen-unterschiedliche-x-509/ - 2026-03-03T20:10:48.000Z + 2026-03-03T20:10:48.382Z monthly 0.8 @@ -55181,7 +55370,7 @@ https://www.rfc1437.de/2005/03/03/kyocera-to-end-camera-production/ - 2026-03-03T20:10:52.000Z + 2026-03-03T20:10:52.593Z monthly 0.8 @@ -55190,7 +55379,7 @@ https://www.rfc1437.de/2005/03/03/man-kann-diese-mit-einem-simplen-magneten-knacken/ - 2026-03-03T20:10:56.000Z + 2026-03-03T20:10:56.870Z monthly 0.8 @@ -55199,7 +55388,7 @@ https://www.rfc1437.de/2005/03/03/nr-1737-und-ein-veto/ - 2026-03-03T20:11:01.000Z + 2026-03-03T20:11:01.125Z monthly 0.8 @@ -55208,7 +55397,7 @@ https://www.rfc1437.de/2005/03/03/offiziell-genehmigtes-datamining-einer/ - 2026-03-03T20:11:05.000Z + 2026-03-03T20:11:05.880Z monthly 0.8 @@ -55217,7 +55406,7 @@ https://www.rfc1437.de/2005/03/03/sco-vs-linux-sco-verlangt-einsicht-in-ibms/ - 2026-03-03T20:11:10.000Z + 2026-03-03T20:11:10.196Z monthly 0.8 @@ -55226,7 +55415,7 @@ https://www.rfc1437.de/2005/03/03/skyrix-object-publishing-environment/ - 2026-03-03T20:11:15.000Z + 2026-03-03T20:11:15.082Z monthly 0.8 @@ -55235,7 +55424,7 @@ https://www.rfc1437.de/2005/03/03/sos-kinderdoerfer-warten-auf-spende-von-laurenz/ - 2026-03-03T20:11:20.000Z + 2026-03-03T20:11:20.285Z monthly 0.8 @@ -55244,7 +55433,7 @@ https://www.rfc1437.de/2005/03/03/stu-nicholls-cutting-edge-css-an-amazing-css/ - 2026-03-03T20:11:24.000Z + 2026-03-03T20:11:24.621Z monthly 0.8 @@ -55253,7 +55442,7 @@ https://www.rfc1437.de/2005/03/03/tb-quickmove-und-quickfile/ - 2026-03-03T20:11:29.000Z + 2026-03-03T20:11:29.878Z monthly 0.8 @@ -55262,7 +55451,7 @@ https://www.rfc1437.de/2005/03/02/aranha-server-monitor/ - 2026-03-03T20:11:35.000Z + 2026-03-03T20:11:35.478Z monthly 0.8 @@ -55271,7 +55460,7 @@ https://www.rfc1437.de/2005/03/02/blo-gs-for-sale/ - 2026-03-03T20:11:39.000Z + 2026-03-03T20:11:39.344Z monthly 0.8 @@ -55280,7 +55469,7 @@ https://www.rfc1437.de/2005/03/02/blogfox-alles-nur-geklaut/ - 2026-03-03T20:11:43.000Z + 2026-03-03T20:11:43.666Z monthly 0.8 @@ -55289,7 +55478,7 @@ https://www.rfc1437.de/2005/03/02/gericht-bestatigt-storerhaftung-des-admin-c/ - 2026-03-03T20:11:48.000Z + 2026-03-03T20:11:48.447Z monthly 0.8 @@ -55298,7 +55487,7 @@ https://www.rfc1437.de/2005/03/02/kyocera-hamburg-am-ende/ - 2026-03-03T20:11:53.000Z + 2026-03-03T20:11:53.660Z monthly 0.8 @@ -55307,7 +55496,7 @@ https://www.rfc1437.de/2005/03/02/microsoft-setzt-bei-longhorn-auf-marketing/ - 2026-03-03T20:11:57.000Z + 2026-03-03T20:11:57.507Z monthly 0.8 @@ -55316,7 +55505,7 @@ https://www.rfc1437.de/2005/03/02/pixelpost-small-photoblog-software/ - 2026-03-03T20:12:01.000Z + 2026-03-03T20:12:01.866Z monthly 0.8 @@ -55325,7 +55514,7 @@ https://www.rfc1437.de/2005/03/02/smarteiffel-the-gnu-eiffel-compiler/ - 2026-03-03T20:12:06.000Z + 2026-03-03T20:12:06.267Z monthly 0.8 @@ -55334,7 +55523,7 @@ https://www.rfc1437.de/2005/03/01/abrechnung-via-ip/ - 2026-03-03T20:12:11.000Z + 2026-03-03T20:12:11.745Z monthly 0.8 @@ -55343,7 +55532,7 @@ https://www.rfc1437.de/2005/03/01/back-to-the-future-the-story-of-squeak/ - 2026-03-03T20:12:15.000Z + 2026-03-03T20:12:15.697Z monthly 0.8 @@ -55352,7 +55541,7 @@ https://www.rfc1437.de/2005/03/01/concord-antville-org/ - 2026-03-03T20:12:20.000Z + 2026-03-03T20:12:20.016Z monthly 0.8 @@ -55361,7 +55550,7 @@ https://www.rfc1437.de/2005/03/01/erinnert-sich-noch-jemand-an-softram95/ - 2026-03-03T20:12:23.000Z + 2026-03-03T20:12:23.840Z monthly 0.8 @@ -55370,7 +55559,7 @@ https://www.rfc1437.de/2005/03/01/frostkuttel/ - 2026-03-03T20:12:28.000Z + 2026-03-03T20:12:28.065Z monthly 0.8 @@ -55379,7 +55568,7 @@ https://www.rfc1437.de/2005/03/01/gigantische-erdzeichnungen-in-peru-entdeckt/ - 2026-03-03T20:12:31.000Z + 2026-03-03T20:12:31.843Z monthly 0.8 @@ -55388,7 +55577,7 @@ https://www.rfc1437.de/2005/03/01/gut-isoliert/ - 2026-03-03T20:12:35.000Z + 2026-03-03T20:12:35.195Z monthly 0.8 @@ -55397,7 +55586,7 @@ https://www.rfc1437.de/2005/03/01/leer-freilandforschung-mit-knuppeltotung/ - 2026-03-03T20:12:40.000Z + 2026-03-03T20:12:40.541Z monthly 0.8 @@ -55406,7 +55595,7 @@ https://www.rfc1437.de/2005/03/01/rolling-stone/ - 2026-03-07T21:17:07.000Z + 2026-03-07T21:17:07.795Z monthly 0.8 @@ -55415,7 +55604,7 @@ https://www.rfc1437.de/2005/03/01/sind-uberstunden-pflicht/ - 2026-03-03T20:12:49.000Z + 2026-03-03T20:12:49.666Z monthly 0.8 @@ -55424,7 +55613,7 @@ https://www.rfc1437.de/2005/03/01/skidoo-too-ruthsarian-layouts/ - 2026-03-03T20:12:54.000Z + 2026-03-03T20:12:54.791Z monthly 0.8 @@ -55433,7 +55622,7 @@ https://www.rfc1437.de/2005/03/01/spd-kein-steuernachlass-fuer-auslaendische/ - 2026-03-03T20:12:59.000Z + 2026-03-03T20:12:59.526Z monthly 0.8 @@ -55442,7 +55631,7 @@ https://www.rfc1437.de/2005/03/01/wir-werden-alle-entlassen-werden/ - 2026-03-03T20:13:03.000Z + 2026-03-03T20:13:03.789Z monthly 0.8 @@ -55451,7 +55640,7 @@ https://www.rfc1437.de/2005/02/28/blogs-warum-verisign-bzw-jamba-six-apart-und/ - 2026-03-03T20:13:08.000Z + 2026-03-03T20:13:08.092Z monthly 0.8 @@ -55460,7 +55649,7 @@ https://www.rfc1437.de/2005/02/28/bootchen-vs-botchen/ - 2026-03-03T20:13:12.000Z + 2026-03-03T20:13:12.952Z monthly 0.8 @@ -55469,7 +55658,7 @@ https://www.rfc1437.de/2005/02/28/geourl-2-0/ - 2026-03-03T20:13:17.000Z + 2026-03-03T20:13:17.730Z monthly 0.8 @@ -55478,7 +55667,7 @@ https://www.rfc1437.de/2005/02/28/justblogit-with-a-simple-right-click/ - 2026-03-03T20:13:22.000Z + 2026-03-03T20:13:22.037Z monthly 0.8 @@ -55487,7 +55676,7 @@ https://www.rfc1437.de/2005/02/28/kentucky-student-charged-with-felony-thoughtcrime/ - 2026-03-03T20:13:26.000Z + 2026-03-03T20:13:26.274Z monthly 0.8 @@ -55496,7 +55685,7 @@ https://www.rfc1437.de/2005/02/28/nzz-folio-din-a4/ - 2026-03-03T20:13:30.000Z + 2026-03-03T20:13:30.115Z monthly 0.8 @@ -55505,7 +55694,7 @@ https://www.rfc1437.de/2005/02/28/plattenfirmen-erwaegen-preiserhoehung-fuer-musik/ - 2026-03-03T20:13:34.000Z + 2026-03-03T20:13:34.313Z monthly 0.8 @@ -55514,7 +55703,7 @@ https://www.rfc1437.de/2005/02/28/softwarepatente-eu-kommission-weist/ - 2026-03-03T20:13:39.000Z + 2026-03-03T20:13:39.758Z monthly 0.8 @@ -55523,7 +55712,7 @@ https://www.rfc1437.de/2005/02/28/speed-up-wordpress-l10n/ - 2026-03-03T20:13:44.000Z + 2026-03-03T20:13:44.543Z monthly 0.8 @@ -55532,7 +55721,7 @@ https://www.rfc1437.de/2005/02/28/staatliche-gen-kontrolleure-werben-fur-gen-mais/ - 2026-03-03T20:13:49.000Z + 2026-03-03T20:13:49.793Z monthly 0.8 @@ -55541,7 +55730,7 @@ https://www.rfc1437.de/2005/02/28/verkaufsplan-bahn-will-pannen-ices-gen/ - 2026-03-03T20:13:54.000Z + 2026-03-03T20:13:54.031Z monthly 0.8 @@ -55550,7 +55739,7 @@ https://www.rfc1437.de/2005/02/27/ard-hoerfunk-schaltet-ari-verkehrsfunksystem-ab/ - 2026-03-03T20:13:58.000Z + 2026-03-03T20:13:58.273Z monthly 0.8 @@ -55559,7 +55748,7 @@ https://www.rfc1437.de/2005/02/27/die-union-und-ihre-angebliche-moral/ - 2026-03-03T20:14:03.000Z + 2026-03-03T20:14:03.518Z monthly 0.8 @@ -55568,7 +55757,7 @@ https://www.rfc1437.de/2005/02/27/ibm-to-drop-itanium-support/ - 2026-03-03T20:14:07.000Z + 2026-03-03T20:14:07.780Z monthly 0.8 @@ -55577,7 +55766,7 @@ https://www.rfc1437.de/2005/02/27/kommunen-zocken-den-bund-bei-hartz-iv-ab/ - 2026-03-03T20:14:13.000Z + 2026-03-03T20:14:13.451Z monthly 0.8 @@ -55586,7 +55775,7 @@ https://www.rfc1437.de/2005/02/27/pl-i-for-gcc/ - 2026-03-03T20:14:18.000Z + 2026-03-03T20:14:18.160Z monthly 0.8 @@ -55595,7 +55784,7 @@ https://www.rfc1437.de/2005/02/27/soder-allerunterster-politischer-bodensatz/ - 2026-03-03T20:14:23.000Z + 2026-03-03T20:14:23.485Z monthly 0.8 @@ -55604,7 +55793,7 @@ https://www.rfc1437.de/2005/02/27/trackbacks-generell-moderieren/ - 2026-03-03T20:14:28.000Z + 2026-03-03T20:14:28.218Z monthly 0.8 @@ -55613,7 +55802,7 @@ https://www.rfc1437.de/2005/02/26/koch-kapiert-mal-wieder-demokratie-nicht/ - 2026-03-03T20:14:33.000Z + 2026-03-03T20:14:33.434Z monthly 0.8 @@ -55622,7 +55811,7 @@ https://www.rfc1437.de/2005/02/26/letterhead-theme/ - 2026-03-03T20:14:37.000Z + 2026-03-03T20:14:37.679Z monthly 0.8 @@ -55631,7 +55820,7 @@ https://www.rfc1437.de/2005/02/26/unmoglich-von-wegen/ - 2026-03-03T20:14:42.000Z + 2026-03-03T20:14:42.985Z monthly 0.8 @@ -55640,7 +55829,7 @@ https://www.rfc1437.de/2005/02/25/computerteile-rucksendungen-dokumentiert/ - 2026-03-03T20:14:46.000Z + 2026-03-03T20:14:46.743Z monthly 0.8 @@ -55649,7 +55838,7 @@ https://www.rfc1437.de/2005/02/25/disclaimerwahnsinn/ - 2026-03-03T20:14:51.000Z + 2026-03-03T20:14:51.161Z monthly 0.8 @@ -55658,7 +55847,7 @@ https://www.rfc1437.de/2005/02/25/holocaust-leugner-zuendel-wird-ausgeliefert/ - 2026-03-03T20:14:55.000Z + 2026-03-03T20:14:55.218Z monthly 0.8 @@ -55667,7 +55856,7 @@ https://www.rfc1437.de/2005/02/25/kunast-nachsten-montag-geht-die-richtln-drch-dn-rt/ - 2026-03-03T20:15:00.000Z + 2026-03-03T20:15:00.487Z monthly 0.8 @@ -55676,7 +55865,7 @@ https://www.rfc1437.de/2005/02/25/microsoft-schraenkt-windows-xp-aktivierung-per/ - 2026-03-03T20:15:04.000Z + 2026-03-03T20:15:04.805Z monthly 0.8 @@ -55685,7 +55874,7 @@ https://www.rfc1437.de/2005/02/25/r-archiv-diskussionsforen-abmahnung/ - 2026-03-03T20:15:10.000Z + 2026-03-03T20:15:10.731Z monthly 0.8 @@ -55694,7 +55883,7 @@ https://www.rfc1437.de/2005/02/25/was-man-so-in-seinen-kommentaren-findet/ - 2026-03-03T20:15:15.000Z + 2026-03-03T20:15:15.936Z monthly 0.8 @@ -55703,7 +55892,7 @@ https://www.rfc1437.de/2005/02/25/wordpress-ip-to-country-plugin/ - 2026-03-03T20:15:21.000Z + 2026-03-03T20:15:21.446Z monthly 0.8 @@ -55712,7 +55901,7 @@ https://www.rfc1437.de/2005/02/24/ba-soll-accenture-bei-online-jobborse-begnstgt-hbn/ - 2026-03-03T20:15:26.000Z + 2026-03-03T20:15:26.736Z monthly 0.8 @@ -55721,7 +55910,7 @@ https://www.rfc1437.de/2005/02/24/der-elefant-der-maus-wird-30/ - 2026-03-03T20:15:32.000Z + 2026-03-03T20:15:32.180Z monthly 0.8 @@ -55730,7 +55919,7 @@ https://www.rfc1437.de/2005/02/24/energiedrink-fur-rwe-auf-unsere-kosten/ - 2026-03-03T20:15:37.000Z + 2026-03-03T20:15:37.378Z monthly 0.8 @@ -55739,7 +55928,7 @@ https://www.rfc1437.de/2005/02/24/kuenstler-der-bruecke-in-essen/ - 2026-03-03T20:15:41.000Z + 2026-03-03T20:15:41.780Z monthly 0.8 @@ -55748,7 +55937,7 @@ https://www.rfc1437.de/2005/02/24/us-ministerium-beruft-adware-hersteller-als/ - 2026-03-03T20:15:46.000Z + 2026-03-03T20:15:46.591Z monthly 0.8 @@ -55757,7 +55946,7 @@ https://www.rfc1437.de/2005/02/24/virtualisierte-server-unter-linux/ - 2026-03-03T20:15:51.000Z + 2026-03-03T20:15:51.473Z monthly 0.8 @@ -55766,7 +55955,7 @@ https://www.rfc1437.de/2005/02/24/vorsicht-bei-kostenlosen-ssl-zertifikaten/ - 2026-03-03T20:15:56.000Z + 2026-03-03T20:15:56.661Z monthly 0.8 @@ -55775,7 +55964,7 @@ https://www.rfc1437.de/2005/02/23/a-call-to-action-in-oasis/ - 2026-03-03T20:16:01.000Z + 2026-03-03T20:16:01.540Z monthly 0.8 @@ -55784,7 +55973,7 @@ https://www.rfc1437.de/2005/02/23/abmahnungen-fur-gmail-einladungen/ - 2026-03-03T20:16:06.000Z + 2026-03-03T20:16:06.686Z monthly 0.8 @@ -55793,7 +55982,7 @@ https://www.rfc1437.de/2005/02/23/ba-will-betreuung-aelterer-ostdeutscher/ - 2026-03-03T20:16:11.000Z + 2026-03-03T20:16:11.088Z monthly 0.8 @@ -55802,7 +55991,7 @@ https://www.rfc1437.de/2005/02/23/bush-in-mainz/ - 2026-03-03T20:16:15.000Z + 2026-03-03T20:16:15.324Z monthly 0.8 @@ -55811,7 +56000,7 @@ https://www.rfc1437.de/2005/02/23/dialerwahn-die-nachste-phase/ - 2026-03-03T20:16:20.000Z + 2026-03-03T20:16:20.677Z monthly 0.8 @@ -55820,7 +56009,7 @@ https://www.rfc1437.de/2005/02/23/eu-parlament-beschliesst-aus-fuer/ - 2026-03-03T20:16:25.000Z + 2026-03-03T20:16:25.022Z monthly 0.8 @@ -55829,7 +56018,7 @@ https://www.rfc1437.de/2005/02/23/freier-multidimensionaler-olap-server-fuer-linux/ - 2026-03-03T20:16:29.000Z + 2026-03-03T20:16:29.376Z monthly 0.8 @@ -55838,7 +56027,7 @@ https://www.rfc1437.de/2005/02/23/neue-ipod-modelle-zu-guenstigeren-preisen/ - 2026-03-03T20:16:33.000Z + 2026-03-03T20:16:33.660Z monthly 0.8 @@ -55847,7 +56036,7 @@ https://www.rfc1437.de/2005/02/23/ole-von-beust-fur-einen-nordstaat/ - 2026-03-03T20:16:39.000Z + 2026-03-03T20:16:39.395Z monthly 0.8 @@ -55856,7 +56045,7 @@ https://www.rfc1437.de/2005/02/23/optic-nerve-cameras-for-the-blind/ - 2026-03-03T20:16:44.000Z + 2026-03-03T20:16:44.159Z monthly 0.8 @@ -55865,7 +56054,7 @@ https://www.rfc1437.de/2005/02/23/plugin-api-for-wordpress/ - 2026-03-03T20:16:47.000Z + 2026-03-03T20:16:47.900Z monthly 0.8 @@ -55874,7 +56063,7 @@ https://www.rfc1437.de/2005/02/23/spruchband-zum-2322005/ - 2026-03-03T20:16:53.000Z + 2026-03-03T20:16:53.163Z monthly 0.8 @@ -55883,7 +56072,7 @@ https://www.rfc1437.de/2005/02/23/t-online-die-angebliche-marktfuehrerschaft-von/ - 2026-03-03T20:16:57.000Z + 2026-03-03T20:16:57.950Z monthly 0.8 @@ -55892,7 +56081,7 @@ https://www.rfc1437.de/2005/02/22/apache2-php5-fcgi-php4-fcgi-mod-fastcgi-howto/ - 2026-03-03T20:17:03.000Z + 2026-03-03T20:17:03.231Z monthly 0.8 @@ -55901,7 +56090,7 @@ https://www.rfc1437.de/2005/02/22/ape/ - 2026-03-03T20:17:07.000Z + 2026-03-03T20:17:07.022Z monthly 0.8 @@ -55910,7 +56099,7 @@ https://www.rfc1437.de/2005/02/22/die-schill-partei-in-hamburg-loest-sich-auf/ - 2026-03-03T20:17:11.000Z + 2026-03-03T20:17:11.842Z monthly 0.8 @@ -55919,7 +56108,7 @@ https://www.rfc1437.de/2005/02/22/fairsharing-unterschriftensammlung/ - 2026-03-03T20:17:16.000Z + 2026-03-03T20:17:16.532Z monthly 0.8 @@ -55928,7 +56117,7 @@ https://www.rfc1437.de/2005/02/22/filesystemview-vs-localfs/ - 2026-03-03T20:17:20.000Z + 2026-03-03T20:17:20.570Z monthly 0.8 @@ -55937,7 +56126,7 @@ https://www.rfc1437.de/2005/02/22/leica-in-financial-crisis/ - 2026-03-03T20:17:24.000Z + 2026-03-03T20:17:24.620Z monthly 0.8 @@ -55946,7 +56135,7 @@ https://www.rfc1437.de/2005/02/22/microsoft-will-ungleich-befehl-fuer-basic/ - 2026-03-03T20:17:28.000Z + 2026-03-03T20:17:28.513Z monthly 0.8 @@ -55955,7 +56144,7 @@ https://www.rfc1437.de/2005/02/22/mod-fastcgi-und-mod-rewrite/ - 2026-03-03T20:17:33.000Z + 2026-03-03T20:17:33.298Z monthly 0.8 @@ -55964,7 +56153,7 @@ https://www.rfc1437.de/2005/02/22/put-your-money-where-your-mouth-is/ - 2026-03-03T20:17:37.000Z + 2026-03-03T20:17:37.569Z monthly 0.8 @@ -55973,7 +56162,7 @@ https://www.rfc1437.de/2005/02/22/sony-steigt-komplett-aus-dem-pda-geschaeft-aus/ - 2026-03-03T20:17:41.000Z + 2026-03-03T20:17:41.538Z monthly 0.8 @@ -55982,7 +56171,7 @@ https://www.rfc1437.de/2005/02/22/von-firefox-wieder-auf-camino/ - 2026-03-03T20:17:46.000Z + 2026-03-03T20:17:46.294Z monthly 0.8 @@ -55991,7 +56180,7 @@ https://www.rfc1437.de/2005/02/22/zukunftiges-badeparadies-mars/ - 2026-03-03T20:17:51.000Z + 2026-03-03T20:17:51.042Z monthly 0.8 @@ -56000,7 +56189,7 @@ https://www.rfc1437.de/2005/02/21/750-stimmen/ - 2026-03-03T20:17:55.000Z + 2026-03-03T20:17:55.293Z monthly 0.8 @@ -56009,7 +56198,7 @@ https://www.rfc1437.de/2005/02/21/batch-categories-0-9/ - 2026-03-03T20:17:59.000Z + 2026-03-03T20:17:59.631Z monthly 0.8 @@ -56018,7 +56207,7 @@ https://www.rfc1437.de/2005/02/21/bruderle-droht-mit-antidanischen-ressentiments/ - 2026-03-03T20:18:04.000Z + 2026-03-03T20:18:04.449Z monthly 0.8 @@ -56027,7 +56216,7 @@ https://www.rfc1437.de/2005/02/21/entwarnung-mozilla-schaltet-umlaut-domains-nicht/ - 2026-03-03T20:18:08.000Z + 2026-03-03T20:18:08.825Z monthly 0.8 @@ -56036,7 +56225,7 @@ https://www.rfc1437.de/2005/02/21/hack-a-bike-keep-on-hacking-in-a-free-world/ - 2026-03-03T20:18:13.000Z + 2026-03-03T20:18:13.753Z monthly 0.8 @@ -56045,7 +56234,7 @@ https://www.rfc1437.de/2005/02/21/image-headlines-plugin-for-wordpress-1-5/ - 2026-03-03T20:18:18.000Z + 2026-03-03T20:18:18.503Z monthly 0.8 @@ -56054,7 +56243,7 @@ https://www.rfc1437.de/2005/02/21/knuppel-zwischen-die-beine-geworfen-bekommen/ - 2026-03-03T20:18:23.000Z + 2026-03-03T20:18:23.713Z monthly 0.8 @@ -56063,7 +56252,7 @@ https://www.rfc1437.de/2005/02/21/openpgpcomment-fur-wordpress/ - 2026-03-03T20:18:28.000Z + 2026-03-03T20:18:28.575Z monthly 0.8 @@ -56072,7 +56261,7 @@ https://www.rfc1437.de/2005/02/21/paranoia-fortgeschrittene/ - 2026-03-03T20:18:32.000Z + 2026-03-03T20:18:32.874Z monthly 0.8 @@ -56081,7 +56270,7 @@ https://www.rfc1437.de/2005/02/21/rdiff-backup-und-duplicity/ - 2026-03-03T20:18:38.000Z + 2026-03-03T20:18:38.125Z monthly 0.8 @@ -56090,7 +56279,7 @@ https://www.rfc1437.de/2005/02/21/spammer-sind-wirklich-ziemlich-blod/ - 2026-03-03T20:18:42.000Z + 2026-03-03T20:18:42.901Z monthly 0.8 @@ -56099,7 +56288,7 @@ https://www.rfc1437.de/2005/02/21/tollwut-rabies-lyssa/ - 2026-03-03T20:18:47.000Z + 2026-03-03T20:18:47.242Z monthly 0.8 @@ -56108,7 +56297,7 @@ https://www.rfc1437.de/2005/02/20/apache-rivet/ - 2026-03-03T20:18:51.000Z + 2026-03-03T20:18:51.128Z monthly 0.8 @@ -56117,7 +56306,7 @@ https://www.rfc1437.de/2005/02/20/die-wahlen-in-s-h/ - 2026-03-03T20:18:55.000Z + 2026-03-03T20:18:55.910Z monthly 0.8 @@ -56126,7 +56315,7 @@ https://www.rfc1437.de/2005/02/20/google-whack-gemolter-mollemann/ - 2026-03-03T20:19:00.000Z + 2026-03-03T20:19:00.205Z monthly 0.8 @@ -56135,7 +56324,7 @@ https://www.rfc1437.de/2005/02/20/mod-dosevasive/ - 2026-03-03T20:19:05.000Z + 2026-03-03T20:19:05.740Z monthly 0.8 @@ -56144,7 +56333,7 @@ https://www.rfc1437.de/2005/02/20/red-alt-kubrickr/ - 2026-03-03T20:19:11.000Z + 2026-03-03T20:19:11.523Z monthly 0.8 @@ -56153,7 +56342,7 @@ https://www.rfc1437.de/2005/02/20/terragen-landschaftsgenerator/ - 2026-03-03T20:19:16.000Z + 2026-03-03T20:19:16.793Z monthly 0.8 @@ -56162,7 +56351,7 @@ https://www.rfc1437.de/2005/02/20/terragen-landschaftsgenerator-2/ - 2026-03-03T20:19:21.000Z + 2026-03-03T20:19:21.997Z monthly 0.8 @@ -56171,7 +56360,7 @@ https://www.rfc1437.de/2005/02/20/terragen-landschaftsgenerator-2-2/ - 2026-03-03T20:19:26.000Z + 2026-03-03T20:19:26.332Z monthly 0.8 @@ -56180,7 +56369,7 @@ https://www.rfc1437.de/2005/02/19/bei-nebenwirkungen-schlagen-sie-ihren-sftwrhrstllr/ - 2026-03-03T20:19:33.000Z + 2026-03-03T20:19:33.783Z monthly 0.8 @@ -56189,7 +56378,7 @@ https://www.rfc1437.de/2005/02/19/bernd-das-brot-als-gdm-theme/ - 2026-03-03T20:19:37.000Z + 2026-03-03T20:19:37.940Z monthly 0.8 @@ -56198,7 +56387,7 @@ https://www.rfc1437.de/2005/02/19/ethical-hacking-and-computer-forensics-secret/ - 2026-03-03T20:19:43.000Z + 2026-03-03T20:19:43.854Z monthly 0.8 @@ -56207,7 +56396,7 @@ https://www.rfc1437.de/2005/02/19/google-pagerank-extension-for-firefox-and-mozilla/ - 2026-03-03T20:19:48.000Z + 2026-03-03T20:19:48.490Z monthly 0.8 @@ -56216,7 +56405,7 @@ https://www.rfc1437.de/2005/02/19/hp-photosmart-8750-printer-announced/ - 2026-03-03T20:19:53.000Z + 2026-03-03T20:19:53.719Z monthly 0.8 @@ -56225,7 +56414,7 @@ https://www.rfc1437.de/2005/02/18/heise-security-know-how-konsequenzen-der/ - 2026-03-03T20:19:58.000Z + 2026-03-03T20:19:58.191Z monthly 0.8 @@ -56234,7 +56423,7 @@ https://www.rfc1437.de/2005/02/18/papst-vergleicht-abtreibung-mit-holocaust/ - 2026-03-03T20:20:04.000Z + 2026-03-03T20:20:04.292Z monthly 0.8 @@ -56243,7 +56432,7 @@ https://www.rfc1437.de/2005/02/17/alternative-rewrite-rules/ - 2026-03-03T20:20:09.000Z + 2026-03-03T20:20:09.193Z monthly 0.8 @@ -56252,7 +56441,7 @@ https://www.rfc1437.de/2005/02/17/canon-ef-s-60-mm-f2-8-macro-lens/ - 2026-03-03T20:20:14.000Z + 2026-03-03T20:20:14.494Z monthly 0.8 @@ -56261,7 +56450,7 @@ https://www.rfc1437.de/2005/02/17/der-heuchler-des-abends/ - 2026-03-03T20:20:19.000Z + 2026-03-03T20:20:19.384Z monthly 0.8 @@ -56270,7 +56459,7 @@ https://www.rfc1437.de/2005/02/17/heise-online-wenn-computer-oldies-nicht-mehr/ - 2026-03-03T20:20:23.000Z + 2026-03-03T20:20:23.788Z monthly 0.8 @@ -56279,7 +56468,7 @@ https://www.rfc1437.de/2005/02/17/introducing-sifr-the-healthy-alternatv-t-brwsr-txt/ - 2026-03-03T20:20:29.000Z + 2026-03-03T20:20:29.224Z monthly 0.8 @@ -56288,7 +56477,7 @@ https://www.rfc1437.de/2005/02/17/technorati-plugin-beta/ - 2026-03-03T20:20:34.000Z + 2026-03-03T20:20:34.467Z monthly 0.8 @@ -56297,7 +56486,7 @@ https://www.rfc1437.de/2005/02/16/bastats-pre-release-fur-wordpress-15/ - 2026-03-03T20:20:39.000Z + 2026-03-03T20:20:39.895Z monthly 0.8 @@ -56306,7 +56495,7 @@ https://www.rfc1437.de/2005/02/16/commodore-64-als-anzeigetafelcontroller/ - 2026-03-03T20:20:45.000Z + 2026-03-03T20:20:45.667Z monthly 0.8 @@ -56315,7 +56504,7 @@ https://www.rfc1437.de/2005/02/16/kryptoverfahren-sha-1-geknackt/ - 2026-03-03T20:20:50.000Z + 2026-03-03T20:20:50.540Z monthly 0.8 @@ -56324,7 +56513,7 @@ https://www.rfc1437.de/2005/02/16/neues-spiel-neues-gluck-b2evolution/ - 2026-03-03T20:20:55.000Z + 2026-03-03T20:20:55.435Z monthly 0.8 @@ -56333,7 +56522,7 @@ https://www.rfc1437.de/2005/02/16/nikon-face-priority-af/ - 2026-03-03T20:20:59.000Z + 2026-03-03T20:20:59.323Z monthly 0.8 @@ -56342,7 +56531,7 @@ https://www.rfc1437.de/2005/02/16/positivliste-soll-marketing-mails-an-spam-filtern/ - 2026-03-03T20:21:03.000Z + 2026-03-03T20:21:03.581Z monthly 0.8 @@ -56351,7 +56540,7 @@ https://www.rfc1437.de/2005/02/16/sohu-search-ist-ein-seltsamer-bot/ - 2026-03-03T20:21:08.000Z + 2026-03-03T20:21:08.454Z monthly 0.8 @@ -56360,7 +56549,7 @@ https://www.rfc1437.de/2005/02/16/studie-vioxx-verdoppelte-das-herzinfarkt-risiko/ - 2026-03-03T20:21:12.000Z + 2026-03-03T20:21:12.711Z monthly 0.8 @@ -56369,7 +56558,7 @@ https://www.rfc1437.de/2005/02/16/workaround-for-idn-spoofing-issue/ - 2026-03-03T20:21:17.000Z + 2026-03-03T20:21:17.018Z monthly 0.8 @@ -56378,7 +56567,7 @@ https://www.rfc1437.de/2005/02/15/apod-2005-january-21-metal-on-the-plains-of-mars/ - 2026-03-03T20:21:21.000Z + 2026-03-03T20:21:21.359Z monthly 0.8 @@ -56387,7 +56576,7 @@ https://www.rfc1437.de/2005/02/15/bill-gates-versucht-danemark-zu-erpressen/ - 2026-03-03T20:21:26.000Z + 2026-03-03T20:21:26.571Z monthly 0.8 @@ -56396,7 +56585,7 @@ https://www.rfc1437.de/2005/02/15/brandora-r-c-x-ufo/ - 2026-03-03T20:21:30.000Z + 2026-03-03T20:21:30.404Z monthly 0.8 @@ -56405,7 +56594,7 @@ https://www.rfc1437.de/2005/02/15/die-ausbildung-wird-verstaatlicht/ - 2026-03-03T20:21:35.000Z + 2026-03-03T20:21:35.744Z monthly 0.8 @@ -56414,7 +56603,7 @@ https://www.rfc1437.de/2005/02/15/fischer-wird-nrw-wahlkampfthema/ - 2026-03-03T20:21:41.000Z + 2026-03-03T20:21:41.035Z monthly 0.8 @@ -56423,7 +56612,7 @@ https://www.rfc1437.de/2005/02/15/heimstatt-jochen-wegner-bauer-poppe-und-die/ - 2026-03-03T20:21:46.000Z + 2026-03-03T20:21:46.259Z monthly 0.8 @@ -56432,7 +56621,7 @@ https://www.rfc1437.de/2005/02/15/internet-explorer-7-beta-due-out-this-summer/ - 2026-03-03T20:21:50.000Z + 2026-03-03T20:21:50.973Z monthly 0.8 @@ -56441,7 +56630,7 @@ https://www.rfc1437.de/2005/02/15/junge-welt-vom-15-02-2005-hungerlohn-fuer/ - 2026-03-03T20:21:56.000Z + 2026-03-03T20:21:56.130Z monthly 0.8 @@ -56450,7 +56639,7 @@ https://www.rfc1437.de/2005/02/15/mozilla-entfernt-unterstutzung-fur-umlaut-domains/ - 2026-03-03T20:22:00.000Z + 2026-03-03T20:22:00.931Z monthly 0.8 @@ -56459,7 +56648,7 @@ https://www.rfc1437.de/2005/02/15/neohapsis-archives-full-disclosure-list-0258-full/ - 2026-03-03T20:22:05.000Z + 2026-03-03T20:22:05.649Z monthly 0.8 @@ -56468,7 +56657,7 @@ https://www.rfc1437.de/2005/02/15/newsindividualde-ab-14-nicht-mehr-kostenlos/ - 2026-03-03T20:22:10.000Z + 2026-03-03T20:22:10.602Z monthly 0.8 @@ -56477,7 +56666,7 @@ https://www.rfc1437.de/2005/02/15/pagerank-echtheit-prufen/ - 2026-03-03T20:22:16.000Z + 2026-03-03T20:22:16.242Z monthly 0.8 @@ -56486,7 +56675,7 @@ https://www.rfc1437.de/2005/02/15/phpopentracker/ - 2026-03-03T20:22:21.000Z + 2026-03-03T20:22:21.435Z monthly 0.8 @@ -56495,7 +56684,7 @@ https://www.rfc1437.de/2005/02/15/weniger-politik-fur-mehr-gez-gebuhren-rabenhorst/ - 2026-03-03T20:22:26.000Z + 2026-03-03T20:22:26.666Z monthly 0.8 @@ -56504,7 +56693,7 @@ https://www.rfc1437.de/2005/02/15/wordpress-15-ist-raus/ - 2026-03-03T20:22:30.000Z + 2026-03-03T20:22:30.947Z monthly 0.8 @@ -56513,7 +56702,7 @@ https://www.rfc1437.de/2005/02/14/canon-eos-20da-japan-only/ - 2026-03-03T20:22:36.000Z + 2026-03-03T20:22:36.135Z monthly 0.8 @@ -56522,7 +56711,7 @@ https://www.rfc1437.de/2005/02/14/cooperative-linux-3/ - 2026-03-03T20:22:39.000Z + 2026-03-03T20:22:39.635Z monthly 0.8 @@ -56531,7 +56720,7 @@ https://www.rfc1437.de/2005/02/14/des-oanzige-was-zahlt-auf-dera-welt/ - 2026-03-03T20:22:43.000Z + 2026-03-03T20:22:43.795Z monthly 0.8 @@ -56540,7 +56729,7 @@ https://www.rfc1437.de/2005/02/14/es-wirkt-ein-wenig-wie-flucht/ - 2026-03-03T20:22:49.000Z + 2026-03-03T20:22:49.027Z monthly 0.8 @@ -56549,7 +56738,7 @@ https://www.rfc1437.de/2005/02/14/etomite-content-management-system/ - 2026-03-03T20:22:54.000Z + 2026-03-03T20:22:54.165Z monthly 0.8 @@ -56558,7 +56747,7 @@ https://www.rfc1437.de/2005/02/14/filter-soll-internet-filmtausch-stoppen/ - 2026-03-03T20:22:58.000Z + 2026-03-03T20:22:58.963Z monthly 0.8 @@ -56567,7 +56756,7 @@ https://www.rfc1437.de/2005/02/14/freitag-06-die-plunderer-kommen/ - 2026-03-03T20:23:04.000Z + 2026-03-03T20:23:04.087Z monthly 0.8 @@ -56576,7 +56765,7 @@ https://www.rfc1437.de/2005/02/14/howstuffworks-how-van-de-graaff-generators-work/ - 2026-03-03T20:23:07.000Z + 2026-03-03T20:23:07.922Z monthly 0.8 @@ -56585,7 +56774,7 @@ https://www.rfc1437.de/2005/02/14/javascript-xmlhttprequest-jpspan/ - 2026-03-03T20:23:12.000Z + 2026-03-03T20:23:12.171Z monthly 0.8 @@ -56594,7 +56783,7 @@ https://www.rfc1437.de/2005/02/14/norweger-kriminalisieren-jetzt-musikbesitzer/ - 2026-03-03T20:23:17.000Z + 2026-03-03T20:23:17.347Z monthly 0.8 @@ -56603,7 +56792,7 @@ https://www.rfc1437.de/2005/02/14/sigma-30-mm-objektiv-mit-f1-4-fuer-digitalkameras/ - 2026-03-03T20:23:22.000Z + 2026-03-03T20:23:22.166Z monthly 0.8 @@ -56612,7 +56801,7 @@ https://www.rfc1437.de/2005/02/14/vytorin-self-stirring-mug/ - 2026-03-03T20:23:26.000Z + 2026-03-03T20:23:26.535Z monthly 0.8 @@ -56621,7 +56810,7 @@ https://www.rfc1437.de/2005/02/14/wacom-cintiq-21ux-touch-screen-flat-panel/ - 2026-03-03T20:23:31.000Z + 2026-03-03T20:23:31.283Z monthly 0.8 @@ -56630,7 +56819,7 @@ https://www.rfc1437.de/2005/02/13/aus-einer-dynamischen-ip-adresse-ermittelt/ - 2026-03-03T20:23:36.000Z + 2026-03-03T20:23:36.050Z monthly 0.8 @@ -56639,7 +56828,7 @@ https://www.rfc1437.de/2005/02/13/aus-gegebenem-anlass/ - 2026-03-03T20:23:40.000Z + 2026-03-03T20:23:40.894Z monthly 0.8 @@ -56648,7 +56837,7 @@ https://www.rfc1437.de/2005/02/13/css-und-ie-und-safari-10/ - 2026-03-03T20:23:46.000Z + 2026-03-03T20:23:46.039Z monthly 0.8 @@ -56657,7 +56846,7 @@ https://www.rfc1437.de/2005/02/13/gravatars-in-den-kommentaren/ - 2026-03-03T20:23:50.000Z + 2026-03-03T20:23:50.840Z monthly 0.8 @@ -56666,7 +56855,7 @@ https://www.rfc1437.de/2005/02/13/jens-voigt-raeumt-bei-der-mittelmeer-rundfahrt-ab/ - 2026-03-03T20:23:55.000Z + 2026-03-03T20:23:55.042Z monthly 0.8 @@ -56675,7 +56864,7 @@ https://www.rfc1437.de/2005/02/13/mozdevorg-conkeror/ - 2026-03-03T20:24:00.000Z + 2026-03-03T20:24:00.259Z monthly 0.8 @@ -56684,7 +56873,7 @@ https://www.rfc1437.de/2005/02/13/suchmaschinenpromoter-nix-finden/ - 2026-03-03T20:24:03.000Z + 2026-03-03T20:24:03.667Z monthly 0.8 @@ -56693,7 +56882,7 @@ https://www.rfc1437.de/2005/02/13/und-nochmal-logfiles/ - 2026-03-03T20:24:08.000Z + 2026-03-03T20:24:08.385Z monthly 0.8 @@ -56702,7 +56891,7 @@ https://www.rfc1437.de/2005/02/13/vermutlich-verkleideter-bot-in-den-logs/ - 2026-03-03T20:24:13.000Z + 2026-03-03T20:24:13.125Z monthly 0.8 @@ -56711,7 +56900,7 @@ https://www.rfc1437.de/2005/02/13/was-guckst-du/ - 2026-03-03T20:24:17.000Z + 2026-03-03T20:24:17.855Z monthly 0.8 @@ -56720,7 +56909,7 @@ https://www.rfc1437.de/2005/02/13/weblog-tools-collection-leidet-unter-referer-spam/ - 2026-03-03T20:24:22.000Z + 2026-03-03T20:24:22.586Z monthly 0.8 @@ -56729,7 +56918,7 @@ https://www.rfc1437.de/2005/02/12/css-dropshadows-erzeugt/ - 2026-03-03T20:24:27.000Z + 2026-03-03T20:24:27.040Z monthly 0.8 @@ -56738,7 +56927,7 @@ https://www.rfc1437.de/2005/02/12/dgb-chef-akzeptiert-umbau-des-sozialstaats/ - 2026-03-03T20:24:32.000Z + 2026-03-03T20:24:32.260Z monthly 0.8 @@ -56747,7 +56936,7 @@ https://www.rfc1437.de/2005/02/12/neue-polaroid-600-se/ - 2026-03-03T20:24:38.000Z + 2026-03-03T20:24:38.223Z monthly 0.8 @@ -56756,7 +56945,7 @@ https://www.rfc1437.de/2005/02/12/nicht-uber-den-inhalt-meines-weblogs-wundern/ - 2026-03-03T20:24:42.000Z + 2026-03-03T20:24:42.933Z monthly 0.8 @@ -56765,7 +56954,7 @@ https://www.rfc1437.de/2005/02/12/wenn-man-mysql-4-0-auf-4-1-aktualisiert/ - 2026-03-03T20:24:47.000Z + 2026-03-03T20:24:47.163Z monthly 0.8 @@ -56774,7 +56963,7 @@ https://www.rfc1437.de/2005/02/12/wordpress-localization/ - 2026-03-03T20:24:50.000Z + 2026-03-03T20:24:50.625Z monthly 0.8 @@ -56783,7 +56972,7 @@ https://www.rfc1437.de/2005/02/11/anrufbeantworter-nehmen-r-gespraeche-an/ - 2026-03-03T20:24:55.000Z + 2026-03-03T20:24:55.005Z monthly 0.8 @@ -56792,7 +56981,7 @@ https://www.rfc1437.de/2005/02/11/microsoft-interoperability/ - 2026-03-03T20:24:59.000Z + 2026-03-03T20:24:59.212Z monthly 0.8 @@ -56801,7 +56990,7 @@ https://www.rfc1437.de/2005/02/11/schilys-neue-initiative-fur-fluchtlingslager-n-frk/ - 2026-03-03T20:25:04.000Z + 2026-03-03T20:25:04.383Z monthly 0.8 @@ -56810,7 +56999,7 @@ https://www.rfc1437.de/2005/02/11/schwere-zeiten-fuer-kofi-annan/ - 2026-03-03T20:25:08.000Z + 2026-03-03T20:25:08.981Z monthly 0.8 @@ -56819,7 +57008,7 @@ https://www.rfc1437.de/2005/02/10/deep-links-finden-in-logfiles/ - 2026-03-03T20:25:13.000Z + 2026-03-03T20:25:13.929Z monthly 0.8 @@ -56828,7 +57017,7 @@ https://www.rfc1437.de/2005/02/10/haut-den-josef/ - 2026-03-03T20:25:18.000Z + 2026-03-03T20:25:18.298Z monthly 0.8 @@ -56837,7 +57026,7 @@ https://www.rfc1437.de/2005/02/10/podcasts-no/ - 2026-03-03T20:25:22.000Z + 2026-03-03T20:25:22.136Z monthly 0.8 @@ -56846,7 +57035,7 @@ https://www.rfc1437.de/2005/02/10/weiteres-zu-drupal/ - 2026-03-03T20:25:27.000Z + 2026-03-03T20:25:27.050Z monthly 0.8 @@ -56855,7 +57044,7 @@ https://www.rfc1437.de/2005/02/10/wordpress-dateien-und-ladereihenfolge/ - 2026-03-03T20:25:31.000Z + 2026-03-03T20:25:31.853Z monthly 0.8 @@ -56864,7 +57053,7 @@ https://www.rfc1437.de/2005/02/10/wordpress-to-drupal-migration-script/ - 2026-03-03T20:25:36.000Z + 2026-03-03T20:25:36.792Z monthly 0.8 @@ -56873,7 +57062,7 @@ https://www.rfc1437.de/2005/02/10/wp-style-switcher/ - 2026-03-03T20:25:40.000Z + 2026-03-03T20:25:40.751Z monthly 0.8 @@ -56882,7 +57071,7 @@ https://www.rfc1437.de/2005/02/09/arbeitgeber-wollen-neue-studienfinanzierung/ - 2026-03-03T20:25:46.000Z + 2026-03-03T20:25:46.082Z monthly 0.8 @@ -56891,7 +57080,7 @@ https://www.rfc1437.de/2005/02/09/buffer-overflow-in-zahlreichen-produkten-von/ - 2026-03-03T20:25:50.000Z + 2026-03-03T20:25:50.078Z monthly 0.8 @@ -56900,7 +57089,7 @@ https://www.rfc1437.de/2005/02/09/china-hinrichtungen-fuer-den-sozialen-frieden/ - 2026-03-03T20:25:54.000Z + 2026-03-03T20:25:54.416Z monthly 0.8 @@ -56909,7 +57098,7 @@ https://www.rfc1437.de/2005/02/09/google-suche-gemolter/ - 2026-03-03T20:25:58.000Z + 2026-03-03T20:25:58.728Z monthly 0.8 @@ -56918,7 +57107,7 @@ https://www.rfc1437.de/2005/02/09/hp-chefin-tritt-ueberraschend-zurueck/ - 2026-03-03T20:26:02.000Z + 2026-03-03T20:26:02.664Z monthly 0.8 @@ -56927,7 +57116,7 @@ https://www.rfc1437.de/2005/02/09/in-parton-wurde-ein-mini-loch-ness-monster/ - 2026-03-03T20:26:06.000Z + 2026-03-03T20:26:06.985Z monthly 0.8 @@ -56936,7 +57125,7 @@ https://www.rfc1437.de/2005/02/09/liquid-design-auf-emex-basis/ - 2026-03-03T20:26:12.000Z + 2026-03-03T20:26:12.366Z monthly 0.8 @@ -56945,7 +57134,7 @@ https://www.rfc1437.de/2005/02/09/wer-hat-schuld-am-braunen-mann/ - 2026-03-03T20:26:17.000Z + 2026-03-03T20:26:17.629Z monthly 0.8 @@ -56954,7 +57143,7 @@ https://www.rfc1437.de/2005/02/08/chefvolkswirt-walter-liest-deutschen-die-leviten/ - 2026-03-03T20:26:22.000Z + 2026-03-03T20:26:22.979Z monthly 0.8 @@ -56963,7 +57152,7 @@ https://www.rfc1437.de/2005/02/08/die-arme-filmindustrie-und-die-bagetellgrenze/ - 2026-03-03T20:26:28.000Z + 2026-03-03T20:26:28.357Z monthly 0.8 @@ -56972,7 +57161,7 @@ https://www.rfc1437.de/2005/02/08/dnt-rst-xstng-psswrd-n-rqst-prvnt-ds-psswrd-rst-bs/ - 2026-03-03T20:26:33.000Z + 2026-03-03T20:26:33.565Z monthly 0.8 @@ -56981,7 +57170,7 @@ https://www.rfc1437.de/2005/02/08/firefox-idn-0-info-0-transparenz/ - 2026-03-03T20:26:38.000Z + 2026-03-03T20:26:38.905Z monthly 0.8 @@ -56990,7 +57179,7 @@ https://www.rfc1437.de/2005/02/08/gen-pflanzen-forschung-in-munster/ - 2026-03-03T20:26:44.000Z + 2026-03-03T20:26:44.591Z monthly 0.8 @@ -56999,7 +57188,7 @@ https://www.rfc1437.de/2005/02/08/jupp-drupal-will-mich-in-den-wahnsinn-treiben/ - 2026-03-03T20:26:49.000Z + 2026-03-03T20:26:49.901Z monthly 0.8 @@ -57008,7 +57197,7 @@ https://www.rfc1437.de/2005/02/08/manche-projekte-wollen-mich-in-den-wahnsinn-treibn/ - 2026-03-03T20:26:54.000Z + 2026-03-03T20:26:54.631Z monthly 0.8 @@ -57017,7 +57206,7 @@ https://www.rfc1437.de/2005/02/08/rat-der-eu-ignoriert-forderung-des-parlaments/ - 2026-03-03T20:26:59.000Z + 2026-03-03T20:26:59.033Z monthly 0.8 @@ -57026,7 +57215,7 @@ https://www.rfc1437.de/2005/02/08/spreeblick-sweety-records/ - 2026-03-03T20:27:03.000Z + 2026-03-03T20:27:03.294Z monthly 0.8 @@ -57035,7 +57224,7 @@ https://www.rfc1437.de/2005/02/08/von-der-gpl/ - 2026-03-03T20:27:07.000Z + 2026-03-03T20:27:07.509Z monthly 0.8 @@ -57044,7 +57233,7 @@ https://www.rfc1437.de/2005/02/07/hartz-iv-urban-legend/ - 2026-03-03T20:27:12.000Z + 2026-03-03T20:27:12.324Z monthly 0.8 @@ -57053,7 +57242,7 @@ https://www.rfc1437.de/2005/02/07/microsoft-erhaelt-patent-auf-koordinaten-in-urls/ - 2026-03-03T20:27:16.000Z + 2026-03-03T20:27:16.657Z monthly 0.8 @@ -57062,7 +57251,7 @@ https://www.rfc1437.de/2005/02/07/neuer-phishing-angriff-in-vielen-web-browsrn-mglch/ - 2026-03-03T20:27:21.000Z + 2026-03-03T20:27:21.993Z monthly 0.8 @@ -57071,7 +57260,7 @@ https://www.rfc1437.de/2005/02/07/smog-koennte-allergien-foerdern/ - 2026-03-03T20:27:25.000Z + 2026-03-03T20:27:25.785Z monthly 0.8 @@ -57080,7 +57269,7 @@ https://www.rfc1437.de/2005/02/07/the-mbrola-project-homepage/ - 2026-03-03T20:27:30.000Z + 2026-03-03T20:27:30.506Z monthly 0.8 @@ -57089,7 +57278,7 @@ https://www.rfc1437.de/2005/02/06/clement-fur-anhebung-des-rentenalters/ - 2026-03-03T20:27:35.000Z + 2026-03-03T20:27:35.256Z monthly 0.8 @@ -57098,7 +57287,7 @@ https://www.rfc1437.de/2005/02/06/doing-the-gnustep-two-step/ - 2026-03-03T20:27:40.000Z + 2026-03-03T20:27:40.601Z monthly 0.8 @@ -57107,7 +57296,7 @@ https://www.rfc1437.de/2005/02/06/dotproject-open-source-project-and-task/ - 2026-03-03T20:27:44.000Z + 2026-03-03T20:27:44.383Z monthly 0.8 @@ -57116,7 +57305,7 @@ https://www.rfc1437.de/2005/02/06/geourl-ist-wieder-da/ - 2026-03-03T20:27:49.000Z + 2026-03-03T20:27:49.641Z monthly 0.8 @@ -57125,7 +57314,7 @@ https://www.rfc1437.de/2005/02/06/optimization-surprises/ - 2026-03-03T20:27:54.000Z + 2026-03-03T20:27:54.400Z monthly 0.8 @@ -57134,7 +57323,7 @@ https://www.rfc1437.de/2005/02/06/oralux-linux-fur-blinde/ - 2026-03-03T20:27:58.000Z + 2026-03-03T20:27:58.609Z monthly 0.8 @@ -57143,7 +57332,7 @@ https://www.rfc1437.de/2005/02/06/spongebob-promoted-schwulsein/ - 2026-03-03T20:28:03.000Z + 2026-03-03T20:28:03.927Z monthly 0.8 @@ -57152,7 +57341,7 @@ https://www.rfc1437.de/2005/02/05/bloglines-an-ask-jeeves-verkauft/ - 2026-03-03T20:28:08.000Z + 2026-03-03T20:28:08.177Z monthly 0.8 @@ -57161,7 +57350,7 @@ https://www.rfc1437.de/2005/02/05/bookmarklets-und-firefox/ - 2026-03-03T20:28:12.000Z + 2026-03-03T20:28:12.957Z monthly 0.8 @@ -57170,7 +57359,7 @@ https://www.rfc1437.de/2005/02/05/pentagon-news-webseiten/ - 2026-03-03T20:28:18.000Z + 2026-03-03T20:28:18.167Z monthly 0.8 @@ -57179,7 +57368,7 @@ https://www.rfc1437.de/2005/02/05/spammer-in-vorbereitung/ - 2026-03-03T20:28:23.000Z + 2026-03-03T20:28:23.220Z monthly 0.8 @@ -57188,7 +57377,7 @@ https://www.rfc1437.de/2005/02/05/stoiber-rotgrun-schuld-am-npd-erfolg/ - 2026-03-03T20:28:28.000Z + 2026-03-03T20:28:28.792Z monthly 0.8 @@ -57197,7 +57386,7 @@ https://www.rfc1437.de/2005/02/05/tagging-bei-bloggde/ - 2026-03-03T20:28:33.000Z + 2026-03-03T20:28:33.600Z monthly 0.8 @@ -57206,7 +57395,7 @@ https://www.rfc1437.de/2005/02/05/und-wieder-mal-markenwahnsinn/ - 2026-03-03T20:28:38.000Z + 2026-03-03T20:28:38.894Z monthly 0.8 @@ -57215,7 +57404,7 @@ https://www.rfc1437.de/2005/02/05/us-musikindustrie-hat-verstorbn-ds-dttschs-bzchtgt/ - 2026-03-03T20:28:43.000Z + 2026-03-03T20:28:43.674Z monthly 0.8 @@ -57224,7 +57413,7 @@ https://www.rfc1437.de/2005/02/05/weiterer-todesfall-in-georgischer-regierung/ - 2026-03-03T20:28:48.000Z + 2026-03-03T20:28:48.472Z monthly 0.8 @@ -57233,7 +57422,7 @@ https://www.rfc1437.de/2005/02/04/bill-gates-bekennt-sich-zur-interoperabilitaet/ - 2026-03-03T20:28:52.000Z + 2026-03-03T20:28:52.885Z monthly 0.8 @@ -57242,7 +57431,7 @@ https://www.rfc1437.de/2005/02/04/emporung-uber-deutsche-bank/ - 2026-03-03T20:28:58.000Z + 2026-03-03T20:28:58.542Z monthly 0.8 @@ -57251,7 +57440,7 @@ https://www.rfc1437.de/2005/02/04/kosmischer-streifschuss-in-24-jahren/ - 2026-03-03T20:29:02.000Z + 2026-03-03T20:29:02.849Z monthly 0.8 @@ -57260,7 +57449,7 @@ https://www.rfc1437.de/2005/02/04/nzz-online-archiv-nicht-mehr-frei-verfuegbar/ - 2026-03-03T20:29:07.000Z + 2026-03-03T20:29:07.578Z monthly 0.8 @@ -57269,7 +57458,7 @@ https://www.rfc1437.de/2005/02/04/trackback-thinking/ - 2026-03-03T20:29:12.000Z + 2026-03-03T20:29:12.872Z monthly 0.8 @@ -57278,7 +57467,7 @@ https://www.rfc1437.de/2005/02/04/unzureichende-zahl-von-sunniten-getoetet/ - 2026-03-03T20:29:17.000Z + 2026-03-03T20:29:17.731Z monthly 0.8 @@ -57287,7 +57476,7 @@ https://www.rfc1437.de/2005/02/03/erster-fallout-von-relnofollow/ - 2026-03-03T20:29:22.000Z + 2026-03-03T20:29:22.531Z monthly 0.8 @@ -57296,7 +57485,7 @@ https://www.rfc1437.de/2005/02/03/fallback-reboot/ - 2026-03-03T20:29:27.000Z + 2026-03-03T20:29:27.257Z monthly 0.8 @@ -57305,7 +57494,7 @@ https://www.rfc1437.de/2005/02/03/gigablast/ - 2026-03-03T20:29:31.000Z + 2026-03-03T20:29:31.084Z monthly 0.8 @@ -57314,7 +57503,7 @@ https://www.rfc1437.de/2005/02/03/ploetzlich-und-unerwartet-25-minuten-mit-bush/ - 2026-03-03T20:29:35.000Z + 2026-03-03T20:29:35.294Z monthly 0.8 @@ -57323,7 +57512,7 @@ https://www.rfc1437.de/2005/02/03/softwarepatentrichtlinie-eu-parlament-verlangt/ - 2026-03-03T20:29:39.000Z + 2026-03-03T20:29:39.657Z monthly 0.8 @@ -57332,7 +57521,7 @@ https://www.rfc1437.de/2005/02/03/vereinsnamen-verpfanden/ - 2026-03-03T20:29:44.000Z + 2026-03-03T20:29:44.461Z monthly 0.8 @@ -57341,7 +57530,7 @@ https://www.rfc1437.de/2005/02/03/voll-bekloppt-der-sherry-einlauf/ - 2026-03-03T20:29:49.000Z + 2026-03-03T20:29:49.217Z monthly 0.8 @@ -57350,7 +57539,7 @@ https://www.rfc1437.de/2005/02/03/zope-org-filestoragebackup/ - 2026-03-03T20:29:53.000Z + 2026-03-03T20:29:53.631Z monthly 0.8 @@ -57359,7 +57548,7 @@ https://www.rfc1437.de/2005/02/02/aol-aims-to-secure-surfing-with-new-netscape-brwsr/ - 2026-03-07T21:17:10.000Z + 2026-03-07T21:17:10.069Z monthly 0.8 @@ -57368,7 +57557,7 @@ https://www.rfc1437.de/2005/02/02/mannesmann-prozess-der-freispruch-muss-reichen/ - 2026-03-03T20:30:03.000Z + 2026-03-03T20:30:03.222Z monthly 0.8 @@ -57377,7 +57566,7 @@ https://www.rfc1437.de/2005/02/02/microsoft-fehler-in-buffer-overflow-schutz-ist/ - 2026-03-03T20:30:07.000Z + 2026-03-03T20:30:07.988Z monthly 0.8 @@ -57386,7 +57575,7 @@ https://www.rfc1437.de/2005/02/02/nur-ein-test-fur-anfuhrungszeichen/ - 2026-03-03T20:30:11.000Z + 2026-03-03T20:30:11.856Z monthly 0.8 @@ -57395,7 +57584,7 @@ https://www.rfc1437.de/2005/02/02/scharping-als-bdr-praesident-bewirbt/ - 2026-03-03T20:30:16.000Z + 2026-03-03T20:30:16.209Z monthly 0.8 @@ -57404,7 +57593,7 @@ https://www.rfc1437.de/2005/02/02/schnelle-kleine-webserver/ - 2026-03-03T20:30:21.000Z + 2026-03-03T20:30:21.076Z monthly 0.8 @@ -57413,7 +57602,7 @@ https://www.rfc1437.de/2005/02/02/seltsame-business-ideen-bei-providern/ - 2026-03-03T20:30:25.000Z + 2026-03-03T20:30:25.979Z monthly 0.8 @@ -57422,7 +57611,7 @@ https://www.rfc1437.de/2005/02/01/auch-affen-zahlen-fuer-schoene-frauen/ - 2026-03-03T20:30:30.000Z + 2026-03-03T20:30:30.183Z monthly 0.8 @@ -57431,7 +57620,7 @@ https://www.rfc1437.de/2005/02/01/die-allmachtsphantastereien-der-innenmister/ - 2026-03-03T20:30:36.000Z + 2026-03-03T20:30:36.160Z monthly 0.8 @@ -57440,7 +57629,7 @@ https://www.rfc1437.de/2005/02/01/eaccelerator/ - 2026-03-03T20:30:40.000Z + 2026-03-03T20:30:40.107Z monthly 0.8 @@ -57449,7 +57638,7 @@ https://www.rfc1437.de/2005/02/01/esser-will-200-000-euro-von-nrw/ - 2026-03-03T20:30:44.000Z + 2026-03-03T20:30:44.858Z monthly 0.8 @@ -57458,7 +57647,7 @@ https://www.rfc1437.de/2005/02/01/gizmodo-epson-hx-20-portable-computer/ - 2026-03-03T20:30:49.000Z + 2026-03-03T20:30:49.635Z monthly 0.8 @@ -57467,7 +57656,7 @@ https://www.rfc1437.de/2005/02/01/heisede-wegen-ddos-unten/ - 2026-03-03T20:30:53.000Z + 2026-03-03T20:30:53.991Z monthly 0.8 @@ -57476,7 +57665,7 @@ https://www.rfc1437.de/2005/02/01/huch-mediazahlen-im-januar/ - 2026-03-03T20:30:58.000Z + 2026-03-03T20:30:58.810Z monthly 0.8 @@ -57485,7 +57674,7 @@ https://www.rfc1437.de/2005/02/01/ibm-zieht-intel-in-den-sco-fall-mit-rein/ - 2026-03-03T20:31:03.000Z + 2026-03-03T20:31:03.609Z monthly 0.8 @@ -57494,7 +57683,7 @@ https://www.rfc1437.de/2005/02/01/kanther-droht-strafe/ - 2026-03-03T20:31:08.000Z + 2026-03-03T20:31:08.408Z monthly 0.8 @@ -57503,7 +57692,7 @@ https://www.rfc1437.de/2005/02/01/kostenlose-rechtsberatung-fuer-open-source/ - 2026-03-03T20:31:12.000Z + 2026-03-03T20:31:12.692Z monthly 0.8 @@ -57512,7 +57701,7 @@ https://www.rfc1437.de/2005/02/01/microsoft-und-macrovision-wollen-die-analoge/ - 2026-03-03T20:31:17.000Z + 2026-03-03T20:31:17.931Z monthly 0.8 @@ -57521,7 +57710,7 @@ https://www.rfc1437.de/2005/02/01/nuclear-elephant-dspam/ - 2026-03-03T20:31:22.000Z + 2026-03-03T20:31:22.737Z monthly 0.8 @@ -57530,7 +57719,7 @@ https://www.rfc1437.de/2005/02/01/schneier-on-security/ - 2026-03-03T20:31:27.000Z + 2026-03-03T20:31:27.091Z monthly 0.8 @@ -57539,7 +57728,7 @@ https://www.rfc1437.de/2005/02/01/solaris-10-steht-ab-sofort-kostenlos-zum-download/ - 2026-03-03T20:31:30.000Z + 2026-03-03T20:31:30.850Z monthly 0.8 @@ -57548,7 +57737,7 @@ https://www.rfc1437.de/2005/02/01/weg-mit-trackback/ - 2026-03-03T20:31:35.000Z + 2026-03-03T20:31:35.675Z monthly 0.8 @@ -57557,7 +57746,7 @@ https://www.rfc1437.de/2005/01/31/interview-with-a-link-spammer-the-register/ - 2026-03-03T20:31:40.000Z + 2026-03-03T20:31:40.014Z monthly 0.8 @@ -57566,7 +57755,7 @@ https://www.rfc1437.de/2005/01/31/it-manager-s-journal-bitter-struggle-to-control/ - 2026-03-03T20:31:44.000Z + 2026-03-03T20:31:44.344Z monthly 0.8 @@ -57575,7 +57764,7 @@ https://www.rfc1437.de/2005/01/31/law-blog-geld-zurueck-von-jamba-co/ - 2026-03-03T20:31:49.000Z + 2026-03-03T20:31:49.027Z monthly 0.8 @@ -57584,7 +57773,7 @@ https://www.rfc1437.de/2005/01/31/orange-data-mining/ - 2026-03-03T20:31:52.000Z + 2026-03-03T20:31:52.910Z monthly 0.8 @@ -57593,7 +57782,7 @@ https://www.rfc1437.de/2005/01/31/phil-ringnalda-dot-com-how-do-you-stand-it/ - 2026-03-03T20:31:57.000Z + 2026-03-03T20:31:57.190Z monthly 0.8 @@ -57602,7 +57791,7 @@ https://www.rfc1437.de/2005/01/31/reihe-kleiner-netter-freewaretools/ - 2026-03-03T20:32:01.000Z + 2026-03-03T20:32:01.018Z monthly 0.8 @@ -57611,7 +57800,7 @@ https://www.rfc1437.de/2005/01/31/ssh-auf-dem-handy/ - 2026-03-03T20:32:05.000Z + 2026-03-03T20:32:05.804Z monthly 0.8 @@ -57620,7 +57809,7 @@ https://www.rfc1437.de/2005/01/31/us-gericht-guantanamo-tribunale-sind/ - 2026-03-03T20:32:10.000Z + 2026-03-03T20:32:10.178Z monthly 0.8 @@ -57629,7 +57818,7 @@ https://www.rfc1437.de/2005/01/31/wordpress-related-entries-plugin/ - 2026-03-03T20:32:15.000Z + 2026-03-03T20:32:15.410Z monthly 0.8 @@ -57638,7 +57827,7 @@ https://www.rfc1437.de/2005/01/29/bill-gates-will-das-internet-sicherer-machen/ - 2026-03-03T20:32:19.000Z + 2026-03-03T20:32:19.216Z monthly 0.8 @@ -57647,7 +57836,7 @@ https://www.rfc1437.de/2005/01/29/camera-bellows-and-hoods/ - 2026-03-03T20:32:23.000Z + 2026-03-03T20:32:23.085Z monthly 0.8 @@ -57656,7 +57845,7 @@ https://www.rfc1437.de/2005/01/29/camera-bellows-restoration-trick/ - 2026-03-03T20:32:26.000Z + 2026-03-03T20:32:26.884Z monthly 0.8 @@ -57665,7 +57854,7 @@ https://www.rfc1437.de/2005/01/29/darcs-distributed-versioning/ - 2026-03-03T20:32:31.000Z + 2026-03-03T20:32:31.633Z monthly 0.8 @@ -57674,7 +57863,7 @@ https://www.rfc1437.de/2005/01/29/reprinted-repair-manuals/ - 2026-03-03T20:32:35.000Z + 2026-03-03T20:32:35.456Z monthly 0.8 @@ -57683,7 +57872,7 @@ https://www.rfc1437.de/2005/01/29/schueler-muss-wegen-computerwurms-fuer-anderthalb/ - 2026-03-03T20:32:40.000Z + 2026-03-03T20:32:40.272Z monthly 0.8 @@ -57692,7 +57881,7 @@ https://www.rfc1437.de/2005/01/28/8-stuck-winter/ - 2026-03-03T20:32:46.000Z + 2026-03-03T20:32:46.738Z monthly 0.8 @@ -57701,7 +57890,7 @@ https://www.rfc1437.de/2005/01/28/8-stuck-winter-2/ - 2026-03-03T20:32:51.000Z + 2026-03-03T20:32:51.088Z monthly 0.8 @@ -57710,7 +57899,7 @@ https://www.rfc1437.de/2005/01/28/8-stuck-winter-3/ - 2026-03-03T20:32:55.000Z + 2026-03-03T20:32:55.331Z monthly 0.8 @@ -57719,7 +57908,7 @@ https://www.rfc1437.de/2005/01/28/8-stuck-winter-4/ - 2026-03-03T20:32:59.000Z + 2026-03-03T20:32:59.662Z monthly 0.8 @@ -57728,7 +57917,7 @@ https://www.rfc1437.de/2005/01/28/8-stuck-winter-5/ - 2026-03-03T20:33:03.000Z + 2026-03-03T20:33:03.918Z monthly 0.8 @@ -57737,7 +57926,7 @@ https://www.rfc1437.de/2005/01/28/8-stuck-winter-6/ - 2026-03-03T20:33:08.000Z + 2026-03-03T20:33:08.203Z monthly 0.8 @@ -57746,7 +57935,7 @@ https://www.rfc1437.de/2005/01/28/8-stuck-winter-7/ - 2026-03-03T20:33:12.000Z + 2026-03-03T20:33:12.453Z monthly 0.8 @@ -57755,7 +57944,7 @@ https://www.rfc1437.de/2005/01/28/8-stuck-winter-8/ - 2026-03-03T20:33:16.000Z + 2026-03-03T20:33:16.720Z monthly 0.8 @@ -57764,7 +57953,7 @@ https://www.rfc1437.de/2005/01/28/8-stuck-winter-9/ - 2026-03-03T20:33:20.000Z + 2026-03-03T20:33:20.948Z monthly 0.8 @@ -57773,7 +57962,7 @@ https://www.rfc1437.de/2005/01/28/bild-verletzt-menschenwurde/ - 2026-03-03T20:33:25.000Z + 2026-03-03T20:33:25.304Z monthly 0.8 @@ -57782,7 +57971,7 @@ https://www.rfc1437.de/2005/01/28/fjf-s-cocoa-abiword-for-mac-macosx/ - 2026-03-03T20:33:29.000Z + 2026-03-03T20:33:29.679Z monthly 0.8 @@ -57791,7 +57980,7 @@ https://www.rfc1437.de/2005/01/28/musikindustrie-mhnt-hs-nln-wgn-brcht-br-kprsftwr-b/ - 2026-03-03T20:33:34.000Z + 2026-03-03T20:33:34.431Z monthly 0.8 @@ -57800,7 +57989,7 @@ https://www.rfc1437.de/2005/01/28/tempus-fugit-txfx-net-wordpress-hack-notify-users/ - 2026-03-03T20:33:38.000Z + 2026-03-03T20:33:38.723Z monthly 0.8 @@ -57809,7 +57998,7 @@ https://www.rfc1437.de/2005/01/27/bloder-spambot-am-werke/ - 2026-03-03T20:33:43.000Z + 2026-03-03T20:33:43.445Z monthly 0.8 @@ -57818,7 +58007,7 @@ https://www.rfc1437.de/2005/01/27/dna-analyse-im-bundestag/ - 2026-03-03T20:33:49.000Z + 2026-03-03T20:33:49.136Z monthly 0.8 @@ -57827,7 +58016,7 @@ https://www.rfc1437.de/2005/01/27/using-the-mac-sdk/ - 2026-03-03T20:33:53.000Z + 2026-03-03T20:33:53.045Z monthly 0.8 @@ -57836,7 +58025,7 @@ https://www.rfc1437.de/2005/01/26/copyscape-website-plagiarism-search-web-site/ - 2026-03-03T20:33:56.000Z + 2026-03-03T20:33:56.831Z monthly 0.8 @@ -57845,7 +58034,7 @@ https://www.rfc1437.de/2005/01/26/keinen-direkten-zugriff-auf-newsgroups-mehr-bei/ - 2026-03-03T20:34:00.000Z + 2026-03-03T20:34:00.618Z monthly 0.8 @@ -57854,7 +58043,7 @@ https://www.rfc1437.de/2005/01/26/rechtsausschuss-des-bundestags-stmmt-ggn-sftwrptnt/ - 2026-03-03T20:34:04.000Z + 2026-03-03T20:34:04.916Z monthly 0.8 @@ -57863,7 +58052,7 @@ https://www.rfc1437.de/2005/01/26/sco-vs-linux-sco-findet-ibms-code-forderngn-nzmtbr/ - 2026-03-03T20:34:09.000Z + 2026-03-03T20:34:09.720Z monthly 0.8 @@ -57872,7 +58061,7 @@ https://www.rfc1437.de/2005/01/26/verfassungsgericht-hebt-verbot-fur-studiengebhrn-f/ - 2026-03-03T20:34:14.000Z + 2026-03-03T20:34:14.983Z monthly 0.8 @@ -57881,7 +58070,7 @@ https://www.rfc1437.de/2005/01/26/wp-questionnaire-plugin/ - 2026-03-03T20:34:19.000Z + 2026-03-03T20:34:19.693Z monthly 0.8 @@ -57890,7 +58079,7 @@ https://www.rfc1437.de/2005/01/26/zitate-von-karl-valentin-in-vorlesungsskripten/ - 2026-03-03T20:34:23.000Z + 2026-03-03T20:34:23.979Z monthly 0.8 @@ -57899,7 +58088,7 @@ https://www.rfc1437.de/2005/01/25/aus-meinen-suchmaschinenreferrern/ - 2026-03-03T20:34:29.000Z + 2026-03-03T20:34:29.697Z monthly 0.8 @@ -57908,7 +58097,7 @@ https://www.rfc1437.de/2005/01/25/die-abzockhilfe-der-politik-fur-die-stromerzeuger/ - 2026-03-03T20:34:35.000Z + 2026-03-03T20:34:35.089Z monthly 0.8 @@ -57917,7 +58106,7 @@ https://www.rfc1437.de/2005/01/25/ein-platzchen-im-grunen/ - 2026-03-03T20:34:39.000Z + 2026-03-03T20:34:39.375Z monthly 0.8 @@ -57926,7 +58115,7 @@ https://www.rfc1437.de/2005/01/25/einstand-als-cdu-general-und-durchgefallen/ - 2026-03-03T20:34:44.000Z + 2026-03-03T20:34:44.583Z monthly 0.8 @@ -57935,7 +58124,7 @@ https://www.rfc1437.de/2005/01/25/erics-archived-thoughts-wp-gatekeeper/ - 2026-03-03T20:34:49.000Z + 2026-03-03T20:34:49.381Z monthly 0.8 @@ -57944,7 +58133,7 @@ https://www.rfc1437.de/2005/01/25/fdp-vorstellung-zur-bildungspolitik/ - 2026-03-03T20:34:54.000Z + 2026-03-03T20:34:54.284Z monthly 0.8 @@ -57953,7 +58142,7 @@ https://www.rfc1437.de/2005/01/25/freshmeat-net-project-details-for-jruby/ - 2026-03-03T20:34:59.000Z + 2026-03-03T20:34:59.035Z monthly 0.8 @@ -57962,7 +58151,7 @@ https://www.rfc1437.de/2005/01/25/heute-de-die-ungleichen-brueder/ - 2026-03-03T20:35:03.000Z + 2026-03-03T20:35:03.358Z monthly 0.8 @@ -57971,7 +58160,7 @@ https://www.rfc1437.de/2005/01/25/internet-explorer-nach-patch-immer-noch-verwundbar/ - 2026-03-03T20:35:08.000Z + 2026-03-03T20:35:08.163Z monthly 0.8 @@ -57980,7 +58169,7 @@ https://www.rfc1437.de/2005/01/25/introducing-json/ - 2026-03-03T20:35:11.000Z + 2026-03-03T20:35:11.918Z monthly 0.8 @@ -57989,7 +58178,7 @@ https://www.rfc1437.de/2005/01/25/jsch-for-j2me/ - 2026-03-03T20:35:15.000Z + 2026-03-03T20:35:15.798Z monthly 0.8 @@ -57998,7 +58187,7 @@ https://www.rfc1437.de/2005/01/25/json-rpc-org/ - 2026-03-03T20:35:19.000Z + 2026-03-03T20:35:19.173Z monthly 0.8 @@ -58007,7 +58196,7 @@ https://www.rfc1437.de/2005/01/25/junge-union-ladt-ex-cdu-politiker-hohmann-ein/ - 2026-03-03T20:35:24.000Z + 2026-03-03T20:35:24.450Z monthly 0.8 @@ -58016,7 +58205,7 @@ https://www.rfc1437.de/2005/01/25/klingelton-hitparade-ab-april/ - 2026-03-03T20:35:28.000Z + 2026-03-03T20:35:28.400Z monthly 0.8 @@ -58025,7 +58214,7 @@ https://www.rfc1437.de/2005/01/25/midi-bagpipe-roundup/ - 2026-03-03T20:35:32.000Z + 2026-03-03T20:35:32.619Z monthly 0.8 @@ -58034,7 +58223,7 @@ https://www.rfc1437.de/2005/01/25/mit-dem-link-kondom/ - 2026-03-03T20:35:36.000Z + 2026-03-03T20:35:36.099Z monthly 0.8 @@ -58043,7 +58232,7 @@ https://www.rfc1437.de/2005/01/25/modsecurity-web-intrusion-detection-and/ - 2026-03-03T20:35:40.000Z + 2026-03-03T20:35:40.934Z monthly 0.8 @@ -58052,7 +58241,7 @@ https://www.rfc1437.de/2005/01/25/mt-blacklist-hijacked-commentscgi/ - 2026-03-03T20:35:45.000Z + 2026-03-03T20:35:45.735Z monthly 0.8 @@ -58061,7 +58250,7 @@ https://www.rfc1437.de/2005/01/25/wuhlmaus-monogamie/ - 2026-03-03T20:35:50.000Z + 2026-03-03T20:35:50.160Z monthly 0.8 @@ -58070,7 +58259,7 @@ https://www.rfc1437.de/2005/01/24/asymptomatic-new-secret-project/ - 2026-03-03T20:35:54.000Z + 2026-03-03T20:35:54.956Z monthly 0.8 @@ -58079,7 +58268,7 @@ https://www.rfc1437.de/2005/01/24/dna-debatte-muntefering-stellt-sich-hinter-schily/ - 2026-03-03T20:35:59.000Z + 2026-03-03T20:35:59.797Z monthly 0.8 @@ -58088,7 +58277,7 @@ https://www.rfc1437.de/2005/01/24/erste-winterbilder/ - 2026-03-03T20:36:05.000Z + 2026-03-03T20:36:05.669Z monthly 0.8 @@ -58097,7 +58286,7 @@ https://www.rfc1437.de/2005/01/24/erste-winterbilder-2/ - 2026-03-03T20:36:09.000Z + 2026-03-03T20:36:09.990Z monthly 0.8 @@ -58106,7 +58295,7 @@ https://www.rfc1437.de/2005/01/24/erste-winterbilder-3/ - 2026-03-03T20:36:14.000Z + 2026-03-03T20:36:14.371Z monthly 0.8 @@ -58115,7 +58304,7 @@ https://www.rfc1437.de/2005/01/24/itw-rekonstruiert-mac-video/ - 2026-03-03T20:36:18.000Z + 2026-03-03T20:36:18.190Z monthly 0.8 @@ -58124,7 +58313,7 @@ https://www.rfc1437.de/2005/01/24/rss-11-und-postals-law/ - 2026-03-03T20:36:23.000Z + 2026-03-03T20:36:23.442Z monthly 0.8 @@ -58133,7 +58322,7 @@ https://www.rfc1437.de/2005/01/24/staatsanwaltschaft-wird-nicht-gegen-npd-ermitteln/ - 2026-03-03T20:36:28.000Z + 2026-03-03T20:36:28.246Z monthly 0.8 @@ -58142,7 +58331,7 @@ https://www.rfc1437.de/2005/01/24/thinking-forth/ - 2026-03-03T20:36:32.000Z + 2026-03-03T20:36:32.009Z monthly 0.8 @@ -58151,7 +58340,7 @@ https://www.rfc1437.de/2005/01/23/audioscrobbler-development-last-fm-streaming-api/ - 2026-03-03T20:36:35.000Z + 2026-03-03T20:36:35.884Z monthly 0.8 @@ -58160,7 +58349,7 @@ https://www.rfc1437.de/2005/01/23/build-me-money-making-website-please/ - 2026-03-03T20:36:41.000Z + 2026-03-03T20:36:41.132Z monthly 0.8 @@ -58169,7 +58358,7 @@ https://www.rfc1437.de/2005/01/23/python-beispiel-in-frontier/ - 2026-03-03T20:36:45.000Z + 2026-03-03T20:36:45.410Z monthly 0.8 @@ -58178,7 +58367,7 @@ https://www.rfc1437.de/2005/01/22/die-npd-tiraden-in-sachsen/ - 2026-03-03T20:36:49.000Z + 2026-03-03T20:36:49.257Z monthly 0.8 @@ -58187,7 +58376,7 @@ https://www.rfc1437.de/2005/01/22/heise-nln-hh-gldstrf-fr-stdntnvrtrtng-wgn-hyprlnks/ - 2026-03-03T20:36:54.000Z + 2026-03-03T20:36:54.498Z monthly 0.8 @@ -58196,7 +58385,7 @@ https://www.rfc1437.de/2005/01/22/subway/ - 2026-03-03T20:36:58.000Z + 2026-03-03T20:36:58.377Z monthly 0.8 @@ -58205,7 +58394,7 @@ https://www.rfc1437.de/2005/01/22/wordpress-und-relnofollow/ - 2026-03-03T20:37:03.000Z + 2026-03-03T20:37:03.135Z monthly 0.8 @@ -58214,7 +58403,7 @@ https://www.rfc1437.de/2005/01/21/die-ct-und-das-trojanische-pferd/ - 2026-03-03T20:37:08.000Z + 2026-03-03T20:37:08.002Z monthly 0.8 @@ -58223,7 +58412,7 @@ https://www.rfc1437.de/2005/01/21/mdrde-npd-verweigert-ns-und-kriegsopfern-gedenkmnt/ - 2026-03-03T20:37:13.000Z + 2026-03-03T20:37:13.202Z monthly 0.8 @@ -58232,7 +58421,7 @@ https://www.rfc1437.de/2005/01/21/microsoft-entlaesst-windows-tester/ - 2026-03-03T20:37:17.000Z + 2026-03-03T20:37:17.986Z monthly 0.8 @@ -58241,7 +58430,7 @@ https://www.rfc1437.de/2005/01/21/nofollow-no-do/ - 2026-03-03T20:37:23.000Z + 2026-03-03T20:37:23.168Z monthly 0.8 @@ -58250,7 +58439,7 @@ https://www.rfc1437.de/2005/01/21/red-alt-wordpress-index-builder/ - 2026-03-03T20:37:27.000Z + 2026-03-03T20:37:27.479Z monthly 0.8 @@ -58259,7 +58448,7 @@ https://www.rfc1437.de/2005/01/21/struck-will-milliarden-fuer-ruestungsprojekte/ - 2026-03-03T20:37:31.000Z + 2026-03-03T20:37:31.682Z monthly 0.8 @@ -58268,7 +58457,7 @@ https://www.rfc1437.de/2005/01/21/virtualisierung-fuer-desktop-prozessoren/ - 2026-03-03T20:37:35.000Z + 2026-03-03T20:37:35.989Z monthly 0.8 @@ -58277,7 +58466,7 @@ https://www.rfc1437.de/2005/01/21/weil-gier-ist-geil/ - 2026-03-03T20:37:41.000Z + 2026-03-03T20:37:41.264Z monthly 0.8 @@ -58286,7 +58475,7 @@ https://www.rfc1437.de/2005/01/21/wordpress-tackling-comment-spam/ - 2026-03-03T20:37:45.000Z + 2026-03-03T20:37:45.045Z monthly 0.8 @@ -58295,7 +58484,7 @@ https://www.rfc1437.de/2005/01/20/der-papst-und-die-gummitutchen/ - 2026-03-03T20:37:51.000Z + 2026-03-03T20:37:51.006Z monthly 0.8 @@ -58304,7 +58493,7 @@ https://www.rfc1437.de/2005/01/20/heise-online-eu-rat-will-wtrn-nlf-b-sftwrptntn-wgn/ - 2026-03-03T20:37:56.000Z + 2026-03-03T20:37:56.339Z monthly 0.8 @@ -58313,7 +58502,7 @@ https://www.rfc1437.de/2005/01/20/menschenverachtende-idee-des-tages/ - 2026-03-03T20:38:01.000Z + 2026-03-03T20:38:01.611Z monthly 0.8 @@ -58322,7 +58511,7 @@ https://www.rfc1437.de/2005/01/20/outlook-zusammen-mit-hotmail-zugang-zur-miete/ - 2026-03-03T20:38:05.000Z + 2026-03-03T20:38:05.886Z monthly 0.8 @@ -58331,7 +58520,7 @@ https://www.rfc1437.de/2005/01/20/sco-vs-linux-sco-bekommt-weiteres-material/ - 2026-03-03T20:38:11.000Z + 2026-03-03T20:38:11.266Z monthly 0.8 @@ -58340,7 +58529,7 @@ https://www.rfc1437.de/2005/01/20/seltsame-haltung-von-planetopia/ - 2026-03-03T20:38:16.000Z + 2026-03-03T20:38:16.019Z monthly 0.8 @@ -58349,7 +58538,7 @@ https://www.rfc1437.de/2005/01/20/staatsakt-fuer-die-flutopfer-im-bundestag/ - 2026-03-03T20:38:20.000Z + 2026-03-03T20:38:20.364Z monthly 0.8 @@ -58358,7 +58547,7 @@ https://www.rfc1437.de/2005/01/20/versicherungen-wollen-einblick-in-gentestergebniss/ - 2026-03-03T20:38:25.000Z + 2026-03-03T20:38:25.264Z monthly 0.8 @@ -58367,7 +58556,7 @@ https://www.rfc1437.de/2005/01/19/beitrag-4000/ - 2026-03-03T20:38:29.000Z + 2026-03-03T20:38:29.494Z monthly 0.8 @@ -58376,7 +58565,7 @@ https://www.rfc1437.de/2005/01/19/bigempty-com/ - 2026-03-03T20:38:33.000Z + 2026-03-03T20:38:33.739Z monthly 0.8 @@ -58385,7 +58574,7 @@ https://www.rfc1437.de/2005/01/19/bundesgrenzschutz-heisst-bald-bundespolizei/ - 2026-03-03T20:38:38.000Z + 2026-03-03T20:38:38.062Z monthly 0.8 @@ -58394,7 +58583,7 @@ https://www.rfc1437.de/2005/01/19/fotos-folternder-soldaten-im-irak-schockieren-die/ - 2026-03-03T20:38:42.000Z + 2026-03-03T20:38:42.793Z monthly 0.8 @@ -58403,7 +58592,7 @@ https://www.rfc1437.de/2005/01/19/got-new-spam-tactic-figured/ - 2026-03-03T20:38:48.000Z + 2026-03-03T20:38:48.095Z monthly 0.8 @@ -58412,7 +58601,7 @@ https://www.rfc1437.de/2005/01/19/offenbar-haertere-strafen-fuer-draengler-geplant/ - 2026-03-03T20:38:52.000Z + 2026-03-03T20:38:52.827Z monthly 0.8 @@ -58421,7 +58610,7 @@ https://www.rfc1437.de/2005/01/19/rss-11-rdf-site-summary-draft/ - 2026-03-03T20:38:58.000Z + 2026-03-03T20:38:58.087Z monthly 0.8 @@ -58430,7 +58619,7 @@ https://www.rfc1437.de/2005/01/19/schwarzenegger-lehnt-gnadengesuch-ab/ - 2026-03-03T20:39:02.000Z + 2026-03-03T20:39:02.317Z monthly 0.8 @@ -58439,7 +58628,7 @@ https://www.rfc1437.de/2005/01/19/sicher-und-anonym-im-internet-mit-proxys/ - 2026-03-03T20:39:06.000Z + 2026-03-03T20:39:06.562Z monthly 0.8 @@ -58448,7 +58637,7 @@ https://www.rfc1437.de/2005/01/19/subtraction-new-improved-original-flavor/ - 2026-03-03T20:39:11.000Z + 2026-03-03T20:39:11.446Z monthly 0.8 @@ -58457,7 +58646,7 @@ https://www.rfc1437.de/2005/01/19/wordpress-nofollow-plugin/ - 2026-03-08T16:33:37.000Z + 2026-03-08T16:33:37.012Z monthly 0.8 @@ -58466,7 +58655,7 @@ https://www.rfc1437.de/2005/01/19/zope-hosting-and-performance-english-version/ - 2026-03-07T21:17:21.000Z + 2026-03-07T21:17:21.357Z monthly 0.8 @@ -58475,7 +58664,7 @@ https://www.rfc1437.de/2005/01/18/dna-analysen-bayern-startet-bundesratsinitiative/ - 2026-03-03T20:39:27.000Z + 2026-03-03T20:39:27.508Z monthly 0.8 @@ -58484,7 +58673,7 @@ https://www.rfc1437.de/2005/01/18/grafedia/ - 2026-03-03T20:39:32.000Z + 2026-03-03T20:39:32.312Z monthly 0.8 @@ -58493,7 +58682,7 @@ https://www.rfc1437.de/2005/01/18/lynuxworks-introduces-first-user-mode-linux/ - 2026-03-03T20:39:37.000Z + 2026-03-03T20:39:37.537Z monthly 0.8 @@ -58502,7 +58691,7 @@ https://www.rfc1437.de/2005/01/18/mathworld-news-the-mathematics-of-tsunamis/ - 2026-03-03T20:39:41.000Z + 2026-03-03T20:39:41.843Z monthly 0.8 @@ -58511,7 +58700,7 @@ https://www.rfc1437.de/2005/01/18/organizer-overload/ - 2026-03-03T20:39:46.000Z + 2026-03-03T20:39:46.099Z monthly 0.8 @@ -58520,7 +58709,7 @@ https://www.rfc1437.de/2005/01/18/quicksilver-act-without-doing/ - 2026-03-03T20:39:50.000Z + 2026-03-03T20:39:50.903Z monthly 0.8 @@ -58529,7 +58718,7 @@ https://www.rfc1437.de/2005/01/18/save-think-secrets-nicholas-ciarelli-petition/ - 2026-03-03T20:39:55.000Z + 2026-03-03T20:39:55.860Z monthly 0.8 @@ -58538,7 +58727,7 @@ https://www.rfc1437.de/2005/01/18/the-temboz-rss-aggregator/ - 2026-03-03T20:40:00.000Z + 2026-03-03T20:40:00.739Z monthly 0.8 @@ -58547,7 +58736,7 @@ https://www.rfc1437.de/2005/01/18/totet-schnappi/ - 2026-03-03T20:40:04.000Z + 2026-03-03T20:40:04.993Z monthly 0.8 @@ -58556,7 +58745,7 @@ https://www.rfc1437.de/2005/01/18/working-with-automator/ - 2026-03-03T20:40:09.000Z + 2026-03-03T20:40:09.380Z monthly 0.8 @@ -58565,7 +58754,7 @@ https://www.rfc1437.de/2005/01/18/zope-hosting-und-performance/ - 2026-03-03T20:40:14.000Z + 2026-03-03T20:40:14.594Z monthly 0.8 @@ -58574,7 +58763,7 @@ https://www.rfc1437.de/2005/01/18/zyklische-dependencies/ - 2026-03-03T20:40:19.000Z + 2026-03-03T20:40:19.355Z monthly 0.8 @@ -58583,7 +58772,7 @@ https://www.rfc1437.de/2005/01/17/d-programming-language/ - 2026-03-03T20:40:24.000Z + 2026-03-03T20:40:24.167Z monthly 0.8 @@ -58592,7 +58781,7 @@ https://www.rfc1437.de/2005/01/17/e-mails-durfen-nicht-gefiltert-werden/ - 2026-03-03T20:40:29.000Z + 2026-03-03T20:40:29.477Z monthly 0.8 @@ -58601,7 +58790,7 @@ https://www.rfc1437.de/2005/01/17/ein-code39-barcode-generator/ - 2026-03-03T20:40:33.000Z + 2026-03-03T20:40:33.363Z monthly 0.8 @@ -58610,7 +58799,7 @@ https://www.rfc1437.de/2005/01/17/entwicklung-der-aqua-variante-von-openoffice-fuer/ - 2026-03-03T20:40:37.000Z + 2026-03-03T20:40:37.662Z monthly 0.8 @@ -58619,7 +58808,7 @@ https://www.rfc1437.de/2005/01/17/ihr-unwort-2004/ - 2026-03-03T20:40:41.000Z + 2026-03-03T20:40:41.452Z monthly 0.8 @@ -58628,7 +58817,7 @@ https://www.rfc1437.de/2005/01/17/nach-fahndungserfolg-im-fall-moshammer-ruf-nach/ - 2026-03-03T20:40:45.000Z + 2026-03-03T20:40:45.819Z monthly 0.8 @@ -58637,7 +58826,7 @@ https://www.rfc1437.de/2005/01/17/planteopia-wissenverbiegungsmagazin/ - 2026-03-03T20:40:51.000Z + 2026-03-03T20:40:51.645Z monthly 0.8 @@ -58646,7 +58835,7 @@ https://www.rfc1437.de/2005/01/16/chapterzero-illustrender/ - 2026-03-03T20:40:55.000Z + 2026-03-03T20:40:55.461Z monthly 0.8 @@ -58655,7 +58844,7 @@ https://www.rfc1437.de/2005/01/16/das-weblog-von-textlab/ - 2026-03-03T20:41:00.000Z + 2026-03-03T20:41:00.209Z monthly 0.8 @@ -58664,7 +58853,7 @@ https://www.rfc1437.de/2005/01/16/kallisys-newton-einstein-project/ - 2026-03-03T20:41:04.000Z + 2026-03-03T20:41:04.947Z monthly 0.8 @@ -58673,7 +58862,7 @@ https://www.rfc1437.de/2005/01/16/loch-gegen-raab-konto-gesperrt-gerichtsvollzieher/ - 2026-03-03T20:41:09.000Z + 2026-03-03T20:41:09.288Z monthly 0.8 @@ -58682,7 +58871,7 @@ https://www.rfc1437.de/2005/01/16/longhand/ - 2026-03-03T20:41:13.000Z + 2026-03-03T20:41:13.502Z monthly 0.8 @@ -58691,7 +58880,7 @@ https://www.rfc1437.de/2005/01/16/monkeytyping-the-peak-developers-center/ - 2026-03-03T20:41:18.000Z + 2026-03-03T20:41:18.285Z monthly 0.8 @@ -58700,7 +58889,7 @@ https://www.rfc1437.de/2005/01/16/textwrangler-jetzt-frei-wie-freibier/ - 2026-03-03T20:41:23.000Z + 2026-03-03T20:41:23.549Z monthly 0.8 @@ -58709,7 +58898,7 @@ https://www.rfc1437.de/2005/01/16/using-latex-in-wordpress-latexrender-as-a-plugin/ - 2026-03-03T20:41:27.000Z + 2026-03-03T20:41:27.404Z monthly 0.8 @@ -58718,7 +58907,7 @@ https://www.rfc1437.de/2005/01/15/die-achse-der-frommen-lebt-denn-dr-alte-darwin-nch/ - 2026-03-03T20:41:33.000Z + 2026-03-03T20:41:33.724Z monthly 0.8 @@ -58727,7 +58916,7 @@ https://www.rfc1437.de/2005/01/15/heise-online-huygens-countdown-the-day-after/ - 2026-03-03T20:41:37.000Z + 2026-03-03T20:41:37.990Z monthly 0.8 @@ -58736,7 +58925,7 @@ https://www.rfc1437.de/2005/01/15/martin-schwimmer-vom-trademark-blog-bloglines/ - 2026-03-03T20:41:41.000Z + 2026-03-03T20:41:41.823Z monthly 0.8 @@ -58745,7 +58934,7 @@ https://www.rfc1437.de/2005/01/15/morganically-grown-miniposts-plugin-for-wordpress/ - 2026-03-03T20:41:45.000Z + 2026-03-03T20:41:45.659Z monthly 0.8 @@ -58754,7 +58943,7 @@ https://www.rfc1437.de/2005/01/15/no-status-quo-runphp-wordpress-plugin/ - 2026-03-03T20:41:49.000Z + 2026-03-03T20:41:49.906Z monthly 0.8 @@ -58763,7 +58952,7 @@ https://www.rfc1437.de/2005/01/15/php-markdown/ - 2026-03-03T20:41:53.000Z + 2026-03-03T20:41:53.673Z monthly 0.8 @@ -58772,7 +58961,7 @@ https://www.rfc1437.de/2005/01/14/argh/ - 2026-03-03T20:41:57.000Z + 2026-03-03T20:41:57.442Z monthly 0.8 @@ -58781,7 +58970,7 @@ https://www.rfc1437.de/2005/01/14/blugs-d-ie-neue-geldmaschine/ - 2026-03-03T20:42:01.000Z + 2026-03-03T20:42:01.754Z monthly 0.8 @@ -58790,7 +58979,7 @@ https://www.rfc1437.de/2005/01/14/dns-stuff-dns-tools-whs-trcrt-png-nd-thr-ntwrk-tls/ - 2026-03-03T20:42:06.000Z + 2026-03-03T20:42:06.522Z monthly 0.8 @@ -58799,7 +58988,7 @@ https://www.rfc1437.de/2005/01/14/esa-cassini-huygens-first-image-from-titan/ - 2026-03-03T20:42:11.000Z + 2026-03-03T20:42:11.377Z monthly 0.8 @@ -58808,7 +58997,7 @@ https://www.rfc1437.de/2005/01/14/fbi-versenkt-170-mio-dollar-software-projekt/ - 2026-03-03T20:42:15.000Z + 2026-03-03T20:42:15.608Z monthly 0.8 @@ -58817,7 +59006,7 @@ https://www.rfc1437.de/2005/01/14/gericht-stoppt-anzeigenkampagne-von-krebsarzt-rath/ - 2026-03-03T20:42:19.000Z + 2026-03-03T20:42:19.891Z monthly 0.8 @@ -58826,7 +59015,7 @@ https://www.rfc1437.de/2005/01/14/google-bekommt-patent-auf-suchbegriffhervorhebung/ - 2026-03-03T20:42:24.000Z + 2026-03-03T20:42:24.667Z monthly 0.8 @@ -58835,7 +59024,7 @@ https://www.rfc1437.de/2005/01/14/heise-online-huygens-countdown-8h-doch-ein-paar/ - 2026-03-03T20:42:28.000Z + 2026-03-03T20:42:28.941Z monthly 0.8 @@ -58844,7 +59033,7 @@ https://www.rfc1437.de/2005/01/14/heise-online-neue-zuercher-zeitung-digitalisiert/ - 2026-03-03T20:42:33.000Z + 2026-03-03T20:42:33.233Z monthly 0.8 @@ -58853,7 +59042,7 @@ https://www.rfc1437.de/2005/01/14/mordermittlungen-modemacher-moshammer-ist-tot/ - 2026-03-03T20:42:37.000Z + 2026-03-03T20:42:37.540Z monthly 0.8 @@ -58862,7 +59051,7 @@ https://www.rfc1437.de/2005/01/14/pecl-package-apc/ - 2026-03-03T20:42:41.000Z + 2026-03-03T20:42:41.913Z monthly 0.8 @@ -58871,7 +59060,7 @@ https://www.rfc1437.de/2005/01/14/raumsonde-huygens-sendet-daten/ - 2026-03-03T20:42:45.000Z + 2026-03-03T20:42:45.666Z monthly 0.8 @@ -58880,7 +59069,7 @@ https://www.rfc1437.de/2005/01/14/suchbegriffs-zeitgeist-ist-wieder-da/ - 2026-03-03T20:42:50.000Z + 2026-03-03T20:42:50.504Z monthly 0.8 @@ -58889,7 +59078,7 @@ https://www.rfc1437.de/2005/01/14/surbl-spam-uri-realtime-blocklists/ - 2026-03-03T20:42:54.000Z + 2026-03-03T20:42:54.244Z monthly 0.8 @@ -58898,7 +59087,7 @@ https://www.rfc1437.de/2005/01/14/vw-zahlungen-bundestagsabgeordneter-tritt-zuruck/ - 2026-03-03T20:42:59.000Z + 2026-03-03T20:42:59.123Z monthly 0.8 @@ -58907,7 +59096,7 @@ https://www.rfc1437.de/2005/01/13/caching-fur-php-systeme/ - 2026-03-03T20:43:03.000Z + 2026-03-03T20:43:03.867Z monthly 0.8 @@ -58916,7 +59105,7 @@ https://www.rfc1437.de/2005/01/13/vesper-gegen-ausb-vn-flghfn-mnstrsnbrck-wdrd-vrkhr/ - 2026-03-03T20:43:09.000Z + 2026-03-03T20:43:09.232Z monthly 0.8 @@ -58925,7 +59114,7 @@ https://www.rfc1437.de/2005/01/12/apple-ilife/ - 2026-03-03T20:43:13.000Z + 2026-03-03T20:43:13.489Z monthly 0.8 @@ -58934,7 +59123,7 @@ https://www.rfc1437.de/2005/01/12/ba-bose-heimliche-vaterschaftstests/ - 2026-03-03T20:43:18.000Z + 2026-03-03T20:43:18.783Z monthly 0.8 @@ -58943,7 +59132,7 @@ https://www.rfc1437.de/2005/01/12/das-er-auch-nichts-von-heimlichen/ - 2026-03-03T20:43:23.000Z + 2026-03-03T20:43:23.069Z monthly 0.8 @@ -58952,7 +59141,7 @@ https://www.rfc1437.de/2005/01/12/geheime-vw-richtlinie-fur-zahlungen-an-politiker/ - 2026-03-03T20:43:27.000Z + 2026-03-03T20:43:27.910Z monthly 0.8 @@ -58961,7 +59150,7 @@ https://www.rfc1437.de/2005/01/12/glossary-fur-wordpress/ - 2026-03-03T20:43:32.000Z + 2026-03-03T20:43:32.641Z monthly 0.8 @@ -58970,7 +59159,7 @@ https://www.rfc1437.de/2005/01/12/heise-security-news-aufgedeckt-und-angeklagt/ - 2026-03-03T20:43:37.000Z + 2026-03-03T20:43:37.425Z monthly 0.8 @@ -58979,7 +59168,7 @@ https://www.rfc1437.de/2005/01/12/kommentarspam/ - 2026-03-03T20:43:42.000Z + 2026-03-03T20:43:42.202Z monthly 0.8 @@ -58988,7 +59177,7 @@ https://www.rfc1437.de/2005/01/12/noch-ein-sinnvolles-urteil/ - 2026-03-03T20:43:46.000Z + 2026-03-03T20:43:46.077Z monthly 0.8 @@ -58997,7 +59186,7 @@ https://www.rfc1437.de/2005/01/12/rund-und-gesund-jan-ullrich-auf-mallorca/ - 2026-03-03T20:43:51.000Z + 2026-03-03T20:43:51.069Z monthly 0.8 @@ -59006,7 +59195,7 @@ https://www.rfc1437.de/2005/01/12/second-p0st-celementtree/ - 2026-03-03T20:43:55.000Z + 2026-03-03T20:43:55.617Z monthly 0.8 @@ -59015,7 +59204,7 @@ https://www.rfc1437.de/2005/01/12/symbolics-com-ist-die-aelteste-noch-registrierte/ - 2026-03-03T20:44:00.000Z + 2026-03-03T20:44:00.181Z monthly 0.8 @@ -59024,7 +59213,7 @@ https://www.rfc1437.de/2005/01/12/und-mal-wieder-handy-krampf/ - 2026-03-03T20:44:05.000Z + 2026-03-03T20:44:05.779Z monthly 0.8 @@ -59033,7 +59222,7 @@ https://www.rfc1437.de/2005/01/12/wired-news-verizons-e-mail-embargo-enrages/ - 2026-03-03T20:44:11.000Z + 2026-03-03T20:44:11.587Z monthly 0.8 @@ -59042,7 +59231,7 @@ https://www.rfc1437.de/2005/01/11/andere-apple-neuigkeiten/ - 2026-03-03T20:44:17.000Z + 2026-03-03T20:44:17.203Z monthly 0.8 @@ -59051,7 +59240,7 @@ https://www.rfc1437.de/2005/01/11/apple-mac-mini/ - 2026-03-03T20:44:20.000Z + 2026-03-03T20:44:20.932Z monthly 0.8 @@ -59060,7 +59249,7 @@ https://www.rfc1437.de/2005/01/11/dirtsimpleorg-clos-styl-mthd-cmbntn-fr-gnrc-fnctns/ - 2026-03-03T20:44:26.000Z + 2026-03-03T20:44:26.124Z monthly 0.8 @@ -59069,7 +59258,7 @@ https://www.rfc1437.de/2005/01/11/ibm-on-software-patents/ - 2026-03-03T20:44:30.000Z + 2026-03-03T20:44:30.971Z monthly 0.8 @@ -59078,7 +59267,7 @@ https://www.rfc1437.de/2005/01/10/creative-communists/ - 2026-03-03T20:44:35.000Z + 2026-03-03T20:44:35.236Z monthly 0.8 @@ -59087,7 +59276,7 @@ https://www.rfc1437.de/2005/01/10/friendly-fuedalism-the-tibet-myth/ - 2026-03-03T20:44:40.000Z + 2026-03-03T20:44:40.568Z monthly 0.8 @@ -59096,7 +59285,7 @@ https://www.rfc1437.de/2005/01/10/liste-von-domainregistries-fuer-verschiedene/ - 2026-03-03T20:44:44.000Z + 2026-03-03T20:44:44.807Z monthly 0.8 @@ -59105,7 +59294,7 @@ https://www.rfc1437.de/2005/01/10/mile-high-konto-zeitwissenlog/ - 2026-03-03T20:44:49.000Z + 2026-03-03T20:44:49.544Z monthly 0.8 @@ -59114,7 +59303,7 @@ https://www.rfc1437.de/2005/01/10/t-e-k-t-o-n-i-c-a-2/ - 2026-03-03T20:44:54.000Z + 2026-03-03T20:44:54.513Z monthly 0.8 @@ -59123,7 +59312,7 @@ https://www.rfc1437.de/2005/01/09/canned-my-atropine-ig-syntax-hiliter/ - 2026-03-03T20:44:58.000Z + 2026-03-03T20:44:58.303Z monthly 0.8 @@ -59132,7 +59321,7 @@ https://www.rfc1437.de/2005/01/09/clare-fader-the-vaudevillans-cbrt-fr-th-21st-cntry/ - 2026-03-03T20:45:03.000Z + 2026-03-03T20:45:03.169Z monthly 0.8 @@ -59141,7 +59330,7 @@ https://www.rfc1437.de/2005/01/09/doom3jpg-jpeg-image-800x600-pixels/ - 2026-03-03T20:45:07.000Z + 2026-03-03T20:45:07.883Z monthly 0.8 @@ -59150,7 +59339,7 @@ https://www.rfc1437.de/2005/01/09/geshi-generic-syntax-highlighter-home/ - 2026-03-03T20:45:11.000Z + 2026-03-03T20:45:11.731Z monthly 0.8 @@ -59159,7 +59348,7 @@ https://www.rfc1437.de/2005/01/09/hobixyou-feel-yeah/ - 2026-03-03T20:45:16.000Z + 2026-03-03T20:45:16.939Z monthly 0.8 @@ -59168,7 +59357,7 @@ https://www.rfc1437.de/2005/01/09/kasia-in-a-nutshell-spam-breeds-more-spam/ - 2026-03-03T20:45:22.000Z + 2026-03-03T20:45:22.283Z monthly 0.8 @@ -59177,7 +59366,7 @@ https://www.rfc1437.de/2005/01/09/linux-tuning-the-kernel-with-a-genetic-algorithm/ - 2026-03-03T20:45:26.000Z + 2026-03-03T20:45:26.911Z monthly 0.8 @@ -59186,7 +59375,7 @@ https://www.rfc1437.de/2005/01/09/n-korea-wages-war-on-long-hair/ - 2026-03-03T20:45:31.000Z + 2026-03-03T20:45:31.710Z monthly 0.8 @@ -59195,7 +59384,7 @@ https://www.rfc1437.de/2005/01/09/syp-syntax-highlighting-with-enscript-in-wordpress/ - 2026-03-03T20:45:35.000Z + 2026-03-03T20:45:35.495Z monthly 0.8 @@ -59204,7 +59393,7 @@ https://www.rfc1437.de/2005/01/09/test-fur-das-syntax-highlighting/ - 2026-03-03T20:45:39.000Z + 2026-03-03T20:45:39.400Z monthly 0.8 @@ -59213,7 +59402,7 @@ https://www.rfc1437.de/2005/01/09/validierung-von-wordpress-postings-und-kommentare/ - 2026-03-03T20:45:43.000Z + 2026-03-03T20:45:43.263Z monthly 0.8 @@ -59222,34 +59411,34 @@ https://www.rfc1437.de/2005/01/09/wonko/ - 2026-03-03T20:45:48.000Z + 2026-03-03T20:45:48.038Z monthly 0.8 - - https://www.rfc1437.de/2005/01/08/clement-rechnet-mit-20-prozent-weniger-arbeitslosn/ - 2026-03-03T20:45:52.000Z - monthly - 0.8 - - - - https://www.rfc1437.de/2005/01/08/impressum/ - 2026-03-08T12:14:59.000Z + 2026-07-05T14:31:02.372Z monthly 0.8 + + https://www.rfc1437.de/2005/01/08/clement-rechnet-mit-20-prozent-weniger-arbeitslosn/ + 2026-03-03T20:45:52.447Z + monthly + 0.8 + + + + https://www.rfc1437.de/2005/01/08/plugins-staticize-wordpress-codex/ - 2026-03-03T20:46:01.000Z + 2026-03-03T20:46:01.129Z monthly 0.8 @@ -59258,7 +59447,7 @@ https://www.rfc1437.de/2005/01/08/steves-digicams-konica-minolta-maxxum-7d-user-revw/ - 2026-03-03T20:46:06.000Z + 2026-03-03T20:46:06.400Z monthly 0.8 @@ -59267,7 +59456,7 @@ https://www.rfc1437.de/2005/01/08/was-ist-denn-hier-passiert/ - 2026-03-03T20:46:11.000Z + 2026-03-03T20:46:11.214Z monthly 0.8 @@ -59276,7 +59465,7 @@ https://www.rfc1437.de/2005/01/07/gruene-gegen-verbot-heimlicher-vaterschaftstests/ - 2026-03-03T20:46:15.000Z + 2026-03-03T20:46:15.994Z monthly 0.8 @@ -59285,7 +59474,7 @@ https://www.rfc1437.de/2005/01/07/heftige-kritik-an-meisners-vergleich/ - 2026-03-03T20:46:21.000Z + 2026-03-03T20:46:21.709Z monthly 0.8 @@ -59294,7 +59483,7 @@ https://www.rfc1437.de/2005/01/07/optional-static-typing-stop-the-flames/ - 2026-03-03T20:46:26.000Z + 2026-03-03T20:46:26.532Z monthly 0.8 @@ -59303,7 +59492,7 @@ https://www.rfc1437.de/2005/01/07/probleme-mit-firefox-und-thunderbird-auf-os-x-102/ - 2026-03-03T20:46:31.000Z + 2026-03-03T20:46:31.803Z monthly 0.8 @@ -59312,7 +59501,7 @@ https://www.rfc1437.de/2005/01/07/qemu-cpu-emulator/ - 2026-03-03T20:46:36.000Z + 2026-03-03T20:46:36.594Z monthly 0.8 @@ -59321,7 +59510,7 @@ https://www.rfc1437.de/2005/01/07/rbl-pruefungsseiten-fuer-viele-rbls-auf-einmal/ - 2026-03-03T20:46:41.000Z + 2026-03-03T20:46:41.449Z monthly 0.8 @@ -59330,7 +59519,7 @@ https://www.rfc1437.de/2005/01/07/the-implementation-of-functional-programming-lnggs/ - 2026-03-03T20:46:46.000Z + 2026-03-03T20:46:46.169Z monthly 0.8 @@ -59339,7 +59528,7 @@ https://www.rfc1437.de/2005/01/06/flying-meat-voodoopad/ - 2026-03-03T20:46:50.000Z + 2026-03-03T20:46:50.915Z monthly 0.8 @@ -59348,7 +59537,7 @@ https://www.rfc1437.de/2005/01/06/gaspreise-steigen-wohl-noch-weiter/ - 2026-03-03T20:46:55.000Z + 2026-03-03T20:46:55.685Z monthly 0.8 @@ -59357,7 +59546,7 @@ https://www.rfc1437.de/2005/01/06/kayak-mit-wal/ - 2026-03-03T20:46:59.000Z + 2026-03-03T20:46:59.961Z monthly 0.8 @@ -59366,7 +59555,7 @@ https://www.rfc1437.de/2005/01/06/kodak-easyshare-one-zoom-digital-camera/ - 2026-03-03T20:47:04.000Z + 2026-03-03T20:47:04.695Z monthly 0.8 @@ -59375,7 +59564,7 @@ https://www.rfc1437.de/2005/01/06/npd-funktionaere-bei-gewalttaten-gefilmt/ - 2026-03-03T20:47:09.000Z + 2026-03-03T20:47:09.539Z monthly 0.8 @@ -59384,7 +59573,7 @@ https://www.rfc1437.de/2005/01/06/staatsanwalt-dominik-starb-an-krebs/ - 2026-03-03T20:47:14.000Z + 2026-03-03T20:47:14.739Z monthly 0.8 @@ -59393,7 +59582,7 @@ https://www.rfc1437.de/2005/01/05/first-animation-of-the-world-found-in-burnt-city/ - 2026-03-03T20:47:18.000Z + 2026-03-03T20:47:18.539Z monthly 0.8 @@ -59402,7 +59591,7 @@ https://www.rfc1437.de/2005/01/05/lxr-rnt-md1-crrnt-gnrtn-shlls-wll-mcrsft-vr-fll-th/ - 2026-03-03T20:47:23.000Z + 2026-03-03T20:47:23.373Z monthly 0.8 @@ -59411,7 +59600,7 @@ https://www.rfc1437.de/2005/01/05/modal-web-server-example-part-1/ - 2026-03-03T20:47:28.000Z + 2026-03-03T20:47:28.124Z monthly 0.8 @@ -59420,7 +59609,7 @@ https://www.rfc1437.de/2005/01/05/shutting-down-the-gps-network/ - 2026-03-03T20:47:32.000Z + 2026-03-03T20:47:32.919Z monthly 0.8 @@ -59429,7 +59618,7 @@ https://www.rfc1437.de/2005/01/05/ukraine-janukowitsch-klagt-erneut-gegen-wahlergbns/ - 2026-03-03T20:47:38.000Z + 2026-03-03T20:47:38.109Z monthly 0.8 @@ -59438,7 +59627,7 @@ https://www.rfc1437.de/2005/01/04/aquarium/ - 2026-03-03T20:47:41.000Z + 2026-03-03T20:47:41.539Z monthly 0.8 @@ -59447,7 +59636,7 @@ https://www.rfc1437.de/2005/01/04/borges-home/ - 2026-03-03T20:47:44.000Z + 2026-03-03T20:47:44.927Z monthly 0.8 @@ -59456,7 +59645,7 @@ https://www.rfc1437.de/2005/01/04/bottomfeeder-cross-platform-rss-atom-news/ - 2026-03-07T21:17:22.000Z + 2026-03-07T21:17:22.906Z monthly 0.8 @@ -59465,7 +59654,7 @@ https://www.rfc1437.de/2005/01/04/continuations-mit-python/ - 2026-03-03T20:47:53.000Z + 2026-03-03T20:47:53.012Z monthly 0.8 @@ -59474,7 +59663,7 @@ https://www.rfc1437.de/2005/01/04/glorp-org/ - 2026-03-03T20:47:56.000Z + 2026-03-03T20:47:56.352Z monthly 0.8 @@ -59483,7 +59672,7 @@ https://www.rfc1437.de/2005/01/04/smart-stuff/ - 2026-03-03T20:48:00.000Z + 2026-03-03T20:48:00.138Z monthly 0.8 @@ -59492,7 +59681,7 @@ https://www.rfc1437.de/2005/01/03/appscript-2/ - 2026-03-03T20:48:03.000Z + 2026-03-03T20:48:03.970Z monthly 0.8 @@ -59501,7 +59690,7 @@ https://www.rfc1437.de/2005/01/03/corgis-lassen-queen-sanft-fallen/ - 2026-03-03T20:48:08.000Z + 2026-03-03T20:48:08.868Z monthly 0.8 @@ -59510,7 +59699,7 @@ https://www.rfc1437.de/2005/01/03/easy-to-remember-pins/ - 2026-03-03T20:48:13.000Z + 2026-03-03T20:48:13.602Z monthly 0.8 @@ -59519,7 +59708,7 @@ https://www.rfc1437.de/2005/01/03/lebenslange-haft-fuer-terrorverdaechtige/ - 2026-03-03T20:48:19.000Z + 2026-03-03T20:48:19.365Z monthly 0.8 @@ -59528,7 +59717,7 @@ https://www.rfc1437.de/2005/01/03/pikabellechu-yes-i-am-a-pikaholic-and-proud-of-it/ - 2026-03-03T20:48:23.000Z + 2026-03-03T20:48:23.710Z monthly 0.8 @@ -59537,7 +59726,7 @@ https://www.rfc1437.de/2005/01/03/sicherheitrisiken-in-2005/ - 2026-03-03T20:48:29.000Z + 2026-03-03T20:48:29.009Z monthly 0.8 @@ -59546,7 +59735,7 @@ https://www.rfc1437.de/2005/01/03/springer-hetzt-mal-wieder/ - 2026-03-03T20:48:34.000Z + 2026-03-03T20:48:34.280Z monthly 0.8 @@ -59555,7 +59744,7 @@ https://www.rfc1437.de/2005/01/02/cincomsmalltalkwiki-seaside-tutorial/ - 2026-03-03T20:48:38.000Z + 2026-03-03T20:48:38.091Z monthly 0.8 @@ -59564,7 +59753,7 @@ https://www.rfc1437.de/2005/01/02/impostor/ - 2026-03-03T20:48:41.000Z + 2026-03-03T20:48:41.522Z monthly 0.8 @@ -59573,7 +59762,7 @@ https://www.rfc1437.de/2005/01/02/lisa-apps/ - 2026-03-03T20:48:45.000Z + 2026-03-03T20:48:45.313Z monthly 0.8 @@ -59582,7 +59771,7 @@ https://www.rfc1437.de/2005/01/02/lisa-wird-zweiundzwanzig/ - 2026-03-03T20:48:49.000Z + 2026-03-03T20:48:49.570Z monthly 0.8 @@ -59591,7 +59780,7 @@ https://www.rfc1437.de/2005/01/02/revision-8033-user-arigo-greenlet/ - 2026-03-03T20:48:53.000Z + 2026-03-03T20:48:53.482Z monthly 0.8 @@ -59600,7 +59789,7 @@ https://www.rfc1437.de/2005/01/02/visualworks-store-for-postgresql-documentation/ - 2026-03-03T20:48:57.000Z + 2026-03-03T20:48:57.350Z monthly 0.8 @@ -59609,7 +59798,7 @@ https://www.rfc1437.de/2005/01/01/pngcrush/ - 2026-03-03T20:49:01.000Z + 2026-03-03T20:49:01.171Z monthly 0.8 @@ -59618,7 +59807,7 @@ https://www.rfc1437.de/2004/12/31/aspn-python-cookbook-a-meta-class-that-provides/ - 2026-03-03T20:49:05.000Z + 2026-03-03T20:49:05.536Z monthly 0.8 @@ -59627,7 +59816,7 @@ https://www.rfc1437.de/2004/12/31/gus-mueller-s-website/ - 2026-03-03T20:49:09.000Z + 2026-03-03T20:49:09.408Z monthly 0.8 @@ -59636,7 +59825,7 @@ https://www.rfc1437.de/2004/12/31/recondite-you-don-t-tug-on-superman-s-cape/ - 2026-03-07T21:17:24.000Z + 2026-03-07T21:17:24.489Z monthly 0.8 @@ -59645,7 +59834,7 @@ https://www.rfc1437.de/2004/12/31/ukraine-janukowitsch-gibt-auf/ - 2026-03-03T20:49:19.000Z + 2026-03-03T20:49:19.011Z monthly 0.8 @@ -59654,7 +59843,7 @@ https://www.rfc1437.de/2004/12/31/wem-gehoert-der-bundestag/ - 2026-03-03T20:49:23.000Z + 2026-03-03T20:49:23.925Z monthly 0.8 @@ -59663,7 +59852,7 @@ https://www.rfc1437.de/2004/12/30/hartz-iv-gau-bei-der-arbeitslosengeld-ii-zhlng-pdt/ - 2026-03-03T20:49:29.000Z + 2026-03-03T20:49:29.779Z monthly 0.8 @@ -59672,7 +59861,7 @@ https://www.rfc1437.de/2004/12/30/hilfsmassnahmen-es-droht-streit-zwischen-uno-und-s/ - 2026-03-03T20:49:34.000Z + 2026-03-03T20:49:34.663Z monthly 0.8 @@ -59681,7 +59870,7 @@ https://www.rfc1437.de/2004/12/30/seebeben-verschob-die-erdachse/ - 2026-03-03T20:49:39.000Z + 2026-03-03T20:49:39.465Z monthly 0.8 @@ -59690,7 +59879,7 @@ https://www.rfc1437.de/2004/12/29/kyocera-discontinues-some-35mm-film-products/ - 2026-03-03T20:49:44.000Z + 2026-03-03T20:49:44.303Z monthly 0.8 @@ -59699,7 +59888,7 @@ https://www.rfc1437.de/2004/12/28/logilab-org-aspects-documentation/ - 2026-03-03T20:49:47.000Z + 2026-03-03T20:49:47.753Z monthly 0.8 @@ -59708,7 +59897,7 @@ https://www.rfc1437.de/2004/12/28/tvo-the-vim-outliner/ - 2026-03-03T20:49:51.000Z + 2026-03-03T20:49:51.701Z monthly 0.8 @@ -59717,7 +59906,7 @@ https://www.rfc1437.de/2004/12/27/alice-funktionale-sprache-und-umgebung/ - 2026-03-03T20:49:56.000Z + 2026-03-03T20:49:56.619Z monthly 0.8 @@ -59726,7 +59915,7 @@ https://www.rfc1437.de/2004/12/27/codewalker-fuer-pyton/ - 2026-03-03T20:50:00.000Z + 2026-03-03T20:50:00.410Z monthly 0.8 @@ -59735,7 +59924,7 @@ https://www.rfc1437.de/2004/12/27/dirtsimpleorg-more-forward-chaining-twists/ - 2026-03-03T20:50:05.000Z + 2026-03-03T20:50:05.276Z monthly 0.8 @@ -59744,7 +59933,7 @@ https://www.rfc1437.de/2004/12/27/suedasien/ - 2026-03-03T20:50:09.000Z + 2026-03-03T20:50:09.618Z monthly 0.8 @@ -59753,7 +59942,7 @@ https://www.rfc1437.de/2004/12/27/the-graphing-calculator-story/ - 2026-03-03T20:50:13.000Z + 2026-03-03T20:50:13.061Z monthly 0.8 @@ -59762,7 +59951,7 @@ https://www.rfc1437.de/2004/12/27/xoltar-python-page-2/ - 2026-03-03T20:50:16.000Z + 2026-03-03T20:50:16.862Z monthly 0.8 @@ -59771,7 +59960,7 @@ https://www.rfc1437.de/2004/12/26/python-is-a-weakly-typed-language-which-as-any/ - 2026-03-07T21:17:26.000Z + 2026-03-07T21:17:26.251Z monthly 0.8 @@ -59780,7 +59969,7 @@ https://www.rfc1437.de/2004/12/26/seebeben-toetet-tausende-menschen-in-suedostasien/ - 2026-03-03T20:50:26.000Z + 2026-03-03T20:50:26.119Z monthly 0.8 @@ -59789,7 +59978,7 @@ https://www.rfc1437.de/2004/12/26/snurf-a-python-based-blogging-system/ - 2026-03-03T20:50:30.000Z + 2026-03-03T20:50:30.028Z monthly 0.8 @@ -59798,7 +59987,7 @@ https://www.rfc1437.de/2004/12/26/story-verzoegerte-ausfuehrung-mit-python/ - 2026-03-03T20:50:34.000Z + 2026-03-03T20:50:34.448Z monthly 0.8 @@ -59807,7 +59996,7 @@ https://www.rfc1437.de/2004/12/26/verzoegerte-ausfuehrung-mit-python/ - 2026-03-03T20:50:39.000Z + 2026-03-03T20:50:39.291Z monthly 0.8 @@ -59816,7 +60005,7 @@ https://www.rfc1437.de/2004/12/25/brian-mastenbrook-forth-porn/ - 2026-03-03T20:50:44.000Z + 2026-03-03T20:50:44.122Z monthly 0.8 @@ -59825,7 +60014,7 @@ https://www.rfc1437.de/2004/12/25/erfolgreiche-trennung-von-cassini-und-huygens/ - 2026-03-03T20:50:48.000Z + 2026-03-03T20:50:48.472Z monthly 0.8 @@ -59834,7 +60023,7 @@ https://www.rfc1437.de/2004/12/24/charming-python-implementing-weightless-threads/ - 2026-03-03T20:50:52.000Z + 2026-03-03T20:50:52.901Z monthly 0.8 @@ -59843,7 +60032,7 @@ https://www.rfc1437.de/2004/12/24/contracts-for-python/ - 2026-03-03T20:50:56.000Z + 2026-03-03T20:50:56.337Z monthly 0.8 @@ -59852,7 +60041,7 @@ https://www.rfc1437.de/2004/12/24/fotos-erhaerten-misshandlungen-bei-der-bundeswehr/ - 2026-03-03T20:51:01.000Z + 2026-03-03T20:51:01.129Z monthly 0.8 @@ -59861,7 +60050,7 @@ https://www.rfc1437.de/2004/12/24/microsoft-attempts-to-patent-object-persistence/ - 2026-03-03T20:51:05.000Z + 2026-03-03T20:51:05.504Z monthly 0.8 @@ -59870,7 +60059,7 @@ https://www.rfc1437.de/2004/12/23/adding-optional-static-typing-to-python/ - 2026-03-03T20:51:10.000Z + 2026-03-03T20:51:10.386Z monthly 0.8 @@ -59879,7 +60068,7 @@ https://www.rfc1437.de/2004/12/23/asteroid-in-unmittelbarer-erdnaehe-entdeckt/ - 2026-03-03T20:51:14.000Z + 2026-03-03T20:51:14.280Z monthly 0.8 @@ -59888,7 +60077,7 @@ https://www.rfc1437.de/2004/12/23/der-danke-polen-brief/ - 2026-03-03T20:51:18.000Z + 2026-03-03T20:51:18.127Z monthly 0.8 @@ -59897,7 +60086,7 @@ https://www.rfc1437.de/2004/12/23/ebay-konnte-passwortklau-nicht-verhindern/ - 2026-03-03T20:51:22.000Z + 2026-03-03T20:51:22.398Z monthly 0.8 @@ -59906,7 +60095,7 @@ https://www.rfc1437.de/2004/12/23/simns-chf-kndgt-schmrzhft-nschntt-n-kmmnktnssprt-n/ - 2026-03-03T20:51:27.000Z + 2026-03-03T20:51:27.761Z monthly 0.8 @@ -59915,7 +60104,7 @@ https://www.rfc1437.de/2004/12/23/whys-poignant-guide-to-ruby/ - 2026-03-03T20:51:32.000Z + 2026-03-03T20:51:32.517Z monthly 0.8 @@ -59924,7 +60113,7 @@ https://www.rfc1437.de/2004/12/22/alles-neu-fuer-os2/ - 2026-03-03T20:51:36.000Z + 2026-03-03T20:51:36.802Z monthly 0.8 @@ -59933,7 +60122,7 @@ https://www.rfc1437.de/2004/12/22/bellhop-101b4/ - 2026-03-03T20:51:41.000Z + 2026-03-03T20:51:41.708Z monthly 0.8 @@ -59942,7 +60131,7 @@ https://www.rfc1437.de/2004/12/22/cadmium-akkus-kuenftig-teilweise-verboten/ - 2026-03-03T20:51:46.000Z + 2026-03-03T20:51:46.499Z monthly 0.8 @@ -59951,7 +60140,7 @@ https://www.rfc1437.de/2004/12/22/deutsche-wordpress-community/ - 2026-03-03T20:51:50.000Z + 2026-03-03T20:51:50.750Z monthly 0.8 @@ -59960,7 +60149,7 @@ https://www.rfc1437.de/2004/12/22/eff-tor/ - 2026-03-03T20:51:55.000Z + 2026-03-03T20:51:55.546Z monthly 0.8 @@ -59969,7 +60158,7 @@ https://www.rfc1437.de/2004/12/22/eu-gerichtspraesident-bsttgt-snktnn-ggn-mcrsft-pdt/ - 2026-03-03T20:51:59.000Z + 2026-03-03T20:51:59.410Z monthly 0.8 @@ -59978,7 +60167,7 @@ https://www.rfc1437.de/2004/12/22/irc-identd-und-privacy/ - 2026-03-03T20:52:04.000Z + 2026-03-03T20:52:04.185Z monthly 0.8 @@ -59987,7 +60176,7 @@ https://www.rfc1437.de/2004/12/22/kartellamt-leitet-untersuchung-gegen-gasversorgr-n/ - 2026-03-03T20:52:09.000Z + 2026-03-03T20:52:09.025Z monthly 0.8 @@ -59996,7 +60185,7 @@ https://www.rfc1437.de/2004/12/22/kein-ende-bei-kopierschutz-abmahnwelle-in-sicht/ - 2026-03-03T20:52:13.000Z + 2026-03-03T20:52:13.311Z monthly 0.8 @@ -60005,7 +60194,7 @@ https://www.rfc1437.de/2004/12/22/larry-hagman-ueber-ein-hysterisches-land/ - 2026-03-03T20:52:17.000Z + 2026-03-03T20:52:17.603Z monthly 0.8 @@ -60014,7 +60203,7 @@ https://www.rfc1437.de/2004/12/22/laurenz-meyer-tritt-zurueck/ - 2026-03-03T20:52:22.000Z + 2026-03-03T20:52:22.379Z monthly 0.8 @@ -60023,7 +60212,7 @@ https://www.rfc1437.de/2004/12/22/neolithicofficej-openoffice-deriavative-for-os-x/ - 2026-03-03T20:52:27.000Z + 2026-03-03T20:52:27.212Z monthly 0.8 @@ -60032,7 +60221,7 @@ https://www.rfc1437.de/2004/12/22/paolo-amoroso-mcclim-works-with-clisp/ - 2026-03-03T20:52:32.000Z + 2026-03-03T20:52:32.451Z monthly 0.8 @@ -60041,7 +60230,7 @@ https://www.rfc1437.de/2004/12/22/pornobilder-auf-polizeicomputern/ - 2026-03-03T20:52:37.000Z + 2026-03-03T20:52:37.201Z monthly 0.8 @@ -60050,7 +60239,7 @@ https://www.rfc1437.de/2004/12/22/sco-vs-linux-die-achterbahn-ist-en-schlchts-gschft/ - 2026-03-03T20:52:41.000Z + 2026-03-03T20:52:41.628Z monthly 0.8 @@ -60059,7 +60248,7 @@ https://www.rfc1437.de/2004/12/21/ann-revival-of-the-bytecodehacks/ - 2026-03-03T20:52:46.000Z + 2026-03-03T20:52:46.820Z monthly 0.8 @@ -60068,7 +60257,7 @@ https://www.rfc1437.de/2004/12/21/raus-aus-den-kartoffeln-softwarepatente-vertagt/ - 2026-03-03T20:52:51.000Z + 2026-03-03T20:52:51.076Z monthly 0.8 @@ -60077,7 +60266,7 @@ https://www.rfc1437.de/2004/12/20/enzensberger-stellt-seine-andere-bibliothek-ein/ - 2026-03-03T20:52:56.000Z + 2026-03-03T20:52:56.348Z monthly 0.8 @@ -60086,7 +60275,7 @@ https://www.rfc1437.de/2004/12/20/lg-hamburg-top-level-domain-at-ohne-bezug-z-strrch/ - 2026-03-03T20:53:00.000Z + 2026-03-03T20:53:00.557Z monthly 0.8 @@ -60095,7 +60284,7 @@ https://www.rfc1437.de/2004/12/20/snakesql-pure-python-sql-datbs-spprtng-nlls-nd-jns/ - 2026-03-03T20:53:05.000Z + 2026-03-03T20:53:05.329Z monthly 0.8 @@ -60104,7 +60293,7 @@ https://www.rfc1437.de/2004/12/19/brian-mastenbrook-old-news/ - 2026-03-03T20:53:10.000Z + 2026-03-03T20:53:10.200Z monthly 0.8 @@ -60113,7 +60302,7 @@ https://www.rfc1437.de/2004/12/19/no-software-patents/ - 2026-03-03T20:53:14.000Z + 2026-03-03T20:53:14.025Z monthly 0.8 @@ -60122,7 +60311,7 @@ https://www.rfc1437.de/2004/12/19/reportlab-pyrxp/ - 2026-03-03T20:53:17.000Z + 2026-03-03T20:53:17.804Z monthly 0.8 @@ -60131,7 +60320,7 @@ https://www.rfc1437.de/2004/12/18/gnu-development-tools-for-the-renesas-h8-300-hs/ - 2026-03-03T20:53:21.000Z + 2026-03-03T20:53:21.639Z monthly 0.8 @@ -60140,7 +60329,7 @@ https://www.rfc1437.de/2004/12/18/lego-mindstorms-simulator/ - 2026-03-03T20:53:25.000Z + 2026-03-03T20:53:25.084Z monthly 0.8 @@ -60149,7 +60338,7 @@ https://www.rfc1437.de/2004/12/18/noch-ein-pdt-w-mn-rcxcmm-ch-mt-s-x-102-zm-lfn-krgt/ - 2026-03-03T20:53:30.000Z + 2026-03-03T20:53:30.991Z monthly 0.8 @@ -60158,7 +60347,7 @@ https://www.rfc1437.de/2004/12/18/the-lejos-tutorial/ - 2026-03-03T20:53:35.000Z + 2026-03-03T20:53:35.821Z monthly 0.8 @@ -60167,7 +60356,7 @@ https://www.rfc1437.de/2004/12/18/update-zur-mindstorms-system-uebersicht/ - 2026-03-03T20:53:40.000Z + 2026-03-03T20:53:40.754Z monthly 0.8 @@ -60176,7 +60365,7 @@ https://www.rfc1437.de/2004/12/18/xs-lisp-on-lego-mindstorms/ - 2026-03-03T20:53:45.000Z + 2026-03-03T20:53:45.937Z monthly 0.8 @@ -60185,7 +60374,7 @@ https://www.rfc1437.de/2004/12/17/spitzenjuristen-unter-meineidsverdacht/ - 2026-03-03T20:53:51.000Z + 2026-03-03T20:53:51.132Z monthly 0.8 @@ -60194,7 +60383,7 @@ https://www.rfc1437.de/2004/12/16/datenschuetzer-sicherheitsluecken-bei-steuersoftwr/ - 2026-03-03T20:53:55.000Z + 2026-03-03T20:53:55.902Z monthly 0.8 @@ -60203,7 +60392,7 @@ https://www.rfc1437.de/2004/12/16/detsch-msk-rt-grn-stzt-sch-fr-rdqt-n-kltr-spgl-nln/ - 2026-03-03T20:54:01.000Z + 2026-03-03T20:54:01.118Z monthly 0.8 @@ -60212,7 +60401,7 @@ https://www.rfc1437.de/2004/12/16/energiekonzerne-verteidigen-erdgaspreise/ - 2026-03-03T20:54:05.000Z + 2026-03-03T20:54:05.961Z monthly 0.8 @@ -60221,7 +60410,7 @@ https://www.rfc1437.de/2004/12/16/gadflyb5-sql-relational-database-in-python/ - 2026-03-03T20:54:09.000Z + 2026-03-03T20:54:09.783Z monthly 0.8 @@ -60230,7 +60419,7 @@ https://www.rfc1437.de/2004/12/16/hessen-dehnt-polizeibefugnisse-deutlich-aus/ - 2026-03-03T20:54:13.000Z + 2026-03-03T20:54:13.572Z monthly 0.8 @@ -60239,7 +60428,7 @@ https://www.rfc1437.de/2004/12/16/signal-auf-gruen-fuer-softwarepatentrchtln-ds-rts/ - 2026-03-03T20:54:18.000Z + 2026-03-03T20:54:18.400Z monthly 0.8 @@ -60248,7 +60437,7 @@ https://www.rfc1437.de/2004/12/15/rot-gruen-macht-ernst-mit-dem-akteneinsichtsrecht/ - 2026-03-03T20:54:23.000Z + 2026-03-03T20:54:23.568Z monthly 0.8 @@ -60257,7 +60446,7 @@ https://www.rfc1437.de/2004/12/14/al-qaida-ku-klux-klan-und-pds/ - 2026-03-03T20:54:27.000Z + 2026-03-03T20:54:27.422Z monthly 0.8 @@ -60266,7 +60455,7 @@ https://www.rfc1437.de/2004/12/14/barebones-pure-python-postgresql-client/ - 2026-03-03T20:54:31.000Z + 2026-03-03T20:54:31.167Z monthly 0.8 @@ -60275,7 +60464,7 @@ https://www.rfc1437.de/2004/12/14/captcha/ - 2026-03-03T20:54:34.000Z + 2026-03-03T20:54:34.994Z monthly 0.8 @@ -60284,7 +60473,7 @@ https://www.rfc1437.de/2004/12/14/hamsterfrage-hoehn-hat-eine-antwort/ - 2026-03-03T20:54:40.000Z + 2026-03-03T20:54:40.787Z monthly 0.8 @@ -60293,7 +60482,7 @@ https://www.rfc1437.de/2004/12/14/pirates-response-to-dreamworks/ - 2026-03-03T20:54:45.000Z + 2026-03-03T20:54:45.578Z monthly 0.8 @@ -60302,7 +60491,7 @@ https://www.rfc1437.de/2004/12/14/regurgitate/ - 2026-03-03T20:54:49.000Z + 2026-03-03T20:54:49.010Z monthly 0.8 @@ -60311,7 +60500,7 @@ https://www.rfc1437.de/2004/12/14/stupidsheet/ - 2026-03-03T20:54:52.000Z + 2026-03-03T20:54:52.874Z monthly 0.8 @@ -60320,7 +60509,7 @@ https://www.rfc1437.de/2004/12/14/the-daily-whim-mt-plus-comment-spam-equals-dead-st/ - 2026-03-03T20:54:57.000Z + 2026-03-03T20:54:57.684Z monthly 0.8 @@ -60329,7 +60518,7 @@ https://www.rfc1437.de/2004/12/14/us-filmindustrie-will-gegen-bittorrent-vorgehen/ - 2026-03-03T20:55:01.000Z + 2026-03-03T20:55:01.921Z monthly 0.8 @@ -60338,7 +60527,7 @@ https://www.rfc1437.de/2004/12/14/who-says-safe-computing-must-remain-a-pipe-dream/ - 2026-03-03T20:55:07.000Z + 2026-03-03T20:55:07.188Z monthly 0.8 @@ -60347,7 +60536,7 @@ https://www.rfc1437.de/2004/12/13/duales-system-wechselt-besitzer/ - 2026-03-03T20:55:11.000Z + 2026-03-03T20:55:11.944Z monthly 0.8 @@ -60356,7 +60545,7 @@ https://www.rfc1437.de/2004/12/12/bbc-news-europe-ukraine-candidate-was-poisoned/ - 2026-03-03T20:55:16.000Z + 2026-03-03T20:55:16.715Z monthly 0.8 @@ -60365,7 +60554,7 @@ https://www.rfc1437.de/2004/12/12/dive-into-accessibility/ - 2026-03-03T20:55:20.000Z + 2026-03-03T20:55:20.074Z monthly 0.8 @@ -60374,7 +60563,7 @@ https://www.rfc1437.de/2004/12/12/gb-cia/ - 2026-03-03T20:55:24.000Z + 2026-03-03T20:55:24.914Z monthly 0.8 @@ -60383,7 +60572,7 @@ https://www.rfc1437.de/2004/12/12/languages-for-the-java-vm/ - 2026-03-03T20:55:29.000Z + 2026-03-03T20:55:29.744Z monthly 0.8 @@ -60392,7 +60581,7 @@ https://www.rfc1437.de/2004/12/12/pyx-python-graphics-package/ - 2026-03-03T20:55:33.000Z + 2026-03-03T20:55:33.585Z monthly 0.8 @@ -60401,7 +60590,7 @@ https://www.rfc1437.de/2004/12/12/slavegroove/ - 2026-03-03T20:55:38.000Z + 2026-03-03T20:55:38.901Z monthly 0.8 @@ -60410,7 +60599,7 @@ https://www.rfc1437.de/2004/12/10/bill-clementson-lispworks-44-released/ - 2026-03-03T20:55:43.000Z + 2026-03-03T20:55:43.653Z monthly 0.8 @@ -60419,7 +60608,7 @@ https://www.rfc1437.de/2004/12/10/durus/ - 2026-03-03T20:55:47.000Z + 2026-03-03T20:55:47.536Z monthly 0.8 @@ -60428,7 +60617,7 @@ https://www.rfc1437.de/2004/12/10/statement-coverage-for-python/ - 2026-03-03T20:55:51.000Z + 2026-03-03T20:55:51.297Z monthly 0.8 @@ -60437,7 +60626,7 @@ https://www.rfc1437.de/2004/12/09/australien-umstrittenes-hilfsprogramm-fuer-aborgns/ - 2026-03-03T20:55:56.000Z + 2026-03-03T20:55:56.129Z monthly 0.8 @@ -60446,7 +60635,7 @@ https://www.rfc1437.de/2004/12/09/bundeswehr-struck-meldet-neue-misshandlungsfaelle/ - 2026-03-03T20:56:01.000Z + 2026-03-03T20:56:01.326Z monthly 0.8 @@ -60455,7 +60644,7 @@ https://www.rfc1437.de/2004/12/09/folter-androhung-statsnwlt-frdrt-gldstrf-fr-dschnr/ - 2026-03-03T20:56:06.000Z + 2026-03-03T20:56:06.529Z monthly 0.8 @@ -60464,7 +60653,7 @@ https://www.rfc1437.de/2004/12/09/galaktisches-baby-vor-unserer-kosmischen-haustuer/ - 2026-03-03T20:56:10.000Z + 2026-03-03T20:56:10.872Z monthly 0.8 @@ -60473,7 +60662,7 @@ https://www.rfc1437.de/2004/12/09/ipython-an-enhanced-interactive-python/ - 2026-03-03T20:56:15.000Z + 2026-03-03T20:56:15.702Z monthly 0.8 @@ -60482,7 +60671,7 @@ https://www.rfc1437.de/2004/12/09/logix-home/ - 2026-03-03T20:56:20.000Z + 2026-03-03T20:56:20.495Z monthly 0.8 @@ -60491,7 +60680,7 @@ https://www.rfc1437.de/2004/12/09/pakete-und-paeckchen-werden-teurer/ - 2026-03-03T20:56:25.000Z + 2026-03-03T20:56:25.777Z monthly 0.8 @@ -60500,7 +60689,7 @@ https://www.rfc1437.de/2004/12/09/sensation-in-muenster-saeugetier-entdeckt/ - 2026-03-03T20:56:31.000Z + 2026-03-03T20:56:31.023Z monthly 0.8 @@ -60509,7 +60698,7 @@ https://www.rfc1437.de/2004/12/09/vermittlungsausschuss-stiegler-droht-mit-alleingng/ - 2026-03-03T20:56:36.000Z + 2026-03-03T20:56:36.258Z monthly 0.8 @@ -60518,7 +60707,7 @@ https://www.rfc1437.de/2004/12/09/xmltramp-make-xml-documents-easily-accessible/ - 2026-03-03T20:56:40.000Z + 2026-03-03T20:56:40.211Z monthly 0.8 @@ -60527,7 +60716,7 @@ https://www.rfc1437.de/2004/12/08/rdflib-2-0-4-readme/ - 2026-03-03T20:56:43.000Z + 2026-03-03T20:56:43.952Z monthly 0.8 @@ -60536,7 +60725,7 @@ https://www.rfc1437.de/2004/12/07/ein-lisp-comic-der-makros-erklaert/ - 2026-03-03T20:56:47.000Z + 2026-03-03T20:56:47.831Z monthly 0.8 @@ -60545,7 +60734,7 @@ https://www.rfc1437.de/2004/12/07/tp-wahlbetrug-in-florida/ - 2026-03-03T20:56:52.000Z + 2026-03-03T20:56:52.547Z monthly 0.8 @@ -60554,7 +60743,7 @@ https://www.rfc1437.de/2004/12/06/cdu-parteitag-billigt-gesundheitskompromiss/ - 2026-03-03T20:56:58.000Z + 2026-03-03T20:56:58.264Z monthly 0.8 @@ -60563,7 +60752,7 @@ https://www.rfc1437.de/2004/12/06/knuth-open-letter-to-condolezza-rice/ - 2026-03-03T20:57:02.000Z + 2026-03-03T20:57:02.984Z monthly 0.8 @@ -60572,7 +60761,7 @@ https://www.rfc1437.de/2004/12/06/mal-was-entgegen-dem-xml-hype/ - 2026-03-03T20:57:07.000Z + 2026-03-03T20:57:07.916Z monthly 0.8 @@ -60581,7 +60770,7 @@ https://www.rfc1437.de/2004/12/06/nur-8841-prozent-fuer-merkel/ - 2026-03-03T20:57:13.000Z + 2026-03-03T20:57:13.565Z monthly 0.8 @@ -60590,7 +60779,7 @@ https://www.rfc1437.de/2004/12/05/language-independent-types-for-yaml/ - 2026-03-07T21:17:27.000Z + 2026-03-07T21:17:27.589Z monthly 0.8 @@ -60599,7 +60788,7 @@ https://www.rfc1437.de/2004/12/05/pixelog/ - 2026-03-03T20:57:20.000Z + 2026-03-03T20:57:20.441Z monthly 0.8 @@ -60608,7 +60797,7 @@ https://www.rfc1437.de/2004/12/04/aspn-python-cookbook-spreadsheet/ - 2026-03-03T20:57:24.000Z + 2026-03-03T20:57:24.187Z monthly 0.8 @@ -60617,7 +60806,7 @@ https://www.rfc1437.de/2004/12/04/eon-und-rwe-wollen-strompreise-erhoehen/ - 2026-03-03T20:57:29.000Z + 2026-03-03T20:57:29.061Z monthly 0.8 @@ -60626,7 +60815,7 @@ https://www.rfc1437.de/2004/12/03/bundesgerichtshof-spricht-urteil-zu-domain-grabbng/ - 2026-03-03T20:57:34.000Z + 2026-03-03T20:57:34.186Z monthly 0.8 @@ -60635,7 +60824,7 @@ https://www.rfc1437.de/2004/12/03/living-code/ - 2026-03-03T20:57:38.000Z + 2026-03-03T20:57:38.591Z monthly 0.8 @@ -60644,7 +60833,7 @@ https://www.rfc1437.de/2004/12/03/m-audio-ozonic-keyboard-and-firewire-interface/ - 2026-03-03T20:57:43.000Z + 2026-03-03T20:57:43.732Z monthly 0.8 @@ -60653,7 +60842,7 @@ https://www.rfc1437.de/2004/12/03/renaissance/ - 2026-03-03T20:57:47.000Z + 2026-03-03T20:57:47.240Z monthly 0.8 @@ -60662,7 +60851,7 @@ https://www.rfc1437.de/2004/12/03/sco-vs-linux-eine-journalistische-offenbarung/ - 2026-03-03T20:57:51.000Z + 2026-03-03T20:57:51.974Z monthly 0.8 @@ -60671,7 +60860,7 @@ https://www.rfc1437.de/2004/12/02/pyco-tiny-python-distributions/ - 2026-03-03T20:57:55.000Z + 2026-03-03T20:57:55.801Z monthly 0.8 @@ -60680,7 +60869,7 @@ https://www.rfc1437.de/2004/12/01/lasso-souk/ - 2026-03-03T20:57:59.000Z + 2026-03-03T20:57:59.573Z monthly 0.8 @@ -60689,7 +60878,7 @@ https://www.rfc1437.de/2004/11/30/filmstiftung-ehrt-kuenstler-und-kinos/ - 2026-03-03T20:58:05.000Z + 2026-03-03T20:58:05.659Z monthly 0.8 @@ -60698,7 +60887,7 @@ https://www.rfc1437.de/2004/11/30/module-pycaml/ - 2026-03-03T20:58:11.000Z + 2026-03-03T20:58:11.036Z monthly 0.8 @@ -60707,7 +60896,7 @@ https://www.rfc1437.de/2004/11/30/python-24/ - 2026-03-03T20:58:15.000Z + 2026-03-03T20:58:15.284Z monthly 0.8 @@ -60716,7 +60905,7 @@ https://www.rfc1437.de/2004/11/29/auf-saturnmond-titan-zielen-und-loslassen/ - 2026-03-03T20:58:20.000Z + 2026-03-03T20:58:20.557Z monthly 0.8 @@ -60725,7 +60914,7 @@ https://www.rfc1437.de/2004/11/29/ooops/ - 2026-03-03T20:58:25.000Z + 2026-03-03T20:58:25.612Z monthly 0.8 @@ -60734,7 +60923,7 @@ https://www.rfc1437.de/2004/11/29/pro-linux-news-daffodil-replicator-wird-freie/ - 2026-03-03T20:58:29.000Z + 2026-03-03T20:58:29.609Z monthly 0.8 @@ -60743,7 +60932,7 @@ https://www.rfc1437.de/2004/11/29/python-packages-index-pydb2-0-996a/ - 2026-03-07T21:17:29.000Z + 2026-03-07T21:17:29.161Z monthly 0.8 @@ -60752,7 +60941,7 @@ https://www.rfc1437.de/2004/11/28/debatte-ueber-integration-neu-entfacht/ - 2026-03-03T20:58:39.000Z + 2026-03-03T20:58:39.541Z monthly 0.8 @@ -60761,7 +60950,7 @@ https://www.rfc1437.de/2004/11/28/fngs-th-frfx-scrn-rdr-mltr-xtnsn-stndrds-schmndrds/ - 2026-03-03T20:58:43.000Z + 2026-03-03T20:58:43.811Z monthly 0.8 @@ -60770,7 +60959,7 @@ https://www.rfc1437.de/2004/11/28/tsearch-v2-intro/ - 2026-03-03T20:58:47.000Z + 2026-03-03T20:58:47.658Z monthly 0.8 @@ -60779,7 +60968,7 @@ https://www.rfc1437.de/2004/11/28/tsearch2-full-text-extension-for-postgresql/ - 2026-03-03T20:58:51.000Z + 2026-03-03T20:58:51.542Z monthly 0.8 @@ -60788,7 +60977,7 @@ https://www.rfc1437.de/2004/11/27/aldipod-bei-heise/ - 2026-03-03T20:58:56.000Z + 2026-03-03T20:58:56.805Z monthly 0.8 @@ -60797,7 +60986,7 @@ https://www.rfc1437.de/2004/11/27/luminous-landscape-field-test-the-r-d1/ - 2026-03-03T20:59:02.000Z + 2026-03-03T20:59:02.116Z monthly 0.8 @@ -60806,7 +60995,7 @@ https://www.rfc1437.de/2004/11/27/noch-son-projekt-in-python/ - 2026-03-03T20:59:07.000Z + 2026-03-03T20:59:07.030Z monthly 0.8 @@ -60815,7 +61004,7 @@ https://www.rfc1437.de/2004/11/27/toolserver-framework-for-python-folien/ - 2026-03-03T20:59:11.000Z + 2026-03-03T20:59:11.965Z monthly 0.8 @@ -60824,7 +61013,7 @@ https://www.rfc1437.de/2004/11/26/eine-halbe-million-euro-strafe-fuer-prinz-rnst-gst/ - 2026-03-03T20:59:16.000Z + 2026-03-03T20:59:16.848Z monthly 0.8 @@ -60833,7 +61022,7 @@ https://www.rfc1437.de/2004/11/26/grosser-lauschangriff-auf-den-internet-relay-chat/ - 2026-03-03T20:59:20.000Z + 2026-03-03T20:59:20.840Z monthly 0.8 @@ -60842,7 +61031,7 @@ https://www.rfc1437.de/2004/11/26/kritik-an-vorschlaegen-der-itu-zur-netzverwaltung/ - 2026-03-04T07:07:18.000Z + 2026-03-04T07:07:18.640Z monthly 0.8 @@ -60851,7 +61040,7 @@ https://www.rfc1437.de/2004/11/25/nrw-fdp-der-pleite-general/ - 2026-03-04T07:07:22.000Z + 2026-03-04T07:07:22.705Z monthly 0.8 @@ -60860,7 +61049,7 @@ https://www.rfc1437.de/2004/11/25/simpletal-2/ - 2026-03-04T07:07:25.000Z + 2026-03-04T07:07:25.104Z monthly 0.8 @@ -60869,7 +61058,7 @@ https://www.rfc1437.de/2004/11/23/bankomat-als-spielkonsole/ - 2026-03-04T07:07:28.000Z + 2026-03-04T07:07:28.167Z monthly 0.8 @@ -60878,7 +61067,7 @@ https://www.rfc1437.de/2004/11/23/infinity-to-the-power-of-infinity/ - 2026-03-04T07:07:30.000Z + 2026-03-04T07:07:30.913Z monthly 0.8 @@ -60887,7 +61076,7 @@ https://www.rfc1437.de/2004/11/23/luecke-in-suns-java-plug-ns-gwhrt-zgrff-f-ds-systm/ - 2026-03-04T07:07:34.000Z + 2026-03-04T07:07:34.410Z monthly 0.8 @@ -60896,7 +61085,7 @@ https://www.rfc1437.de/2004/11/23/vw-zahlt-wohl-wieder-keine-gewerbesteuer/ - 2026-03-04T07:07:37.000Z + 2026-03-04T07:07:37.837Z monthly 0.8 @@ -60905,7 +61094,7 @@ https://www.rfc1437.de/2004/11/22/adac-warnt-vor-leichtmobilen/ - 2026-03-04T07:07:41.000Z + 2026-03-04T07:07:41.249Z monthly 0.8 @@ -60914,7 +61103,7 @@ https://www.rfc1437.de/2004/11/22/digital-lumber-inc/ - 2026-03-04T07:07:43.000Z + 2026-03-04T07:07:43.667Z monthly 0.8 @@ -60923,7 +61112,7 @@ https://www.rfc1437.de/2004/11/22/patents-should-meet-basic-tests-of-reason/ - 2026-03-04T07:07:47.000Z + 2026-03-04T07:07:47.125Z monthly 0.8 @@ -60932,7 +61121,7 @@ https://www.rfc1437.de/2004/11/22/pyebay-use-the-ebay-api-from-python/ - 2026-03-07T21:17:30.000Z + 2026-03-07T21:17:30.672Z monthly 0.8 @@ -60941,7 +61130,7 @@ https://www.rfc1437.de/2004/11/22/python-iaq-infrequently-answered-questions/ - 2026-03-04T07:07:52.000Z + 2026-03-04T07:07:52.607Z monthly 0.8 @@ -60950,7 +61139,7 @@ https://www.rfc1437.de/2004/11/22/schrempps-luxus-mercedes-gestohlen/ - 2026-03-04T07:07:56.000Z + 2026-03-04T07:07:56.018Z monthly 0.8 @@ -60959,7 +61148,7 @@ https://www.rfc1437.de/2004/11/22/seehofer-tritt-als-fraktionsvize-zurueck/ - 2026-03-04T07:07:59.000Z + 2026-03-04T07:07:59.748Z monthly 0.8 @@ -60968,7 +61157,7 @@ https://www.rfc1437.de/2004/11/22/slate-language-website-2/ - 2026-03-04T07:08:03.000Z + 2026-03-04T07:08:03.168Z monthly 0.8 @@ -60977,7 +61166,7 @@ https://www.rfc1437.de/2004/11/22/solar-powered-ipod-backup/ - 2026-03-04T07:08:06.000Z + 2026-03-04T07:08:06.562Z monthly 0.8 @@ -60986,7 +61175,7 @@ https://www.rfc1437.de/2004/11/22/the-curl-project/ - 2026-03-04T07:08:09.000Z + 2026-03-04T07:08:09.970Z monthly 0.8 @@ -60995,7 +61184,7 @@ https://www.rfc1437.de/2004/11/22/water-waterlanguageorg/ - 2026-03-04T07:08:13.000Z + 2026-03-04T07:08:13.365Z monthly 0.8 @@ -61004,7 +61193,7 @@ https://www.rfc1437.de/2004/11/22/welcome-to-read4me-project-page/ - 2026-03-04T07:08:15.000Z + 2026-03-04T07:08:15.759Z monthly 0.8 @@ -61013,7 +61202,7 @@ https://www.rfc1437.de/2004/11/22/wxpython-and-wxglade-tutorial/ - 2026-03-04T07:08:18.000Z + 2026-03-04T07:08:18.536Z monthly 0.8 @@ -61022,7 +61211,7 @@ https://www.rfc1437.de/2004/11/21/2entwine-fotobuzz-viewlet/ - 2026-03-04T07:08:21.000Z + 2026-03-04T07:08:21.253Z monthly 0.8 @@ -61031,7 +61220,7 @@ https://www.rfc1437.de/2004/11/21/arachne-gpl-1-73-www-browser-glennmcc/ - 2026-03-04T07:08:24.000Z + 2026-03-04T07:08:24.290Z monthly 0.8 @@ -61040,7 +61229,7 @@ https://www.rfc1437.de/2004/11/21/bundeswehr-rekruten-angeblich-mit-stromstossn-gqlt/ - 2026-03-04T07:08:27.000Z + 2026-03-04T07:08:27.989Z monthly 0.8 @@ -61049,7 +61238,7 @@ https://www.rfc1437.de/2004/11/21/dos-solutions/ - 2026-03-04T07:08:31.000Z + 2026-03-04T07:08:31.003Z monthly 0.8 @@ -61058,7 +61247,7 @@ https://www.rfc1437.de/2004/11/21/download-acta/ - 2026-03-04T07:08:33.000Z + 2026-03-04T07:08:33.957Z monthly 0.8 @@ -61067,7 +61256,7 @@ https://www.rfc1437.de/2004/11/21/onlamp-com-introducing-slony/ - 2026-03-04T07:08:36.000Z + 2026-03-04T07:08:36.899Z monthly 0.8 @@ -61076,7 +61265,7 @@ https://www.rfc1437.de/2004/11/21/reader-sbmttd-r-y-n-ntrnt-prn-ddct-cngrss-t-yr-rsc/ - 2026-03-04T07:08:40.000Z + 2026-03-04T07:08:40.897Z monthly 0.8 @@ -61085,7 +61274,7 @@ https://www.rfc1437.de/2004/11/19/microsoft-angeblicher-soundforge-crack-en-pltzhltr/ - 2026-03-04T07:08:44.000Z + 2026-03-04T07:08:44.605Z monthly 0.8 @@ -61094,7 +61283,7 @@ https://www.rfc1437.de/2004/11/19/siemens-chef-euro-hoch-ist-ein-problem/ - 2026-03-04T07:08:48.000Z + 2026-03-04T07:08:48.033Z monthly 0.8 @@ -61103,7 +61292,7 @@ https://www.rfc1437.de/2004/11/19/vorschlag-zur-guumlte/ - 2026-03-04T07:08:51.000Z + 2026-03-04T07:08:51.464Z monthly 0.8 @@ -61112,7 +61301,7 @@ https://www.rfc1437.de/2004/11/19/whats-new-in-python-24/ - 2026-03-04T07:08:54.000Z + 2026-03-04T07:08:54.882Z monthly 0.8 @@ -61121,7 +61310,7 @@ https://www.rfc1437.de/2004/11/18/csu-seehofer-bleibt-vize-in-partei-und-fraktion/ - 2026-03-04T07:08:58.000Z + 2026-03-04T07:08:58.658Z monthly 0.8 @@ -61130,7 +61319,7 @@ https://www.rfc1437.de/2004/11/18/gopher-offlineimap/ - 2026-03-04T07:09:01.000Z + 2026-03-04T07:09:01.045Z monthly 0.8 @@ -61139,7 +61328,7 @@ https://www.rfc1437.de/2004/11/18/microsoft-chef-wrnt-stsch-rgrngn-vr-dm-nstz-vn-lnx/ - 2026-03-04T07:09:04.000Z + 2026-03-04T07:09:04.093Z monthly 0.8 @@ -61148,7 +61337,7 @@ https://www.rfc1437.de/2004/11/18/webservices/ - 2026-03-04T07:09:07.000Z + 2026-03-04T07:09:07.538Z monthly 0.8 @@ -61157,7 +61346,7 @@ https://www.rfc1437.de/2004/11/17/frontier-scripting/ - 2026-03-04T07:09:10.000Z + 2026-03-04T07:09:10.247Z monthly 0.8 @@ -61166,7 +61355,7 @@ https://www.rfc1437.de/2004/11/17/frontier-tutorials/ - 2026-03-04T07:09:12.000Z + 2026-03-04T07:09:12.653Z monthly 0.8 @@ -61175,7 +61364,7 @@ https://www.rfc1437.de/2004/11/17/linde-verliert-medizinisch-wichtiges-patent/ - 2026-03-04T07:09:16.000Z + 2026-03-04T07:09:16.430Z monthly 0.8 @@ -61184,7 +61373,7 @@ https://www.rfc1437.de/2004/11/17/russland-will-neue-atomwaffe-entwickeln/ - 2026-03-04T07:09:20.000Z + 2026-03-04T07:09:20.168Z monthly 0.8 @@ -61193,7 +61382,7 @@ https://www.rfc1437.de/2004/11/17/serious-first-steps-in-usertalk-scripting/ - 2026-03-04T07:09:22.000Z + 2026-03-04T07:09:22.884Z monthly 0.8 @@ -61202,7 +61391,7 @@ https://www.rfc1437.de/2004/11/17/table-of-contents-for-matt-s-frontier-book/ - 2026-03-04T07:09:25.000Z + 2026-03-04T07:09:25.600Z monthly 0.8 @@ -61211,7 +61400,7 @@ https://www.rfc1437.de/2004/11/17/up-and-running-with-frontier-web-site-management/ - 2026-03-04T07:09:28.000Z + 2026-03-04T07:09:28.343Z monthly 0.8 @@ -61220,7 +61409,7 @@ https://www.rfc1437.de/2004/11/16/hartz-iv-und-die-folgen/ - 2026-03-04T07:09:32.000Z + 2026-03-04T07:09:32.198Z monthly 0.8 @@ -61229,7 +61418,7 @@ https://www.rfc1437.de/2004/11/16/in-der-matrix/ - 2026-03-04T07:09:35.000Z + 2026-03-04T07:09:35.640Z monthly 0.8 @@ -61238,7 +61427,7 @@ https://www.rfc1437.de/2004/11/16/ludwigshafen-festakt-fuer-kohl-abgeblasen/ - 2026-03-04T07:09:39.000Z + 2026-03-04T07:09:39.778Z monthly 0.8 @@ -61247,7 +61436,7 @@ https://www.rfc1437.de/2004/11/16/rechnungshof-scharfe-kritik-an-eichels-politik/ - 2026-03-04T07:09:43.000Z + 2026-03-04T07:09:43.195Z monthly 0.8 @@ -61256,7 +61445,7 @@ https://www.rfc1437.de/2004/11/16/y2k-probleme-bei-lotus-agenda-und-think-tank/ - 2026-03-04T07:09:46.000Z + 2026-03-04T07:09:46.978Z monthly 0.8 @@ -61265,7 +61454,7 @@ https://www.rfc1437.de/2004/11/15/686-black-cross-stud-tool-belt-hats-belts-extrmpcm/ - 2026-03-04T07:09:50.000Z + 2026-03-04T07:09:50.435Z monthly 0.8 @@ -61274,7 +61463,7 @@ https://www.rfc1437.de/2004/11/15/firefox-10/ - 2026-03-04T07:09:54.000Z + 2026-03-04T07:09:54.016Z monthly 0.8 @@ -61283,7 +61472,7 @@ https://www.rfc1437.de/2004/11/15/hplx-net-faqs-the-faq/ - 2026-03-04T07:09:56.000Z + 2026-03-04T07:09:56.896Z monthly 0.8 @@ -61292,7 +61481,7 @@ https://www.rfc1437.de/2004/11/15/microsoft-im-lizenzrausch/ - 2026-03-04T07:10:00.000Z + 2026-03-04T07:10:00.403Z monthly 0.8 @@ -61301,7 +61490,7 @@ https://www.rfc1437.de/2004/11/15/mikel-evins-rad-skater/ - 2026-03-04T07:10:04.000Z + 2026-03-04T07:10:04.401Z monthly 0.8 @@ -61310,7 +61499,7 @@ https://www.rfc1437.de/2004/11/15/pro-linux-dns-entschlackt/ - 2026-03-04T07:10:07.000Z + 2026-03-04T07:10:07.368Z monthly 0.8 @@ -61319,7 +61508,7 @@ https://www.rfc1437.de/2004/11/14/dauphin-dtr-1-files/ - 2026-03-04T07:10:10.000Z + 2026-03-04T07:10:10.260Z monthly 0.8 @@ -61328,7 +61517,7 @@ https://www.rfc1437.de/2004/11/14/hp-100lx-200lx-technical-information/ - 2026-03-04T07:10:13.000Z + 2026-03-04T07:10:13.517Z monthly 0.8 @@ -61337,7 +61526,7 @@ https://www.rfc1437.de/2004/11/14/itu-will-regulierung-uebernehmen/ - 2026-03-04T07:10:17.000Z + 2026-03-04T07:10:17.134Z monthly 0.8 @@ -61346,7 +61535,7 @@ https://www.rfc1437.de/2004/11/14/lhnsnkngsdbtt-rchrpsn-slln-knftg-vm-lhn-bgzgn-wrdn/ - 2026-03-04T07:10:20.000Z + 2026-03-04T07:10:20.826Z monthly 0.8 @@ -61355,7 +61544,7 @@ https://www.rfc1437.de/2004/11/14/lotus-agenda-lauffaehig-fuer-den-hp-200-lx/ - 2026-03-04T07:10:24.000Z + 2026-03-04T07:10:24.749Z monthly 0.8 @@ -61364,7 +61553,7 @@ https://www.rfc1437.de/2004/11/14/maxdos/ - 2026-03-04T07:10:27.000Z + 2026-03-04T07:10:27.734Z monthly 0.8 @@ -61373,7 +61562,7 @@ https://www.rfc1437.de/2004/11/14/newsblitz-drahtloses-ipod-mediensystem-patentiert/ - 2026-03-04T07:10:31.000Z + 2026-03-04T07:10:31.945Z monthly 0.8 @@ -61382,7 +61571,7 @@ https://www.rfc1437.de/2004/11/14/omnigo-software/ - 2026-03-04T07:10:34.000Z + 2026-03-04T07:10:34.949Z monthly 0.8 @@ -61391,7 +61580,7 @@ https://www.rfc1437.de/2004/11/14/palmtop-info-central-news-server/ - 2026-03-04T07:10:37.000Z + 2026-03-04T07:10:37.521Z monthly 0.8 @@ -61400,7 +61589,7 @@ https://www.rfc1437.de/2004/11/14/palmtop-led-light/ - 2026-03-04T07:10:40.000Z + 2026-03-04T07:10:40.450Z monthly 0.8 @@ -61409,7 +61598,7 @@ https://www.rfc1437.de/2004/11/14/revision-7229-user-arigo-greenlet/ - 2026-03-04T07:10:44.000Z + 2026-03-04T07:10:44.619Z monthly 0.8 @@ -61418,7 +61607,7 @@ https://www.rfc1437.de/2004/11/14/s-u-p-e-r-the-largest-200lx-software-archive/ - 2026-03-04T07:10:49.000Z + 2026-03-04T07:10:49.085Z monthly 0.8 @@ -61427,7 +61616,7 @@ https://www.rfc1437.de/2004/11/14/the-degree-confluence-project/ - 2026-03-04T07:10:53.000Z + 2026-03-04T07:10:53.680Z monthly 0.8 @@ -61436,7 +61625,7 @@ https://www.rfc1437.de/2004/11/14/www-lx-the-internet-solution-in-your-pocket/ - 2026-03-04T07:10:57.000Z + 2026-03-04T07:10:57.731Z monthly 0.8 @@ -61445,7 +61634,7 @@ https://www.rfc1437.de/2004/11/13/cdu-politiker-wollen-partei-nach-rechts-oeffnen/ - 2026-03-04T07:11:02.000Z + 2026-03-04T07:11:02.317Z monthly 0.8 @@ -61454,7 +61643,7 @@ https://www.rfc1437.de/2004/11/13/csu-will-kuendigungsschutz-offenbar-stark-nschrnkn/ - 2026-03-04T07:11:06.000Z + 2026-03-04T07:11:06.166Z monthly 0.8 @@ -61463,7 +61652,7 @@ https://www.rfc1437.de/2004/11/13/dirtsimple-org-using-2-4-decorators-with-2-2-and/ - 2026-03-04T07:11:10.000Z + 2026-03-04T07:11:10.051Z monthly 0.8 @@ -61472,7 +61661,7 @@ https://www.rfc1437.de/2004/11/13/schnueffeldienst-warnt-firmen-bei-erwahnng-n-wblgs/ - 2026-03-04T07:11:13.000Z + 2026-03-04T07:11:13.558Z monthly 0.8 @@ -61481,7 +61670,7 @@ https://www.rfc1437.de/2004/11/13/staatsanwaeltin-fordert-acht-jahre-fuer-berlusconi/ - 2026-03-04T07:11:17.000Z + 2026-03-04T07:11:17.887Z monthly 0.8 @@ -61490,7 +61679,7 @@ https://www.rfc1437.de/2004/11/12/deutscher-internetpreis-verliehen/ - 2026-03-04T07:11:22.000Z + 2026-03-04T07:11:22.240Z monthly 0.8 @@ -61499,7 +61688,7 @@ https://www.rfc1437.de/2004/11/12/die-wut-des-heiner-geissler/ - 2026-03-04T07:11:26.000Z + 2026-03-04T07:11:26.590Z monthly 0.8 @@ -61508,7 +61697,7 @@ https://www.rfc1437.de/2004/11/12/gratis-tabletten-fuer-akw-anwohner/ - 2026-03-04T07:11:30.000Z + 2026-03-04T07:11:30.370Z monthly 0.8 @@ -61517,7 +61706,7 @@ https://www.rfc1437.de/2004/11/12/japan-startet-walfangaktion/ - 2026-03-04T07:11:33.000Z + 2026-03-04T07:11:33.367Z monthly 0.8 @@ -61526,7 +61715,7 @@ https://www.rfc1437.de/2004/11/12/mcrsft-ntrnt-xplrr-s-schr-nd-kmfrtbl-w-ll-ndrn-brw/ - 2026-03-04T07:11:37.000Z + 2026-03-04T07:11:37.428Z monthly 0.8 @@ -61535,7 +61724,7 @@ https://www.rfc1437.de/2004/11/12/rechnungshof-kritisiert-toll-collect/ - 2026-03-04T07:11:41.000Z + 2026-03-04T07:11:41.293Z monthly 0.8 @@ -61544,7 +61733,7 @@ https://www.rfc1437.de/2004/11/12/studie-betrug-kostet-gesundheitssektor-milliarden/ - 2026-03-04T07:11:45.000Z + 2026-03-04T07:11:45.486Z monthly 0.8 @@ -61553,7 +61742,7 @@ https://www.rfc1437.de/2004/11/11/condor-project-homepage/ - 2026-03-04T07:11:48.000Z + 2026-03-04T07:11:48.115Z monthly 0.8 @@ -61562,7 +61751,7 @@ https://www.rfc1437.de/2004/11/11/dirtsimple-org-generic-functions-have-landed/ - 2026-03-04T07:11:51.000Z + 2026-03-04T07:11:51.114Z monthly 0.8 @@ -61571,7 +61760,7 @@ https://www.rfc1437.de/2004/11/11/shibazuke-serialization/ - 2026-03-04T07:11:54.000Z + 2026-03-04T07:11:54.018Z monthly 0.8 @@ -61580,7 +61769,7 @@ https://www.rfc1437.de/2004/11/11/tanks-greet-protesters-in-america/ - 2026-03-04T07:11:57.000Z + 2026-03-04T07:11:57.656Z monthly 0.8 @@ -61589,7 +61778,7 @@ https://www.rfc1437.de/2004/11/11/the-more-things-change/ - 2026-03-04T07:12:01.000Z + 2026-03-04T07:12:01.407Z monthly 0.8 @@ -61598,7 +61787,7 @@ https://www.rfc1437.de/2004/11/10/sco-vs-linux-novell-praesentiert-weitere-beweise/ - 2026-03-04T07:12:04.000Z + 2026-03-04T07:12:04.818Z monthly 0.8 @@ -61607,7 +61796,7 @@ https://www.rfc1437.de/2004/11/10/us-bundesrichter-stoppt-guantanamo-tribunal/ - 2026-03-04T07:12:09.000Z + 2026-03-04T07:12:09.324Z monthly 0.8 @@ -61616,7 +61805,7 @@ https://www.rfc1437.de/2004/11/09/die-anweisung-vorsichtige-fahrt-wurde-nicht-gegebn/ - 2026-03-04T07:12:13.000Z + 2026-03-04T07:12:13.521Z monthly 0.8 @@ -61625,7 +61814,7 @@ https://www.rfc1437.de/2004/11/09/ilisten-hat-jemand-damit-erfahrung/ - 2026-03-04T07:12:17.000Z + 2026-03-04T07:12:17.484Z monthly 0.8 @@ -61634,7 +61823,7 @@ https://www.rfc1437.de/2004/11/09/mal-wieder-ein-neuer-gpg-key/ - 2026-03-04T07:12:21.000Z + 2026-03-04T07:12:21.426Z monthly 0.8 @@ -61643,7 +61832,7 @@ https://www.rfc1437.de/2004/11/09/stolpert-open-source-in-der-verwaltng-brs-vrgbrcht/ - 2026-03-04T07:12:25.000Z + 2026-03-04T07:12:25.276Z monthly 0.8 @@ -61652,7 +61841,7 @@ https://www.rfc1437.de/2004/11/08/alle-eu-rechtsdokumente-in-einer-internet-datenbnk/ - 2026-03-04T07:12:28.000Z + 2026-03-04T07:12:28.762Z monthly 0.8 @@ -61661,7 +61850,7 @@ https://www.rfc1437.de/2004/11/08/aspn-python-cookbook-language-detection-using/ - 2026-03-04T07:12:31.000Z + 2026-03-04T07:12:31.843Z monthly 0.8 @@ -61670,7 +61859,7 @@ https://www.rfc1437.de/2004/11/08/confidential-confidential/ - 2026-03-04T07:12:35.000Z + 2026-03-04T07:12:35.788Z monthly 0.8 @@ -61679,7 +61868,7 @@ https://www.rfc1437.de/2004/11/08/das-klima-der-angst/ - 2026-03-04T07:12:39.000Z + 2026-03-04T07:12:39.004Z monthly 0.8 @@ -61688,7 +61877,7 @@ https://www.rfc1437.de/2004/11/08/debatte-um-laengere-arbeitszeit-haelt-an/ - 2026-03-04T07:12:43.000Z + 2026-03-04T07:12:43.262Z monthly 0.8 @@ -61697,7 +61886,7 @@ https://www.rfc1437.de/2004/11/08/erste-teilprivatisierte-haftanstalt-in-deutschland/ - 2026-03-04T07:12:48.000Z + 2026-03-04T07:12:48.455Z monthly 0.8 @@ -61706,7 +61895,7 @@ https://www.rfc1437.de/2004/11/08/frontier-kernel/ - 2026-03-04T07:12:51.000Z + 2026-03-04T07:12:51.706Z monthly 0.8 @@ -61715,7 +61904,7 @@ https://www.rfc1437.de/2004/11/08/pylog-a-first-order-logic-library-in-python-2/ - 2026-03-07T21:17:32.000Z + 2026-03-07T21:17:32.309Z monthly 0.8 @@ -61724,7 +61913,7 @@ https://www.rfc1437.de/2004/11/08/zopeorg-zopex3-300/ - 2026-03-04T07:13:01.000Z + 2026-03-04T07:13:01.887Z monthly 0.8 @@ -61733,7 +61922,7 @@ https://www.rfc1437.de/2004/11/07/atomkraftgegner-bei-unfall-mit-castor-zug-getoetet/ - 2026-03-04T07:13:08.000Z + 2026-03-04T07:13:08.140Z monthly 0.8 @@ -61742,7 +61931,7 @@ https://www.rfc1437.de/2004/11/07/factor-programming-language/ - 2026-03-04T07:13:13.000Z + 2026-03-04T07:13:13.815Z monthly 0.8 @@ -61751,7 +61940,7 @@ https://www.rfc1437.de/2004/11/07/medienexperte-journalstn-vrtrn-z-ft-f-ntrnt-rchrch/ - 2026-03-04T07:13:19.000Z + 2026-03-04T07:13:19.627Z monthly 0.8 @@ -61760,7 +61949,7 @@ https://www.rfc1437.de/2004/11/07/python-object-sharing-posh/ - 2026-03-04T07:13:23.000Z + 2026-03-04T07:13:23.474Z monthly 0.8 @@ -61769,7 +61958,7 @@ https://www.rfc1437.de/2004/11/06/auf-welchen-feiertag-koennten-sie-verzichten/ - 2026-03-04T07:13:28.000Z + 2026-03-04T07:13:28.635Z monthly 0.8 @@ -61778,7 +61967,7 @@ https://www.rfc1437.de/2004/11/06/debatte-ueber-wehrpflicht-neu-entbrannt/ - 2026-03-04T07:13:33.000Z + 2026-03-04T07:13:33.318Z monthly 0.8 @@ -61787,7 +61976,7 @@ https://www.rfc1437.de/2004/11/06/do-you-remember-this/ - 2026-03-04T07:13:38.000Z + 2026-03-04T07:13:38.384Z monthly 0.8 @@ -61796,7 +61985,7 @@ https://www.rfc1437.de/2004/11/06/gesunde-kindersnacks/ - 2026-03-04T07:13:44.000Z + 2026-03-04T07:13:44.511Z monthly 0.8 @@ -61805,7 +61994,7 @@ https://www.rfc1437.de/2004/11/06/ohio-isnt-over-yet/ - 2026-03-04T07:13:50.000Z + 2026-03-04T07:13:50.568Z monthly 0.8 @@ -61814,7 +62003,7 @@ https://www.rfc1437.de/2004/11/06/python-memory-management/ - 2026-03-04T07:13:55.000Z + 2026-03-04T07:13:55.146Z monthly 0.8 @@ -61823,7 +62012,7 @@ https://www.rfc1437.de/2004/11/06/religion-the-tragedy-of-mankind/ - 2026-03-04T07:14:00.000Z + 2026-03-04T07:14:00.718Z monthly 0.8 @@ -61832,7 +62021,7 @@ https://www.rfc1437.de/2004/11/06/verpflichtng-zr-ml-brwchng-trfft-d-prvdrbrnch-hrt/ - 2026-03-04T07:14:05.000Z + 2026-03-04T07:14:05.427Z monthly 0.8 @@ -61841,7 +62030,7 @@ https://www.rfc1437.de/2004/11/05/crystal-vst-instrument/ - 2026-03-04T07:14:08.000Z + 2026-03-04T07:14:08.372Z monthly 0.8 @@ -61850,7 +62039,7 @@ https://www.rfc1437.de/2004/11/05/erfahrungen-mit-pycrypto/ - 2026-03-04T07:14:12.000Z + 2026-03-04T07:14:12.687Z monthly 0.8 @@ -61859,7 +62048,7 @@ https://www.rfc1437.de/2004/11/05/midikeys-2/ - 2026-03-04T07:14:15.000Z + 2026-03-04T07:14:15.569Z monthly 0.8 @@ -61868,7 +62057,7 @@ https://www.rfc1437.de/2004/11/05/seekbot-seitentest/ - 2026-03-04T07:14:18.000Z + 2026-03-04T07:14:18.478Z monthly 0.8 @@ -61877,7 +62066,7 @@ https://www.rfc1437.de/2004/11/05/sprachlos/ - 2026-03-04T07:14:21.000Z + 2026-03-04T07:14:21.602Z monthly 0.8 @@ -61886,7 +62075,7 @@ https://www.rfc1437.de/2004/11/04/arafats-zustand-dramatisch-verschlechtert/ - 2026-03-04T07:14:25.000Z + 2026-03-04T07:14:25.394Z monthly 0.8 @@ -61895,7 +62084,7 @@ https://www.rfc1437.de/2004/11/04/current-electoral-vote-predictor-2004/ - 2026-03-04T07:14:29.000Z + 2026-03-04T07:14:29.514Z monthly 0.8 @@ -61904,7 +62093,7 @@ https://www.rfc1437.de/2004/11/04/dowser/ - 2026-03-04T07:14:32.000Z + 2026-03-04T07:14:32.859Z monthly 0.8 @@ -61913,7 +62102,7 @@ https://www.rfc1437.de/2004/11/04/m2crypto-installer-for-python-2-3-installer-for/ - 2026-03-04T07:14:37.000Z + 2026-03-04T07:14:37.570Z monthly 0.8 @@ -61922,7 +62111,7 @@ https://www.rfc1437.de/2004/11/04/python-cryptography-toolkit/ - 2026-03-04T07:14:41.000Z + 2026-03-04T07:14:41.274Z monthly 0.8 @@ -61931,7 +62120,7 @@ https://www.rfc1437.de/2004/11/04/tls-lite-2/ - 2026-03-04T07:14:44.000Z + 2026-03-04T07:14:44.878Z monthly 0.8 @@ -61940,7 +62129,7 @@ https://www.rfc1437.de/2004/11/04/vergangenheitsbewaeltigung-mit-der-abrissbirne/ - 2026-03-04T07:14:49.000Z + 2026-03-04T07:14:49.006Z monthly 0.8 @@ -61949,7 +62138,7 @@ https://www.rfc1437.de/2004/11/03/b-dr-ftrgsvrgb-fr-d-nln-jbbrs-dr-b-wrdn-ncht-bstch/ - 2026-03-04T07:14:52.000Z + 2026-03-04T07:14:52.973Z monthly 0.8 @@ -61958,7 +62147,7 @@ https://www.rfc1437.de/2004/11/03/bush-sieht-sich-als-sieger-politik-deutsche-welle/ - 2026-03-04T07:14:57.000Z + 2026-03-04T07:14:57.004Z monthly 0.8 @@ -61967,7 +62156,7 @@ https://www.rfc1437.de/2004/11/03/crn-breaking-news-shadows-loom-ovr-sns-pn-src-plns/ - 2026-03-04T07:15:01.000Z + 2026-03-04T07:15:01.406Z monthly 0.8 @@ -61976,7 +62165,7 @@ https://www.rfc1437.de/2004/11/03/ircnet-org-webchat-login/ - 2026-03-04T07:15:04.000Z + 2026-03-04T07:15:04.214Z monthly 0.8 @@ -61985,7 +62174,7 @@ https://www.rfc1437.de/2004/11/03/jubilaeum-zwei-jahre-hugos-house-of-weblog-horror/ - 2026-03-04T07:15:08.000Z + 2026-03-04T07:15:08.577Z monthly 0.8 @@ -61994,7 +62183,7 @@ https://www.rfc1437.de/2004/11/03/kaeufer-bei-ebay-geniessen-widerrufsrecht/ - 2026-03-04T07:15:13.000Z + 2026-03-04T07:15:13.192Z monthly 0.8 @@ -62003,7 +62192,7 @@ https://www.rfc1437.de/2004/11/03/luecke-im-internet-explorr-rmglcht-vlln-systmzgrff/ - 2026-03-04T07:15:17.000Z + 2026-03-04T07:15:17.192Z monthly 0.8 @@ -62012,7 +62201,7 @@ https://www.rfc1437.de/2004/11/03/schroeder-und-eichel-wollen-tag-der-einheit-kippen/ - 2026-03-04T07:15:21.000Z + 2026-03-04T07:15:21.206Z monthly 0.8 @@ -62021,7 +62210,7 @@ https://www.rfc1437.de/2004/11/03/update-das-weisse-haus-erklaert-bush-zum-wahlsiegr/ - 2026-03-04T07:15:25.000Z + 2026-03-04T07:15:25.212Z monthly 0.8 @@ -62030,7 +62219,7 @@ https://www.rfc1437.de/2004/11/03/useful-vim-features/ - 2026-03-04T07:15:28.000Z + 2026-03-04T07:15:28.030Z monthly 0.8 @@ -62039,7 +62228,7 @@ https://www.rfc1437.de/2004/11/02/airspeed-trac/ - 2026-03-04T07:15:30.000Z + 2026-03-04T07:15:30.872Z monthly 0.8 @@ -62048,7 +62237,7 @@ https://www.rfc1437.de/2004/11/02/ecl-v09d-released/ - 2026-03-04T07:15:35.000Z + 2026-03-04T07:15:35.025Z monthly 0.8 @@ -62057,7 +62246,7 @@ https://www.rfc1437.de/2004/11/02/planet-planet/ - 2026-03-04T07:15:37.000Z + 2026-03-04T07:15:37.821Z monthly 0.8 @@ -62066,7 +62255,7 @@ https://www.rfc1437.de/2004/11/02/python-ipqueue/ - 2026-03-04T07:15:41.000Z + 2026-03-04T07:15:41.792Z monthly 0.8 @@ -62075,7 +62264,7 @@ https://www.rfc1437.de/2004/11/02/shrek-ii/ - 2026-03-04T07:15:44.000Z + 2026-03-04T07:15:44.989Z monthly 0.8 @@ -62084,7 +62273,7 @@ https://www.rfc1437.de/2004/11/02/taz-31104-akte-x-in-der-elbmarsch/ - 2026-03-04T07:15:48.000Z + 2026-03-04T07:15:48.990Z monthly 0.8 @@ -62093,7 +62282,7 @@ https://www.rfc1437.de/2004/11/01/datenschleuder-hacking-biometric-systems/ - 2026-03-04T07:15:52.000Z + 2026-03-04T07:15:52.150Z monthly 0.8 @@ -62102,7 +62291,7 @@ https://www.rfc1437.de/2004/11/01/freshmeat-net-project-details-for-kernel-tcp/ - 2026-03-04T07:15:55.000Z + 2026-03-04T07:15:55.760Z monthly 0.8 @@ -62111,7 +62300,7 @@ https://www.rfc1437.de/2004/11/01/freshmeat-net-project-details-for-proxsmtp/ - 2026-03-04T07:15:58.000Z + 2026-03-04T07:15:58.928Z monthly 0.8 @@ -62120,7 +62309,7 @@ https://www.rfc1437.de/2004/11/01/ichcopy-liebe-dichreg/ - 2026-03-04T07:16:03.000Z + 2026-03-04T07:16:03.280Z monthly 0.8 @@ -62129,7 +62318,7 @@ https://www.rfc1437.de/2004/11/01/kreaturen/ - 2026-03-04T07:16:06.000Z + 2026-03-04T07:16:06.481Z monthly 0.8 @@ -62138,7 +62327,7 @@ https://www.rfc1437.de/2004/11/01/linux-in-kernel-gui/ - 2026-03-04T07:16:09.000Z + 2026-03-04T07:16:09.674Z monthly 0.8 @@ -62147,7 +62336,7 @@ https://www.rfc1437.de/2004/11/01/pasta-text-pasting-service-for-del-icio-us/ - 2026-03-04T07:16:12.000Z + 2026-03-04T07:16:12.943Z monthly 0.8 @@ -62156,7 +62345,7 @@ https://www.rfc1437.de/2004/11/01/polareis-schmilzt-schneller-als-erwartet/ - 2026-03-04T07:16:16.000Z + 2026-03-04T07:16:16.915Z monthly 0.8 @@ -62165,7 +62354,7 @@ https://www.rfc1437.de/2004/11/01/python-discussion-of-how-to-implmnt-th-hltng-prblm/ - 2026-03-04T07:16:20.000Z + 2026-03-04T07:16:20.150Z monthly 0.8 @@ -62174,7 +62363,7 @@ https://www.rfc1437.de/2004/10/31/abmahnung-des-kefk-network-durch-die-kanzlei-wldrf/ - 2026-03-04T07:16:24.000Z + 2026-03-04T07:16:24.881Z monthly 0.8 @@ -62183,7 +62372,7 @@ https://www.rfc1437.de/2004/10/31/holocore-mac-os-x-software-ondeck/ - 2026-03-04T07:16:28.000Z + 2026-03-04T07:16:28.095Z monthly 0.8 @@ -62192,7 +62381,7 @@ https://www.rfc1437.de/2004/10/31/okayrpcprotocol-yaml-implementors-site/ - 2026-03-04T07:16:31.000Z + 2026-03-04T07:16:31.363Z monthly 0.8 @@ -62201,7 +62390,7 @@ https://www.rfc1437.de/2004/10/31/pyyaml-trac/ - 2026-03-04T07:16:34.000Z + 2026-03-04T07:16:34.284Z monthly 0.8 @@ -62210,7 +62399,7 @@ https://www.rfc1437.de/2004/10/31/slip-lt-lt-projects-lt-lt-very-simple-website-for/ - 2026-03-04T07:16:37.000Z + 2026-03-04T07:16:37.487Z monthly 0.8 @@ -62219,7 +62408,7 @@ https://www.rfc1437.de/2004/10/31/syck-yaml-for-ruby-python-php-and-ocaml/ - 2026-03-04T07:16:40.000Z + 2026-03-04T07:16:40.670Z monthly 0.8 @@ -62228,7 +62417,7 @@ https://www.rfc1437.de/2004/10/31/winterzeitumstellung/ - 2026-03-04T07:16:44.000Z + 2026-03-04T07:16:44.592Z monthly 0.8 @@ -62237,7 +62426,7 @@ https://www.rfc1437.de/2004/10/31/yaml-ain-t-markup-language/ - 2026-03-04T07:16:47.000Z + 2026-03-04T07:16:47.419Z monthly 0.8 @@ -62246,7 +62435,7 @@ https://www.rfc1437.de/2004/10/30/backbone-a-gnustep-based-desktop-environment/ - 2026-03-04T07:16:50.000Z + 2026-03-04T07:16:50.635Z monthly 0.8 @@ -62255,7 +62444,7 @@ https://www.rfc1437.de/2004/10/30/index-of-data-gnustep/ - 2026-03-04T07:16:53.000Z + 2026-03-04T07:16:53.801Z monthly 0.8 @@ -62264,7 +62453,7 @@ https://www.rfc1437.de/2004/10/30/initiative-neue-soziale-marktwirtschaft/ - 2026-03-04T07:16:58.000Z + 2026-03-04T07:16:58.188Z monthly 0.8 @@ -62273,7 +62462,7 @@ https://www.rfc1437.de/2004/10/30/paar-liess-sich-kaum-trennen/ - 2026-03-04T07:17:01.000Z + 2026-03-04T07:17:01.416Z monthly 0.8 @@ -62282,7 +62471,7 @@ https://www.rfc1437.de/2004/10/29/bsa-chef-software-piraten-geht-s-vrstrkt-n-dn-krgn/ - 2026-03-04T07:17:05.000Z + 2026-03-04T07:17:05.391Z monthly 0.8 @@ -62291,7 +62480,7 @@ https://www.rfc1437.de/2004/10/29/fuji-discontinues-medium-format-cameras/ - 2026-03-04T07:17:09.000Z + 2026-03-04T07:17:09.880Z monthly 0.8 @@ -62300,7 +62489,7 @@ https://www.rfc1437.de/2004/10/29/gibson-droht-arnold-ich-warte/ - 2026-03-04T07:17:15.000Z + 2026-03-04T07:17:15.180Z monthly 0.8 @@ -62309,7 +62498,7 @@ https://www.rfc1437.de/2004/10/29/links-werden-kriminalisiert/ - 2026-03-04T07:17:19.000Z + 2026-03-04T07:17:19.912Z monthly 0.8 @@ -62318,7 +62507,7 @@ https://www.rfc1437.de/2004/10/29/musikindustrie-gegen-radiomitschnitt/ - 2026-03-04T07:17:24.000Z + 2026-03-04T07:17:24.051Z monthly 0.8 @@ -62327,7 +62516,7 @@ https://www.rfc1437.de/2004/10/29/nicht-genug-soldaten-da-na-und-wo-ist-der-photoshp/ - 2026-03-04T07:17:28.000Z + 2026-03-04T07:17:28.960Z monthly 0.8 @@ -62336,7 +62525,7 @@ https://www.rfc1437.de/2004/10/29/projekt-darkwave/ - 2026-03-04T07:17:33.000Z + 2026-03-04T07:17:33.689Z monthly 0.8 @@ -62345,7 +62534,7 @@ https://www.rfc1437.de/2004/10/29/sandisks-budget-2gb-secure-digital-card/ - 2026-03-04T07:17:38.000Z + 2026-03-04T07:17:38.448Z monthly 0.8 @@ -62354,7 +62543,7 @@ https://www.rfc1437.de/2004/10/29/slime-the-superior-lisp-interaction-mode-for-emacs/ - 2026-03-04T07:17:41.000Z + 2026-03-04T07:17:41.693Z monthly 0.8 @@ -62363,7 +62552,7 @@ https://www.rfc1437.de/2004/10/29/the-security-of-checks-and-balances/ - 2026-03-04T07:17:45.000Z + 2026-03-04T07:17:45.753Z monthly 0.8 @@ -62372,7 +62561,7 @@ https://www.rfc1437.de/2004/10/28/58000-wahlzettel-in-florida-verschwunden/ - 2026-03-04T07:17:50.000Z + 2026-03-04T07:17:50.087Z monthly 0.8 @@ -62381,7 +62570,7 @@ https://www.rfc1437.de/2004/10/28/idrum-the-drum-machine-for-mac-os-x/ - 2026-03-04T07:17:53.000Z + 2026-03-04T07:17:53.526Z monthly 0.8 @@ -62390,7 +62579,7 @@ https://www.rfc1437.de/2004/10/28/opel-krise-konkurrenz-mit-schweden-um-den-vectra/ - 2026-03-04T07:17:57.000Z + 2026-03-04T07:17:57.996Z monthly 0.8 @@ -62399,7 +62588,7 @@ https://www.rfc1437.de/2004/10/28/tunefinder-x/ - 2026-03-04T07:18:02.000Z + 2026-03-04T07:18:02.223Z monthly 0.8 @@ -62408,7 +62597,7 @@ https://www.rfc1437.de/2004/10/28/vermittlungsasschss-vrsndkndn-slln-rcksndkstn-trgn/ - 2026-03-04T07:18:05.000Z + 2026-03-04T07:18:05.947Z monthly 0.8 @@ -62417,7 +62606,7 @@ https://www.rfc1437.de/2004/10/28/website-betreiber-wegen-hardware-meldung-abgemahnt/ - 2026-03-04T07:18:09.000Z + 2026-03-04T07:18:09.777Z monthly 0.8 @@ -62426,7 +62615,7 @@ https://www.rfc1437.de/2004/10/27/barroso-will-kommission-umbilden/ - 2026-03-04T07:18:13.000Z + 2026-03-04T07:18:13.919Z monthly 0.8 @@ -62435,7 +62624,7 @@ https://www.rfc1437.de/2004/10/27/idive-1-1/ - 2026-03-04T07:18:17.000Z + 2026-03-04T07:18:17.301Z monthly 0.8 @@ -62444,7 +62633,7 @@ https://www.rfc1437.de/2004/10/27/openpsion-linux-for-psion-computers/ - 2026-03-04T07:18:20.000Z + 2026-03-04T07:18:20.710Z monthly 0.8 @@ -62453,7 +62642,7 @@ https://www.rfc1437.de/2004/10/27/openzaurus-351-is-released-openzaurus/ - 2026-03-04T07:18:25.000Z + 2026-03-04T07:18:25.277Z monthly 0.8 @@ -62462,7 +62651,7 @@ https://www.rfc1437.de/2004/10/27/phpwiki-open-zaurus-collie-install-guide/ - 2026-03-04T07:18:28.000Z + 2026-03-04T07:18:28.607Z monthly 0.8 @@ -62471,7 +62660,7 @@ https://www.rfc1437.de/2004/10/27/s5-a-simple-standards-based-slide-show-system/ - 2026-03-04T07:18:31.000Z + 2026-03-04T07:18:31.981Z monthly 0.8 @@ -62480,7 +62669,7 @@ https://www.rfc1437.de/2004/10/26/bill-clementson-allegro-cl-70-released/ - 2026-03-04T07:18:36.000Z + 2026-03-04T07:18:36.754Z monthly 0.8 @@ -62489,7 +62678,7 @@ https://www.rfc1437.de/2004/10/26/bundesregierung-befuerchtet-imageverlust/ - 2026-03-04T07:18:41.000Z + 2026-03-04T07:18:41.016Z monthly 0.8 @@ -62498,7 +62687,7 @@ https://www.rfc1437.de/2004/10/26/das-e-business-weblog-die-nervensaege/ - 2026-03-04T07:18:45.000Z + 2026-03-04T07:18:45.242Z monthly 0.8 @@ -62507,7 +62696,7 @@ https://www.rfc1437.de/2004/10/26/double-your-data-volume-with-the-proshift-adapter/ - 2026-03-04T07:18:49.000Z + 2026-03-04T07:18:49.628Z monthly 0.8 @@ -62516,7 +62705,7 @@ https://www.rfc1437.de/2004/10/26/ipod-photo-doesnt-rock/ - 2026-03-04T07:18:53.000Z + 2026-03-04T07:18:53.869Z monthly 0.8 @@ -62525,7 +62714,7 @@ https://www.rfc1437.de/2004/10/26/pic-auf-der-lauer-i/ - 2026-03-04T07:18:58.000Z + 2026-03-04T07:18:58.536Z monthly 0.8 @@ -62534,7 +62723,7 @@ https://www.rfc1437.de/2004/10/26/pic-auf-der-lauer-ii/ - 2026-03-04T07:19:02.000Z + 2026-03-04T07:19:02.373Z monthly 0.8 @@ -62543,7 +62732,7 @@ https://www.rfc1437.de/2004/10/26/pic-herbstbilder-i/ - 2026-03-04T07:19:06.000Z + 2026-03-04T07:19:06.176Z monthly 0.8 @@ -62552,7 +62741,7 @@ https://www.rfc1437.de/2004/10/26/pic-herbstbilder-ii/ - 2026-03-04T07:19:09.000Z + 2026-03-04T07:19:09.946Z monthly 0.8 @@ -62561,7 +62750,7 @@ https://www.rfc1437.de/2004/10/26/pic-herbstbilder-iii/ - 2026-03-04T07:19:13.000Z + 2026-03-04T07:19:13.850Z monthly 0.8 @@ -62570,7 +62759,7 @@ https://www.rfc1437.de/2004/10/26/pic-herbstbilder-iv/ - 2026-03-04T07:19:17.000Z + 2026-03-04T07:19:17.754Z monthly 0.8 @@ -62579,7 +62768,7 @@ https://www.rfc1437.de/2004/10/26/pic-herbstbilder-v/ - 2026-03-04T07:19:21.000Z + 2026-03-04T07:19:21.509Z monthly 0.8 @@ -62588,7 +62777,7 @@ https://www.rfc1437.de/2004/10/26/pic-herbstbilder-vi/ - 2026-03-04T07:19:25.000Z + 2026-03-04T07:19:25.778Z monthly 0.8 @@ -62597,7 +62786,7 @@ https://www.rfc1437.de/2004/10/26/pic-herbstbilder-vii/ - 2026-03-04T07:19:29.000Z + 2026-03-04T07:19:29.576Z monthly 0.8 @@ -62606,7 +62795,7 @@ https://www.rfc1437.de/2004/10/26/sonde-cassini-naeherte-sich-saturn-mond-titan/ - 2026-03-04T07:19:34.000Z + 2026-03-04T07:19:34.146Z monthly 0.8 @@ -62615,7 +62804,7 @@ https://www.rfc1437.de/2004/10/25/eine-partei-in-der-jeder-alles-werden-kann/ - 2026-03-04T07:19:39.000Z + 2026-03-04T07:19:39.404Z monthly 0.8 @@ -62624,7 +62813,7 @@ https://www.rfc1437.de/2004/10/25/fred-miranda-releases-velvia-vision-plug-in/ - 2026-03-04T07:19:44.000Z + 2026-03-04T07:19:44.179Z monthly 0.8 @@ -62633,7 +62822,7 @@ https://www.rfc1437.de/2004/10/25/james-tauber-cleese/ - 2026-03-04T07:19:48.000Z + 2026-03-04T07:19:48.338Z monthly 0.8 @@ -62642,7 +62831,7 @@ https://www.rfc1437.de/2004/10/25/stuttgart-staatsminister-ohrfeigt-parteikollegen/ - 2026-03-04T07:19:53.000Z + 2026-03-04T07:19:53.189Z monthly 0.8 @@ -62651,7 +62840,7 @@ https://www.rfc1437.de/2004/10/24/sarah-mclachlan-world-on-fire/ - 2026-03-04T07:19:57.000Z + 2026-03-04T07:19:57.430Z monthly 0.8 @@ -62660,7 +62849,7 @@ https://www.rfc1437.de/2004/10/23/bloede-user/ - 2026-03-04T07:20:01.000Z + 2026-03-04T07:20:01.789Z monthly 0.8 @@ -62669,7 +62858,7 @@ https://www.rfc1437.de/2004/10/23/etos-compiler-2/ - 2026-03-04T07:20:05.000Z + 2026-03-04T07:20:05.105Z monthly 0.8 @@ -62678,7 +62867,7 @@ https://www.rfc1437.de/2004/10/23/eu-kommissarin-will-castro-sterben-sehen/ - 2026-03-04T07:20:09.000Z + 2026-03-04T07:20:09.691Z monthly 0.8 @@ -62687,7 +62876,7 @@ https://www.rfc1437.de/2004/10/23/gambit-scheme-40-beta-10-released/ - 2026-03-04T07:20:14.000Z + 2026-03-04T07:20:14.414Z monthly 0.8 @@ -62696,7 +62885,7 @@ https://www.rfc1437.de/2004/10/23/gambit-scheme-system/ - 2026-03-04T07:20:17.000Z + 2026-03-04T07:20:17.480Z monthly 0.8 @@ -62705,7 +62894,7 @@ https://www.rfc1437.de/2004/10/23/imovie-faq-home/ - 2026-03-04T07:20:20.000Z + 2026-03-04T07:20:20.827Z monthly 0.8 @@ -62714,7 +62903,7 @@ https://www.rfc1437.de/2004/10/23/retrocomputing-mit-cadr-lisp-machines/ - 2026-03-04T07:20:25.000Z + 2026-03-04T07:20:25.477Z monthly 0.8 @@ -62723,7 +62912,7 @@ https://www.rfc1437.de/2004/10/22/genscher-unterschrieb-irrtuemlich-csu-mitglidsntrg/ - 2026-03-04T07:20:30.000Z + 2026-03-04T07:20:30.718Z monthly 0.8 @@ -62732,7 +62921,7 @@ https://www.rfc1437.de/2004/10/22/java-vorlaeufer-hat-geburtstag-30-jahre-p-system/ - 2026-03-04T07:20:35.000Z + 2026-03-04T07:20:35.702Z monthly 0.8 @@ -62741,7 +62930,7 @@ https://www.rfc1437.de/2004/10/22/ken-iverson-ist-gestorben/ - 2026-03-04T07:20:39.000Z + 2026-03-04T07:20:39.827Z monthly 0.8 @@ -62750,7 +62939,7 @@ https://www.rfc1437.de/2004/10/22/pic-send-in-muenster/ - 2026-03-04T07:20:43.000Z + 2026-03-04T07:20:43.611Z monthly 0.8 @@ -62759,7 +62948,7 @@ https://www.rfc1437.de/2004/10/22/retrocomputing-symbolics-lisp-machine-emulation/ - 2026-03-04T07:20:47.000Z + 2026-03-04T07:20:47.946Z monthly 0.8 @@ -62768,7 +62957,7 @@ https://www.rfc1437.de/2004/10/22/xshelf-1-1-2-for-macos-x/ - 2026-03-04T07:20:51.000Z + 2026-03-04T07:20:51.274Z monthly 0.8 @@ -62777,7 +62966,7 @@ https://www.rfc1437.de/2004/10/21/akupunktur-bald-kassenleistung/ - 2026-03-04T07:20:55.000Z + 2026-03-04T07:20:55.516Z monthly 0.8 @@ -62786,7 +62975,7 @@ https://www.rfc1437.de/2004/10/21/die-suggestivfrage-des-betriebsrats/ - 2026-03-04T07:20:59.000Z + 2026-03-04T07:20:59.693Z monthly 0.8 @@ -62795,7 +62984,7 @@ https://www.rfc1437.de/2004/10/21/lispmeister-a-booting-cadr-emulator/ - 2026-03-04T07:21:04.000Z + 2026-03-04T07:21:04.312Z monthly 0.8 @@ -62804,7 +62993,7 @@ https://www.rfc1437.de/2004/10/21/pic-allerletzte-blumen/ - 2026-03-04T07:21:08.000Z + 2026-03-04T07:21:08.100Z monthly 0.8 @@ -62813,7 +63002,7 @@ https://www.rfc1437.de/2004/10/21/pic-herbstfarben/ - 2026-03-04T07:21:11.000Z + 2026-03-04T07:21:11.922Z monthly 0.8 @@ -62822,7 +63011,7 @@ https://www.rfc1437.de/2004/10/21/pic-raupe/ - 2026-03-04T07:21:15.000Z + 2026-03-04T07:21:15.928Z monthly 0.8 @@ -62831,7 +63020,7 @@ https://www.rfc1437.de/2004/10/21/pic-trauerweide/ - 2026-03-04T07:21:20.000Z + 2026-03-04T07:21:20.115Z monthly 0.8 @@ -62840,7 +63029,7 @@ https://www.rfc1437.de/2004/10/21/tao/ - 2026-03-04T07:21:23.000Z + 2026-03-04T07:21:23.098Z monthly 0.8 @@ -62849,7 +63038,7 @@ https://www.rfc1437.de/2004/10/20/muenster-ist-weltweit-lebenswerteste-stadt/ - 2026-03-04T07:21:27.000Z + 2026-03-04T07:21:27.713Z monthly 0.8 @@ -62858,7 +63047,7 @@ https://www.rfc1437.de/2004/10/20/opel-abstimmung-mit-tricks/ - 2026-03-04T07:21:31.000Z + 2026-03-04T07:21:31.456Z monthly 0.8 @@ -62867,7 +63056,7 @@ https://www.rfc1437.de/2004/10/20/pyro-about/ - 2026-03-07T21:17:33.000Z + 2026-03-07T21:17:33.537Z monthly 0.8 @@ -62876,7 +63065,7 @@ https://www.rfc1437.de/2004/10/20/studie-weniger-kuendigungsschutz-schafft-kn-nn-jbs/ - 2026-03-04T07:21:38.000Z + 2026-03-04T07:21:38.943Z monthly 0.8 @@ -62885,7 +63074,7 @@ https://www.rfc1437.de/2004/10/19/sharp-kills-us-zaurus-line/ - 2026-03-04T07:21:42.000Z + 2026-03-04T07:21:42.758Z monthly 0.8 @@ -62894,7 +63083,7 @@ https://www.rfc1437.de/2004/10/19/slashdot-ip-tunneling-through-nameservers/ - 2026-03-04T07:21:46.000Z + 2026-03-04T07:21:46.936Z monthly 0.8 @@ -62903,7 +63092,7 @@ https://www.rfc1437.de/2004/10/18/aendert-die-brennweite-die-perspektive/ - 2026-03-04T07:21:50.000Z + 2026-03-04T07:21:50.316Z monthly 0.8 @@ -62912,7 +63101,7 @@ https://www.rfc1437.de/2004/10/18/psyche/ - 2026-03-04T07:21:53.000Z + 2026-03-04T07:21:53.635Z monthly 0.8 @@ -62921,7 +63110,7 @@ https://www.rfc1437.de/2004/10/18/schemon/ - 2026-03-04T07:21:56.000Z + 2026-03-04T07:21:56.600Z monthly 0.8 @@ -62930,7 +63119,7 @@ https://www.rfc1437.de/2004/10/18/study-what-we-do/ - 2026-03-04T07:22:00.000Z + 2026-03-04T07:22:00.805Z monthly 0.8 @@ -62939,7 +63128,7 @@ https://www.rfc1437.de/2004/10/18/was-ist-perspektive-2/ - 2026-03-04T07:22:04.000Z + 2026-03-04T07:22:04.228Z monthly 0.8 @@ -62948,7 +63137,7 @@ https://www.rfc1437.de/2004/10/17/a-logging-system-for-python/ - 2026-03-04T07:22:07.000Z + 2026-03-04T07:22:07.693Z monthly 0.8 @@ -62957,7 +63146,7 @@ https://www.rfc1437.de/2004/10/17/animal-planet-corwins-carnival-of-creatures/ - 2026-03-04T07:22:11.000Z + 2026-03-04T07:22:11.969Z monthly 0.8 @@ -62966,7 +63155,7 @@ https://www.rfc1437.de/2004/10/17/path-where-is-my-application-s-home-dir/ - 2026-03-04T07:22:15.000Z + 2026-03-04T07:22:15.582Z monthly 0.8 @@ -62975,7 +63164,7 @@ https://www.rfc1437.de/2004/10/17/syslog-py/ - 2026-03-07T21:17:34.000Z + 2026-03-07T21:17:34.749Z monthly 0.8 @@ -62984,7 +63173,7 @@ https://www.rfc1437.de/2004/10/17/web-sig-draft-of-server-gateway-base-class-now/ - 2026-03-07T21:17:36.000Z + 2026-03-07T21:17:36.302Z monthly 0.8 @@ -62993,7 +63182,7 @@ https://www.rfc1437.de/2004/10/16/bibble-labs-professional-photo-manipulation-softwr/ - 2026-03-04T07:22:26.000Z + 2026-03-04T07:22:26.600Z monthly 0.8 @@ -63002,7 +63191,7 @@ https://www.rfc1437.de/2004/10/16/f-a-functional-language-for-net/ - 2026-03-04T07:22:30.000Z + 2026-03-04T07:22:30.935Z monthly 0.8 @@ -63011,7 +63200,7 @@ https://www.rfc1437.de/2004/10/16/photo-matt-bizarre-windows-behavior/ - 2026-03-04T07:22:35.000Z + 2026-03-04T07:22:35.673Z monthly 0.8 @@ -63020,7 +63209,7 @@ https://www.rfc1437.de/2004/10/15/10000-stellen-werden-gestrichen/ - 2026-03-04T07:22:40.000Z + 2026-03-04T07:22:40.349Z monthly 0.8 @@ -63029,7 +63218,7 @@ https://www.rfc1437.de/2004/10/15/eu-energiekommisar-durchgefallen/ - 2026-03-04T07:22:44.000Z + 2026-03-04T07:22:44.159Z monthly 0.8 @@ -63038,7 +63227,7 @@ https://www.rfc1437.de/2004/10/15/journalisten-und-blogger-sind-keine-konkurrenz/ - 2026-03-04T07:22:47.000Z + 2026-03-04T07:22:47.920Z monthly 0.8 @@ -63047,7 +63236,7 @@ https://www.rfc1437.de/2004/10/15/kanzlei-heyms-dr-bahr-olg-hamm-kn-rhbrrcht-n-wbstn/ - 2026-03-04T07:22:52.000Z + 2026-03-04T07:22:52.292Z monthly 0.8 @@ -63056,7 +63245,7 @@ https://www.rfc1437.de/2004/10/15/merz-rueckzug-ist-endgueltig/ - 2026-03-04T07:22:56.000Z + 2026-03-04T07:22:56.960Z monthly 0.8 @@ -63065,7 +63254,7 @@ https://www.rfc1437.de/2004/10/15/rel-an-open-source-implementatin-f-dt-drwns-ttrl-d/ - 2026-03-04T07:23:01.000Z + 2026-03-04T07:23:01.321Z monthly 0.8 @@ -63074,7 +63263,7 @@ https://www.rfc1437.de/2004/10/15/sco-vs-linux-bild-dir-eine-meinung/ - 2026-03-04T07:23:05.000Z + 2026-03-04T07:23:05.608Z monthly 0.8 @@ -63083,7 +63272,7 @@ https://www.rfc1437.de/2004/10/11/ffmpegx-a-vcd-svcd-cvd-vob-divx-xvid-encoder-for/ - 2026-03-04T07:23:09.000Z + 2026-03-04T07:23:09.680Z monthly 0.8 @@ -63092,7 +63281,7 @@ https://www.rfc1437.de/2004/10/11/gericht-genehmigt-atom-transporte-nach-nrw/ - 2026-03-04T07:23:15.000Z + 2026-03-04T07:23:15.031Z monthly 0.8 @@ -63101,7 +63290,7 @@ https://www.rfc1437.de/2004/10/11/muenster-tillmann-bleibt-oberbuergermeister/ - 2026-03-04T07:23:19.000Z + 2026-03-04T07:23:19.476Z monthly 0.8 @@ -63110,7 +63299,7 @@ https://www.rfc1437.de/2004/10/11/parlamentsausschuss-lehnt-eu-justizkommissar-ab/ - 2026-03-04T07:23:24.000Z + 2026-03-04T07:23:24.788Z monthly 0.8 @@ -63119,7 +63308,7 @@ https://www.rfc1437.de/2004/10/11/provider-haftet-fuer-domain-verlust/ - 2026-03-04T07:23:28.000Z + 2026-03-04T07:23:28.612Z monthly 0.8 @@ -63128,7 +63317,7 @@ https://www.rfc1437.de/2004/10/11/schlag-ins-gesicht-der-t-online-aktionaere/ - 2026-03-04T07:23:33.000Z + 2026-03-04T07:23:33.066Z monthly 0.8 @@ -63137,7 +63326,7 @@ https://www.rfc1437.de/2004/10/11/wxacceleratortable/ - 2026-03-04T07:23:37.000Z + 2026-03-04T07:23:37.110Z monthly 0.8 @@ -63146,7 +63335,7 @@ https://www.rfc1437.de/2004/10/11/wxvalidator-overview/ - 2026-03-04T07:23:41.000Z + 2026-03-04T07:23:41.016Z monthly 0.8 @@ -63155,7 +63344,7 @@ https://www.rfc1437.de/2004/10/10/copy-and-paste-urteil-fuer-webseiten/ - 2026-03-04T07:23:45.000Z + 2026-03-04T07:23:45.965Z monthly 0.8 @@ -63164,7 +63353,7 @@ https://www.rfc1437.de/2004/10/10/ftd-ifo-chef-will-sozialhilfe-um-30-prozent-kuerzn/ - 2026-03-04T07:23:50.000Z + 2026-03-04T07:23:50.507Z monthly 0.8 @@ -63173,7 +63362,7 @@ https://www.rfc1437.de/2004/10/09/daniel-barlow-araneida-09-released/ - 2026-03-04T07:23:55.000Z + 2026-03-04T07:23:55.081Z monthly 0.8 @@ -63182,7 +63371,7 @@ https://www.rfc1437.de/2004/10/09/gez-gebuehr-fuer-internet-pcs-kommt/ - 2026-03-04T07:24:00.000Z + 2026-03-04T07:24:00.161Z monthly 0.8 @@ -63191,7 +63380,7 @@ https://www.rfc1437.de/2004/10/08/awaretek-com-python-tutorials/ - 2026-03-07T21:17:37.000Z + 2026-03-07T21:17:37.629Z monthly 0.8 @@ -63200,7 +63389,7 @@ https://www.rfc1437.de/2004/10/08/gmail-atom-feed/ - 2026-03-04T07:24:06.000Z + 2026-03-04T07:24:06.420Z monthly 0.8 @@ -63209,7 +63398,7 @@ https://www.rfc1437.de/2004/10/08/laszlo-products/ - 2026-03-04T07:24:11.000Z + 2026-03-04T07:24:11.024Z monthly 0.8 @@ -63218,7 +63407,7 @@ https://www.rfc1437.de/2004/10/08/sqlite-307/ - 2026-03-04T07:24:15.000Z + 2026-03-04T07:24:15.276Z monthly 0.8 @@ -63227,7 +63416,7 @@ https://www.rfc1437.de/2004/10/08/und-noch-eine-kleine-aenderung-am-rss-feed/ - 2026-03-04T07:24:19.000Z + 2026-03-04T07:24:19.453Z monthly 0.8 @@ -63236,7 +63425,7 @@ https://www.rfc1437.de/2004/10/07/abschied-vom-gewerbegebiet/ - 2026-03-04T07:24:22.000Z + 2026-03-04T07:24:22.906Z monthly 0.8 @@ -63245,7 +63434,7 @@ https://www.rfc1437.de/2004/10/07/cia-bericht-der-irak-besass-keine-abc-waffen/ - 2026-03-04T07:24:28.000Z + 2026-03-04T07:24:28.903Z monthly 0.8 @@ -63254,7 +63443,7 @@ https://www.rfc1437.de/2004/10/07/debakel-der-schach-grossmeister-ggn-d-schch-mschnn/ - 2026-03-04T07:24:34.000Z + 2026-03-04T07:24:34.280Z monthly 0.8 @@ -63263,7 +63452,7 @@ https://www.rfc1437.de/2004/10/07/kunde-haftet-bei-pin-missbrauch/ - 2026-03-04T07:24:39.000Z + 2026-03-04T07:24:39.341Z monthly 0.8 @@ -63272,7 +63461,7 @@ https://www.rfc1437.de/2004/10/07/microsoft-chef-auf-ipods-lndt-hptschlch-gsthln-msk/ - 2026-03-04T07:24:44.000Z + 2026-03-04T07:24:44.342Z monthly 0.8 @@ -63281,7 +63470,7 @@ https://www.rfc1437.de/2004/10/07/netzaktivist-wegen-hyperlinks-zu-geldstrafe-vrrtlt/ - 2026-03-04T07:24:50.000Z + 2026-03-04T07:24:50.003Z monthly 0.8 @@ -63290,7 +63479,7 @@ https://www.rfc1437.de/2004/10/07/nrw-gefaengnisse-testen-teilprivatisierung/ - 2026-03-04T07:24:54.000Z + 2026-03-04T07:24:54.607Z monthly 0.8 @@ -63299,7 +63488,7 @@ https://www.rfc1437.de/2004/10/07/rollei-announces-rolleiflex-minidigi/ - 2026-03-04T07:25:00.000Z + 2026-03-04T07:25:00.259Z monthly 0.8 @@ -63308,7 +63497,7 @@ https://www.rfc1437.de/2004/10/07/saisonaus-fuer-zabel/ - 2026-03-04T07:25:04.000Z + 2026-03-04T07:25:04.757Z monthly 0.8 @@ -63317,7 +63506,7 @@ https://www.rfc1437.de/2004/10/07/schreckliche-echse-im-federkleid/ - 2026-03-04T07:25:08.000Z + 2026-03-04T07:25:08.921Z monthly 0.8 @@ -63326,7 +63515,7 @@ https://www.rfc1437.de/2004/10/07/sco-vs-linux-antraege-abgelehnt-frist-verlaengert/ - 2026-03-04T07:25:13.000Z + 2026-03-04T07:25:13.915Z monthly 0.8 @@ -63335,7 +63524,7 @@ https://www.rfc1437.de/2004/10/07/wirtschaftsspitzen-fordern-schnelle-steuerreform/ - 2026-03-04T07:25:19.000Z + 2026-03-04T07:25:19.843Z monthly 0.8 @@ -63344,7 +63533,7 @@ https://www.rfc1437.de/2004/10/07/zensur-in-deutschland/ - 2026-03-04T07:25:25.000Z + 2026-03-04T07:25:25.385Z monthly 0.8 @@ -63353,7 +63542,7 @@ https://www.rfc1437.de/2004/10/05/eines-der-landshuter-wahrzeichen/ - 2026-03-04T07:25:29.000Z + 2026-03-04T07:25:29.419Z monthly 0.8 @@ -63362,7 +63551,7 @@ https://www.rfc1437.de/2004/10/04/das-ende-der-welt/ - 2026-03-04T07:25:34.000Z + 2026-03-04T07:25:34.276Z monthly 0.8 @@ -63371,7 +63560,7 @@ https://www.rfc1437.de/2004/10/04/das-hotel-am-ende-der-welt/ - 2026-03-04T07:25:39.000Z + 2026-03-04T07:25:39.146Z monthly 0.8 @@ -63380,7 +63569,7 @@ https://www.rfc1437.de/2004/10/03/die-ungewollten-stimmen/ - 2026-03-04T07:25:43.000Z + 2026-03-04T07:25:43.496Z monthly 0.8 @@ -63389,7 +63578,7 @@ https://www.rfc1437.de/2004/10/03/erik-zabel-ist-vizeweltmeister-im-strassenrennen/ - 2026-03-04T07:25:47.000Z + 2026-03-04T07:25:47.024Z monthly 0.8 @@ -63398,7 +63587,7 @@ https://www.rfc1437.de/2004/10/03/ipod-information-center-the-ultimative-site-http/ - 2026-03-04T07:25:51.000Z + 2026-03-04T07:25:51.304Z monthly 0.8 @@ -63407,7 +63596,7 @@ https://www.rfc1437.de/2004/10/03/mal-wieder-muenchen/ - 2026-03-04T07:25:55.000Z + 2026-03-04T07:25:55.114Z monthly 0.8 @@ -63416,7 +63605,7 @@ https://www.rfc1437.de/2004/10/03/papst-spricht-letzten-habsburg-kaiser-selig/ - 2026-03-04T07:26:00.000Z + 2026-03-04T07:26:00.899Z monthly 0.8 @@ -63425,7 +63614,7 @@ https://www.rfc1437.de/2004/10/03/warez-razzia-die-story-um-ftpwelt/ - 2026-03-04T07:26:04.000Z + 2026-03-04T07:26:04.599Z monthly 0.8 @@ -63434,7 +63623,7 @@ https://www.rfc1437.de/2004/10/02/judith-arndt-weltmeisterin-grosser-tag/ - 2026-03-04T07:26:08.000Z + 2026-03-04T07:26:08.584Z monthly 0.8 @@ -63443,7 +63632,7 @@ https://www.rfc1437.de/2004/10/02/leica-a-la-carte/ - 2026-03-04T07:26:13.000Z + 2026-03-04T07:26:13.356Z monthly 0.8 @@ -63452,7 +63641,7 @@ https://www.rfc1437.de/2004/10/02/pic-blumen/ - 2026-03-04T07:26:18.000Z + 2026-03-04T07:26:18.021Z monthly 0.8 @@ -63461,7 +63650,7 @@ https://www.rfc1437.de/2004/10/02/pic-distel/ - 2026-03-04T07:26:22.000Z + 2026-03-04T07:26:22.339Z monthly 0.8 @@ -63470,7 +63659,7 @@ https://www.rfc1437.de/2004/10/02/pic-herbst-zeit-der-fruechte-und-samen/ - 2026-03-04T07:26:26.000Z + 2026-03-04T07:26:26.680Z monthly 0.8 @@ -63479,7 +63668,7 @@ https://www.rfc1437.de/2004/10/02/pic-pilze/ - 2026-03-04T07:26:30.000Z + 2026-03-04T07:26:30.589Z monthly 0.8 @@ -63488,7 +63677,7 @@ https://www.rfc1437.de/2004/10/02/pic-richtungsweisend/ - 2026-03-04T07:26:34.000Z + 2026-03-04T07:26:34.906Z monthly 0.8 @@ -63506,7 +63695,7 @@ https://www.rfc1437.de/2004/10/02/pic-spiderman/ - 2026-03-04T07:26:43.000Z + 2026-03-04T07:26:43.120Z monthly 0.8 @@ -63515,7 +63704,7 @@ https://www.rfc1437.de/2004/10/02/pic-und-immer-wieder-regen/ - 2026-03-04T07:26:48.000Z + 2026-03-04T07:26:48.364Z monthly 0.8 @@ -63524,7 +63713,7 @@ https://www.rfc1437.de/2004/10/02/us-regierung-zeigt-kaum-interesse-fuer-cmptrschrht/ - 2026-03-04T07:26:52.000Z + 2026-03-04T07:26:52.584Z monthly 0.8 @@ -63533,7 +63722,7 @@ https://www.rfc1437.de/2004/10/01/argentinier-rebellin-darf-nicht-bei-wm-starten/ - 2026-03-04T07:26:57.000Z + 2026-03-04T07:26:57.013Z monthly 0.8 @@ -63542,7 +63731,7 @@ https://www.rfc1437.de/2004/10/01/instiki/ - 2026-03-04T07:27:00.000Z + 2026-03-04T07:27:00.172Z monthly 0.8 @@ -63551,7 +63740,7 @@ https://www.rfc1437.de/2004/10/01/java-runtime-properties-for-mac-os-x/ - 2026-03-04T07:27:03.000Z + 2026-03-04T07:27:03.863Z monthly 0.8 @@ -63560,7 +63749,7 @@ https://www.rfc1437.de/2004/10/01/merck-ruft-medikament-zurueck-aktie-eingebrochen/ - 2026-03-04T07:27:07.000Z + 2026-03-04T07:27:07.937Z monthly 0.8 @@ -63569,7 +63758,7 @@ https://www.rfc1437.de/2004/10/01/pythoncard-home-page/ - 2026-03-04T07:27:11.000Z + 2026-03-04T07:27:11.327Z monthly 0.8 @@ -63578,7 +63767,7 @@ https://www.rfc1437.de/2004/10/01/red-robin-jython/ - 2026-03-04T07:27:14.000Z + 2026-03-04T07:27:14.557Z monthly 0.8 @@ -63587,7 +63776,7 @@ https://www.rfc1437.de/2004/10/01/schmerz-patientin-darf-kein-cannabis-anbauen/ - 2026-03-04T07:27:19.000Z + 2026-03-04T07:27:19.182Z monthly 0.8 @@ -63596,7 +63785,7 @@ https://www.rfc1437.de/2004/10/01/spe-stani-s-python-editor/ - 2026-03-04T07:27:22.000Z + 2026-03-04T07:27:22.731Z monthly 0.8 @@ -63605,7 +63794,7 @@ https://www.rfc1437.de/2004/10/01/sportarzt-ferrari-zu-bewaehrungsstrafe-verurteilt/ - 2026-03-04T07:27:26.000Z + 2026-03-04T07:27:26.664Z monthly 0.8 @@ -63614,7 +63803,7 @@ https://www.rfc1437.de/2004/10/01/tvbrowser-und-mac-os-x/ - 2026-03-04T07:27:31.000Z + 2026-03-04T07:27:31.164Z monthly 0.8 @@ -63623,7 +63812,7 @@ https://www.rfc1437.de/2004/10/01/us-ministerium-wird-jeden-zweiten-tag-gehackt/ - 2026-03-04T07:27:35.000Z + 2026-03-04T07:27:35.306Z monthly 0.8 @@ -63632,7 +63821,7 @@ https://www.rfc1437.de/2004/10/01/wxglade-a-gui-builder-for-wxwidgets-wxpython/ - 2026-03-04T07:27:38.000Z + 2026-03-04T07:27:38.893Z monthly 0.8 @@ -63641,7 +63830,7 @@ https://www.rfc1437.de/2004/09/30/3-zeo/ - 2026-03-04T07:27:42.000Z + 2026-03-04T07:27:42.328Z monthly 0.8 @@ -63650,7 +63839,7 @@ https://www.rfc1437.de/2004/09/30/arachnids-and-pachyderms/ - 2026-03-04T07:27:45.000Z + 2026-03-04T07:27:45.881Z monthly 0.8 @@ -63659,7 +63848,7 @@ https://www.rfc1437.de/2004/09/30/blogmarks-mit-im-weblog-rss-feed/ - 2026-03-04T07:27:49.000Z + 2026-03-04T07:27:49.827Z monthly 0.8 @@ -63668,7 +63857,7 @@ https://www.rfc1437.de/2004/09/30/nthrpsphn-dr-wltnpln-vllzht-sch-nrbttlch-rchv-spgl/ - 2026-03-04T07:27:54.000Z + 2026-03-04T07:27:54.403Z monthly 0.8 @@ -63677,7 +63866,7 @@ https://www.rfc1437.de/2004/09/29/about-dabo/ - 2026-03-04T07:27:58.000Z + 2026-03-04T07:27:58.519Z monthly 0.8 @@ -63686,7 +63875,7 @@ https://www.rfc1437.de/2004/09/29/angriff-auf-freie-netzstrukturen/ - 2026-03-04T07:28:02.000Z + 2026-03-04T07:28:02.525Z monthly 0.8 @@ -63695,7 +63884,7 @@ https://www.rfc1437.de/2004/09/29/bgh-prueft-widerrufsmoeglichkeit-bei-ebay-auktionn/ - 2026-03-04T07:28:07.000Z + 2026-03-04T07:28:07.023Z monthly 0.8 @@ -63704,7 +63893,7 @@ https://www.rfc1437.de/2004/09/29/cliki-araneida/ - 2026-03-04T07:28:10.000Z + 2026-03-04T07:28:10.461Z monthly 0.8 @@ -63713,7 +63902,7 @@ https://www.rfc1437.de/2004/09/29/commodore-32-standalone-z-machine/ - 2026-03-04T07:28:15.000Z + 2026-03-04T07:28:15.047Z monthly 0.8 @@ -63722,7 +63911,7 @@ https://www.rfc1437.de/2004/09/29/csu-will-lernmittelfreiheit-doch-nicht-abschaffen/ - 2026-03-04T07:28:19.000Z + 2026-03-04T07:28:19.534Z monthly 0.8 @@ -63731,7 +63920,7 @@ https://www.rfc1437.de/2004/09/29/frontier-open-source-ist-da/ - 2026-03-04T07:28:23.000Z + 2026-03-04T07:28:23.628Z monthly 0.8 @@ -63740,7 +63929,7 @@ https://www.rfc1437.de/2004/09/29/gibt-ja-manchmal-doch-noch-positives/ - 2026-03-04T07:28:28.000Z + 2026-03-04T07:28:28.433Z monthly 0.8 @@ -63749,7 +63938,7 @@ https://www.rfc1437.de/2004/09/29/hasselblad-to-distribute-new-zeiss-ikon-camr-systm/ - 2026-03-04T07:28:33.000Z + 2026-03-04T07:28:33.086Z monthly 0.8 @@ -63758,7 +63947,7 @@ https://www.rfc1437.de/2004/09/29/mamiya-zd-and-digital-back/ - 2026-03-04T07:28:37.000Z + 2026-03-04T07:28:37.117Z monthly 0.8 @@ -63767,7 +63956,7 @@ https://www.rfc1437.de/2004/09/29/mamiya-zd-datenblatt-bei-digitalkamerade/ - 2026-03-04T07:28:41.000Z + 2026-03-04T07:28:41.104Z monthly 0.8 @@ -63776,7 +63965,7 @@ https://www.rfc1437.de/2004/09/29/mehr-platz-fuer-mac/ - 2026-03-04T07:28:45.000Z + 2026-03-04T07:28:45.908Z monthly 0.8 @@ -63785,7 +63974,7 @@ https://www.rfc1437.de/2004/09/29/schiefer-turm-von-koeln/ - 2026-03-04T07:28:49.000Z + 2026-03-04T07:28:49.484Z monthly 0.8 @@ -63794,7 +63983,7 @@ https://www.rfc1437.de/2004/09/29/schiefer-turm-von-koeln-ermittlungen/ - 2026-03-04T07:28:53.000Z + 2026-03-04T07:28:53.754Z monthly 0.8 @@ -63803,7 +63992,7 @@ https://www.rfc1437.de/2004/09/28/anwalt-bstrtt-knntns-vn-dn-hndlngn-dr-ftpwlt-btrbr/ - 2026-03-04T07:28:58.000Z + 2026-03-04T07:28:58.222Z monthly 0.8 @@ -63812,7 +64001,7 @@ https://www.rfc1437.de/2004/09/28/bundesamt-fuer-strhlnschtz-vrscht-bm-mgng-mt-hndys/ - 2026-03-04T07:29:03.000Z + 2026-03-04T07:29:03.052Z monthly 0.8 @@ -63821,7 +64010,7 @@ https://www.rfc1437.de/2004/09/28/cdu-plant-abbau-von-arbeitnehmerrechten/ - 2026-03-04T07:29:07.000Z + 2026-03-04T07:29:07.678Z monthly 0.8 @@ -63830,7 +64019,7 @@ https://www.rfc1437.de/2004/09/28/contax-i4r/ - 2026-03-04T07:29:11.000Z + 2026-03-04T07:29:11.723Z monthly 0.8 @@ -63839,7 +64028,7 @@ https://www.rfc1437.de/2004/09/28/rollei-runderneuert/ - 2026-03-04T07:29:16.000Z + 2026-03-04T07:29:16.210Z monthly 0.8 @@ -63848,7 +64037,7 @@ https://www.rfc1437.de/2004/09/27/adobe-will-einheitlchs-frmt-fr-dgtlkmr-rhdtn-tblrn/ - 2026-03-04T07:29:20.000Z + 2026-03-04T07:29:20.683Z monthly 0.8 @@ -63857,7 +64046,7 @@ https://www.rfc1437.de/2004/09/27/four-thirds-nachwuchs-olympus-e-300/ - 2026-03-04T07:29:24.000Z + 2026-03-04T07:29:24.389Z monthly 0.8 @@ -63866,7 +64055,7 @@ https://www.rfc1437.de/2004/09/27/gewaltiger-asteroid-fliegt-nahe-an-der-erde-vorbei/ - 2026-03-04T07:29:28.000Z + 2026-03-04T07:29:28.678Z monthly 0.8 @@ -63875,7 +64064,7 @@ https://www.rfc1437.de/2004/09/27/janus-software/ - 2026-03-04T07:29:31.000Z + 2026-03-04T07:29:31.969Z monthly 0.8 @@ -63884,7 +64073,7 @@ https://www.rfc1437.de/2004/09/27/pcp/ - 2026-03-04T07:29:35.000Z + 2026-03-04T07:29:35.181Z monthly 0.8 @@ -63893,7 +64082,7 @@ https://www.rfc1437.de/2004/09/27/sftp-chroot-howto/ - 2026-03-04T07:29:38.000Z + 2026-03-04T07:29:38.798Z monthly 0.8 @@ -63902,7 +64091,7 @@ https://www.rfc1437.de/2004/09/27/sicherheitsluecke-war-ebay-lange-bekannt/ - 2026-03-04T07:29:43.000Z + 2026-03-04T07:29:43.228Z monthly 0.8 @@ -63911,7 +64100,7 @@ https://www.rfc1437.de/2004/09/27/suesse-ueberraschung-im-gas-und-staubnebel/ - 2026-03-04T07:29:47.000Z + 2026-03-04T07:29:47.696Z monthly 0.8 @@ -63920,7 +64109,7 @@ https://www.rfc1437.de/2004/09/27/ullrich-withdraws-from-worlds-tt/ - 2026-03-04T07:29:51.000Z + 2026-03-04T07:29:51.682Z monthly 0.8 @@ -63929,7 +64118,7 @@ https://www.rfc1437.de/2004/09/26/betterhtmlexport/ - 2026-03-04T07:29:55.000Z + 2026-03-04T07:29:55.292Z monthly 0.8 @@ -63938,7 +64127,7 @@ https://www.rfc1437.de/2004/09/26/embedding-gallery-into-an-existing-community/ - 2026-03-04T07:29:58.000Z + 2026-03-04T07:29:58.873Z monthly 0.8 @@ -63947,7 +64136,7 @@ https://www.rfc1437.de/2004/09/26/gallery-your-photos-on-your-website/ - 2026-03-04T07:30:01.000Z + 2026-03-04T07:30:01.996Z monthly 0.8 @@ -63956,7 +64145,7 @@ https://www.rfc1437.de/2004/09/26/iphototogallery/ - 2026-03-04T07:30:05.000Z + 2026-03-04T07:30:05.127Z monthly 0.8 @@ -63965,7 +64154,7 @@ https://www.rfc1437.de/2004/09/26/kommunalwahlen-muenster/ - 2026-03-04T07:30:10.000Z + 2026-03-04T07:30:10.144Z monthly 0.8 @@ -63974,7 +64163,7 @@ https://www.rfc1437.de/2004/09/26/myriad-gallerie/ - 2026-03-04T07:30:13.000Z + 2026-03-04T07:30:13.851Z monthly 0.8 @@ -63983,7 +64172,7 @@ https://www.rfc1437.de/2004/09/26/php-swf-charts/ - 2026-03-04T07:30:17.000Z + 2026-03-04T07:30:17.419Z monthly 0.8 @@ -63992,7 +64181,7 @@ https://www.rfc1437.de/2004/09/26/t-mobile-mit-neuer-fuehrung-ab-2006/ - 2026-03-04T07:30:21.000Z + 2026-03-04T07:30:21.486Z monthly 0.8 @@ -64001,7 +64190,7 @@ https://www.rfc1437.de/2004/09/25/big-tours-pull-from-protour/ - 2026-03-04T07:30:25.000Z + 2026-03-04T07:30:25.131Z monthly 0.8 @@ -64010,7 +64199,7 @@ https://www.rfc1437.de/2004/09/25/chapter-2-building-openmcl-from-its-source-code/ - 2026-03-04T07:30:28.000Z + 2026-03-04T07:30:28.784Z monthly 0.8 @@ -64019,7 +64208,7 @@ https://www.rfc1437.de/2004/09/25/gravierende-sicherheitsluecke-bei-ebay/ - 2026-03-04T07:30:32.000Z + 2026-03-04T07:30:32.817Z monthly 0.8 @@ -64028,7 +64217,7 @@ https://www.rfc1437.de/2004/09/25/mel-base/ - 2026-03-04T07:30:36.000Z + 2026-03-04T07:30:36.045Z monthly 0.8 @@ -64037,7 +64226,7 @@ https://www.rfc1437.de/2004/09/25/schily-mehr-macht-beim-bund-im-anti-terror-kampf/ - 2026-03-04T07:30:40.000Z + 2026-03-04T07:30:40.906Z monthly 0.8 @@ -64046,7 +64235,7 @@ https://www.rfc1437.de/2004/09/24/bayescl-cvs-prerelease/ - 2026-03-08T14:25:05.000Z + 2026-03-08T14:25:05.041Z monthly 0.8 @@ -64055,7 +64244,7 @@ https://www.rfc1437.de/2004/09/24/bdr-praesidentin-sylvia-schenk-tritt-zurueck/ - 2026-03-04T07:30:50.000Z + 2026-03-04T07:30:50.212Z monthly 0.8 @@ -64064,7 +64253,7 @@ https://www.rfc1437.de/2004/09/24/chronik-massenkarambolage-im-all/ - 2026-03-04T07:30:54.000Z + 2026-03-04T07:30:54.232Z monthly 0.8 @@ -64073,7 +64262,7 @@ https://www.rfc1437.de/2004/09/24/cl-prevalence/ - 2026-03-04T07:30:58.000Z + 2026-03-04T07:30:58.282Z monthly 0.8 @@ -64082,7 +64271,7 @@ https://www.rfc1437.de/2004/09/24/groklaw-sco-hat-nie-die-aktuellen-sourcen-verglchn/ - 2026-03-04T07:31:04.000Z + 2026-03-04T07:31:04.396Z monthly 0.8 @@ -64091,7 +64280,7 @@ https://www.rfc1437.de/2004/09/24/heise-onlin-nt-spm-rbtsgrpp-mrd-dr-tf-strcht-d-sgl/ - 2026-03-04T07:31:10.000Z + 2026-03-04T07:31:10.451Z monthly 0.8 @@ -64100,7 +64289,7 @@ https://www.rfc1437.de/2004/09/24/intel-gegen-inside-websites/ - 2026-03-04T07:31:15.000Z + 2026-03-04T07:31:15.967Z monthly 0.8 @@ -64109,7 +64298,7 @@ https://www.rfc1437.de/2004/09/24/lispix-table-of-contents/ - 2026-03-04T07:31:20.000Z + 2026-03-04T07:31:20.101Z monthly 0.8 @@ -64118,7 +64307,7 @@ https://www.rfc1437.de/2004/09/24/metaocaml-homepage/ - 2026-03-04T07:31:25.000Z + 2026-03-04T07:31:25.329Z monthly 0.8 @@ -64127,7 +64316,7 @@ https://www.rfc1437.de/2004/09/24/persistent-lisp-objects/ - 2026-03-04T07:31:29.000Z + 2026-03-04T07:31:29.352Z monthly 0.8 @@ -64136,7 +64325,7 @@ https://www.rfc1437.de/2004/09/24/pg-a-common-lisp-interface-to-postgresql/ - 2026-03-04T07:31:33.000Z + 2026-03-04T07:31:33.770Z monthly 0.8 @@ -64145,7 +64334,7 @@ https://www.rfc1437.de/2004/09/24/projects-at-common-lisp-net/ - 2026-03-04T07:31:38.000Z + 2026-03-04T07:31:38.057Z monthly 0.8 @@ -64154,7 +64343,7 @@ https://www.rfc1437.de/2004/09/24/py2app-builds-its-first-app/ - 2026-03-04T07:31:44.000Z + 2026-03-04T07:31:44.231Z monthly 0.8 @@ -64163,7 +64352,7 @@ https://www.rfc1437.de/2004/09/24/sam-ruby-copy-and-paste/ - 2026-03-04T07:31:49.000Z + 2026-03-04T07:31:49.357Z monthly 0.8 @@ -64172,7 +64361,7 @@ https://www.rfc1437.de/2004/09/24/szon-sammlung-cremer-geht-nach-muenster/ - 2026-03-04T07:31:55.000Z + 2026-03-04T07:31:55.410Z monthly 0.8 @@ -64181,7 +64370,7 @@ https://www.rfc1437.de/2004/09/24/vips-image-processing-library-home-page/ - 2026-03-04T07:31:59.000Z + 2026-03-04T07:31:59.691Z monthly 0.8 @@ -64190,7 +64379,7 @@ https://www.rfc1437.de/2004/09/23/allegroserve-a-web-application-server/ - 2026-03-04T07:32:03.000Z + 2026-03-04T07:32:03.661Z monthly 0.8 @@ -64199,7 +64388,7 @@ https://www.rfc1437.de/2004/09/23/bayern-schafft-lernmittelfreiheit-ab/ - 2026-03-04T07:32:08.000Z + 2026-03-04T07:32:08.275Z monthly 0.8 @@ -64208,7 +64397,7 @@ https://www.rfc1437.de/2004/09/23/clean-corpus/ - 2026-03-04T07:32:12.000Z + 2026-03-04T07:32:12.212Z monthly 0.8 @@ -64217,7 +64406,7 @@ https://www.rfc1437.de/2004/09/23/common-lisp-hypermedia-server-cl-http/ - 2026-03-04T07:32:15.000Z + 2026-03-04T07:32:15.942Z monthly 0.8 @@ -64226,7 +64415,7 @@ https://www.rfc1437.de/2004/09/23/common-lisp-opensource-center/ - 2026-03-04T07:32:19.000Z + 2026-03-04T07:32:19.623Z monthly 0.8 @@ -64235,7 +64424,7 @@ https://www.rfc1437.de/2004/09/23/fall-hamilton-vuelta-b-probe-positiv/ - 2026-03-04T07:32:23.000Z + 2026-03-04T07:32:23.634Z monthly 0.8 @@ -64244,7 +64433,7 @@ https://www.rfc1437.de/2004/09/23/jenoptik-announces-22-megapixel-eyelk-mtn-dgtl-bck/ - 2026-03-04T07:32:28.000Z + 2026-03-04T07:32:28.726Z monthly 0.8 @@ -64253,7 +64442,7 @@ https://www.rfc1437.de/2004/09/23/lisp-news-von-rainer-joswig/ - 2026-03-04T07:32:33.000Z + 2026-03-04T07:32:33.523Z monthly 0.8 @@ -64262,7 +64451,7 @@ https://www.rfc1437.de/2004/09/23/lisp-tools-for-xml/ - 2026-03-04T07:32:37.000Z + 2026-03-04T07:32:37.573Z monthly 0.8 @@ -64271,7 +64460,7 @@ https://www.rfc1437.de/2004/09/23/lyx-wikiwiki-lyxmac/ - 2026-03-04T07:32:42.000Z + 2026-03-04T07:32:42.033Z monthly 0.8 @@ -64280,7 +64469,7 @@ https://www.rfc1437.de/2004/09/23/openmcl-mcclim-beagle-backendjpg/ - 2026-03-04T07:32:47.000Z + 2026-03-04T07:32:47.210Z monthly 0.8 @@ -64289,7 +64478,7 @@ https://www.rfc1437.de/2004/09/23/portable-allegroserve/ - 2026-03-04T07:32:51.000Z + 2026-03-04T07:32:51.507Z monthly 0.8 @@ -64298,7 +64487,7 @@ https://www.rfc1437.de/2004/09/23/s-xml/ - 2026-03-04T07:32:54.000Z + 2026-03-04T07:32:54.874Z monthly 0.8 @@ -64307,7 +64496,7 @@ https://www.rfc1437.de/2004/09/23/s-xml-rpc/ - 2026-03-04T07:32:58.000Z + 2026-03-04T07:32:58.608Z monthly 0.8 @@ -64316,7 +64505,7 @@ https://www.rfc1437.de/2004/09/23/statistical-programming-with-r/ - 2026-03-04T07:33:02.000Z + 2026-03-04T07:33:02.490Z monthly 0.8 @@ -64325,7 +64514,7 @@ https://www.rfc1437.de/2004/09/23/suchmaschinen-eintrag-amp-optimierung/ - 2026-03-04T07:33:06.000Z + 2026-03-04T07:33:06.214Z monthly 0.8 @@ -64334,7 +64523,7 @@ https://www.rfc1437.de/2004/09/23/tex-on-mac-os-x/ - 2026-03-04T07:33:09.000Z + 2026-03-04T07:33:09.916Z monthly 0.8 @@ -64343,7 +64532,7 @@ https://www.rfc1437.de/2004/09/23/wodshd-prdctns-dlg-zwschn-wbdsgnr-nd-schmschnn-rbt/ - 2026-03-04T07:33:13.000Z + 2026-03-04T07:33:13.627Z monthly 0.8 @@ -64352,7 +64541,7 @@ https://www.rfc1437.de/2004/09/23/woodshed-productions-beratung-suchmaschinen/ - 2026-03-04T07:33:17.000Z + 2026-03-04T07:33:17.419Z monthly 0.8 @@ -64361,7 +64550,7 @@ https://www.rfc1437.de/2004/09/23/xml-html-parsers/ - 2026-03-04T07:33:21.000Z + 2026-03-04T07:33:21.098Z monthly 0.8 @@ -64370,7 +64559,7 @@ https://www.rfc1437.de/2004/09/23/zum-kotzen/ - 2026-03-04T07:33:25.000Z + 2026-03-04T07:33:25.650Z monthly 0.8 @@ -64379,7 +64568,7 @@ https://www.rfc1437.de/2004/09/22/buerofrust/ - 2026-03-04T07:33:28.000Z + 2026-03-04T07:33:28.809Z monthly 0.8 @@ -64388,7 +64577,7 @@ https://www.rfc1437.de/2004/09/22/datt-is-der-joersch/ - 2026-03-04T07:33:32.000Z + 2026-03-04T07:33:32.503Z monthly 0.8 @@ -64397,7 +64586,7 @@ https://www.rfc1437.de/2004/09/22/imagewell/ - 2026-03-04T07:33:35.000Z + 2026-03-04T07:33:35.936Z monthly 0.8 @@ -64406,7 +64595,7 @@ https://www.rfc1437.de/2004/09/22/inventory-you-have-no-tea/ - 2026-03-04T07:33:40.000Z + 2026-03-04T07:33:40.803Z monthly 0.8 @@ -64415,7 +64604,7 @@ https://www.rfc1437.de/2004/09/22/lispmeister-assembler-guru-randall-hyde/ - 2026-03-04T07:33:45.000Z + 2026-03-04T07:33:45.406Z monthly 0.8 @@ -64424,7 +64613,7 @@ https://www.rfc1437.de/2004/09/22/make-hard-drives-in-to-speakers/ - 2026-03-04T07:33:49.000Z + 2026-03-04T07:33:49.586Z monthly 0.8 @@ -64433,7 +64622,7 @@ https://www.rfc1437.de/2004/09/22/microsoft-announces-mtp-protocol/ - 2026-03-04T07:33:57.000Z + 2026-03-04T07:33:57.109Z monthly 0.8 @@ -64442,7 +64631,7 @@ https://www.rfc1437.de/2004/09/22/pic-der-stift-ist-staerker/ - 2026-03-04T07:34:02.000Z + 2026-03-04T07:34:02.029Z monthly 0.8 @@ -64451,7 +64640,7 @@ https://www.rfc1437.de/2004/09/22/pic-fahrradparkhaus-muenster/ - 2026-03-04T07:34:07.000Z + 2026-03-04T07:34:07.834Z monthly 0.8 @@ -64460,7 +64649,7 @@ https://www.rfc1437.de/2004/09/22/pic-krimskrams/ - 2026-03-04T07:34:13.000Z + 2026-03-04T07:34:13.047Z monthly 0.8 @@ -64469,7 +64658,7 @@ https://www.rfc1437.de/2004/09/22/pic-licht-und-schatten/ - 2026-03-04T07:34:18.000Z + 2026-03-04T07:34:18.705Z monthly 0.8 @@ -64478,7 +64667,7 @@ https://www.rfc1437.de/2004/09/22/pic-tarnfarben/ - 2026-03-04T07:34:24.000Z + 2026-03-04T07:34:24.963Z monthly 0.8 @@ -64487,7 +64676,7 @@ https://www.rfc1437.de/2004/09/22/pic-wuschel-segge/ - 2026-03-04T07:34:31.000Z + 2026-03-04T07:34:31.286Z monthly 0.8 @@ -64496,7 +64685,7 @@ https://www.rfc1437.de/2004/09/22/radiant-data/ - 2026-03-04T07:34:36.000Z + 2026-03-04T07:34:36.073Z monthly 0.8 @@ -64505,7 +64694,7 @@ https://www.rfc1437.de/2004/09/21/bosco-howto-2/ - 2026-03-04T07:34:41.000Z + 2026-03-04T07:34:41.539Z monthly 0.8 @@ -64514,7 +64703,7 @@ https://www.rfc1437.de/2004/09/21/hamilton-der-blut-transfusion-ueberfuehrt/ - 2026-03-04T07:34:48.000Z + 2026-03-04T07:34:48.661Z monthly 0.8 @@ -64523,7 +64712,7 @@ https://www.rfc1437.de/2004/09/21/hessen-cdu-finanzierte-sich-zeitweise-as-schwrzgld/ - 2026-03-04T07:34:56.000Z + 2026-03-04T07:34:56.589Z monthly 0.8 @@ -64532,7 +64721,7 @@ https://www.rfc1437.de/2004/09/21/microsoft-keine-lizenz-keine-flicken/ - 2026-03-04T07:35:03.000Z + 2026-03-04T07:35:03.939Z monthly 0.8 @@ -64541,7 +64730,7 @@ https://www.rfc1437.de/2004/09/21/nasa-vergibt-grossauftrag-zum-ba-ds-tm-rmschffs-jm/ - 2026-03-04T07:35:09.000Z + 2026-03-04T07:35:09.034Z monthly 0.8 @@ -64550,7 +64739,7 @@ https://www.rfc1437.de/2004/09/21/neue-version-des-pda-systems-openzaurs-frtg-gstllt/ - 2026-03-04T07:35:14.000Z + 2026-03-04T07:35:14.652Z monthly 0.8 @@ -64559,7 +64748,7 @@ https://www.rfc1437.de/2004/09/21/rechte-websites-hacken-hacken/ - 2026-03-04T07:35:20.000Z + 2026-03-04T07:35:20.045Z monthly 0.8 @@ -64568,7 +64757,7 @@ https://www.rfc1437.de/2004/09/21/voigtlander-bessa-r2a-r3a/ - 2026-03-04T07:35:25.000Z + 2026-03-04T07:35:25.806Z monthly 0.8 @@ -64577,7 +64766,7 @@ https://www.rfc1437.de/2004/09/20/der-nacktmull-wwwkultviehdevu/ - 2026-03-04T07:35:31.000Z + 2026-03-04T07:35:31.749Z monthly 0.8 @@ -64586,7 +64775,7 @@ https://www.rfc1437.de/2004/09/20/digitale-rueckwand-fuer-leica-kameras/ - 2026-03-04T07:35:37.000Z + 2026-03-04T07:35:37.695Z monthly 0.8 @@ -64595,7 +64784,7 @@ https://www.rfc1437.de/2004/09/20/flickr-services/ - 2026-03-04T07:35:42.000Z + 2026-03-04T07:35:42.080Z monthly 0.8 @@ -64604,7 +64793,7 @@ https://www.rfc1437.de/2004/09/20/fortran-50-jahre-go-to/ - 2026-03-04T07:35:47.000Z + 2026-03-04T07:35:47.265Z monthly 0.8 @@ -64613,7 +64802,7 @@ https://www.rfc1437.de/2004/09/20/itms-link-maker/ - 2026-03-04T07:35:51.000Z + 2026-03-04T07:35:51.985Z monthly 0.8 @@ -64622,7 +64811,7 @@ https://www.rfc1437.de/2004/09/20/lisa-intelligent-software-agents-for-common-lisp/ - 2026-03-04T07:35:56.000Z + 2026-03-04T07:35:56.766Z monthly 0.8 @@ -64631,7 +64820,7 @@ https://www.rfc1437.de/2004/09/20/logilab-org-constraint/ - 2026-03-07T21:17:43.000Z + 2026-03-07T21:17:43.721Z monthly 0.8 @@ -64640,7 +64829,7 @@ https://www.rfc1437.de/2004/09/20/pirate-python-on-parrot/ - 2026-03-04T07:36:05.000Z + 2026-03-04T07:36:05.090Z monthly 0.8 @@ -64649,7 +64838,7 @@ https://www.rfc1437.de/2004/09/20/pylog-a-first-order-logic-library-in-python/ - 2026-03-07T21:17:45.000Z + 2026-03-07T21:17:45.298Z monthly 0.8 @@ -64658,7 +64847,7 @@ https://www.rfc1437.de/2004/09/20/vorwurf-des-code-diebstahls-an-mambo-projekt/ - 2026-03-04T07:36:14.000Z + 2026-03-04T07:36:14.787Z monthly 0.8 @@ -64667,7 +64856,7 @@ https://www.rfc1437.de/2004/09/19/edgewall-trac/ - 2026-03-04T07:36:18.000Z + 2026-03-04T07:36:18.418Z monthly 0.8 @@ -64676,7 +64865,7 @@ https://www.rfc1437.de/2004/09/19/ian-bickings-wiki/ - 2026-03-04T07:36:22.000Z + 2026-03-04T07:36:22.133Z monthly 0.8 @@ -64685,7 +64874,7 @@ https://www.rfc1437.de/2004/09/19/neuer-hochstrom-akku-von-hama/ - 2026-03-04T07:36:26.000Z + 2026-03-04T07:36:26.984Z monthly 0.8 @@ -64694,7 +64883,7 @@ https://www.rfc1437.de/2004/09/19/playboys-open-source-mirror/ - 2026-03-04T07:36:30.000Z + 2026-03-04T07:36:30.996Z monthly 0.8 @@ -64703,7 +64892,7 @@ https://www.rfc1437.de/2004/09/19/sergei-mikhailovich-prokudin-gorskii/ - 2026-03-04T07:36:36.000Z + 2026-03-04T07:36:36.005Z monthly 0.8 @@ -64712,7 +64901,7 @@ https://www.rfc1437.de/2004/09/19/wahlen-in-brandenburg-und-sachsen/ - 2026-03-04T07:36:40.000Z + 2026-03-04T07:36:40.483Z monthly 0.8 @@ -64721,7 +64910,7 @@ https://www.rfc1437.de/2004/09/18/isnoopnet-gmail-invite-spooler/ - 2026-03-04T07:36:44.000Z + 2026-03-04T07:36:44.039Z monthly 0.8 @@ -64730,7 +64919,7 @@ https://www.rfc1437.de/2004/09/18/microsofts-patent-bdrht-wtrhn-mglchn-nt-spm-stndrd/ - 2026-03-04T07:36:48.000Z + 2026-03-04T07:36:48.013Z monthly 0.8 @@ -64739,7 +64928,7 @@ https://www.rfc1437.de/2004/09/18/osxaudio-com/ - 2026-03-04T07:36:51.000Z + 2026-03-04T07:36:51.162Z monthly 0.8 @@ -64748,7 +64937,7 @@ https://www.rfc1437.de/2004/09/17/des-kanzlers-neue-ideen/ - 2026-03-04T07:36:55.000Z + 2026-03-04T07:36:55.638Z monthly 0.8 @@ -64757,7 +64946,7 @@ https://www.rfc1437.de/2004/09/17/factor-beispielserver/ - 2026-03-04T07:37:00.000Z + 2026-03-04T07:37:00.026Z monthly 0.8 @@ -64766,7 +64955,7 @@ https://www.rfc1437.de/2004/09/17/io-auf-symbian-nokia-handys/ - 2026-03-04T07:37:04.000Z + 2026-03-04T07:37:04.707Z monthly 0.8 @@ -64775,7 +64964,7 @@ https://www.rfc1437.de/2004/09/17/schily-verfassungsgericht-ist-schuld-am-npd-erfolg/ - 2026-03-04T07:37:09.000Z + 2026-03-04T07:37:09.280Z monthly 0.8 @@ -64784,7 +64973,7 @@ https://www.rfc1437.de/2004/09/17/the-gbbopen-project/ - 2026-03-04T07:37:13.000Z + 2026-03-04T07:37:13.010Z monthly 0.8 @@ -64793,7 +64982,7 @@ https://www.rfc1437.de/2004/09/17/warez-razzia-ftpwelt-ntzr-mssn-mt-strfvrfhrn-rchnn/ - 2026-03-04T07:37:19.000Z + 2026-03-04T07:37:19.610Z monthly 0.8 @@ -64802,7 +64991,7 @@ https://www.rfc1437.de/2004/09/17/zeiss-ikon-kamera-mit-m-bajonett-von-cosina/ - 2026-03-04T07:37:28.000Z + 2026-03-04T07:37:28.863Z monthly 0.8 @@ -64811,7 +65000,7 @@ https://www.rfc1437.de/2004/09/16/bernhard-syndikus-in-haft/ - 2026-03-04T07:37:37.000Z + 2026-03-04T07:37:37.174Z monthly 0.8 @@ -64820,7 +65009,7 @@ https://www.rfc1437.de/2004/09/16/britisches-unterhaus-verbietet-fuchsjagd/ - 2026-03-04T07:37:44.000Z + 2026-03-04T07:37:44.838Z monthly 0.8 @@ -64829,7 +65018,7 @@ https://www.rfc1437.de/2004/09/16/goo/ - 2026-03-04T07:37:50.000Z + 2026-03-04T07:37:50.990Z monthly 0.8 @@ -64838,7 +65027,7 @@ https://www.rfc1437.de/2004/09/16/tnpi-homemade-do-it-yourself-mac-using-mod-dav/ - 2026-03-04T07:37:57.000Z + 2026-03-04T07:37:57.098Z monthly 0.8 @@ -64847,7 +65036,7 @@ https://www.rfc1437.de/2004/09/15/aktuelle-gesetze/ - 2026-03-04T07:38:01.000Z + 2026-03-04T07:38:01.775Z monthly 0.8 @@ -64856,7 +65045,7 @@ https://www.rfc1437.de/2004/09/15/aquarium-2/ - 2026-03-04T07:38:06.000Z + 2026-03-04T07:38:06.448Z monthly 0.8 @@ -64865,7 +65054,7 @@ https://www.rfc1437.de/2004/09/15/digitaler-vergroesserer-fuer-fotopapier/ - 2026-03-04T07:38:12.000Z + 2026-03-04T07:38:12.545Z monthly 0.8 @@ -64874,7 +65063,7 @@ https://www.rfc1437.de/2004/09/15/jamesoff-check-rbl-for-wordpress-0-1/ - 2026-03-04T07:38:17.000Z + 2026-03-04T07:38:17.824Z monthly 0.8 @@ -64883,7 +65072,7 @@ https://www.rfc1437.de/2004/09/15/juristen-fordern-kostenlose-gesetze-fuer-alle/ - 2026-03-04T07:38:22.000Z + 2026-03-04T07:38:22.458Z monthly 0.8 @@ -64892,7 +65081,7 @@ https://www.rfc1437.de/2004/09/15/kodak-35-rangefinder/ - 2026-03-04T07:38:26.000Z + 2026-03-04T07:38:26.274Z monthly 0.8 @@ -64901,7 +65090,7 @@ https://www.rfc1437.de/2004/09/15/konica-minolta-announces-dynax-7d-dslr/ - 2026-03-04T07:38:32.000Z + 2026-03-04T07:38:32.039Z monthly 0.8 @@ -64910,7 +65099,7 @@ https://www.rfc1437.de/2004/09/15/kryptonite-evolution-2000-u-lock-hacked-by-a-bc-pn/ - 2026-03-04T07:38:37.000Z + 2026-03-04T07:38:37.434Z monthly 0.8 @@ -64919,7 +65108,7 @@ https://www.rfc1437.de/2004/09/15/lemonodor-lisp-for-the-mindstorm/ - 2026-03-04T07:38:43.000Z + 2026-03-04T07:38:43.560Z monthly 0.8 @@ -64928,7 +65117,7 @@ https://www.rfc1437.de/2004/09/15/mred-designer/ - 2026-03-04T07:38:47.000Z + 2026-03-04T07:38:47.412Z monthly 0.8 @@ -64937,7 +65126,7 @@ https://www.rfc1437.de/2004/09/15/the-robinson-house-rss-and-delta-encoding/ - 2026-03-04T07:38:51.000Z + 2026-03-04T07:38:51.989Z monthly 0.8 @@ -64946,7 +65135,7 @@ https://www.rfc1437.de/2004/09/14/carbon-cannibal-breaking-it-down-for-the-hard-driv/ - 2026-03-04T07:38:57.000Z + 2026-03-04T07:38:57.939Z monthly 0.8 @@ -64955,7 +65144,7 @@ https://www.rfc1437.de/2004/09/14/cayman-update/ - 2026-03-04T07:39:02.000Z + 2026-03-04T07:39:02.972Z monthly 0.8 @@ -64964,7 +65153,7 @@ https://www.rfc1437.de/2004/09/14/elephant/ - 2026-03-04T07:39:06.000Z + 2026-03-04T07:39:06.734Z monthly 0.8 @@ -64973,7 +65162,7 @@ https://www.rfc1437.de/2004/09/14/newlisp-a-better-lispscheme-fusion/ - 2026-03-04T07:39:12.000Z + 2026-03-04T07:39:12.256Z monthly 0.8 @@ -64982,7 +65171,7 @@ https://www.rfc1437.de/2004/09/14/paranoidfish-org-projects-webkit2png/ - 2026-03-04T07:39:16.000Z + 2026-03-04T07:39:16.476Z monthly 0.8 @@ -64991,7 +65180,7 @@ https://www.rfc1437.de/2004/09/14/schwaechen-im-mime-standard/ - 2026-03-04T07:39:24.000Z + 2026-03-04T07:39:24.060Z monthly 0.8 @@ -65009,7 +65198,7 @@ https://www.rfc1437.de/2004/09/14/streit-um-privatkopie-und-sknftsnsprch-sptzt-sch-z/ - 2026-03-04T07:39:38.000Z + 2026-03-04T07:39:38.921Z monthly 0.8 @@ -65018,7 +65207,7 @@ https://www.rfc1437.de/2004/09/14/usa-angriffswaffen-ab-heute-wieder-legal/ - 2026-03-04T07:39:46.000Z + 2026-03-04T07:39:46.194Z monthly 0.8 @@ -65027,7 +65216,7 @@ https://www.rfc1437.de/2004/09/14/wer-besticht-kommt-auf-die-liste/ - 2026-03-04T07:39:54.000Z + 2026-03-04T07:39:54.278Z monthly 0.8 @@ -65036,7 +65225,7 @@ https://www.rfc1437.de/2004/09/13/2-gb-daten-hochgeladen/ - 2026-03-04T07:40:00.000Z + 2026-03-04T07:40:00.780Z monthly 0.8 @@ -65045,7 +65234,7 @@ https://www.rfc1437.de/2004/09/13/bbc-radio-player/ - 2026-03-07T21:17:46.000Z + 2026-03-07T21:17:46.551Z monthly 0.8 @@ -65054,7 +65243,7 @@ https://www.rfc1437.de/2004/09/13/collations-and-linguistic-sorting/ - 2026-03-04T07:40:10.000Z + 2026-03-04T07:40:10.435Z monthly 0.8 @@ -65063,7 +65252,7 @@ https://www.rfc1437.de/2004/09/13/der-letzte-weisswal-europas-ist-ausgewandert/ - 2026-03-04T07:40:17.000Z + 2026-03-04T07:40:17.298Z monthly 0.8 @@ -65072,7 +65261,7 @@ https://www.rfc1437.de/2004/09/13/die-leica-und-ihre-geschichte-leica-iiig/ - 2026-03-04T07:40:21.000Z + 2026-03-04T07:40:21.440Z monthly 0.8 @@ -65081,7 +65270,7 @@ https://www.rfc1437.de/2004/09/13/emacs-on-aqua/ - 2026-03-04T07:40:25.000Z + 2026-03-04T07:40:25.388Z monthly 0.8 @@ -65090,7 +65279,7 @@ https://www.rfc1437.de/2004/09/13/kuchenvernichtung/ - 2026-03-04T07:40:28.000Z + 2026-03-04T07:40:28.471Z monthly 0.8 @@ -65099,7 +65288,7 @@ https://www.rfc1437.de/2004/09/13/mal-wieder-rss-bandbreite/ - 2026-03-04T07:40:33.000Z + 2026-03-04T07:40:33.077Z monthly 0.8 @@ -65108,7 +65297,7 @@ https://www.rfc1437.de/2004/09/13/mindlube-software-developer-revclips-2/ - 2026-03-04T07:40:36.000Z + 2026-03-04T07:40:36.771Z monthly 0.8 @@ -65117,7 +65306,7 @@ https://www.rfc1437.de/2004/09/13/mindlube-software-developer-revzeroconf/ - 2026-03-04T07:40:40.000Z + 2026-03-04T07:40:40.451Z monthly 0.8 @@ -65126,7 +65315,7 @@ https://www.rfc1437.de/2004/09/13/mindlube-software-emacs-for-os-x/ - 2026-03-04T07:40:44.000Z + 2026-03-04T07:40:44.042Z monthly 0.8 @@ -65135,7 +65324,7 @@ https://www.rfc1437.de/2004/09/13/pic-kuchenvernichtung/ - 2026-03-04T07:40:48.000Z + 2026-03-04T07:40:48.108Z monthly 0.8 @@ -65144,7 +65333,7 @@ https://www.rfc1437.de/2004/09/13/porkrind-dot-org-carbon-emacs-port/ - 2026-03-04T07:40:51.000Z + 2026-03-04T07:40:51.582Z monthly 0.8 @@ -65153,7 +65342,7 @@ https://www.rfc1437.de/2004/09/13/schwarze-katze-weisser-kater-2/ - 2026-03-04T07:40:56.000Z + 2026-03-04T07:40:56.083Z monthly 0.8 @@ -65162,7 +65351,7 @@ https://www.rfc1437.de/2004/09/13/shelltools-aus-alten-tagen/ - 2026-03-04T07:41:00.000Z + 2026-03-04T07:41:00.555Z monthly 0.8 @@ -65171,7 +65360,7 @@ https://www.rfc1437.de/2004/09/13/vim-vi-improved-for-mac-osx/ - 2026-03-04T07:41:04.000Z + 2026-03-04T07:41:04.001Z monthly 0.8 @@ -65180,7 +65369,7 @@ https://www.rfc1437.de/2004/09/13/voigtlander-3512/ - 2026-03-04T07:41:08.000Z + 2026-03-04T07:41:08.859Z monthly 0.8 @@ -65189,7 +65378,7 @@ https://www.rfc1437.de/2004/09/12/moblogging-test/ - 2026-03-04T07:41:12.000Z + 2026-03-04T07:41:12.370Z monthly 0.8 @@ -65198,7 +65387,7 @@ https://www.rfc1437.de/2004/09/12/oztex/ - 2026-03-04T07:41:15.000Z + 2026-03-04T07:41:15.483Z monthly 0.8 @@ -65207,7 +65396,7 @@ https://www.rfc1437.de/2004/09/11/9-11/ - 2026-03-04T07:41:19.000Z + 2026-03-04T07:41:19.931Z monthly 0.8 @@ -65216,7 +65405,7 @@ https://www.rfc1437.de/2004/09/11/rfc-2229/ - 2026-03-04T07:41:23.000Z + 2026-03-04T07:41:23.322Z monthly 0.8 @@ -65225,7 +65414,7 @@ https://www.rfc1437.de/2004/09/11/squawks-of-the-parrot-suboptimal-optimizing/ - 2026-03-04T07:41:26.000Z + 2026-03-04T07:41:26.782Z monthly 0.8 @@ -65234,7 +65423,7 @@ https://www.rfc1437.de/2004/09/10/das-web-ist-klein/ - 2026-03-04T07:41:30.000Z + 2026-03-04T07:41:30.680Z monthly 0.8 @@ -65243,7 +65432,7 @@ https://www.rfc1437.de/2004/09/10/koelner-stollwerck-fabrik-wird-geschlossen/ - 2026-03-04T07:41:36.000Z + 2026-03-04T07:41:36.176Z monthly 0.8 @@ -65252,7 +65441,7 @@ https://www.rfc1437.de/2004/09/10/more-on-nokias-9300-communicator/ - 2026-03-04T07:41:40.000Z + 2026-03-04T07:41:40.983Z monthly 0.8 @@ -65261,7 +65450,7 @@ https://www.rfc1437.de/2004/09/10/rolleiflex-t/ - 2026-03-04T07:41:44.000Z + 2026-03-04T07:41:44.039Z monthly 0.8 @@ -65270,7 +65459,7 @@ https://www.rfc1437.de/2004/09/10/sony-hat-doofe-ohren/ - 2026-03-04T07:41:48.000Z + 2026-03-04T07:41:48.841Z monthly 0.8 @@ -65279,7 +65468,7 @@ https://www.rfc1437.de/2004/09/09/back/ - 2026-03-04T07:41:51.000Z + 2026-03-04T07:41:51.830Z monthly 0.8 @@ -65288,7 +65477,7 @@ https://www.rfc1437.de/2004/09/09/nasa-raumsonde-genesis-stuerzt/ - 2026-03-04T07:41:55.000Z + 2026-03-04T07:41:55.484Z monthly 0.8 @@ -65297,7 +65486,7 @@ https://www.rfc1437.de/2004/09/04/bloglaub-bis-donnerstag-nacht/ - 2026-03-04T07:41:58.000Z + 2026-03-04T07:41:58.976Z monthly 0.8 @@ -65306,7 +65495,7 @@ https://www.rfc1437.de/2004/09/04/hyprpd-pplctn-dvlpmnt-sftwr-pblshd-by-brghtbll-rbr/ - 2026-03-04T07:42:03.000Z + 2026-03-04T07:42:03.312Z monthly 0.8 @@ -65315,7 +65504,7 @@ https://www.rfc1437.de/2004/09/03/perversion-diesmal-oeffentlich-rechtlich/ - 2026-03-04T07:42:07.000Z + 2026-03-04T07:42:07.635Z monthly 0.8 @@ -65324,7 +65513,7 @@ https://www.rfc1437.de/2004/09/03/strt-m-mcrsfts-ptntnsprch-lsst-nt-spm-stndrd-wckln/ - 2026-03-04T07:42:12.000Z + 2026-03-04T07:42:12.395Z monthly 0.8 @@ -65333,7 +65522,7 @@ https://www.rfc1437.de/2004/09/03/was-fuer-einen-scheiss-man-auf-ebay-alles-fndn-knn/ - 2026-03-04T07:42:17.000Z + 2026-03-04T07:42:17.206Z monthly 0.8 @@ -65342,7 +65531,7 @@ https://www.rfc1437.de/2004/09/02/leica-obe-prototyp-2/ - 2026-03-04T07:42:21.000Z + 2026-03-04T07:42:21.618Z monthly 0.8 @@ -65351,7 +65540,7 @@ https://www.rfc1437.de/2004/09/02/milosevic-darf-sich-nicht-mehr-selbst-verteidigen/ - 2026-03-04T07:42:25.000Z + 2026-03-04T07:42:25.971Z monthly 0.8 @@ -65360,7 +65549,7 @@ https://www.rfc1437.de/2004/09/01/aufruf-zum-trackbacking/ - 2026-03-04T07:42:30.000Z + 2026-03-04T07:42:30.311Z monthly 0.8 @@ -65369,7 +65558,7 @@ https://www.rfc1437.de/2004/09/01/dialerseite-tippt-ok-im-dialer-ein-update/ - 2026-03-04T07:42:34.000Z + 2026-03-04T07:42:34.872Z monthly 0.8 @@ -65378,7 +65567,7 @@ https://www.rfc1437.de/2004/09/01/dreamcard-offers-hypercard-like-environment/ - 2026-03-04T07:42:39.000Z + 2026-03-04T07:42:39.283Z monthly 0.8 @@ -65387,7 +65576,7 @@ https://www.rfc1437.de/2004/09/01/morns-n-th-nws-dbld-mchns-ppr-t-hv-blt-n-cd-fr-frd/ - 2026-03-04T07:42:43.000Z + 2026-03-04T07:42:43.233Z monthly 0.8 @@ -65396,7 +65585,7 @@ https://www.rfc1437.de/2004/09/01/rebellin-wird-argentinier-mit-neuem-pass-zur-wm/ - 2026-03-04T07:42:47.000Z + 2026-03-04T07:42:47.565Z monthly 0.8 @@ -65405,7 +65594,7 @@ https://www.rfc1437.de/2004/09/01/smalltalkx-das-vergessene-smalltalk/ - 2026-03-04T07:42:51.000Z + 2026-03-04T07:42:51.897Z monthly 0.8 @@ -65414,7 +65603,7 @@ https://www.rfc1437.de/2004/09/01/webhome-cookbook-s-c-h-e-m-a-t-i-c-s-c-o-o-k-b-o/ - 2026-03-04T07:42:55.000Z + 2026-03-04T07:42:55.332Z monthly 0.8 @@ -65423,7 +65612,7 @@ https://www.rfc1437.de/2004/09/01/zweifel-an-der-zuverlaessigket-vn-bys-schrhtsknzpt/ - 2026-03-04T07:42:59.000Z + 2026-03-04T07:42:59.706Z monthly 0.8 @@ -65432,7 +65621,7 @@ https://www.rfc1437.de/2004/08/31/apache-2-0-module-mod-macro/ - 2026-03-04T07:43:03.000Z + 2026-03-04T07:43:03.184Z monthly 0.8 @@ -65441,7 +65630,7 @@ https://www.rfc1437.de/2004/08/31/carvware-software/ - 2026-03-04T07:43:06.000Z + 2026-03-04T07:43:06.527Z monthly 0.8 @@ -65450,7 +65639,7 @@ https://www.rfc1437.de/2004/08/31/ebayde-domain-kapern-leicht-gemacht/ - 2026-03-04T07:43:10.000Z + 2026-03-04T07:43:10.866Z monthly 0.8 @@ -65459,7 +65648,7 @@ https://www.rfc1437.de/2004/08/31/google-mail-invites-invasion/ - 2026-03-04T07:43:14.000Z + 2026-03-04T07:43:14.383Z monthly 0.8 @@ -65468,7 +65657,7 @@ https://www.rfc1437.de/2004/08/31/hamburger-senat-im-law-and-order-wahn/ - 2026-03-04T07:43:19.000Z + 2026-03-04T07:43:19.640Z monthly 0.8 @@ -65477,7 +65666,7 @@ https://www.rfc1437.de/2004/08/31/handys-bald-mit-atomgenauer-uhrzeit/ - 2026-03-04T07:43:23.000Z + 2026-03-04T07:43:23.963Z monthly 0.8 @@ -65486,7 +65675,7 @@ https://www.rfc1437.de/2004/08/31/lemonodor-planet/ - 2026-03-04T07:43:28.000Z + 2026-03-04T07:43:28.280Z monthly 0.8 @@ -65495,7 +65684,7 @@ https://www.rfc1437.de/2004/08/31/project-schematics/ - 2026-03-04T07:43:31.000Z + 2026-03-04T07:43:31.688Z monthly 0.8 @@ -65504,7 +65693,7 @@ https://www.rfc1437.de/2004/08/31/shitcanned/ - 2026-03-04T07:43:36.000Z + 2026-03-04T07:43:36.219Z monthly 0.8 @@ -65513,7 +65702,7 @@ https://www.rfc1437.de/2004/08/31/skype-download-skype-for-mac-os-x/ - 2026-03-04T07:43:40.000Z + 2026-03-04T07:43:40.097Z monthly 0.8 @@ -65522,7 +65711,7 @@ https://www.rfc1437.de/2004/08/31/spgsql/ - 2026-03-04T07:43:43.000Z + 2026-03-04T07:43:43.314Z monthly 0.8 @@ -65531,7 +65720,7 @@ https://www.rfc1437.de/2004/08/31/zach-beane/ - 2026-03-04T07:43:47.000Z + 2026-03-04T07:43:47.890Z monthly 0.8 @@ -65540,7 +65729,7 @@ https://www.rfc1437.de/2004/08/30/berlinerin-klagt-in-karlsruhe-gegen-hartz/ - 2026-03-04T07:43:52.000Z + 2026-03-04T07:43:52.421Z monthly 0.8 @@ -65549,7 +65738,7 @@ https://www.rfc1437.de/2004/08/30/io/ - 2026-03-04T07:43:55.000Z + 2026-03-04T07:43:55.496Z monthly 0.8 @@ -65558,7 +65747,7 @@ https://www.rfc1437.de/2004/08/30/powerbook-1-god-0/ - 2026-03-04T07:44:00.000Z + 2026-03-04T07:44:00.128Z monthly 0.8 @@ -65567,7 +65756,7 @@ https://www.rfc1437.de/2004/08/30/raser-unter-sich/ - 2026-03-04T07:44:04.000Z + 2026-03-04T07:44:04.416Z monthly 0.8 @@ -65576,7 +65765,7 @@ https://www.rfc1437.de/2004/08/30/sony-announces-7-megapixel-cyber-shot-dsc-v3/ - 2026-03-04T07:44:08.000Z + 2026-03-04T07:44:08.752Z monthly 0.8 @@ -65585,7 +65774,7 @@ https://www.rfc1437.de/2004/08/30/visual-studio-magazin-gst-pnn-sv-th-hbbyst-prgrmmr/ - 2026-03-04T07:44:13.000Z + 2026-03-04T07:44:13.016Z monthly 0.8 @@ -65594,7 +65783,7 @@ https://www.rfc1437.de/2004/08/30/why-most-landscapes-suck/ - 2026-03-04T07:44:17.000Z + 2026-03-04T07:44:17.382Z monthly 0.8 @@ -65603,7 +65792,7 @@ https://www.rfc1437.de/2004/08/30/zitat-des-tages/ - 2026-03-04T07:44:22.000Z + 2026-03-04T07:44:22.149Z monthly 0.8 @@ -65612,7 +65801,7 @@ https://www.rfc1437.de/2004/08/29/ebay-wird-von-einem-haufen-idioten-betrieben/ - 2026-03-04T07:44:26.000Z + 2026-03-04T07:44:26.501Z monthly 0.8 @@ -65621,7 +65810,7 @@ https://www.rfc1437.de/2004/08/29/gmailfs-gmail-filesystem/ - 2026-03-04T07:44:30.000Z + 2026-03-04T07:44:30.887Z monthly 0.8 @@ -65630,7 +65819,7 @@ https://www.rfc1437.de/2004/08/29/vnc2swf-screen-recorder/ - 2026-03-04T07:44:34.000Z + 2026-03-04T07:44:34.413Z monthly 0.8 @@ -65639,7 +65828,7 @@ https://www.rfc1437.de/2004/08/28/der-neue-duden-ist-da/ - 2026-03-04T07:44:39.000Z + 2026-03-04T07:44:39.482Z monthly 0.8 @@ -65648,7 +65837,7 @@ https://www.rfc1437.de/2004/08/28/ihr-wisst-es-sowieso-schon-alle/ - 2026-03-04T07:44:43.000Z + 2026-03-04T07:44:43.282Z monthly 0.8 @@ -65657,7 +65846,7 @@ https://www.rfc1437.de/2004/08/28/leica-announces-cm-zoom-film-camera/ - 2026-03-04T07:44:48.000Z + 2026-03-04T07:44:48.074Z monthly 0.8 @@ -65666,7 +65855,7 @@ https://www.rfc1437.de/2004/08/28/maut-gegen-die-wand-fahren/ - 2026-03-04T07:44:52.000Z + 2026-03-04T07:44:52.836Z monthly 0.8 @@ -65675,7 +65864,7 @@ https://www.rfc1437.de/2004/08/28/usb-cams-der-krampf-mit-der-gpl/ - 2026-03-04T07:44:57.000Z + 2026-03-04T07:44:57.183Z monthly 0.8 @@ -65684,7 +65873,7 @@ https://www.rfc1437.de/2004/08/27/kieferknochen-aus-rueckenmuskel-verpflanzt/ - 2026-03-04T07:45:01.000Z + 2026-03-04T07:45:01.519Z monthly 0.8 @@ -65693,7 +65882,7 @@ https://www.rfc1437.de/2004/08/27/librep/ - 2026-03-04T07:45:04.000Z + 2026-03-04T07:45:04.450Z monthly 0.8 @@ -65702,7 +65891,7 @@ https://www.rfc1437.de/2004/08/27/lush-lisp-universal-shell/ - 2026-03-04T07:45:07.000Z + 2026-03-04T07:45:07.864Z monthly 0.8 @@ -65711,7 +65900,7 @@ https://www.rfc1437.de/2004/08/27/mod-rep/ - 2026-03-04T07:45:10.000Z + 2026-03-04T07:45:10.801Z monthly 0.8 @@ -65720,7 +65909,7 @@ https://www.rfc1437.de/2004/08/27/rhizome/ - 2026-03-04T07:45:14.000Z + 2026-03-04T07:45:14.274Z monthly 0.8 @@ -65729,7 +65918,7 @@ https://www.rfc1437.de/2004/08/27/sourceforge-net-project-info-common-lisp-jpeg/ - 2026-03-07T21:17:48.000Z + 2026-03-07T21:17:48.159Z monthly 0.8 @@ -65738,7 +65927,7 @@ https://www.rfc1437.de/2004/08/27/thunk-webserver/ - 2026-03-04T07:45:21.000Z + 2026-03-04T07:45:21.046Z monthly 0.8 @@ -65747,7 +65936,7 @@ https://www.rfc1437.de/2004/08/26/bigloo-homepage/ - 2026-03-04T07:45:24.000Z + 2026-03-04T07:45:24.557Z monthly 0.8 @@ -65756,7 +65945,7 @@ https://www.rfc1437.de/2004/08/26/entwickler-und-ihr-unverstaendnis-von-open-source/ - 2026-03-04T07:45:29.000Z + 2026-03-04T07:45:29.741Z monthly 0.8 @@ -65765,7 +65954,7 @@ https://www.rfc1437.de/2004/08/26/linda-and-service-oriented-architectures/ - 2026-03-04T07:45:35.000Z + 2026-03-04T07:45:35.021Z monthly 0.8 @@ -65774,7 +65963,7 @@ https://www.rfc1437.de/2004/08/26/optimal-syntax-for-python-decorators/ - 2026-03-04T07:45:39.000Z + 2026-03-04T07:45:39.553Z monthly 0.8 @@ -65783,7 +65972,7 @@ https://www.rfc1437.de/2004/08/26/psyche-2/ - 2026-03-04T07:45:43.000Z + 2026-03-04T07:45:43.490Z monthly 0.8 @@ -65792,7 +65981,7 @@ https://www.rfc1437.de/2004/08/26/qscheme/ - 2026-03-04T07:45:46.000Z + 2026-03-04T07:45:46.761Z monthly 0.8 @@ -65801,7 +65990,7 @@ https://www.rfc1437.de/2004/08/26/schemix/ - 2026-03-04T07:45:50.000Z + 2026-03-04T07:45:50.091Z monthly 0.8 @@ -65810,7 +65999,7 @@ https://www.rfc1437.de/2004/08/26/welcome-to-myghty/ - 2026-03-04T07:45:53.000Z + 2026-03-04T07:45:53.280Z monthly 0.8 @@ -65819,7 +66008,7 @@ https://www.rfc1437.de/2004/08/25/a-conversation-with-manfrend-von-thun/ - 2026-03-04T07:45:56.000Z + 2026-03-04T07:45:56.951Z monthly 0.8 @@ -65828,7 +66017,7 @@ https://www.rfc1437.de/2004/08/25/candygram/ - 2026-03-04T07:46:00.000Z + 2026-03-04T07:46:00.210Z monthly 0.8 @@ -65837,7 +66026,7 @@ https://www.rfc1437.de/2004/08/25/debian-backports/ - 2026-03-04T07:46:03.000Z + 2026-03-04T07:46:03.530Z monthly 0.8 @@ -65846,7 +66035,7 @@ https://www.rfc1437.de/2004/08/25/google-mail-invites-verfuegbar/ - 2026-03-04T07:46:07.000Z + 2026-03-04T07:46:07.839Z monthly 0.8 @@ -65855,7 +66044,7 @@ https://www.rfc1437.de/2004/08/25/main-page-for-the-programming-language-joy/ - 2026-03-04T07:46:11.000Z + 2026-03-04T07:46:11.450Z monthly 0.8 @@ -65864,7 +66053,7 @@ https://www.rfc1437.de/2004/08/25/the-pentax-optiox/ - 2026-03-04T07:46:16.000Z + 2026-03-04T07:46:16.629Z monthly 0.8 @@ -65873,7 +66062,7 @@ https://www.rfc1437.de/2004/08/24/ilford-goes-into-administration/ - 2026-03-04T07:46:20.000Z + 2026-03-04T07:46:20.718Z monthly 0.8 @@ -65882,7 +66071,7 @@ https://www.rfc1437.de/2004/08/23/microsoft-bekommt-sudo-patent-zugeteilt/ - 2026-03-04T07:46:24.000Z + 2026-03-04T07:46:24.903Z monthly 0.8 @@ -65891,7 +66080,7 @@ https://www.rfc1437.de/2004/08/23/news-aerger-um-cdrecord/ - 2026-03-04T07:46:28.000Z + 2026-03-04T07:46:28.753Z monthly 0.8 @@ -65900,7 +66089,7 @@ https://www.rfc1437.de/2004/08/23/sourceforge-net-project-info-doxfs-document/ - 2026-03-04T07:46:32.000Z + 2026-03-04T07:46:32.373Z monthly 0.8 @@ -65909,7 +66098,7 @@ https://www.rfc1437.de/2004/08/23/vnunetcom-micro-focus-lifts-and-shifts-cobol-t-lnx/ - 2026-03-04T07:46:36.000Z + 2026-03-04T07:46:36.822Z monthly 0.8 @@ -65918,7 +66107,7 @@ https://www.rfc1437.de/2004/08/22/das-wort-zum-montag/ - 2026-03-04T07:46:41.000Z + 2026-03-04T07:46:41.352Z monthly 0.8 @@ -65927,7 +66116,7 @@ https://www.rfc1437.de/2004/08/22/flambierter-saphir/ - 2026-03-04T07:46:45.000Z + 2026-03-04T07:46:45.862Z monthly 0.8 @@ -65936,7 +66125,7 @@ https://www.rfc1437.de/2004/08/22/paolo-amoroso-update-on-mcclims-beagle-backend/ - 2026-03-04T07:46:51.000Z + 2026-03-04T07:46:51.521Z monthly 0.8 @@ -65945,7 +66134,7 @@ https://www.rfc1437.de/2004/08/22/zukuenftige-eu-kommissarin-mcht-bll-gts-zm-hrndktr/ - 2026-03-04T07:46:55.000Z + 2026-03-04T07:46:55.787Z monthly 0.8 @@ -65954,7 +66143,7 @@ https://www.rfc1437.de/2004/08/21/deutschland-verliert-zwei-goldmedaillen-olympiardd/ - 2026-03-04T07:47:00.000Z + 2026-03-04T07:47:00.544Z monthly 0.8 @@ -65963,7 +66152,7 @@ https://www.rfc1437.de/2004/08/20/form-submission-and-the-enter-key/ - 2026-03-04T07:47:04.000Z + 2026-03-04T07:47:04.230Z monthly 0.8 @@ -65972,7 +66161,7 @@ https://www.rfc1437.de/2004/08/20/hacker-anriff-auf-forschungsstation-am-suedpol/ - 2026-03-04T07:47:09.000Z + 2026-03-04T07:47:09.060Z monthly 0.8 @@ -65981,7 +66170,7 @@ https://www.rfc1437.de/2004/08/20/internet-telefonie-nicht-mit-beliebiger-vorwahl/ - 2026-03-04T07:47:14.000Z + 2026-03-04T07:47:14.215Z monthly 0.8 @@ -65990,7 +66179,7 @@ https://www.rfc1437.de/2004/08/20/pmwiki-sehr-weit-ausgebautes-wiki/ - 2026-03-04T07:47:19.000Z + 2026-03-04T07:47:19.049Z monthly 0.8 @@ -65999,7 +66188,7 @@ https://www.rfc1437.de/2004/08/20/zeitung-behoerden-koennen-ab-2005-bankkonten-enshn/ - 2026-03-04T07:47:24.000Z + 2026-03-04T07:47:24.862Z monthly 0.8 @@ -66008,7 +66197,7 @@ https://www.rfc1437.de/2004/08/19/agfa-knipst-fotogeschaeft-aus/ - 2026-03-04T07:47:29.000Z + 2026-03-04T07:47:29.043Z monthly 0.8 @@ -66017,7 +66206,7 @@ https://www.rfc1437.de/2004/08/19/coffee-and-cigarettes-der-neue-film-von-jim-jrmsch/ - 2026-03-04T07:47:34.000Z + 2026-03-04T07:47:34.294Z monthly 0.8 @@ -66026,7 +66215,7 @@ https://www.rfc1437.de/2004/08/19/details-about-the-shebang-mechanism/ - 2026-03-04T07:47:39.000Z + 2026-03-04T07:47:39.511Z monthly 0.8 @@ -66035,7 +66224,7 @@ https://www.rfc1437.de/2004/08/19/infektion-durch-fhlr-m-ntrnt-xplrr-trtz-srvc-pck-2/ - 2026-03-04T07:47:44.000Z + 2026-03-04T07:47:44.642Z monthly 0.8 @@ -66044,7 +66233,7 @@ https://www.rfc1437.de/2004/08/19/modeling-object-relational-bridge-for-python/ - 2026-03-04T07:47:47.000Z + 2026-03-04T07:47:47.943Z monthly 0.8 @@ -66053,7 +66242,7 @@ https://www.rfc1437.de/2004/08/19/sco-vs-linux-ibm-schlaegt-zurueck/ - 2026-03-04T07:47:52.000Z + 2026-03-04T07:47:52.195Z monthly 0.8 @@ -66062,7 +66251,7 @@ https://www.rfc1437.de/2004/08/18/debakel-im-kampf-gegen-die-uhr-olympiaardde/ - 2026-03-04T07:47:56.000Z + 2026-03-04T07:47:56.268Z monthly 0.8 @@ -66071,7 +66260,7 @@ https://www.rfc1437.de/2004/08/18/ein-euro-job-was-ist-das/ - 2026-03-04T07:48:01.000Z + 2026-03-04T07:48:01.328Z monthly 0.8 @@ -66080,7 +66269,7 @@ https://www.rfc1437.de/2004/08/18/newsforge/ - 2026-03-04T07:48:05.000Z + 2026-03-04T07:48:05.443Z monthly 0.8 @@ -66089,7 +66278,7 @@ https://www.rfc1437.de/2004/08/18/olympische-spiele-leontien-vn-mrsls-glnzvllr-bschd/ - 2026-03-04T07:48:09.000Z + 2026-03-04T07:48:09.561Z monthly 0.8 @@ -66098,7 +66287,7 @@ https://www.rfc1437.de/2004/08/18/things-to-make-you-go-ow-stop-my-head-hurts/ - 2026-03-04T07:48:14.000Z + 2026-03-04T07:48:14.182Z monthly 0.8 @@ -66107,7 +66296,7 @@ https://www.rfc1437.de/2004/08/17/2/ - 2026-03-04T07:48:18.000Z + 2026-03-04T07:48:18.270Z monthly 0.8 @@ -66116,7 +66305,7 @@ https://www.rfc1437.de/2004/08/17/arbeitgeber-wollen-beamtenpensionen-kuerzen/ - 2026-03-04T07:48:22.000Z + 2026-03-04T07:48:22.816Z monthly 0.8 @@ -66125,7 +66314,7 @@ https://www.rfc1437.de/2004/08/17/fastmail-fast-fre-r-pd-mp-wbml-wth-smtp-pp-mp-ccss/ - 2026-03-04T07:48:27.000Z + 2026-03-04T07:48:27.837Z monthly 0.8 @@ -66134,7 +66323,7 @@ https://www.rfc1437.de/2004/08/17/google-suche-georg-bauer/ - 2026-03-04T07:48:32.000Z + 2026-03-04T07:48:32.378Z monthly 0.8 @@ -66143,7 +66332,7 @@ https://www.rfc1437.de/2004/08/17/kndr-vn-strfttrn-slln-vm-kndrgrtnltr-b-rfsst-nd-br/ - 2026-03-04T07:48:37.000Z + 2026-03-04T07:48:37.304Z monthly 0.8 @@ -66152,7 +66341,7 @@ https://www.rfc1437.de/2004/08/17/knthr-vr-grcht-lnk-sprsptz-stmpf-gmcht-pltk-spgl-n/ - 2026-03-04T07:48:41.000Z + 2026-03-04T07:48:41.385Z monthly 0.8 @@ -66161,7 +66350,7 @@ https://www.rfc1437.de/2004/08/17/npd-im-saechsischen-landtag/ - 2026-03-04T07:48:46.000Z + 2026-03-04T07:48:46.397Z monthly 0.8 @@ -66170,7 +66359,7 @@ https://www.rfc1437.de/2004/08/17/patent-auf-verzoegerung-bei-user-registrierung/ - 2026-03-04T07:48:50.000Z + 2026-03-04T07:48:50.482Z monthly 0.8 @@ -66179,7 +66368,7 @@ https://www.rfc1437.de/2004/08/17/perlcom-the-evolution-of-perl-email-handling/ - 2026-03-04T07:48:54.000Z + 2026-03-04T07:48:54.545Z monthly 0.8 @@ -66188,7 +66377,7 @@ https://www.rfc1437.de/2004/08/17/prozess-gegen-kanther-beginnt/ - 2026-03-04T07:48:59.000Z + 2026-03-04T07:48:59.546Z monthly 0.8 @@ -66197,7 +66386,7 @@ https://www.rfc1437.de/2004/08/17/schmu-bei-stnzt-schdln-strnd-wssnschftgsndht-mnsch/ - 2026-03-04T07:49:03.000Z + 2026-03-04T07:49:03.668Z monthly 0.8 @@ -66206,7 +66395,7 @@ https://www.rfc1437.de/2004/08/17/tauschgeschaefte/ - 2026-03-04T07:49:07.000Z + 2026-03-04T07:49:07.860Z monthly 0.8 @@ -66215,7 +66404,7 @@ https://www.rfc1437.de/2004/08/17/usa-erkennen-sieg-von-chavez-nicht-an/ - 2026-03-04T07:49:12.000Z + 2026-03-04T07:49:12.437Z monthly 0.8 @@ -66224,7 +66413,7 @@ https://www.rfc1437.de/2004/08/17/wirbel-um-verbraucherschutz-forum-snakecity/ - 2026-03-04T07:49:17.000Z + 2026-03-04T07:49:17.219Z monthly 0.8 @@ -66233,7 +66422,7 @@ https://www.rfc1437.de/2004/08/16/google-search-blogtimespng/ - 2026-03-04T07:49:21.000Z + 2026-03-04T07:49:21.280Z monthly 0.8 @@ -66242,7 +66431,7 @@ https://www.rfc1437.de/2004/08/16/groklaw-zum-businessweek-artikel-ueber-gpl/ - 2026-03-04T07:49:25.000Z + 2026-03-04T07:49:25.381Z monthly 0.8 @@ -66251,7 +66440,7 @@ https://www.rfc1437.de/2004/08/16/index-of-pub-sun3arc-boottapes-3-5/ - 2026-03-04T07:49:29.000Z + 2026-03-04T07:49:29.461Z monthly 0.8 @@ -66260,7 +66449,7 @@ https://www.rfc1437.de/2004/08/16/index-of-pub-sun3arc-boottapes-sun3/ - 2026-03-04T07:49:33.000Z + 2026-03-04T07:49:33.272Z monthly 0.8 @@ -66269,7 +66458,7 @@ https://www.rfc1437.de/2004/08/16/internationale-domains-und-wordpress/ - 2026-03-04T07:49:37.000Z + 2026-03-04T07:49:37.968Z monthly 0.8 @@ -66278,7 +66467,7 @@ https://www.rfc1437.de/2004/08/16/lorem-ipsum-the-motherlode/ - 2026-03-04T07:49:41.000Z + 2026-03-04T07:49:41.737Z monthly 0.8 @@ -66287,7 +66476,7 @@ https://www.rfc1437.de/2004/08/16/metropolitan-vor-dem-aus/ - 2026-03-04T07:49:46.000Z + 2026-03-04T07:49:46.689Z monthly 0.8 @@ -66296,7 +66485,7 @@ https://www.rfc1437.de/2004/08/16/p2p-als-update-hilfe-fuer-windows-unerwuenscht/ - 2026-03-04T07:49:51.000Z + 2026-03-04T07:49:51.727Z monthly 0.8 @@ -66305,7 +66494,7 @@ https://www.rfc1437.de/2004/08/16/the-rescue-archives/ - 2026-03-04T07:49:54.000Z + 2026-03-04T07:49:54.971Z monthly 0.8 @@ -66314,7 +66503,7 @@ https://www.rfc1437.de/2004/08/16/zijlaard-van-moorsel-still-questionable-for-tt/ - 2026-03-04T07:49:59.000Z + 2026-03-04T07:49:59.498Z monthly 0.8 @@ -66323,7 +66512,7 @@ https://www.rfc1437.de/2004/08/15/brickos-at-sourceforge/ - 2026-03-04T07:50:02.000Z + 2026-03-04T07:50:02.732Z monthly 0.8 @@ -66332,7 +66521,7 @@ https://www.rfc1437.de/2004/08/15/dvd-rw-r-r-w-for-linux/ - 2026-03-04T07:50:06.000Z + 2026-03-04T07:50:06.324Z monthly 0.8 @@ -66341,7 +66530,7 @@ https://www.rfc1437.de/2004/08/15/erste-eindruecke-von-textpattern/ - 2026-03-04T07:50:10.000Z + 2026-03-04T07:50:10.944Z monthly 0.8 @@ -66350,7 +66539,7 @@ https://www.rfc1437.de/2004/08/15/mystep-aktuelle-version-17/ - 2026-03-04T07:50:16.000Z + 2026-03-04T07:50:16.113Z monthly 0.8 @@ -66359,7 +66548,7 @@ https://www.rfc1437.de/2004/08/15/olympisches-strassenrennen-der-frauen/ - 2026-03-04T07:50:20.000Z + 2026-03-04T07:50:20.177Z monthly 0.8 @@ -66368,7 +66557,7 @@ https://www.rfc1437.de/2004/08/15/textpattern-und-punycode/ - 2026-03-04T07:50:24.000Z + 2026-03-04T07:50:24.770Z monthly 0.8 @@ -66377,7 +66566,7 @@ https://www.rfc1437.de/2004/08/15/tie-a-tie-net-learn-how-to-tie-a-tie/ - 2026-03-04T07:50:28.000Z + 2026-03-04T07:50:28.426Z monthly 0.8 @@ -66386,7 +66575,7 @@ https://www.rfc1437.de/2004/08/15/writing-dvds-under-debian-gnu-linux/ - 2026-03-04T07:50:32.000Z + 2026-03-04T07:50:32.040Z monthly 0.8 @@ -66395,7 +66584,7 @@ https://www.rfc1437.de/2004/08/14/der-mensch-als-kommerzielle-marke/ - 2026-03-04T07:50:36.000Z + 2026-03-04T07:50:36.519Z monthly 0.8 @@ -66404,7 +66593,7 @@ https://www.rfc1437.de/2004/08/14/dogma-1999/ - 2026-03-04T07:50:39.000Z + 2026-03-04T07:50:39.720Z monthly 0.8 @@ -66413,7 +66602,7 @@ https://www.rfc1437.de/2004/08/14/geschichten-aus-dem-orthografischen-maerchenwald/ - 2026-03-04T07:50:44.000Z + 2026-03-04T07:50:44.488Z monthly 0.8 @@ -66422,7 +66611,7 @@ https://www.rfc1437.de/2004/08/14/treble-ramaganana/ - 2026-03-04T07:50:49.000Z + 2026-03-04T07:50:49.275Z monthly 0.8 @@ -66431,7 +66620,7 @@ https://www.rfc1437.de/2004/08/13/from-python-to-plt-scheme/ - 2026-03-04T07:50:54.000Z + 2026-03-04T07:50:54.103Z monthly 0.8 @@ -66440,7 +66629,7 @@ https://www.rfc1437.de/2004/08/13/genmanipulation-macht-affen-zu-workaholics/ - 2026-03-04T07:50:58.000Z + 2026-03-04T07:50:58.714Z monthly 0.8 @@ -66449,7 +66638,7 @@ https://www.rfc1437.de/2004/08/13/hasselblad-and-imacon-merge/ - 2026-03-04T07:51:02.000Z + 2026-03-04T07:51:02.962Z monthly 0.8 @@ -66458,7 +66647,7 @@ https://www.rfc1437.de/2004/08/13/ich-bin-fuer-diesen-job-nicht-qualifiziert/ - 2026-03-04T07:51:08.000Z + 2026-03-04T07:51:08.185Z monthly 0.8 @@ -66467,7 +66656,7 @@ https://www.rfc1437.de/2004/08/13/sco-vs-linux-analyse-der-analysten/ - 2026-03-04T07:51:13.000Z + 2026-03-04T07:51:13.864Z monthly 0.8 @@ -66476,7 +66665,7 @@ https://www.rfc1437.de/2004/08/13/systemupgrades-und-ihre-freuden/ - 2026-03-04T07:51:18.000Z + 2026-03-04T07:51:18.092Z monthly 0.8 @@ -66485,7 +66674,7 @@ https://www.rfc1437.de/2004/08/13/the-python-paradox/ - 2026-03-04T07:51:21.000Z + 2026-03-04T07:51:21.834Z monthly 0.8 @@ -66494,7 +66683,7 @@ https://www.rfc1437.de/2004/08/12/add-on-lenses-for-your-cameraphone/ - 2026-03-04T07:51:27.000Z + 2026-03-04T07:51:27.151Z monthly 0.8 @@ -66503,7 +66692,7 @@ https://www.rfc1437.de/2004/08/12/databases-and-scsh/ - 2026-03-07T21:17:49.000Z + 2026-03-07T21:17:49.505Z monthly 0.8 @@ -66512,7 +66701,7 @@ https://www.rfc1437.de/2004/08/12/ein-schwarzer-tag-fuer-die-mnschnrcht-n-grssbrtnnn/ - 2026-03-04T07:51:35.000Z + 2026-03-04T07:51:35.502Z monthly 0.8 @@ -66521,7 +66710,7 @@ https://www.rfc1437.de/2004/08/12/ipod-vs-the-cassette/ - 2026-03-04T07:51:39.000Z + 2026-03-04T07:51:39.085Z monthly 0.8 @@ -66530,7 +66719,7 @@ https://www.rfc1437.de/2004/08/12/scheme-underground-network-package/ - 2026-03-04T07:51:42.000Z + 2026-03-04T07:51:42.518Z monthly 0.8 @@ -66539,7 +66728,7 @@ https://www.rfc1437.de/2004/08/12/serverumzug-erfolgt/ - 2026-03-04T07:51:46.000Z + 2026-03-04T07:51:46.282Z monthly 0.8 @@ -66548,7 +66737,7 @@ https://www.rfc1437.de/2004/08/12/stu-nicholls-cutting-edge-css-a-css-font/ - 2026-03-04T07:51:50.000Z + 2026-03-04T07:51:50.649Z monthly 0.8 @@ -66557,7 +66746,7 @@ https://www.rfc1437.de/2004/08/12/the-ie-weblog-makes-me-laugh/ - 2026-03-04T07:51:55.000Z + 2026-03-04T07:51:55.272Z monthly 0.8 @@ -66566,7 +66755,7 @@ https://www.rfc1437.de/2004/08/12/tsearch2-full-text-extension-for-postgresql-2/ - 2026-03-04T07:51:59.000Z + 2026-03-04T07:51:59.039Z monthly 0.8 @@ -66575,7 +66764,7 @@ https://www.rfc1437.de/2004/08/11/bill-clementson-mandelbrot-set-ascii-art/ - 2026-03-04T07:52:03.000Z + 2026-03-04T07:52:03.183Z monthly 0.8 @@ -66584,7 +66773,7 @@ https://www.rfc1437.de/2004/08/11/two-terabyte-memory-card/ - 2026-03-04T07:52:08.000Z + 2026-03-04T07:52:08.157Z monthly 0.8 @@ -66593,7 +66782,7 @@ https://www.rfc1437.de/2004/08/10/cliki-armed-bear-lisp/ - 2026-03-04T07:52:11.000Z + 2026-03-04T07:52:11.788Z monthly 0.8 @@ -66602,7 +66791,7 @@ https://www.rfc1437.de/2004/08/10/mztake-a-scriptable-debugger/ - 2026-03-04T07:52:16.000Z + 2026-03-04T07:52:16.888Z monthly 0.8 @@ -66611,7 +66800,7 @@ https://www.rfc1437.de/2004/08/10/python-on-smalltalk-vm/ - 2026-03-04T07:52:22.000Z + 2026-03-04T07:52:22.081Z monthly 0.8 @@ -66620,7 +66809,7 @@ https://www.rfc1437.de/2004/08/10/schon-gegen-heuschnupfen-geimpft/ - 2026-03-04T07:52:27.000Z + 2026-03-04T07:52:27.120Z monthly 0.8 @@ -66629,7 +66818,7 @@ https://www.rfc1437.de/2004/08/09/blog-bknr-devel/ - 2026-03-04T07:52:30.000Z + 2026-03-04T07:52:30.927Z monthly 0.8 @@ -66638,7 +66827,7 @@ https://www.rfc1437.de/2004/08/09/bluetooth-attacken-f-hndys-s-fst-2-km-ntfrnng-glmd/ - 2026-03-04T07:52:34.000Z + 2026-03-04T07:52:34.797Z monthly 0.8 @@ -66647,7 +66836,7 @@ https://www.rfc1437.de/2004/08/09/mikel-evins-clotho-status/ - 2026-03-04T07:52:40.000Z + 2026-03-04T07:52:40.007Z monthly 0.8 @@ -66656,7 +66845,7 @@ https://www.rfc1437.de/2004/08/09/phil-ringnalda-dot-com-first-look-at-msn-blogs/ - 2026-03-04T07:52:44.000Z + 2026-03-04T07:52:44.812Z monthly 0.8 @@ -66665,7 +66854,7 @@ https://www.rfc1437.de/2004/08/08/unwetter-fluten-teile-von-nrw/ - 2026-03-04T07:52:50.000Z + 2026-03-04T07:52:50.674Z monthly 0.8 @@ -66674,7 +66863,7 @@ https://www.rfc1437.de/2004/08/07/beckstein-begruesst-geplante-fluechtlingslgr-n-frk/ - 2026-03-04T07:52:56.000Z + 2026-03-04T07:52:56.344Z monthly 0.8 @@ -66683,7 +66872,7 @@ https://www.rfc1437.de/2004/08/07/lafontaine-droht-mit-engagement-bei-linkspartei/ - 2026-03-04T07:53:01.000Z + 2026-03-04T07:53:01.596Z monthly 0.8 @@ -66692,7 +66881,7 @@ https://www.rfc1437.de/2004/08/07/netzeitung-music-pink-floyds-the-wall-wird-musical/ - 2026-03-04T07:53:06.000Z + 2026-03-04T07:53:06.490Z monthly 0.8 @@ -66701,7 +66890,7 @@ https://www.rfc1437.de/2004/08/07/netzeitung-sport-voigt-weiter-im-gelben-trikot/ - 2026-03-04T07:53:10.000Z + 2026-03-04T07:53:10.312Z monthly 0.8 @@ -66710,7 +66899,7 @@ https://www.rfc1437.de/2004/08/07/serverumzug-verzoegert-sich-etwas/ - 2026-03-04T07:53:15.000Z + 2026-03-04T07:53:15.111Z monthly 0.8 @@ -66719,7 +66908,7 @@ https://www.rfc1437.de/2004/08/07/zehntausenden-versicherten-wird-rechtsschtz-gkndgt/ - 2026-03-04T07:53:20.000Z + 2026-03-04T07:53:20.256Z monthly 0.8 @@ -66728,7 +66917,7 @@ https://www.rfc1437.de/2004/08/07/zur-lage-der-nation-blog-blogosfearorg/ - 2026-03-04T07:53:25.000Z + 2026-03-04T07:53:25.397Z monthly 0.8 @@ -66737,7 +66926,7 @@ https://www.rfc1437.de/2004/08/06/capitol-hill-blue-dubya-does-it-again/ - 2026-03-07T21:18:02.000Z + 2026-03-07T21:18:02.417Z monthly 0.8 @@ -66746,7 +66935,7 @@ https://www.rfc1437.de/2004/08/06/sco-vs-linux-nach-dem-code-kommen-die-lizenzen/ - 2026-03-04T07:53:35.000Z + 2026-03-04T07:53:35.662Z monthly 0.8 @@ -66755,7 +66944,7 @@ https://www.rfc1437.de/2004/08/06/simulators-virtual-machines-of-the-past-and-future/ - 2026-03-04T07:53:39.000Z + 2026-03-04T07:53:39.387Z monthly 0.8 @@ -66764,7 +66953,7 @@ https://www.rfc1437.de/2004/08/06/spiegel-und-springer-schreiben-wie-frueher/ - 2026-03-04T07:53:45.000Z + 2026-03-04T07:53:45.757Z monthly 0.8 @@ -66773,7 +66962,7 @@ https://www.rfc1437.de/2004/08/06/strato-rechenzentren-vom-tuev-zertifiziert/ - 2026-03-04T07:53:50.000Z + 2026-03-04T07:53:50.630Z monthly 0.8 @@ -66782,7 +66971,7 @@ https://www.rfc1437.de/2004/08/06/t-systems-oeffnet-spam-schleuse/ - 2026-03-04T07:53:56.000Z + 2026-03-04T07:53:56.622Z monthly 0.8 @@ -66791,7 +66980,7 @@ https://www.rfc1437.de/2004/08/06/warm/ - 2026-03-04T07:53:59.000Z + 2026-03-04T07:53:59.756Z monthly 0.8 @@ -66800,7 +66989,7 @@ https://www.rfc1437.de/2004/08/05/benneter-anti-schroeder-brief-ist-unverschaemt/ - 2026-03-04T07:54:05.000Z + 2026-03-04T07:54:05.752Z monthly 0.8 @@ -66809,7 +66998,7 @@ https://www.rfc1437.de/2004/08/04/cyclone/ - 2026-03-04T07:54:10.000Z + 2026-03-04T07:54:10.924Z monthly 0.8 @@ -66818,7 +67007,7 @@ https://www.rfc1437.de/2004/08/04/dude-wheres-my-python/ - 2026-03-04T07:54:16.000Z + 2026-03-04T07:54:16.484Z monthly 0.8 @@ -66827,7 +67016,7 @@ https://www.rfc1437.de/2004/08/04/henri-cartier-bresson-ist-tot/ - 2026-03-04T07:54:21.000Z + 2026-03-04T07:54:21.372Z monthly 0.8 @@ -66836,7 +67025,7 @@ https://www.rfc1437.de/2004/08/04/imovie-entfernt-kopierschutz-von-apples-kaufmusik/ - 2026-03-04T07:54:26.000Z + 2026-03-04T07:54:26.532Z monthly 0.8 @@ -66845,7 +67034,7 @@ https://www.rfc1437.de/2004/08/04/news-muenchen-legt-limux-aufs-eis/ - 2026-03-04T07:54:30.000Z + 2026-03-04T07:54:30.644Z monthly 0.8 @@ -66854,7 +67043,7 @@ https://www.rfc1437.de/2004/08/04/sicherheitsleck-erlaubt-lesen-des-linx-krnl-spchrs/ - 2026-03-04T07:54:34.000Z + 2026-03-04T07:54:34.719Z monthly 0.8 @@ -66863,7 +67052,7 @@ https://www.rfc1437.de/2004/08/03/alg-ii-auch-kinder-sparbuecher-werden-ueberprueft/ - 2026-03-04T07:54:39.000Z + 2026-03-04T07:54:39.854Z monthly 0.8 @@ -66872,7 +67061,7 @@ https://www.rfc1437.de/2004/08/03/amigo-vorwuerfe-gegen-hohlmeiers-buero/ - 2026-03-04T07:54:44.000Z + 2026-03-04T07:54:44.707Z monthly 0.8 @@ -66881,7 +67070,7 @@ https://www.rfc1437.de/2004/08/03/ct-artikel-recherche/ - 2026-03-04T07:54:48.000Z + 2026-03-04T07:54:48.630Z monthly 0.8 @@ -66890,7 +67079,7 @@ https://www.rfc1437.de/2004/08/03/gmail-full/ - 2026-03-04T07:54:53.000Z + 2026-03-04T07:54:53.083Z monthly 0.8 @@ -66899,7 +67088,7 @@ https://www.rfc1437.de/2004/08/03/jugendmedienschutz-altrskntrll-pr-pstdnt-rcht-ncht/ - 2026-03-04T07:54:58.000Z + 2026-03-04T07:54:58.393Z monthly 0.8 @@ -66908,7 +67097,7 @@ https://www.rfc1437.de/2004/08/03/kabeljau-stirbt-langsam-aus/ - 2026-03-04T07:55:03.000Z + 2026-03-04T07:55:03.207Z monthly 0.8 @@ -66917,7 +67106,7 @@ https://www.rfc1437.de/2004/08/03/panasonic-r3-review/ - 2026-03-04T07:55:07.000Z + 2026-03-04T07:55:07.574Z monthly 0.8 @@ -66926,7 +67115,7 @@ https://www.rfc1437.de/2004/08/03/protesters-once-more-arrested-for-protesting-bush/ - 2026-03-04T07:55:11.000Z + 2026-03-04T07:55:11.927Z monthly 0.8 @@ -66935,7 +67124,7 @@ https://www.rfc1437.de/2004/08/02/bahn-will-hunderte-ticketschalter-schliessen/ - 2026-03-04T07:55:17.000Z + 2026-03-04T07:55:17.517Z monthly 0.8 @@ -66944,7 +67133,7 @@ https://www.rfc1437.de/2004/08/02/im-zweifelsfall-gegen-den-angeklagten/ - 2026-03-04T07:55:23.000Z + 2026-03-04T07:55:23.564Z monthly 0.8 @@ -66953,7 +67142,7 @@ https://www.rfc1437.de/2004/08/02/kloeden-zoegert-mit-vertragsverlaengerung/ - 2026-03-04T07:55:28.000Z + 2026-03-04T07:55:28.178Z monthly 0.8 @@ -66962,7 +67151,7 @@ https://www.rfc1437.de/2004/08/02/serverarbeiten-an-meinem-server/ - 2026-03-04T07:55:33.000Z + 2026-03-04T07:55:33.237Z monthly 0.8 @@ -66971,7 +67160,7 @@ https://www.rfc1437.de/2004/08/01/uses-and-applications-of-35mm-lenses/ - 2026-03-04T07:55:37.000Z + 2026-03-04T07:55:37.773Z monthly 0.8 @@ -66980,7 +67169,7 @@ https://www.rfc1437.de/2004/07/31/ambrai-smalltalk/ - 2026-03-04T07:55:43.000Z + 2026-03-04T07:55:43.369Z monthly 0.8 @@ -66989,7 +67178,7 @@ https://www.rfc1437.de/2004/07/31/keine-piraten-auf-dem-traumschiff/ - 2026-03-04T07:55:48.000Z + 2026-03-04T07:55:48.064Z monthly 0.8 @@ -66998,7 +67187,7 @@ https://www.rfc1437.de/2004/07/31/kritik-an-vatikan-brief-zu-feminismus/ - 2026-03-04T07:55:54.000Z + 2026-03-04T07:55:54.744Z monthly 0.8 @@ -67007,7 +67196,7 @@ https://www.rfc1437.de/2004/07/31/paarzeitfahren-in-buehl-sieg-an-csc-du-vgt-nd-jlch/ - 2026-03-04T07:56:00.000Z + 2026-03-04T07:56:00.686Z monthly 0.8 @@ -67016,7 +67205,7 @@ https://www.rfc1437.de/2004/07/30/ein-hoch-auf-die-systemadministratoren/ - 2026-03-04T07:56:04.000Z + 2026-03-04T07:56:04.652Z monthly 0.8 @@ -67025,7 +67214,7 @@ https://www.rfc1437.de/2004/07/30/finanzdaten-online-unerreichbar/ - 2026-03-04T07:56:10.000Z + 2026-03-04T07:56:10.809Z monthly 0.8 @@ -67034,7 +67223,7 @@ https://www.rfc1437.de/2004/07/30/hightech-konzerne-wollen-jpeg-patent-kippen/ - 2026-03-04T07:56:17.000Z + 2026-03-04T07:56:17.350Z monthly 0.8 @@ -67043,7 +67232,7 @@ https://www.rfc1437.de/2004/07/30/musikgruppe-rammstein-laesst-rammsteinfand-schlssn/ - 2026-03-04T07:56:23.000Z + 2026-03-04T07:56:23.122Z monthly 0.8 @@ -67052,7 +67241,7 @@ https://www.rfc1437.de/2004/07/30/that-gunk-on-your-car/ - 2026-03-04T07:56:31.000Z + 2026-03-04T07:56:31.157Z monthly 0.8 @@ -67061,7 +67250,7 @@ https://www.rfc1437.de/2004/07/29/bosco-howto/ - 2026-03-04T07:56:37.000Z + 2026-03-04T07:56:37.307Z monthly 0.8 @@ -67070,7 +67259,7 @@ https://www.rfc1437.de/2004/07/29/ironpython-a-fast-python-implementatin-fr-nt-nd-mn/ - 2026-03-04T07:56:42.000Z + 2026-03-04T07:56:42.848Z monthly 0.8 @@ -67079,7 +67268,7 @@ https://www.rfc1437.de/2004/07/29/jk-ldngtns-dgtl-lfstyl-sng-th-tls-tht-mk-cmptng-fn/ - 2026-03-04T07:56:48.000Z + 2026-03-04T07:56:48.340Z monthly 0.8 @@ -67088,7 +67277,7 @@ https://www.rfc1437.de/2004/07/29/lastfm-your-personal-msc-ntwrk-prsnlsd-nln-rd-sttn/ - 2026-03-04T07:56:53.000Z + 2026-03-04T07:56:53.912Z monthly 0.8 @@ -67097,7 +67286,7 @@ https://www.rfc1437.de/2004/07/29/safeurlde/ - 2026-03-04T07:57:00.000Z + 2026-03-04T07:57:00.690Z monthly 0.8 @@ -67106,7 +67295,7 @@ https://www.rfc1437.de/2004/07/29/siemens-ueberrascht-mit-gewinnsprung/ - 2026-03-04T07:57:07.000Z + 2026-03-04T07:57:07.629Z monthly 0.8 @@ -67115,7 +67304,7 @@ https://www.rfc1437.de/2004/07/28/kommunen-klagen-ueber-pflicht-zu-barrrfrn-ntrntstn/ - 2026-03-04T07:57:14.000Z + 2026-03-04T07:57:14.591Z monthly 0.8 @@ -67124,7 +67313,7 @@ https://www.rfc1437.de/2004/07/27/castro-attackiert-bush-kuba-kein-ziel-fuer-sxtrstn/ - 2026-03-04T07:57:21.000Z + 2026-03-04T07:57:21.617Z monthly 0.8 @@ -67133,7 +67322,7 @@ https://www.rfc1437.de/2004/07/27/current-books-about-icon/ - 2026-03-04T07:57:28.000Z + 2026-03-04T07:57:28.561Z monthly 0.8 @@ -67142,7 +67331,7 @@ https://www.rfc1437.de/2004/07/27/hagen-bossdorf-und-das-journalistsch-slbstvrstndns/ - 2026-03-04T07:57:36.000Z + 2026-03-04T07:57:36.516Z monthly 0.8 @@ -67151,7 +67340,7 @@ https://www.rfc1437.de/2004/07/27/oesterreichische-aussenministerin-wird-eu-kommssrn/ - 2026-03-04T07:57:43.000Z + 2026-03-04T07:57:43.262Z monthly 0.8 @@ -67160,7 +67349,7 @@ https://www.rfc1437.de/2004/07/27/statistisches-bundesamt-euro-kein-teuro/ - 2026-03-04T07:57:50.000Z + 2026-03-04T07:57:50.730Z monthly 0.8 @@ -67169,7 +67358,7 @@ https://www.rfc1437.de/2004/07/27/streit-bei-t-mobile-spitzt-sich-zu/ - 2026-03-04T07:57:57.000Z + 2026-03-04T07:57:57.750Z monthly 0.8 @@ -67178,7 +67367,7 @@ https://www.rfc1437.de/2004/07/27/uniconorg-the-unicon-programming-language-home-pag/ - 2026-03-04T07:58:04.000Z + 2026-03-04T07:58:04.445Z monthly 0.8 @@ -67187,7 +67376,7 @@ https://www.rfc1437.de/2004/07/26/debatte-ueber-arbeitsrecht-wird-schaerfer/ - 2026-03-04T07:58:12.000Z + 2026-03-04T07:58:12.260Z monthly 0.8 @@ -67196,7 +67385,7 @@ https://www.rfc1437.de/2004/07/26/geoffroy-klammeraffe/ - 2026-03-04T07:58:18.000Z + 2026-03-04T07:58:18.182Z monthly 0.8 @@ -67205,7 +67394,7 @@ https://www.rfc1437.de/2004/07/26/re-sender-id-and-free-software/ - 2026-03-04T07:58:24.000Z + 2026-03-04T07:58:24.071Z monthly 0.8 @@ -67214,7 +67403,7 @@ https://www.rfc1437.de/2004/07/26/schwerwiegende-sicherheitsmaengel-bei-t-com/ - 2026-03-04T07:58:27.000Z + 2026-03-04T07:58:27.977Z monthly 0.8 @@ -67223,7 +67412,7 @@ https://www.rfc1437.de/2004/07/26/the-piri-reis-map/ - 2026-03-04T07:58:33.000Z + 2026-03-04T07:58:33.266Z monthly 0.8 @@ -67232,7 +67421,7 @@ https://www.rfc1437.de/2004/07/25/big-lebowski-the-1998/ - 2026-03-04T07:58:37.000Z + 2026-03-04T07:58:37.720Z monthly 0.8 @@ -67241,7 +67430,7 @@ https://www.rfc1437.de/2004/07/25/going-all-loopy-about-loupes/ - 2026-03-04T07:58:42.000Z + 2026-03-04T07:58:42.728Z monthly 0.8 @@ -67250,7 +67439,7 @@ https://www.rfc1437.de/2004/07/25/tja-tour-2004-zuende/ - 2026-03-04T07:58:48.000Z + 2026-03-04T07:58:48.061Z monthly 0.8 @@ -67259,7 +67448,7 @@ https://www.rfc1437.de/2004/07/24/guantanamo-feeling-die-falschen-stempel-im-pass/ - 2026-03-04T07:58:52.000Z + 2026-03-04T07:58:52.459Z monthly 0.8 @@ -67268,7 +67457,7 @@ https://www.rfc1437.de/2004/07/24/phishing-ist-ja-nix-neues/ - 2026-03-04T07:58:58.000Z + 2026-03-04T07:58:58.436Z monthly 0.8 @@ -67277,7 +67466,7 @@ https://www.rfc1437.de/2004/07/24/salmonellen-keim-in-putenfleisch-entdeckt/ - 2026-03-04T07:59:04.000Z + 2026-03-04T07:59:04.536Z monthly 0.8 @@ -67286,7 +67475,7 @@ https://www.rfc1437.de/2004/07/24/sco-vs-linux-baystar-will-klage-einreichen/ - 2026-03-04T07:59:10.000Z + 2026-03-04T07:59:10.675Z monthly 0.8 @@ -67295,7 +67484,7 @@ https://www.rfc1437.de/2004/07/24/the-cyborg-name-generator-hugo/ - 2026-03-04T07:59:16.000Z + 2026-03-04T07:59:16.530Z monthly 0.8 @@ -67304,7 +67493,7 @@ https://www.rfc1437.de/2004/07/23/deutsches-gericht-bestaetigt-wirksamkeit-der-gpl/ - 2026-03-04T07:59:21.000Z + 2026-03-04T07:59:21.274Z monthly 0.8 @@ -67313,7 +67502,7 @@ https://www.rfc1437.de/2004/07/22/judas-voigt-ich-haette-heulen-koennen/ - 2026-03-04T07:59:27.000Z + 2026-03-04T07:59:27.067Z monthly 0.8 @@ -67322,7 +67511,7 @@ https://www.rfc1437.de/2004/07/22/monitor-gucken-macht-depressiv/ - 2026-03-04T07:59:32.000Z + 2026-03-04T07:59:32.981Z monthly 0.8 @@ -67331,7 +67520,7 @@ https://www.rfc1437.de/2004/07/22/nach-freispruch-bleiben-moralische-zweifel/ - 2026-03-04T07:59:39.000Z + 2026-03-04T07:59:39.276Z monthly 0.8 @@ -67340,7 +67529,7 @@ https://www.rfc1437.de/2004/07/22/run-baby-run-armstrong-freundin-sheryl-crw-b-dr-tr/ - 2026-03-04T07:59:44.000Z + 2026-03-04T07:59:44.222Z monthly 0.8 @@ -67349,7 +67538,7 @@ https://www.rfc1437.de/2004/07/22/spammer-ignoriere-ich-ja-ueblicherweise/ - 2026-03-04T07:59:49.000Z + 2026-03-04T07:59:49.333Z monthly 0.8 @@ -67358,7 +67547,7 @@ https://www.rfc1437.de/2004/07/21/blog-dienst-20six-uebernimmt-myblogde/ - 2026-03-04T07:59:54.000Z + 2026-03-04T07:59:54.569Z monthly 0.8 @@ -67367,7 +67556,7 @@ https://www.rfc1437.de/2004/07/21/den-radsportfans-ins-stammbuch/ - 2026-03-04T08:00:00.000Z + 2026-03-04T08:00:00.207Z monthly 0.8 @@ -67376,7 +67565,7 @@ https://www.rfc1437.de/2004/07/21/sco-claims-linux-lifted-elf-linuxworld/ - 2026-03-04T08:00:05.000Z + 2026-03-04T08:00:05.799Z monthly 0.8 @@ -67385,7 +67574,7 @@ https://www.rfc1437.de/2004/07/21/web-loch-beim-sat1-internetexperten/ - 2026-03-04T08:00:10.000Z + 2026-03-04T08:00:10.279Z monthly 0.8 @@ -67394,7 +67583,7 @@ https://www.rfc1437.de/2004/07/20/alles-meckert-ueber-armstrong/ - 2026-03-04T08:00:16.000Z + 2026-03-04T08:00:16.503Z monthly 0.8 @@ -67403,7 +67592,7 @@ https://www.rfc1437.de/2004/07/20/japan-droht-mit-austritt-aus-walfangkommission/ - 2026-03-04T08:00:22.000Z + 2026-03-04T08:00:22.118Z monthly 0.8 @@ -67412,7 +67601,7 @@ https://www.rfc1437.de/2004/07/20/nur-mal-so-am-rande/ - 2026-03-04T08:00:27.000Z + 2026-03-04T08:00:27.608Z monthly 0.8 @@ -67421,7 +67610,7 @@ https://www.rfc1437.de/2004/07/20/urteil-zu-ag-domains-verschaerft/ - 2026-03-04T08:00:33.000Z + 2026-03-04T08:00:33.879Z monthly 0.8 @@ -67430,7 +67619,7 @@ https://www.rfc1437.de/2004/07/20/wenn-die-rosa-rennwurst-platzt/ - 2026-03-04T08:00:38.000Z + 2026-03-04T08:00:38.917Z monthly 0.8 @@ -67439,7 +67628,7 @@ https://www.rfc1437.de/2004/07/20/wo-ich-gerade-bei-verlogenheit-bin/ - 2026-03-04T08:00:43.000Z + 2026-03-04T08:00:43.080Z monthly 0.8 @@ -67448,7 +67637,7 @@ https://www.rfc1437.de/2004/07/19/dereks-rantings-and-msngs-ths-lttl-vl-stckrs-n-crs/ - 2026-03-04T08:00:49.000Z + 2026-03-04T08:00:49.189Z monthly 0.8 @@ -67457,7 +67646,7 @@ https://www.rfc1437.de/2004/07/19/emotionale-entscheidung/ - 2026-03-04T08:00:54.000Z + 2026-03-04T08:00:54.663Z monthly 0.8 @@ -67466,7 +67655,7 @@ https://www.rfc1437.de/2004/07/19/firefox-switch/ - 2026-03-04T08:00:59.000Z + 2026-03-04T08:00:59.472Z monthly 0.8 @@ -67475,7 +67664,7 @@ https://www.rfc1437.de/2004/07/19/publizieren-im-internet-lohnt-sich/ - 2026-03-04T08:01:05.000Z + 2026-03-04T08:01:05.085Z monthly 0.8 @@ -67484,7 +67673,7 @@ https://www.rfc1437.de/2004/07/19/stehradler/ - 2026-03-04T08:01:11.000Z + 2026-03-04T08:01:11.607Z monthly 0.8 @@ -67493,7 +67682,7 @@ https://www.rfc1437.de/2004/07/18/ein-nationaler-held-der-usa-wird-festgenommen/ - 2026-03-04T08:01:17.000Z + 2026-03-04T08:01:17.399Z monthly 0.8 @@ -67502,7 +67691,7 @@ https://www.rfc1437.de/2004/07/18/english-or-not/ - 2026-03-04T08:01:23.000Z + 2026-03-04T08:01:23.221Z monthly 0.8 @@ -67511,7 +67700,7 @@ https://www.rfc1437.de/2004/07/18/gott-spricht-durch-bush/ - 2026-03-04T08:01:28.000Z + 2026-03-04T08:01:28.504Z monthly 0.8 @@ -67520,7 +67709,7 @@ https://www.rfc1437.de/2004/07/18/shes-lost-control/ - 2026-03-04T08:01:35.000Z + 2026-03-04T08:01:35.431Z monthly 0.8 @@ -67529,7 +67718,7 @@ https://www.rfc1437.de/2004/07/17/bundesagentur-fuer-arbeit-ungeremthtn-m-mllnn-ftrg/ - 2026-03-04T08:01:40.000Z + 2026-03-04T08:01:40.674Z monthly 0.8 @@ -67538,7 +67727,7 @@ https://www.rfc1437.de/2004/07/17/erster-virus-fuer-windows-mobilepocket-pc/ - 2026-03-04T08:01:46.000Z + 2026-03-04T08:01:46.468Z monthly 0.8 @@ -67547,7 +67736,7 @@ https://www.rfc1437.de/2004/07/17/marsroboter-spirit-und-opportunity-weitrhn-nstzfhg/ - 2026-03-04T08:01:51.000Z + 2026-03-04T08:01:51.231Z monthly 0.8 @@ -67556,7 +67745,7 @@ https://www.rfc1437.de/2004/07/17/sheriff-kochs-und-deputy-bouffiers-posse/ - 2026-03-04T08:01:56.000Z + 2026-03-04T08:01:56.398Z monthly 0.8 @@ -67565,7 +67754,7 @@ https://www.rfc1437.de/2004/07/17/voeckler-und-voigt-zwei-klasse-kaempfer/ - 2026-03-04T08:02:02.000Z + 2026-03-04T08:02:02.816Z monthly 0.8 @@ -67574,7 +67763,7 @@ https://www.rfc1437.de/2004/07/16/boo-home/ - 2026-03-04T08:02:07.000Z + 2026-03-04T08:02:07.544Z monthly 0.8 @@ -67583,7 +67772,7 @@ https://www.rfc1437.de/2004/07/16/deutsche-bank-warnt-vor-softwarepatenten/ - 2026-03-04T08:02:13.000Z + 2026-03-04T08:02:13.344Z monthly 0.8 @@ -67592,7 +67781,7 @@ https://www.rfc1437.de/2004/07/16/mal-wieder-nur-ticker-aber/ - 2026-03-04T08:02:19.000Z + 2026-03-04T08:02:19.337Z monthly 0.8 @@ -67601,7 +67790,7 @@ https://www.rfc1437.de/2004/07/15/die-zeiten-werden-wohl-sehr-hart/ - 2026-03-04T08:02:24.000Z + 2026-03-04T08:02:24.989Z monthly 0.8 @@ -67610,7 +67799,7 @@ https://www.rfc1437.de/2004/07/15/schwangerenberatung-auch-ohne-schein-foerderwuerdg/ - 2026-03-04T08:02:31.000Z + 2026-03-04T08:02:31.485Z monthly 0.8 @@ -67619,7 +67808,7 @@ https://www.rfc1437.de/2004/07/14/leider-nur-ticker-aber-die-etappe-war-wohl-klasse/ - 2026-03-04T08:02:37.000Z + 2026-03-04T08:02:37.571Z monthly 0.8 @@ -67628,7 +67817,7 @@ https://www.rfc1437.de/2004/07/14/patentstreit/ - 2026-03-04T08:02:43.000Z + 2026-03-04T08:02:43.493Z monthly 0.8 @@ -67637,7 +67826,7 @@ https://www.rfc1437.de/2004/07/14/qualitaetsjournalismus-de-luxe/ - 2026-03-04T08:02:49.000Z + 2026-03-04T08:02:49.420Z monthly 0.8 @@ -67646,7 +67835,7 @@ https://www.rfc1437.de/2004/07/14/the-discovery-of-umami/ - 2026-03-04T08:02:54.000Z + 2026-03-04T08:02:54.764Z monthly 0.8 @@ -67655,7 +67844,7 @@ https://www.rfc1437.de/2004/07/14/the-long-now-foundation-feynman-und-di-cnnctn-mchn/ - 2026-03-04T08:03:00.000Z + 2026-03-04T08:03:00.130Z monthly 0.8 @@ -67664,7 +67853,7 @@ https://www.rfc1437.de/2004/07/13/classic-camera/ - 2026-03-04T08:03:04.000Z + 2026-03-04T08:03:04.865Z monthly 0.8 @@ -67673,7 +67862,7 @@ https://www.rfc1437.de/2004/07/13/gmail-ist-seltsam/ - 2026-03-04T08:03:12.000Z + 2026-03-04T08:03:12.165Z monthly 0.8 @@ -67682,7 +67871,7 @@ https://www.rfc1437.de/2004/07/13/mcewen-mag-ich-den-sieg-heute-nicht-goennen/ - 2026-03-04T08:03:17.000Z + 2026-03-04T08:03:17.776Z monthly 0.8 @@ -67691,7 +67880,7 @@ https://www.rfc1437.de/2004/07/13/syd-barrett/ - 2026-03-04T08:03:23.000Z + 2026-03-04T08:03:23.357Z monthly 0.8 @@ -67700,7 +67889,7 @@ https://www.rfc1437.de/2004/07/13/wegmanns-tour-premiere-da-hatte-ich-enn-klnn-schck/ - 2026-03-04T08:03:29.000Z + 2026-03-04T08:03:29.932Z monthly 0.8 @@ -67709,7 +67898,7 @@ https://www.rfc1437.de/2004/07/13/windows-xp-sicherer-als-linux-und-mac-osx/ - 2026-03-04T08:03:36.000Z + 2026-03-04T08:03:36.541Z monthly 0.8 @@ -67718,7 +67907,7 @@ https://www.rfc1437.de/2004/07/12/aids-konferenz-streitet-ueber-kondome/ - 2026-03-04T08:03:43.000Z + 2026-03-04T08:03:43.661Z monthly 0.8 @@ -67727,7 +67916,7 @@ https://www.rfc1437.de/2004/07/12/bush-will-notfalls-us-wahlen-verschieben/ - 2026-03-04T08:03:50.000Z + 2026-03-04T08:03:50.589Z monthly 0.8 @@ -67736,7 +67925,7 @@ https://www.rfc1437.de/2004/07/12/daimlerchrysler-droht-mit-produktionsverlagerung/ - 2026-03-04T08:03:57.000Z + 2026-03-04T08:03:57.903Z monthly 0.8 @@ -67745,7 +67934,7 @@ https://www.rfc1437.de/2004/07/12/fckeditor-the-text-editor-for-internet/ - 2026-03-04T08:04:03.000Z + 2026-03-04T08:04:03.627Z monthly 0.8 @@ -67754,7 +67943,7 @@ https://www.rfc1437.de/2004/07/12/gppl-s-nest/ - 2026-03-04T08:04:07.000Z + 2026-03-04T08:04:07.761Z monthly 0.8 @@ -67763,7 +67952,7 @@ https://www.rfc1437.de/2004/07/12/gut-getroffen/ - 2026-03-04T08:04:13.000Z + 2026-03-04T08:04:13.111Z monthly 0.8 @@ -67772,7 +67961,7 @@ https://www.rfc1437.de/2004/07/12/gwydion-dylan-overview/ - 2026-03-04T08:04:17.000Z + 2026-03-04T08:04:17.367Z monthly 0.8 @@ -67781,7 +67970,7 @@ https://www.rfc1437.de/2004/07/12/icann-bleibt-beim-sitefinder-hart/ - 2026-03-04T08:04:23.000Z + 2026-03-04T08:04:23.167Z monthly 0.8 @@ -67790,7 +67979,7 @@ https://www.rfc1437.de/2004/07/12/lwn-oracle-patents-content-management-systems/ - 2026-03-04T08:04:28.000Z + 2026-03-04T08:04:28.283Z monthly 0.8 @@ -67799,7 +67988,7 @@ https://www.rfc1437.de/2004/07/12/marlais-sourceforge-project/ - 2026-03-07T21:18:03.000Z + 2026-03-07T21:18:03.703Z monthly 0.8 @@ -67808,7 +67997,7 @@ https://www.rfc1437.de/2004/07/12/missbrauchsskandal-an-oesterreichischem-pristrsmnr/ - 2026-03-04T08:04:37.000Z + 2026-03-04T08:04:37.954Z monthly 0.8 @@ -67817,7 +68006,7 @@ https://www.rfc1437.de/2004/07/12/rent-a-coder-automated-form-filler/ - 2026-03-04T08:04:42.000Z + 2026-03-04T08:04:42.349Z monthly 0.8 @@ -67826,7 +68015,7 @@ https://www.rfc1437.de/2004/07/12/sinnkrisen-bei-bloggern/ - 2026-03-04T08:04:46.000Z + 2026-03-04T08:04:46.946Z monthly 0.8 @@ -67835,7 +68024,7 @@ https://www.rfc1437.de/2004/07/12/u2018building-accessible-websites-u2019/ - 2026-03-04T08:04:50.000Z + 2026-03-04T08:04:50.599Z monthly 0.8 @@ -67844,7 +68033,7 @@ https://www.rfc1437.de/2004/07/12/wer-ruft-denn-da-an/ - 2026-03-04T08:04:55.000Z + 2026-03-04T08:04:55.446Z monthly 0.8 @@ -67853,7 +68042,7 @@ https://www.rfc1437.de/2004/07/11/coriolis-systems-products-ipartition/ - 2026-03-04T08:04:59.000Z + 2026-03-04T08:04:59.050Z monthly 0.8 @@ -67862,7 +68051,7 @@ https://www.rfc1437.de/2004/07/11/subrosasoft-com-product-information/ - 2026-03-04T08:05:02.000Z + 2026-03-04T08:05:02.772Z monthly 0.8 @@ -67871,7 +68060,7 @@ https://www.rfc1437.de/2004/07/10/arbeitgeber-kritisieren-vorschlaege-zur-urlbskrzng/ - 2026-03-04T08:05:07.000Z + 2026-03-04T08:05:07.338Z monthly 0.8 @@ -67880,7 +68069,7 @@ https://www.rfc1437.de/2004/07/10/haselbacher-gebrochener-lenker-sturzursache/ - 2026-03-04T08:05:12.000Z + 2026-03-04T08:05:12.354Z monthly 0.8 @@ -67889,7 +68078,7 @@ https://www.rfc1437.de/2004/07/10/sensor-brush/ - 2026-03-04T08:05:17.000Z + 2026-03-04T08:05:17.043Z monthly 0.8 @@ -67898,7 +68087,7 @@ https://www.rfc1437.de/2004/07/09/fast-ego-blogging/ - 2026-03-04T08:05:21.000Z + 2026-03-04T08:05:21.517Z monthly 0.8 @@ -67907,7 +68096,7 @@ https://www.rfc1437.de/2004/07/09/hamilton-erlitt-schwere-prellungen/ - 2026-03-04T08:05:26.000Z + 2026-03-04T08:05:26.040Z monthly 0.8 @@ -67916,7 +68105,7 @@ https://www.rfc1437.de/2004/07/09/haselbacher-kein-becken-oder-beinbruch/ - 2026-03-04T08:05:31.000Z + 2026-03-04T08:05:31.052Z monthly 0.8 @@ -67925,7 +68114,7 @@ https://www.rfc1437.de/2004/07/09/indien-und-bangladesch-streiten-um-lfntn-m-grnzgbt/ - 2026-03-04T08:05:36.000Z + 2026-03-04T08:05:36.760Z monthly 0.8 @@ -67934,7 +68123,7 @@ https://www.rfc1437.de/2004/07/09/klage-gegen-adobe-wegen-patentverletzung-drch-crbt/ - 2026-03-04T08:05:41.000Z + 2026-03-04T08:05:41.758Z monthly 0.8 @@ -67943,7 +68132,7 @@ https://www.rfc1437.de/2004/07/09/man-accused-of-altavista-theft-working-on-msn-srch/ - 2026-03-04T08:05:45.000Z + 2026-03-04T08:05:45.957Z monthly 0.8 @@ -67952,7 +68141,7 @@ https://www.rfc1437.de/2004/07/09/petacchi-and-cipollini-both-leave-tour/ - 2026-03-04T08:05:51.000Z + 2026-03-04T08:05:51.031Z monthly 0.8 @@ -67961,7 +68150,7 @@ https://www.rfc1437.de/2004/07/09/professoren-wegen-online-betrug-vor-gericht/ - 2026-03-04T08:05:55.000Z + 2026-03-04T08:05:55.625Z monthly 0.8 @@ -67970,7 +68159,7 @@ https://www.rfc1437.de/2004/07/09/sco-vs-linux-sco-fordert-ungehndrtn-zgng-z-dn-bwsn/ - 2026-03-04T08:06:01.000Z + 2026-03-04T08:06:01.081Z monthly 0.8 @@ -67979,7 +68168,7 @@ https://www.rfc1437.de/2004/07/09/urteil-besitz-kleiner-cannabis-mengen-weitr-strfbr/ - 2026-03-04T08:06:06.000Z + 2026-03-04T08:06:06.063Z monthly 0.8 @@ -67988,7 +68177,7 @@ https://www.rfc1437.de/2004/07/09/xhtml-validator-to-rss-ben-hammersley/ - 2026-03-04T08:06:09.000Z + 2026-03-04T08:06:09.634Z monthly 0.8 @@ -67997,7 +68186,7 @@ https://www.rfc1437.de/2004/07/08/abkommen-ueber-spam-unter-der-aegide-der-itu/ - 2026-03-04T08:06:14.000Z + 2026-03-04T08:06:14.242Z monthly 0.8 @@ -68006,7 +68195,7 @@ https://www.rfc1437.de/2004/07/08/bdi-fordert-eine-woche-urlaub-weniger/ - 2026-03-04T08:06:18.000Z + 2026-03-04T08:06:18.877Z monthly 0.8 @@ -68015,7 +68204,7 @@ https://www.rfc1437.de/2004/07/08/epson-rd-1-beispiele/ - 2026-03-04T08:06:22.000Z + 2026-03-04T08:06:22.930Z monthly 0.8 @@ -68024,7 +68213,7 @@ https://www.rfc1437.de/2004/07/08/wenn-sich-sprinter-belauern/ - 2026-03-04T08:06:27.000Z + 2026-03-04T08:06:27.486Z monthly 0.8 @@ -68033,7 +68222,7 @@ https://www.rfc1437.de/2004/07/08/zafira-nach-polen-wegen-ruestungsdeal/ - 2026-03-04T08:06:31.000Z + 2026-03-04T08:06:31.971Z monthly 0.8 @@ -68042,7 +68231,7 @@ https://www.rfc1437.de/2004/07/07/pylinda/ - 2026-03-04T08:06:36.000Z + 2026-03-04T08:06:36.890Z monthly 0.8 @@ -68051,7 +68240,7 @@ https://www.rfc1437.de/2004/07/07/rettung-fuer-hamburger-filmfoerderung/ - 2026-03-04T08:06:42.000Z + 2026-03-04T08:06:42.366Z monthly 0.8 @@ -68060,7 +68249,7 @@ https://www.rfc1437.de/2004/07/07/tour-de-france-iban-mayo-erlebt-sein-waterloo/ - 2026-03-04T08:06:47.000Z + 2026-03-04T08:06:47.788Z monthly 0.8 @@ -68069,7 +68258,7 @@ https://www.rfc1437.de/2004/07/07/un-spam-problem-in-zwei-jahren-loesbar/ - 2026-03-04T08:06:52.000Z + 2026-03-04T08:06:52.280Z monthly 0.8 @@ -68078,7 +68267,7 @@ https://www.rfc1437.de/2004/07/06/bndsknzlr-ptnt-strkn-nnvtnswlln-nd-nvsttnsbrtschft/ - 2026-03-04T08:06:57.000Z + 2026-03-04T08:06:57.657Z monthly 0.8 @@ -68087,7 +68276,7 @@ https://www.rfc1437.de/2004/07/06/dialer-abzocke-mit-dem-namen-ct-unterbunden/ - 2026-03-04T08:07:01.000Z + 2026-03-04T08:07:01.302Z monthly 0.8 @@ -68096,7 +68285,7 @@ https://www.rfc1437.de/2004/07/06/ex-kulturhauptstadtskandidat-ohne-kulturdezernentn/ - 2026-03-04T08:07:05.000Z + 2026-03-04T08:07:05.742Z monthly 0.8 @@ -68105,7 +68294,7 @@ https://www.rfc1437.de/2004/07/06/ipods-a-security-risk-warns-complete-idiot/ - 2026-03-04T08:07:10.000Z + 2026-03-04T08:07:10.652Z monthly 0.8 @@ -68114,7 +68303,7 @@ https://www.rfc1437.de/2004/07/06/the-internet-is-shit/ - 2026-03-04T08:07:13.000Z + 2026-03-04T08:07:13.833Z monthly 0.8 @@ -68123,7 +68312,7 @@ https://www.rfc1437.de/2004/07/06/weils-gestern-um-online-oldies-ging/ - 2026-03-04T08:07:18.000Z + 2026-03-04T08:07:18.796Z monthly 0.8 @@ -68132,7 +68321,7 @@ https://www.rfc1437.de/2004/07/06/widerstand-gegen-50-stunden-woche/ - 2026-03-04T08:07:23.000Z + 2026-03-04T08:07:23.244Z monthly 0.8 @@ -68141,7 +68330,7 @@ https://www.rfc1437.de/2004/07/05/alte-saecke-online/ - 2026-03-04T08:07:28.000Z + 2026-03-04T08:07:28.150Z monthly 0.8 @@ -68150,7 +68339,7 @@ https://www.rfc1437.de/2004/07/05/ego-blogging/ - 2026-03-04T08:07:33.000Z + 2026-03-04T08:07:33.066Z monthly 0.8 @@ -68159,7 +68348,7 @@ https://www.rfc1437.de/2004/07/05/mute-simple-anonymous-file-sharing/ - 2026-03-04T08:07:36.000Z + 2026-03-04T08:07:36.928Z monthly 0.8 @@ -68168,7 +68357,7 @@ https://www.rfc1437.de/2004/07/05/schroeder-regt-entlastung-der-pharmaindustrie-an/ - 2026-03-04T08:07:41.000Z + 2026-03-04T08:07:41.438Z monthly 0.8 @@ -68177,7 +68366,7 @@ https://www.rfc1437.de/2004/07/05/steffen-wesemann-von-auto-angefahren/ - 2026-03-04T08:07:45.000Z + 2026-03-04T08:07:45.517Z monthly 0.8 @@ -68186,7 +68375,7 @@ https://www.rfc1437.de/2004/07/04/backlight-kits-fuer-hp-handhelds-backlight4you-com/ - 2026-03-04T08:07:49.000Z + 2026-03-04T08:07:49.786Z monthly 0.8 @@ -68195,7 +68384,7 @@ https://www.rfc1437.de/2004/07/04/bericht-software-projekt-fuer-finanzaemter-gschtrt/ - 2026-03-04T08:07:53.000Z + 2026-03-04T08:07:53.871Z monthly 0.8 @@ -68204,7 +68393,7 @@ https://www.rfc1437.de/2004/07/04/digital-research-s-gem-intel-8086-version/ - 2026-03-04T08:07:57.000Z + 2026-03-04T08:07:57.459Z monthly 0.8 @@ -68213,7 +68402,7 @@ https://www.rfc1437.de/2004/07/04/dos-palmtops/ - 2026-03-04T08:08:01.000Z + 2026-03-04T08:08:01.035Z monthly 0.8 @@ -68222,7 +68411,7 @@ https://www.rfc1437.de/2004/07/04/gem-for-hp200lx/ - 2026-03-04T08:08:04.000Z + 2026-03-04T08:08:04.586Z monthly 0.8 @@ -68231,7 +68420,7 @@ https://www.rfc1437.de/2004/07/04/hp-100lx-200lx-technical-information-2/ - 2026-03-04T08:08:08.000Z + 2026-03-04T08:08:08.223Z monthly 0.8 @@ -68240,7 +68429,7 @@ https://www.rfc1437.de/2004/07/04/hp-200-lx/ - 2026-03-04T08:08:12.000Z + 2026-03-04T08:08:12.684Z monthly 0.8 @@ -68249,7 +68438,7 @@ https://www.rfc1437.de/2004/07/04/index-of-ftp-software-lotu-magellan-2-x-misc/ - 2026-03-04T08:08:16.000Z + 2026-03-04T08:08:16.683Z monthly 0.8 @@ -68258,7 +68447,7 @@ https://www.rfc1437.de/2004/07/04/index-of-ftp-software-lotu-top-agenda-dos-2-0/ - 2026-03-07T21:18:05.000Z + 2026-03-07T21:18:05.044Z monthly 0.8 @@ -68267,7 +68456,7 @@ https://www.rfc1437.de/2004/07/04/infrared-communication-with-the-palmtop-hp-200lx/ - 2026-03-04T08:08:24.000Z + 2026-03-04T08:08:24.346Z monthly 0.8 @@ -68276,7 +68465,7 @@ https://www.rfc1437.de/2004/07/04/mindmap-lx-mm-lx/ - 2026-03-04T08:08:27.000Z + 2026-03-04T08:08:27.926Z monthly 0.8 @@ -68285,7 +68474,7 @@ https://www.rfc1437.de/2004/07/04/mrns-n-th-nws-cnsrvtv-rspns-t-fhrnht-911-cnsrvtv/ - 2026-03-04T08:08:32.000Z + 2026-03-04T08:08:32.501Z monthly 0.8 @@ -68294,7 +68483,7 @@ https://www.rfc1437.de/2004/07/04/the-s-u-p-e-r-site-by-category/ - 2026-03-04T08:08:36.000Z + 2026-03-04T08:08:36.537Z monthly 0.8 @@ -68303,7 +68492,7 @@ https://www.rfc1437.de/2004/07/04/www-lx-the-internet-solution-in-your-pocket-2/ - 2026-03-04T08:08:40.000Z + 2026-03-04T08:08:40.820Z monthly 0.8 @@ -68312,7 +68501,7 @@ https://www.rfc1437.de/2004/07/04/zypries-plant-abgabe-auf-pcs-und-drucker/ - 2026-03-04T08:08:45.000Z + 2026-03-04T08:08:45.958Z monthly 0.8 @@ -68321,7 +68510,7 @@ https://www.rfc1437.de/2004/07/03/bsi-stellt-behoerden-desktop-zum-download-bereit/ - 2026-03-04T08:08:49.000Z + 2026-03-04T08:08:49.685Z monthly 0.8 @@ -68330,7 +68519,7 @@ https://www.rfc1437.de/2004/07/03/gewerkschafter-und-spd-kritiker-gruenden-lnksbndns/ - 2026-03-04T08:08:54.000Z + 2026-03-04T08:08:54.650Z monthly 0.8 @@ -68339,7 +68528,7 @@ https://www.rfc1437.de/2004/07/03/index-of-afs-cs-cmu-edu-pr-ng-scheme-impl-s88/ - 2026-03-04T08:08:58.000Z + 2026-03-04T08:08:58.747Z monthly 0.8 @@ -68348,7 +68537,7 @@ https://www.rfc1437.de/2004/07/03/index-of-afs-cs-cmu-edu-pr-pl-pcscheme-geneva/ - 2026-03-04T08:09:03.000Z + 2026-03-04T08:09:03.014Z monthly 0.8 @@ -68357,7 +68546,7 @@ https://www.rfc1437.de/2004/07/03/index-of-pub-scheme-repository-imp-pcscheme/ - 2026-03-04T08:09:07.000Z + 2026-03-04T08:09:07.029Z monthly 0.8 @@ -68366,7 +68555,7 @@ https://www.rfc1437.de/2004/07/03/lx2palm/ - 2026-03-04T08:09:10.000Z + 2026-03-04T08:09:10.616Z monthly 0.8 @@ -68375,7 +68564,7 @@ https://www.rfc1437.de/2004/07/03/palmtop-information-central/ - 2026-03-04T08:09:13.000Z + 2026-03-04T08:09:13.824Z monthly 0.8 @@ -68384,7 +68573,7 @@ https://www.rfc1437.de/2004/07/03/spd-politiker-kehren-verdi-den-ruecken/ - 2026-03-04T08:09:19.000Z + 2026-03-04T08:09:19.044Z monthly 0.8 @@ -68393,7 +68582,7 @@ https://www.rfc1437.de/2004/07/03/the-hp-palmtop-paper-online/ - 2026-03-04T08:09:23.000Z + 2026-03-04T08:09:23.112Z monthly 0.8 @@ -68402,7 +68591,7 @@ https://www.rfc1437.de/2004/07/03/the-hp200lx-tcp-ip-suite-home-page/ - 2026-03-04T08:09:27.000Z + 2026-03-04T08:09:27.260Z monthly 0.8 @@ -68411,7 +68600,7 @@ https://www.rfc1437.de/2004/07/03/the-mysterious-web-page-of-dr-dubs/ - 2026-03-04T08:09:31.000Z + 2026-03-04T08:09:31.346Z monthly 0.8 @@ -68420,7 +68609,7 @@ https://www.rfc1437.de/2004/07/03/the-pal-page/ - 2026-03-04T08:09:36.000Z + 2026-03-04T08:09:36.072Z monthly 0.8 @@ -68429,7 +68618,7 @@ https://www.rfc1437.de/2004/07/03/tuxmobil-unix-on-the-hp200lx-palmtop/ - 2026-03-04T08:09:40.000Z + 2026-03-04T08:09:40.418Z monthly 0.8 @@ -68438,7 +68627,7 @@ https://www.rfc1437.de/2004/07/03/weniger-urlaub-fuer-mehr-jobs/ - 2026-03-04T08:09:46.000Z + 2026-03-04T08:09:46.307Z monthly 0.8 @@ -68447,7 +68636,7 @@ https://www.rfc1437.de/2004/07/02/agenda-links-page/ - 2026-03-04T08:09:50.000Z + 2026-03-04T08:09:50.084Z monthly 0.8 @@ -68456,7 +68645,7 @@ https://www.rfc1437.de/2004/07/02/antrittsrede/ - 2026-03-04T08:09:55.000Z + 2026-03-04T08:09:55.171Z monthly 0.8 @@ -68465,7 +68654,7 @@ https://www.rfc1437.de/2004/07/02/clotho/ - 2026-03-04T08:09:58.000Z + 2026-03-04T08:09:58.806Z monthly 0.8 @@ -68474,7 +68663,7 @@ https://www.rfc1437.de/2004/07/02/dashboard-iii/ - 2026-03-04T08:10:04.000Z + 2026-03-04T08:10:04.022Z monthly 0.8 @@ -68483,7 +68672,7 @@ https://www.rfc1437.de/2004/07/02/glibc-based-debian-gnu-kfreebsd/ - 2026-03-04T08:10:08.000Z + 2026-03-04T08:10:08.403Z monthly 0.8 @@ -68492,7 +68681,7 @@ https://www.rfc1437.de/2004/07/02/open-source-applications-foundation/ - 2026-03-04T08:10:12.000Z + 2026-03-04T08:10:12.104Z monthly 0.8 @@ -68501,7 +68690,7 @@ https://www.rfc1437.de/2004/07/02/pic-aahattan/ - 2026-03-04T08:10:16.000Z + 2026-03-04T08:10:16.253Z monthly 0.8 @@ -68510,7 +68699,7 @@ https://www.rfc1437.de/2004/07/02/pic-blauer-wuschel/ - 2026-03-04T08:10:20.000Z + 2026-03-04T08:10:20.337Z monthly 0.8 @@ -68519,7 +68708,7 @@ https://www.rfc1437.de/2004/07/02/pic-ein-nicht-ganz-weites-feld/ - 2026-03-04T08:10:24.000Z + 2026-03-04T08:10:24.676Z monthly 0.8 @@ -68537,7 +68726,7 @@ https://www.rfc1437.de/2004/07/02/symbolkraeftige-entscheidung-ggn-sftwrptnt-n-dn-hg/ - 2026-03-04T08:10:34.000Z + 2026-03-04T08:10:34.045Z monthly 0.8 @@ -68546,7 +68735,7 @@ https://www.rfc1437.de/2004/07/01/knowledge-management-data-mining-and-information/ - 2026-03-04T08:10:37.000Z + 2026-03-04T08:10:37.923Z monthly 0.8 @@ -68555,7 +68744,7 @@ https://www.rfc1437.de/2004/07/01/leica-announces-summilux-m-f1450mm-asph-lens/ - 2026-03-04T08:10:42.000Z + 2026-03-04T08:10:42.282Z monthly 0.8 @@ -68564,7 +68753,7 @@ https://www.rfc1437.de/2004/07/01/lord-of-the-rings-hat-jetzt-kuenstlichen-trabanten/ - 2026-03-04T08:10:47.000Z + 2026-03-04T08:10:47.332Z monthly 0.8 @@ -68573,7 +68762,7 @@ https://www.rfc1437.de/2004/07/01/sicherheitsloch-in-iptables-bei-linux-kernel-26/ - 2026-03-04T08:10:52.000Z + 2026-03-04T08:10:52.142Z monthly 0.8 @@ -68582,7 +68771,7 @@ https://www.rfc1437.de/2004/07/01/verspielt-siemens-seinen-guten-ruf/ - 2026-03-04T08:10:57.000Z + 2026-03-04T08:10:57.452Z monthly 0.8 @@ -68591,7 +68780,7 @@ https://www.rfc1437.de/2004/07/01/xanalys-lispworks-press-release/ - 2026-03-04T08:11:01.000Z + 2026-03-04T08:11:01.421Z monthly 0.8 @@ -68600,7 +68789,7 @@ https://www.rfc1437.de/2004/06/30/dashboard/ - 2026-03-04T08:11:06.000Z + 2026-03-04T08:11:06.655Z monthly 0.8 @@ -68609,7 +68798,7 @@ https://www.rfc1437.de/2004/06/30/justizministerim-wll-nln-kprrn-wtr-stn-n-dn-wg-lgn/ - 2026-03-04T08:11:11.000Z + 2026-03-04T08:11:11.977Z monthly 0.8 @@ -68618,7 +68807,7 @@ https://www.rfc1437.de/2004/06/30/tour-aus-fuer-jaksche-nach-trainingsunfall/ - 2026-03-04T08:11:16.000Z + 2026-03-04T08:11:16.819Z monthly 0.8 @@ -68627,7 +68816,7 @@ https://www.rfc1437.de/2004/06/29/bergen-linux-user-group/ - 2026-03-04T08:11:21.000Z + 2026-03-04T08:11:21.110Z monthly 0.8 @@ -68636,7 +68825,7 @@ https://www.rfc1437.de/2004/06/29/rechtsfreie-raeume-sind-illegal/ - 2026-03-04T08:11:25.000Z + 2026-03-04T08:11:25.518Z monthly 0.8 @@ -68645,7 +68834,7 @@ https://www.rfc1437.de/2004/06/29/save-the-ipod/ - 2026-03-04T08:11:30.000Z + 2026-03-04T08:11:30.626Z monthly 0.8 @@ -68654,7 +68843,7 @@ https://www.rfc1437.de/2004/06/29/urteil-beamtenbesoldung-nach-leistung-ist-rechtens/ - 2026-03-04T08:11:36.000Z + 2026-03-04T08:11:36.031Z monthly 0.8 @@ -68663,7 +68852,7 @@ https://www.rfc1437.de/2004/06/28/cupertino-start-your-photocopiers/ - 2026-03-04T08:11:40.000Z + 2026-03-04T08:11:40.172Z monthly 0.8 @@ -68672,7 +68861,7 @@ https://www.rfc1437.de/2004/06/28/eingeschraenkte-microdrives-in-creatvs-mp3-plyr-mv/ - 2026-03-04T08:11:44.000Z + 2026-03-04T08:11:44.681Z monthly 0.8 @@ -68681,7 +68870,7 @@ https://www.rfc1437.de/2004/06/28/kate-bush-discography-albums-this-woman-s-work/ - 2026-03-04T08:11:48.000Z + 2026-03-04T08:11:48.760Z monthly 0.8 @@ -68690,7 +68879,7 @@ https://www.rfc1437.de/2004/06/28/levenshtein/ - 2026-03-04T08:11:52.000Z + 2026-03-04T08:11:52.329Z monthly 0.8 @@ -68699,7 +68888,7 @@ https://www.rfc1437.de/2004/06/28/mono-fast-companys-linking-policy/ - 2026-03-04T08:11:57.000Z + 2026-03-04T08:11:57.888Z monthly 0.8 @@ -68708,7 +68897,7 @@ https://www.rfc1437.de/2004/06/28/weitere-bilder-vom-taschentuchbaum/ - 2026-03-04T08:12:02.000Z + 2026-03-04T08:12:02.064Z monthly 0.8 @@ -68717,7 +68906,7 @@ https://www.rfc1437.de/2004/06/27/blackbox-wird-open-source/ - 2026-03-04T08:12:06.000Z + 2026-03-04T08:12:06.125Z monthly 0.8 @@ -68726,7 +68915,7 @@ https://www.rfc1437.de/2004/06/27/eisbaer-gehoert-groenemeyer/ - 2026-03-04T08:12:11.000Z + 2026-03-04T08:12:11.673Z monthly 0.8 @@ -68735,7 +68924,7 @@ https://www.rfc1437.de/2004/06/26/aerzte-laufen-sturm-gegen-buergerversicherung/ - 2026-03-04T08:12:16.000Z + 2026-03-04T08:12:16.768Z monthly 0.8 @@ -68744,7 +68933,7 @@ https://www.rfc1437.de/2004/06/26/bernd-das-brot-muss-nur-noch-tagsueber-leiden/ - 2026-03-04T08:12:22.000Z + 2026-03-04T08:12:22.355Z monthly 0.8 @@ -68753,7 +68942,7 @@ https://www.rfc1437.de/2004/06/26/digital-camera-with-30x-optical-zoom/ - 2026-03-04T08:12:27.000Z + 2026-03-04T08:12:27.802Z monthly 0.8 @@ -68762,7 +68951,7 @@ https://www.rfc1437.de/2004/06/26/groesste-blueten-produktion-seit-eur-nfhrng-ntdckt/ - 2026-03-04T08:12:32.000Z + 2026-03-04T08:12:32.622Z monthly 0.8 @@ -68771,7 +68960,7 @@ https://www.rfc1437.de/2004/06/26/idw-uni-bremen-fruehe-bastn-ds-gnms-m-mtrtn-ntdckt/ - 2026-03-04T08:12:36.000Z + 2026-03-04T08:12:36.460Z monthly 0.8 @@ -68780,7 +68969,7 @@ https://www.rfc1437.de/2004/06/26/linuxtag-global-file-system-unter-gpl/ - 2026-03-04T08:12:40.000Z + 2026-03-04T08:12:40.595Z monthly 0.8 @@ -68789,7 +68978,7 @@ https://www.rfc1437.de/2004/06/26/markspace-launches-the-missing-sync-40/ - 2026-03-04T08:12:44.000Z + 2026-03-04T08:12:44.763Z monthly 0.8 @@ -68798,7 +68987,7 @@ https://www.rfc1437.de/2004/06/26/mehr-arbeit-weniger-geld/ - 2026-03-04T08:12:49.000Z + 2026-03-04T08:12:49.367Z monthly 0.8 @@ -68807,7 +68996,7 @@ https://www.rfc1437.de/2004/06/26/union-fordert-mehr-sex/ - 2026-03-04T08:12:54.000Z + 2026-03-04T08:12:54.684Z monthly 0.8 @@ -68816,7 +69005,7 @@ https://www.rfc1437.de/2004/06/22/berlusconi-will-wahl-nicht-verloren-haben/ - 2026-03-04T08:12:59.000Z + 2026-03-04T08:12:59.197Z monthly 0.8 @@ -68825,7 +69014,7 @@ https://www.rfc1437.de/2004/06/22/openmcl-documentation/ - 2026-03-04T08:13:02.000Z + 2026-03-04T08:13:02.656Z monthly 0.8 @@ -68834,7 +69023,7 @@ https://www.rfc1437.de/2004/06/22/postgresql-news-3rd-beta-of-slony-master-gt-multi/ - 2026-03-04T08:13:06.000Z + 2026-03-04T08:13:06.170Z monthly 0.8 @@ -68843,7 +69032,7 @@ https://www.rfc1437.de/2004/06/21/free-fonts-by-the-tons-at-fontazm-m-fonts/ - 2026-03-04T08:13:09.000Z + 2026-03-04T08:13:09.648Z monthly 0.8 @@ -68852,7 +69041,7 @@ https://www.rfc1437.de/2004/06/21/mg-thft-htccss-nd-nln-ggrgtrs-frm-bn-hmmrslys-dngr/ - 2026-03-04T08:13:14.000Z + 2026-03-04T08:13:14.080Z monthly 0.8 @@ -68861,7 +69050,7 @@ https://www.rfc1437.de/2004/06/20/apple-rss-information/ - 2026-03-04T08:13:17.000Z + 2026-03-04T08:13:17.538Z monthly 0.8 @@ -68870,7 +69059,7 @@ https://www.rfc1437.de/2004/06/20/canon-eos-10d-un-funktionales-design/ - 2026-03-04T08:13:21.000Z + 2026-03-04T08:13:21.827Z monthly 0.8 @@ -68879,7 +69068,7 @@ https://www.rfc1437.de/2004/06/20/medication-nation/ - 2026-03-04T08:13:25.000Z + 2026-03-04T08:13:25.717Z monthly 0.8 @@ -68888,7 +69077,7 @@ https://www.rfc1437.de/2004/06/20/ullrich-gewinnt-tour-de-suisse-im-zeitfahren/ - 2026-03-04T08:13:29.000Z + 2026-03-04T08:13:29.601Z monthly 0.8 @@ -68897,7 +69086,7 @@ https://www.rfc1437.de/2004/06/20/xchemerpc-2/ - 2026-03-04T08:13:33.000Z + 2026-03-04T08:13:33.059Z monthly 0.8 @@ -68906,7 +69095,7 @@ https://www.rfc1437.de/2004/06/18/nochmal-itunes-diesmal-probleme/ - 2026-03-04T08:13:36.000Z + 2026-03-04T08:13:36.829Z monthly 0.8 @@ -68915,7 +69104,7 @@ https://www.rfc1437.de/2004/06/18/satine-for-python/ - 2026-03-04T08:13:39.000Z + 2026-03-04T08:13:39.863Z monthly 0.8 @@ -68924,7 +69113,7 @@ https://www.rfc1437.de/2004/06/18/stimmungsmache-fuer-studiengebuehren/ - 2026-03-04T08:13:44.000Z + 2026-03-04T08:13:44.185Z monthly 0.8 @@ -68933,7 +69122,7 @@ https://www.rfc1437.de/2004/06/18/this-is-a-stress-position/ - 2026-03-04T08:13:49.000Z + 2026-03-04T08:13:49.062Z monthly 0.8 @@ -68942,7 +69131,7 @@ https://www.rfc1437.de/2004/06/18/tour-de-suisse-ullrich-weiter-im-gelben-trikot/ - 2026-03-04T08:13:53.000Z + 2026-03-04T08:13:53.425Z monthly 0.8 @@ -68951,7 +69140,7 @@ https://www.rfc1437.de/2004/06/17/herkulesstaude-eine-brennende-gefahr/ - 2026-03-04T08:13:57.000Z + 2026-03-04T08:13:57.697Z monthly 0.8 @@ -68960,7 +69149,7 @@ https://www.rfc1437.de/2004/06/17/itunes-music-store-rss-generator/ - 2026-03-04T08:14:01.000Z + 2026-03-04T08:14:01.238Z monthly 0.8 @@ -68969,7 +69158,7 @@ https://www.rfc1437.de/2004/06/17/news-microsoft-distanziert-sich-von-adti-studie/ - 2026-03-04T08:14:05.000Z + 2026-03-04T08:14:05.073Z monthly 0.8 @@ -68978,7 +69167,7 @@ https://www.rfc1437.de/2004/06/16/auto-bellows-pc-fuer-contax/ - 2026-03-04T08:14:09.000Z + 2026-03-04T08:14:09.818Z monthly 0.8 @@ -68987,7 +69176,7 @@ https://www.rfc1437.de/2004/06/16/tour-de-france-aus-fuer-vinokourov/ - 2026-03-04T08:14:13.000Z + 2026-03-04T08:14:13.847Z monthly 0.8 @@ -68996,7 +69185,7 @@ https://www.rfc1437.de/2004/06/15/gravierende-sicherheitsluecke-im-lnx-krnl-24-nd-26/ - 2026-03-04T08:14:18.000Z + 2026-03-04T08:14:18.063Z monthly 0.8 @@ -69005,7 +69194,7 @@ https://www.rfc1437.de/2004/06/15/itunes-music-store/ - 2026-03-04T08:14:23.000Z + 2026-03-04T08:14:23.194Z monthly 0.8 @@ -69014,7 +69203,7 @@ https://www.rfc1437.de/2004/06/15/secret-code-00000000/ - 2026-03-04T08:14:27.000Z + 2026-03-04T08:14:27.218Z monthly 0.8 @@ -69023,7 +69212,7 @@ https://www.rfc1437.de/2004/06/15/tonys-taschenrechner-sammlung/ - 2026-03-04T08:14:31.000Z + 2026-03-04T08:14:31.145Z monthly 0.8 @@ -69032,7 +69221,7 @@ https://www.rfc1437.de/2004/06/14/just-posted-canon-eos-1d-mark-ii-review/ - 2026-03-04T08:14:36.000Z + 2026-03-04T08:14:36.183Z monthly 0.8 @@ -69041,7 +69230,7 @@ https://www.rfc1437.de/2004/06/14/vinokourov-mit-verdacht-auf-brueche/ - 2026-03-04T08:14:40.000Z + 2026-03-04T08:14:40.580Z monthly 0.8 @@ -69050,7 +69239,7 @@ https://www.rfc1437.de/2004/06/13/contax-rts-macro-photography-part-i/ - 2026-03-04T08:14:44.000Z + 2026-03-04T08:14:44.518Z monthly 0.8 @@ -69059,7 +69248,7 @@ https://www.rfc1437.de/2004/06/13/contax-rts-series-slr-camera-models/ - 2026-03-04T08:14:48.000Z + 2026-03-04T08:14:48.064Z monthly 0.8 @@ -69068,7 +69257,7 @@ https://www.rfc1437.de/2004/06/13/eu-wahl-fast-rum/ - 2026-03-04T08:14:51.000Z + 2026-03-04T08:14:51.557Z monthly 0.8 @@ -69077,7 +69266,7 @@ https://www.rfc1437.de/2004/06/13/radio-userland-bootstrap-how-to-redirect-an-rss/ - 2026-03-07T21:18:06.000Z + 2026-03-07T21:18:06.393Z monthly 0.8 @@ -69086,7 +69275,7 @@ https://www.rfc1437.de/2004/06/12/blauer-brief-fuer-den-bundeswahlleiter/ - 2026-03-04T08:15:01.000Z + 2026-03-04T08:15:01.038Z monthly 0.8 @@ -69095,7 +69284,7 @@ https://www.rfc1437.de/2004/06/12/dunkler-einsamer-saturnmond-bekam-irdischen-besuch/ - 2026-03-04T08:15:05.000Z + 2026-03-04T08:15:05.965Z monthly 0.8 @@ -69104,7 +69293,7 @@ https://www.rfc1437.de/2004/06/12/ehlert-und-partner/ - 2026-03-04T08:15:09.000Z + 2026-03-04T08:15:09.064Z monthly 0.8 @@ -69113,7 +69302,7 @@ https://www.rfc1437.de/2004/06/12/german-licenses-launched/ - 2026-03-04T08:15:13.000Z + 2026-03-04T08:15:13.013Z monthly 0.8 @@ -69122,7 +69311,7 @@ https://www.rfc1437.de/2004/06/12/heute-vor-einem-jahr-2/ - 2026-03-04T08:15:18.000Z + 2026-03-04T08:15:18.866Z monthly 0.8 @@ -69131,7 +69320,7 @@ https://www.rfc1437.de/2004/06/12/ibm-rhlt-ptnt-fr-sttsnzg-dr-fststlltst-b-pc-tsttrn/ - 2026-03-04T08:15:22.000Z + 2026-03-04T08:15:22.780Z monthly 0.8 @@ -69140,7 +69329,7 @@ https://www.rfc1437.de/2004/06/12/lupen-lupe-handlupen-taschenlupen-leuchtlupen/ - 2026-03-04T08:15:27.000Z + 2026-03-04T08:15:27.160Z monthly 0.8 @@ -69149,7 +69338,7 @@ https://www.rfc1437.de/2004/06/12/radford-photographer-to-face-trial-in-jan/ - 2026-03-04T08:15:31.000Z + 2026-03-04T08:15:31.528Z monthly 0.8 @@ -69158,7 +69347,7 @@ https://www.rfc1437.de/2004/06/12/userfriendly-they-took-the-we-out-of-weblog/ - 2026-03-04T08:15:35.000Z + 2026-03-04T08:15:35.147Z monthly 0.8 @@ -69167,7 +69356,7 @@ https://www.rfc1437.de/2004/06/12/zurueck-in-der-zukunft/ - 2026-03-04T08:15:38.000Z + 2026-03-04T08:15:38.275Z monthly 0.8 @@ -69176,7 +69365,7 @@ https://www.rfc1437.de/2004/06/11/ascii-iso-8859-1-table-with-html-entity-names/ - 2026-03-04T08:15:41.000Z + 2026-03-04T08:15:41.864Z monthly 0.8 @@ -69185,7 +69374,7 @@ https://www.rfc1437.de/2004/06/11/heute-vor-einem-jahr/ - 2026-03-04T08:15:47.000Z + 2026-03-04T08:15:47.096Z monthly 0.8 @@ -69194,7 +69383,7 @@ https://www.rfc1437.de/2004/06/11/katastrophe-weltuntergang-anarchie/ - 2026-03-04T08:15:51.000Z + 2026-03-04T08:15:51.919Z monthly 0.8 @@ -69203,7 +69392,7 @@ https://www.rfc1437.de/2004/06/11/new-image-gallery-plugin-needs-testers/ - 2026-03-04T08:15:55.000Z + 2026-03-04T08:15:55.368Z monthly 0.8 @@ -69212,7 +69401,7 @@ https://www.rfc1437.de/2004/06/11/ray-charles-gestorben/ - 2026-03-04T08:15:59.000Z + 2026-03-04T08:15:59.792Z monthly 0.8 @@ -69221,7 +69410,7 @@ https://www.rfc1437.de/2004/06/11/the-process-python-module/ - 2026-03-04T08:16:03.000Z + 2026-03-04T08:16:03.243Z monthly 0.8 @@ -69230,7 +69419,7 @@ https://www.rfc1437.de/2004/06/11/threadframe-multithreaded-stack-frame-extraction/ - 2026-03-04T08:16:07.000Z + 2026-03-04T08:16:07.162Z monthly 0.8 @@ -69239,7 +69428,7 @@ https://www.rfc1437.de/2004/06/11/vino-schneller-als-die-polizei-erlaubt-fhrrschn-wg/ - 2026-03-04T08:16:11.000Z + 2026-03-04T08:16:11.017Z monthly 0.8 @@ -69248,7 +69437,7 @@ https://www.rfc1437.de/2004/06/10/makroaufnahmen-mal-etwas-anders/ - 2026-03-04T08:16:16.000Z + 2026-03-04T08:16:16.694Z monthly 0.8 @@ -69257,7 +69446,7 @@ https://www.rfc1437.de/2004/06/10/microlen-htm/ - 2026-03-04T08:16:20.000Z + 2026-03-04T08:16:20.226Z monthly 0.8 @@ -69266,7 +69455,7 @@ https://www.rfc1437.de/2004/06/10/naturkunde-mit-dem-mikroskop-als-hobby/ - 2026-03-04T08:16:23.000Z + 2026-03-04T08:16:23.647Z monthly 0.8 @@ -69275,7 +69464,7 @@ https://www.rfc1437.de/2004/06/10/netzbetreiber-bauen-kostenfallen-ins-handy-ein/ - 2026-03-04T08:16:28.000Z + 2026-03-04T08:16:28.381Z monthly 0.8 @@ -69284,7 +69473,7 @@ https://www.rfc1437.de/2004/06/10/pic-stachelansatz-eines-kaktus/ - 2026-03-04T08:16:33.000Z + 2026-03-04T08:16:33.112Z monthly 0.8 @@ -69293,7 +69482,7 @@ https://www.rfc1437.de/2004/06/10/schaerfentiefe-abbildungsmassstab-und/ - 2026-03-04T08:16:36.000Z + 2026-03-04T08:16:36.956Z monthly 0.8 @@ -69302,7 +69491,7 @@ https://www.rfc1437.de/2004/06/10/story-kaktusmilbe/ - 2026-03-04T08:16:41.000Z + 2026-03-04T08:16:41.680Z monthly 0.8 @@ -69311,7 +69500,7 @@ https://www.rfc1437.de/2004/06/09/bus-und-bahnfahren-fuer-behinderte-teurer/ - 2026-03-04T08:16:46.000Z + 2026-03-04T08:16:46.111Z monthly 0.8 @@ -69320,7 +69509,7 @@ https://www.rfc1437.de/2004/06/09/kino-unnoetige-helden/ - 2026-03-04T08:16:49.000Z + 2026-03-04T08:16:49.965Z monthly 0.8 @@ -69329,7 +69518,7 @@ https://www.rfc1437.de/2004/06/09/koch-fuer-neue-atomkraftwerke-in-deutschland/ - 2026-03-04T08:16:54.000Z + 2026-03-04T08:16:54.306Z monthly 0.8 @@ -69338,7 +69527,7 @@ https://www.rfc1437.de/2004/06/09/pywork/ - 2026-03-04T08:16:57.000Z + 2026-03-04T08:16:57.316Z monthly 0.8 @@ -69347,7 +69536,7 @@ https://www.rfc1437.de/2004/06/09/xoltar-python-page/ - 2026-03-04T08:17:00.000Z + 2026-03-04T08:17:00.416Z monthly 0.8 @@ -69356,7 +69545,7 @@ https://www.rfc1437.de/2004/06/08/bluemchenbilder/ - 2026-03-04T08:17:06.000Z + 2026-03-04T08:17:06.009Z monthly 0.8 @@ -69365,7 +69554,7 @@ https://www.rfc1437.de/2004/06/08/europawahl-geht-hin-und-waehlt/ - 2026-03-04T08:17:10.000Z + 2026-03-04T08:17:10.335Z monthly 0.8 @@ -69374,7 +69563,7 @@ https://www.rfc1437.de/2004/06/08/pic-angleridylle-und-hochhaeuser/ - 2026-03-04T08:17:14.000Z + 2026-03-04T08:17:14.198Z monthly 0.8 @@ -69383,7 +69572,7 @@ https://www.rfc1437.de/2004/06/08/pic-bloemkes/ - 2026-03-04T08:17:18.000Z + 2026-03-04T08:17:18.108Z monthly 0.8 @@ -69392,7 +69581,7 @@ https://www.rfc1437.de/2004/06/08/pic-hauseingaenge/ - 2026-03-04T08:17:21.000Z + 2026-03-04T08:17:21.943Z monthly 0.8 @@ -69401,7 +69590,7 @@ https://www.rfc1437.de/2004/06/08/ps-2-and-mca-history/ - 2026-03-04T08:17:25.000Z + 2026-03-04T08:17:25.378Z monthly 0.8 @@ -69410,7 +69599,7 @@ https://www.rfc1437.de/2004/06/08/rebuttal-to-ken-brown/ - 2026-03-04T08:17:28.000Z + 2026-03-04T08:17:28.406Z monthly 0.8 @@ -69419,7 +69608,7 @@ https://www.rfc1437.de/2004/06/07/isync-ist-moppelkotze/ - 2026-03-04T08:17:33.000Z + 2026-03-04T08:17:33.095Z monthly 0.8 @@ -69428,7 +69617,7 @@ https://www.rfc1437.de/2004/06/07/qdb-quote-330261/ - 2026-03-04T08:17:36.000Z + 2026-03-04T08:17:36.741Z monthly 0.8 @@ -69437,7 +69626,7 @@ https://www.rfc1437.de/2004/06/07/reagan-und-die-sowjets/ - 2026-03-04T08:17:41.000Z + 2026-03-04T08:17:41.179Z monthly 0.8 @@ -69446,7 +69635,7 @@ https://www.rfc1437.de/2004/06/06/another-awesome-algorithm-archive/ - 2026-03-04T08:17:45.000Z + 2026-03-04T08:17:45.107Z monthly 0.8 @@ -69455,7 +69644,7 @@ https://www.rfc1437.de/2004/06/06/berlusconi-will-den-kalender-aendern/ - 2026-03-04T08:17:50.000Z + 2026-03-04T08:17:50.284Z monthly 0.8 @@ -69464,7 +69653,7 @@ https://www.rfc1437.de/2004/06/06/burningbird-glory-days-the-parable-of-the-languags/ - 2026-03-04T08:17:53.000Z + 2026-03-04T08:17:53.873Z monthly 0.8 @@ -69473,7 +69662,7 @@ https://www.rfc1437.de/2004/06/06/canon-eos-300d-digital-rebel-tips-and-tricks/ - 2026-03-04T08:17:58.000Z + 2026-03-04T08:17:58.727Z monthly 0.8 @@ -69482,7 +69671,7 @@ https://www.rfc1437.de/2004/06/06/ians-shoelace-site-slipping-shoelace-knots/ - 2026-03-04T08:18:02.000Z + 2026-03-04T08:18:02.635Z monthly 0.8 @@ -69491,7 +69680,7 @@ https://www.rfc1437.de/2004/06/06/merkel-will-akw-laufzeiten-verlaengern/ - 2026-03-04T08:18:07.000Z + 2026-03-04T08:18:07.058Z monthly 0.8 @@ -69500,7 +69689,7 @@ https://www.rfc1437.de/2004/06/06/pypersyst-orbtech-wiki/ - 2026-03-04T08:18:10.000Z + 2026-03-04T08:18:10.521Z monthly 0.8 @@ -69509,7 +69698,7 @@ https://www.rfc1437.de/2004/06/06/the-spinning-cube-of-potential-doom/ - 2026-03-04T08:18:13.000Z + 2026-03-04T08:18:13.991Z monthly 0.8 @@ -69527,7 +69716,7 @@ https://www.rfc1437.de/2004/06/05/adapters-olympus-e-1/ - 2026-03-04T08:18:22.000Z + 2026-03-04T08:18:22.302Z monthly 0.8 @@ -69536,7 +69725,7 @@ https://www.rfc1437.de/2004/06/05/digitale-fine-art-prints-barytabzug-iris-giclee/ - 2026-03-04T08:18:25.000Z + 2026-03-04T08:18:25.988Z monthly 0.8 @@ -69545,7 +69734,7 @@ https://www.rfc1437.de/2004/06/05/fiskus-drohen-steuerausfll-wgn-flls-dr-mnnsmnn-ktn/ - 2026-03-04T08:18:30.000Z + 2026-03-04T08:18:30.634Z monthly 0.8 @@ -69554,7 +69743,7 @@ https://www.rfc1437.de/2004/06/05/schwarzweiss-magazin-wollstein-6-2003/ - 2026-03-04T08:18:34.000Z + 2026-03-04T08:18:34.490Z monthly 0.8 @@ -69563,7 +69752,7 @@ https://www.rfc1437.de/2004/06/05/wahnsinnig-spannende-deutschlandtour-etappe/ - 2026-03-04T08:18:39.000Z + 2026-03-04T08:18:39.647Z monthly 0.8 @@ -69572,7 +69761,7 @@ https://www.rfc1437.de/2004/06/04/bugmenotcom/ - 2026-03-04T08:18:44.000Z + 2026-03-04T08:18:44.193Z monthly 0.8 @@ -69581,7 +69770,7 @@ https://www.rfc1437.de/2004/06/04/e-mailrelay-smtp-proxy-and-store-and-forward-mta/ - 2026-03-04T08:18:47.000Z + 2026-03-04T08:18:47.739Z monthly 0.8 @@ -69590,7 +69779,7 @@ https://www.rfc1437.de/2004/06/04/fotokasten-digitale-fotoentwicklung-im-internet/ - 2026-03-04T08:18:51.000Z + 2026-03-04T08:18:51.219Z monthly 0.8 @@ -69599,7 +69788,7 @@ https://www.rfc1437.de/2004/06/04/mtaproxy-py-teergrube-utuility-for-spambayes/ - 2026-03-04T08:18:54.000Z + 2026-03-04T08:18:54.772Z monthly 0.8 @@ -69608,7 +69797,7 @@ https://www.rfc1437.de/2004/06/04/roughingit-pyblosxom-10-release/ - 2026-03-04T08:18:59.000Z + 2026-03-04T08:18:59.264Z monthly 0.8 @@ -69617,7 +69806,7 @@ https://www.rfc1437.de/2004/06/04/stim-mousesite/ - 2026-03-04T08:19:03.000Z + 2026-03-04T08:19:03.701Z monthly 0.8 @@ -69626,7 +69815,7 @@ https://www.rfc1437.de/2004/06/04/stopping-spam-with-the-anti-spam-smtp-proxy-assp-2/ - 2026-03-04T08:19:07.000Z + 2026-03-04T08:19:07.200Z monthly 0.8 @@ -69635,7 +69824,7 @@ https://www.rfc1437.de/2004/06/04/toll-collect-mauthoehe-kann-nicht-geaendert-werden/ - 2026-03-04T08:19:12.000Z + 2026-03-04T08:19:12.637Z monthly 0.8 @@ -69644,7 +69833,7 @@ https://www.rfc1437.de/2004/06/04/tollef-fog-heen-tech-debian-2004-03-14-15-55/ - 2026-03-04T08:19:16.000Z + 2026-03-04T08:19:16.979Z monthly 0.8 @@ -69653,7 +69842,7 @@ https://www.rfc1437.de/2004/06/04/tollef-fog-heen-yahoo-breaking-smtp-standards/ - 2026-03-04T08:19:21.000Z + 2026-03-04T08:19:21.387Z monthly 0.8 @@ -69662,7 +69851,7 @@ https://www.rfc1437.de/2004/06/03/gallery-your-photos-on-your-website-2/ - 2026-03-04T08:19:24.000Z + 2026-03-04T08:19:24.927Z monthly 0.8 @@ -69671,7 +69860,7 @@ https://www.rfc1437.de/2004/06/03/girls-are-evil-mathematischer-beweis/ - 2026-03-04T08:19:29.000Z + 2026-03-04T08:19:29.015Z monthly 0.8 @@ -69680,7 +69869,7 @@ https://www.rfc1437.de/2004/06/03/omikron-basic-80-runs-natively-on-mac-os-x/ - 2026-03-04T08:19:33.000Z + 2026-03-04T08:19:33.480Z monthly 0.8 @@ -69689,7 +69878,7 @@ https://www.rfc1437.de/2004/06/03/photo-organizer/ - 2026-03-04T08:19:37.000Z + 2026-03-04T08:19:37.233Z monthly 0.8 @@ -69698,7 +69887,7 @@ https://www.rfc1437.de/2004/06/03/sco-vs-linux-mission-impossible/ - 2026-03-04T08:19:41.000Z + 2026-03-04T08:19:41.647Z monthly 0.8 @@ -69707,7 +69896,7 @@ https://www.rfc1437.de/2004/06/03/silverlab-partnerprogramm/ - 2026-03-04T08:19:44.000Z + 2026-03-04T08:19:44.743Z monthly 0.8 @@ -69716,7 +69905,7 @@ https://www.rfc1437.de/2004/06/03/symantec-chef-windows-ist-nicht-unsicherer-als-lnx/ - 2026-03-04T08:19:49.000Z + 2026-03-04T08:19:49.267Z monthly 0.8 @@ -69725,7 +69914,7 @@ https://www.rfc1437.de/2004/06/03/united-states-patent-6727830/ - 2026-03-04T08:19:53.000Z + 2026-03-04T08:19:53.846Z monthly 0.8 @@ -69734,7 +69923,7 @@ https://www.rfc1437.de/2004/06/02/editthispagephp/ - 2026-03-04T08:19:57.000Z + 2026-03-04T08:19:57.368Z monthly 0.8 @@ -69743,7 +69932,7 @@ https://www.rfc1437.de/2004/06/02/sco-vs-linux-investor-baystar-steigt-aus/ - 2026-03-04T08:20:00.000Z + 2026-03-04T08:20:00.986Z monthly 0.8 @@ -69752,7 +69941,7 @@ https://www.rfc1437.de/2004/06/02/sf-tr-brdbry-mchl-mr-st-n-frchtrlchr-mnsch-kltr-sp/ - 2026-03-04T08:20:05.000Z + 2026-03-04T08:20:05.852Z monthly 0.8 @@ -69761,7 +69950,7 @@ https://www.rfc1437.de/2004/06/02/vellum-a-weblogging-system-in-python/ - 2026-03-04T08:20:09.000Z + 2026-03-04T08:20:09.366Z monthly 0.8 @@ -69770,7 +69959,7 @@ https://www.rfc1437.de/2004/06/01/abenteuer-erde-zum-geier/ - 2026-03-04T08:20:14.000Z + 2026-03-04T08:20:14.268Z monthly 0.8 @@ -69779,7 +69968,7 @@ https://www.rfc1437.de/2004/06/01/drbs-distributed-replicated-blob-server/ - 2026-03-04T08:20:17.000Z + 2026-03-04T08:20:17.812Z monthly 0.8 @@ -69788,7 +69977,7 @@ https://www.rfc1437.de/2004/06/01/gdl-gnu-data-language/ - 2026-03-04T08:20:20.000Z + 2026-03-04T08:20:20.923Z monthly 0.8 @@ -69797,7 +69986,7 @@ https://www.rfc1437.de/2004/06/01/maypole-apache-mvc/ - 2026-03-04T08:20:24.000Z + 2026-03-04T08:20:24.058Z monthly 0.8 @@ -69806,7 +69995,7 @@ https://www.rfc1437.de/2004/06/01/mnot-u2019s-web-log-ubiquitious-fragment/ - 2026-03-04T08:20:27.000Z + 2026-03-04T08:20:27.945Z monthly 0.8 @@ -69815,7 +70004,7 @@ https://www.rfc1437.de/2004/06/01/paramiko-ssh2-protocol-for-python/ - 2026-03-04T08:20:32.000Z + 2026-03-04T08:20:32.228Z monthly 0.8 @@ -69824,7 +70013,7 @@ https://www.rfc1437.de/2004/06/01/pysh-a-python-shell/ - 2026-03-04T08:20:36.000Z + 2026-03-04T08:20:36.115Z monthly 0.8 @@ -69833,7 +70022,7 @@ https://www.rfc1437.de/2004/06/01/softpear-pcmac-interoperability/ - 2026-03-04T08:20:39.000Z + 2026-03-04T08:20:39.841Z monthly 0.8 @@ -69842,7 +70031,7 @@ https://www.rfc1437.de/2004/06/01/sonys-cli-nimmt-abschied/ - 2026-03-04T08:20:44.000Z + 2026-03-04T08:20:44.389Z monthly 0.8 @@ -69851,7 +70040,7 @@ https://www.rfc1437.de/2004/06/01/sun-insists-that-red-hat-linux-is-proprietary/ - 2026-03-04T08:25:37.000Z + 2026-03-04T08:25:37.542Z monthly 0.8 @@ -69860,7 +70049,7 @@ https://www.rfc1437.de/2004/06/01/telekom-will-kundendaten-von-internetnutzrn-nsmmln/ - 2026-03-04T08:25:40.000Z + 2026-03-04T08:25:40.792Z monthly 0.8 @@ -69869,7 +70058,7 @@ https://www.rfc1437.de/2004/05/31/acratech-inc-precision-machining-amp-photographic/ - 2026-03-04T08:25:43.000Z + 2026-03-04T08:25:43.615Z monthly 0.8 @@ -69878,7 +70067,7 @@ https://www.rfc1437.de/2004/05/31/curdled-1996/ - 2026-03-04T08:25:46.000Z + 2026-03-04T08:25:46.496Z monthly 0.8 @@ -69887,7 +70076,7 @@ https://www.rfc1437.de/2004/05/31/jan-ullrich-in-der-deutschlandtour/ - 2026-03-04T08:25:49.000Z + 2026-03-04T08:25:49.979Z monthly 0.8 @@ -69896,7 +70085,7 @@ https://www.rfc1437.de/2004/05/31/kodak-professional-readyload-einzelblatt-packs/ - 2026-03-04T08:25:53.000Z + 2026-03-04T08:25:53.222Z monthly 0.8 @@ -69905,7 +70094,7 @@ https://www.rfc1437.de/2004/05/31/lycos-webhosting/ - 2026-03-04T08:25:56.000Z + 2026-03-04T08:25:56.706Z monthly 0.8 @@ -69914,7 +70103,7 @@ https://www.rfc1437.de/2004/05/31/mark-lentczners-journal/ - 2026-03-04T08:25:59.000Z + 2026-03-04T08:25:59.861Z monthly 0.8 @@ -69923,7 +70112,7 @@ https://www.rfc1437.de/2004/05/31/syndication-formate-ursache-fortschreitender-demnz/ - 2026-03-04T08:26:03.000Z + 2026-03-04T08:26:03.338Z monthly 0.8 @@ -69932,7 +70121,7 @@ https://www.rfc1437.de/2004/05/31/taxi-1998/ - 2026-03-04T08:26:06.000Z + 2026-03-04T08:26:06.134Z monthly 0.8 @@ -69941,7 +70130,7 @@ https://www.rfc1437.de/2004/05/31/the-contiki-operating-system/ - 2026-03-04T08:26:08.000Z + 2026-03-04T08:26:08.612Z monthly 0.8 @@ -69950,7 +70139,7 @@ https://www.rfc1437.de/2004/05/31/web-development-bookmarklets/ - 2026-03-04T08:26:12.000Z + 2026-03-04T08:26:12.148Z monthly 0.8 @@ -69959,7 +70148,7 @@ https://www.rfc1437.de/2004/05/30/79hainleite-rundfahrt-wrolich-gewinnt-ullrch-fnftr/ - 2026-03-04T08:26:16.000Z + 2026-03-04T08:26:16.055Z monthly 0.8 @@ -69968,7 +70157,7 @@ https://www.rfc1437.de/2004/05/30/gerolsteiner-verlaengert-sponsoren-vertrag-bs-2008/ - 2026-03-04T08:26:19.000Z + 2026-03-04T08:26:19.925Z monthly 0.8 @@ -69977,7 +70166,7 @@ https://www.rfc1437.de/2004/05/30/kamera-speicherkarte-fuer-12500-euro/ - 2026-03-04T08:26:23.000Z + 2026-03-04T08:26:23.878Z monthly 0.8 @@ -69986,7 +70175,7 @@ https://www.rfc1437.de/2004/05/29/altes-schiffshebewerk-henrichenburg/ - 2026-03-04T08:26:27.000Z + 2026-03-04T08:26:27.534Z monthly 0.8 @@ -69995,7 +70184,7 @@ https://www.rfc1437.de/2004/05/29/pic-dampfmaschine/ - 2026-03-04T08:26:31.000Z + 2026-03-04T08:26:31.331Z monthly 0.8 @@ -70004,7 +70193,7 @@ https://www.rfc1437.de/2004/05/29/pic-papachristos/ - 2026-03-04T08:26:34.000Z + 2026-03-04T08:26:34.816Z monthly 0.8 @@ -70013,7 +70202,7 @@ https://www.rfc1437.de/2004/05/29/pic-schiffshebewerk-henrichenburg/ - 2026-03-04T08:26:38.000Z + 2026-03-04T08:26:38.481Z monthly 0.8 @@ -70022,7 +70211,7 @@ https://www.rfc1437.de/2004/05/28/0190-betreiber-mahnt-dialerschutzde-ab/ - 2026-03-04T08:26:42.000Z + 2026-03-04T08:26:42.201Z monthly 0.8 @@ -70031,7 +70220,7 @@ https://www.rfc1437.de/2004/05/28/allergien/ - 2026-03-04T08:26:45.000Z + 2026-03-04T08:26:45.952Z monthly 0.8 @@ -70040,7 +70229,7 @@ https://www.rfc1437.de/2004/05/28/der-kalif-von-koelle-der-staatsfeind-nr1/ - 2026-03-04T08:26:49.000Z + 2026-03-04T08:26:49.351Z monthly 0.8 @@ -70049,7 +70238,7 @@ https://www.rfc1437.de/2004/05/28/jim-jarmusch-mal-wieder/ - 2026-03-04T08:26:53.000Z + 2026-03-04T08:26:53.627Z monthly 0.8 @@ -70058,7 +70247,7 @@ https://www.rfc1437.de/2004/05/28/justizministerin-verteidigt-software-patente/ - 2026-03-04T08:26:57.000Z + 2026-03-04T08:26:57.794Z monthly 0.8 @@ -70067,7 +70256,7 @@ https://www.rfc1437.de/2004/05/28/umfrage-deutschland-bei-top-managern-beliebt/ - 2026-03-04T08:27:02.000Z + 2026-03-04T08:27:02.262Z monthly 0.8 @@ -70076,7 +70265,7 @@ https://www.rfc1437.de/2004/05/27/f6-ueber-debian/ - 2026-03-04T08:27:06.000Z + 2026-03-04T08:27:06.399Z monthly 0.8 @@ -70085,7 +70274,7 @@ https://www.rfc1437.de/2004/05/26/eigentuemer-von-ish-stimmen-verkf-n-kbl-dtschlnd-z/ - 2026-03-04T08:27:10.000Z + 2026-03-04T08:27:10.550Z monthly 0.8 @@ -70094,7 +70283,7 @@ https://www.rfc1437.de/2004/05/26/mal-wieder-ein-paar-bilder/ - 2026-03-04T08:27:16.000Z + 2026-03-04T08:27:16.301Z monthly 0.8 @@ -70103,7 +70292,7 @@ https://www.rfc1437.de/2004/05/26/pic-bluetenstand/ - 2026-03-04T08:27:20.000Z + 2026-03-04T08:27:20.209Z monthly 0.8 @@ -70112,7 +70301,7 @@ https://www.rfc1437.de/2004/05/26/pic-stadthaus/ - 2026-03-04T08:27:24.000Z + 2026-03-04T08:27:24.230Z monthly 0.8 @@ -70121,7 +70310,7 @@ https://www.rfc1437.de/2004/05/26/pic-stuehle/ - 2026-03-04T08:27:28.000Z + 2026-03-04T08:27:28.327Z monthly 0.8 @@ -70130,7 +70319,7 @@ https://www.rfc1437.de/2004/05/25/datenbank-ingres-wird-open-source/ - 2026-03-04T08:27:32.000Z + 2026-03-04T08:27:32.091Z monthly 0.8 @@ -70139,7 +70328,7 @@ https://www.rfc1437.de/2004/05/25/digitalkmrd-dx-ptcs-pr-bldkrrktrsftwr-jtzt-rhltlch/ - 2026-03-04T08:27:37.000Z + 2026-03-04T08:27:37.150Z monthly 0.8 @@ -70148,7 +70337,7 @@ https://www.rfc1437.de/2004/05/25/enblend/ - 2026-03-04T08:27:40.000Z + 2026-03-04T08:27:40.960Z monthly 0.8 @@ -70157,7 +70346,7 @@ https://www.rfc1437.de/2004/05/25/haeufige-augenkrankheiten/ - 2026-03-04T08:27:44.000Z + 2026-03-04T08:27:44.831Z monthly 0.8 @@ -70166,7 +70355,7 @@ https://www.rfc1437.de/2004/05/25/little-snitch-2/ - 2026-03-04T08:27:48.000Z + 2026-03-04T08:27:48.856Z monthly 0.8 @@ -70175,7 +70364,7 @@ https://www.rfc1437.de/2004/05/25/noise-ninja-2-0-beta/ - 2026-03-04T08:27:52.000Z + 2026-03-04T08:27:52.839Z monthly 0.8 @@ -70184,7 +70373,7 @@ https://www.rfc1437.de/2004/05/25/skype-for-mac-os-x-announced-by-developer/ - 2026-03-04T08:27:57.000Z + 2026-03-04T08:27:57.257Z monthly 0.8 @@ -70193,7 +70382,7 @@ https://www.rfc1437.de/2004/05/25/xblend/ - 2026-03-04T08:28:00.000Z + 2026-03-04T08:28:00.780Z monthly 0.8 @@ -70202,7 +70391,7 @@ https://www.rfc1437.de/2004/05/24/kann-mal-jemand-das-internet-reparieren/ - 2026-03-04T08:28:08.000Z + 2026-03-04T08:28:08.362Z monthly 0.8 @@ -70211,7 +70400,7 @@ https://www.rfc1437.de/2004/05/24/malformed-proteins-found-in-sheep-muscle/ - 2026-03-04T08:28:13.000Z + 2026-03-04T08:28:13.963Z monthly 0.8 @@ -70220,7 +70409,7 @@ https://www.rfc1437.de/2004/05/24/prothon/ - 2026-03-04T08:28:18.000Z + 2026-03-04T08:28:18.218Z monthly 0.8 @@ -70229,7 +70418,7 @@ https://www.rfc1437.de/2004/05/24/randomthoughts-pylucene/ - 2026-03-04T08:28:22.000Z + 2026-03-04T08:28:22.200Z monthly 0.8 @@ -70238,7 +70427,7 @@ https://www.rfc1437.de/2004/05/24/telefon-spamming-bleibt-verboten/ - 2026-03-04T08:28:27.000Z + 2026-03-04T08:28:27.350Z monthly 0.8 @@ -70247,7 +70436,7 @@ https://www.rfc1437.de/2004/05/24/was-tv-magazine-angeht/ - 2026-03-04T08:28:32.000Z + 2026-03-04T08:28:32.485Z monthly 0.8 @@ -70256,7 +70445,7 @@ https://www.rfc1437.de/2004/05/23/die-schlimmste-aller-susen/ - 2026-03-04T08:28:39.000Z + 2026-03-04T08:28:39.009Z monthly 0.8 @@ -70265,7 +70454,7 @@ https://www.rfc1437.de/2004/05/23/giro-montgomery-brach-sich-schulterblatt/ - 2026-03-04T08:28:44.000Z + 2026-03-04T08:28:44.758Z monthly 0.8 @@ -70274,7 +70463,7 @@ https://www.rfc1437.de/2004/05/23/tagesschaude-der-triumph-des-horst-koehler/ - 2026-03-04T08:28:50.000Z + 2026-03-04T08:28:50.309Z monthly 0.8 @@ -70283,7 +70472,7 @@ https://www.rfc1437.de/2004/05/22/eurocity-stadtfest-in-muenster/ - 2026-03-04T08:28:56.000Z + 2026-03-04T08:28:56.533Z monthly 0.8 @@ -70292,7 +70481,7 @@ https://www.rfc1437.de/2004/05/22/moores-fahrenheit-911-gewinnt-goldene-palme/ - 2026-03-04T08:29:01.000Z + 2026-03-04T08:29:01.730Z monthly 0.8 @@ -70301,7 +70490,7 @@ https://www.rfc1437.de/2004/05/22/pic-eurocity-stadtfest-muenster/ - 2026-03-04T08:29:06.000Z + 2026-03-04T08:29:06.598Z monthly 0.8 @@ -70310,7 +70499,7 @@ https://www.rfc1437.de/2004/05/22/pic-kitsch/ - 2026-03-04T08:29:12.000Z + 2026-03-04T08:29:12.761Z monthly 0.8 @@ -70319,7 +70508,7 @@ https://www.rfc1437.de/2004/05/22/pic-soundsticks/ - 2026-03-07T21:18:07.000Z + 2026-03-07T21:18:07.825Z monthly 0.8 @@ -70328,7 +70517,7 @@ https://www.rfc1437.de/2004/05/22/rubicode-rcdefaultapp/ - 2026-03-04T08:29:21.000Z + 2026-03-04T08:29:21.049Z monthly 0.8 @@ -70337,7 +70526,7 @@ https://www.rfc1437.de/2004/05/22/wordpress-12/ - 2026-03-04T08:29:25.000Z + 2026-03-04T08:29:25.876Z monthly 0.8 @@ -70346,7 +70535,7 @@ https://www.rfc1437.de/2004/05/21/canon-releases-eos-viewer-utility/ - 2026-03-04T08:29:30.000Z + 2026-03-04T08:29:30.675Z monthly 0.8 @@ -70355,7 +70544,7 @@ https://www.rfc1437.de/2004/05/21/die-geschichte-der-programmiersprachen/ - 2026-03-04T08:29:35.000Z + 2026-03-04T08:29:35.084Z monthly 0.8 @@ -70364,7 +70553,7 @@ https://www.rfc1437.de/2004/05/21/kubrick-fuer-kaninchen/ - 2026-03-04T08:29:40.000Z + 2026-03-04T08:29:40.094Z monthly 0.8 @@ -70373,7 +70562,7 @@ https://www.rfc1437.de/2004/05/21/last-man-standing/ - 2026-03-04T08:29:46.000Z + 2026-03-04T08:29:46.138Z monthly 0.8 @@ -70382,7 +70571,7 @@ https://www.rfc1437.de/2004/05/21/neurokode-labs-llc-remoted/ - 2026-03-04T08:29:49.000Z + 2026-03-04T08:29:49.862Z monthly 0.8 @@ -70391,7 +70580,7 @@ https://www.rfc1437.de/2004/05/21/tausende-briten-mit-bse-variante-infiziert/ - 2026-03-04T08:29:55.000Z + 2026-03-04T08:29:55.317Z monthly 0.8 @@ -70400,7 +70589,7 @@ https://www.rfc1437.de/2004/05/21/wissenschaftler-im-clinch-mit-software-anbieter/ - 2026-03-04T08:29:59.000Z + 2026-03-04T08:29:59.921Z monthly 0.8 @@ -70409,7 +70598,7 @@ https://www.rfc1437.de/2004/05/20/aspn-python-cookbook-finding-out-the-number-of/ - 2026-03-04T08:30:04.000Z + 2026-03-04T08:30:04.071Z monthly 0.8 @@ -70418,7 +70607,7 @@ https://www.rfc1437.de/2004/05/20/bildernachschub/ - 2026-03-04T08:30:11.000Z + 2026-03-04T08:30:11.856Z monthly 0.8 @@ -70427,7 +70616,7 @@ https://www.rfc1437.de/2004/05/20/e-mail-server-der-bundesregierung-nahezu-lahm-glgt/ - 2026-03-04T08:30:16.000Z + 2026-03-04T08:30:16.566Z monthly 0.8 @@ -70436,7 +70625,7 @@ https://www.rfc1437.de/2004/05/20/koeln-essen-oder-muenster/ - 2026-03-04T08:30:21.000Z + 2026-03-04T08:30:21.217Z monthly 0.8 @@ -70445,7 +70634,7 @@ https://www.rfc1437.de/2004/05/20/pic-alt-und-neu/ - 2026-03-04T08:30:25.000Z + 2026-03-04T08:30:25.328Z monthly 0.8 @@ -70454,7 +70643,7 @@ https://www.rfc1437.de/2004/05/20/pic-baggerarm/ - 2026-03-04T08:30:29.000Z + 2026-03-04T08:30:29.439Z monthly 0.8 @@ -70463,7 +70652,7 @@ https://www.rfc1437.de/2004/05/20/pic-die-schraube-ist-nicht-locker/ - 2026-03-04T08:30:34.000Z + 2026-03-04T08:30:34.012Z monthly 0.8 @@ -70472,7 +70661,7 @@ https://www.rfc1437.de/2004/05/20/pic-fundus/ - 2026-03-04T08:30:38.000Z + 2026-03-04T08:30:38.444Z monthly 0.8 @@ -70481,7 +70670,7 @@ https://www.rfc1437.de/2004/05/20/pic-harley-davidson/ - 2026-03-04T08:30:42.000Z + 2026-03-04T08:30:42.500Z monthly 0.8 @@ -70490,7 +70679,7 @@ https://www.rfc1437.de/2004/05/20/pic-holzmoebel/ - 2026-03-04T08:30:46.000Z + 2026-03-04T08:30:46.542Z monthly 0.8 @@ -70499,7 +70688,7 @@ https://www.rfc1437.de/2004/05/20/schoen-am-vatertag-schaurig-am-wochenende/ - 2026-03-04T08:30:52.000Z + 2026-03-04T08:30:52.066Z monthly 0.8 @@ -70508,7 +70697,7 @@ https://www.rfc1437.de/2004/05/20/sco-vs-linux-sco-fordert-offenlegung-der-fsf/ - 2026-03-04T08:30:56.000Z + 2026-03-04T08:30:56.551Z monthly 0.8 @@ -70517,7 +70706,7 @@ https://www.rfc1437.de/2004/05/20/softwarepatentgegner-werfen-bruessel-verlogenht-vr/ - 2026-03-04T08:31:01.000Z + 2026-03-04T08:31:01.201Z monthly 0.8 @@ -70526,7 +70715,7 @@ https://www.rfc1437.de/2004/05/20/von-null-auf-linux-in-6-monaten-nur-durch-kprtn-cd/ - 2026-03-04T08:31:05.000Z + 2026-03-04T08:31:05.779Z monthly 0.8 @@ -70535,7 +70724,7 @@ https://www.rfc1437.de/2004/05/20/wordpress-spielereien/ - 2026-03-04T08:31:10.000Z + 2026-03-04T08:31:10.339Z monthly 0.8 @@ -70544,7 +70733,7 @@ https://www.rfc1437.de/2004/05/20/wordpress-support-u203a-static-like-pages/ - 2026-03-04T08:31:13.000Z + 2026-03-04T08:31:13.944Z monthly 0.8 @@ -70553,7 +70742,7 @@ https://www.rfc1437.de/2004/05/19/aspn-python-cookbook-transactionable-objects/ - 2026-03-04T08:31:17.000Z + 2026-03-04T08:31:17.601Z monthly 0.8 @@ -70562,7 +70751,7 @@ https://www.rfc1437.de/2004/05/19/drupalorg/ - 2026-03-04T08:31:22.000Z + 2026-03-04T08:31:22.127Z monthly 0.8 @@ -70571,7 +70760,7 @@ https://www.rfc1437.de/2004/05/19/python-mqi-interface-pymqi-version-0-5c/ - 2026-03-04T08:31:25.000Z + 2026-03-04T08:31:25.772Z monthly 0.8 @@ -70580,7 +70769,7 @@ https://www.rfc1437.de/2004/05/19/releases-drupal-org/ - 2026-03-07T21:18:09.000Z + 2026-03-07T21:18:09.372Z monthly 0.8 @@ -70589,7 +70778,7 @@ https://www.rfc1437.de/2004/05/18/daring-fireball-markdown-syntax-documentation/ - 2026-03-04T08:31:32.000Z + 2026-03-04T08:31:32.509Z monthly 0.8 @@ -70598,7 +70787,7 @@ https://www.rfc1437.de/2004/05/18/eine-ohrfeige-fuer-den-kanzler/ - 2026-03-04T08:31:37.000Z + 2026-03-04T08:31:37.273Z monthly 0.8 @@ -70607,7 +70796,7 @@ https://www.rfc1437.de/2004/05/18/eu-staaten-ueber-softwarepatente-einig-update/ - 2026-03-04T08:31:41.000Z + 2026-03-04T08:31:41.731Z monthly 0.8 @@ -70616,7 +70805,7 @@ https://www.rfc1437.de/2004/05/18/hausaerzte-drohen-krankenkassen-boykott/ - 2026-03-04T08:31:46.000Z + 2026-03-04T08:31:46.224Z monthly 0.8 @@ -70625,7 +70814,7 @@ https://www.rfc1437.de/2004/05/18/nu-cardboard-kangapy-components/ - 2026-03-04T08:31:49.000Z + 2026-03-04T08:31:49.783Z monthly 0.8 @@ -70634,7 +70823,7 @@ https://www.rfc1437.de/2004/05/18/papercut-org-nntp-server-for-the-masses/ - 2026-03-04T08:31:53.000Z + 2026-03-04T08:31:53.491Z monthly 0.8 @@ -70643,7 +70832,7 @@ https://www.rfc1437.de/2004/05/18/rb-glbrth-dp-dgtl-pht-prfssnl-s-vwr-tlty-cmng-my-2/ - 2026-03-04T08:31:58.000Z + 2026-03-04T08:31:58.399Z monthly 0.8 @@ -70652,7 +70841,7 @@ https://www.rfc1437.de/2004/05/18/shrook-2-rss-and-atom-for-mac-os-x/ - 2026-03-04T08:32:02.000Z + 2026-03-04T08:32:02.021Z monthly 0.8 @@ -70661,7 +70850,7 @@ https://www.rfc1437.de/2004/05/18/struck-keine-strafe-fuer-wolffsohn/ - 2026-03-04T08:32:06.000Z + 2026-03-04T08:32:06.966Z monthly 0.8 @@ -70670,7 +70859,7 @@ https://www.rfc1437.de/2004/05/17/akte-x-wiederholungen/ - 2026-03-04T08:32:10.000Z + 2026-03-04T08:32:10.532Z monthly 0.8 @@ -70679,7 +70868,7 @@ https://www.rfc1437.de/2004/05/17/b2evolution-home/ - 2026-03-04T08:32:15.000Z + 2026-03-04T08:32:15.002Z monthly 0.8 @@ -70688,7 +70877,7 @@ https://www.rfc1437.de/2004/05/17/computation-streaming-in-python/ - 2026-03-04T08:32:18.000Z + 2026-03-04T08:32:18.165Z monthly 0.8 @@ -70697,7 +70886,7 @@ https://www.rfc1437.de/2004/05/17/entrian-com-goto-for-python-goto-for-python-2/ - 2026-03-04T08:32:21.000Z + 2026-03-04T08:32:21.740Z monthly 0.8 @@ -70706,7 +70895,7 @@ https://www.rfc1437.de/2004/05/17/eu-genehmigt-verkauf-von-genmais/ - 2026-03-04T08:32:26.000Z + 2026-03-04T08:32:26.657Z monthly 0.8 @@ -70715,7 +70904,7 @@ https://www.rfc1437.de/2004/05/17/eu-kommission-gibt-flugpassagierdaten-fuer-usa-fre/ - 2026-03-04T08:32:30.000Z + 2026-03-04T08:32:30.674Z monthly 0.8 @@ -70724,7 +70913,7 @@ https://www.rfc1437.de/2004/05/17/exchange-verliert-mails/ - 2026-03-04T08:32:34.000Z + 2026-03-04T08:32:34.746Z monthly 0.8 @@ -70733,7 +70922,7 @@ https://www.rfc1437.de/2004/05/17/open-source-release-of-frontier/ - 2026-03-04T08:32:39.000Z + 2026-03-04T08:32:39.451Z monthly 0.8 @@ -70742,7 +70931,7 @@ https://www.rfc1437.de/2004/05/17/pyone-one-liner-helper-for-python/ - 2026-03-04T08:32:42.000Z + 2026-03-04T08:32:42.980Z monthly 0.8 @@ -70751,7 +70940,7 @@ https://www.rfc1437.de/2004/05/17/sourceforge-pyawk/ - 2026-03-04T08:32:46.000Z + 2026-03-04T08:32:46.159Z monthly 0.8 @@ -70760,7 +70949,7 @@ https://www.rfc1437.de/2004/05/17/wordpress-wiki-comment-moderation-plugin/ - 2026-03-04T08:32:49.000Z + 2026-03-04T08:32:49.728Z monthly 0.8 @@ -70769,7 +70958,7 @@ https://www.rfc1437.de/2004/05/17/wordpress-wiki-wp-plugins/ - 2026-03-04T08:32:53.000Z + 2026-03-04T08:32:53.267Z monthly 0.8 @@ -70778,7 +70967,7 @@ https://www.rfc1437.de/2004/05/16/der-taschentuchbaum/ - 2026-03-04T08:32:57.000Z + 2026-03-04T08:32:57.333Z monthly 0.8 @@ -70787,7 +70976,7 @@ https://www.rfc1437.de/2004/05/16/freedom-0-dive-into-mark/ - 2026-03-04T08:33:01.000Z + 2026-03-04T08:33:01.337Z monthly 0.8 @@ -70796,7 +70985,7 @@ https://www.rfc1437.de/2004/05/16/freshly-squeezed-software-pulpfiction-advanced/ - 2026-03-04T08:33:05.000Z + 2026-03-04T08:33:05.354Z monthly 0.8 @@ -70805,7 +70994,7 @@ https://www.rfc1437.de/2004/05/16/longhorn-goes-to-pieces-cnet-newscom/ - 2026-03-04T08:33:09.000Z + 2026-03-04T08:33:09.817Z monthly 0.8 @@ -70814,7 +71003,7 @@ https://www.rfc1437.de/2004/05/16/metakit-stats-verify-utility/ - 2026-03-04T08:33:12.000Z + 2026-03-04T08:33:12.999Z monthly 0.8 @@ -70823,7 +71012,7 @@ https://www.rfc1437.de/2004/05/16/pic-botanischer-garten-muenster/ - 2026-03-04T08:33:17.000Z + 2026-03-04T08:33:17.027Z monthly 0.8 @@ -70832,7 +71021,7 @@ https://www.rfc1437.de/2004/05/16/pic-der-taschentuchbaum/ - 2026-03-04T08:33:21.000Z + 2026-03-04T08:33:21.047Z monthly 0.8 @@ -70841,7 +71030,7 @@ https://www.rfc1437.de/2004/05/16/und-noch-ein-paar-mehr-bilder-aus-dem-btnschn-grtn/ - 2026-03-04T08:33:27.000Z + 2026-03-04T08:33:27.477Z monthly 0.8 @@ -70850,7 +71039,7 @@ https://www.rfc1437.de/2004/05/14/beware-mac-os-x-trojan-applescript-applet/ - 2026-03-04T08:33:31.000Z + 2026-03-04T08:33:31.997Z monthly 0.8 @@ -70859,7 +71048,7 @@ https://www.rfc1437.de/2004/05/14/das-geheime-hollywood-filmstudio/ - 2026-03-04T08:33:37.000Z + 2026-03-04T08:33:37.194Z monthly 0.8 @@ -70868,7 +71057,7 @@ https://www.rfc1437.de/2004/05/14/friedensfahrt-zabel-gewinnt-siebte-etappe/ - 2026-03-04T08:33:40.000Z + 2026-03-04T08:33:40.742Z monthly 0.8 @@ -70877,7 +71066,7 @@ https://www.rfc1437.de/2004/05/14/unsicheres-surfen-mit-safari/ - 2026-03-04T08:33:45.000Z + 2026-03-04T08:33:45.271Z monthly 0.8 @@ -70886,7 +71075,7 @@ https://www.rfc1437.de/2004/05/14/vatikan-warnt-vor-christlich-muslimischer-ehe/ - 2026-03-04T08:33:50.000Z + 2026-03-04T08:33:50.669Z monthly 0.8 @@ -70895,7 +71084,7 @@ https://www.rfc1437.de/2004/05/14/vermisst-in-nrw-knapp-eine-milliarde-euro/ - 2026-03-04T08:33:55.000Z + 2026-03-04T08:33:55.590Z monthly 0.8 @@ -70904,7 +71093,7 @@ https://www.rfc1437.de/2004/05/13/bundesregierung-im-lager-der-softwarepatentkritikr/ - 2026-03-04T08:33:59.000Z + 2026-03-04T08:33:59.590Z monthly 0.8 @@ -70913,7 +71102,7 @@ https://www.rfc1437.de/2004/05/13/fuenf-freunde-des-sasser-autors-unter-verdacht/ - 2026-03-04T08:34:04.000Z + 2026-03-04T08:34:04.049Z monthly 0.8 @@ -70922,7 +71111,7 @@ https://www.rfc1437.de/2004/05/13/googlespammer-sind-auch-erpresser/ - 2026-03-04T08:34:08.000Z + 2026-03-04T08:34:08.547Z monthly 0.8 @@ -70931,7 +71120,7 @@ https://www.rfc1437.de/2004/05/13/gruene-fordern-rauswurf-von-wolffsohn/ - 2026-03-04T08:34:13.000Z + 2026-03-04T08:34:13.041Z monthly 0.8 @@ -70940,7 +71129,7 @@ https://www.rfc1437.de/2004/05/13/hackers-and-painters/ - 2026-03-04T08:34:17.000Z + 2026-03-04T08:34:17.524Z monthly 0.8 @@ -70949,7 +71138,7 @@ https://www.rfc1437.de/2004/05/13/htmltemplate/ - 2026-03-04T08:34:20.000Z + 2026-03-04T08:34:20.678Z monthly 0.8 @@ -70958,7 +71147,7 @@ https://www.rfc1437.de/2004/05/13/jim-jarmusch-ist-ein-kinogott/ - 2026-03-04T08:34:25.000Z + 2026-03-04T08:34:25.162Z monthly 0.8 @@ -70967,7 +71156,7 @@ https://www.rfc1437.de/2004/05/13/kfz-kennzeichen-abmahner-zieht-vor-gericht/ - 2026-03-04T08:34:30.000Z + 2026-03-04T08:34:30.107Z monthly 0.8 @@ -70976,7 +71165,7 @@ https://www.rfc1437.de/2004/05/13/news-debian-gnulinux-ist-wieder-da/ - 2026-03-04T08:34:34.000Z + 2026-03-04T08:34:34.107Z monthly 0.8 @@ -70985,7 +71174,7 @@ https://www.rfc1437.de/2004/05/13/openbsd-chef-de-raadt-kritisiert-patentirtn-tcp-fx/ - 2026-03-04T08:34:39.000Z + 2026-03-04T08:34:39.329Z monthly 0.8 @@ -70994,7 +71183,7 @@ https://www.rfc1437.de/2004/05/13/the-joy-of-specs/ - 2026-03-04T08:34:43.000Z + 2026-03-04T08:34:43.848Z monthly 0.8 @@ -71003,7 +71192,7 @@ https://www.rfc1437.de/2004/05/12/bbc-develops-alternative-codec-the-register/ - 2026-03-04T08:34:47.000Z + 2026-03-04T08:34:47.865Z monthly 0.8 @@ -71012,7 +71201,7 @@ https://www.rfc1437.de/2004/05/12/emu48-for-mac-os-x/ - 2026-03-04T08:34:51.000Z + 2026-03-04T08:34:51.444Z monthly 0.8 @@ -71021,7 +71210,7 @@ https://www.rfc1437.de/2004/05/12/firewalls-und-komplexitaet/ - 2026-03-04T08:34:56.000Z + 2026-03-04T08:34:56.142Z monthly 0.8 @@ -71030,7 +71219,7 @@ https://www.rfc1437.de/2004/05/12/ikrk-unsere-diskretion-schuetzt-menschenleben/ - 2026-03-04T08:34:59.000Z + 2026-03-04T08:34:59.748Z monthly 0.8 @@ -71039,7 +71228,7 @@ https://www.rfc1437.de/2004/05/12/isync-und-tagestermine/ - 2026-03-04T08:35:04.000Z + 2026-03-04T08:35:04.694Z monthly 0.8 @@ -71048,7 +71237,7 @@ https://www.rfc1437.de/2004/05/12/rau-mahnt-eliten-alle-massstaebe-verloren/ - 2026-03-04T08:35:09.000Z + 2026-03-04T08:35:09.640Z monthly 0.8 @@ -71057,7 +71246,7 @@ https://www.rfc1437.de/2004/05/12/weitere-bluetooth-handys-gegen-hacker-angrff-nfllg/ - 2026-03-04T08:35:14.000Z + 2026-03-04T08:35:14.279Z monthly 0.8 @@ -71066,7 +71255,7 @@ https://www.rfc1437.de/2004/05/11/itunes-knacker-neuer-name-neuer-versuch/ - 2026-03-04T08:35:17.000Z + 2026-03-04T08:35:17.916Z monthly 0.8 @@ -71075,7 +71264,7 @@ https://www.rfc1437.de/2004/05/11/neues-handy-neue-probleme/ - 2026-03-04T08:35:22.000Z + 2026-03-04T08:35:22.513Z monthly 0.8 @@ -71084,7 +71273,7 @@ https://www.rfc1437.de/2004/05/11/pearpc-about/ - 2026-03-04T08:35:25.000Z + 2026-03-04T08:35:25.754Z monthly 0.8 @@ -71093,7 +71282,7 @@ https://www.rfc1437.de/2004/05/11/photographic-solutions-inc-new-products/ - 2026-03-04T08:35:29.000Z + 2026-03-04T08:35:29.298Z monthly 0.8 @@ -71102,7 +71291,7 @@ https://www.rfc1437.de/2004/05/10/der-preis-ist-heiss/ - 2026-03-04T08:35:33.000Z + 2026-03-04T08:35:33.393Z monthly 0.8 @@ -71111,7 +71300,7 @@ https://www.rfc1437.de/2004/05/10/just-posted-leica-digilux-2-review/ - 2026-03-04T08:35:38.000Z + 2026-03-04T08:35:38.333Z monthly 0.8 @@ -71120,7 +71309,7 @@ https://www.rfc1437.de/2004/05/10/spaetestens/ - 2026-03-04T08:35:41.000Z + 2026-03-04T08:35:41.496Z monthly 0.8 @@ -71129,7 +71318,7 @@ https://www.rfc1437.de/2004/05/09/pyinvoke/ - 2026-03-04T08:35:44.000Z + 2026-03-04T08:35:44.749Z monthly 0.8 @@ -71138,7 +71327,7 @@ https://www.rfc1437.de/2004/05/09/rsync-vault-manager/ - 2026-03-04T08:35:47.000Z + 2026-03-04T08:35:47.945Z monthly 0.8 @@ -71147,7 +71336,7 @@ https://www.rfc1437.de/2004/05/08/sco-vs-linux-die-royal-bank-of-canada-will-ausstgn/ - 2026-03-04T08:35:52.000Z + 2026-03-04T08:35:52.517Z monthly 0.8 @@ -71156,7 +71345,7 @@ https://www.rfc1437.de/2004/05/08/sven-j-hat-verschissen/ - 2026-03-04T08:35:57.000Z + 2026-03-04T08:35:57.504Z monthly 0.8 @@ -71165,7 +71354,7 @@ https://www.rfc1437.de/2004/05/08/timecopy-conduit/ - 2026-03-04T08:36:01.000Z + 2026-03-04T08:36:01.165Z monthly 0.8 @@ -71174,7 +71363,7 @@ https://www.rfc1437.de/2004/05/07/schoener-rechnen/ - 2026-03-04T08:36:05.000Z + 2026-03-04T08:36:05.821Z monthly 0.8 @@ -71183,7 +71372,7 @@ https://www.rfc1437.de/2004/05/07/suse-live-cd-offen-fuer-angriffe-uebers-netz/ - 2026-03-04T08:36:10.000Z + 2026-03-04T08:36:10.369Z monthly 0.8 @@ -71192,7 +71381,7 @@ https://www.rfc1437.de/2004/05/06/calerga-sysquake/ - 2026-03-04T08:36:13.000Z + 2026-03-04T08:36:13.972Z monthly 0.8 @@ -71201,7 +71390,7 @@ https://www.rfc1437.de/2004/05/06/du-rueckstaendiger-besucher-unserer-homepage/ - 2026-03-04T08:36:18.000Z + 2026-03-04T08:36:18.636Z monthly 0.8 @@ -71210,7 +71399,7 @@ https://www.rfc1437.de/2004/05/06/lispme-homepage/ - 2026-03-04T08:36:21.000Z + 2026-03-04T08:36:21.910Z monthly 0.8 @@ -71219,7 +71408,7 @@ https://www.rfc1437.de/2004/05/06/schroeder-draengt-banken-zu-fusionen/ - 2026-03-04T08:36:26.000Z + 2026-03-04T08:36:26.717Z monthly 0.8 @@ -71228,7 +71417,7 @@ https://www.rfc1437.de/2004/05/06/there-are-marks-at-the-base-f-my-pwrbks-dsply-scrn/ - 2026-03-04T08:36:31.000Z + 2026-03-04T08:36:31.765Z monthly 0.8 @@ -71237,7 +71426,7 @@ https://www.rfc1437.de/2004/05/06/wirtschaft-lehnt-ausbildungspakt-ab/ - 2026-03-04T08:36:36.000Z + 2026-03-04T08:36:36.563Z monthly 0.8 @@ -71246,7 +71435,7 @@ https://www.rfc1437.de/2004/05/05/a-l-digital-the-bunker-press/ - 2026-03-04T08:36:40.000Z + 2026-03-04T08:36:40.200Z monthly 0.8 @@ -71255,7 +71444,7 @@ https://www.rfc1437.de/2004/05/05/art-of-bw-005-digital-outback-photo/ - 2026-03-04T08:36:44.000Z + 2026-03-04T08:36:44.969Z monthly 0.8 @@ -71264,7 +71453,7 @@ https://www.rfc1437.de/2004/05/05/boyz-need-toyz-sony-clie-peg-th55/ - 2026-03-04T08:36:49.000Z + 2026-03-04T08:36:49.993Z monthly 0.8 @@ -71273,7 +71462,7 @@ https://www.rfc1437.de/2004/05/05/longhorn-nur-fuer-super-pcs/ - 2026-03-04T08:36:55.000Z + 2026-03-04T08:36:55.637Z monthly 0.8 @@ -71282,7 +71471,7 @@ https://www.rfc1437.de/2004/05/05/security-corporation-nokia-6310i/ - 2026-03-04T08:36:59.000Z + 2026-03-04T08:36:59.324Z monthly 0.8 @@ -71291,7 +71480,7 @@ https://www.rfc1437.de/2004/05/05/smittyware-com-upirc-irc-client-for-palm-os/ - 2026-03-04T08:37:03.000Z + 2026-03-04T08:37:03.045Z monthly 0.8 @@ -71300,7 +71489,7 @@ https://www.rfc1437.de/2004/05/05/t-e-k-t-o-n-i-c-a/ - 2026-03-04T08:37:07.000Z + 2026-03-04T08:37:07.656Z monthly 0.8 @@ -71309,7 +71498,7 @@ https://www.rfc1437.de/2004/05/05/vagablog-blogging-for-palm-devices/ - 2026-03-04T08:37:11.000Z + 2026-03-04T08:37:11.750Z monthly 0.8 @@ -71318,7 +71507,7 @@ https://www.rfc1437.de/2004/05/05/was-so-aus-ehemals-interessanten-websites-wird/ - 2026-03-04T08:37:15.000Z + 2026-03-04T08:37:15.470Z monthly 0.8 @@ -71327,7 +71516,7 @@ https://www.rfc1437.de/2004/05/04/bin-wieder-da/ - 2026-03-04T08:37:20.000Z + 2026-03-04T08:37:20.173Z monthly 0.8 @@ -71336,7 +71525,7 @@ https://www.rfc1437.de/2004/05/01/es-wird-immer-schlimmer/ - 2026-03-04T08:37:24.000Z + 2026-03-04T08:37:24.879Z monthly 0.8 @@ -71345,7 +71534,7 @@ https://www.rfc1437.de/2004/05/01/hondo-hatte-doch-nicht-ganz-die-beine/ - 2026-03-04T08:37:29.000Z + 2026-03-04T08:37:29.466Z monthly 0.8 @@ -71354,7 +71543,7 @@ https://www.rfc1437.de/2004/04/30/dell-dreht-durch/ - 2026-03-04T08:37:34.000Z + 2026-03-04T08:37:34.697Z monthly 0.8 @@ -71363,7 +71552,7 @@ https://www.rfc1437.de/2004/04/29/eu-rat-nickt-neue-regelungn-zm-schtz-gstgn-gntms-b/ - 2026-03-04T08:37:39.000Z + 2026-03-04T08:37:39.429Z monthly 0.8 @@ -71372,7 +71561,7 @@ https://www.rfc1437.de/2004/04/29/pylinda-2/ - 2026-03-04T08:37:43.000Z + 2026-03-04T08:37:43.051Z monthly 0.8 @@ -71381,7 +71570,7 @@ https://www.rfc1437.de/2004/04/29/rund-um-den-henninger-turm-zabel-will-reblln-stppn/ - 2026-03-04T08:37:47.000Z + 2026-03-04T08:37:47.267Z monthly 0.8 @@ -71390,7 +71579,7 @@ https://www.rfc1437.de/2004/04/28/accessfs-permission-filesystem-for-linux/ - 2026-03-04T08:37:51.000Z + 2026-03-04T08:37:51.366Z monthly 0.8 @@ -71399,7 +71588,7 @@ https://www.rfc1437.de/2004/04/28/ear-monitors-r-brand-by-future-sonics-inc/ - 2026-03-04T08:37:55.000Z + 2026-03-04T08:37:55.428Z monthly 0.8 @@ -71408,7 +71597,7 @@ https://www.rfc1437.de/2004/04/28/hybrid-raw-conversion/ - 2026-03-04T08:38:00.000Z + 2026-03-04T08:38:00.139Z monthly 0.8 @@ -71417,7 +71606,7 @@ https://www.rfc1437.de/2004/04/28/leck-in-heliumtank-der-sojus/ - 2026-03-04T08:38:04.000Z + 2026-03-04T08:38:04.477Z monthly 0.8 @@ -71426,7 +71615,7 @@ https://www.rfc1437.de/2004/04/28/liebesrufe-aus-der-tiefe/ - 2026-03-04T08:38:08.000Z + 2026-03-04T08:38:08.881Z monthly 0.8 @@ -71435,7 +71624,7 @@ https://www.rfc1437.de/2004/04/28/rssh-restricted-shell-for-scp-sftp/ - 2026-03-04T08:38:12.000Z + 2026-03-04T08:38:12.887Z monthly 0.8 @@ -71444,7 +71633,7 @@ https://www.rfc1437.de/2004/04/28/scponly-homepage/ - 2026-03-04T08:38:16.000Z + 2026-03-04T08:38:16.282Z monthly 0.8 @@ -71453,7 +71642,7 @@ https://www.rfc1437.de/2004/04/28/specification-for-fault-code-interoperability/ - 2026-03-04T08:38:20.000Z + 2026-03-04T08:38:20.303Z monthly 0.8 @@ -71462,7 +71651,7 @@ https://www.rfc1437.de/2004/04/27/auch-opportunity-ist-252ber-der-ziellinie/ - 2026-03-04T08:38:24.000Z + 2026-03-04T08:38:24.911Z monthly 0.8 @@ -71471,7 +71660,7 @@ https://www.rfc1437.de/2004/04/27/debian-freier-aber-verspaetet/ - 2026-03-04T08:38:29.000Z + 2026-03-04T08:38:29.532Z monthly 0.8 @@ -71480,7 +71669,7 @@ https://www.rfc1437.de/2004/04/27/hs-scrty-nws-mcrsft-wllt-vrffntlchng-vn-xplt-ggn-s/ - 2026-03-04T08:38:33.000Z + 2026-03-04T08:38:33.293Z monthly 0.8 @@ -71489,7 +71678,7 @@ https://www.rfc1437.de/2004/04/27/hugos-house-etwas-angehuebscht/ - 2026-03-04T08:38:38.000Z + 2026-03-04T08:38:38.259Z monthly 0.8 @@ -71498,7 +71687,7 @@ https://www.rfc1437.de/2004/04/27/i18n-sig-unicode-surrogates-just-say-no/ - 2026-03-04T08:38:42.000Z + 2026-03-04T08:38:42.438Z monthly 0.8 @@ -71507,7 +71696,7 @@ https://www.rfc1437.de/2004/04/26/bibble-labs-professional-photo-manipulation/ - 2026-03-04T08:38:46.000Z + 2026-03-04T08:38:46.170Z monthly 0.8 @@ -71516,7 +71705,7 @@ https://www.rfc1437.de/2004/04/26/boyz-need-toyz/ - 2026-03-04T08:38:51.000Z + 2026-03-04T08:38:51.285Z monthly 0.8 @@ -71525,7 +71714,7 @@ https://www.rfc1437.de/2004/04/26/das-muss-ein-fake-sein/ - 2026-03-04T08:38:55.000Z + 2026-03-04T08:38:55.388Z monthly 0.8 @@ -71534,7 +71723,7 @@ https://www.rfc1437.de/2004/04/26/dedrms-knackt-apples-itunes-kopierschutz/ - 2026-03-04T08:38:59.000Z + 2026-03-04T08:38:59.063Z monthly 0.8 @@ -71543,7 +71732,7 @@ https://www.rfc1437.de/2004/04/26/eu-will-gen-mais-zulassen/ - 2026-03-04T08:39:03.000Z + 2026-03-04T08:39:03.726Z monthly 0.8 @@ -71552,7 +71741,7 @@ https://www.rfc1437.de/2004/04/26/little-snob/ - 2026-03-04T08:39:07.000Z + 2026-03-04T08:39:07.398Z monthly 0.8 @@ -71561,7 +71750,7 @@ https://www.rfc1437.de/2004/04/26/steinbrueck-kritisiert-schornsteinfeger-monopol/ - 2026-03-04T08:39:12.000Z + 2026-03-04T08:39:12.624Z monthly 0.8 @@ -71570,7 +71759,7 @@ https://www.rfc1437.de/2004/04/26/the-omni-group-applications-omniweb-beta-2/ - 2026-03-04T08:39:17.000Z + 2026-03-04T08:39:17.149Z monthly 0.8 @@ -71579,7 +71768,7 @@ https://www.rfc1437.de/2004/04/25/digital-radio-dab-empfaenger/ - 2026-03-04T08:39:20.000Z + 2026-03-04T08:39:20.802Z monthly 0.8 @@ -71588,7 +71777,7 @@ https://www.rfc1437.de/2004/04/25/digital-radio-west-ihr-sendernetzbetreiber-in-nrw/ - 2026-03-04T08:39:24.000Z + 2026-03-04T08:39:24.422Z monthly 0.8 @@ -71597,7 +71786,7 @@ https://www.rfc1437.de/2004/04/25/heute-war-die-digi-mal-kooperativ/ - 2026-03-04T08:39:30.000Z + 2026-03-04T08:39:30.225Z monthly 0.8 @@ -71606,7 +71795,7 @@ https://www.rfc1437.de/2004/04/25/pic-blau-baeren/ - 2026-03-04T08:39:34.000Z + 2026-03-04T08:39:34.462Z monthly 0.8 @@ -71615,7 +71804,7 @@ https://www.rfc1437.de/2004/04/25/pic-bluetenmeer/ - 2026-03-04T08:39:38.000Z + 2026-03-04T08:39:38.768Z monthly 0.8 @@ -71624,7 +71813,7 @@ https://www.rfc1437.de/2004/04/25/pic-die-farbe-rosa/ - 2026-03-04T08:39:42.000Z + 2026-03-04T08:39:42.861Z monthly 0.8 @@ -71633,7 +71822,7 @@ https://www.rfc1437.de/2004/04/25/pic-ein-weites-feld/ - 2026-03-04T08:39:47.000Z + 2026-03-04T08:39:47.020Z monthly 0.8 @@ -71642,7 +71831,7 @@ https://www.rfc1437.de/2004/04/25/pic-fruehlingsgruen-1/ - 2026-03-04T08:39:51.000Z + 2026-03-04T08:39:51.124Z monthly 0.8 @@ -71651,7 +71840,7 @@ https://www.rfc1437.de/2004/04/25/pic-fruehlingsgruen-2/ - 2026-03-04T08:39:55.000Z + 2026-03-04T08:39:55.476Z monthly 0.8 @@ -71660,7 +71849,7 @@ https://www.rfc1437.de/2004/04/25/pic-noch-mehr-gruen/ - 2026-03-04T08:39:59.000Z + 2026-03-04T08:39:59.573Z monthly 0.8 @@ -71669,7 +71858,7 @@ https://www.rfc1437.de/2004/04/25/pic-oekologische-nische/ - 2026-03-04T08:40:03.000Z + 2026-03-04T08:40:03.714Z monthly 0.8 @@ -71678,7 +71867,7 @@ https://www.rfc1437.de/2004/04/25/pic-pompoms-wachsen-auf-baeumen/ - 2026-03-04T08:40:08.000Z + 2026-03-04T08:40:08.241Z monthly 0.8 @@ -71687,7 +71876,7 @@ https://www.rfc1437.de/2004/04/25/pic-valles-paries/ - 2026-03-04T08:40:12.000Z + 2026-03-04T08:40:12.409Z monthly 0.8 @@ -71696,7 +71885,7 @@ https://www.rfc1437.de/2004/04/25/pic-wirtschaftsanbau-der-josephs-kirche/ - 2026-03-04T08:40:16.000Z + 2026-03-04T08:40:16.995Z monthly 0.8 @@ -71705,7 +71894,7 @@ https://www.rfc1437.de/2004/04/24/forgent-sues-31-companies-over-jpeg/ - 2026-03-04T08:40:21.000Z + 2026-03-04T08:40:21.625Z monthly 0.8 @@ -71714,7 +71903,7 @@ https://www.rfc1437.de/2004/04/24/nikon-coolwalker-msv-01-digtl-pht-strg-vwr-frst-lk/ - 2026-03-04T08:40:25.000Z + 2026-03-04T08:40:25.756Z monthly 0.8 @@ -71723,7 +71912,7 @@ https://www.rfc1437.de/2004/04/24/wolframs-future-math/ - 2026-03-04T08:40:30.000Z + 2026-03-04T08:40:30.330Z monthly 0.8 @@ -71732,7 +71921,7 @@ https://www.rfc1437.de/2004/04/23/kill-bill-vol-1-dvd/ - 2026-03-04T08:40:33.000Z + 2026-03-04T08:40:33.987Z monthly 0.8 @@ -71741,7 +71930,7 @@ https://www.rfc1437.de/2004/04/23/neues-von-der-digi-des-satans/ - 2026-03-04T08:40:38.000Z + 2026-03-04T08:40:38.905Z monthly 0.8 @@ -71750,7 +71939,7 @@ https://www.rfc1437.de/2004/04/23/unix-history/ - 2026-03-07T21:18:10.000Z + 2026-03-07T21:18:10.605Z monthly 0.8 @@ -71759,7 +71948,7 @@ https://www.rfc1437.de/2004/04/22/cd-rw-besser-fuer-archivierung-als-cd-r/ - 2026-03-04T08:40:46.000Z + 2026-03-04T08:40:46.684Z monthly 0.8 @@ -71768,7 +71957,7 @@ https://www.rfc1437.de/2004/04/22/kinotod-im-kinderzimmer/ - 2026-03-04T08:40:50.000Z + 2026-03-04T08:40:50.766Z monthly 0.8 @@ -71777,7 +71966,7 @@ https://www.rfc1437.de/2004/04/22/ullrich-sagt-luettich-und-henninger-turm-ab/ - 2026-03-04T08:40:55.000Z + 2026-03-04T08:40:55.340Z monthly 0.8 @@ -71786,7 +71975,7 @@ https://www.rfc1437.de/2004/04/21/a-b-c-d-the-programming-language-osnews-com/ - 2026-03-04T08:40:58.000Z + 2026-03-04T08:40:58.972Z monthly 0.8 @@ -71795,7 +71984,7 @@ https://www.rfc1437.de/2004/04/21/alan-kay-to-receive-turing-award/ - 2026-03-04T08:41:03.000Z + 2026-03-04T08:41:03.095Z monthly 0.8 @@ -71804,7 +71993,7 @@ https://www.rfc1437.de/2004/04/21/castor-transporte-nrw-klagt-sachsen-grollt/ - 2026-03-04T08:41:08.000Z + 2026-03-04T08:41:08.136Z monthly 0.8 @@ -71813,7 +72002,7 @@ https://www.rfc1437.de/2004/04/21/iamphet-nm-ru-scheme-stuff-mzvim/ - 2026-03-04T08:41:11.000Z + 2026-03-04T08:41:11.878Z monthly 0.8 @@ -71822,7 +72011,7 @@ https://www.rfc1437.de/2004/04/21/ministerin-schmidt-sieht-bildungskatastrophe-kommn/ - 2026-03-04T08:41:16.000Z + 2026-03-04T08:41:16.859Z monthly 0.8 @@ -71831,7 +72020,7 @@ https://www.rfc1437.de/2004/04/21/wallonischer-pfeil-ullrich-steigt-nach-100km-vm-rd/ - 2026-03-04T08:41:21.000Z + 2026-03-04T08:41:21.044Z monthly 0.8 @@ -71840,7 +72029,7 @@ https://www.rfc1437.de/2004/04/20/dkbza-pydot/ - 2026-03-04T08:41:24.000Z + 2026-03-04T08:41:24.656Z monthly 0.8 @@ -71849,7 +72038,7 @@ https://www.rfc1437.de/2004/04/19/apple-xsan-ein-ueberblick/ - 2026-03-04T08:41:28.000Z + 2026-03-04T08:41:28.907Z monthly 0.8 @@ -71858,7 +72047,7 @@ https://www.rfc1437.de/2004/04/19/die-neue-macht-der-autoren/ - 2026-03-04T08:41:33.000Z + 2026-03-04T08:41:33.529Z monthly 0.8 @@ -71867,7 +72056,7 @@ https://www.rfc1437.de/2004/04/19/ms-explorer-patch-entweder-14-loecher-oder-ken-ssl/ - 2026-03-04T08:41:38.000Z + 2026-03-04T08:41:38.494Z monthly 0.8 @@ -71876,7 +72065,7 @@ https://www.rfc1437.de/2004/04/18/apples-jackboots-step-on-playfair-in-india/ - 2026-03-04T08:41:42.000Z + 2026-03-04T08:41:42.675Z monthly 0.8 @@ -71885,7 +72074,7 @@ https://www.rfc1437.de/2004/04/18/calzone/ - 2026-03-04T08:41:48.000Z + 2026-03-04T08:41:48.012Z monthly 0.8 @@ -71894,7 +72083,7 @@ https://www.rfc1437.de/2004/04/18/darwinports-home/ - 2026-03-04T08:41:52.000Z + 2026-03-04T08:41:52.710Z monthly 0.8 @@ -71903,7 +72092,7 @@ https://www.rfc1437.de/2004/04/17/sco-vs-linux-baystar-capital-wll-nvstmnt-n-sc-bndn/ - 2026-03-04T08:41:56.000Z + 2026-03-04T08:41:56.430Z monthly 0.8 @@ -71912,7 +72101,7 @@ https://www.rfc1437.de/2004/04/15/deutsche-buchstabiertafel/ - 2026-03-04T08:42:00.000Z + 2026-03-04T08:42:00.123Z monthly 0.8 @@ -71921,7 +72110,7 @@ https://www.rfc1437.de/2004/04/15/duerfen-abmahner-nicht-mehr-absahnen/ - 2026-03-04T08:42:04.000Z + 2026-03-04T08:42:04.823Z monthly 0.8 @@ -71930,7 +72119,7 @@ https://www.rfc1437.de/2004/04/14/etappensieg-fuer-darwin-gegner/ - 2026-03-04T08:42:09.000Z + 2026-03-04T08:42:09.847Z monthly 0.8 @@ -71939,7 +72128,7 @@ https://www.rfc1437.de/2004/04/14/schanghai-transrapid-trasse-sinkt-kaum-fahrgaeste/ - 2026-03-04T08:42:15.000Z + 2026-03-04T08:42:15.074Z monthly 0.8 @@ -71948,7 +72137,7 @@ https://www.rfc1437.de/2004/04/13/groklaw-linux-als-security-risiko-und-d-ntwrtn-drf/ - 2026-03-04T08:42:19.000Z + 2026-03-04T08:42:19.162Z monthly 0.8 @@ -71957,7 +72146,7 @@ https://www.rfc1437.de/2004/04/13/linux-2-6-and-misdn-howto/ - 2026-03-04T08:42:22.000Z + 2026-03-04T08:42:22.884Z monthly 0.8 @@ -71966,7 +72155,7 @@ https://www.rfc1437.de/2004/04/12/embedded-systems-entwickler-linux-ist-n-schrhtsrsk/ - 2026-03-04T08:42:27.000Z + 2026-03-04T08:42:27.427Z monthly 0.8 @@ -71975,7 +72164,7 @@ https://www.rfc1437.de/2004/04/12/erik-zabel-gewinnt-rund-um-koeln/ - 2026-03-04T08:42:31.000Z + 2026-03-04T08:42:31.158Z monthly 0.8 @@ -71984,7 +72173,7 @@ https://www.rfc1437.de/2004/04/12/meine-digital-slr-ist-jetzt-wohl-tot/ - 2026-03-04T08:42:36.000Z + 2026-03-04T08:42:36.474Z monthly 0.8 @@ -71993,7 +72182,7 @@ https://www.rfc1437.de/2004/04/12/mit-steuervorteilen-kirchenaustritte-stoppen/ - 2026-03-04T08:42:42.000Z + 2026-03-04T08:42:42.020Z monthly 0.8 @@ -72002,7 +72191,7 @@ https://www.rfc1437.de/2004/04/12/wiki-software-bei-webware/ - 2026-03-04T08:42:46.000Z + 2026-03-04T08:42:46.360Z monthly 0.8 @@ -72011,7 +72200,7 @@ https://www.rfc1437.de/2004/04/12/zope-org-readme-file-for-zopeeditmanager-0-9-3/ - 2026-03-04T08:42:50.000Z + 2026-03-04T08:42:50.474Z monthly 0.8 @@ -72020,7 +72209,7 @@ https://www.rfc1437.de/2004/04/11/30-meter-tanne-fuer-osterfeuer/ - 2026-03-04T08:42:55.000Z + 2026-03-04T08:42:55.566Z monthly 0.8 @@ -72029,7 +72218,7 @@ https://www.rfc1437.de/2004/04/11/apple-schuetzt-sich-vor-playfair/ - 2026-03-04T08:43:00.000Z + 2026-03-04T08:43:00.227Z monthly 0.8 @@ -72038,7 +72227,7 @@ https://www.rfc1437.de/2004/04/11/fuer-radioprogrammierer/ - 2026-03-04T08:43:04.000Z + 2026-03-04T08:43:04.325Z monthly 0.8 @@ -72047,7 +72236,7 @@ https://www.rfc1437.de/2004/04/11/sun-stellt-entwicklung-von-ultrasparc-v-ein/ - 2026-03-04T08:43:09.000Z + 2026-03-04T08:43:09.285Z monthly 0.8 @@ -72056,7 +72245,7 @@ https://www.rfc1437.de/2004/04/10/bush-wusste-wochen-vor-911-bescheid/ - 2026-03-04T08:43:13.000Z + 2026-03-04T08:43:13.962Z monthly 0.8 @@ -72065,7 +72254,7 @@ https://www.rfc1437.de/2004/04/10/notebook-brennstoffzelle-fuer-zehn-stunden-laufzet/ - 2026-03-04T08:43:18.000Z + 2026-03-04T08:43:18.143Z monthly 0.8 @@ -72074,7 +72263,7 @@ https://www.rfc1437.de/2004/04/09/macbiff/ - 2026-03-04T08:43:21.000Z + 2026-03-04T08:43:21.780Z monthly 0.8 @@ -72083,7 +72272,7 @@ https://www.rfc1437.de/2004/04/09/plt-spy-neuigkeiten/ - 2026-03-04T08:43:26.000Z + 2026-03-04T08:43:26.996Z monthly 0.8 @@ -72092,7 +72281,7 @@ https://www.rfc1437.de/2004/04/09/rasterfahndung-fuehrt-nicht-zum-erfolg/ - 2026-03-04T08:43:31.000Z + 2026-03-04T08:43:31.985Z monthly 0.8 @@ -72101,7 +72290,7 @@ https://www.rfc1437.de/2004/04/09/spyware-hersteller-will-an-die-boerse/ - 2026-03-04T08:43:37.000Z + 2026-03-04T08:43:37.804Z monthly 0.8 @@ -72110,7 +72299,7 @@ https://www.rfc1437.de/2004/04/08/divmod-org-home-projects/ - 2026-03-04T08:43:41.000Z + 2026-03-04T08:43:41.713Z monthly 0.8 @@ -72119,7 +72308,7 @@ https://www.rfc1437.de/2004/04/08/dnsmasq-a-dns-forwarder-for-nat-firewalls/ - 2026-03-04T08:43:45.000Z + 2026-03-04T08:43:45.698Z monthly 0.8 @@ -72128,7 +72317,7 @@ https://www.rfc1437.de/2004/04/08/logilab-org-aspects/ - 2026-03-04T08:43:49.000Z + 2026-03-04T08:43:49.175Z monthly 0.8 @@ -72137,7 +72326,7 @@ https://www.rfc1437.de/2004/04/08/schrempp-trotz-aktionaersschelte-bestaetigt/ - 2026-03-04T08:43:54.000Z + 2026-03-04T08:43:54.431Z monthly 0.8 @@ -72146,7 +72335,7 @@ https://www.rfc1437.de/2004/04/07/einfuehrung-neuer-ausweispapier-ls-ggntschr-lbrtst/ - 2026-03-04T08:43:58.000Z + 2026-03-04T08:43:58.602Z monthly 0.8 @@ -72155,7 +72344,7 @@ https://www.rfc1437.de/2004/04/07/experiences-with-the-krasnogorsk-ft-2-panoramc-cmr/ - 2026-03-04T08:44:03.000Z + 2026-03-04T08:44:03.293Z monthly 0.8 @@ -72164,7 +72353,7 @@ https://www.rfc1437.de/2004/04/07/the-fantabulous-icon-o-matic/ - 2026-03-04T08:44:06.000Z + 2026-03-04T08:44:06.996Z monthly 0.8 @@ -72173,7 +72362,7 @@ https://www.rfc1437.de/2004/04/06/aids-medikamente-fuer-entwicklungslaender-guenstgr/ - 2026-03-04T08:44:11.000Z + 2026-03-04T08:44:11.701Z monthly 0.8 @@ -72182,7 +72371,7 @@ https://www.rfc1437.de/2004/04/06/amadeus-ii-sounds-bearbeiten/ - 2026-03-04T08:44:15.000Z + 2026-03-04T08:44:15.853Z monthly 0.8 @@ -72191,7 +72380,7 @@ https://www.rfc1437.de/2004/04/06/drop-target-for-my-brain/ - 2026-03-04T08:44:20.000Z + 2026-03-04T08:44:20.599Z monthly 0.8 @@ -72200,7 +72389,7 @@ https://www.rfc1437.de/2004/04/06/erstmals-gen-weizen-in-deutschland-ausgesaet/ - 2026-03-04T08:44:25.000Z + 2026-03-04T08:44:25.270Z monthly 0.8 @@ -72209,7 +72398,7 @@ https://www.rfc1437.de/2004/04/06/fastpth-nd-schnllrr-pstrm-fr-t-dsl-hn-nrchtngsgbhr/ - 2026-03-04T08:44:29.000Z + 2026-03-04T08:44:29.488Z monthly 0.8 @@ -72218,7 +72407,7 @@ https://www.rfc1437.de/2004/04/06/icann-verteidigt-verbot-von-verisigns-sitefinder/ - 2026-03-04T08:44:33.000Z + 2026-03-04T08:44:33.344Z monthly 0.8 @@ -72227,7 +72416,7 @@ https://www.rfc1437.de/2004/04/06/wellenkraftwerk-geht-ans-netz/ - 2026-03-04T08:44:37.000Z + 2026-03-04T08:44:37.828Z monthly 0.8 @@ -72236,7 +72425,7 @@ https://www.rfc1437.de/2004/04/05/greenpeace-protestiert-gegen-baby-patent/ - 2026-03-04T08:44:42.000Z + 2026-03-04T08:44:42.032Z monthly 0.8 @@ -72245,7 +72434,7 @@ https://www.rfc1437.de/2004/04/05/meine-digital-slr-ist-krank/ - 2026-03-04T08:44:46.000Z + 2026-03-04T08:44:46.969Z monthly 0.8 @@ -72254,7 +72443,7 @@ https://www.rfc1437.de/2004/04/05/new-utility-strips-drm-from-itunes-music-str-trcks/ - 2026-03-04T08:44:51.000Z + 2026-03-04T08:44:51.190Z monthly 0.8 @@ -72263,7 +72452,7 @@ https://www.rfc1437.de/2004/04/04/audiblecom-audio-that-speaks-to-you-wherever-you-r/ - 2026-03-04T08:44:56.000Z + 2026-03-04T08:44:56.498Z monthly 0.8 @@ -72272,7 +72461,7 @@ https://www.rfc1437.de/2004/04/04/ice-katastrophe-in-letzter-sekunde-verhindert/ - 2026-03-04T08:45:02.000Z + 2026-03-04T08:45:02.142Z monthly 0.8 @@ -72281,7 +72470,7 @@ https://www.rfc1437.de/2004/04/04/ipod-too-hard-to-use/ - 2026-03-04T08:45:06.000Z + 2026-03-04T08:45:06.800Z monthly 0.8 @@ -72290,7 +72479,7 @@ https://www.rfc1437.de/2004/04/04/wenn-die-wirtschaft-regie-fuehrt/ - 2026-03-04T08:45:11.000Z + 2026-03-04T08:45:11.387Z monthly 0.8 @@ -72299,7 +72488,7 @@ https://www.rfc1437.de/2004/04/03/idiotische-mailserverkonfigurationen-mal-wieder/ - 2026-03-04T08:45:16.000Z + 2026-03-04T08:45:16.610Z monthly 0.8 @@ -72308,7 +72497,7 @@ https://www.rfc1437.de/2004/04/03/index-of-erich-bricolage/ - 2026-03-04T08:45:20.000Z + 2026-03-04T08:45:20.249Z monthly 0.8 @@ -72317,7 +72506,7 @@ https://www.rfc1437.de/2004/04/03/loesung-fuer-vorheriges-problem/ - 2026-03-04T08:45:25.000Z + 2026-03-04T08:45:25.805Z monthly 0.8 @@ -72326,7 +72515,7 @@ https://www.rfc1437.de/2004/04/03/randall-d-beer-fpc-ppc/ - 2026-03-04T08:45:29.000Z + 2026-03-04T08:45:29.575Z monthly 0.8 @@ -72335,7 +72524,7 @@ https://www.rfc1437.de/2004/04/03/the-mason-book/ - 2026-03-04T08:45:32.000Z + 2026-03-04T08:45:32.889Z monthly 0.8 @@ -72344,7 +72533,7 @@ https://www.rfc1437.de/2004/04/02/autobahn-1-kunstharz-versiegelt/ - 2026-03-04T08:45:37.000Z + 2026-03-04T08:45:37.762Z monthly 0.8 @@ -72353,7 +72542,7 @@ https://www.rfc1437.de/2004/04/02/bundesrat-lehnt-tkg-gesetzentwurf-ab/ - 2026-03-04T08:45:42.000Z + 2026-03-04T08:45:42.656Z monthly 0.8 @@ -72362,7 +72551,7 @@ https://www.rfc1437.de/2004/04/02/ein-bischen-fruehling/ - 2026-03-04T08:45:50.000Z + 2026-03-04T08:45:50.164Z monthly 0.8 @@ -72371,7 +72560,7 @@ https://www.rfc1437.de/2004/04/02/festgefressene-situation/ - 2026-03-04T08:45:53.000Z + 2026-03-04T08:45:53.980Z monthly 0.8 @@ -72380,7 +72569,7 @@ https://www.rfc1437.de/2004/04/02/kabel-detschlnd-zhlt-26-mllrdn-fr-brnhm-dr-knkrrnz/ - 2026-03-04T08:45:58.000Z + 2026-03-04T08:45:58.692Z monthly 0.8 @@ -72389,7 +72578,7 @@ https://www.rfc1437.de/2004/04/02/pic-der-fruehling/ - 2026-03-04T08:46:02.000Z + 2026-03-04T08:46:02.963Z monthly 0.8 @@ -72398,7 +72587,7 @@ https://www.rfc1437.de/2004/04/02/pic-schraube-locker/ - 2026-03-04T08:46:07.000Z + 2026-03-04T08:46:07.345Z monthly 0.8 @@ -72407,7 +72596,7 @@ https://www.rfc1437.de/2004/04/02/pic-unflexibel/ - 2026-03-04T08:46:11.000Z + 2026-03-04T08:46:11.487Z monthly 0.8 @@ -72416,7 +72605,7 @@ https://www.rfc1437.de/2004/04/02/unflexibel/ - 2026-03-04T08:46:15.000Z + 2026-03-04T08:46:15.656Z monthly 0.8 @@ -72425,7 +72614,7 @@ https://www.rfc1437.de/2004/04/01/debian-gnulinux-apt-build/ - 2026-03-04T08:46:22.000Z + 2026-03-04T08:46:22.089Z monthly 0.8 @@ -72434,7 +72623,7 @@ https://www.rfc1437.de/2004/04/01/debian-sarge-auf-12-cds/ - 2026-03-04T08:46:26.000Z + 2026-03-04T08:46:26.618Z monthly 0.8 @@ -72443,7 +72632,7 @@ https://www.rfc1437.de/2004/04/01/lego-und-die-kundenfreundlichkeit/ - 2026-03-04T08:46:31.000Z + 2026-03-04T08:46:31.566Z monthly 0.8 @@ -72452,7 +72641,7 @@ https://www.rfc1437.de/2004/04/01/oetker-darf-noch-mehr-bier-brauen/ - 2026-03-04T08:46:38.000Z + 2026-03-04T08:46:38.001Z monthly 0.8 @@ -72461,7 +72650,7 @@ https://www.rfc1437.de/2004/04/01/pyoxide-pythonmac-org-wiki/ - 2026-03-04T08:46:43.000Z + 2026-03-04T08:46:43.179Z monthly 0.8 @@ -72470,7 +72659,7 @@ https://www.rfc1437.de/2004/04/01/thinkgraph-introduction/ - 2026-03-04T08:46:47.000Z + 2026-03-04T08:46:47.603Z monthly 0.8 @@ -72479,7 +72668,7 @@ https://www.rfc1437.de/2004/04/01/various-bits-of-software/ - 2026-03-04T08:46:53.000Z + 2026-03-04T08:46:53.333Z monthly 0.8 @@ -72488,7 +72677,7 @@ https://www.rfc1437.de/2004/04/01/wo-wir-doch-gerade-ueber-anfragen-an-firmen/ - 2026-03-04T08:46:58.000Z + 2026-03-04T08:46:58.854Z monthly 0.8 @@ -72497,7 +72686,7 @@ https://www.rfc1437.de/2004/03/31/eu-parlament-protestiert-gegen-flugdaten-transfair/ - 2026-03-04T08:47:05.000Z + 2026-03-04T08:47:05.879Z monthly 0.8 @@ -72506,7 +72695,7 @@ https://www.rfc1437.de/2004/03/31/garzweiler-ii-neuer-streit-um-obstwiese/ - 2026-03-04T08:47:12.000Z + 2026-03-04T08:47:12.313Z monthly 0.8 @@ -72515,7 +72704,7 @@ https://www.rfc1437.de/2004/03/31/macwarriors-trailblazer/ - 2026-03-04T08:47:16.000Z + 2026-03-04T08:47:16.692Z monthly 0.8 @@ -72524,7 +72713,7 @@ https://www.rfc1437.de/2004/03/31/sco-vs-linux-ibm-sieht-copyright-verletzungn-m-wrk/ - 2026-03-04T08:47:22.000Z + 2026-03-04T08:47:22.395Z monthly 0.8 @@ -72533,7 +72722,7 @@ https://www.rfc1437.de/2004/03/31/teen-arrested-for-sexually-abusing-herself/ - 2026-03-04T08:47:30.000Z + 2026-03-04T08:47:30.302Z monthly 0.8 @@ -72542,7 +72731,7 @@ https://www.rfc1437.de/2004/03/31/tp-windenergie-hat-zukunft/ - 2026-03-04T08:47:35.000Z + 2026-03-04T08:47:35.353Z monthly 0.8 @@ -72551,7 +72740,7 @@ https://www.rfc1437.de/2004/03/31/translucent-inter-process-service-migration/ - 2026-03-04T08:47:41.000Z + 2026-03-04T08:47:41.312Z monthly 0.8 @@ -72560,7 +72749,7 @@ https://www.rfc1437.de/2004/03/31/wurm-witty-sicherheitspatch-nur-gegen-geld/ - 2026-03-04T08:47:48.000Z + 2026-03-04T08:47:48.465Z monthly 0.8 @@ -72569,7 +72758,7 @@ https://www.rfc1437.de/2004/03/30/bill-gates-in-10-jahren-sind-vl-wchtg-t-prblm-glst/ - 2026-03-04T08:47:56.000Z + 2026-03-04T08:47:56.746Z monthly 0.8 @@ -72578,7 +72767,7 @@ https://www.rfc1437.de/2004/03/30/fahrradfahren/ - 2026-03-04T08:48:03.000Z + 2026-03-04T08:48:03.745Z monthly 0.8 @@ -72587,7 +72776,7 @@ https://www.rfc1437.de/2004/03/30/musikindustrie-klagt-tauschboersen-user-an/ - 2026-03-04T08:48:11.000Z + 2026-03-04T08:48:11.072Z monthly 0.8 @@ -72596,7 +72785,7 @@ https://www.rfc1437.de/2004/03/30/pywx-python-for-aolserver/ - 2026-03-04T08:48:16.000Z + 2026-03-04T08:48:16.008Z monthly 0.8 @@ -72605,7 +72794,7 @@ https://www.rfc1437.de/2004/03/30/willkuer-des-justiz-senators-in-hamburg/ - 2026-03-04T08:48:22.000Z + 2026-03-04T08:48:22.645Z monthly 0.8 @@ -72614,7 +72803,7 @@ https://www.rfc1437.de/2004/03/29/ruettgers-fordert-private-zwangsrente-fuer-alle/ - 2026-03-04T08:48:29.000Z + 2026-03-04T08:48:29.110Z monthly 0.8 @@ -72623,7 +72812,7 @@ https://www.rfc1437.de/2004/03/28/buetikofer-clement-stellt-koalition-in-frage/ - 2026-03-04T08:48:36.000Z + 2026-03-04T08:48:36.448Z monthly 0.8 @@ -72632,7 +72821,7 @@ https://www.rfc1437.de/2004/03/28/duden-homepage/ - 2026-03-04T08:48:42.000Z + 2026-03-04T08:48:42.051Z monthly 0.8 @@ -72641,7 +72830,7 @@ https://www.rfc1437.de/2004/03/28/kapitalistenknecht/ - 2026-03-04T08:48:48.000Z + 2026-03-04T08:48:48.661Z monthly 0.8 @@ -72650,7 +72839,7 @@ https://www.rfc1437.de/2004/03/27/forschung-gegen-den-abmahnwahn/ - 2026-03-04T08:48:55.000Z + 2026-03-04T08:48:55.918Z monthly 0.8 @@ -72659,7 +72848,7 @@ https://www.rfc1437.de/2004/03/27/google-suche/ - 2026-03-04T08:49:01.000Z + 2026-03-04T08:49:01.759Z monthly 0.8 @@ -72668,7 +72857,7 @@ https://www.rfc1437.de/2004/03/27/prothon-2/ - 2026-03-04T08:49:06.000Z + 2026-03-04T08:49:06.647Z monthly 0.8 @@ -72677,7 +72866,7 @@ https://www.rfc1437.de/2004/03/26/dp-nowcom-news-epson-reveals-digital-rngfndr-scrts/ - 2026-03-04T08:49:12.000Z + 2026-03-04T08:49:12.444Z monthly 0.8 @@ -72686,7 +72875,7 @@ https://www.rfc1437.de/2004/03/26/ich-mag-debian/ - 2026-03-04T08:49:19.000Z + 2026-03-04T08:49:19.858Z monthly 0.8 @@ -72695,7 +72884,7 @@ https://www.rfc1437.de/2004/03/26/python-package-index-tutorial/ - 2026-03-04T08:49:24.000Z + 2026-03-04T08:49:24.496Z monthly 0.8 @@ -72704,7 +72893,7 @@ https://www.rfc1437.de/2004/03/26/sommerzeit/ - 2026-03-04T08:49:30.000Z + 2026-03-04T08:49:30.655Z monthly 0.8 @@ -72713,7 +72902,7 @@ https://www.rfc1437.de/2004/03/25/am-22-april/ - 2026-03-04T08:49:36.000Z + 2026-03-04T08:49:36.143Z monthly 0.8 @@ -72722,7 +72911,7 @@ https://www.rfc1437.de/2004/03/25/branchenverband-bitkom-moechte-privatkopie-bschffn/ - 2026-03-04T08:49:41.000Z + 2026-03-04T08:49:41.826Z monthly 0.8 @@ -72731,7 +72920,7 @@ https://www.rfc1437.de/2004/03/25/index-of-vorlon-d-i-xfs/ - 2026-03-04T08:49:46.000Z + 2026-03-04T08:49:46.614Z monthly 0.8 @@ -72740,7 +72929,7 @@ https://www.rfc1437.de/2004/03/25/leben-ausser-kontrolle/ - 2026-03-04T08:49:53.000Z + 2026-03-04T08:49:53.624Z monthly 0.8 @@ -72749,7 +72938,7 @@ https://www.rfc1437.de/2004/03/25/nerd-orgasmus/ - 2026-03-04T08:49:59.000Z + 2026-03-04T08:49:59.171Z monthly 0.8 @@ -72758,7 +72947,7 @@ https://www.rfc1437.de/2004/03/25/schroeder-mit-reformkurs-zufrieden/ - 2026-03-04T08:50:04.000Z + 2026-03-04T08:50:04.579Z monthly 0.8 @@ -72767,7 +72956,7 @@ https://www.rfc1437.de/2004/03/25/static-type-inference-for-python-with-starkiller/ - 2026-03-04T08:50:09.000Z + 2026-03-04T08:50:09.514Z monthly 0.8 @@ -72776,7 +72965,7 @@ https://www.rfc1437.de/2004/03/25/telekom-vorstand-josef-branr-trtt-wgn-mt-dbkl-zrck/ - 2026-03-04T08:50:13.000Z + 2026-03-04T08:50:13.449Z monthly 0.8 @@ -72785,7 +72974,7 @@ https://www.rfc1437.de/2004/03/25/the-guardian-hammers-rss/ - 2026-03-04T08:50:18.000Z + 2026-03-04T08:50:18.153Z monthly 0.8 @@ -72794,7 +72983,7 @@ https://www.rfc1437.de/2004/03/25/warnung-vor-totalem-ueberwachungsstaat/ - 2026-03-04T08:50:23.000Z + 2026-03-04T08:50:23.374Z monthly 0.8 @@ -72803,7 +72992,7 @@ https://www.rfc1437.de/2004/03/24/der-herr-der-grids/ - 2026-03-04T08:50:28.000Z + 2026-03-04T08:50:28.042Z monthly 0.8 @@ -72812,7 +73001,7 @@ https://www.rfc1437.de/2004/03/24/microsft-ntschdng-dr-kmmssn-ncht-m-snn-dr-vrbrchr/ - 2026-03-04T08:50:32.000Z + 2026-03-04T08:50:32.269Z monthly 0.8 @@ -72821,7 +73010,7 @@ https://www.rfc1437.de/2004/03/24/neun-krankenkassen-senken-die-beitragssaetze/ - 2026-03-04T08:50:38.000Z + 2026-03-04T08:50:38.277Z monthly 0.8 @@ -72830,7 +73019,7 @@ https://www.rfc1437.de/2004/03/24/realnetworks-ceo-pushes-apple-to-open-ipod/ - 2026-03-04T08:50:43.000Z + 2026-03-04T08:50:43.541Z monthly 0.8 @@ -72839,7 +73028,7 @@ https://www.rfc1437.de/2004/03/24/ron-sommer-und-die-wahltaktik/ - 2026-03-04T08:50:48.000Z + 2026-03-04T08:50:48.815Z monthly 0.8 @@ -72848,7 +73037,7 @@ https://www.rfc1437.de/2004/03/24/telekom-senkt-wochenarbeitszeit-auf-34-stunden/ - 2026-03-04T08:50:53.000Z + 2026-03-04T08:50:53.418Z monthly 0.8 @@ -72857,7 +73046,7 @@ https://www.rfc1437.de/2004/03/23/fahrkartenschalter-bald-nur-noch-in-staedten/ - 2026-03-04T08:50:58.000Z + 2026-03-04T08:50:58.526Z monthly 0.8 @@ -72866,7 +73055,7 @@ https://www.rfc1437.de/2004/03/23/freibier-macht-buergermeisterwahl-ungueltig/ - 2026-03-04T08:51:03.000Z + 2026-03-04T08:51:03.677Z monthly 0.8 @@ -72875,7 +73064,7 @@ https://www.rfc1437.de/2004/03/23/loaf/ - 2026-03-04T08:51:06.000Z + 2026-03-04T08:51:06.899Z monthly 0.8 @@ -72884,7 +73073,7 @@ https://www.rfc1437.de/2004/03/23/xmlmind-xml-editor-xmlmind-xml-editor/ - 2026-03-04T08:51:10.000Z + 2026-03-04T08:51:10.505Z monthly 0.8 @@ -72893,7 +73082,7 @@ https://www.rfc1437.de/2004/03/22/beleidigte-duennbrettbohrer/ - 2026-03-04T08:51:15.000Z + 2026-03-04T08:51:15.199Z monthly 0.8 @@ -72902,7 +73091,7 @@ https://www.rfc1437.de/2004/03/22/der-11-september-haette-verhindert-werden-koennen/ - 2026-03-04T08:51:19.000Z + 2026-03-04T08:51:19.773Z monthly 0.8 @@ -72911,7 +73100,7 @@ https://www.rfc1437.de/2004/03/22/eu-fordert-rekordstrafe-von-microsoft/ - 2026-03-04T08:51:24.000Z + 2026-03-04T08:51:24.855Z monthly 0.8 @@ -72920,7 +73109,7 @@ https://www.rfc1437.de/2004/03/22/israel-toetet-hamas-fuehrer-jassin/ - 2026-03-04T08:51:29.000Z + 2026-03-04T08:51:29.981Z monthly 0.8 @@ -72929,7 +73118,7 @@ https://www.rfc1437.de/2004/03/22/kopfbaelle-machen-bloed/ - 2026-03-04T08:51:34.000Z + 2026-03-04T08:51:34.620Z monthly 0.8 @@ -72938,7 +73127,7 @@ https://www.rfc1437.de/2004/03/22/movabletype-wie-windows/ - 2026-03-04T08:51:38.000Z + 2026-03-04T08:51:38.968Z monthly 0.8 @@ -72947,7 +73136,7 @@ https://www.rfc1437.de/2004/03/22/spamassassin-custom-rule-emporium/ - 2026-03-04T08:51:42.000Z + 2026-03-04T08:51:42.618Z monthly 0.8 @@ -72956,7 +73145,7 @@ https://www.rfc1437.de/2004/03/22/spd-plant-anti-spam-gesetz/ - 2026-03-04T08:51:47.000Z + 2026-03-04T08:51:47.261Z monthly 0.8 @@ -72965,7 +73154,7 @@ https://www.rfc1437.de/2004/03/22/tp-matsushita-ist-eine-schfirma/ - 2026-03-04T08:51:51.000Z + 2026-03-04T08:51:51.862Z monthly 0.8 @@ -72974,7 +73163,7 @@ https://www.rfc1437.de/2004/03/21/digital-camera-battery-manufacturers-of-the-most/ - 2026-03-04T08:51:55.000Z + 2026-03-04T08:51:55.457Z monthly 0.8 @@ -72983,7 +73172,7 @@ https://www.rfc1437.de/2004/03/21/dihk-chef-raet-zur-produktion-im-ausland/ - 2026-03-04T08:52:00.000Z + 2026-03-04T08:52:00.047Z monthly 0.8 @@ -72992,7 +73181,7 @@ https://www.rfc1437.de/2004/03/21/eisbaer-der-1998/ - 2026-03-04T08:52:04.000Z + 2026-03-04T08:52:04.117Z monthly 0.8 @@ -73001,7 +73190,7 @@ https://www.rfc1437.de/2004/03/21/mehr-ueberwachung-gewuenscht/ - 2026-03-04T08:52:09.000Z + 2026-03-04T08:52:09.159Z monthly 0.8 @@ -73010,7 +73199,7 @@ https://www.rfc1437.de/2004/03/21/peeron-robotics-invention-system-2-0-3804-1/ - 2026-03-04T08:52:13.000Z + 2026-03-04T08:52:13.215Z monthly 0.8 @@ -73019,7 +73208,7 @@ https://www.rfc1437.de/2004/03/21/schroeder-wir-halten-kurs/ - 2026-03-04T08:52:17.000Z + 2026-03-04T08:52:17.300Z monthly 0.8 @@ -73028,7 +73217,7 @@ https://www.rfc1437.de/2004/03/21/tuple-space/ - 2026-03-04T08:52:20.000Z + 2026-03-04T08:52:20.479Z monthly 0.8 @@ -73037,7 +73226,7 @@ https://www.rfc1437.de/2004/03/20/kleinkarierte-kritik-rechtliche-inkompetenz-ebay/ - 2026-03-04T08:52:24.000Z + 2026-03-04T08:52:24.613Z monthly 0.8 @@ -73046,7 +73235,7 @@ https://www.rfc1437.de/2004/03/19/bbc-news-sciencenature-ufo-streaks-throgh-mrtn-sky/ - 2026-03-04T08:52:28.000Z + 2026-03-04T08:52:28.221Z monthly 0.8 @@ -73055,7 +73244,7 @@ https://www.rfc1437.de/2004/03/19/deutsche-zope-user-group/ - 2026-03-04T08:52:32.000Z + 2026-03-04T08:52:32.390Z monthly 0.8 @@ -73064,7 +73253,7 @@ https://www.rfc1437.de/2004/03/19/erste-open-source-lizenz-made-for-germany/ - 2026-03-04T08:52:37.000Z + 2026-03-04T08:52:37.190Z monthly 0.8 @@ -73073,7 +73262,7 @@ https://www.rfc1437.de/2004/03/19/little-snitch/ - 2026-03-04T08:52:40.000Z + 2026-03-04T08:52:40.387Z monthly 0.8 @@ -73082,7 +73271,7 @@ https://www.rfc1437.de/2004/03/19/placenamehere-com-projects-pnhtoolbar/ - 2026-03-04T08:52:43.000Z + 2026-03-04T08:52:43.963Z monthly 0.8 @@ -73091,7 +73280,7 @@ https://www.rfc1437.de/2004/03/18/10-aus-1350/ - 2026-03-04T08:52:49.000Z + 2026-03-04T08:52:49.073Z monthly 0.8 @@ -73100,7 +73289,7 @@ https://www.rfc1437.de/2004/03/18/pic-verschlusssache/ - 2026-03-04T08:52:53.000Z + 2026-03-04T08:52:53.120Z monthly 0.8 @@ -73109,7 +73298,7 @@ https://www.rfc1437.de/2004/03/18/pic-zweisamkeit/ - 2026-03-04T08:52:57.000Z + 2026-03-04T08:52:57.226Z monthly 0.8 @@ -73118,7 +73307,7 @@ https://www.rfc1437.de/2004/03/18/verschlusssache/ - 2026-03-04T08:53:00.000Z + 2026-03-04T08:53:00.894Z monthly 0.8 @@ -73127,7 +73316,7 @@ https://www.rfc1437.de/2004/03/18/zweisamkeit/ - 2026-03-04T08:53:04.000Z + 2026-03-04T08:53:04.502Z monthly 0.8 @@ -73136,7 +73325,7 @@ https://www.rfc1437.de/2004/03/17/apple-stellt-spoken-interface-vor/ - 2026-03-04T08:53:09.000Z + 2026-03-04T08:53:09.060Z monthly 0.8 @@ -73145,7 +73334,7 @@ https://www.rfc1437.de/2004/03/17/nochmal-zu-sorbs/ - 2026-03-04T08:53:15.000Z + 2026-03-04T08:53:15.003Z monthly 0.8 @@ -73154,7 +73343,7 @@ https://www.rfc1437.de/2004/03/16/amiga-inc-ohne-amigaos/ - 2026-03-04T08:53:19.000Z + 2026-03-04T08:53:19.118Z monthly 0.8 @@ -73163,7 +73352,7 @@ https://www.rfc1437.de/2004/03/16/der-erlrouter/ - 2026-03-04T08:53:23.000Z + 2026-03-04T08:53:23.790Z monthly 0.8 @@ -73172,7 +73361,7 @@ https://www.rfc1437.de/2004/03/16/leica-digilux-2-review-part-two/ - 2026-03-04T08:53:28.000Z + 2026-03-04T08:53:28.353Z monthly 0.8 @@ -73181,7 +73370,7 @@ https://www.rfc1437.de/2004/03/15/astronomen-entdecken-planet-sedna/ - 2026-03-04T08:53:32.000Z + 2026-03-04T08:53:32.499Z monthly 0.8 @@ -73190,7 +73379,7 @@ https://www.rfc1437.de/2004/03/15/chinesen-enttaeuscht-grosse-mauer-ganz-klein/ - 2026-03-04T08:53:37.000Z + 2026-03-04T08:53:37.408Z monthly 0.8 @@ -73199,7 +73388,7 @@ https://www.rfc1437.de/2004/03/15/freenet-ag-abmahnungen-statt-websperren/ - 2026-03-04T08:53:42.000Z + 2026-03-04T08:53:42.059Z monthly 0.8 @@ -73208,7 +73397,7 @@ https://www.rfc1437.de/2004/03/15/graphicconverter-50-delivers-dozens-of-new-featurs/ - 2026-03-04T08:53:46.000Z + 2026-03-04T08:53:46.617Z monthly 0.8 @@ -73217,7 +73406,7 @@ https://www.rfc1437.de/2004/03/15/korruptionsverdacht-bei-der-bahn/ - 2026-03-04T08:53:51.000Z + 2026-03-04T08:53:51.452Z monthly 0.8 @@ -73226,7 +73415,7 @@ https://www.rfc1437.de/2004/03/15/machtwechsel-in-spanien/ - 2026-03-04T08:53:56.000Z + 2026-03-04T08:53:56.020Z monthly 0.8 @@ -73235,7 +73424,7 @@ https://www.rfc1437.de/2004/03/15/mysql-und-die-lizenzen/ - 2026-03-04T08:54:00.000Z + 2026-03-04T08:54:00.681Z monthly 0.8 @@ -73244,7 +73433,7 @@ https://www.rfc1437.de/2004/03/15/pyprotocols/ - 2026-03-04T08:54:03.000Z + 2026-03-04T08:54:03.820Z monthly 0.8 @@ -73253,7 +73442,7 @@ https://www.rfc1437.de/2004/03/15/vitamine-gegen-krebs-anzeige-erstattet/ - 2026-03-04T08:54:08.000Z + 2026-03-04T08:54:08.436Z monthly 0.8 @@ -73262,7 +73451,7 @@ https://www.rfc1437.de/2004/03/14/fruehling-bahnt-sich-an/ - 2026-03-04T08:54:12.000Z + 2026-03-04T08:54:12.083Z monthly 0.8 @@ -73271,7 +73460,7 @@ https://www.rfc1437.de/2004/03/14/isaviz-overview/ - 2026-03-04T08:54:15.000Z + 2026-03-04T08:54:15.705Z monthly 0.8 @@ -73280,7 +73469,7 @@ https://www.rfc1437.de/2004/03/14/pic-is-jetzt-fruehling-oder-was/ - 2026-03-04T08:54:20.000Z + 2026-03-04T08:54:20.373Z monthly 0.8 @@ -73289,7 +73478,7 @@ https://www.rfc1437.de/2004/03/14/unruhe-in-union-nach-koehler-aeusserungen/ - 2026-03-04T08:54:25.000Z + 2026-03-04T08:54:25.410Z monthly 0.8 @@ -73298,7 +73487,7 @@ https://www.rfc1437.de/2004/03/14/vino-wins-another-as-jaksche-wraps-up-paris-nice/ - 2026-03-04T08:54:30.000Z + 2026-03-04T08:54:30.003Z monthly 0.8 @@ -73307,7 +73496,7 @@ https://www.rfc1437.de/2004/03/13/fluege-in-die-usa-nur-noch-als-glaeserner-passagir/ - 2026-03-04T08:54:35.000Z + 2026-03-04T08:54:35.084Z monthly 0.8 @@ -73316,7 +73505,7 @@ https://www.rfc1437.de/2004/03/13/myelin-feed-normalizer/ - 2026-03-04T08:54:39.000Z + 2026-03-04T08:54:39.842Z monthly 0.8 @@ -73325,7 +73514,7 @@ https://www.rfc1437.de/2004/03/12/franzoesin-wird-aussenministerin-georgiens/ - 2026-03-04T08:54:44.000Z + 2026-03-04T08:54:44.427Z monthly 0.8 @@ -73334,7 +73523,7 @@ https://www.rfc1437.de/2004/03/12/spd-verliert-zustimmung-in-nrw/ - 2026-03-04T08:54:49.000Z + 2026-03-04T08:54:49.541Z monthly 0.8 @@ -73343,7 +73532,7 @@ https://www.rfc1437.de/2004/03/12/ziel-erreicht/ - 2026-03-04T08:54:54.000Z + 2026-03-04T08:54:54.300Z monthly 0.8 @@ -73352,7 +73541,7 @@ https://www.rfc1437.de/2004/03/11/1103-1817-impressum/ - 2026-03-04T08:54:58.000Z + 2026-03-04T08:54:58.373Z monthly 0.8 @@ -73361,7 +73550,7 @@ https://www.rfc1437.de/2004/03/11/a-busy-developers-guide-to-wsdl-1-1/ - 2026-03-04T08:55:02.000Z + 2026-03-04T08:55:02.553Z monthly 0.8 @@ -73370,7 +73559,7 @@ https://www.rfc1437.de/2004/03/11/affrus-10/ - 2026-03-04T08:55:07.000Z + 2026-03-04T08:55:07.110Z monthly 0.8 @@ -73379,7 +73568,7 @@ https://www.rfc1437.de/2004/03/11/eizell-dogma-widerlegt/ - 2026-03-04T08:55:11.000Z + 2026-03-04T08:55:11.439Z monthly 0.8 @@ -73388,7 +73577,7 @@ https://www.rfc1437.de/2004/03/11/epson-r-d1-digital-rangefinder-camera/ - 2026-03-04T08:55:16.000Z + 2026-03-04T08:55:16.992Z monthly 0.8 @@ -73397,7 +73586,7 @@ https://www.rfc1437.de/2004/03/11/eudora-spyware/ - 2026-03-04T08:55:22.000Z + 2026-03-04T08:55:22.320Z monthly 0.8 @@ -73406,7 +73595,7 @@ https://www.rfc1437.de/2004/03/11/generic-soap-client/ - 2026-03-04T08:55:26.000Z + 2026-03-04T08:55:26.041Z monthly 0.8 @@ -73415,7 +73604,7 @@ https://www.rfc1437.de/2004/03/11/hakenwuermer-gegen-allergien/ - 2026-03-04T08:55:32.000Z + 2026-03-04T08:55:32.443Z monthly 0.8 @@ -73424,7 +73613,7 @@ https://www.rfc1437.de/2004/03/11/lython-lisp-for-python-2/ - 2026-03-04T08:55:36.000Z + 2026-03-04T08:55:36.399Z monthly 0.8 @@ -73433,7 +73622,7 @@ https://www.rfc1437.de/2004/03/11/microsoft-stuft-outlook-loch-als-kritisch-ein/ - 2026-03-04T08:55:42.000Z + 2026-03-04T08:55:42.421Z monthly 0.8 @@ -73442,7 +73631,7 @@ https://www.rfc1437.de/2004/03/11/neue-grossspende-moellemanns-aufgetaucht/ - 2026-03-04T08:55:47.000Z + 2026-03-04T08:55:47.183Z monthly 0.8 @@ -73451,7 +73640,7 @@ https://www.rfc1437.de/2004/03/11/paul-nevai-s-paulcomputing-www-paulcomputing-com/ - 2026-03-04T08:55:51.000Z + 2026-03-04T08:55:51.483Z monthly 0.8 @@ -73460,7 +73649,7 @@ https://www.rfc1437.de/2004/03/11/rus-cert-warnt-vor-mozilla/ - 2026-03-04T08:55:56.000Z + 2026-03-04T08:55:56.314Z monthly 0.8 @@ -73469,7 +73658,7 @@ https://www.rfc1437.de/2004/03/11/was-ich-so-an-tools-benutze/ - 2026-03-04T08:56:01.000Z + 2026-03-04T08:56:01.730Z monthly 0.8 @@ -73478,7 +73667,7 @@ https://www.rfc1437.de/2004/03/10/ab-2005-abi-nach-zwoelf-jahren/ - 2026-03-04T08:56:06.000Z + 2026-03-04T08:56:06.494Z monthly 0.8 @@ -73487,7 +73676,7 @@ https://www.rfc1437.de/2004/03/10/die-dialer-abzocker-machen-weiter/ - 2026-03-04T08:56:12.000Z + 2026-03-04T08:56:12.337Z monthly 0.8 @@ -73496,7 +73685,7 @@ https://www.rfc1437.de/2004/03/10/oracle/ - 2026-03-07T21:18:12.000Z + 2026-03-07T21:18:12.742Z monthly 0.8 @@ -73505,7 +73694,7 @@ https://www.rfc1437.de/2004/03/10/telekom-chef-ricke-personal-wird-weiter-abgebaut/ - 2026-03-04T08:56:23.000Z + 2026-03-04T08:56:23.674Z monthly 0.8 @@ -73514,7 +73703,7 @@ https://www.rfc1437.de/2004/03/10/textil-kette-boecker-ist-pleite/ - 2026-03-04T08:56:28.000Z + 2026-03-04T08:56:28.988Z monthly 0.8 @@ -73523,7 +73712,7 @@ https://www.rfc1437.de/2004/03/09/divmod-org-home-projects-quotient/ - 2026-03-04T08:56:33.000Z + 2026-03-04T08:56:33.277Z monthly 0.8 @@ -73532,7 +73721,7 @@ https://www.rfc1437.de/2004/03/08/digilux-2-review-part-1/ - 2026-03-04T08:56:38.000Z + 2026-03-04T08:56:38.958Z monthly 0.8 @@ -73541,7 +73730,7 @@ https://www.rfc1437.de/2004/03/08/emmanuel-renieris-s-software-page/ - 2026-03-04T08:56:43.000Z + 2026-03-04T08:56:43.120Z monthly 0.8 @@ -73550,7 +73739,7 @@ https://www.rfc1437.de/2004/03/08/falschmuenzer-im-wilden-domain-westen/ - 2026-03-04T08:56:48.000Z + 2026-03-04T08:56:48.501Z monthly 0.8 @@ -73559,7 +73748,7 @@ https://www.rfc1437.de/2004/03/08/fdp-muss-europaparteitag-neu-abhalten/ - 2026-03-04T08:56:54.000Z + 2026-03-04T08:56:54.414Z monthly 0.8 @@ -73568,7 +73757,7 @@ https://www.rfc1437.de/2004/03/08/gnutellavision-intro/ - 2026-03-04T08:56:58.000Z + 2026-03-04T08:56:58.597Z monthly 0.8 @@ -73577,7 +73766,7 @@ https://www.rfc1437.de/2004/03/08/graphviz/ - 2026-03-04T08:57:01.000Z + 2026-03-04T08:57:01.961Z monthly 0.8 @@ -73586,7 +73775,7 @@ https://www.rfc1437.de/2004/03/08/macnqc/ - 2026-03-04T08:57:05.000Z + 2026-03-04T08:57:05.211Z monthly 0.8 @@ -73595,7 +73784,7 @@ https://www.rfc1437.de/2004/03/08/mfgraph-library-homepage/ - 2026-03-04T08:57:08.000Z + 2026-03-04T08:57:08.846Z monthly 0.8 @@ -73604,7 +73793,7 @@ https://www.rfc1437.de/2004/03/08/my-blogging-space-eine-meme/ - 2026-03-04T08:57:14.000Z + 2026-03-04T08:57:14.729Z monthly 0.8 @@ -73613,7 +73802,7 @@ https://www.rfc1437.de/2004/03/08/parser-sig-sig-on-parser-generation-for-python/ - 2026-03-07T21:18:14.000Z + 2026-03-07T21:18:14.352Z monthly 0.8 @@ -73622,7 +73811,7 @@ https://www.rfc1437.de/2004/03/08/pic-hamburg-hauptbahnhof-nord-u2/ - 2026-03-04T08:57:23.000Z + 2026-03-04T08:57:23.103Z monthly 0.8 @@ -73631,7 +73820,7 @@ https://www.rfc1437.de/2004/03/08/pic-my-bloggingspace/ - 2026-03-04T08:57:27.000Z + 2026-03-04T08:57:27.259Z monthly 0.8 @@ -73640,7 +73829,7 @@ https://www.rfc1437.de/2004/03/08/pyparsing-a-class-library-for-text-processing-in/ - 2026-03-07T21:18:15.000Z + 2026-03-07T21:18:15.922Z monthly 0.8 @@ -73649,7 +73838,7 @@ https://www.rfc1437.de/2004/03/08/scalable-vector-graphics-svg-1-1-specification/ - 2026-03-04T08:57:34.000Z + 2026-03-04T08:57:34.662Z monthly 0.8 @@ -73658,7 +73847,7 @@ https://www.rfc1437.de/2004/03/08/tams-home-page/ - 2026-03-04T08:57:38.000Z + 2026-03-04T08:57:38.191Z monthly 0.8 @@ -73667,7 +73856,7 @@ https://www.rfc1437.de/2004/03/08/wave-3-0-web-accessibility-versatile-evaluator/ - 2026-03-04T08:57:41.000Z + 2026-03-04T08:57:41.833Z monthly 0.8 @@ -73676,7 +73865,7 @@ https://www.rfc1437.de/2004/03/08/worms-wechselt-von-sendmail-zu-microsoft-exchange/ - 2026-03-04T08:57:46.000Z + 2026-03-04T08:57:46.984Z monthly 0.8 @@ -73685,7 +73874,7 @@ https://www.rfc1437.de/2004/03/06/bhnbrchnds-rtl-bgh-bndt-dn-dlr-whnsnn-ntzwlt-spgl/ - 2026-03-04T08:57:51.000Z + 2026-03-04T08:57:51.263Z monthly 0.8 @@ -73694,7 +73883,7 @@ https://www.rfc1437.de/2004/03/06/heutet-onlinede-nn-wll-ffnbr-trf-nd-rbtsrcht-lckrn/ - 2026-03-04T08:57:56.000Z + 2026-03-04T08:57:56.096Z monthly 0.8 @@ -73703,7 +73892,7 @@ https://www.rfc1437.de/2004/03/06/linux-magazin-cups/ - 2026-03-04T08:57:59.000Z + 2026-03-04T08:57:59.784Z monthly 0.8 @@ -73712,7 +73901,7 @@ https://www.rfc1437.de/2004/03/06/lwn-the-gpl-is-a-license-not-a-contract/ - 2026-03-04T08:58:04.000Z + 2026-03-04T08:58:04.417Z monthly 0.8 @@ -73721,7 +73910,7 @@ https://www.rfc1437.de/2004/03/06/rollei-minidigi-tlr-digicam/ - 2026-03-04T08:58:09.000Z + 2026-03-04T08:58:09.146Z monthly 0.8 @@ -73730,7 +73919,7 @@ https://www.rfc1437.de/2004/03/05/jaguar-langsam-beim-kontextmenue/ - 2026-03-04T08:58:13.000Z + 2026-03-04T08:58:13.767Z monthly 0.8 @@ -73739,7 +73928,7 @@ https://www.rfc1437.de/2004/03/05/open-source-initiative-osi-doc10halloween-documnts/ - 2026-03-04T08:58:17.000Z + 2026-03-04T08:58:17.556Z monthly 0.8 @@ -73748,7 +73937,7 @@ https://www.rfc1437.de/2004/03/05/python-module-inspect/ - 2026-03-07T21:18:17.000Z + 2026-03-07T21:18:17.284Z monthly 0.8 @@ -73757,7 +73946,7 @@ https://www.rfc1437.de/2004/03/05/was-die-bild-zeitung-kann-das-koennen-wir-auch/ - 2026-03-04T08:58:25.000Z + 2026-03-04T08:58:25.917Z monthly 0.8 @@ -73766,7 +73955,7 @@ https://www.rfc1437.de/2004/03/04/canto-digital-asset-managmnt-wth-cmls-prdcts-srvcs/ - 2026-03-04T08:58:31.000Z + 2026-03-04T08:58:31.493Z monthly 0.8 @@ -73775,7 +73964,7 @@ https://www.rfc1437.de/2004/03/04/delirium-das-die-zeilen-fuellt/ - 2026-03-04T08:58:36.000Z + 2026-03-04T08:58:36.766Z monthly 0.8 @@ -73784,7 +73973,7 @@ https://www.rfc1437.de/2004/03/04/extensis-portfolio-digital-asset-management/ - 2026-03-04T08:58:41.000Z + 2026-03-04T08:58:41.384Z monthly 0.8 @@ -73793,7 +73982,7 @@ https://www.rfc1437.de/2004/03/04/groklaw-deadline-fuer-sco/ - 2026-03-04T08:58:45.000Z + 2026-03-04T08:58:45.947Z monthly 0.8 @@ -73802,7 +73991,7 @@ https://www.rfc1437.de/2004/03/04/ihmc-cmaptools-concept-mapping-software-toolkit/ - 2026-03-04T08:58:49.000Z + 2026-03-04T08:58:49.245Z monthly 0.8 @@ -73811,7 +74000,7 @@ https://www.rfc1437.de/2004/03/04/kein-xxl-mehr-bei-mcdonalds/ - 2026-03-04T08:58:54.000Z + 2026-03-04T08:58:54.276Z monthly 0.8 @@ -73820,7 +74009,7 @@ https://www.rfc1437.de/2004/03/04/mod-pubsub-blog/ - 2026-03-04T08:58:57.000Z + 2026-03-04T08:58:57.550Z monthly 0.8 @@ -73829,7 +74018,7 @@ https://www.rfc1437.de/2004/03/04/philips-fluid-lenses/ - 2026-03-04T08:59:01.000Z + 2026-03-04T08:59:01.713Z monthly 0.8 @@ -73838,7 +74027,7 @@ https://www.rfc1437.de/2004/03/04/pnlchs-gstndns-cc-cl-vrkft-ltngswssr-wrtschft-spgl/ - 2026-03-04T08:59:06.000Z + 2026-03-04T08:59:06.255Z monthly 0.8 @@ -73847,7 +74036,7 @@ https://www.rfc1437.de/2004/03/04/pytable-rdbms-middleware/ - 2026-03-04T08:59:09.000Z + 2026-03-04T08:59:09.497Z monthly 0.8 @@ -73856,7 +74045,7 @@ https://www.rfc1437.de/2004/03/04/rfc-subscriptions-harmonizer/ - 2026-03-04T08:59:13.000Z + 2026-03-04T08:59:13.147Z monthly 0.8 @@ -73865,7 +74054,7 @@ https://www.rfc1437.de/2004/03/04/sehr-geehrter-herr-bundesstaatsanwalt/ - 2026-03-04T08:59:17.000Z + 2026-03-04T08:59:17.776Z monthly 0.8 @@ -73874,7 +74063,7 @@ https://www.rfc1437.de/2004/03/04/sorbs-mal-wieder-eine-dumme-implementation-von-rbl/ - 2026-03-04T08:59:22.000Z + 2026-03-04T08:59:22.779Z monthly 0.8 @@ -73883,7 +74072,7 @@ https://www.rfc1437.de/2004/03/04/vulkanausbruch-auf-montserrat/ - 2026-03-04T08:59:26.000Z + 2026-03-04T08:59:26.865Z monthly 0.8 @@ -73892,7 +74081,7 @@ https://www.rfc1437.de/2004/03/04/welcome-page/ - 2026-03-04T08:59:30.000Z + 2026-03-04T08:59:30.107Z monthly 0.8 @@ -73901,7 +74090,7 @@ https://www.rfc1437.de/2004/03/03/cacheability-engine/ - 2026-03-04T08:59:33.000Z + 2026-03-04T08:59:33.329Z monthly 0.8 @@ -73910,7 +74099,7 @@ https://www.rfc1437.de/2004/03/03/ct-aktuell-lauschangrff-vrmsslt-tlsg-fr-d-brgrrcht/ - 2026-03-04T08:59:39.000Z + 2026-03-04T08:59:39.126Z monthly 0.8 @@ -73919,7 +74108,7 @@ https://www.rfc1437.de/2004/03/03/grosser-lauschangriff-verfassungswidrig/ - 2026-03-04T08:59:43.000Z + 2026-03-04T08:59:43.199Z monthly 0.8 @@ -73928,7 +74117,7 @@ https://www.rfc1437.de/2004/03/03/iphoto-mailer-patcher/ - 2026-03-04T08:59:46.000Z + 2026-03-04T08:59:46.883Z monthly 0.8 @@ -73937,7 +74126,7 @@ https://www.rfc1437.de/2004/03/03/iview-media-management-made-easy/ - 2026-03-04T08:59:51.000Z + 2026-03-04T08:59:51.720Z monthly 0.8 @@ -73946,7 +74135,7 @@ https://www.rfc1437.de/2004/03/03/schroeder-redet-nicht-mehr-mit-der-bild/ - 2026-03-04T08:59:56.000Z + 2026-03-04T08:59:56.381Z monthly 0.8 @@ -73955,7 +74144,7 @@ https://www.rfc1437.de/2004/03/03/sco-vs-linux-sco-verklagt-attl-hndlr-wgn-lnx-ntzng/ - 2026-03-04T09:00:00.000Z + 2026-03-04T09:00:00.612Z monthly 0.8 @@ -73964,7 +74153,7 @@ https://www.rfc1437.de/2004/03/03/writing-plugins-2/ - 2026-03-04T09:00:04.000Z + 2026-03-04T09:00:04.180Z monthly 0.8 @@ -73973,7 +74162,7 @@ https://www.rfc1437.de/2004/03/02/auf-dem-mars-soll-es-wasser-gegeben-haben/ - 2026-03-04T09:00:08.000Z + 2026-03-04T09:00:08.853Z monthly 0.8 @@ -73982,7 +74171,7 @@ https://www.rfc1437.de/2004/03/02/browser-oder-binaerer-schrotthaufen/ - 2026-03-04T09:00:13.000Z + 2026-03-04T09:00:13.424Z monthly 0.8 @@ -73991,7 +74180,7 @@ https://www.rfc1437.de/2004/03/02/kein-interesse-an-kritischen-verbrauchern/ - 2026-03-04T09:00:18.000Z + 2026-03-04T09:00:18.084Z monthly 0.8 @@ -74000,7 +74189,7 @@ https://www.rfc1437.de/2004/03/02/track-or-back/ - 2026-03-04T09:00:25.000Z + 2026-03-04T09:00:25.674Z monthly 0.8 @@ -74009,7 +74198,7 @@ https://www.rfc1437.de/2004/03/02/was-man-so-in-logfiles-findet/ - 2026-03-04T09:00:31.000Z + 2026-03-04T09:00:31.225Z monthly 0.8 @@ -74018,7 +74207,7 @@ https://www.rfc1437.de/2004/03/01/elspy-exim-local-scan-with-python/ - 2026-03-04T09:00:35.000Z + 2026-03-04T09:00:35.038Z monthly 0.8 @@ -74027,7 +74216,7 @@ https://www.rfc1437.de/2004/03/01/gentium-linux/ - 2026-03-04T09:00:39.000Z + 2026-03-04T09:00:39.189Z monthly 0.8 @@ -74036,7 +74225,7 @@ https://www.rfc1437.de/2004/03/01/neuer-netsky-wurm-verbreitet-sich-schnell/ - 2026-03-04T09:00:44.000Z + 2026-03-04T09:00:44.169Z monthly 0.8 @@ -74045,7 +74234,7 @@ https://www.rfc1437.de/2004/03/01/nln-jbbrs-b-chf-ws-sll-vn-kstnxplsn-gwsst-hbn-cmpt/ - 2026-03-04T09:00:49.000Z + 2026-03-04T09:00:49.440Z monthly 0.8 @@ -74054,7 +74243,7 @@ https://www.rfc1437.de/2004/03/01/scan-incoming-mail-with-python/ - 2026-03-04T09:00:53.000Z + 2026-03-04T09:00:53.133Z monthly 0.8 @@ -74063,7 +74252,7 @@ https://www.rfc1437.de/2004/02/29/die-japanischen-schriftzeichen/ - 2026-03-04T09:00:56.000Z + 2026-03-04T09:00:56.894Z monthly 0.8 @@ -74072,7 +74261,7 @@ https://www.rfc1437.de/2004/02/29/die-welt-der-sprache-die-sprachen-der-welt/ - 2026-03-04T09:01:00.000Z + 2026-03-04T09:01:00.744Z monthly 0.8 @@ -74081,7 +74270,7 @@ https://www.rfc1437.de/2004/02/29/exotische-schriften-lernen-leicht-gemacht/ - 2026-03-04T09:01:04.000Z + 2026-03-04T09:01:04.529Z monthly 0.8 @@ -74090,7 +74279,7 @@ https://www.rfc1437.de/2004/02/29/ibeezz-com-home/ - 2026-03-04T09:01:08.000Z + 2026-03-04T09:01:08.369Z monthly 0.8 @@ -74099,7 +74288,7 @@ https://www.rfc1437.de/2004/02/29/ihr-weg-zu-unserer-abmahnung/ - 2026-03-04T09:01:13.000Z + 2026-03-04T09:01:13.594Z monthly 0.8 @@ -74108,7 +74297,7 @@ https://www.rfc1437.de/2004/02/29/isolierte-sprachen/ - 2026-03-04T09:01:16.000Z + 2026-03-04T09:01:16.876Z monthly 0.8 @@ -74117,7 +74306,7 @@ https://www.rfc1437.de/2004/02/29/teurer-spass/ - 2026-03-04T09:01:22.000Z + 2026-03-04T09:01:22.590Z monthly 0.8 @@ -74126,7 +74315,7 @@ https://www.rfc1437.de/2004/02/27/geschichten-aus-dem-leben-von-bild-autoren/ - 2026-03-04T09:01:27.000Z + 2026-03-04T09:01:27.300Z monthly 0.8 @@ -74135,7 +74324,7 @@ https://www.rfc1437.de/2004/02/27/groklaw-eben-moglens-antwort-auf-mcbrds-rd-n-hrvrd/ - 2026-03-04T09:01:32.000Z + 2026-03-04T09:01:32.112Z monthly 0.8 @@ -74144,7 +74333,7 @@ https://www.rfc1437.de/2004/02/27/heise-online-adorno-online-reemtsma-und-dr-hftbfhl/ - 2026-03-04T09:01:37.000Z + 2026-03-04T09:01:37.029Z monthly 0.8 @@ -74153,7 +74342,7 @@ https://www.rfc1437.de/2004/02/26/argumente-fuer-den-atheismus/ - 2026-03-04T09:01:42.000Z + 2026-03-04T09:01:42.178Z monthly 0.8 @@ -74162,7 +74351,7 @@ https://www.rfc1437.de/2004/02/26/dickes-ding/ - 2026-03-04T09:01:45.000Z + 2026-03-04T09:01:45.865Z monthly 0.8 @@ -74171,7 +74360,7 @@ https://www.rfc1437.de/2004/02/26/ex-cdu-schatzmeisterin-packt-aus/ - 2026-03-04T09:01:50.000Z + 2026-03-04T09:01:50.546Z monthly 0.8 @@ -74180,7 +74369,7 @@ https://www.rfc1437.de/2004/02/26/hiv-natuerlicher-abwehrstoff-entdeckt/ - 2026-03-04T09:01:54.000Z + 2026-03-04T09:01:54.667Z monthly 0.8 @@ -74189,7 +74378,7 @@ https://www.rfc1437.de/2004/02/26/ipod-volume-booster-german/ - 2026-03-04T09:01:58.000Z + 2026-03-04T09:01:58.355Z monthly 0.8 @@ -74198,7 +74387,7 @@ https://www.rfc1437.de/2004/02/26/news-microsoft-will-pager-patentieren/ - 2026-03-04T09:02:02.000Z + 2026-03-04T09:02:02.580Z monthly 0.8 @@ -74207,7 +74396,7 @@ https://www.rfc1437.de/2004/02/26/panorama-us-soldaten-schossen-auf-verwundete/ - 2026-03-04T09:02:07.000Z + 2026-03-04T09:02:07.189Z monthly 0.8 @@ -74216,7 +74405,7 @@ https://www.rfc1437.de/2004/02/26/sco-vs-linux-boykott-der-meinungsfreiheit/ - 2026-03-04T09:02:11.000Z + 2026-03-04T09:02:11.413Z monthly 0.8 @@ -74225,7 +74414,7 @@ https://www.rfc1437.de/2004/02/26/t-com-beschleunigt-t-dsl/ - 2026-03-04T09:02:16.000Z + 2026-03-04T09:02:16.450Z monthly 0.8 @@ -74234,7 +74423,7 @@ https://www.rfc1437.de/2004/02/25/microsofts-alleingang-im-anti-spam-kampf/ - 2026-03-04T09:02:21.000Z + 2026-03-04T09:02:21.540Z monthly 0.8 @@ -74243,7 +74432,7 @@ https://www.rfc1437.de/2004/02/25/pocketmac-ipod-call-toll-free-1-866-pock-mac/ - 2026-03-04T09:02:25.000Z + 2026-03-04T09:02:25.661Z monthly 0.8 @@ -74252,7 +74441,7 @@ https://www.rfc1437.de/2004/02/25/safari-extender-by-ricardo-batista/ - 2026-03-04T09:02:28.000Z + 2026-03-04T09:02:28.884Z monthly 0.8 @@ -74261,7 +74450,7 @@ https://www.rfc1437.de/2004/02/25/version-control-with-subversion/ - 2026-03-04T09:02:32.000Z + 2026-03-04T09:02:32.164Z monthly 0.8 @@ -74270,7 +74459,7 @@ https://www.rfc1437.de/2004/02/24/apple-rss-information-2/ - 2026-03-04T09:02:35.000Z + 2026-03-04T09:02:35.498Z monthly 0.8 @@ -74279,7 +74468,7 @@ https://www.rfc1437.de/2004/02/24/e-kmmssr-blkstn-stzt-sch-m-krtllvrfhrn-fr-mcrsft-n/ - 2026-03-04T09:02:41.000Z + 2026-03-04T09:02:41.269Z monthly 0.8 @@ -74288,7 +74477,7 @@ https://www.rfc1437.de/2004/02/23/briefmarke-fuer-e-mails/ - 2026-03-04T09:02:45.000Z + 2026-03-04T09:02:45.846Z monthly 0.8 @@ -74297,7 +74486,7 @@ https://www.rfc1437.de/2004/02/23/eu-rat-macht-sich-fuer-grenzenlose-softwrptnt-strk/ - 2026-03-04T09:02:50.000Z + 2026-03-04T09:02:50.625Z monthly 0.8 @@ -74306,7 +74495,7 @@ https://www.rfc1437.de/2004/02/23/ipoding-whats-that-in-your-pocket/ - 2026-03-04T09:02:55.000Z + 2026-03-04T09:02:55.652Z monthly 0.8 @@ -74315,7 +74504,7 @@ https://www.rfc1437.de/2004/02/23/luegen-grosse-luegen-und-statistiken/ - 2026-03-04T09:02:59.000Z + 2026-03-04T09:02:59.850Z monthly 0.8 @@ -74324,7 +74513,7 @@ https://www.rfc1437.de/2004/02/23/omniorb-python-bindings/ - 2026-03-04T09:03:03.000Z + 2026-03-04T09:03:03.510Z monthly 0.8 @@ -74333,7 +74522,7 @@ https://www.rfc1437.de/2004/02/23/postkunden-in-hamburg-vor-verschlossenen-tueren/ - 2026-03-04T09:03:08.000Z + 2026-03-04T09:03:08.159Z monthly 0.8 @@ -74342,7 +74531,7 @@ https://www.rfc1437.de/2004/02/22/aiplanet-weltsimulation-unter-windows/ - 2026-03-04T09:03:12.000Z + 2026-03-04T09:03:12.286Z monthly 0.8 @@ -74351,7 +74540,7 @@ https://www.rfc1437.de/2004/02/22/ard-und-zdf-kuendigen-vertrag-mit-kabel-deutschlnd/ - 2026-03-04T09:03:17.000Z + 2026-03-04T09:03:17.412Z monthly 0.8 @@ -74360,7 +74549,7 @@ https://www.rfc1437.de/2004/02/22/eine-weltmacht-nicht-ganz-von-dieser-welt/ - 2026-03-04T09:03:22.000Z + 2026-03-04T09:03:22.995Z monthly 0.8 @@ -74369,7 +74558,7 @@ https://www.rfc1437.de/2004/02/22/folkloreorg-macintosh-stories-hungarian/ - 2026-03-04T09:03:27.000Z + 2026-03-04T09:03:27.702Z monthly 0.8 @@ -74378,7 +74567,7 @@ https://www.rfc1437.de/2004/02/22/hartblei/ - 2026-03-04T09:03:30.000Z + 2026-03-04T09:03:30.980Z monthly 0.8 @@ -74387,7 +74576,7 @@ https://www.rfc1437.de/2004/02/22/steve-roy-software-design-action-helper/ - 2026-03-04T09:03:34.000Z + 2026-03-04T09:03:34.181Z monthly 0.8 @@ -74396,7 +74585,7 @@ https://www.rfc1437.de/2004/02/21/schwarzenegger-will-homo-hochzeiten-stoppen/ - 2026-03-04T09:03:39.000Z + 2026-03-04T09:03:39.255Z monthly 0.8 @@ -74405,7 +74594,7 @@ https://www.rfc1437.de/2004/02/20/asynchttp-asynconronous-http-client/ - 2026-03-04T09:03:42.000Z + 2026-03-04T09:03:42.874Z monthly 0.8 @@ -74414,7 +74603,7 @@ https://www.rfc1437.de/2004/02/20/hop-haskell-micro-kernel/ - 2026-03-04T09:03:46.000Z + 2026-03-04T09:03:46.944Z monthly 0.8 @@ -74423,7 +74612,7 @@ https://www.rfc1437.de/2004/02/20/smileys/ - 2026-03-04T09:03:51.000Z + 2026-03-04T09:03:51.595Z monthly 0.8 @@ -74432,7 +74621,7 @@ https://www.rfc1437.de/2004/02/20/using-the-ipod-hold-switch-to-prolong-battery-life/ - 2026-03-04T09:03:55.000Z + 2026-03-04T09:03:55.694Z monthly 0.8 @@ -74441,7 +74630,7 @@ https://www.rfc1437.de/2004/02/19/groklaw-redhat-steigt-auch-ein/ - 2026-03-04T09:04:00.000Z + 2026-03-04T09:04:00.779Z monthly 0.8 @@ -74450,7 +74639,7 @@ https://www.rfc1437.de/2004/02/19/modelingobject-relational-bridge-for-python/ - 2026-03-04T09:04:04.000Z + 2026-03-04T09:04:04.374Z monthly 0.8 @@ -74459,7 +74648,7 @@ https://www.rfc1437.de/2004/02/17/interview-die-gier-hat-den-verstand-vernebelt/ - 2026-03-04T09:04:09.000Z + 2026-03-04T09:04:09.915Z monthly 0.8 @@ -74468,7 +74657,7 @@ https://www.rfc1437.de/2004/02/17/toll-collect-muss-gehen-stolpe-nicht/ - 2026-03-04T09:04:14.000Z + 2026-03-04T09:04:14.811Z monthly 0.8 @@ -74477,7 +74666,7 @@ https://www.rfc1437.de/2004/02/17/verpflichtung-zur-zensur/ - 2026-03-04T09:04:19.000Z + 2026-03-04T09:04:19.326Z monthly 0.8 @@ -74486,7 +74675,7 @@ https://www.rfc1437.de/2004/02/16/3-3-weakref-weak-references/ - 2026-03-04T09:04:23.000Z + 2026-03-04T09:04:23.034Z monthly 0.8 @@ -74495,7 +74684,7 @@ https://www.rfc1437.de/2004/02/16/dp-nwcm-nws-psn-shws-rtr-styl-lc-rngfndr-cmptbl-dg/ - 2026-03-04T09:04:26.000Z + 2026-03-04T09:04:26.715Z monthly 0.8 @@ -74504,7 +74693,7 @@ https://www.rfc1437.de/2004/02/16/my-zope-localfs-1-1-0-tgz/ - 2026-03-04T09:04:30.000Z + 2026-03-04T09:04:30.918Z monthly 0.8 @@ -74513,7 +74702,7 @@ https://www.rfc1437.de/2004/02/16/python-dispatch-package/ - 2026-03-04T09:04:34.000Z + 2026-03-04T09:04:34.101Z monthly 0.8 @@ -74522,7 +74711,7 @@ https://www.rfc1437.de/2004/02/16/xml-rpc-client-server-protocol-reference/ - 2026-03-07T21:18:18.000Z + 2026-03-07T21:18:18.552Z monthly 0.8 @@ -74531,7 +74720,7 @@ https://www.rfc1437.de/2004/02/15/bbc-onemusic-sample-bank-drums/ - 2026-03-04T09:04:41.000Z + 2026-03-04T09:04:41.821Z monthly 0.8 @@ -74540,7 +74729,7 @@ https://www.rfc1437.de/2004/02/15/dent-du-midi-midi-file-converter-for-garageband/ - 2026-03-04T09:04:45.000Z + 2026-03-04T09:04:45.511Z monthly 0.8 @@ -74549,7 +74738,7 @@ https://www.rfc1437.de/2004/02/15/der-apfelbaum/ - 2026-03-04T09:04:49.000Z + 2026-03-04T09:04:49.130Z monthly 0.8 @@ -74558,7 +74747,7 @@ https://www.rfc1437.de/2004/02/15/elfenkoenig-nd-hbschrbr-zm-70-gbrtstg-vn-nkls-wrth/ - 2026-03-04T09:04:53.000Z + 2026-03-04T09:04:53.806Z monthly 0.8 @@ -74567,7 +74756,7 @@ https://www.rfc1437.de/2004/02/15/langzeitarbeitslose-sollen-zivildienst-leisten/ - 2026-03-04T09:04:58.000Z + 2026-03-04T09:04:58.940Z monthly 0.8 @@ -74576,7 +74765,7 @@ https://www.rfc1437.de/2004/02/15/myelin-feed-normalizer-2/ - 2026-03-04T09:05:02.000Z + 2026-03-04T09:05:02.672Z monthly 0.8 @@ -74585,7 +74774,7 @@ https://www.rfc1437.de/2004/02/15/pantani-found-dead-in-italian-hotel/ - 2026-03-04T09:05:06.000Z + 2026-03-04T09:05:06.775Z monthly 0.8 @@ -74594,7 +74783,7 @@ https://www.rfc1437.de/2004/02/15/sunday-times-bbc-soll-zerschlagen-werden/ - 2026-03-04T09:05:11.000Z + 2026-03-04T09:05:11.450Z monthly 0.8 @@ -74603,7 +74792,7 @@ https://www.rfc1437.de/2004/02/15/violin-loops-fiddle-loops-violin-samples/ - 2026-03-04T09:05:15.000Z + 2026-03-04T09:05:15.072Z monthly 0.8 @@ -74612,7 +74801,7 @@ https://www.rfc1437.de/2004/02/14/das-geheimherz-der-luegenfabrik/ - 2026-03-04T09:05:20.000Z + 2026-03-04T09:05:20.163Z monthly 0.8 @@ -74621,7 +74810,7 @@ https://www.rfc1437.de/2004/02/14/del-icio-us-api-documentation/ - 2026-03-04T09:05:24.000Z + 2026-03-04T09:05:24.106Z monthly 0.8 @@ -74630,7 +74819,7 @@ https://www.rfc1437.de/2004/02/14/macosxhints-more-info-about-remote-wake-and-sleep/ - 2026-03-04T09:05:28.000Z + 2026-03-04T09:05:28.464Z monthly 0.8 @@ -74639,7 +74828,7 @@ https://www.rfc1437.de/2004/02/14/macosxhints-wake-a-sleeping-mac-from-the-network/ - 2026-03-04T09:05:33.000Z + 2026-03-04T09:05:33.264Z monthly 0.8 @@ -74648,7 +74837,7 @@ https://www.rfc1437.de/2004/02/14/the-common-lisp-cookbook/ - 2026-03-04T09:05:37.000Z + 2026-03-04T09:05:37.430Z monthly 0.8 @@ -74657,7 +74846,7 @@ https://www.rfc1437.de/2004/02/14/von-den-opfern-einer-weltweiten-religion/ - 2026-03-04T09:05:42.000Z + 2026-03-04T09:05:42.591Z monthly 0.8 @@ -74666,7 +74855,7 @@ https://www.rfc1437.de/2004/02/14/wake550-help/ - 2026-03-04T09:05:46.000Z + 2026-03-04T09:05:46.437Z monthly 0.8 @@ -74675,7 +74864,7 @@ https://www.rfc1437.de/2004/02/13/groklaw-novell-setzt-nach/ - 2026-03-04T09:05:51.000Z + 2026-03-04T09:05:51.366Z monthly 0.8 @@ -74684,7 +74873,7 @@ https://www.rfc1437.de/2004/02/13/itmedi-pcpdt-psn-wrldwd-frst-rng-fndr-typ-dgtl-cmr/ - 2026-03-04T09:05:57.000Z + 2026-03-04T09:05:57.015Z monthly 0.8 @@ -74693,7 +74882,7 @@ https://www.rfc1437.de/2004/02/13/mit-polizeikanonen-auf-alternativspatzen-geschossn/ - 2026-03-04T09:06:02.000Z + 2026-03-04T09:06:02.614Z monthly 0.8 @@ -74702,7 +74891,7 @@ https://www.rfc1437.de/2004/02/13/wofuer-manche-anwaelte-so-im-netz-ihren-namn-hrgbn/ - 2026-03-04T09:06:08.000Z + 2026-03-04T09:06:08.222Z monthly 0.8 @@ -74711,7 +74900,7 @@ https://www.rfc1437.de/2004/02/12/domain-kidnapping-kommt-wieder/ - 2026-03-04T09:06:13.000Z + 2026-03-04T09:06:13.065Z monthly 0.8 @@ -74720,7 +74909,7 @@ https://www.rfc1437.de/2004/02/12/fernsehendenn-sie-wissen-nicht-was-sie-tun/ - 2026-03-04T09:06:17.000Z + 2026-03-04T09:06:17.681Z monthly 0.8 @@ -74729,7 +74918,7 @@ https://www.rfc1437.de/2004/02/12/firefox-ist-ja-ganz-nett-aber/ - 2026-03-04T09:06:21.000Z + 2026-03-04T09:06:21.395Z monthly 0.8 @@ -74738,7 +74927,7 @@ https://www.rfc1437.de/2004/02/12/gravenreuth-kanzlei-mahnt-p2p-portal-emulede-ab/ - 2026-03-04T09:06:26.000Z + 2026-03-04T09:06:26.206Z monthly 0.8 @@ -74747,7 +74936,7 @@ https://www.rfc1437.de/2004/02/12/konica-minolta-maxxum-7-digital/ - 2026-03-04T09:06:30.000Z + 2026-03-04T09:06:30.462Z monthly 0.8 @@ -74756,7 +74945,7 @@ https://www.rfc1437.de/2004/02/12/mars-express-schickt-neue-fotos/ - 2026-03-04T09:06:35.000Z + 2026-03-04T09:06:35.725Z monthly 0.8 @@ -74765,7 +74954,7 @@ https://www.rfc1437.de/2004/02/12/palmsource-dropping-mac-support/ - 2026-03-04T09:06:40.000Z + 2026-03-04T09:06:40.134Z monthly 0.8 @@ -74774,7 +74963,7 @@ https://www.rfc1437.de/2004/02/12/polaroid-bringt-neues-polaroid-material-raus/ - 2026-03-04T09:06:45.000Z + 2026-03-04T09:06:45.583Z monthly 0.8 @@ -74783,7 +74972,7 @@ https://www.rfc1437.de/2004/02/12/the-omni-group-applications-omniweb-beta/ - 2026-03-04T09:06:50.000Z + 2026-03-04T09:06:50.940Z monthly 0.8 @@ -74792,7 +74981,7 @@ https://www.rfc1437.de/2004/02/11/behavior-engineering-be-ais/ - 2026-03-04T09:06:55.000Z + 2026-03-04T09:06:55.704Z monthly 0.8 @@ -74801,7 +74990,7 @@ https://www.rfc1437.de/2004/02/11/der-feind-der-ganzen-welt/ - 2026-03-04T09:07:01.000Z + 2026-03-04T09:07:01.219Z monthly 0.8 @@ -74810,7 +74999,7 @@ https://www.rfc1437.de/2004/02/11/groklaw-novell-mischt-immer-noch-mit/ - 2026-03-04T09:07:06.000Z + 2026-03-04T09:07:06.575Z monthly 0.8 @@ -74819,7 +75008,7 @@ https://www.rfc1437.de/2004/02/11/kabinett-ebnet-weg-fuer-gen-food/ - 2026-03-04T09:07:12.000Z + 2026-03-04T09:07:12.559Z monthly 0.8 @@ -74828,7 +75017,7 @@ https://www.rfc1437.de/2004/02/11/kulturhauptstadt-2010-muenster-macht039s/ - 2026-03-04T09:07:18.000Z + 2026-03-04T09:07:18.453Z monthly 0.8 @@ -74837,7 +75026,7 @@ https://www.rfc1437.de/2004/02/11/openmcl-0141-jetzt-mit-cocoa-bridge/ - 2026-03-04T09:07:23.000Z + 2026-03-04T09:07:23.985Z monthly 0.8 @@ -74846,7 +75035,7 @@ https://www.rfc1437.de/2004/02/11/workbench-tuesday-february-10-2004/ - 2026-03-04T09:07:29.000Z + 2026-03-04T09:07:29.304Z monthly 0.8 @@ -74855,7 +75044,7 @@ https://www.rfc1437.de/2004/02/10/clorb-a-common-lisp-orb/ - 2026-03-04T09:07:34.000Z + 2026-03-04T09:07:34.800Z monthly 0.8 @@ -74864,7 +75053,7 @@ https://www.rfc1437.de/2004/02/10/development-of-leicas-digital-m-to-take-abot-2-yrs/ - 2026-03-04T09:07:40.000Z + 2026-03-04T09:07:40.018Z monthly 0.8 @@ -74873,7 +75062,7 @@ https://www.rfc1437.de/2004/02/10/die-macht-sind-wir/ - 2026-03-04T09:07:45.000Z + 2026-03-04T09:07:45.387Z monthly 0.8 @@ -74882,7 +75071,7 @@ https://www.rfc1437.de/2004/02/10/katholiken-finden-die-bbc-gar-nicht-lustig/ - 2026-03-04T09:07:52.000Z + 2026-03-04T09:07:52.259Z monthly 0.8 @@ -74891,7 +75080,7 @@ https://www.rfc1437.de/2004/02/10/netzeitung-weltraum-iss-besatzung-sichtet-ufo/ - 2026-03-04T09:07:57.000Z + 2026-03-04T09:07:57.833Z monthly 0.8 @@ -74900,7 +75089,7 @@ https://www.rfc1437.de/2004/02/10/palm-os-in-zwei-versionen/ - 2026-03-04T09:08:02.000Z + 2026-03-04T09:08:02.500Z monthly 0.8 @@ -74909,7 +75098,7 @@ https://www.rfc1437.de/2004/02/10/pycurl-home-page/ - 2026-03-04T09:08:05.000Z + 2026-03-04T09:08:05.787Z monthly 0.8 @@ -74918,7 +75107,7 @@ https://www.rfc1437.de/2004/02/10/shwebyhshandler-py/ - 2026-03-04T09:08:09.000Z + 2026-03-04T09:08:09.901Z monthly 0.8 @@ -74927,7 +75116,7 @@ https://www.rfc1437.de/2004/02/10/sorglos-paket-fuer-ipod-upgrader/ - 2026-03-04T09:08:14.000Z + 2026-03-04T09:08:14.131Z monthly 0.8 @@ -74936,7 +75125,7 @@ https://www.rfc1437.de/2004/02/09/leica-to-develop-digital-m-camera-source/ - 2026-03-04T09:08:18.000Z + 2026-03-04T09:08:18.746Z monthly 0.8 @@ -74945,7 +75134,7 @@ https://www.rfc1437.de/2004/02/09/rfc-1864-rfc1864-the-content-md5-header-field/ - 2026-03-04T09:08:22.000Z + 2026-03-04T09:08:22.948Z monthly 0.8 @@ -74954,7 +75143,7 @@ https://www.rfc1437.de/2004/02/09/was-schaemen/ - 2026-03-04T09:08:27.000Z + 2026-03-04T09:08:27.054Z monthly 0.8 @@ -74963,7 +75152,7 @@ https://www.rfc1437.de/2004/02/08/groklaw-sco-gegen-ibm-01/ - 2026-03-04T09:08:32.000Z + 2026-03-04T09:08:32.321Z monthly 0.8 @@ -74972,7 +75161,7 @@ https://www.rfc1437.de/2004/02/08/plt-spy-python-in-scheme/ - 2026-03-04T09:08:38.000Z + 2026-03-04T09:08:38.247Z monthly 0.8 @@ -74981,7 +75170,7 @@ https://www.rfc1437.de/2004/02/06/0700-rufnummern-im-impressum-abgemahnt/ - 2026-03-04T09:08:43.000Z + 2026-03-04T09:08:43.439Z monthly 0.8 @@ -74990,7 +75179,7 @@ https://www.rfc1437.de/2004/02/06/music-industry-raids-kazaa/ - 2026-03-04T09:08:48.000Z + 2026-03-04T09:08:48.254Z monthly 0.8 @@ -74999,7 +75188,7 @@ https://www.rfc1437.de/2004/02/06/opposition-sieht-regierung-am-ende/ - 2026-03-04T09:08:52.000Z + 2026-03-04T09:08:52.986Z monthly 0.8 @@ -75008,7 +75197,7 @@ https://www.rfc1437.de/2004/02/06/rfc-2445-vcalendar/ - 2026-03-04T09:08:56.000Z + 2026-03-04T09:08:56.651Z monthly 0.8 @@ -75017,7 +75206,7 @@ https://www.rfc1437.de/2004/02/06/schroeder-tritt-als-spd-vorsitzender-ab/ - 2026-03-04T09:09:01.000Z + 2026-03-04T09:09:01.797Z monthly 0.8 @@ -75026,7 +75215,7 @@ https://www.rfc1437.de/2004/02/06/sco-vs-linux-copyright-klage-gegen-ibm/ - 2026-03-04T09:09:06.000Z + 2026-03-04T09:09:06.368Z monthly 0.8 @@ -75035,7 +75224,7 @@ https://www.rfc1437.de/2004/02/06/toolserver-framework-for-python/ - 2026-03-04T09:09:11.000Z + 2026-03-04T09:09:11.023Z monthly 0.8 @@ -75044,7 +75233,7 @@ https://www.rfc1437.de/2004/02/05/booklooker-de-gebrauchte-buecher-kaufen-und/ - 2026-03-04T09:09:15.000Z + 2026-03-04T09:09:15.175Z monthly 0.8 @@ -75053,7 +75242,7 @@ https://www.rfc1437.de/2004/02/05/devchannel-the-affero-gpl-closing-the/ - 2026-03-04T09:09:19.000Z + 2026-03-04T09:09:19.299Z monthly 0.8 @@ -75062,7 +75251,7 @@ https://www.rfc1437.de/2004/02/05/index-deutsch/ - 2026-03-04T09:09:22.000Z + 2026-03-04T09:09:22.616Z monthly 0.8 @@ -75071,7 +75260,7 @@ https://www.rfc1437.de/2004/02/05/os-x-options-now-include-cmucl/ - 2026-03-04T09:09:26.000Z + 2026-03-04T09:09:26.290Z monthly 0.8 @@ -75080,7 +75269,7 @@ https://www.rfc1437.de/2004/02/05/pep-324-popen5-new-posix-process-module/ - 2026-03-04T09:09:29.000Z + 2026-03-04T09:09:29.972Z monthly 0.8 @@ -75089,7 +75278,7 @@ https://www.rfc1437.de/2004/02/05/weise-soll-neuer-ba-chef-werden/ - 2026-03-04T09:09:34.000Z + 2026-03-04T09:09:34.581Z monthly 0.8 @@ -75098,7 +75287,7 @@ https://www.rfc1437.de/2004/02/04/dont-try-this-at-home-kids/ - 2026-03-04T09:09:39.000Z + 2026-03-04T09:09:39.571Z monthly 0.8 @@ -75107,7 +75296,7 @@ https://www.rfc1437.de/2004/02/04/eidetic-document-management-system/ - 2026-03-04T09:09:42.000Z + 2026-03-04T09:09:42.855Z monthly 0.8 @@ -75116,7 +75305,7 @@ https://www.rfc1437.de/2004/02/04/leo-s-home-page/ - 2026-03-04T09:09:46.000Z + 2026-03-04T09:09:46.495Z monthly 0.8 @@ -75125,7 +75314,7 @@ https://www.rfc1437.de/2004/02/03/atpm-1002-atpo-outliner-user-interfaces/ - 2026-03-04T09:09:51.000Z + 2026-03-04T09:09:51.638Z monthly 0.8 @@ -75134,7 +75323,7 @@ https://www.rfc1437.de/2004/02/03/graphpath-language/ - 2026-03-04T09:09:55.000Z + 2026-03-04T09:09:55.044Z monthly 0.8 @@ -75143,7 +75332,7 @@ https://www.rfc1437.de/2004/02/03/rss-feeds-fuer-apple-knowledgebase/ - 2026-03-04T09:09:59.000Z + 2026-03-04T09:09:59.248Z monthly 0.8 @@ -75152,7 +75341,7 @@ https://www.rfc1437.de/2004/02/03/securityfocus-home-columnists-a-visit-from-the-fbi/ - 2026-03-04T09:10:03.000Z + 2026-03-04T09:10:03.657Z monthly 0.8 @@ -75161,7 +75350,7 @@ https://www.rfc1437.de/2004/02/03/why-your-movable-type-blog-must-die/ - 2026-03-04T09:10:08.000Z + 2026-03-04T09:10:08.918Z monthly 0.8 @@ -75170,7 +75359,7 @@ https://www.rfc1437.de/2004/02/02/a-retrospective-on-paip/ - 2026-03-04T09:10:12.000Z + 2026-03-04T09:10:12.679Z monthly 0.8 @@ -75179,7 +75368,7 @@ https://www.rfc1437.de/2004/02/02/andr-simon-startseite/ - 2026-03-04T09:10:15.000Z + 2026-03-04T09:10:15.931Z monthly 0.8 @@ -75188,7 +75377,7 @@ https://www.rfc1437.de/2004/02/02/astronauten-sollten-notfalls-auch-ihr-leben-opfern/ - 2026-03-04T09:10:20.000Z + 2026-03-04T09:10:20.554Z monthly 0.8 @@ -75197,7 +75386,7 @@ https://www.rfc1437.de/2004/02/02/ausbeutung-genetischer-ressourcen-in-der-antarktis/ - 2026-03-04T09:10:24.000Z + 2026-03-04T09:10:24.702Z monthly 0.8 @@ -75206,7 +75395,7 @@ https://www.rfc1437.de/2004/02/02/continuations-made-simple-and-illustrated/ - 2026-03-07T21:18:19.000Z + 2026-03-07T21:18:19.880Z monthly 0.8 @@ -75215,7 +75404,7 @@ https://www.rfc1437.de/2004/02/02/keine-zuzahlungserleichterung-fuer-heimwohner/ - 2026-03-04T09:10:32.000Z + 2026-03-04T09:10:32.731Z monthly 0.8 @@ -75224,7 +75413,7 @@ https://www.rfc1437.de/2004/02/02/pep-327-decimal-data-type/ - 2026-03-04T09:10:36.000Z + 2026-03-04T09:10:36.545Z monthly 0.8 @@ -75233,7 +75422,7 @@ https://www.rfc1437.de/2004/02/02/python-for-lisp-programmers/ - 2026-03-04T09:10:40.000Z + 2026-03-04T09:10:40.325Z monthly 0.8 @@ -75242,7 +75431,7 @@ https://www.rfc1437.de/2004/02/02/pyxlwriter/ - 2026-03-04T09:10:43.000Z + 2026-03-04T09:10:43.562Z monthly 0.8 @@ -75251,7 +75440,7 @@ https://www.rfc1437.de/2004/02/02/sourceforge-net-project-info-bytecodehacks/ - 2026-03-04T09:10:47.000Z + 2026-03-04T09:10:47.234Z monthly 0.8 @@ -75260,7 +75449,7 @@ https://www.rfc1437.de/2004/02/02/wad/ - 2026-03-04T09:10:50.000Z + 2026-03-04T09:10:50.475Z monthly 0.8 @@ -75269,7 +75458,7 @@ https://www.rfc1437.de/2004/02/01/benutzerhandbuch-fuer-radio-userland-8-0-8/ - 2026-03-04T09:10:54.000Z + 2026-03-04T09:10:54.824Z monthly 0.8 @@ -75278,7 +75467,7 @@ https://www.rfc1437.de/2004/02/01/camlfloat/ - 2026-03-04T09:10:58.000Z + 2026-03-04T09:10:58.094Z monthly 0.8 @@ -75287,7 +75476,7 @@ https://www.rfc1437.de/2004/02/01/freie-software-zwischen-privat-und-gemeineigentum/ - 2026-03-04T09:11:02.000Z + 2026-03-04T09:11:02.806Z monthly 0.8 @@ -75296,7 +75485,7 @@ https://www.rfc1437.de/2004/02/01/geschichten-aus-dem-service/ - 2026-03-04T09:11:06.000Z + 2026-03-04T09:11:06.494Z monthly 0.8 @@ -75305,7 +75494,7 @@ https://www.rfc1437.de/2004/02/01/kaestner-schlu/ - 2026-03-04T09:11:11.000Z + 2026-03-04T09:11:11.167Z monthly 0.8 @@ -75314,7 +75503,7 @@ https://www.rfc1437.de/2004/02/01/minolta-dimage-a2-z2-and-xg-rumoured/ - 2026-03-04T09:11:15.000Z + 2026-03-04T09:11:15.794Z monthly 0.8 @@ -75323,7 +75512,7 @@ https://www.rfc1437.de/2004/02/01/mozpython/ - 2026-03-04T09:11:19.000Z + 2026-03-04T09:11:19.059Z monthly 0.8 @@ -75332,7 +75521,7 @@ https://www.rfc1437.de/2004/02/01/pod2go/ - 2026-03-04T09:11:22.000Z + 2026-03-04T09:11:22.355Z monthly 0.8 @@ -75341,7 +75530,7 @@ https://www.rfc1437.de/2004/02/01/tagesschaude-fata-morgana-in-eis-und-schnee/ - 2026-03-04T09:11:26.000Z + 2026-03-04T09:11:26.565Z monthly 0.8 @@ -75350,7 +75539,7 @@ https://www.rfc1437.de/2004/02/01/www-is-deprecated/ - 2026-03-04T09:11:29.000Z + 2026-03-04T09:11:29.891Z monthly 0.8 @@ -75359,7 +75548,7 @@ https://www.rfc1437.de/2004/01/31/cmp-blog-announcing-scplugin-goin-to-the-chapel/ - 2026-03-04T09:11:34.000Z + 2026-03-04T09:11:34.039Z monthly 0.8 @@ -75368,7 +75557,7 @@ https://www.rfc1437.de/2004/01/31/csu-bestreitet-finanzprobleme/ - 2026-03-04T09:11:39.000Z + 2026-03-04T09:11:39.954Z monthly 0.8 @@ -75377,7 +75566,7 @@ https://www.rfc1437.de/2004/01/31/dp-essentials-05-improving-presence-in-digital-mgs/ - 2026-03-04T09:11:45.000Z + 2026-03-04T09:11:45.039Z monthly 0.8 @@ -75386,7 +75575,7 @@ https://www.rfc1437.de/2004/01/31/german-keyboard-layout/ - 2026-03-04T09:11:48.000Z + 2026-03-04T09:11:48.311Z monthly 0.8 @@ -75395,7 +75584,7 @@ https://www.rfc1437.de/2004/01/31/kampfroboter/ - 2026-03-04T09:11:53.000Z + 2026-03-04T09:11:53.053Z monthly 0.8 @@ -75404,7 +75593,7 @@ https://www.rfc1437.de/2004/01/31/nur-mal-so-gesagt-haben-wollen/ - 2026-03-04T09:11:56.000Z + 2026-03-04T09:11:56.665Z monthly 0.8 @@ -75413,7 +75602,7 @@ https://www.rfc1437.de/2004/01/31/rainer-brockerhoff-usinternational/ - 2026-03-04T09:11:59.000Z + 2026-03-04T09:11:59.920Z monthly 0.8 @@ -75422,7 +75611,7 @@ https://www.rfc1437.de/2004/01/31/splasm-software-brightness-control/ - 2026-03-04T09:12:04.000Z + 2026-03-04T09:12:04.473Z monthly 0.8 @@ -75431,7 +75620,7 @@ https://www.rfc1437.de/2004/01/31/xpde-desktop-environment/ - 2026-03-04T09:12:07.000Z + 2026-03-04T09:12:07.746Z monthly 0.8 @@ -75440,7 +75629,7 @@ https://www.rfc1437.de/2004/01/30/ba-interimschef-verhinderte-entlastung-gersters/ - 2026-03-04T09:12:12.000Z + 2026-03-04T09:12:12.338Z monthly 0.8 @@ -75449,7 +75638,7 @@ https://www.rfc1437.de/2004/01/30/hueter-des-verlorenen-satzes-sueddeutschede-kultur/ - 2026-03-04T09:12:16.000Z + 2026-03-04T09:12:16.940Z monthly 0.8 @@ -75458,7 +75647,7 @@ https://www.rfc1437.de/2004/01/30/nasa-will-entscheidung-252ber-hubble-fgb-252brdnkn/ - 2026-03-04T09:12:21.000Z + 2026-03-04T09:12:21.551Z monthly 0.8 @@ -75467,7 +75656,7 @@ https://www.rfc1437.de/2004/01/30/news-wird-xfree86-gpl-inkompatibel/ - 2026-03-04T09:12:25.000Z + 2026-03-04T09:12:25.686Z monthly 0.8 @@ -75476,7 +75665,7 @@ https://www.rfc1437.de/2004/01/30/python-apocrypha/ - 2026-03-04T09:12:29.000Z + 2026-03-04T09:12:29.334Z monthly 0.8 @@ -75485,7 +75674,7 @@ https://www.rfc1437.de/2004/01/30/wegwerf-dvd-entpuppt-sich-als-ladenhueter/ - 2026-03-04T09:12:33.000Z + 2026-03-04T09:12:33.076Z monthly 0.8 @@ -75494,7 +75683,7 @@ https://www.rfc1437.de/2004/01/30/yahoo-news-decomposing-whale-explodes-on-street/ - 2026-03-04T09:12:37.000Z + 2026-03-04T09:12:37.912Z monthly 0.8 @@ -75503,7 +75692,7 @@ https://www.rfc1437.de/2004/01/29/833786-schrtt-d-hlfn-knnn-gflscht-spf-wbsts-nd-bsw/ - 2026-03-04T09:12:42.000Z + 2026-03-04T09:12:42.988Z monthly 0.8 @@ -75512,7 +75701,7 @@ https://www.rfc1437.de/2004/01/29/chuzpe-das-blog-zur-sendung/ - 2026-03-04T09:12:46.000Z + 2026-03-04T09:12:46.598Z monthly 0.8 @@ -75521,7 +75710,7 @@ https://www.rfc1437.de/2004/01/29/dirk-olbertz-blog-umgang-mit-oeffentlicher-kritik/ - 2026-03-04T09:12:51.000Z + 2026-03-04T09:12:51.160Z monthly 0.8 @@ -75530,7 +75719,7 @@ https://www.rfc1437.de/2004/01/29/faqts-knowledge-base-view-entry-is-there-a-way-i/ - 2026-03-04T09:12:55.000Z + 2026-03-04T09:12:55.329Z monthly 0.8 @@ -75539,7 +75728,7 @@ https://www.rfc1437.de/2004/01/29/neooffice-j-home/ - 2026-03-07T21:18:21.000Z + 2026-03-07T21:18:21.125Z monthly 0.8 @@ -75548,7 +75737,7 @@ https://www.rfc1437.de/2004/01/29/t-dsl-soll-schneller-werden/ - 2026-03-04T09:13:02.000Z + 2026-03-04T09:13:02.302Z monthly 0.8 @@ -75557,7 +75746,7 @@ https://www.rfc1437.de/2004/01/27/eu-rat-draengt-auf-krmnlsrng-lchtr-rhbrrchtsvrstss/ - 2026-03-04T09:13:06.000Z + 2026-03-04T09:13:06.861Z monthly 0.8 @@ -75566,7 +75755,7 @@ https://www.rfc1437.de/2004/01/27/multisync-a-synchronization-tool/ - 2026-03-04T09:13:10.000Z + 2026-03-04T09:13:10.081Z monthly 0.8 @@ -75575,7 +75764,7 @@ https://www.rfc1437.de/2004/01/27/netzeitung-people-x-mtgld-vn-jthr-tll-st-jtzt-n-fr/ - 2026-03-04T09:13:15.000Z + 2026-03-04T09:13:15.135Z monthly 0.8 @@ -75584,7 +75773,7 @@ https://www.rfc1437.de/2004/01/27/nochmal-zum-ie-bug/ - 2026-03-04T09:13:20.000Z + 2026-03-04T09:13:20.163Z monthly 0.8 @@ -75593,7 +75782,7 @@ https://www.rfc1437.de/2004/01/27/public-image-unlimited/ - 2026-03-04T09:13:24.000Z + 2026-03-04T09:13:24.318Z monthly 0.8 @@ -75602,7 +75791,7 @@ https://www.rfc1437.de/2004/01/27/raetsel-um-ie-problem-wohl-geloest/ - 2026-03-04T09:13:29.000Z + 2026-03-04T09:13:29.334Z monthly 0.8 @@ -75611,7 +75800,7 @@ https://www.rfc1437.de/2004/01/27/steuerreform-union-zweifelt-an-den-eigenn-mglchktn/ - 2026-03-04T09:13:34.000Z + 2026-03-04T09:13:34.426Z monthly 0.8 @@ -75620,7 +75809,7 @@ https://www.rfc1437.de/2004/01/26/abgeordnete-kriegen-1950-euro-mehr/ - 2026-03-04T09:13:39.000Z + 2026-03-04T09:13:39.317Z monthly 0.8 @@ -75629,7 +75818,7 @@ https://www.rfc1437.de/2004/01/26/aspn-python-cookbook-syntax-highlighted-code/ - 2026-03-07T21:18:24.000Z + 2026-03-07T21:18:24.607Z monthly 0.8 @@ -75638,7 +75827,7 @@ https://www.rfc1437.de/2004/01/26/bill-gates-prophezeit-erfolgreichen-kampf-gegn-spm/ - 2026-03-04T09:13:47.000Z + 2026-03-04T09:13:47.562Z monthly 0.8 @@ -75647,7 +75836,7 @@ https://www.rfc1437.de/2004/01/26/color-management/ - 2026-03-04T09:13:52.000Z + 2026-03-04T09:13:52.099Z monthly 0.8 @@ -75656,7 +75845,7 @@ https://www.rfc1437.de/2004/01/26/dunkle-schokolade-mit-ueberraschender-nebenwirkung/ - 2026-03-04T09:13:56.000Z + 2026-03-04T09:13:56.220Z monthly 0.8 @@ -75665,7 +75854,7 @@ https://www.rfc1437.de/2004/01/26/ende-des-managements/ - 2026-03-04T09:14:00.000Z + 2026-03-04T09:14:00.334Z monthly 0.8 @@ -75674,7 +75863,7 @@ https://www.rfc1437.de/2004/01/26/fast-food-experiment/ - 2026-03-04T09:14:04.000Z + 2026-03-04T09:14:04.910Z monthly 0.8 @@ -75683,7 +75872,7 @@ https://www.rfc1437.de/2004/01/26/franzosschr-kltrmnstr-frdrt-gstz-ggn-llgln-msktsch/ - 2026-03-04T09:14:09.000Z + 2026-03-04T09:14:09.435Z monthly 0.8 @@ -75692,7 +75881,7 @@ https://www.rfc1437.de/2004/01/26/gerster-sieht-sich-als-opfer-einer-kampagne/ - 2026-03-04T09:14:14.000Z + 2026-03-04T09:14:14.516Z monthly 0.8 @@ -75701,7 +75890,7 @@ https://www.rfc1437.de/2004/01/26/ich-brauch-mal-einen-css-experten-mt-6-wn-rfhrngn/ - 2026-03-04T09:14:19.000Z + 2026-03-04T09:14:19.073Z monthly 0.8 @@ -75710,7 +75899,7 @@ https://www.rfc1437.de/2004/01/26/linux-kernel-auf-windows/ - 2026-03-04T09:14:22.000Z + 2026-03-04T09:14:22.782Z monthly 0.8 @@ -75719,7 +75908,7 @@ https://www.rfc1437.de/2004/01/25/012404-spirit-condition-upgraded-s-twn-rvr-nrs-mrs/ - 2026-03-04T09:14:28.000Z + 2026-03-04T09:14:28.269Z monthly 0.8 @@ -75728,7 +75917,7 @@ https://www.rfc1437.de/2004/01/25/contax-n-digital-review/ - 2026-03-04T09:14:32.000Z + 2026-03-04T09:14:32.958Z monthly 0.8 @@ -75737,7 +75926,7 @@ https://www.rfc1437.de/2004/01/25/john-mccarthy/ - 2026-03-04T09:14:36.000Z + 2026-03-04T09:14:36.261Z monthly 0.8 @@ -75746,7 +75935,7 @@ https://www.rfc1437.de/2004/01/25/oswald-metzger-hat-es-geschafft/ - 2026-03-04T09:14:41.000Z + 2026-03-04T09:14:41.451Z monthly 0.8 @@ -75755,7 +75944,7 @@ https://www.rfc1437.de/2004/01/25/path-python-module/ - 2026-03-04T09:14:46.000Z + 2026-03-04T09:14:46.462Z monthly 0.8 @@ -75764,7 +75953,7 @@ https://www.rfc1437.de/2004/01/25/post-vom-versuchslabor/ - 2026-03-04T09:14:51.000Z + 2026-03-04T09:14:51.605Z monthly 0.8 @@ -75773,7 +75962,7 @@ https://www.rfc1437.de/2004/01/24/at-first-i-thought-i-was-going-mad/ - 2026-03-04T09:14:56.000Z + 2026-03-04T09:14:56.699Z monthly 0.8 @@ -75782,7 +75971,7 @@ https://www.rfc1437.de/2004/01/24/cheney-ideologien-der-gewalt-bei-wurzel-packen/ - 2026-03-04T09:15:01.000Z + 2026-03-04T09:15:01.414Z monthly 0.8 @@ -75791,7 +75980,7 @@ https://www.rfc1437.de/2004/01/24/genug-wasser-fuer-eine-bemannte-mars-mission/ - 2026-03-04T09:15:05.000Z + 2026-03-04T09:15:05.968Z monthly 0.8 @@ -75800,7 +75989,7 @@ https://www.rfc1437.de/2004/01/24/krankenkassen-nehmen-abschied-von-136-prozent/ - 2026-03-04T09:15:10.000Z + 2026-03-04T09:15:10.562Z monthly 0.8 @@ -75809,7 +75998,7 @@ https://www.rfc1437.de/2004/01/24/mdrde-starfotograf-helmut-newton-bei-autonfll-gttt/ - 2026-03-04T09:15:14.000Z + 2026-03-04T09:15:14.670Z monthly 0.8 @@ -75818,7 +76007,7 @@ https://www.rfc1437.de/2004/01/24/mein-erster-mac/ - 2026-03-04T09:15:19.000Z + 2026-03-04T09:15:19.331Z monthly 0.8 @@ -75827,7 +76016,7 @@ https://www.rfc1437.de/2004/01/24/plastinator-wusste-von-hinrichtungsopfern/ - 2026-03-04T09:15:24.000Z + 2026-03-04T09:15:24.382Z monthly 0.8 @@ -75836,7 +76025,7 @@ https://www.rfc1437.de/2004/01/24/ranchero-software-big-cat-scripts-plugin/ - 2026-03-04T09:15:28.000Z + 2026-03-04T09:15:28.047Z monthly 0.8 @@ -75845,7 +76034,7 @@ https://www.rfc1437.de/2004/01/24/spd-politiker-erhoehung-des-soli-zuschlags-moeglch/ - 2026-03-04T09:15:33.000Z + 2026-03-04T09:15:33.253Z monthly 0.8 @@ -75854,7 +76043,7 @@ https://www.rfc1437.de/2004/01/23/bahnfahren-wird-teurer-erstmals-hoechstpreis/ - 2026-03-04T09:15:38.000Z + 2026-03-04T09:15:38.234Z monthly 0.8 @@ -75863,7 +76052,7 @@ https://www.rfc1437.de/2004/01/23/cardinal-says-gays-are-perverts-but-brothels-are-k/ - 2026-03-04T09:15:43.000Z + 2026-03-04T09:15:43.298Z monthly 0.8 @@ -75872,7 +76061,7 @@ https://www.rfc1437.de/2004/01/23/dvd-industrie-macht-rueckzieher-im-decss-rchtsstrt/ - 2026-03-04T09:15:47.000Z + 2026-03-04T09:15:47.366Z monthly 0.8 @@ -75881,7 +76070,7 @@ https://www.rfc1437.de/2004/01/23/esa-mars-express-mars-express-sees-its-first-water/ - 2026-03-04T09:15:52.000Z + 2026-03-04T09:15:52.014Z monthly 0.8 @@ -75890,7 +76079,7 @@ https://www.rfc1437.de/2004/01/23/gerolsteiner-will-vor-allem-top-team-bleiben/ - 2026-03-04T09:15:57.000Z + 2026-03-04T09:15:57.008Z monthly 0.8 @@ -75899,7 +76088,7 @@ https://www.rfc1437.de/2004/01/23/gerster-offenbar-weitgehend-entlastet/ - 2026-03-04T09:16:02.000Z + 2026-03-04T09:16:02.172Z monthly 0.8 @@ -75908,7 +76097,7 @@ https://www.rfc1437.de/2004/01/23/halliburton-gibt-bestechung-bei-irak-auftraegen-zu/ - 2026-03-04T09:16:07.000Z + 2026-03-04T09:16:07.186Z monthly 0.8 @@ -75917,7 +76106,7 @@ https://www.rfc1437.de/2004/01/23/imaging-resource-kanguru-fc-rw/ - 2026-03-04T09:16:10.000Z + 2026-03-04T09:16:10.824Z monthly 0.8 @@ -75926,7 +76115,7 @@ https://www.rfc1437.de/2004/01/23/markenrechts-anwalt-soll-von-dubsn-ntrntstn-prftrn/ - 2026-03-04T09:16:16.000Z + 2026-03-04T09:16:16.383Z monthly 0.8 @@ -75935,7 +76124,7 @@ https://www.rfc1437.de/2004/01/23/neue-farben/ - 2026-03-04T09:16:20.000Z + 2026-03-04T09:16:20.986Z monthly 0.8 @@ -75944,7 +76133,7 @@ https://www.rfc1437.de/2004/01/23/novell-sagt-adieu-zu-united-linux/ - 2026-03-04T09:16:25.000Z + 2026-03-04T09:16:25.139Z monthly 0.8 @@ -75953,7 +76142,7 @@ https://www.rfc1437.de/2004/01/23/regulierungsbehrd-schltt-stndrtdtnbnk-z-fnknlgn-fr/ - 2026-03-04T09:16:30.000Z + 2026-03-04T09:16:30.206Z monthly 0.8 @@ -75962,7 +76151,7 @@ https://www.rfc1437.de/2004/01/23/reindeer-graphics-inc-products/ - 2026-03-04T09:16:34.000Z + 2026-03-04T09:16:34.868Z monthly 0.8 @@ -75971,7 +76160,7 @@ https://www.rfc1437.de/2004/01/23/rss-newsfeed-immer-wssn-ws-s-ns-gbt-dr-tg-spgl-nln/ - 2026-03-04T09:16:40.000Z + 2026-03-04T09:16:40.224Z monthly 0.8 @@ -75980,7 +76169,7 @@ https://www.rfc1437.de/2004/01/23/simple-python-aggregator/ - 2026-03-04T09:16:43.000Z + 2026-03-04T09:16:43.880Z monthly 0.8 @@ -75989,7 +76178,7 @@ https://www.rfc1437.de/2004/01/23/xml-com-lightweight-xml-search-servers-jan-21-2004/ - 2026-03-04T09:16:47.000Z + 2026-03-04T09:16:47.993Z monthly 0.8 @@ -75998,7 +76187,7 @@ https://www.rfc1437.de/2004/01/22/adobe-photoshop-plugins-for-adobe-photoshop/ - 2026-03-04T09:16:51.000Z + 2026-03-04T09:16:51.630Z monthly 0.8 @@ -76007,7 +76196,7 @@ https://www.rfc1437.de/2004/01/22/beamter-unbemerkt-verstorben/ - 2026-03-04T09:16:55.000Z + 2026-03-04T09:16:55.772Z monthly 0.8 @@ -76016,7 +76205,7 @@ https://www.rfc1437.de/2004/01/22/cia-bot-cia/ - 2026-03-04T09:16:59.000Z + 2026-03-04T09:16:59.433Z monthly 0.8 @@ -76025,7 +76214,7 @@ https://www.rfc1437.de/2004/01/22/d2r-comment-spam-filtering-it-s-all-about-the-ips/ - 2026-03-07T21:18:25.000Z + 2026-03-07T21:18:25.945Z monthly 0.8 @@ -76034,7 +76223,7 @@ https://www.rfc1437.de/2004/01/22/heise-online-bluetooth-zum-telefonieren-und-surfen/ - 2026-03-04T09:17:06.000Z + 2026-03-04T09:17:06.879Z monthly 0.8 @@ -76043,7 +76232,7 @@ https://www.rfc1437.de/2004/01/22/ibm-wont-indemnify-plans-to-win-suit/ - 2026-03-04T09:17:11.000Z + 2026-03-04T09:17:11.072Z monthly 0.8 @@ -76052,7 +76241,7 @@ https://www.rfc1437.de/2004/01/22/mars-rover-spirit-meldet-sich-nicht/ - 2026-03-04T09:17:15.000Z + 2026-03-04T09:17:15.180Z monthly 0.8 @@ -76061,7 +76250,7 @@ https://www.rfc1437.de/2004/01/22/photoshop-plugins-for-professional-photo/ - 2026-03-04T09:17:18.000Z + 2026-03-04T09:17:18.830Z monthly 0.8 @@ -76070,7 +76259,7 @@ https://www.rfc1437.de/2004/01/22/pychecker-a-python-source-code-checking-tool/ - 2026-03-04T09:17:22.000Z + 2026-03-04T09:17:22.120Z monthly 0.8 @@ -76079,7 +76268,7 @@ https://www.rfc1437.de/2004/01/22/raw-vs-jpg-2004-kenrockwellcom/ - 2026-03-04T09:17:27.000Z + 2026-03-04T09:17:27.249Z monthly 0.8 @@ -76088,7 +76277,7 @@ https://www.rfc1437.de/2004/01/22/test-des-ix-spamfilters-per-e-mail/ - 2026-03-04T09:17:30.000Z + 2026-03-04T09:17:30.951Z monthly 0.8 @@ -76097,7 +76286,7 @@ https://www.rfc1437.de/2004/01/22/wegen-gerster-cdu-sieht-einen-fall-clement/ - 2026-03-04T09:17:35.000Z + 2026-03-04T09:17:35.185Z monthly 0.8 @@ -76106,7 +76295,7 @@ https://www.rfc1437.de/2004/01/21/dgb-will-laengere-lebensarbeitszeit-zulassen/ - 2026-03-04T09:17:40.000Z + 2026-03-04T09:17:40.025Z monthly 0.8 @@ -76115,7 +76304,7 @@ https://www.rfc1437.de/2004/01/21/dp-now-com-features-printer-reviews-hp-photosmart/ - 2026-03-04T09:17:44.000Z + 2026-03-04T09:17:44.118Z monthly 0.8 @@ -76124,7 +76313,7 @@ https://www.rfc1437.de/2004/01/21/latex-equation-editor/ - 2026-03-04T09:17:47.000Z + 2026-03-04T09:17:47.952Z monthly 0.8 @@ -76133,7 +76322,7 @@ https://www.rfc1437.de/2004/01/21/mckinsey-schlecht-beraten-manager-magazinde/ - 2026-03-04T09:17:52.000Z + 2026-03-04T09:17:52.755Z monthly 0.8 @@ -76142,7 +76331,7 @@ https://www.rfc1437.de/2004/01/21/news-sco-verklagt-novell/ - 2026-03-04T09:17:56.000Z + 2026-03-04T09:17:56.826Z monthly 0.8 @@ -76151,7 +76340,7 @@ https://www.rfc1437.de/2004/01/21/nopaste/ - 2026-03-04T09:18:00.000Z + 2026-03-04T09:18:00.095Z monthly 0.8 @@ -76160,7 +76349,7 @@ https://www.rfc1437.de/2004/01/21/patentstreit-um-musik-download-in-europa-beigelegt/ - 2026-03-04T09:18:05.000Z + 2026-03-04T09:18:05.180Z monthly 0.8 @@ -76169,7 +76358,7 @@ https://www.rfc1437.de/2004/01/21/rau-nachfolge-kanzler-aergert-union/ - 2026-03-04T09:18:10.000Z + 2026-03-04T09:18:10.664Z monthly 0.8 @@ -76178,7 +76367,7 @@ https://www.rfc1437.de/2004/01/21/xgpatsf-gt/ - 2026-03-04T09:18:13.000Z + 2026-03-04T09:18:13.957Z monthly 0.8 @@ -76187,7 +76376,7 @@ https://www.rfc1437.de/2004/01/20/bundesagentur-fuer-arbeit-beweise-offenbar-manplrt/ - 2026-03-04T09:18:18.000Z + 2026-03-04T09:18:18.578Z monthly 0.8 @@ -76196,7 +76385,7 @@ https://www.rfc1437.de/2004/01/20/csu-will-abtreibung-auf-staatskosten-stoppen/ - 2026-03-04T09:18:23.000Z + 2026-03-04T09:18:23.156Z monthly 0.8 @@ -76205,7 +76394,7 @@ https://www.rfc1437.de/2004/01/20/essentielle-killer-tips-fuer-garageband/ - 2026-03-04T09:18:26.000Z + 2026-03-04T09:18:26.834Z monthly 0.8 @@ -76214,7 +76403,7 @@ https://www.rfc1437.de/2004/01/20/kodak-discontinues-dcs-pro-backs/ - 2026-03-04T09:18:31.000Z + 2026-03-04T09:18:31.953Z monthly 0.8 @@ -76223,7 +76412,7 @@ https://www.rfc1437.de/2004/01/20/lob-fuer-den-opa-bringt-merz-in-die-bredouille/ - 2026-03-04T09:18:37.000Z + 2026-03-04T09:18:37.179Z monthly 0.8 @@ -76232,7 +76421,7 @@ https://www.rfc1437.de/2004/01/20/massachusetts-senator-gts-lft-fr-th-rc-n-nw-hmpshr/ - 2026-03-04T09:18:42.000Z + 2026-03-04T09:18:42.272Z monthly 0.8 @@ -76241,7 +76430,7 @@ https://www.rfc1437.de/2004/01/20/rueckendeckung-fuer-gerster/ - 2026-03-04T09:18:47.000Z + 2026-03-04T09:18:47.029Z monthly 0.8 @@ -76250,7 +76439,7 @@ https://www.rfc1437.de/2004/01/20/sun-will-hardware-fuer-windows-zertifizrn-lssn-pdt/ - 2026-03-04T09:18:52.000Z + 2026-03-04T09:18:52.538Z monthly 0.8 @@ -76259,7 +76448,7 @@ https://www.rfc1437.de/2004/01/20/the-game-is-over/ - 2026-03-04T09:18:56.000Z + 2026-03-04T09:18:56.192Z monthly 0.8 @@ -76268,7 +76457,7 @@ https://www.rfc1437.de/2004/01/19/betrug-leicht-gemacht-sicherheits-luecke-bei-ebay/ - 2026-03-04T09:19:00.000Z + 2026-03-04T09:19:00.801Z monthly 0.8 @@ -76277,7 +76466,7 @@ https://www.rfc1437.de/2004/01/19/bottomfeeder-cross-platform-rss-atom-news-2/ - 2026-03-07T21:18:29.000Z + 2026-03-07T21:18:29.685Z monthly 0.8 @@ -76286,7 +76475,7 @@ https://www.rfc1437.de/2004/01/19/domain-recht-wenn-zwei-sich-streiten-bekmmt-knr-ws/ - 2026-03-04T09:19:09.000Z + 2026-03-04T09:19:09.099Z monthly 0.8 @@ -76295,7 +76484,7 @@ https://www.rfc1437.de/2004/01/19/esa-mars-express/ - 2026-03-04T09:19:13.000Z + 2026-03-04T09:19:13.181Z monthly 0.8 @@ -76304,7 +76493,7 @@ https://www.rfc1437.de/2004/01/19/gtk-osx/ - 2026-03-04T09:19:16.000Z + 2026-03-04T09:19:16.426Z monthly 0.8 @@ -76313,7 +76502,7 @@ https://www.rfc1437.de/2004/01/19/nsi-nimmt-strato-kundendomains-aus-dem-dns/ - 2026-03-04T09:19:21.000Z + 2026-03-04T09:19:21.469Z monthly 0.8 @@ -76322,7 +76511,7 @@ https://www.rfc1437.de/2004/01/19/strafanzeige-gegen-ulla-schmidt-nch-td-ns-nrnkrnkn/ - 2026-03-04T09:19:26.000Z + 2026-03-04T09:19:26.062Z monthly 0.8 @@ -76331,7 +76520,7 @@ https://www.rfc1437.de/2004/01/19/tapestry-your-favourite-comics-by-rss-dwlt-net/ - 2026-03-04T09:19:29.000Z + 2026-03-04T09:19:29.716Z monthly 0.8 @@ -76340,7 +76529,7 @@ https://www.rfc1437.de/2004/01/19/visualworks-visualworks-typeless-irc-client/ - 2026-03-07T21:18:31.000Z + 2026-03-07T21:18:31.380Z monthly 0.8 @@ -76349,7 +76538,7 @@ https://www.rfc1437.de/2004/01/18/trittin-wirft-energieversorger-abzockerei-vor/ - 2026-03-04T09:19:38.000Z + 2026-03-04T09:19:38.302Z monthly 0.8 @@ -76358,7 +76547,7 @@ https://www.rfc1437.de/2004/01/17/bilder-aus-der-kodak-dcs-520/ - 2026-03-04T09:19:41.000Z + 2026-03-04T09:19:41.986Z monthly 0.8 @@ -76367,7 +76556,7 @@ https://www.rfc1437.de/2004/01/17/digital-secrets-how-spirit-makes-great-photos/ - 2026-03-04T09:19:46.000Z + 2026-03-04T09:19:46.565Z monthly 0.8 @@ -76376,7 +76565,7 @@ https://www.rfc1437.de/2004/01/17/network-solutins-nd-rgstrcm-wgn-ptntvrltzng-vrklgt/ - 2026-03-04T09:19:50.000Z + 2026-03-04T09:19:50.665Z monthly 0.8 @@ -76385,7 +76574,7 @@ https://www.rfc1437.de/2004/01/17/speno-s-pythonic-avocado-16-1-2004/ - 2026-03-04T09:19:55.000Z + 2026-03-04T09:19:55.039Z monthly 0.8 @@ -76394,7 +76583,7 @@ https://www.rfc1437.de/2004/01/17/von-sorben-und-helmen/ - 2026-03-04T09:19:59.000Z + 2026-03-04T09:19:59.094Z monthly 0.8 @@ -76403,7 +76592,7 @@ https://www.rfc1437.de/2004/01/16/berichte-gerster-schloss-weiteren-beratervertrag-b/ - 2026-03-04T09:20:03.000Z + 2026-03-04T09:20:03.300Z monthly 0.8 @@ -76412,7 +76601,7 @@ https://www.rfc1437.de/2004/01/16/digital-camera-batteries/ - 2026-03-04T09:20:06.000Z + 2026-03-04T09:20:06.934Z monthly 0.8 @@ -76421,7 +76610,7 @@ https://www.rfc1437.de/2004/01/16/europas-pr-crash-auf-dem-mars/ - 2026-03-04T09:20:11.000Z + 2026-03-04T09:20:11.607Z monthly 0.8 @@ -76430,7 +76619,7 @@ https://www.rfc1437.de/2004/01/16/favicon-generator/ - 2026-03-04T09:20:14.000Z + 2026-03-04T09:20:14.862Z monthly 0.8 @@ -76439,7 +76628,7 @@ https://www.rfc1437.de/2004/01/16/groklaw-kommentare-zu-den-beweisen-von-sco/ - 2026-03-04T09:20:19.000Z + 2026-03-04T09:20:19.540Z monthly 0.8 @@ -76448,7 +76637,7 @@ https://www.rfc1437.de/2004/01/16/ipod-battery-faq/ - 2026-03-04T09:20:22.000Z + 2026-03-04T09:20:22.743Z monthly 0.8 @@ -76457,7 +76646,7 @@ https://www.rfc1437.de/2004/01/16/krebs-durch-kunstlicht/ - 2026-03-04T09:20:26.000Z + 2026-03-04T09:20:26.907Z monthly 0.8 @@ -76466,7 +76655,7 @@ https://www.rfc1437.de/2004/01/16/simon-willison-this-cld-b-th-mst-ldcrs-tch-ptnt-yt/ - 2026-03-04T09:20:30.000Z + 2026-03-04T09:20:30.621Z monthly 0.8 @@ -76475,7 +76664,7 @@ https://www.rfc1437.de/2004/01/16/tear-your-ipod-mini-open-to-get-the-4gb-hard-drive/ - 2026-03-04T09:20:35.000Z + 2026-03-04T09:20:35.763Z monthly 0.8 @@ -76484,7 +76673,7 @@ https://www.rfc1437.de/2004/01/16/the-new-python/ - 2026-03-04T09:20:39.000Z + 2026-03-04T09:20:39.526Z monthly 0.8 @@ -76493,7 +76682,7 @@ https://www.rfc1437.de/2004/01/16/unifying-types-and-classes-in-python-2-2/ - 2026-03-04T09:20:43.000Z + 2026-03-04T09:20:43.234Z monthly 0.8 @@ -76502,7 +76691,7 @@ https://www.rfc1437.de/2004/01/16/voigtlander-bessa-r2s-r2c/ - 2026-03-04T09:20:46.000Z + 2026-03-04T09:20:46.862Z monthly 0.8 @@ -76511,7 +76700,7 @@ https://www.rfc1437.de/2004/01/15/bayern-will-unterrichtsstoff-um-60-prozent-vrrngrn/ - 2026-03-04T09:20:52.000Z + 2026-03-04T09:20:52.653Z monthly 0.8 @@ -76520,7 +76709,7 @@ https://www.rfc1437.de/2004/01/15/canon-100mm-macro-usm-vs-tamron-90mm-macro/ - 2026-03-04T09:20:56.000Z + 2026-03-04T09:20:56.966Z monthly 0.8 @@ -76529,7 +76718,7 @@ https://www.rfc1437.de/2004/01/15/canon-uk-ef-50mm-f-2-5-macro/ - 2026-03-04T09:21:01.000Z + 2026-03-04T09:21:01.856Z monthly 0.8 @@ -76538,7 +76727,7 @@ https://www.rfc1437.de/2004/01/15/debtakeover-konvertierung-nach-debian/ - 2026-03-04T09:21:06.000Z + 2026-03-04T09:21:06.549Z monthly 0.8 @@ -76547,7 +76736,7 @@ https://www.rfc1437.de/2004/01/15/fingerworks-product-overview-portable/ - 2026-03-04T09:21:10.000Z + 2026-03-04T09:21:10.254Z monthly 0.8 @@ -76556,7 +76745,7 @@ https://www.rfc1437.de/2004/01/15/fm-software/ - 2026-03-04T09:21:13.000Z + 2026-03-04T09:21:13.605Z monthly 0.8 @@ -76565,7 +76754,7 @@ https://www.rfc1437.de/2004/01/15/objektiv-testuebersicht/ - 2026-03-04T09:21:17.000Z + 2026-03-04T09:21:17.266Z monthly 0.8 @@ -76574,7 +76763,7 @@ https://www.rfc1437.de/2004/01/15/registrierungsdaten-per-bookmarklet/ - 2026-03-04T09:21:21.000Z + 2026-03-04T09:21:21.442Z monthly 0.8 @@ -76583,7 +76772,7 @@ https://www.rfc1437.de/2004/01/15/uff-mindstorms-wird-es-weiterhin-geben/ - 2026-03-04T09:21:25.000Z + 2026-03-04T09:21:25.546Z monthly 0.8 @@ -76592,7 +76781,7 @@ https://www.rfc1437.de/2004/01/14/anti-counterfeit-software-implications-for-opn-src/ - 2026-03-04T09:21:29.000Z + 2026-03-04T09:21:29.846Z monthly 0.8 @@ -76601,7 +76790,7 @@ https://www.rfc1437.de/2004/01/14/cdu-politiker-feiertage-mit-urlaub-verrechnen/ - 2026-03-04T09:21:33.000Z + 2026-03-04T09:21:33.968Z monthly 0.8 @@ -76610,7 +76799,7 @@ https://www.rfc1437.de/2004/01/14/deutsche-bahn-ag-das-sorgenkind-feiert-jubilaeum/ - 2026-03-04T09:21:39.000Z + 2026-03-04T09:21:39.474Z monthly 0.8 @@ -76619,7 +76808,7 @@ https://www.rfc1437.de/2004/01/14/deutsche-wirtschaft-hofft-doch-noch-auf-irak-aftrg/ - 2026-03-04T09:21:44.000Z + 2026-03-04T09:21:44.141Z monthly 0.8 @@ -76628,7 +76817,7 @@ https://www.rfc1437.de/2004/01/14/digital-black-and-white/ - 2026-03-04T09:21:48.000Z + 2026-03-04T09:21:48.277Z monthly 0.8 @@ -76637,7 +76826,7 @@ https://www.rfc1437.de/2004/01/14/eichel-macht-weniger-schulden-als-befuerchtet/ - 2026-03-04T09:21:53.000Z + 2026-03-04T09:21:53.393Z monthly 0.8 @@ -76646,7 +76835,7 @@ https://www.rfc1437.de/2004/01/14/hanau-verfahren-gegen-ex-oberbuergermestrn-ngstllt/ - 2026-03-04T09:21:57.000Z + 2026-03-04T09:21:57.519Z monthly 0.8 @@ -76655,7 +76844,7 @@ https://www.rfc1437.de/2004/01/14/jaap-weel-s-homepage/ - 2026-03-04T09:22:01.000Z + 2026-03-04T09:22:01.251Z monthly 0.8 @@ -76664,7 +76853,7 @@ https://www.rfc1437.de/2004/01/14/panotools-plug-ins/ - 2026-03-04T09:22:05.000Z + 2026-03-04T09:22:05.414Z monthly 0.8 @@ -76673,7 +76862,7 @@ https://www.rfc1437.de/2004/01/14/sco-vs-linux-und-dann-kam-der-weihnachtsmann/ - 2026-03-04T09:22:09.000Z + 2026-03-04T09:22:09.518Z monthly 0.8 @@ -76682,7 +76871,7 @@ https://www.rfc1437.de/2004/01/13/grinsekatzen-forever/ - 2026-03-04T09:22:14.000Z + 2026-03-04T09:22:14.185Z monthly 0.8 @@ -76691,7 +76880,7 @@ https://www.rfc1437.de/2004/01/13/immunitaet-fuer-berlusconi-aufgehoben/ - 2026-03-04T09:22:18.000Z + 2026-03-04T09:22:18.309Z monthly 0.8 @@ -76700,7 +76889,7 @@ https://www.rfc1437.de/2004/01/13/kanther-sain-wittgenstein-und-weyrch-kmmn-vr-grcht/ - 2026-03-04T09:22:23.000Z + 2026-03-04T09:22:23.421Z monthly 0.8 @@ -76709,7 +76898,7 @@ https://www.rfc1437.de/2004/01/13/klasse-joerg-schoenenborn/ - 2026-03-04T09:22:28.000Z + 2026-03-04T09:22:28.002Z monthly 0.8 @@ -76718,7 +76907,7 @@ https://www.rfc1437.de/2004/01/13/mysql-5-kennt-stored-procedures/ - 2026-03-04T09:22:33.000Z + 2026-03-04T09:22:33.104Z monthly 0.8 @@ -76727,7 +76916,7 @@ https://www.rfc1437.de/2004/01/13/news-red-hat-uebertraegt-ecos-urheberrechte-an-fsf/ - 2026-03-04T09:22:37.000Z + 2026-03-04T09:22:37.933Z monthly 0.8 @@ -76736,7 +76925,7 @@ https://www.rfc1437.de/2004/01/13/programmatic-interfaces/ - 2026-03-07T21:18:33.000Z + 2026-03-07T21:18:33.141Z monthly 0.8 @@ -76745,7 +76934,7 @@ https://www.rfc1437.de/2004/01/13/subrosasoft-com-ltd-product-information/ - 2026-03-04T09:22:45.000Z + 2026-03-04T09:22:45.445Z monthly 0.8 @@ -76754,7 +76943,7 @@ https://www.rfc1437.de/2004/01/13/tv-nostalgie-die-waltons-sind-zurueck/ - 2026-03-04T09:22:50.000Z + 2026-03-04T09:22:50.494Z monthly 0.8 @@ -76763,7 +76952,7 @@ https://www.rfc1437.de/2004/01/12/ben-bucksch-projects-various-tv-movie-als-xmltv/ - 2026-03-04T09:22:54.000Z + 2026-03-04T09:22:54.171Z monthly 0.8 @@ -76772,7 +76961,7 @@ https://www.rfc1437.de/2004/01/12/dvd-plyr-hrstllr-kss-whrt-sch-ggn-vrwrf-vn-mplyr-n/ - 2026-03-04T09:22:58.000Z + 2026-03-04T09:22:58.814Z monthly 0.8 @@ -76781,7 +76970,7 @@ https://www.rfc1437.de/2004/01/12/genveraenderter-mais-bald-in-supermarkt-regalen/ - 2026-03-04T09:23:03.000Z + 2026-03-04T09:23:03.451Z monthly 0.8 @@ -76790,7 +76979,7 @@ https://www.rfc1437.de/2004/01/12/html-sucks-completely-manual/ - 2026-03-04T09:23:07.000Z + 2026-03-04T09:23:07.093Z monthly 0.8 @@ -76799,7 +76988,7 @@ https://www.rfc1437.de/2004/01/12/intel-contributes-to-anti-sco-linux-fund/ - 2026-03-04T09:23:11.000Z + 2026-03-04T09:23:11.710Z monthly 0.8 @@ -76808,7 +76997,7 @@ https://www.rfc1437.de/2004/01/12/lizardtech-inc-genuine-fractals/ - 2026-03-04T09:23:15.000Z + 2026-03-04T09:23:15.440Z monthly 0.8 @@ -76817,7 +77006,7 @@ https://www.rfc1437.de/2004/01/12/localfeeds-muenster50/ - 2026-03-04T09:23:19.000Z + 2026-03-04T09:23:19.530Z monthly 0.8 @@ -76826,7 +77015,7 @@ https://www.rfc1437.de/2004/01/12/nachlese-zum-ablauf-der-verisign-zertifikate/ - 2026-03-04T09:23:25.000Z + 2026-03-04T09:23:25.116Z monthly 0.8 @@ -76835,7 +77024,7 @@ https://www.rfc1437.de/2004/01/12/news-nochmal-silvester-fuer-unix-benutzer/ - 2026-03-04T09:23:29.000Z + 2026-03-04T09:23:29.694Z monthly 0.8 @@ -76844,7 +77033,7 @@ https://www.rfc1437.de/2004/01/12/rob-galbraith-dpi-photo-transmission-from-kodak/ - 2026-03-04T09:23:33.000Z + 2026-03-04T09:23:33.360Z monthly 0.8 @@ -76853,7 +77042,7 @@ https://www.rfc1437.de/2004/01/12/rob-galbraith-dpi-resuscitating-kodak-dcs-nimh/ - 2026-03-04T09:23:37.000Z + 2026-03-04T09:23:37.737Z monthly 0.8 @@ -76862,7 +77051,7 @@ https://www.rfc1437.de/2004/01/12/the-e3-project/ - 2026-03-04T09:23:42.000Z + 2026-03-04T09:23:42.283Z monthly 0.8 @@ -76871,7 +77060,7 @@ https://www.rfc1437.de/2004/01/12/the-e3-project-2/ - 2026-03-04T09:23:45.000Z + 2026-03-04T09:23:45.547Z monthly 0.8 @@ -76880,7 +77069,7 @@ https://www.rfc1437.de/2004/01/12/us-bomber-wirft-versehentlich-bomb-br-grssbrtnnn-b/ - 2026-03-04T09:23:49.000Z + 2026-03-04T09:23:49.700Z monthly 0.8 @@ -76889,7 +77078,7 @@ https://www.rfc1437.de/2004/01/12/vpwiki-spec-0-1/ - 2026-03-04T09:23:53.000Z + 2026-03-04T09:23:53.423Z monthly 0.8 @@ -76898,7 +77087,7 @@ https://www.rfc1437.de/2004/01/12/vrstzndr-dr-nnnmnstr-knfrnz-frdrt-mhr-gntsch-fngrb/ - 2026-03-04T09:23:58.000Z + 2026-03-04T09:23:58.002Z monthly 0.8 @@ -76907,7 +77096,7 @@ https://www.rfc1437.de/2004/01/12/wir-werden-gezwungen-gentechnik-zu-unterstuetzen/ - 2026-03-04T09:24:02.000Z + 2026-03-04T09:24:02.637Z monthly 0.8 @@ -76916,7 +77105,7 @@ https://www.rfc1437.de/2004/01/11/fdp-politiker-fuer-abschaffung-von-feiertagen/ - 2026-03-04T09:24:07.000Z + 2026-03-04T09:24:07.692Z monthly 0.8 @@ -76925,7 +77114,7 @@ https://www.rfc1437.de/2004/01/11/lego-baut-wieder-auf-steine/ - 2026-03-04T09:24:12.000Z + 2026-03-04T09:24:12.374Z monthly 0.8 @@ -76934,7 +77123,7 @@ https://www.rfc1437.de/2004/01/11/linktagmeaning-atom-wiki/ - 2026-03-04T09:24:15.000Z + 2026-03-04T09:24:15.991Z monthly 0.8 @@ -76943,7 +77132,7 @@ https://www.rfc1437.de/2004/01/11/praxisgebuehr-mitgehangen-mitgefangen/ - 2026-03-04T09:24:20.000Z + 2026-03-04T09:24:20.570Z monthly 0.8 @@ -76952,7 +77141,7 @@ https://www.rfc1437.de/2004/01/11/schlswg-hlstns-nnnmnstr-wll-plz-zgrff-f-ntrnt-kndn/ - 2026-03-04T09:24:25.000Z + 2026-03-04T09:24:25.226Z monthly 0.8 @@ -76961,7 +77150,7 @@ https://www.rfc1437.de/2004/01/11/traffic-kosten-bei-groesseren-hostingprojekten/ - 2026-03-04T09:24:30.000Z + 2026-03-04T09:24:30.247Z monthly 0.8 @@ -76970,7 +77159,7 @@ https://www.rfc1437.de/2004/01/10/befuerchtungen-zum-europaschn-hftbfhl-wrdn-brtrffn/ - 2026-03-04T09:24:34.000Z + 2026-03-04T09:24:34.810Z monthly 0.8 @@ -76979,7 +77168,7 @@ https://www.rfc1437.de/2004/01/10/der-hp-ipod/ - 2026-03-04T09:24:39.000Z + 2026-03-04T09:24:39.253Z monthly 0.8 @@ -76988,7 +77177,7 @@ https://www.rfc1437.de/2004/01/10/die-decke-faellt-uns-auf-den-kopf/ - 2026-03-04T09:24:43.000Z + 2026-03-04T09:24:43.353Z monthly 0.8 @@ -76997,7 +77186,7 @@ https://www.rfc1437.de/2004/01/10/elmo-the-electronic-mail-operator/ - 2026-03-04T09:24:46.000Z + 2026-03-04T09:24:46.527Z monthly 0.8 @@ -77006,7 +77195,7 @@ https://www.rfc1437.de/2004/01/10/project-info-for-jellybean/ - 2026-03-04T09:24:49.000Z + 2026-03-04T09:24:49.743Z monthly 0.8 @@ -77015,7 +77204,7 @@ https://www.rfc1437.de/2004/01/10/rapid-application-development-using-pyqt-and/ - 2026-03-04T09:24:53.000Z + 2026-03-04T09:24:53.471Z monthly 0.8 @@ -77024,7 +77213,7 @@ https://www.rfc1437.de/2004/01/09/blogger-api/ - 2026-03-04T09:24:56.000Z + 2026-03-04T09:24:56.703Z monthly 0.8 @@ -77033,7 +77222,7 @@ https://www.rfc1437.de/2004/01/09/chaotic-intransient-prose-bursts-ecto-is-here/ - 2026-03-07T21:18:35.000Z + 2026-03-07T21:18:35.012Z monthly 0.8 @@ -77042,7 +77231,7 @@ https://www.rfc1437.de/2004/01/09/hochdruck-wenn-der-pinguin-mal-muss/ - 2026-03-04T09:25:04.000Z + 2026-03-04T09:25:04.446Z monthly 0.8 @@ -77051,7 +77240,7 @@ https://www.rfc1437.de/2004/01/09/kinder-dna-datei-fuer-klau-kids/ - 2026-03-04T09:25:08.000Z + 2026-03-04T09:25:08.584Z monthly 0.8 @@ -77060,7 +77249,7 @@ https://www.rfc1437.de/2004/01/09/quicksub/ - 2026-03-04T09:25:11.000Z + 2026-03-04T09:25:11.787Z monthly 0.8 @@ -77069,7 +77258,7 @@ https://www.rfc1437.de/2004/01/09/rfc-metaweblog-api/ - 2026-03-04T09:25:15.000Z + 2026-03-04T09:25:15.019Z monthly 0.8 @@ -77078,7 +77267,7 @@ https://www.rfc1437.de/2004/01/09/rfc-really-simple-discoverability-1-0/ - 2026-03-04T09:25:18.000Z + 2026-03-04T09:25:18.720Z monthly 0.8 @@ -77087,7 +77276,7 @@ https://www.rfc1437.de/2004/01/08/auf-luegen-programmiert/ - 2026-03-04T09:25:23.000Z + 2026-03-04T09:25:23.373Z monthly 0.8 @@ -77096,7 +77285,7 @@ https://www.rfc1437.de/2004/01/08/esa-schreibt-beagle-2-ab/ - 2026-03-04T09:25:27.000Z + 2026-03-04T09:25:27.453Z monthly 0.8 @@ -77105,7 +77294,7 @@ https://www.rfc1437.de/2004/01/08/keyspan-launches-usb-device-server/ - 2026-03-04T09:25:31.000Z + 2026-03-04T09:25:31.728Z monthly 0.8 @@ -77114,7 +77303,7 @@ https://www.rfc1437.de/2004/01/08/kodak-cleaning-imager-coverglass-and-filters/ - 2026-03-07T21:18:36.000Z + 2026-03-07T21:18:36.793Z monthly 0.8 @@ -77123,7 +77312,7 @@ https://www.rfc1437.de/2004/01/08/kodak-dcs-520/ - 2026-03-04T09:25:39.000Z + 2026-03-04T09:25:39.843Z monthly 0.8 @@ -77132,7 +77321,7 @@ https://www.rfc1437.de/2004/01/08/mehrheit-der-deutschen-haelt-politiker-fuer-korrpt/ - 2026-03-04T09:25:44.000Z + 2026-03-04T09:25:44.851Z monthly 0.8 @@ -77141,7 +77330,7 @@ https://www.rfc1437.de/2004/01/08/nrw-droht-grippewelle/ - 2026-03-04T09:25:49.000Z + 2026-03-04T09:25:49.036Z monthly 0.8 @@ -77150,7 +77339,7 @@ https://www.rfc1437.de/2004/01/08/photoshop-keine-lizenz-zum-gelddrucken/ - 2026-03-04T09:25:54.000Z + 2026-03-04T09:25:54.061Z monthly 0.8 @@ -77159,7 +77348,7 @@ https://www.rfc1437.de/2004/01/08/rau-nachfolge-der-schaeuble-der-kanns/ - 2026-03-04T09:25:58.000Z + 2026-03-04T09:25:58.179Z monthly 0.8 @@ -77168,7 +77357,7 @@ https://www.rfc1437.de/2004/01/08/vorabversion-von-gimp-20-verfuegbar/ - 2026-03-04T09:26:02.000Z + 2026-03-04T09:26:02.364Z monthly 0.8 @@ -77177,7 +77366,7 @@ https://www.rfc1437.de/2004/01/07/acerola-fruit-facts/ - 2026-03-04T09:26:06.000Z + 2026-03-04T09:26:06.024Z monthly 0.8 @@ -77186,7 +77375,7 @@ https://www.rfc1437.de/2004/01/07/aduna/ - 2026-03-04T09:26:09.000Z + 2026-03-04T09:26:09.241Z monthly 0.8 @@ -77195,7 +77384,7 @@ https://www.rfc1437.de/2004/01/07/asciidoc-home-page/ - 2026-03-04T09:26:12.000Z + 2026-03-04T09:26:12.523Z monthly 0.8 @@ -77204,7 +77393,7 @@ https://www.rfc1437.de/2004/01/07/bizarrer-zwilling-enthuellt-sein-geheimnis/ - 2026-03-04T09:26:16.000Z + 2026-03-04T09:26:16.644Z monthly 0.8 @@ -77213,7 +77402,7 @@ https://www.rfc1437.de/2004/01/07/blogroll-visualized/ - 2026-03-04T09:26:20.000Z + 2026-03-04T09:26:20.807Z monthly 0.8 @@ -77222,7 +77411,7 @@ https://www.rfc1437.de/2004/01/07/cl-sdl-common-lisp-bindings-for-sdl/ - 2026-03-04T09:26:24.000Z + 2026-03-04T09:26:24.487Z monthly 0.8 @@ -77231,7 +77420,7 @@ https://www.rfc1437.de/2004/01/07/drpython/ - 2026-03-04T09:26:27.000Z + 2026-03-04T09:26:27.709Z monthly 0.8 @@ -77240,7 +77429,7 @@ https://www.rfc1437.de/2004/01/07/hoeren-und-sehen-nur-noch-fuer-betuchte/ - 2026-03-04T09:26:32.000Z + 2026-03-04T09:26:32.844Z monthly 0.8 @@ -77249,7 +77438,7 @@ https://www.rfc1437.de/2004/01/07/hp-12c-fuer-mac-os-x/ - 2026-03-04T09:26:36.000Z + 2026-03-04T09:26:36.727Z monthly 0.8 @@ -77258,7 +77447,7 @@ https://www.rfc1437.de/2004/01/07/mambo-at-the-yard/ - 2026-03-04T09:26:40.000Z + 2026-03-04T09:26:40.500Z monthly 0.8 @@ -77267,7 +77456,7 @@ https://www.rfc1437.de/2004/01/07/movitz-a-common-lisp-os-development-platform/ - 2026-03-04T09:26:45.000Z + 2026-03-04T09:26:45.046Z monthly 0.8 @@ -77276,7 +77465,7 @@ https://www.rfc1437.de/2004/01/07/openvpn-an-open-source-vpn-solution-by-james-yonan/ - 2026-03-04T09:26:48.000Z + 2026-03-04T09:26:48.722Z monthly 0.8 @@ -77285,7 +77474,7 @@ https://www.rfc1437.de/2004/01/07/photonet-reviews-hp-photosmart-7960/ - 2026-03-04T09:26:53.000Z + 2026-03-04T09:26:53.467Z monthly 0.8 @@ -77294,7 +77483,7 @@ https://www.rfc1437.de/2004/01/07/what-is-mac-os-x/ - 2026-03-04T09:26:57.000Z + 2026-03-04T09:26:57.135Z monthly 0.8 @@ -77303,7 +77492,7 @@ https://www.rfc1437.de/2004/01/06/advanced-bash-scripting-guide-2/ - 2026-03-04T09:27:00.000Z + 2026-03-04T09:27:00.751Z monthly 0.8 @@ -77312,7 +77501,7 @@ https://www.rfc1437.de/2004/01/06/ein-zehntel-der-praxisgebuehr-fuer-buerokratie/ - 2026-03-04T09:27:05.000Z + 2026-03-04T09:27:05.387Z monthly 0.8 @@ -77321,7 +77510,7 @@ https://www.rfc1437.de/2004/01/06/mambo-open-source/ - 2026-03-04T09:27:09.000Z + 2026-03-04T09:27:09.958Z monthly 0.8 @@ -77330,7 +77519,7 @@ https://www.rfc1437.de/2004/01/06/mamboos-documentation-home-page/ - 2026-03-04T09:27:13.000Z + 2026-03-04T09:27:13.626Z monthly 0.8 @@ -77339,7 +77528,7 @@ https://www.rfc1437.de/2004/01/06/mamboportal-com-mambo-open-source-cms-portal/ - 2026-03-04T09:27:17.000Z + 2026-03-04T09:27:17.260Z monthly 0.8 @@ -77348,7 +77537,7 @@ https://www.rfc1437.de/2004/01/06/mos/ - 2026-03-04T09:27:20.000Z + 2026-03-04T09:27:20.479Z monthly 0.8 @@ -77357,7 +77546,7 @@ https://www.rfc1437.de/2004/01/06/mt-daapd-home-page/ - 2026-03-04T09:27:24.000Z + 2026-03-04T09:27:24.701Z monthly 0.8 @@ -77366,7 +77555,7 @@ https://www.rfc1437.de/2004/01/06/nasa-die-iss-hat-moeglicherweise-ein-leck/ - 2026-03-04T09:27:28.000Z + 2026-03-04T09:27:28.854Z monthly 0.8 @@ -77375,7 +77564,7 @@ https://www.rfc1437.de/2004/01/06/registrar-network-solutions-verunsichert-strt-kndn/ - 2026-03-04T09:27:33.000Z + 2026-03-04T09:27:33.019Z monthly 0.8 @@ -77384,7 +77573,7 @@ https://www.rfc1437.de/2004/01/06/rwe-bittet-privatkunden-zur-kasse/ - 2026-03-04T09:27:38.000Z + 2026-03-04T09:27:38.406Z monthly 0.8 @@ -77393,7 +77582,7 @@ https://www.rfc1437.de/2004/01/06/scg-st-phane-ducasse-free-books/ - 2026-03-04T09:27:42.000Z + 2026-03-04T09:27:42.146Z monthly 0.8 @@ -77402,7 +77591,7 @@ https://www.rfc1437.de/2004/01/06/schuetzt-kaffee-vor-diabetes/ - 2026-03-04T09:27:47.000Z + 2026-03-04T09:27:47.219Z monthly 0.8 @@ -77411,7 +77600,7 @@ https://www.rfc1437.de/2004/01/06/uade-unix-amiga-delitracker-emulator-an-amiga/ - 2026-03-04T09:27:50.000Z + 2026-03-04T09:27:50.901Z monthly 0.8 @@ -77420,7 +77609,7 @@ https://www.rfc1437.de/2004/01/06/webgres/ - 2026-03-04T09:27:54.000Z + 2026-03-04T09:27:54.271Z monthly 0.8 @@ -77429,7 +77618,7 @@ https://www.rfc1437.de/2004/01/06/whatos-free-real-time-operating-system-rtos/ - 2026-03-04T09:27:58.000Z + 2026-03-04T09:27:58.025Z monthly 0.8 @@ -77438,7 +77627,7 @@ https://www.rfc1437.de/2004/01/06/yops-de-what-are-you-waiting-for/ - 2026-03-04T09:28:01.000Z + 2026-03-04T09:28:01.815Z monthly 0.8 @@ -77447,7 +77636,7 @@ https://www.rfc1437.de/2004/01/05/commerzbank-kuendigt-betriebsrenten/ - 2026-03-04T09:28:06.000Z + 2026-03-04T09:28:06.433Z monthly 0.8 @@ -77456,7 +77645,7 @@ https://www.rfc1437.de/2004/01/05/cvs-module-for-apache/ - 2026-03-04T09:28:10.000Z + 2026-03-04T09:28:10.118Z monthly 0.8 @@ -77465,7 +77654,7 @@ https://www.rfc1437.de/2004/01/05/daten-aus-der-steckdose-muell-im-funk/ - 2026-03-04T09:28:14.000Z + 2026-03-04T09:28:14.797Z monthly 0.8 @@ -77474,7 +77663,7 @@ https://www.rfc1437.de/2004/01/05/die-unertraegliche-leichtigkeit-des-steins-teil-2/ - 2026-03-04T09:28:19.000Z + 2026-03-04T09:28:19.343Z monthly 0.8 @@ -77483,7 +77672,7 @@ https://www.rfc1437.de/2004/01/05/mailman-discard-home/ - 2026-03-04T09:28:23.000Z + 2026-03-04T09:28:23.072Z monthly 0.8 @@ -77492,7 +77681,7 @@ https://www.rfc1437.de/2004/01/05/neooffice-j-home-2/ - 2026-03-04T09:28:26.000Z + 2026-03-04T09:28:26.700Z monthly 0.8 @@ -77501,7 +77690,7 @@ https://www.rfc1437.de/2004/01/05/news-verletzung-der-gpl-durch-kiss-technology/ - 2026-03-04T09:28:31.000Z + 2026-03-04T09:28:31.383Z monthly 0.8 @@ -77510,7 +77699,7 @@ https://www.rfc1437.de/2004/01/05/seven-see-offending-sco-code-linuxworld-feedback/ - 2026-03-04T09:28:35.000Z + 2026-03-04T09:28:35.983Z monthly 0.8 @@ -77519,7 +77708,7 @@ https://www.rfc1437.de/2004/01/05/the-best-page-in-the-universe/ - 2026-03-04T09:28:39.000Z + 2026-03-04T09:28:39.806Z monthly 0.8 @@ -77528,7 +77717,7 @@ https://www.rfc1437.de/2004/01/05/www-alscher-ch-gt-podboard/ - 2026-03-04T09:28:43.000Z + 2026-03-04T09:28:43.442Z monthly 0.8 @@ -77537,7 +77726,7 @@ https://www.rfc1437.de/2004/01/04/canonware-onyx/ - 2026-03-07T21:18:38.000Z + 2026-03-07T21:18:38.125Z monthly 0.8 @@ -77546,7 +77735,7 @@ https://www.rfc1437.de/2004/01/04/cooperating-systems-helloworld-overview/ - 2026-03-04T09:28:50.000Z + 2026-03-04T09:28:50.377Z monthly 0.8 @@ -77555,7 +77744,7 @@ https://www.rfc1437.de/2004/01/04/gd-hackers-xcode-and-dylan/ - 2026-03-04T09:28:54.000Z + 2026-03-04T09:28:54.732Z monthly 0.8 @@ -77564,7 +77753,7 @@ https://www.rfc1437.de/2004/01/04/gesund-dank-schokolade/ - 2026-03-04T09:28:59.000Z + 2026-03-04T09:28:59.733Z monthly 0.8 @@ -77573,7 +77762,7 @@ https://www.rfc1437.de/2004/01/04/hausarrest-fuer-alle-kinder-unter-14-jahren/ - 2026-03-04T09:29:04.000Z + 2026-03-04T09:29:04.442Z monthly 0.8 @@ -77582,7 +77771,7 @@ https://www.rfc1437.de/2004/01/04/omniweb-5-preview/ - 2026-03-04T09:29:09.000Z + 2026-03-04T09:29:09.062Z monthly 0.8 @@ -77591,7 +77780,7 @@ https://www.rfc1437.de/2004/01/04/originalanleitung-yashica-fx-103-programm/ - 2026-03-04T09:29:12.000Z + 2026-03-04T09:29:12.894Z monthly 0.8 @@ -77600,7 +77789,7 @@ https://www.rfc1437.de/2004/01/04/snakelets-simple-python-web-app-server/ - 2026-03-04T09:29:16.000Z + 2026-03-04T09:29:16.595Z monthly 0.8 @@ -77609,7 +77798,7 @@ https://www.rfc1437.de/2004/01/03/adapters-leica-r-or-nikon-f-to-eos-nbsp/ - 2026-03-04T09:29:20.000Z + 2026-03-04T09:29:20.276Z monthly 0.8 @@ -77618,7 +77807,7 @@ https://www.rfc1437.de/2004/01/03/die-deutschen-sollen-laenger-schuften/ - 2026-03-04T09:29:24.000Z + 2026-03-04T09:29:24.454Z monthly 0.8 @@ -77627,7 +77816,7 @@ https://www.rfc1437.de/2004/01/03/fauxident/ - 2026-03-07T21:18:41.000Z + 2026-03-07T21:18:41.732Z monthly 0.8 @@ -77636,7 +77825,7 @@ https://www.rfc1437.de/2004/01/03/hosting-at-common-lisp-net/ - 2026-03-04T09:29:31.000Z + 2026-03-04T09:29:31.508Z monthly 0.8 @@ -77645,7 +77834,7 @@ https://www.rfc1437.de/2004/01/03/panoramafreiheit-mit-luecken/ - 2026-03-04T09:29:36.000Z + 2026-03-04T09:29:36.792Z monthly 0.8 @@ -77654,7 +77843,7 @@ https://www.rfc1437.de/2004/01/03/rollei-6008i-camera-review/ - 2026-03-04T09:29:41.000Z + 2026-03-04T09:29:41.099Z monthly 0.8 @@ -77663,7 +77852,7 @@ https://www.rfc1437.de/2004/01/03/t-mobile-team/ - 2026-03-04T09:29:44.000Z + 2026-03-04T09:29:44.756Z monthly 0.8 @@ -77672,7 +77861,7 @@ https://www.rfc1437.de/2004/01/03/the-bastard-operator-from-hell-official-archive/ - 2026-03-04T09:29:48.000Z + 2026-03-04T09:29:48.400Z monthly 0.8 @@ -77681,7 +77870,7 @@ https://www.rfc1437.de/2004/01/03/uebergang-von-telekom-zu-t-mobile-mit-pannen/ - 2026-03-04T09:29:53.000Z + 2026-03-04T09:29:53.210Z monthly 0.8 @@ -77690,7 +77879,7 @@ https://www.rfc1437.de/2004/01/02/ari-paparo-dot-com-big-list-of-blog-search-engines/ - 2026-03-04T09:29:56.000Z + 2026-03-04T09:29:56.966Z monthly 0.8 @@ -77699,7 +77888,7 @@ https://www.rfc1437.de/2004/01/02/augenuntersuchung-kostet-nicht-extra/ - 2026-03-04T09:30:01.000Z + 2026-03-04T09:30:01.734Z monthly 0.8 @@ -77708,7 +77897,7 @@ https://www.rfc1437.de/2004/01/02/bahntarifdschungel/ - 2026-03-04T09:30:06.000Z + 2026-03-04T09:30:06.332Z monthly 0.8 @@ -77717,7 +77906,7 @@ https://www.rfc1437.de/2004/01/02/bis-zu-zehn-prozent-der-milchstrasse-bewohnbar/ - 2026-03-04T09:30:10.000Z + 2026-03-04T09:30:10.497Z monthly 0.8 @@ -77726,7 +77915,7 @@ https://www.rfc1437.de/2004/01/02/clisp-an-ansi-common-lisp/ - 2026-03-04T09:30:14.000Z + 2026-03-04T09:30:14.196Z monthly 0.8 @@ -77735,7 +77924,7 @@ https://www.rfc1437.de/2004/01/02/der-wankelmotor-und-sein-erfinder-felix-wankel/ - 2026-03-04T09:30:17.000Z + 2026-03-04T09:30:17.916Z monthly 0.8 @@ -77744,7 +77933,7 @@ https://www.rfc1437.de/2004/01/02/gnunet/ - 2026-03-04T09:30:21.000Z + 2026-03-04T09:30:21.147Z monthly 0.8 @@ -77753,7 +77942,7 @@ https://www.rfc1437.de/2004/01/02/groklaw-ein-bischen-hintergrnd-z-dr-b-bhptng-vn-sc/ - 2026-03-04T09:30:25.000Z + 2026-03-04T09:30:25.369Z monthly 0.8 @@ -77762,7 +77951,7 @@ https://www.rfc1437.de/2004/01/02/homonym-alarm/ - 2026-03-04T09:30:29.000Z + 2026-03-04T09:30:29.624Z monthly 0.8 @@ -77771,7 +77960,7 @@ https://www.rfc1437.de/2004/01/02/ipython-an-enhanced-interactive-python-2/ - 2026-03-04T09:30:32.000Z + 2026-03-04T09:30:32.908Z monthly 0.8 @@ -77780,7 +77969,7 @@ https://www.rfc1437.de/2004/01/02/kabissa-browse-the-world-wide-web-by-email/ - 2026-03-04T09:30:36.000Z + 2026-03-04T09:30:36.723Z monthly 0.8 @@ -77789,7 +77978,7 @@ https://www.rfc1437.de/2004/01/02/linuxworld-linuxs-other-file-sharing-software/ - 2026-03-04T09:30:41.000Z + 2026-03-04T09:30:41.910Z monthly 0.8 @@ -77798,7 +77987,7 @@ https://www.rfc1437.de/2004/01/02/spd-politiker-maas-stachelt-kopftuchstreit-an/ - 2026-03-04T09:30:46.000Z + 2026-03-04T09:30:46.593Z monthly 0.8 @@ -77807,7 +77996,7 @@ https://www.rfc1437.de/2004/01/02/substanz-im-rotwein-wirkt-gegen-krebs/ - 2026-03-04T09:30:50.000Z + 2026-03-04T09:30:50.735Z monthly 0.8 @@ -77816,7 +78005,7 @@ https://www.rfc1437.de/2004/01/02/url-python-software-livinglogic-ag/ - 2026-03-04T09:30:54.000Z + 2026-03-04T09:30:54.408Z monthly 0.8 @@ -77825,7 +78014,7 @@ https://www.rfc1437.de/2004/01/01/adobe-photoshop-7-sketch-effect/ - 2026-03-04T09:30:58.000Z + 2026-03-04T09:30:58.081Z monthly 0.8 @@ -77834,7 +78023,7 @@ https://www.rfc1437.de/2004/01/01/das-a-und-o-der-terrorsuche/ - 2026-03-04T09:31:02.000Z + 2026-03-04T09:31:02.309Z monthly 0.8 @@ -77843,7 +78032,7 @@ https://www.rfc1437.de/2004/01/01/feed-parser-dive-into-mark/ - 2026-03-04T09:31:05.000Z + 2026-03-04T09:31:05.938Z monthly 0.8 @@ -77852,7 +78041,7 @@ https://www.rfc1437.de/2004/01/01/fighting-to-save-hubble-telescope-from-fiery-death/ - 2026-03-04T09:31:10.000Z + 2026-03-04T09:31:10.580Z monthly 0.8 @@ -77861,7 +78050,7 @@ https://www.rfc1437.de/2004/01/01/forbescom-linuxs-hit-men/ - 2026-03-04T09:31:15.000Z + 2026-03-04T09:31:15.178Z monthly 0.8 @@ -77870,7 +78059,7 @@ https://www.rfc1437.de/2004/01/01/nyetwork-wiki-miniwiki/ - 2026-03-04T09:31:18.000Z + 2026-03-04T09:31:18.842Z monthly 0.8 @@ -77879,7 +78068,7 @@ https://www.rfc1437.de/2004/01/01/perl-monks-the-monastery-gates/ - 2026-03-04T09:31:22.000Z + 2026-03-04T09:31:22.093Z monthly 0.8 @@ -77888,7 +78077,7 @@ https://www.rfc1437.de/2003/12/31/core-team-von-xfree86-loest-sich-auf/ - 2026-03-04T09:31:26.000Z + 2026-03-04T09:31:26.766Z monthly 0.8 @@ -77897,7 +78086,7 @@ https://www.rfc1437.de/2003/12/31/ein-ueberdimensionales-fanbuch-frisst-die-aerzte-f/ - 2026-03-04T09:31:31.000Z + 2026-03-04T09:31:31.393Z monthly 0.8 @@ -77906,7 +78095,7 @@ https://www.rfc1437.de/2003/12/31/mindlube-software-developer-revclips/ - 2026-03-04T09:31:35.000Z + 2026-03-04T09:31:35.065Z monthly 0.8 @@ -77915,7 +78104,7 @@ https://www.rfc1437.de/2003/12/31/ritterschlag-fuer-web-erfinder-tim-berners-lee/ - 2026-03-04T09:31:40.000Z + 2026-03-04T09:31:40.496Z monthly 0.8 @@ -77924,7 +78113,7 @@ https://www.rfc1437.de/2003/12/31/runtime-revolution-user-centric-software/ - 2026-03-04T09:31:44.000Z + 2026-03-04T09:31:44.101Z monthly 0.8 @@ -77933,7 +78122,7 @@ https://www.rfc1437.de/2003/12/30/lython-lisp-for-python/ - 2026-03-04T09:31:47.000Z + 2026-03-04T09:31:47.722Z monthly 0.8 @@ -77942,7 +78131,7 @@ https://www.rfc1437.de/2003/12/29/berlusconis-merkwuerdige-definition-eines-triumphs/ - 2026-03-04T09:31:52.000Z + 2026-03-04T09:31:52.351Z monthly 0.8 @@ -77951,7 +78140,7 @@ https://www.rfc1437.de/2003/12/29/linux-magazin-ssh/ - 2026-03-04T09:31:57.000Z + 2026-03-04T09:31:57.394Z monthly 0.8 @@ -77960,7 +78149,7 @@ https://www.rfc1437.de/2003/12/29/rules-for-bookmarklets/ - 2026-03-04T09:32:00.000Z + 2026-03-04T09:32:00.682Z monthly 0.8 @@ -77969,7 +78158,7 @@ https://www.rfc1437.de/2003/12/28/bundespraesident-rau-redet-klartext/ - 2026-03-04T09:32:04.000Z + 2026-03-04T09:32:04.812Z monthly 0.8 @@ -77978,7 +78167,7 @@ https://www.rfc1437.de/2003/12/28/ricke-brothers-matrix-xp/ - 2026-03-04T09:32:08.000Z + 2026-03-04T09:32:08.396Z monthly 0.8 @@ -77987,7 +78176,7 @@ https://www.rfc1437.de/2003/12/28/studienportal-bachelor-kulturwissenschaften/ - 2026-03-04T09:32:12.000Z + 2026-03-04T09:32:12.569Z monthly 0.8 @@ -77996,7 +78185,7 @@ https://www.rfc1437.de/2003/12/27/awm-abfallwirtschaftsbetriebe-muenster/ - 2026-03-04T09:32:16.000Z + 2026-03-04T09:32:16.236Z monthly 0.8 @@ -78005,7 +78194,7 @@ https://www.rfc1437.de/2003/12/27/bundesrechnungshof-ruegt-finanzierung-der-sterrfrm/ - 2026-03-04T09:32:20.000Z + 2026-03-04T09:32:20.854Z monthly 0.8 @@ -78014,7 +78203,7 @@ https://www.rfc1437.de/2003/12/27/clement-noch-18000-ohne-lehrstelle/ - 2026-03-04T09:32:25.000Z + 2026-03-04T09:32:25.444Z monthly 0.8 @@ -78023,7 +78212,7 @@ https://www.rfc1437.de/2003/12/27/fabforce-net/ - 2026-03-04T09:32:28.000Z + 2026-03-04T09:32:28.729Z monthly 0.8 @@ -78032,7 +78221,7 @@ https://www.rfc1437.de/2003/12/27/land-der-haeuptlinge/ - 2026-03-04T09:32:32.000Z + 2026-03-04T09:32:32.254Z monthly 0.8 @@ -78041,7 +78230,7 @@ https://www.rfc1437.de/2003/12/27/macosxhints-share-an-internet-connection-with-a/ - 2026-03-04T09:32:36.000Z + 2026-03-04T09:32:36.647Z monthly 0.8 @@ -78050,7 +78239,7 @@ https://www.rfc1437.de/2003/12/27/nussknacker/ - 2026-03-04T09:32:41.000Z + 2026-03-04T09:32:41.046Z monthly 0.8 @@ -78059,7 +78248,7 @@ https://www.rfc1437.de/2003/12/27/reiskugeln-in-mangosauce/ - 2026-03-04T09:44:51.000Z + 2026-03-04T09:44:51.223Z monthly 0.8 @@ -78068,7 +78257,7 @@ https://www.rfc1437.de/2003/12/27/technohappymeal-sharing-your-mac-s-internet/ - 2026-03-04T09:44:55.000Z + 2026-03-04T09:44:55.184Z monthly 0.8 @@ -78077,7 +78266,7 @@ https://www.rfc1437.de/2003/12/27/vorwaerts-dem-vergessen-entgegen/ - 2026-03-04T09:44:58.000Z + 2026-03-04T09:44:58.450Z monthly 0.8 @@ -78086,7 +78275,7 @@ https://www.rfc1437.de/2003/12/26/ein-religioeses-gefaengnis/ - 2026-03-04T09:45:01.000Z + 2026-03-04T09:45:01.802Z monthly 0.8 @@ -78095,7 +78284,7 @@ https://www.rfc1437.de/2003/12/26/lachen-wirkt-wie-kokain/ - 2026-03-04T09:45:04.000Z + 2026-03-04T09:45:04.999Z monthly 0.8 @@ -78104,7 +78293,7 @@ https://www.rfc1437.de/2003/12/26/mars-mission-esa-zittert-um-den-beagle/ - 2026-03-04T09:45:08.000Z + 2026-03-04T09:45:08.757Z monthly 0.8 @@ -78113,7 +78302,7 @@ https://www.rfc1437.de/2003/12/26/toothpasteworld-world-s-largest-toothpaste/ - 2026-03-04T09:45:11.000Z + 2026-03-04T09:45:11.853Z monthly 0.8 @@ -78122,7 +78311,7 @@ https://www.rfc1437.de/2003/12/25/bah-humbug/ - 2026-03-04T09:45:15.000Z + 2026-03-04T09:45:15.018Z monthly 0.8 @@ -78131,7 +78320,7 @@ https://www.rfc1437.de/2003/12/25/gsi-lizenzen-schoene-bescherung-fuer-fassa-bortolo/ - 2026-03-04T09:45:18.000Z + 2026-03-04T09:45:18.547Z monthly 0.8 @@ -78140,7 +78329,7 @@ https://www.rfc1437.de/2003/12/25/open-source-open-genera/ - 2026-03-04T09:45:21.000Z + 2026-03-04T09:45:21.358Z monthly 0.8 @@ -78149,7 +78338,7 @@ https://www.rfc1437.de/2003/12/25/way-out-of-the-box/ - 2026-03-04T09:45:24.000Z + 2026-03-04T09:45:24.856Z monthly 0.8 @@ -78158,7 +78347,7 @@ https://www.rfc1437.de/2003/12/25/welcome-to-erights-org/ - 2026-03-04T09:45:27.000Z + 2026-03-04T09:45:27.632Z monthly 0.8 @@ -78167,7 +78356,7 @@ https://www.rfc1437.de/2003/12/24/the-mgr-window-system-howto/ - 2026-03-04T09:45:30.000Z + 2026-03-04T09:45:30.395Z monthly 0.8 @@ -78176,7 +78365,7 @@ https://www.rfc1437.de/2003/12/24/windowshade-x/ - 2026-03-04T09:45:33.000Z + 2026-03-04T09:45:33.200Z monthly 0.8 @@ -78185,7 +78374,7 @@ https://www.rfc1437.de/2003/12/23/anke-engelke-wird-der-neue-harald-schmidt/ - 2026-03-04T09:45:36.000Z + 2026-03-04T09:45:36.633Z monthly 0.8 @@ -78194,7 +78383,7 @@ https://www.rfc1437.de/2003/12/23/cmake-cross-platform-make/ - 2026-03-04T09:45:39.000Z + 2026-03-04T09:45:39.063Z monthly 0.8 @@ -78203,7 +78392,7 @@ https://www.rfc1437.de/2003/12/23/divmod-lupy-overview/ - 2026-03-04T09:45:41.000Z + 2026-03-04T09:45:41.852Z monthly 0.8 @@ -78212,7 +78401,7 @@ https://www.rfc1437.de/2003/12/23/docindexer/ - 2026-03-04T09:45:44.000Z + 2026-03-04T09:45:44.269Z monthly 0.8 @@ -78221,7 +78410,7 @@ https://www.rfc1437.de/2003/12/23/groklaw-linus-kommentare-zu-angeblichen-sco-files/ - 2026-03-04T09:45:48.000Z + 2026-03-04T09:45:48.074Z monthly 0.8 @@ -78230,7 +78419,7 @@ https://www.rfc1437.de/2003/12/23/lwn-scos-copyright-letter/ - 2026-03-04T09:45:51.000Z + 2026-03-04T09:45:51.165Z monthly 0.8 @@ -78239,7 +78428,7 @@ https://www.rfc1437.de/2003/12/23/mbs-temperature-monitor/ - 2026-03-04T09:45:53.000Z + 2026-03-04T09:45:53.909Z monthly 0.8 @@ -78248,7 +78437,7 @@ https://www.rfc1437.de/2003/12/23/moviemistakes-com-welcome/ - 2026-03-04T09:45:56.000Z + 2026-03-04T09:45:56.324Z monthly 0.8 @@ -78257,7 +78446,7 @@ https://www.rfc1437.de/2003/12/23/novell-registers-unix-copyrights/ - 2026-03-04T09:46:00.000Z + 2026-03-04T09:46:00.127Z monthly 0.8 @@ -78266,7 +78455,7 @@ https://www.rfc1437.de/2003/12/23/nsf-lp-pr-03-147-rsrchrs-dvlp-nnscl-fbrs-tht-r-thn/ - 2026-03-04T09:46:03.000Z + 2026-03-04T09:46:03.566Z monthly 0.8 @@ -78275,7 +78464,7 @@ https://www.rfc1437.de/2003/12/23/powerbook-luefter-und-safari-tabs/ - 2026-03-04T09:46:07.000Z + 2026-03-04T09:46:07.020Z monthly 0.8 @@ -78284,7 +78473,7 @@ https://www.rfc1437.de/2003/12/23/prefab-ui-browser/ - 2026-03-04T09:46:09.000Z + 2026-03-04T09:46:09.770Z monthly 0.8 @@ -78293,7 +78482,7 @@ https://www.rfc1437.de/2003/12/23/taco-software-freeware-for-mac-os-x/ - 2026-03-04T09:46:12.000Z + 2026-03-04T09:46:12.523Z monthly 0.8 @@ -78302,7 +78491,7 @@ https://www.rfc1437.de/2003/12/23/unreliable-guide-to-locking/ - 2026-03-04T09:46:15.000Z + 2026-03-04T09:46:15.277Z monthly 0.8 @@ -78311,7 +78500,7 @@ https://www.rfc1437.de/2003/12/22/d-souflis-tinyscheme-download-site/ - 2026-03-04T09:46:18.000Z + 2026-03-04T09:46:18.076Z monthly 0.8 @@ -78320,7 +78509,7 @@ https://www.rfc1437.de/2003/12/22/lego-schliesst-2003-wieder-mit-minus-ab/ - 2026-03-04T09:46:21.000Z + 2026-03-04T09:46:21.855Z monthly 0.8 @@ -78329,7 +78518,7 @@ https://www.rfc1437.de/2003/12/22/sco-vs-linux-loyale-kunden/ - 2026-03-04T09:46:25.000Z + 2026-03-04T09:46:25.308Z monthly 0.8 @@ -78338,7 +78527,7 @@ https://www.rfc1437.de/2003/12/21/ard-buffet-teledoktor-speichelsteine/ - 2026-03-04T09:46:28.000Z + 2026-03-04T09:46:28.399Z monthly 0.8 @@ -78347,7 +78536,7 @@ https://www.rfc1437.de/2003/12/21/blogging-and-publicity/ - 2026-03-04T09:46:31.000Z + 2026-03-04T09:46:31.538Z monthly 0.8 @@ -78356,7 +78545,7 @@ https://www.rfc1437.de/2003/12/21/correcting-myths-from-bjrn-lomborg/ - 2026-03-04T09:46:34.000Z + 2026-03-04T09:46:34.696Z monthly 0.8 @@ -78365,7 +78554,7 @@ https://www.rfc1437.de/2003/12/21/hobbythek-duefte-des-orients-weihrauch-und-myrrhe/ - 2026-03-04T09:46:37.000Z + 2026-03-04T09:46:37.901Z monthly 0.8 @@ -78374,7 +78563,7 @@ https://www.rfc1437.de/2003/12/21/igm-mac-os-flight-sim-resource/ - 2026-03-04T09:46:41.000Z + 2026-03-04T09:46:41.186Z monthly 0.8 @@ -78383,7 +78572,7 @@ https://www.rfc1437.de/2003/12/21/medicine-worldwide-speicheldruesen-entzuendung/ - 2026-03-04T09:46:44.000Z + 2026-03-04T09:46:44.324Z monthly 0.8 @@ -78392,7 +78581,7 @@ https://www.rfc1437.de/2003/12/21/openmcl/ - 2026-03-04T09:46:47.000Z + 2026-03-04T09:46:47.110Z monthly 0.8 @@ -78401,7 +78590,7 @@ https://www.rfc1437.de/2003/12/21/polaroid-dust-amp-scratch-removal/ - 2026-03-04T09:46:49.000Z + 2026-03-04T09:46:49.967Z monthly 0.8 @@ -78410,7 +78599,7 @@ https://www.rfc1437.de/2003/12/21/scientific-american-a-response-to-lomborgs-rebuttl/ - 2026-03-04T09:46:53.000Z + 2026-03-04T09:46:53.483Z monthly 0.8 @@ -78419,7 +78608,7 @@ https://www.rfc1437.de/2003/12/21/speichelsteine/ - 2026-03-04T09:46:55.000Z + 2026-03-04T09:46:55.960Z monthly 0.8 @@ -78428,7 +78617,7 @@ https://www.rfc1437.de/2003/12/21/speichelsteine-2/ - 2026-03-04T09:46:58.000Z + 2026-03-04T09:46:58.437Z monthly 0.8 @@ -78437,7 +78626,7 @@ https://www.rfc1437.de/2003/12/21/stereo-photographie-im-mittelformat/ - 2026-03-04T09:47:01.000Z + 2026-03-04T09:47:01.259Z monthly 0.8 @@ -78446,7 +78635,7 @@ https://www.rfc1437.de/2003/12/21/weihnachtsmuetzenhandel/ - 2026-03-04T09:47:04.000Z + 2026-03-04T09:47:04.573Z monthly 0.8 @@ -78455,7 +78644,7 @@ https://www.rfc1437.de/2003/12/21/x-plane/ - 2026-03-04T09:47:07.000Z + 2026-03-04T09:47:07.067Z monthly 0.8 @@ -78464,7 +78653,7 @@ https://www.rfc1437.de/2003/12/20/aus-alt-mach-neu-und-teurer/ - 2026-03-04T09:47:10.000Z + 2026-03-04T09:47:10.625Z monthly 0.8 @@ -78473,7 +78662,7 @@ https://www.rfc1437.de/2003/12/20/musizieren/ - 2026-03-04T09:47:13.000Z + 2026-03-04T09:47:13.137Z monthly 0.8 @@ -78482,7 +78671,7 @@ https://www.rfc1437.de/2003/12/19/freshmeat-net-project-details-for-postgresql-log/ - 2026-03-04T09:47:16.000Z + 2026-03-04T09:47:16.375Z monthly 0.8 @@ -78491,7 +78680,7 @@ https://www.rfc1437.de/2003/12/19/fujifilms-20-megapixels-at-a-prc-dgtl-phtgrphy-rvw/ - 2026-03-04T09:47:20.000Z + 2026-03-04T09:47:20.283Z monthly 0.8 @@ -78500,7 +78689,7 @@ https://www.rfc1437.de/2003/12/19/lost-highway/ - 2026-03-04T09:47:23.000Z + 2026-03-04T09:47:23.541Z monthly 0.8 @@ -78509,7 +78698,7 @@ https://www.rfc1437.de/2003/12/19/news-usa-verbieten-export-von-linux-in-den-irak/ - 2026-03-04T09:47:26.000Z + 2026-03-04T09:47:26.383Z monthly 0.8 @@ -78518,7 +78707,7 @@ https://www.rfc1437.de/2003/12/19/searchcpanorg-richard-clamp-perl-10-16/ - 2026-03-04T09:47:29.000Z + 2026-03-04T09:47:29.258Z monthly 0.8 @@ -78527,7 +78716,7 @@ https://www.rfc1437.de/2003/12/19/ticker-mars-express-wdrde-forschung/ - 2026-03-04T09:47:33.000Z + 2026-03-04T09:47:33.255Z monthly 0.8 @@ -78536,7 +78725,7 @@ https://www.rfc1437.de/2003/12/19/welcome-to-macscripter-net-applescript-and-script/ - 2026-03-04T09:47:36.000Z + 2026-03-04T09:47:36.460Z monthly 0.8 @@ -78545,7 +78734,7 @@ https://www.rfc1437.de/2003/12/18/apple-releases-battery-update-11-for-portables/ - 2026-03-04T09:47:39.000Z + 2026-03-04T09:47:39.786Z monthly 0.8 @@ -78554,7 +78743,7 @@ https://www.rfc1437.de/2003/12/18/concurrent-versions-librarian/ - 2026-03-04T09:47:42.000Z + 2026-03-04T09:47:42.408Z monthly 0.8 @@ -78563,7 +78752,7 @@ https://www.rfc1437.de/2003/12/18/errico-malatesta/ - 2026-03-04T09:47:45.000Z + 2026-03-04T09:47:45.318Z monthly 0.8 @@ -78572,7 +78761,7 @@ https://www.rfc1437.de/2003/12/18/examples-of-complex-rendering/ - 2026-03-04T09:47:48.000Z + 2026-03-04T09:47:48.302Z monthly 0.8 @@ -78581,7 +78770,7 @@ https://www.rfc1437.de/2003/12/18/hypernext-home/ - 2026-03-04T09:47:50.000Z + 2026-03-04T09:47:50.984Z monthly 0.8 @@ -78590,7 +78779,7 @@ https://www.rfc1437.de/2003/12/18/macos-x-smalltalk/ - 2026-03-04T09:47:53.000Z + 2026-03-04T09:47:53.622Z monthly 0.8 @@ -78599,7 +78788,7 @@ https://www.rfc1437.de/2003/12/17/aspn-python-cookbook-complex-boolean-regular/ - 2026-03-04T09:47:57.000Z + 2026-03-04T09:47:57.064Z monthly 0.8 @@ -78608,7 +78797,7 @@ https://www.rfc1437.de/2003/12/17/aspn-python-cookbook-length-limited-o-1-lru-cache/ - 2026-03-04T09:48:00.000Z + 2026-03-04T09:48:00.496Z monthly 0.8 @@ -78617,7 +78806,7 @@ https://www.rfc1437.de/2003/12/17/der-euro-ist-ein-teuro/ - 2026-03-04T09:48:04.000Z + 2026-03-04T09:48:04.380Z monthly 0.8 @@ -78626,7 +78815,7 @@ https://www.rfc1437.de/2003/12/17/freshmeat-net-freshmeat-freshmeat-xml-rpc-api/ - 2026-03-04T09:48:07.000Z + 2026-03-04T09:48:07.536Z monthly 0.8 @@ -78635,7 +78824,7 @@ https://www.rfc1437.de/2003/12/17/ich-agleben-auf-eigene-rechnung/ - 2026-03-04T09:48:11.000Z + 2026-03-04T09:48:11.069Z monthly 0.8 @@ -78644,7 +78833,7 @@ https://www.rfc1437.de/2003/12/17/launchbar-for-mac-os-x/ - 2026-03-04T09:48:14.000Z + 2026-03-04T09:48:14.261Z monthly 0.8 @@ -78653,7 +78842,7 @@ https://www.rfc1437.de/2003/12/17/ndiswrapper/ - 2026-03-04T09:48:17.000Z + 2026-03-04T09:48:17.078Z monthly 0.8 @@ -78662,7 +78851,7 @@ https://www.rfc1437.de/2003/12/17/schill-aus-eigener-partei-geflogen/ - 2026-03-04T09:48:20.000Z + 2026-03-04T09:48:20.720Z monthly 0.8 @@ -78671,7 +78860,7 @@ https://www.rfc1437.de/2003/12/16/d-link-deutschland-gmbh-dbt-900ap/ - 2026-03-04T09:48:24.000Z + 2026-03-04T09:48:24.354Z monthly 0.8 @@ -78680,7 +78869,7 @@ https://www.rfc1437.de/2003/12/16/eastgate-tinderbox-the-tool-for-notes/ - 2026-03-04T09:48:27.000Z + 2026-03-04T09:48:27.673Z monthly 0.8 @@ -78689,7 +78878,7 @@ https://www.rfc1437.de/2003/12/16/endgueltiger-rauswurf-von-schill/ - 2026-03-04T09:48:32.000Z + 2026-03-04T09:48:32.792Z monthly 0.8 @@ -78698,7 +78887,7 @@ https://www.rfc1437.de/2003/12/16/entzauberung-der-open-source-entwickler-mythen/ - 2026-03-04T09:48:36.000Z + 2026-03-04T09:48:36.993Z monthly 0.8 @@ -78707,7 +78896,7 @@ https://www.rfc1437.de/2003/12/16/get-the-scoop-on-scoop-open-source-directory/ - 2026-03-04T09:48:40.000Z + 2026-03-04T09:48:40.959Z monthly 0.8 @@ -78716,7 +78905,7 @@ https://www.rfc1437.de/2003/12/16/hugs-98/ - 2026-03-04T09:48:43.000Z + 2026-03-04T09:48:43.986Z monthly 0.8 @@ -78725,7 +78914,7 @@ https://www.rfc1437.de/2003/12/16/kaestner-raus-aus-den-schulen/ - 2026-03-04T09:48:48.000Z + 2026-03-04T09:48:48.253Z monthly 0.8 @@ -78734,7 +78923,7 @@ https://www.rfc1437.de/2003/12/16/pyobjc-home/ - 2026-03-04T09:48:51.000Z + 2026-03-04T09:48:51.265Z monthly 0.8 @@ -78743,7 +78932,7 @@ https://www.rfc1437.de/2003/12/16/the-harvestman-webcrawler-robot/ - 2026-03-04T09:48:54.000Z + 2026-03-04T09:48:54.649Z monthly 0.8 @@ -78752,7 +78941,7 @@ https://www.rfc1437.de/2003/12/15/armstrong-heisser-flirt-mit-sheryl-crow/ - 2026-03-04T09:48:58.000Z + 2026-03-04T09:48:58.962Z monthly 0.8 @@ -78761,7 +78950,7 @@ https://www.rfc1437.de/2003/12/15/fotografie-willem-wernsen-weblog/ - 2026-03-04T09:49:02.000Z + 2026-03-04T09:49:02.434Z monthly 0.8 @@ -78770,7 +78959,7 @@ https://www.rfc1437.de/2003/12/15/groklaw-dokumentation-eines-weiteren-sco-lnx-hckrs/ - 2026-03-04T09:49:07.000Z + 2026-03-04T09:49:07.204Z monthly 0.8 @@ -78779,7 +78968,7 @@ https://www.rfc1437.de/2003/12/15/mdnkit-installation-guide/ - 2026-03-04T09:49:10.000Z + 2026-03-04T09:49:10.649Z monthly 0.8 @@ -78788,7 +78977,7 @@ https://www.rfc1437.de/2003/12/15/medienrevolution-oder-tagebuecher/ - 2026-03-04T09:49:15.000Z + 2026-03-04T09:49:15.016Z monthly 0.8 @@ -78797,7 +78986,7 @@ https://www.rfc1437.de/2003/12/15/rfc-3492-punicode/ - 2026-03-04T09:49:18.000Z + 2026-03-04T09:49:18.540Z monthly 0.8 @@ -78806,7 +78995,7 @@ https://www.rfc1437.de/2003/12/15/superdrive/ - 2026-03-04T09:49:21.000Z + 2026-03-04T09:49:21.571Z monthly 0.8 @@ -78815,7 +79004,7 @@ https://www.rfc1437.de/2003/12/14/hooray-for-hewlett-packard/ - 2026-03-04T09:49:26.000Z + 2026-03-04T09:49:26.356Z monthly 0.8 @@ -78824,7 +79013,7 @@ https://www.rfc1437.de/2003/12/14/inkjet-list-hp-inkjet-linux-driver-1-5-release/ - 2026-03-04T09:49:30.000Z + 2026-03-04T09:49:30.266Z monthly 0.8 @@ -78833,7 +79022,7 @@ https://www.rfc1437.de/2003/12/14/lucky-strike-originals-tivoli-model-three/ - 2026-03-04T09:49:33.000Z + 2026-03-04T09:49:33.743Z monthly 0.8 @@ -78842,7 +79031,7 @@ https://www.rfc1437.de/2003/12/14/macht-powerpoint-bloed/ - 2026-03-04T09:49:38.000Z + 2026-03-04T09:49:38.630Z monthly 0.8 @@ -78851,7 +79040,7 @@ https://www.rfc1437.de/2003/12/14/radio-days/ - 2026-03-04T09:49:42.000Z + 2026-03-04T09:49:42.995Z monthly 0.8 @@ -78860,7 +79049,7 @@ https://www.rfc1437.de/2003/12/14/second-p0st-repairing-metakit-databases/ - 2026-03-04T11:47:44.000Z + 2026-03-04T11:47:44.499Z monthly 0.8 @@ -78869,7 +79058,7 @@ https://www.rfc1437.de/2003/12/14/the-museum-of-hp-calculators/ - 2026-03-04T11:47:46.000Z + 2026-03-04T11:47:46.889Z monthly 0.8 @@ -78878,7 +79067,7 @@ https://www.rfc1437.de/2003/12/14/wiki-calculators-main-homepage/ - 2026-03-04T11:47:49.000Z + 2026-03-04T11:47:49.554Z monthly 0.8 @@ -78887,7 +79076,7 @@ https://www.rfc1437.de/2003/12/13/saubere-entsorgung-bazillus-hat-hunger-auf/ - 2026-03-04T11:47:52.000Z + 2026-03-04T11:47:52.615Z monthly 0.8 @@ -78896,7 +79085,7 @@ https://www.rfc1437.de/2003/12/12/die-zeit-30-2003-c-die-zeit-artikeltitel-der-zeit/ - 2026-03-04T11:47:55.000Z + 2026-03-04T11:47:55.656Z monthly 0.8 @@ -78905,7 +79094,7 @@ https://www.rfc1437.de/2003/12/12/die-zeit-mit-rss/ - 2026-03-04T11:47:58.000Z + 2026-03-04T11:47:58.357Z monthly 0.8 @@ -78914,7 +79103,7 @@ https://www.rfc1437.de/2003/12/12/groklaw-die-mitschrift-des-gerichtstermins/ - 2026-03-04T11:48:01.000Z + 2026-03-04T11:48:01.746Z monthly 0.8 @@ -78923,7 +79112,7 @@ https://www.rfc1437.de/2003/12/12/ipodhead-com/ - 2026-03-04T11:48:04.000Z + 2026-03-04T11:48:04.089Z monthly 0.8 @@ -78932,7 +79121,7 @@ https://www.rfc1437.de/2003/12/12/leica-digilux-2-the-bigger-picture-digital/ - 2026-03-04T11:48:07.000Z + 2026-03-04T11:48:07.080Z monthly 0.8 @@ -78941,7 +79130,7 @@ https://www.rfc1437.de/2003/12/12/minolta-digital-slr-next-year-and-more/ - 2026-03-04T11:48:10.000Z + 2026-03-04T11:48:10.457Z monthly 0.8 @@ -78950,7 +79139,7 @@ https://www.rfc1437.de/2003/12/12/put-the-curser-automatically-in-a-forms-field/ - 2026-03-04T11:48:13.000Z + 2026-03-04T11:48:13.130Z monthly 0.8 @@ -78959,7 +79148,7 @@ https://www.rfc1437.de/2003/12/12/schill-fraktion-ohne-schill/ - 2026-03-04T11:48:16.000Z + 2026-03-04T11:48:16.138Z monthly 0.8 @@ -78968,7 +79157,7 @@ https://www.rfc1437.de/2003/12/12/supybot/ - 2026-03-04T11:48:18.000Z + 2026-03-04T11:48:18.486Z monthly 0.8 @@ -78977,7 +79166,7 @@ https://www.rfc1437.de/2003/12/12/the-onion-ceo-s-marital-duties-outsourced-to/ - 2026-03-04T11:48:21.000Z + 2026-03-04T11:48:21.162Z monthly 0.8 @@ -78986,7 +79175,7 @@ https://www.rfc1437.de/2003/12/12/xsdb-html-index/ - 2026-03-04T11:48:23.000Z + 2026-03-04T11:48:23.512Z monthly 0.8 @@ -78995,7 +79184,7 @@ https://www.rfc1437.de/2003/12/11/a-garbage-collector-for-c-and-c/ - 2026-03-04T11:48:26.000Z + 2026-03-04T11:48:26.181Z monthly 0.8 @@ -79004,7 +79193,7 @@ https://www.rfc1437.de/2003/12/11/applescript-the-definitive-guide-released/ - 2026-03-04T11:48:29.000Z + 2026-03-04T11:48:29.222Z monthly 0.8 @@ -79013,7 +79202,7 @@ https://www.rfc1437.de/2003/12/11/atom-raumschiff-soll-leben-finden/ - 2026-03-04T11:48:32.000Z + 2026-03-04T11:48:32.559Z monthly 0.8 @@ -79022,7 +79211,7 @@ https://www.rfc1437.de/2003/12/11/focusfixer-by-fixerlabs/ - 2026-03-04T11:48:35.000Z + 2026-03-04T11:48:35.238Z monthly 0.8 @@ -79031,7 +79220,7 @@ https://www.rfc1437.de/2003/12/11/groklaw-ueber-scos-angebliche-pfrrll-ns-dds-ngrffs/ - 2026-03-04T11:48:38.000Z + 2026-03-04T11:48:38.601Z monthly 0.8 @@ -79040,7 +79229,7 @@ https://www.rfc1437.de/2003/12/11/jsch-java-secure-channel/ - 2026-03-04T11:48:40.000Z + 2026-03-04T11:48:40.947Z monthly 0.8 @@ -79049,7 +79238,7 @@ https://www.rfc1437.de/2003/12/11/look-ma-i-didnt-make-it-one-more-time/ - 2026-03-04T11:48:43.000Z + 2026-03-04T11:48:43.943Z monthly 0.8 @@ -79058,7 +79247,7 @@ https://www.rfc1437.de/2003/12/11/lufs-python/ - 2026-03-04T11:48:47.000Z + 2026-03-04T11:48:47.320Z monthly 0.8 @@ -79067,7 +79256,7 @@ https://www.rfc1437.de/2003/12/11/netzeitung-irak-fotogrf-nchtwy-b-ngrff-n-rk-vrltzt/ - 2026-03-04T11:48:50.000Z + 2026-03-04T11:48:50.648Z monthly 0.8 @@ -79076,7 +79265,7 @@ https://www.rfc1437.de/2003/12/11/neues-feature-blogmarks/ - 2026-03-04T11:48:53.000Z + 2026-03-04T11:48:53.987Z monthly 0.8 @@ -79085,7 +79274,7 @@ https://www.rfc1437.de/2003/12/11/perthon-python-to-perl-language-translation/ - 2026-03-04T11:48:57.000Z + 2026-03-04T11:48:57.019Z monthly 0.8 @@ -79094,7 +79283,7 @@ https://www.rfc1437.de/2003/12/11/scummvm/ - 2026-03-04T11:48:59.000Z + 2026-03-04T11:48:59.366Z monthly 0.8 @@ -79103,7 +79292,7 @@ https://www.rfc1437.de/2003/12/11/smile-von-satimage-software/ - 2026-03-04T11:49:02.000Z + 2026-03-04T11:49:02.684Z monthly 0.8 @@ -79112,7 +79301,7 @@ https://www.rfc1437.de/2003/12/11/trueblur-by-fixerlabs/ - 2026-03-04T11:49:05.000Z + 2026-03-04T11:49:05.348Z monthly 0.8 @@ -79121,7 +79310,7 @@ https://www.rfc1437.de/2003/12/11/tucholsky-hat-eben-immer-noch-recht/ - 2026-03-04T11:49:08.000Z + 2026-03-04T11:49:08.680Z monthly 0.8 @@ -79130,7 +79319,7 @@ https://www.rfc1437.de/2003/12/10/gefaelschte-urls-im-internet-explorer/ - 2026-03-04T11:49:11.000Z + 2026-03-04T11:49:11.712Z monthly 0.8 @@ -79139,7 +79328,7 @@ https://www.rfc1437.de/2003/12/10/harald-schmidt-hoert-auf-na-und/ - 2026-03-04T11:49:14.000Z + 2026-03-04T11:49:14.721Z monthly 0.8 @@ -79148,7 +79337,7 @@ https://www.rfc1437.de/2003/12/10/ironpython-benchmarks/ - 2026-03-04T11:49:18.000Z + 2026-03-04T11:49:18.065Z monthly 0.8 @@ -79157,7 +79346,7 @@ https://www.rfc1437.de/2003/12/10/news-microsoft-der-motor-linux-die-bremse/ - 2026-03-04T11:49:21.000Z + 2026-03-04T11:49:21.444Z monthly 0.8 @@ -79166,7 +79355,7 @@ https://www.rfc1437.de/2003/12/10/verwirrung-um-microsoft-patches/ - 2026-03-04T11:49:24.000Z + 2026-03-04T11:49:24.762Z monthly 0.8 @@ -79175,7 +79364,7 @@ https://www.rfc1437.de/2003/12/09/groklaw-erklaert-was-genau-sco-alles-ibm-vrlgn-mss/ - 2026-03-04T11:49:28.000Z + 2026-03-04T11:49:28.148Z monthly 0.8 @@ -79184,7 +79373,7 @@ https://www.rfc1437.de/2003/12/09/insekten-aktion-rettt-dn-bmhmmr-wssnschft-spgl-nln/ - 2026-03-04T11:49:31.000Z + 2026-03-04T11:49:31.813Z monthly 0.8 @@ -79193,7 +79382,7 @@ https://www.rfc1437.de/2003/12/09/medley-lisp/ - 2026-03-04T11:49:35.000Z + 2026-03-04T11:49:35.530Z monthly 0.8 @@ -79202,7 +79391,7 @@ https://www.rfc1437.de/2003/12/09/neuwahlen-in-hamburg/ - 2026-03-04T11:49:39.000Z + 2026-03-04T11:49:39.204Z monthly 0.8 @@ -79211,7 +79400,7 @@ https://www.rfc1437.de/2003/12/09/paedophilie-ab-jetzt-sind-die-opfer-schuld/ - 2026-03-04T11:49:42.000Z + 2026-03-04T11:49:42.598Z monthly 0.8 @@ -79220,7 +79409,7 @@ https://www.rfc1437.de/2003/12/09/slate-language-website/ - 2026-03-04T11:49:45.000Z + 2026-03-04T11:49:45.937Z monthly 0.8 @@ -79229,7 +79418,7 @@ https://www.rfc1437.de/2003/12/08/atpm-912-atpo-outliner-use-patterns/ - 2026-03-04T11:49:49.000Z + 2026-03-04T11:49:49.277Z monthly 0.8 @@ -79238,7 +79427,7 @@ https://www.rfc1437.de/2003/12/08/aus-der-traum-vom-broetchenservice-im-zug/ - 2026-03-04T11:49:52.000Z + 2026-03-04T11:49:52.662Z monthly 0.8 @@ -79247,7 +79436,7 @@ https://www.rfc1437.de/2003/12/08/rsa-576-geknackt/ - 2026-03-04T11:49:56.000Z + 2026-03-04T11:49:56.367Z monthly 0.8 @@ -79256,7 +79445,7 @@ https://www.rfc1437.de/2003/12/08/schill-ignoriert-entmachtung/ - 2026-03-04T11:49:59.000Z + 2026-03-04T11:49:59.748Z monthly 0.8 @@ -79265,7 +79454,7 @@ https://www.rfc1437.de/2003/12/08/sco-releases-draconian-nda/ - 2026-03-04T11:50:03.000Z + 2026-03-04T11:50:03.083Z monthly 0.8 @@ -79274,7 +79463,7 @@ https://www.rfc1437.de/2003/12/07/britische-gefangene-sollen-in-guantnamo-bleiben/ - 2026-03-04T11:50:06.000Z + 2026-03-04T11:50:06.495Z monthly 0.8 @@ -79283,7 +79472,7 @@ https://www.rfc1437.de/2003/12/07/niedrigfrequenz/ - 2026-03-04T11:50:09.000Z + 2026-03-04T11:50:09.862Z monthly 0.8 @@ -79292,7 +79481,7 @@ https://www.rfc1437.de/2003/12/07/sco-verschiebt-bilanzkonferenz-zum-dritten-quartal/ - 2026-03-04T11:50:13.000Z + 2026-03-04T11:50:13.949Z monthly 0.8 @@ -79301,7 +79490,7 @@ https://www.rfc1437.de/2003/12/06/cruel-and-tender-fotografie-und-das-wirkliche/ - 2026-03-04T11:50:16.000Z + 2026-03-04T11:50:16.996Z monthly 0.8 @@ -79310,7 +79499,7 @@ https://www.rfc1437.de/2003/12/06/schill-entmachtet-schill/ - 2026-03-04T11:50:21.000Z + 2026-03-04T11:50:21.115Z monthly 0.8 @@ -79319,7 +79508,7 @@ https://www.rfc1437.de/2003/12/06/schwarze-loecher-im-miniformat/ - 2026-03-04T11:50:24.000Z + 2026-03-04T11:50:24.166Z monthly 0.8 @@ -79328,7 +79517,7 @@ https://www.rfc1437.de/2003/12/05/security-what-security/ - 2026-03-04T11:50:29.000Z + 2026-03-04T11:50:29.429Z monthly 0.8 @@ -79337,7 +79526,7 @@ https://www.rfc1437.de/2003/12/05/software-aktualisierung-wird-aktualisiert/ - 2026-03-04T11:50:32.000Z + 2026-03-04T11:50:32.901Z monthly 0.8 @@ -79346,7 +79535,7 @@ https://www.rfc1437.de/2003/12/04/deutsche-schule-sechs-setzen/ - 2026-03-04T11:50:36.000Z + 2026-03-04T11:50:36.313Z monthly 0.8 @@ -79355,7 +79544,7 @@ https://www.rfc1437.de/2003/12/04/microsofts-fat-charges/ - 2026-03-04T11:50:39.000Z + 2026-03-04T11:50:39.722Z monthly 0.8 @@ -79364,7 +79553,7 @@ https://www.rfc1437.de/2003/12/04/rsync-uebers-netz-verwundbar/ - 2026-03-04T11:50:42.000Z + 2026-03-04T11:50:42.778Z monthly 0.8 @@ -79373,7 +79562,7 @@ https://www.rfc1437.de/2003/12/04/what-the-copywright-law-really-says-score0/ - 2026-03-04T11:50:46.000Z + 2026-03-04T11:50:46.251Z monthly 0.8 @@ -79382,7 +79571,7 @@ https://www.rfc1437.de/2003/12/03/der-amerikanische-dissident/ - 2026-03-04T11:50:49.000Z + 2026-03-04T11:50:49.684Z monthly 0.8 @@ -79391,7 +79580,7 @@ https://www.rfc1437.de/2003/12/03/deutschland-sucht-das-superblog-ohne-mich/ - 2026-03-04T11:50:52.000Z + 2026-03-04T11:50:52.823Z monthly 0.8 @@ -79400,7 +79589,7 @@ https://www.rfc1437.de/2003/12/03/groklaw-scos-eigen-btlgng-n-dn-ngblchn-lznzvrstssn/ - 2026-03-04T11:50:56.000Z + 2026-03-04T11:50:56.614Z monthly 0.8 @@ -79409,7 +79598,7 @@ https://www.rfc1437.de/2003/12/03/kuhl-spenden-kamen-von-moellemann/ - 2026-03-04T11:51:00.000Z + 2026-03-04T11:51:00.420Z monthly 0.8 @@ -79418,7 +79607,7 @@ https://www.rfc1437.de/2003/12/03/marca-heras-will-zu-liberty/ - 2026-03-04T11:51:03.000Z + 2026-03-04T11:51:03.851Z monthly 0.8 @@ -79427,7 +79616,7 @@ https://www.rfc1437.de/2003/12/03/usa-drohen-schurkenstaaten-mit-konsequenzen/ - 2026-03-04T11:51:07.000Z + 2026-03-04T11:51:07.731Z monthly 0.8 @@ -79436,7 +79625,7 @@ https://www.rfc1437.de/2003/12/02/bug-im-linux-kernel-ermoeglichte-enbrch-n-dbn-srvr/ - 2026-03-04T11:51:11.000Z + 2026-03-04T11:51:11.172Z monthly 0.8 @@ -79445,7 +79634,7 @@ https://www.rfc1437.de/2003/12/02/delfinblut-taucht-das-meer-in-tiefes-rot/ - 2026-03-04T11:51:14.000Z + 2026-03-04T11:51:14.682Z monthly 0.8 @@ -79454,7 +79643,7 @@ https://www.rfc1437.de/2003/12/02/kfz-kennzeichn-bmhnr-zht-frdrngn-ggn-dmn-nhbr-zrck/ - 2026-03-04T11:51:18.000Z + 2026-03-04T11:51:18.514Z monthly 0.8 @@ -79463,7 +79652,7 @@ https://www.rfc1437.de/2003/12/02/pharma-unternehmen-wird-hauptsponsor-des-bdr/ - 2026-03-04T11:51:22.000Z + 2026-03-04T11:51:22.341Z monthly 0.8 @@ -79472,7 +79661,7 @@ https://www.rfc1437.de/2003/12/01/apache-mod-auth-remote/ - 2026-03-04T11:51:25.000Z + 2026-03-04T11:51:25.850Z monthly 0.8 @@ -79481,7 +79670,7 @@ https://www.rfc1437.de/2003/12/01/leica-digilux-2/ - 2026-03-04T11:51:29.000Z + 2026-03-04T11:51:29.704Z monthly 0.8 @@ -79490,7 +79679,7 @@ https://www.rfc1437.de/2003/12/01/schufte-und-verzichte-fuer-das-deutsche-vaterland/ - 2026-03-04T11:51:33.000Z + 2026-03-04T11:51:33.226Z monthly 0.8 @@ -79499,7 +79688,7 @@ https://www.rfc1437.de/2003/12/01/spd-arbeitskres-flmndstr-zgt-mnschnvrchtnds-wltbld/ - 2026-03-04T11:51:36.000Z + 2026-03-04T11:51:36.715Z monthly 0.8 @@ -79508,7 +79697,7 @@ https://www.rfc1437.de/2003/11/30/bill-kearney-macos-doesnt-cut-it-in-the-enterprise/ - 2026-03-04T11:51:40.000Z + 2026-03-04T11:51:40.208Z monthly 0.8 @@ -79517,7 +79706,7 @@ https://www.rfc1437.de/2003/11/30/mksql-sql-fuer-metakit-in-python/ - 2026-03-04T11:51:43.000Z + 2026-03-04T11:51:43.763Z monthly 0.8 @@ -79526,7 +79715,7 @@ https://www.rfc1437.de/2003/11/30/what-the-heck-is-a-type/ - 2026-03-04T11:51:47.000Z + 2026-03-04T11:51:47.228Z monthly 0.8 @@ -79535,7 +79724,7 @@ https://www.rfc1437.de/2003/11/29/der-beste-kommt-aus-nrw/ - 2026-03-04T11:51:50.000Z + 2026-03-04T11:51:50.406Z monthly 0.8 @@ -79544,7 +79733,7 @@ https://www.rfc1437.de/2003/11/29/entwickler-von-file-sharing-software-verhaftet/ - 2026-03-04T11:51:53.000Z + 2026-03-04T11:51:53.913Z monthly 0.8 @@ -79553,7 +79742,7 @@ https://www.rfc1437.de/2003/11/29/just-posted-olympus-e-1-full-review/ - 2026-03-04T11:51:57.000Z + 2026-03-04T11:51:57.474Z monthly 0.8 @@ -79562,7 +79751,7 @@ https://www.rfc1437.de/2003/11/28/anwalt-gegen-anwalt-holt-schon-mal-cola-und-popcrn/ - 2026-03-04T11:52:01.000Z + 2026-03-04T11:52:01.330Z monthly 0.8 @@ -79571,7 +79760,7 @@ https://www.rfc1437.de/2003/11/28/das-e-business-weblog-das-ende-des-bloggens/ - 2026-03-04T11:52:04.000Z + 2026-03-04T11:52:04.868Z monthly 0.8 @@ -79580,7 +79769,7 @@ https://www.rfc1437.de/2003/11/28/europa-gibt-auf-galileo-wird-abhaengig-von-den-usa/ - 2026-03-04T11:52:08.000Z + 2026-03-04T11:52:08.725Z monthly 0.8 @@ -79589,7 +79778,7 @@ https://www.rfc1437.de/2003/11/28/groklaw-der-brief-von-sco-an-ibm-aus-dem-mai/ - 2026-03-04T11:52:12.000Z + 2026-03-04T11:52:12.035Z monthly 0.8 @@ -79598,7 +79787,7 @@ https://www.rfc1437.de/2003/11/28/interview-mit-danilo-hondo-ich-denke-ans-grun-trkt/ - 2026-03-04T11:52:16.000Z + 2026-03-04T11:52:16.240Z monthly 0.8 @@ -79607,7 +79796,7 @@ https://www.rfc1437.de/2003/11/28/ipod-akku-spiegel/ - 2026-03-04T11:52:20.000Z + 2026-03-04T11:52:20.563Z monthly 0.8 @@ -79616,7 +79805,7 @@ https://www.rfc1437.de/2003/11/28/konflikt-zwischen-blog-und-arbeitgeber/ - 2026-03-04T11:52:24.000Z + 2026-03-04T11:52:24.495Z monthly 0.8 @@ -79625,7 +79814,7 @@ https://www.rfc1437.de/2003/11/28/the-early-history-of-smalltalk/ - 2026-03-04T11:52:27.000Z + 2026-03-04T11:52:27.741Z monthly 0.8 @@ -79634,7 +79823,7 @@ https://www.rfc1437.de/2003/11/28/urteil-gegen-domains-mit-staedtenamen-rechtskraftg/ - 2026-03-04T11:52:31.000Z + 2026-03-04T11:52:31.363Z monthly 0.8 @@ -79643,7 +79832,7 @@ https://www.rfc1437.de/2003/11/27/contax-sl300r-t-announced/ - 2026-03-04T11:52:35.000Z + 2026-03-04T11:52:35.275Z monthly 0.8 @@ -79652,7 +79841,7 @@ https://www.rfc1437.de/2003/11/27/das-ergebnis-des-untersuchungsausschsss-zm-whlbtrg/ - 2026-03-04T11:52:39.000Z + 2026-03-04T11:52:39.709Z monthly 0.8 @@ -79661,7 +79850,7 @@ https://www.rfc1437.de/2003/11/27/interview-mit-friedhelm-hengsbach/ - 2026-03-04T11:52:43.000Z + 2026-03-04T11:52:43.804Z monthly 0.8 @@ -79670,7 +79859,7 @@ https://www.rfc1437.de/2003/11/27/patienten-prozessieren-wegen-roboter-pfusch/ - 2026-03-04T11:52:47.000Z + 2026-03-04T11:52:47.958Z monthly 0.8 @@ -79679,7 +79868,7 @@ https://www.rfc1437.de/2003/11/27/polizeiuebergriffe-auf-linke-medien-in-hamburg/ - 2026-03-04T11:52:51.000Z + 2026-03-04T11:52:51.551Z monthly 0.8 @@ -79688,7 +79877,7 @@ https://www.rfc1437.de/2003/11/27/schwerwiegender-fehler-in-verschlsslngs-sftwr-gnpg/ - 2026-03-04T11:52:55.000Z + 2026-03-04T11:52:55.262Z monthly 0.8 @@ -79697,7 +79886,7 @@ https://www.rfc1437.de/2003/11/27/staatsministerin-illegales-kopirn-st-w-n-bs-krnkht/ - 2026-03-04T11:52:59.000Z + 2026-03-04T11:52:59.375Z monthly 0.8 @@ -79706,7 +79895,7 @@ https://www.rfc1437.de/2003/11/27/wysiwyg-pionier-simonyi-will-das-progrmmrn-rvltnrn/ - 2026-03-04T11:53:03.000Z + 2026-03-04T11:53:03.542Z monthly 0.8 @@ -79715,7 +79904,7 @@ https://www.rfc1437.de/2003/11/26/personal-firewall-verursacht-dns-stoerung/ - 2026-03-04T11:53:07.000Z + 2026-03-04T11:53:07.714Z monthly 0.8 @@ -79724,7 +79913,7 @@ https://www.rfc1437.de/2003/11/26/sicherheitsloch-in-moveable-type/ - 2026-03-04T11:53:11.000Z + 2026-03-04T11:53:11.867Z monthly 0.8 @@ -79733,7 +79922,7 @@ https://www.rfc1437.de/2003/11/26/weblog-spam-dive-into-mark/ - 2026-03-04T11:53:16.000Z + 2026-03-04T11:53:16.078Z monthly 0.8 @@ -79742,7 +79931,7 @@ https://www.rfc1437.de/2003/11/25/aros-amiga-research-operating-system/ - 2026-03-04T11:53:19.000Z + 2026-03-04T11:53:19.863Z monthly 0.8 @@ -79751,7 +79940,7 @@ https://www.rfc1437.de/2003/11/25/genetische-information-soll-nicht-patentierbar-sen/ - 2026-03-04T11:53:24.000Z + 2026-03-04T11:53:24.161Z monthly 0.8 @@ -79760,7 +79949,7 @@ https://www.rfc1437.de/2003/11/25/hamster-grub-aelteste-speisekammer-der-welt/ - 2026-03-04T11:53:27.000Z + 2026-03-04T11:53:27.962Z monthly 0.8 @@ -79769,7 +79958,7 @@ https://www.rfc1437.de/2003/11/25/hier-kommt-der-graus/ - 2026-03-04T11:53:31.000Z + 2026-03-04T11:53:31.149Z monthly 0.8 @@ -79778,7 +79967,7 @@ https://www.rfc1437.de/2003/11/25/internet-explorer-wieder-verwundbar/ - 2026-03-04T11:53:34.000Z + 2026-03-04T11:53:34.576Z monthly 0.8 @@ -79787,7 +79976,7 @@ https://www.rfc1437.de/2003/11/25/kritik-an-webserver-statistik/ - 2026-03-04T11:53:38.000Z + 2026-03-04T11:53:38.054Z monthly 0.8 @@ -79796,7 +79985,7 @@ https://www.rfc1437.de/2003/11/25/mcbride-intimates-code-cleanup-in-linux-ngh-mpssbl/ - 2026-03-04T11:53:41.000Z + 2026-03-04T11:53:41.900Z monthly 0.8 @@ -79805,7 +79994,7 @@ https://www.rfc1437.de/2003/11/25/steuerparadies-rotlichtmilieu/ - 2026-03-04T11:53:46.000Z + 2026-03-04T11:53:46.209Z monthly 0.8 @@ -79814,7 +80003,7 @@ https://www.rfc1437.de/2003/11/24/burg-vischering-in-luedinghausen/ - 2026-03-04T11:53:51.000Z + 2026-03-04T11:53:51.214Z monthly 0.8 @@ -79823,7 +80012,7 @@ https://www.rfc1437.de/2003/11/24/negativrekord-bei-ausbildungsplaetzen/ - 2026-03-04T11:53:55.000Z + 2026-03-04T11:53:55.492Z monthly 0.8 @@ -79832,7 +80021,7 @@ https://www.rfc1437.de/2003/11/24/scharon-kollektiver-antisemitismus-in-europa/ - 2026-03-04T11:53:59.000Z + 2026-03-04T11:53:59.334Z monthly 0.8 @@ -79841,7 +80030,7 @@ https://www.rfc1437.de/2003/11/24/sehe-ich-mich-gezwungen-rechtliche-schritte-enzltn/ - 2026-03-04T11:54:03.000Z + 2026-03-04T11:54:03.152Z monthly 0.8 @@ -79850,7 +80039,7 @@ https://www.rfc1437.de/2003/11/24/which-side-of-the-road-do-they-drive-on/ - 2026-03-04T11:54:07.000Z + 2026-03-04T11:54:07.061Z monthly 0.8 @@ -79859,7 +80048,7 @@ https://www.rfc1437.de/2003/11/24/wirbel-um-gerster-behoerde/ - 2026-03-04T11:54:10.000Z + 2026-03-04T11:54:10.982Z monthly 0.8 @@ -79868,7 +80057,7 @@ https://www.rfc1437.de/2003/11/23/i-d-l-y-o-r-g-porn-sites-hiding-behind-blogs/ - 2026-03-04T11:54:14.000Z + 2026-03-04T11:54:14.915Z monthly 0.8 @@ -79877,7 +80066,7 @@ https://www.rfc1437.de/2003/11/23/metro-konzern-weiterhin-im-abmahn-fieber/ - 2026-03-04T11:54:18.000Z + 2026-03-04T11:54:18.748Z monthly 0.8 @@ -79886,7 +80075,7 @@ https://www.rfc1437.de/2003/11/23/not-amused-bush-besuch-hinterlaesst-spuren/ - 2026-03-04T11:54:23.000Z + 2026-03-04T11:54:23.449Z monthly 0.8 @@ -79895,7 +80084,7 @@ https://www.rfc1437.de/2003/11/23/rondayview-da-funk-and-da-noise/ - 2026-03-04T11:54:27.000Z + 2026-03-04T11:54:27.020Z monthly 0.8 @@ -79904,7 +80093,7 @@ https://www.rfc1437.de/2003/11/22/inhaftierte-globalisierungskritiker-im-hungerstrek/ - 2026-03-04T11:54:31.000Z + 2026-03-04T11:54:31.013Z monthly 0.8 @@ -79913,7 +80102,7 @@ https://www.rfc1437.de/2003/11/22/leica-digilux-2-mehr-details-zum-kandidaten/ - 2026-03-04T11:54:34.000Z + 2026-03-04T11:54:34.472Z monthly 0.8 @@ -79922,7 +80111,7 @@ https://www.rfc1437.de/2003/11/22/namensstreit-mit-red-hat-um-fedora/ - 2026-03-04T11:54:37.000Z + 2026-03-04T11:54:37.988Z monthly 0.8 @@ -79931,7 +80120,7 @@ https://www.rfc1437.de/2003/11/22/rechtsextremismusverdacht-beim-bund-dr-slbststndgn/ - 2026-03-04T11:54:41.000Z + 2026-03-04T11:54:41.844Z monthly 0.8 @@ -79940,7 +80129,7 @@ https://www.rfc1437.de/2003/11/22/wirbel-um-tv-dopingbeichte-in-italien/ - 2026-03-04T11:54:45.000Z + 2026-03-04T11:54:45.433Z monthly 0.8 @@ -79949,7 +80138,7 @@ https://www.rfc1437.de/2003/11/21/att-verklagt-ebay-und-paypal/ - 2026-03-04T11:54:49.000Z + 2026-03-04T11:54:49.265Z monthly 0.8 @@ -79958,7 +80147,7 @@ https://www.rfc1437.de/2003/11/21/debianorg-gehackt-update/ - 2026-03-04T11:54:52.000Z + 2026-03-04T11:54:52.532Z monthly 0.8 @@ -79967,7 +80156,7 @@ https://www.rfc1437.de/2003/11/21/deutschland-die-verspaetete-nation/ - 2026-03-04T11:54:56.000Z + 2026-03-04T11:54:56.077Z monthly 0.8 @@ -79976,7 +80165,7 @@ https://www.rfc1437.de/2003/11/21/die-legende-vom-salzstock/ - 2026-03-04T11:54:59.000Z + 2026-03-04T11:54:59.926Z monthly 0.8 @@ -79985,7 +80174,7 @@ https://www.rfc1437.de/2003/11/21/new-lumix-camera-dmc-lc1-scheduled-for-spring-2004/ - 2026-03-04T11:55:03.000Z + 2026-03-04T11:55:03.094Z monthly 0.8 @@ -79994,7 +80183,7 @@ https://www.rfc1437.de/2003/11/21/zoff-bei-den-gnus/ - 2026-03-04T11:55:07.000Z + 2026-03-04T11:55:07.028Z monthly 0.8 @@ -80003,7 +80192,7 @@ https://www.rfc1437.de/2003/11/20/computerpanne-und-schlechte-sbldng-fhrtn-z-s-blckt/ - 2026-03-04T11:55:10.000Z + 2026-03-04T11:55:10.530Z monthly 0.8 @@ -80012,7 +80201,7 @@ https://www.rfc1437.de/2003/11/20/open-content-und-verwandte-lizenzen/ - 2026-03-04T11:55:14.000Z + 2026-03-04T11:55:14.434Z monthly 0.8 @@ -80021,7 +80210,7 @@ https://www.rfc1437.de/2003/11/19/die-ard-auf-geisterjagd/ - 2026-03-04T11:55:18.000Z + 2026-03-04T11:55:18.353Z monthly 0.8 @@ -80030,7 +80219,7 @@ https://www.rfc1437.de/2003/11/19/hochhaeuser-bringen-schanghai-zum-sinken/ - 2026-03-04T11:55:22.000Z + 2026-03-04T11:55:22.208Z monthly 0.8 @@ -80039,7 +80228,7 @@ https://www.rfc1437.de/2003/11/19/kanzler-ueber-vorstandswahl-ergebnisse-verargrt-sr/ - 2026-03-04T11:55:26.000Z + 2026-03-04T11:55:26.930Z monthly 0.8 @@ -80048,7 +80237,7 @@ https://www.rfc1437.de/2003/11/19/kopierschutzdebakel-moeglicherweise-auch-b-vd-dvds/ - 2026-03-04T11:55:31.000Z + 2026-03-04T11:55:31.018Z monthly 0.8 @@ -80057,7 +80246,7 @@ https://www.rfc1437.de/2003/11/19/lizenzgebuehren-fuer-jede-einzelne-bohne/ - 2026-03-04T11:55:34.000Z + 2026-03-04T11:55:34.485Z monthly 0.8 @@ -80066,7 +80255,7 @@ https://www.rfc1437.de/2003/11/19/sco-chef-diese-welt-braucht-proprietaere-systeme/ - 2026-03-04T11:55:38.000Z + 2026-03-04T11:55:38.826Z monthly 0.8 @@ -80075,7 +80264,7 @@ https://www.rfc1437.de/2003/11/19/sco-claims-world-software-market-under-threat/ - 2026-03-04T11:55:43.000Z + 2026-03-04T11:55:43.102Z monthly 0.8 @@ -80084,7 +80273,7 @@ https://www.rfc1437.de/2003/11/19/sco-hints-at-bsd-lawsuits-next-year-and-more/ - 2026-03-04T11:55:47.000Z + 2026-03-04T11:55:47.846Z monthly 0.8 @@ -80093,7 +80282,7 @@ https://www.rfc1437.de/2003/11/19/they-found-nemo/ - 2026-03-04T11:55:51.000Z + 2026-03-04T11:55:51.398Z monthly 0.8 @@ -80102,7 +80291,7 @@ https://www.rfc1437.de/2003/11/18/nfwrld-sc-c-nvll-ss-brks-sc-cntrct-nvmbr-18-2003-b/ - 2026-03-04T11:55:55.000Z + 2026-03-04T11:55:55.666Z monthly 0.8 @@ -80111,7 +80300,7 @@ https://www.rfc1437.de/2003/11/18/python-und-applescript/ - 2026-03-04T11:55:59.000Z + 2026-03-04T11:55:59.684Z monthly 0.8 @@ -80120,7 +80309,7 @@ https://www.rfc1437.de/2003/11/18/sco-erweitert-zusammenarbeit-mit-seinen-anwaelten/ - 2026-03-04T11:56:03.000Z + 2026-03-04T11:56:03.181Z monthly 0.8 @@ -80129,7 +80318,7 @@ https://www.rfc1437.de/2003/11/18/spd-bangt-um-nordrhein-westfalen/ - 2026-03-04T11:56:06.000Z + 2026-03-04T11:56:06.726Z monthly 0.8 @@ -80138,7 +80327,7 @@ https://www.rfc1437.de/2003/11/17/heise-news-ticker-postgresql-in-vrsn-74-vrffntlcht/ - 2026-03-04T11:56:10.000Z + 2026-03-04T11:56:10.774Z monthly 0.8 @@ -80147,7 +80336,7 @@ https://www.rfc1437.de/2003/11/17/serious-mac-os-x-file-save-bug-could-delete-files/ - 2026-03-04T11:56:14.000Z + 2026-03-04T11:56:14.318Z monthly 0.8 @@ -80156,7 +80345,7 @@ https://www.rfc1437.de/2003/11/17/union-haelt-die-regierung-des-wahlbetrgs-fr-schldg/ - 2026-03-04T11:56:18.000Z + 2026-03-04T11:56:18.350Z monthly 0.8 @@ -80165,7 +80354,7 @@ https://www.rfc1437.de/2003/11/16/verfassungsbeschwerde-gegen-0190-gesetz/ - 2026-03-04T11:56:23.000Z + 2026-03-04T11:56:23.063Z monthly 0.8 @@ -80174,7 +80363,7 @@ https://www.rfc1437.de/2003/11/15/20-jahre-ct-geschichte-mit-haekchen/ - 2026-03-04T11:56:27.000Z + 2026-03-04T11:56:27.762Z monthly 0.8 @@ -80183,7 +80372,7 @@ https://www.rfc1437.de/2003/11/14/ex-geheimdienstchefs-israels-kritisieren-scharon/ - 2026-03-04T11:56:32.000Z + 2026-03-04T11:56:32.612Z monthly 0.8 @@ -80192,7 +80381,7 @@ https://www.rfc1437.de/2003/11/14/groklaw-warum-ibm-vielleicht-nlystn-ns-vrfhrn-ztrt/ - 2026-03-04T11:56:36.000Z + 2026-03-04T11:56:36.651Z monthly 0.8 @@ -80201,7 +80390,7 @@ https://www.rfc1437.de/2003/11/14/phonak-will-es-wissen-mit-neun-neuen-zur-tour/ - 2026-03-04T11:56:40.000Z + 2026-03-04T11:56:40.641Z monthly 0.8 @@ -80210,7 +80399,7 @@ https://www.rfc1437.de/2003/11/13/bbedit-71-raus/ - 2026-03-04T11:56:44.000Z + 2026-03-04T11:56:44.685Z monthly 0.8 @@ -80219,7 +80408,7 @@ https://www.rfc1437.de/2003/11/13/panorama-ueber-hohmann-und-den-rechten-rand-der-cd/ - 2026-03-04T11:56:49.000Z + 2026-03-04T11:56:49.114Z monthly 0.8 @@ -80228,7 +80417,7 @@ https://www.rfc1437.de/2003/11/13/stimme-der-mehrheit/ - 2026-03-04T11:56:53.000Z + 2026-03-04T11:56:53.067Z monthly 0.8 @@ -80237,7 +80426,7 @@ https://www.rfc1437.de/2003/11/12/high-performance-computing-for-mac-os-x/ - 2026-03-04T11:56:56.000Z + 2026-03-04T11:56:56.283Z monthly 0.8 @@ -80246,7 +80435,7 @@ https://www.rfc1437.de/2003/11/12/nfwrld-mcrsft-prprs-scrty-sslt-n-lnx-nvmbr-11-2003/ - 2026-03-04T11:57:00.000Z + 2026-03-04T11:57:00.678Z monthly 0.8 @@ -80255,7 +80444,7 @@ https://www.rfc1437.de/2003/11/12/steinbrueck-buerger-muessn-mhr-fr-ltr-nd-pflg-sgbn/ - 2026-03-04T11:57:05.000Z + 2026-03-04T11:57:05.113Z monthly 0.8 @@ -80264,7 +80453,7 @@ https://www.rfc1437.de/2003/11/12/union-und-fdp-wollen-kuendigungsschutz-weitr-fwchn/ - 2026-03-04T11:57:09.000Z + 2026-03-04T11:57:09.139Z monthly 0.8 @@ -80273,7 +80462,7 @@ https://www.rfc1437.de/2003/11/12/zerstoerung-der-oeffentlich-rechtlichen/ - 2026-03-04T11:57:13.000Z + 2026-03-04T11:57:13.575Z monthly 0.8 @@ -80282,7 +80471,7 @@ https://www.rfc1437.de/2003/11/11/apple-bringt-update-auf-mac-os-x-1031/ - 2026-03-04T11:57:17.000Z + 2026-03-04T11:57:17.090Z monthly 0.8 @@ -80291,7 +80480,7 @@ https://www.rfc1437.de/2003/11/11/kill-bill/ - 2026-03-04T11:57:21.000Z + 2026-03-04T11:57:21.284Z monthly 0.8 @@ -80300,7 +80489,7 @@ https://www.rfc1437.de/2003/11/11/schnelles-ende-im-neuen-kimble-prozess/ - 2026-03-04T11:57:25.000Z + 2026-03-04T11:57:25.625Z monthly 0.8 @@ -80309,7 +80498,7 @@ https://www.rfc1437.de/2003/11/11/you-call-that-a-monad-this-heres-a-monad-and-shll/ - 2026-03-04T11:57:29.000Z + 2026-03-04T11:57:29.937Z monthly 0.8 @@ -80318,7 +80507,7 @@ https://www.rfc1437.de/2003/11/10/hohmann-vielleicht-doch-vor-die-tuer/ - 2026-03-04T11:58:27.000Z + 2026-03-04T11:58:27.704Z monthly 0.8 @@ -80327,7 +80516,7 @@ https://www.rfc1437.de/2003/11/10/koch-und-merkel-einig-hohmann-vor-rauswurf/ - 2026-03-04T11:58:31.000Z + 2026-03-04T11:58:31.727Z monthly 0.8 @@ -80336,7 +80525,7 @@ https://www.rfc1437.de/2003/11/10/mac-os-x-103-zip-funktion-des-finder-nicht-komptbl/ - 2026-03-04T11:58:35.000Z + 2026-03-04T11:58:35.130Z monthly 0.8 @@ -80345,7 +80534,7 @@ https://www.rfc1437.de/2003/11/10/rebel-with-a-cause/ - 2026-03-04T11:58:38.000Z + 2026-03-04T11:58:38.407Z monthly 0.8 @@ -80354,7 +80543,7 @@ https://www.rfc1437.de/2003/11/10/simoni-challenges-armstrong-to-giro-tour-duel/ - 2026-03-04T11:58:41.000Z + 2026-03-04T11:58:41.699Z monthly 0.8 @@ -80363,7 +80552,7 @@ https://www.rfc1437.de/2003/11/09/security-focus-hat-rss-feeds/ - 2026-03-04T11:58:44.000Z + 2026-03-04T11:58:44.952Z monthly 0.8 @@ -80372,7 +80561,7 @@ https://www.rfc1437.de/2003/11/08/csu-plant-basisrente-fuer-kinderlose/ - 2026-03-04T11:58:48.000Z + 2026-03-04T11:58:48.272Z monthly 0.8 @@ -80381,7 +80570,7 @@ https://www.rfc1437.de/2003/11/08/gier-hinter-der-maske-des-wohltaeters/ - 2026-03-04T11:58:51.000Z + 2026-03-04T11:58:51.517Z monthly 0.8 @@ -80390,7 +80579,7 @@ https://www.rfc1437.de/2003/11/08/gruene-lehnen-kryptoverbot-weiterhin-ab/ - 2026-03-04T11:58:55.000Z + 2026-03-04T11:58:55.133Z monthly 0.8 @@ -80399,7 +80588,7 @@ https://www.rfc1437.de/2003/11/08/harry-potter-macht-doof/ - 2026-03-04T11:58:58.000Z + 2026-03-04T11:58:58.394Z monthly 0.8 @@ -80408,7 +80597,7 @@ https://www.rfc1437.de/2003/11/08/it-had-to-start-sometime/ - 2026-03-04T11:59:01.000Z + 2026-03-04T11:59:01.640Z monthly 0.8 @@ -80417,7 +80606,7 @@ https://www.rfc1437.de/2003/11/08/sco-versus-linux-all-your-code-are-belong-to-us/ - 2026-03-04T11:59:04.000Z + 2026-03-04T11:59:04.948Z monthly 0.8 @@ -80426,7 +80615,7 @@ https://www.rfc1437.de/2003/11/08/spammed-by-your-router/ - 2026-03-04T11:59:07.000Z + 2026-03-04T11:59:07.884Z monthly 0.8 @@ -80435,7 +80624,7 @@ https://www.rfc1437.de/2003/11/08/stoiber-droht-hohmann-mit-rauswurf/ - 2026-03-04T11:59:11.000Z + 2026-03-04T11:59:11.839Z monthly 0.8 @@ -80444,7 +80633,7 @@ https://www.rfc1437.de/2003/11/08/test-des-einflusses-von-goglspmmng-f-blghstng-ntzr/ - 2026-03-04T11:59:15.000Z + 2026-03-04T11:59:15.139Z monthly 0.8 @@ -80453,7 +80642,7 @@ https://www.rfc1437.de/2003/11/07/deindymediaorg-usa-waehlerbetrug-und-ntrlssngsklgn/ - 2026-03-04T11:59:18.000Z + 2026-03-04T11:59:18.870Z monthly 0.8 @@ -80462,7 +80651,7 @@ https://www.rfc1437.de/2003/11/06/110-rechtsextreme-vorfaell-n-dr-bndswhr-n-zhn-mntn/ - 2026-03-04T11:59:21.000Z + 2026-03-04T11:59:21.877Z monthly 0.8 @@ -80471,7 +80660,7 @@ https://www.rfc1437.de/2003/11/06/die-zeit-46-2003-mmoore-nicht-ganz-amerk-st-vrrckt/ - 2026-03-04T11:59:25.000Z + 2026-03-04T11:59:25.247Z monthly 0.8 @@ -80480,7 +80669,7 @@ https://www.rfc1437.de/2003/11/06/fshn-vctms-prds-bmhnwhn-w-bmhnwhn-jtzt-ch-vr-dnr-h/ - 2026-03-04T11:59:28.000Z + 2026-03-04T11:59:28.930Z monthly 0.8 @@ -80489,7 +80678,7 @@ https://www.rfc1437.de/2003/11/06/grosser-hund-von-milchstrasse-zerrissen/ - 2026-03-04T11:59:32.000Z + 2026-03-04T11:59:32.661Z monthly 0.8 @@ -80498,7 +80687,7 @@ https://www.rfc1437.de/2003/11/06/merkel-lehnt-weitere-sanktionen-gegen-hohmann-ab/ - 2026-03-04T11:59:36.000Z + 2026-03-04T11:59:36.023Z monthly 0.8 @@ -80507,7 +80696,7 @@ https://www.rfc1437.de/2003/11/06/panther-koennte-auf-intel-laufen/ - 2026-03-04T11:59:39.000Z + 2026-03-04T11:59:39.382Z monthly 0.8 @@ -80516,7 +80705,7 @@ https://www.rfc1437.de/2003/11/06/saddam-wollte-frieden-in-letzter-minute/ - 2026-03-04T11:59:42.000Z + 2026-03-04T11:59:42.419Z monthly 0.8 @@ -80525,7 +80714,7 @@ https://www.rfc1437.de/2003/11/05/nrw-landesverwaltung-stellt-auf-mcrsfts-ffc-2003-m/ - 2026-03-04T11:59:45.000Z + 2026-03-04T11:59:45.508Z monthly 0.8 @@ -80534,7 +80723,7 @@ https://www.rfc1437.de/2003/11/04/google-indexing-irc/ - 2026-03-04T11:59:48.000Z + 2026-03-04T11:59:48.934Z monthly 0.8 @@ -80543,7 +80732,7 @@ https://www.rfc1437.de/2003/11/04/netzwerkspezialist-novell-kauft-lnx-dstrbtr-ss-pdt/ - 2026-03-04T11:59:52.000Z + 2026-03-04T11:59:52.052Z monthly 0.8 @@ -80552,7 +80741,7 @@ https://www.rfc1437.de/2003/11/04/thierse-themen-wie-florida-rolf-bedrohen-demokrati/ - 2026-03-04T11:59:55.000Z + 2026-03-04T11:59:55.497Z monthly 0.8 @@ -80561,7 +80750,7 @@ https://www.rfc1437.de/2003/11/04/von-generaelen-und-abgeordneten/ - 2026-03-04T11:59:59.000Z + 2026-03-04T11:59:59.270Z monthly 0.8 @@ -80570,7 +80759,7 @@ https://www.rfc1437.de/2003/11/04/warum-lassen-fische-luft-aus-dem-after-blubbern/ - 2026-03-04T12:00:02.000Z + 2026-03-04T12:00:02.686Z monthly 0.8 @@ -80579,7 +80768,7 @@ https://www.rfc1437.de/2003/11/03/es-geht-los/ - 2026-03-04T12:00:06.000Z + 2026-03-04T12:00:06.173Z monthly 0.8 @@ -80588,7 +80777,7 @@ https://www.rfc1437.de/2003/11/03/groklaw-diesmal-verstoesst-sco-gegen-die-gpl/ - 2026-03-04T12:00:09.000Z + 2026-03-04T12:00:09.647Z monthly 0.8 @@ -80597,7 +80786,7 @@ https://www.rfc1437.de/2003/11/03/home-of-the-4th-compiler/ - 2026-03-04T12:00:13.000Z + 2026-03-04T12:00:13.190Z monthly 0.8 @@ -80606,7 +80795,7 @@ https://www.rfc1437.de/2003/11/03/immer-lustiger/ - 2026-03-04T12:00:16.000Z + 2026-03-04T12:00:16.844Z monthly 0.8 @@ -80615,7 +80804,7 @@ https://www.rfc1437.de/2003/11/03/jubilaeum-ein-jahr-hugos-house-of-weblog-horror/ - 2026-03-04T12:00:19.000Z + 2026-03-04T12:00:19.730Z monthly 0.8 @@ -80624,7 +80813,7 @@ https://www.rfc1437.de/2003/11/03/kommunen-steht-das-wasser-bis-zum-hals/ - 2026-03-04T12:00:24.000Z + 2026-03-04T12:00:24.359Z monthly 0.8 @@ -80633,7 +80822,7 @@ https://www.rfc1437.de/2003/11/03/laubblaeser/ - 2026-03-04T12:00:26.000Z + 2026-03-04T12:00:26.824Z monthly 0.8 @@ -80642,7 +80831,7 @@ https://www.rfc1437.de/2003/11/03/wired-news-anti-copy-bill-slams-coders/ - 2026-03-04T12:00:30.000Z + 2026-03-04T12:00:30.773Z monthly 0.8 @@ -80651,7 +80840,7 @@ https://www.rfc1437.de/2003/11/02/das-gift-der-inquisition-light/ - 2026-03-04T12:00:35.000Z + 2026-03-04T12:00:35.061Z monthly 0.8 @@ -80660,7 +80849,7 @@ https://www.rfc1437.de/2003/11/01/gestatten-hohmann-volksvertreter/ - 2026-03-04T12:00:39.000Z + 2026-03-04T12:00:39.298Z monthly 0.8 @@ -80669,7 +80858,7 @@ https://www.rfc1437.de/2003/11/01/ronald-schill-will-bundespolitik-aufmischen/ - 2026-03-04T12:00:42.000Z + 2026-03-04T12:00:42.920Z monthly 0.8 @@ -80678,7 +80867,7 @@ https://www.rfc1437.de/2003/10/31/heise-news-ticker-dns-verwirrung-durch-neun-lndrcd/ - 2026-03-04T12:00:46.000Z + 2026-03-04T12:00:46.516Z monthly 0.8 @@ -80687,7 +80876,7 @@ https://www.rfc1437.de/2003/10/31/linux-ist-fuer-datev-keine-alternative/ - 2026-03-04T12:00:51.000Z + 2026-03-04T12:00:51.012Z monthly 0.8 @@ -80696,7 +80885,7 @@ https://www.rfc1437.de/2003/10/31/sco-bietet-unix-lizenz-fuer-linux-nutzer/ - 2026-03-04T12:00:55.000Z + 2026-03-04T12:00:55.495Z monthly 0.8 @@ -80705,7 +80894,7 @@ https://www.rfc1437.de/2003/10/30/cdu-abgeordneter-nennt-juden-taetervolk/ - 2026-03-04T12:00:59.000Z + 2026-03-04T12:00:59.919Z monthly 0.8 @@ -80714,7 +80903,7 @@ https://www.rfc1437.de/2003/10/30/groklaw-erste-reaktionen-auf-die-letzten-sco-texte/ - 2026-03-04T12:01:04.000Z + 2026-03-04T12:01:04.564Z monthly 0.8 @@ -80723,7 +80912,7 @@ https://www.rfc1437.de/2003/10/30/probleme-mit-java-unter-mac-os-x-103/ - 2026-03-04T12:01:09.000Z + 2026-03-04T12:01:09.543Z monthly 0.8 @@ -80732,7 +80921,7 @@ https://www.rfc1437.de/2003/10/30/us-forscher-zuechten-toedliche-pockenviren/ - 2026-03-04T12:01:13.000Z + 2026-03-04T12:01:13.289Z monthly 0.8 @@ -80741,7 +80930,7 @@ https://www.rfc1437.de/2003/10/29/starker-geomagnetischer-sturm-trifft-die-erde-updt/ - 2026-03-04T12:01:17.000Z + 2026-03-04T12:01:17.096Z monthly 0.8 @@ -80759,7 +80948,7 @@ https://www.rfc1437.de/2003/10/28/paulus-tritt-middelhoff-nachtraeglich-in-die-eier/ - 2026-03-04T12:01:26.000Z + 2026-03-04T12:01:26.217Z monthly 0.8 @@ -80768,7 +80957,7 @@ https://www.rfc1437.de/2003/10/28/telekom-verlangt-einkommnsvrzcht-fr-grngrn-prsnlbb/ - 2026-03-04T12:01:29.000Z + 2026-03-04T12:01:29.983Z monthly 0.8 @@ -80777,7 +80966,7 @@ https://www.rfc1437.de/2003/10/27/bald-ist-das-verzeichnis-voll/ - 2026-03-04T12:01:34.000Z + 2026-03-04T12:01:34.306Z monthly 0.8 @@ -80786,7 +80975,7 @@ https://www.rfc1437.de/2003/10/27/cannabis-affaere-pieper-wettert-gegen-kubicki/ - 2026-03-04T12:01:38.000Z + 2026-03-04T12:01:38.079Z monthly 0.8 @@ -80795,7 +80984,7 @@ https://www.rfc1437.de/2003/10/27/groklaw-zerlegt-scos-neueste-verbaltaenze/ - 2026-03-04T12:01:42.000Z + 2026-03-04T12:01:42.772Z monthly 0.8 @@ -80804,7 +80993,7 @@ https://www.rfc1437.de/2003/10/27/internet-explorer-gefaehrdet-windows/ - 2026-03-04T12:01:46.000Z + 2026-03-04T12:01:46.979Z monthly 0.8 @@ -80813,7 +81002,7 @@ https://www.rfc1437.de/2003/10/27/nochmal-kfz-abmahnungen/ - 2026-03-04T12:01:50.000Z + 2026-03-04T12:01:50.305Z monthly 0.8 @@ -80822,7 +81011,7 @@ https://www.rfc1437.de/2003/10/27/regulierungsbehoerde-raeumt-bei-0190er-nummern-auf/ - 2026-03-04T12:01:54.000Z + 2026-03-04T12:01:54.894Z monthly 0.8 @@ -80831,7 +81020,7 @@ https://www.rfc1437.de/2003/10/27/steinzeitsiedlung-in-der-ostsee-entdeckt/ - 2026-03-04T12:01:58.000Z + 2026-03-04T12:01:58.635Z monthly 0.8 @@ -80840,7 +81029,7 @@ https://www.rfc1437.de/2003/10/26/kfz-kennzeichen-abmahnungen-btrgsvrdcht-bslt-hltls/ - 2026-03-04T12:02:02.000Z + 2026-03-04T12:02:02.895Z monthly 0.8 @@ -80849,7 +81038,7 @@ https://www.rfc1437.de/2003/10/26/mc-hawkings-crib/ - 2026-03-04T12:02:06.000Z + 2026-03-04T12:02:06.997Z monthly 0.8 @@ -80858,7 +81047,7 @@ https://www.rfc1437.de/2003/10/26/paket-in-ic-gefunden/ - 2026-03-04T12:02:11.000Z + 2026-03-04T12:02:11.520Z monthly 0.8 @@ -80867,7 +81056,7 @@ https://www.rfc1437.de/2003/10/25/baustopp-am-holocaust-mahnmal/ - 2026-03-04T12:02:16.000Z + 2026-03-04T12:02:16.066Z monthly 0.8 @@ -80876,7 +81065,7 @@ https://www.rfc1437.de/2003/10/25/zwei-millionen-dollar-strafe-fuer-spammer/ - 2026-03-04T12:02:19.000Z + 2026-03-04T12:02:19.905Z monthly 0.8 @@ -80885,7 +81074,7 @@ https://www.rfc1437.de/2003/10/24/beware-of-the-duck/ - 2026-03-04T12:02:23.000Z + 2026-03-04T12:02:23.681Z monthly 0.8 @@ -80894,7 +81083,7 @@ https://www.rfc1437.de/2003/10/24/es-wird-ernst-mit-den-jugendschutzbstmmngn-m-ntrnt/ - 2026-03-04T12:02:27.000Z + 2026-03-04T12:02:27.799Z monthly 0.8 @@ -80903,7 +81092,7 @@ https://www.rfc1437.de/2003/10/24/juroren-ohne-kompetenz/ - 2026-03-04T12:02:31.000Z + 2026-03-04T12:02:31.915Z monthly 0.8 @@ -80912,7 +81101,7 @@ https://www.rfc1437.de/2003/10/24/neue-privilegien-tt-schly-drf-btrnkn-n-lndn-rndlrn/ - 2026-03-04T12:02:36.000Z + 2026-03-04T12:02:36.357Z monthly 0.8 @@ -80921,7 +81110,7 @@ https://www.rfc1437.de/2003/10/24/polizei-sucht-im-hs-vn-fdp-gnrlskrtrn-ppr-nch-hsch/ - 2026-03-04T12:02:40.000Z + 2026-03-04T12:02:40.871Z monthly 0.8 @@ -80930,7 +81119,7 @@ https://www.rfc1437.de/2003/10/24/schools-sell-curriculum-to-riaa/ - 2026-03-04T12:02:45.000Z + 2026-03-04T12:02:45.307Z monthly 0.8 @@ -80939,7 +81128,7 @@ https://www.rfc1437.de/2003/10/24/wenn-arbeit-knapp-wird/ - 2026-03-04T12:02:49.000Z + 2026-03-04T12:02:49.344Z monthly 0.8 @@ -80948,7 +81137,7 @@ https://www.rfc1437.de/2003/10/23/bericht-regierung-erwaegt-erhoehung-der-mehrwrtstr/ - 2026-03-04T12:02:53.000Z + 2026-03-04T12:02:53.325Z monthly 0.8 @@ -80957,7 +81146,7 @@ https://www.rfc1437.de/2003/10/23/csu-und-fdp-schatzmeistr-slln-llgl-spnd-kzptrt-hbn/ - 2026-03-04T12:02:57.000Z + 2026-03-04T12:02:57.732Z monthly 0.8 @@ -80966,7 +81155,7 @@ https://www.rfc1437.de/2003/10/23/gator-will-sich-nicht-spyware-hersteller-nnnn-lssn/ - 2026-03-04T12:03:02.000Z + 2026-03-04T12:03:02.198Z monthly 0.8 @@ -80975,7 +81164,7 @@ https://www.rfc1437.de/2003/10/23/gerolsteiner-boelts-wird-sportlicher-leiter/ - 2026-03-04T12:03:06.000Z + 2026-03-04T12:03:06.170Z monthly 0.8 @@ -80984,7 +81173,7 @@ https://www.rfc1437.de/2003/10/23/groesste-indische-lebnsvrschrng-wchslt-vn-sc-z-lnx/ - 2026-03-04T12:03:10.000Z + 2026-03-04T12:03:10.612Z monthly 0.8 @@ -80993,7 +81182,7 @@ https://www.rfc1437.de/2003/10/23/israels-armee-arafat-tot-oder-lebendig/ - 2026-03-04T12:03:14.000Z + 2026-03-04T12:03:14.155Z monthly 0.8 @@ -81002,7 +81191,7 @@ https://www.rfc1437.de/2003/10/23/massives-sicherheitsproblem-auf-der-iss/ - 2026-03-04T12:03:18.000Z + 2026-03-04T12:03:18.655Z monthly 0.8 @@ -81011,7 +81200,7 @@ https://www.rfc1437.de/2003/10/23/rot-gruen-bessert-bei-rentenplaenen-minimal-nach/ - 2026-03-04T12:03:23.000Z + 2026-03-04T12:03:23.155Z monthly 0.8 @@ -81020,7 +81209,7 @@ https://www.rfc1437.de/2003/10/23/rot-gruener-streit-um-gentechnik-gesetz/ - 2026-03-04T12:03:27.000Z + 2026-03-04T12:03:27.204Z monthly 0.8 @@ -81029,7 +81218,7 @@ https://www.rfc1437.de/2003/10/23/uni-paderborn-bietet-golf-als-hauptfach-an/ - 2026-03-04T12:03:31.000Z + 2026-03-04T12:03:31.213Z monthly 0.8 @@ -81038,7 +81227,7 @@ https://www.rfc1437.de/2003/10/23/unsignierte-java-applets-brechen-aus-sandbox-aspdt/ - 2026-03-04T12:03:35.000Z + 2026-03-04T12:03:35.315Z monthly 0.8 @@ -81047,7 +81236,7 @@ https://www.rfc1437.de/2003/10/22/die-baby-boomer-in-deutschland/ - 2026-03-04T12:03:39.000Z + 2026-03-04T12:03:39.685Z monthly 0.8 @@ -81056,7 +81245,7 @@ https://www.rfc1437.de/2003/10/22/eu-leitfaden-fuer-den-umstieg-auf-open-source/ - 2026-03-04T12:03:43.000Z + 2026-03-04T12:03:43.251Z monthly 0.8 @@ -81065,7 +81254,7 @@ https://www.rfc1437.de/2003/10/22/gefunden-kodex-fuer-suchmaschinen/ - 2026-03-04T12:03:47.000Z + 2026-03-04T12:03:47.305Z monthly 0.8 @@ -81074,7 +81263,7 @@ https://www.rfc1437.de/2003/10/22/saban-fordert-werbeverbot-fuer-ard-und-zdf/ - 2026-03-04T12:03:51.000Z + 2026-03-04T12:03:51.693Z monthly 0.8 @@ -81083,7 +81272,7 @@ https://www.rfc1437.de/2003/10/22/softwarepatente-it-verband-rft-f-dn-rchtn-wg-zrck/ - 2026-03-04T12:03:55.000Z + 2026-03-04T12:03:55.709Z monthly 0.8 @@ -81092,7 +81281,7 @@ https://www.rfc1437.de/2003/10/22/trojanisches-pferd-der-atomkriege/ - 2026-03-04T12:03:59.000Z + 2026-03-04T12:03:59.663Z monthly 0.8 @@ -81101,7 +81290,7 @@ https://www.rfc1437.de/2003/10/22/us-patent-auf-systemverwaltung-per-internet/ - 2026-03-04T12:04:03.000Z + 2026-03-04T12:04:03.242Z monthly 0.8 @@ -81110,7 +81299,7 @@ https://www.rfc1437.de/2003/10/22/windows-kollidiert-mit-urheberrecht/ - 2026-03-04T12:04:08.000Z + 2026-03-04T12:04:08.458Z monthly 0.8 @@ -81119,7 +81308,7 @@ https://www.rfc1437.de/2003/10/22/zensur-in-duesseldorf/ - 2026-03-04T12:04:12.000Z + 2026-03-04T12:04:12.970Z monthly 0.8 @@ -81128,7 +81317,7 @@ https://www.rfc1437.de/2003/10/21/ende-der-unschuld/ - 2026-03-04T12:04:17.000Z + 2026-03-04T12:04:17.700Z monthly 0.8 @@ -81137,7 +81326,7 @@ https://www.rfc1437.de/2003/10/21/kampagne-fuer-genfood/ - 2026-03-04T12:04:22.000Z + 2026-03-04T12:04:22.273Z monthly 0.8 @@ -81146,7 +81335,7 @@ https://www.rfc1437.de/2003/10/21/kinderlose-sollen-mehr-fuer-pflegeversicherng-zhln/ - 2026-03-04T12:04:26.000Z + 2026-03-04T12:04:26.646Z monthly 0.8 @@ -81155,7 +81344,7 @@ https://www.rfc1437.de/2003/10/21/kontroverse-um-fussfesseln-fuer-schulschwaenzer/ - 2026-03-04T12:04:31.000Z + 2026-03-04T12:04:31.602Z monthly 0.8 @@ -81164,7 +81353,7 @@ https://www.rfc1437.de/2003/10/21/steuerzahlerbund-pensionen-von-politikern-kuerzen/ - 2026-03-04T12:04:35.000Z + 2026-03-04T12:04:35.662Z monthly 0.8 @@ -81173,7 +81362,7 @@ https://www.rfc1437.de/2003/10/21/unions-nachwuchs-will-radikale-reformen/ - 2026-03-04T12:04:40.000Z + 2026-03-04T12:04:40.617Z monthly 0.8 @@ -81182,7 +81371,7 @@ https://www.rfc1437.de/2003/10/21/zu-viel-kaffee-schuld-an-blairs-herzrasen/ - 2026-03-04T12:04:45.000Z + 2026-03-04T12:04:45.524Z monthly 0.8 @@ -81191,7 +81380,7 @@ https://www.rfc1437.de/2003/10/20/appleinsider-ibm-introduced-its-power5/ - 2026-03-04T12:04:49.000Z + 2026-03-04T12:04:49.520Z monthly 0.8 @@ -81200,7 +81389,7 @@ https://www.rfc1437.de/2003/10/20/cdu-linie-merkel-setzt-sich-gegen-koch-durch/ - 2026-03-04T12:04:54.000Z + 2026-03-04T12:04:54.119Z monthly 0.8 @@ -81209,7 +81398,7 @@ https://www.rfc1437.de/2003/10/20/domain-namen-und-kfz-kennzeichn-ggnwll-ggn-bmhnngn/ - 2026-03-04T12:04:58.000Z + 2026-03-04T12:04:58.088Z monthly 0.8 @@ -81218,7 +81407,7 @@ https://www.rfc1437.de/2003/10/20/online-backup-fuer-kleine-und-mittlere-unternehmen/ - 2026-03-04T12:05:03.000Z + 2026-03-04T12:05:03.057Z monthly 0.8 @@ -81227,7 +81416,7 @@ https://www.rfc1437.de/2003/10/20/spd-stzt-f-vrwltngssftwr-f-bss-vn-mcrsft-bsnss-slt/ - 2026-03-04T12:05:07.000Z + 2026-03-04T12:05:07.559Z monthly 0.8 @@ -81236,7 +81425,7 @@ https://www.rfc1437.de/2003/10/19/bericht-online-banking-geknackt/ - 2026-03-04T12:05:12.000Z + 2026-03-04T12:05:12.417Z monthly 0.8 @@ -81245,7 +81434,7 @@ https://www.rfc1437.de/2003/10/19/bundestagswahl-westerwell-rft-sch-zm-sptznknddtn-s/ - 2026-03-04T12:05:17.000Z + 2026-03-04T12:05:17.525Z monthly 0.8 @@ -81254,7 +81443,7 @@ https://www.rfc1437.de/2003/10/19/leiden-28-millionen-us-buerger-unter-blaehungen/ - 2026-03-04T12:05:22.000Z + 2026-03-04T12:05:22.443Z monthly 0.8 @@ -81263,7 +81452,7 @@ https://www.rfc1437.de/2003/10/19/porno-anbieter-protestieren-gegen-jugendschtz-m-wb/ - 2026-03-04T12:05:26.000Z + 2026-03-04T12:05:26.746Z monthly 0.8 @@ -81272,7 +81461,7 @@ https://www.rfc1437.de/2003/10/19/studie-jeder-dritte-schulschwaenzer-wird-kriminell/ - 2026-03-04T12:05:31.000Z + 2026-03-04T12:05:31.034Z monthly 0.8 @@ -81281,7 +81470,7 @@ https://www.rfc1437.de/2003/10/19/urheberrecht-gegen-kritiker/ - 2026-03-04T12:05:35.000Z + 2026-03-04T12:05:35.356Z monthly 0.8 @@ -81290,7 +81479,7 @@ https://www.rfc1437.de/2003/10/19/zur-seligsprechung-von-agnes-gnxh-bjxh-ls-mttr-trs/ - 2026-03-04T12:05:40.000Z + 2026-03-04T12:05:40.215Z monthly 0.8 @@ -81299,7 +81488,7 @@ https://www.rfc1437.de/2003/10/18/powerbook-kaeufer-klagen-ueber-display-fehler/ - 2026-03-04T12:05:44.000Z + 2026-03-04T12:05:44.814Z monthly 0.8 @@ -81308,7 +81497,7 @@ https://www.rfc1437.de/2003/10/18/sco-vs-linux-kriegskasse-aufgefuellt/ - 2026-03-04T12:05:49.000Z + 2026-03-04T12:05:49.197Z monthly 0.8 @@ -81317,7 +81506,7 @@ https://www.rfc1437.de/2003/10/17/abmahnungen-wegen-kfz-kennzeichen-in-domain-namen/ - 2026-03-04T12:05:53.000Z + 2026-03-04T12:05:53.400Z monthly 0.8 @@ -81326,7 +81515,7 @@ https://www.rfc1437.de/2003/10/17/atom-api/ - 2026-03-04T12:05:58.000Z + 2026-03-04T12:05:58.494Z monthly 0.8 @@ -81335,7 +81524,7 @@ https://www.rfc1437.de/2003/10/17/bnd-mitarbeiter-wegen-spionage-verhaftet/ - 2026-03-04T12:06:03.000Z + 2026-03-04T12:06:03.133Z monthly 0.8 @@ -81344,7 +81533,7 @@ https://www.rfc1437.de/2003/10/17/bush-erkennt-parallelen-zu-arnie/ - 2026-03-04T12:06:08.000Z + 2026-03-04T12:06:08.181Z monthly 0.8 @@ -81353,7 +81542,7 @@ https://www.rfc1437.de/2003/10/17/das-beeindruckende-am-heutigen-tag/ - 2026-03-04T12:06:11.000Z + 2026-03-04T12:06:11.317Z monthly 0.8 @@ -81362,7 +81551,7 @@ https://www.rfc1437.de/2003/10/17/first-look-belkin-media-reader-for-ipod/ - 2026-03-04T12:06:15.000Z + 2026-03-04T12:06:15.900Z monthly 0.8 @@ -81371,7 +81560,7 @@ https://www.rfc1437.de/2003/10/17/krieg-gegen-terror-kampf-mit-dem-satan/ - 2026-03-04T12:06:19.000Z + 2026-03-04T12:06:19.961Z monthly 0.8 @@ -81380,7 +81569,7 @@ https://www.rfc1437.de/2003/10/17/lkw-maut-vertrag-wird-offen-gelegt/ - 2026-03-04T12:06:23.000Z + 2026-03-04T12:06:23.883Z monthly 0.8 @@ -81389,7 +81578,7 @@ https://www.rfc1437.de/2003/10/17/microsoft-erhaelt-patent-fuer-cookies/ - 2026-03-04T12:06:27.000Z + 2026-03-04T12:06:27.626Z monthly 0.8 @@ -81398,7 +81587,7 @@ https://www.rfc1437.de/2003/10/17/rollup-pack-fr-wndws-xp-ltt-n-pdt-pltk-vn-mcrsft-n/ - 2026-03-04T12:06:32.000Z + 2026-03-04T12:06:32.336Z monthly 0.8 @@ -81407,7 +81596,7 @@ https://www.rfc1437.de/2003/10/17/staatsanwalt-droht-netzaktivist-mit-berufsverbot/ - 2026-03-04T12:06:36.000Z + 2026-03-04T12:06:36.955Z monthly 0.8 @@ -81416,7 +81605,7 @@ https://www.rfc1437.de/2003/10/17/telekom-beklagt-massive-entwertng-ds-frnmldghmnsss/ - 2026-03-04T12:06:40.000Z + 2026-03-04T12:06:40.776Z monthly 0.8 @@ -81425,7 +81614,7 @@ https://www.rfc1437.de/2003/10/16/mautkorb-fuer-den-bundestag/ - 2026-03-04T12:06:44.000Z + 2026-03-04T12:06:44.988Z monthly 0.8 @@ -81434,7 +81623,7 @@ https://www.rfc1437.de/2003/10/16/phonak-sevilla-wird-rechte-hand-von-hamilton/ - 2026-03-04T12:06:49.000Z + 2026-03-04T12:06:49.161Z monthly 0.8 @@ -81443,7 +81632,7 @@ https://www.rfc1437.de/2003/10/16/saban-dirigiert-streichkonzert-bei-n24/ - 2026-03-04T12:06:54.000Z + 2026-03-04T12:06:54.473Z monthly 0.8 @@ -81452,7 +81641,7 @@ https://www.rfc1437.de/2003/10/16/schwachstellen-in-exchange-server/ - 2026-03-04T12:06:59.000Z + 2026-03-04T12:06:59.086Z monthly 0.8 @@ -81461,7 +81650,7 @@ https://www.rfc1437.de/2003/10/16/stopping-spam/ - 2026-03-04T12:07:02.000Z + 2026-03-04T12:07:02.440Z monthly 0.8 @@ -81470,7 +81659,7 @@ https://www.rfc1437.de/2003/10/16/the-resurrection-of-simplygnustep-osnewscom/ - 2026-03-04T12:07:06.000Z + 2026-03-04T12:07:06.738Z monthly 0.8 @@ -81479,7 +81668,7 @@ https://www.rfc1437.de/2003/10/15/abmahner-und-absahner-anwaelte-packen-aus/ - 2026-03-04T12:07:11.000Z + 2026-03-04T12:07:11.800Z monthly 0.8 @@ -81488,7 +81677,7 @@ https://www.rfc1437.de/2003/10/15/karlsruhe-weist-klage-gegen-tischgebt-m-kndrgrtn-b/ - 2026-03-04T12:07:15.000Z + 2026-03-04T12:07:15.558Z monthly 0.8 @@ -81497,7 +81686,7 @@ https://www.rfc1437.de/2003/10/15/mobbing-wegen-missliebiger-internetseite/ - 2026-03-04T12:07:20.000Z + 2026-03-04T12:07:20.006Z monthly 0.8 @@ -81506,7 +81695,7 @@ https://www.rfc1437.de/2003/10/15/offener-brief-an-martin-walser/ - 2026-03-04T12:07:23.000Z + 2026-03-04T12:07:23.727Z monthly 0.8 @@ -81515,7 +81704,7 @@ https://www.rfc1437.de/2003/10/15/samba-3-schneller-als-windows-2003-server/ - 2026-03-04T12:07:27.000Z + 2026-03-04T12:07:27.958Z monthly 0.8 @@ -81524,7 +81713,7 @@ https://www.rfc1437.de/2003/10/15/us-justizministerium-geht-gegen-greenpeace-vor/ - 2026-03-04T12:07:32.000Z + 2026-03-04T12:07:32.147Z monthly 0.8 @@ -81533,7 +81722,7 @@ https://www.rfc1437.de/2003/10/15/us-marine-schraenkt-sonar-gebrauch-ein/ - 2026-03-04T12:07:36.000Z + 2026-03-04T12:07:36.433Z monthly 0.8 @@ -81542,7 +81731,7 @@ https://www.rfc1437.de/2003/10/15/usa-verhindern-resolution-gegen-israel-durch-veto/ - 2026-03-04T12:07:40.000Z + 2026-03-04T12:07:40.231Z monthly 0.8 @@ -81551,7 +81740,7 @@ https://www.rfc1437.de/2003/10/15/w3c-verabschiedet-neue-web-formulare/ - 2026-03-04T12:07:44.000Z + 2026-03-04T12:07:44.497Z monthly 0.8 @@ -81560,7 +81749,7 @@ https://www.rfc1437.de/2003/10/15/wie-man-den-odem-gruender-mundtot-machen-will/ - 2026-03-04T12:07:49.000Z + 2026-03-04T12:07:49.122Z monthly 0.8 @@ -81569,7 +81758,7 @@ https://www.rfc1437.de/2003/10/14/andrew-grumets-kommtar-zu-kommentarspam/ - 2026-03-04T12:07:53.000Z + 2026-03-04T12:07:53.513Z monthly 0.8 @@ -81578,7 +81767,7 @@ https://www.rfc1437.de/2003/10/14/deutschland-wieder-exportweltmeister/ - 2026-03-04T12:07:57.000Z + 2026-03-04T12:07:57.283Z monthly 0.8 @@ -81587,7 +81776,7 @@ https://www.rfc1437.de/2003/10/14/e-data-strengt-prozess-wegen-patentrechtsvrltzng-n/ - 2026-03-04T12:08:01.000Z + 2026-03-04T12:08:01.537Z monthly 0.8 @@ -81596,7 +81785,7 @@ https://www.rfc1437.de/2003/10/14/koelner-cdu-raeumt-spendenvergehen-ein/ - 2026-03-04T12:08:05.000Z + 2026-03-04T12:08:05.782Z monthly 0.8 @@ -81605,7 +81794,7 @@ https://www.rfc1437.de/2003/10/14/reichmann-in-the-rockies/ - 2026-03-04T12:08:10.000Z + 2026-03-04T12:08:10.094Z monthly 0.8 @@ -81614,7 +81803,7 @@ https://www.rfc1437.de/2003/10/13/guter-apple-boeser-pc/ - 2026-03-04T12:08:14.000Z + 2026-03-04T12:08:14.700Z monthly 0.8 @@ -81623,7 +81812,7 @@ https://www.rfc1437.de/2003/10/13/loadbalancer-in-python/ - 2026-03-04T12:08:19.000Z + 2026-03-04T12:08:19.054Z monthly 0.8 @@ -81632,7 +81821,7 @@ https://www.rfc1437.de/2003/10/13/nicht-vorsorglich-aufs-klo/ - 2026-03-04T12:08:22.000Z + 2026-03-04T12:08:22.847Z monthly 0.8 @@ -81641,7 +81830,7 @@ https://www.rfc1437.de/2003/10/13/twiki-api/ - 2026-03-04T12:08:27.000Z + 2026-03-04T12:08:27.486Z monthly 0.8 @@ -81650,7 +81839,7 @@ https://www.rfc1437.de/2003/10/12/oednis-in-oedenfeld/ - 2026-03-04T12:08:31.000Z + 2026-03-04T12:08:31.311Z monthly 0.8 @@ -81659,7 +81848,7 @@ https://www.rfc1437.de/2003/10/12/zur-rechristianisierung-des-westens/ - 2026-03-04T12:08:35.000Z + 2026-03-04T12:08:35.146Z monthly 0.8 @@ -81668,7 +81857,7 @@ https://www.rfc1437.de/2003/10/11/israel-hat-s-dtschlnd-stmmnd-bt-mt-tmbmbn-sgstttt/ - 2026-03-04T12:08:39.000Z + 2026-03-04T12:08:39.362Z monthly 0.8 @@ -81677,7 +81866,7 @@ https://www.rfc1437.de/2003/10/11/kopierschutz-anbieter-zieht-klagedrohung-zurueck/ - 2026-03-04T12:08:44.000Z + 2026-03-04T12:08:44.005Z monthly 0.8 @@ -81686,7 +81875,7 @@ https://www.rfc1437.de/2003/10/11/zabel-gereizt-nach-ullrich-rueckkehr-kein-psn-clwn/ - 2026-03-04T12:08:48.000Z + 2026-03-04T12:08:48.276Z monthly 0.8 @@ -81695,7 +81884,7 @@ https://www.rfc1437.de/2003/10/10/kopierschutzhersteller-will-doktorand-verklagen/ - 2026-03-04T12:08:52.000Z + 2026-03-04T12:08:52.544Z monthly 0.8 @@ -81704,7 +81893,7 @@ https://www.rfc1437.de/2003/10/10/militaersonar-liess-wale-stranden/ - 2026-03-04T12:08:57.000Z + 2026-03-04T12:08:57.199Z monthly 0.8 @@ -81713,7 +81902,7 @@ https://www.rfc1437.de/2003/10/10/no-napster-20-for-the-ipod/ - 2026-03-04T12:09:01.000Z + 2026-03-04T12:09:01.852Z monthly 0.8 @@ -81722,7 +81911,7 @@ https://www.rfc1437.de/2003/10/10/radsport-wm-bronze-im-zeitfahren-fuer-peschel/ - 2026-03-04T12:09:06.000Z + 2026-03-04T12:09:06.079Z monthly 0.8 @@ -81731,7 +81920,7 @@ https://www.rfc1437.de/2003/10/10/spaszlig-mit-der-nigeria-connection/ - 2026-03-04T12:09:10.000Z + 2026-03-04T12:09:10.322Z monthly 0.8 @@ -81740,7 +81929,7 @@ https://www.rfc1437.de/2003/10/09/religion-ist-kokain-fuumlrs-volk/ - 2026-03-04T12:09:15.000Z + 2026-03-04T12:09:15.457Z monthly 0.8 @@ -81749,7 +81938,7 @@ https://www.rfc1437.de/2003/10/09/schnellweg-zum-warenkorb/ - 2026-03-04T12:09:19.000Z + 2026-03-04T12:09:19.431Z monthly 0.8 @@ -81758,7 +81947,7 @@ https://www.rfc1437.de/2003/10/09/sculley-apple-should-have-used-intel-chips/ - 2026-03-04T12:09:24.000Z + 2026-03-04T12:09:24.137Z monthly 0.8 @@ -81767,7 +81956,7 @@ https://www.rfc1437.de/2003/10/08/bill-bond/ - 2026-03-04T12:09:27.000Z + 2026-03-04T12:09:27.959Z monthly 0.8 @@ -81776,7 +81965,7 @@ https://www.rfc1437.de/2003/10/08/building-a-balancing-scooter/ - 2026-03-04T12:09:32.000Z + 2026-03-04T12:09:32.214Z monthly 0.8 @@ -81785,7 +81974,7 @@ https://www.rfc1437.de/2003/10/07/0710-0503-farbenblind/ - 2026-03-04T12:09:36.000Z + 2026-03-04T12:09:36.462Z monthly 0.8 @@ -81794,7 +81983,7 @@ https://www.rfc1437.de/2003/10/07/microsoft-aendert-internet-explorer-wegen-ls-ptntn/ - 2026-03-04T12:09:41.000Z + 2026-03-04T12:09:41.149Z monthly 0.8 @@ -81803,7 +81992,7 @@ https://www.rfc1437.de/2003/10/07/neuer-schachzug-gegen-urheberrecht-nd-fr-kprprgrmm/ - 2026-03-04T12:09:45.000Z + 2026-03-04T12:09:45.409Z monthly 0.8 @@ -81812,7 +82001,7 @@ https://www.rfc1437.de/2003/10/07/technische-inkompetenz-oder-wunschdenken/ - 2026-03-04T12:09:49.000Z + 2026-03-04T12:09:49.629Z monthly 0.8 @@ -81821,7 +82010,7 @@ https://www.rfc1437.de/2003/10/07/verisign-verteidigt-sitefinder/ - 2026-03-04T12:09:53.000Z + 2026-03-04T12:09:53.999Z monthly 0.8 @@ -81830,7 +82019,7 @@ https://www.rfc1437.de/2003/10/07/weltrangliste-zabel-wieder-vor-bettini/ - 2026-03-04T12:09:57.000Z + 2026-03-04T12:09:57.758Z monthly 0.8 @@ -81839,7 +82028,7 @@ https://www.rfc1437.de/2003/10/06/asteroid-verfehlte-die-erde-nur-knapp/ - 2026-03-04T12:10:01.000Z + 2026-03-04T12:10:01.531Z monthly 0.8 @@ -81848,7 +82037,7 @@ https://www.rfc1437.de/2003/10/06/das-nenn-ich-case-modding/ - 2026-03-04T12:10:04.000Z + 2026-03-04T12:10:04.966Z monthly 0.8 @@ -81857,7 +82046,7 @@ https://www.rfc1437.de/2003/10/06/die-verisign-sondersitzung-naht/ - 2026-03-04T12:10:09.000Z + 2026-03-04T12:10:09.674Z monthly 0.8 @@ -81866,7 +82055,7 @@ https://www.rfc1437.de/2003/10/06/europaeischer-itms-im-mai-2004/ - 2026-03-04T12:10:13.000Z + 2026-03-04T12:10:13.460Z monthly 0.8 @@ -81875,7 +82064,7 @@ https://www.rfc1437.de/2003/10/06/gute-frage/ - 2026-03-04T12:10:18.000Z + 2026-03-04T12:10:18.872Z monthly 0.8 @@ -81884,7 +82073,7 @@ https://www.rfc1437.de/2003/10/06/multithreaded-python-fuer-dos/ - 2026-03-04T12:10:24.000Z + 2026-03-04T12:10:24.135Z monthly 0.8 @@ -81893,7 +82082,7 @@ https://www.rfc1437.de/2003/10/06/schoumlner-coden/ - 2026-03-04T12:10:28.000Z + 2026-03-04T12:10:28.641Z monthly 0.8 @@ -81902,7 +82091,7 @@ https://www.rfc1437.de/2003/10/06/system-der-info-bildschirme-in-hmbrgr-bhnn-gknckt/ - 2026-03-04T12:10:32.000Z + 2026-03-04T12:10:32.981Z monthly 0.8 @@ -81911,7 +82100,7 @@ https://www.rfc1437.de/2003/10/06/unerhoert-falsche-annahmen/ - 2026-03-04T12:10:37.000Z + 2026-03-04T12:10:37.281Z monthly 0.8 @@ -81920,7 +82109,7 @@ https://www.rfc1437.de/2003/10/06/warum-ich-microsoft-hasse/ - 2026-03-04T12:10:41.000Z + 2026-03-04T12:10:41.954Z monthly 0.8 @@ -81929,7 +82118,7 @@ https://www.rfc1437.de/2003/10/05/es5-entwickler-entfernen-hintertuer/ - 2026-03-04T12:10:45.000Z + 2026-03-04T12:10:45.966Z monthly 0.8 @@ -81938,7 +82127,7 @@ https://www.rfc1437.de/2003/10/05/grafmatic-sheet-film-holder/ - 2026-03-04T12:10:50.000Z + 2026-03-04T12:10:50.149Z monthly 0.8 @@ -81947,7 +82136,7 @@ https://www.rfc1437.de/2003/10/05/kampf-gegen-strikewindmuehlenstrikeschornsteinfegr/ - 2026-03-04T12:10:54.000Z + 2026-03-04T12:10:54.410Z monthly 0.8 @@ -81956,7 +82145,7 @@ https://www.rfc1437.de/2003/10/04/kill-bill-neuer-tarantino-im-kino/ - 2026-03-04T12:10:57.000Z + 2026-03-04T12:10:57.422Z monthly 0.8 @@ -81965,7 +82154,7 @@ https://www.rfc1437.de/2003/10/04/quellcode-geklaut/ - 2026-03-04T12:11:01.000Z + 2026-03-04T12:11:01.698Z monthly 0.8 @@ -81974,7 +82163,7 @@ https://www.rfc1437.de/2003/10/04/scientologists-treatments-lure-firefighters/ - 2026-03-04T12:11:05.000Z + 2026-03-04T12:11:05.996Z monthly 0.8 @@ -81983,7 +82172,7 @@ https://www.rfc1437.de/2003/10/04/spd-abweichlern-mit-abwahl-gedroht/ - 2026-03-04T12:11:10.000Z + 2026-03-04T12:11:10.316Z monthly 0.8 @@ -81992,7 +82181,7 @@ https://www.rfc1437.de/2003/10/04/systemabstuerze-durch-defekte-elkos/ - 2026-03-04T12:11:14.000Z + 2026-03-04T12:11:14.584Z monthly 0.8 @@ -82001,7 +82190,7 @@ https://www.rfc1437.de/2003/10/04/ullrich-angeblich-doch-mit-telekom-einig/ - 2026-03-04T12:11:19.000Z + 2026-03-04T12:11:19.037Z monthly 0.8 @@ -82010,7 +82199,7 @@ https://www.rfc1437.de/2003/10/04/verisign-nimmt-site-finder-vom-netz/ - 2026-03-04T12:11:23.000Z + 2026-03-04T12:11:23.343Z monthly 0.8 @@ -82019,7 +82208,7 @@ https://www.rfc1437.de/2003/10/04/versenkbares-90mm-objektiv-fuer-leica-m/ - 2026-03-04T12:11:28.000Z + 2026-03-04T12:11:28.064Z monthly 0.8 @@ -82028,7 +82217,7 @@ https://www.rfc1437.de/2003/10/03/groesstmoegliche-gemeinheit/ - 2026-03-04T12:11:32.000Z + 2026-03-04T12:11:32.291Z monthly 0.8 @@ -82037,7 +82226,7 @@ https://www.rfc1437.de/2003/10/03/iwanow-russischer-erstschlag-nicht-ausgeschlossen/ - 2026-03-04T12:11:36.000Z + 2026-03-04T12:11:36.099Z monthly 0.8 @@ -82046,7 +82235,7 @@ https://www.rfc1437.de/2003/10/03/microsoft-haelt-patent-auf-fehlerreports/ - 2026-03-04T12:11:39.000Z + 2026-03-04T12:11:39.934Z monthly 0.8 @@ -82055,7 +82244,7 @@ https://www.rfc1437.de/2003/10/03/panasonic-lumix-dmc-lc1-at-ceatec/ - 2026-03-04T12:11:44.000Z + 2026-03-04T12:11:44.213Z monthly 0.8 @@ -82064,7 +82253,7 @@ https://www.rfc1437.de/2003/10/03/signs-of-intelligence-icann-dmnds-vrsgn-kll-stfndr/ - 2026-03-04T12:11:48.000Z + 2026-03-04T12:11:48.075Z monthly 0.8 @@ -82073,7 +82262,7 @@ https://www.rfc1437.de/2003/10/02/auch-mal-statistik/ - 2026-03-04T12:11:51.000Z + 2026-03-04T12:11:51.484Z monthly 0.8 @@ -82082,7 +82271,7 @@ https://www.rfc1437.de/2003/10/02/ermittlungen-wegen-kanzleramtsakten-eingestellt/ - 2026-03-04T12:11:55.000Z + 2026-03-04T12:11:55.315Z monthly 0.8 @@ -82091,7 +82280,7 @@ https://www.rfc1437.de/2003/10/02/panasonic-lumix-dmc-fz10/ - 2026-03-04T12:11:59.000Z + 2026-03-04T12:11:59.979Z monthly 0.8 @@ -82100,7 +82289,7 @@ https://www.rfc1437.de/2003/10/02/pyds-060-ist-raus/ - 2026-03-04T12:12:04.000Z + 2026-03-04T12:12:04.320Z monthly 0.8 @@ -82109,7 +82298,7 @@ https://www.rfc1437.de/2003/10/02/replikation-fuer-postgresql/ - 2026-03-04T12:12:08.000Z + 2026-03-04T12:12:08.142Z monthly 0.8 @@ -82118,7 +82307,7 @@ https://www.rfc1437.de/2003/10/02/security-oder-feature/ - 2026-03-04T12:12:12.000Z + 2026-03-04T12:12:12.448Z monthly 0.8 @@ -82127,7 +82316,7 @@ https://www.rfc1437.de/2003/10/02/tibco-threatens-developers-over-rendezvous/ - 2026-03-04T12:12:15.000Z + 2026-03-04T12:12:15.928Z monthly 0.8 @@ -82136,7 +82325,7 @@ https://www.rfc1437.de/2003/10/02/trojaner-leitet-browser-auf-falsche-seiten/ - 2026-03-04T12:12:20.000Z + 2026-03-04T12:12:20.038Z monthly 0.8 @@ -82145,7 +82334,7 @@ https://www.rfc1437.de/2003/10/02/via-boards-und-chips-fuer-kleine-stromsparnd-systm/ - 2026-03-04T12:12:23.000Z + 2026-03-04T12:12:23.846Z monthly 0.8 @@ -82154,7 +82343,7 @@ https://www.rfc1437.de/2003/10/01/abteilung-seltsame-versionsnummern/ - 2026-03-04T12:12:27.000Z + 2026-03-04T12:12:27.229Z monthly 0.8 @@ -82163,7 +82352,7 @@ https://www.rfc1437.de/2003/10/01/grafisches-betriebssystem-mit-tcpip-stack-fuer-c64/ - 2026-03-04T12:12:31.000Z + 2026-03-04T12:12:31.040Z monthly 0.8 @@ -82172,7 +82361,7 @@ https://www.rfc1437.de/2003/10/01/haben-will/ - 2026-03-04T12:12:35.000Z + 2026-03-04T12:12:35.409Z monthly 0.8 @@ -82181,7 +82370,7 @@ https://www.rfc1437.de/2003/10/01/oeko-test-hohe-strahlung-bei-wlan-netzwerken/ - 2026-03-04T12:12:40.000Z + 2026-03-04T12:12:40.087Z monthly 0.8 @@ -82190,7 +82379,7 @@ https://www.rfc1437.de/2003/10/01/ransom-love-ueber-scos-aktivitaeten/ - 2026-03-04T12:12:44.000Z + 2026-03-04T12:12:44.421Z monthly 0.8 @@ -82199,7 +82388,7 @@ https://www.rfc1437.de/2003/10/01/regtp-statt-denic-feedback/ - 2026-03-04T12:12:49.000Z + 2026-03-04T12:12:49.085Z monthly 0.8 @@ -82208,7 +82397,7 @@ https://www.rfc1437.de/2003/10/01/ssh-fuer-hires-palms-tungsten-clie/ - 2026-03-04T12:12:53.000Z + 2026-03-04T12:12:53.849Z monthly 0.8 @@ -82217,7 +82406,7 @@ https://www.rfc1437.de/2003/10/01/ssh2-implementation-in-python/ - 2026-03-04T12:12:58.000Z + 2026-03-04T12:12:58.175Z monthly 0.8 @@ -82226,7 +82415,7 @@ https://www.rfc1437.de/2003/10/01/using-the-patriot-act-to-get-reporters-records/ - 2026-03-04T12:13:02.000Z + 2026-03-04T12:13:02.420Z monthly 0.8 @@ -82235,7 +82424,7 @@ https://www.rfc1437.de/2003/10/01/wie-man-mit-software-fehlern-geld-machen-kann/ - 2026-03-04T12:13:06.000Z + 2026-03-04T12:13:06.720Z monthly 0.8 @@ -82244,7 +82433,7 @@ https://www.rfc1437.de/2003/10/01/wiki-zum-buch-quicksilver-von-neal-stephenson/ - 2026-03-04T12:13:10.000Z + 2026-03-04T12:13:10.953Z monthly 0.8 @@ -82253,7 +82442,7 @@ https://www.rfc1437.de/2003/09/30/die-verbloedung-schreitet-voran/ - 2026-03-04T12:13:15.000Z + 2026-03-04T12:13:15.668Z monthly 0.8 @@ -82262,7 +82451,7 @@ https://www.rfc1437.de/2003/09/30/drawbot-python-pyobjc-and-coc-bsd-2d-drwng-nvrnmnt/ - 2026-03-04T12:13:20.000Z + 2026-03-04T12:13:20.603Z monthly 0.8 @@ -82271,7 +82460,7 @@ https://www.rfc1437.de/2003/09/30/eigenverantwortung-foerdern/ - 2026-03-04T12:13:24.000Z + 2026-03-04T12:13:24.028Z monthly 0.8 @@ -82280,7 +82469,7 @@ https://www.rfc1437.de/2003/09/30/file-extension-details-database/ - 2026-03-04T12:13:27.000Z + 2026-03-04T12:13:27.896Z monthly 0.8 @@ -82289,7 +82478,7 @@ https://www.rfc1437.de/2003/09/30/linux-auf-dem-ipod/ - 2026-03-04T12:13:31.000Z + 2026-03-04T12:13:31.302Z monthly 0.8 @@ -82298,7 +82487,7 @@ https://www.rfc1437.de/2003/09/30/sco-vs-linux-schutz-unter-dem-baldachin/ - 2026-03-04T12:13:35.000Z + 2026-03-04T12:13:35.300Z monthly 0.8 @@ -82307,7 +82496,7 @@ https://www.rfc1437.de/2003/09/29/japanische-massenorgie-erzuernt-china/ - 2026-03-04T12:13:39.000Z + 2026-03-04T12:13:39.533Z monthly 0.8 @@ -82316,7 +82505,7 @@ https://www.rfc1437.de/2003/09/28/besier-und-scientology-sueddeutschede-feuilleton/ - 2026-03-04T12:13:43.000Z + 2026-03-04T12:13:43.780Z monthly 0.8 @@ -82325,7 +82514,7 @@ https://www.rfc1437.de/2003/09/28/dax-firmen-uebernehmen-weniger-azubis/ - 2026-03-04T12:13:48.000Z + 2026-03-04T12:13:48.141Z monthly 0.8 @@ -82334,7 +82523,7 @@ https://www.rfc1437.de/2003/09/28/droht-eine-verweiblichung-des-schulbetriebs/ - 2026-03-04T12:13:52.000Z + 2026-03-04T12:13:52.807Z monthly 0.8 @@ -82343,7 +82532,7 @@ https://www.rfc1437.de/2003/09/28/nuember-1-foermuela-for-mn/ - 2026-03-04T12:13:57.000Z + 2026-03-04T12:13:57.066Z monthly 0.8 @@ -82352,7 +82541,7 @@ https://www.rfc1437.de/2003/09/28/quiz-zeit/ - 2026-03-04T12:14:01.000Z + 2026-03-04T12:14:01.306Z monthly 0.8 @@ -82361,7 +82550,7 @@ https://www.rfc1437.de/2003/09/28/robot-controller-17b2/ - 2026-03-04T12:14:05.000Z + 2026-03-04T12:14:05.161Z monthly 0.8 @@ -82370,7 +82559,7 @@ https://www.rfc1437.de/2003/09/27/ein-kleiner-schritt-vom-whisky-zur-chemiewaffe/ - 2026-03-04T12:14:10.000Z + 2026-03-04T12:14:10.356Z monthly 0.8 @@ -82379,7 +82568,7 @@ https://www.rfc1437.de/2003/09/27/freiheit-dr-sftwr-wrd-vn-dr-n-ls-schtznswrt-nrknnt/ - 2026-03-04T12:14:15.000Z + 2026-03-04T12:14:15.431Z monthly 0.8 @@ -82388,7 +82577,7 @@ https://www.rfc1437.de/2003/09/27/heras-inches-closer-to-nozal-with-uphill-itt-lomng/ - 2026-03-04T12:14:20.000Z + 2026-03-04T12:14:20.181Z monthly 0.8 @@ -82397,7 +82586,7 @@ https://www.rfc1437.de/2003/09/27/heras-schluepft-bei-spanien-rundfahrt-ins-goldtrkt/ - 2026-03-04T12:14:25.000Z + 2026-03-04T12:14:25.177Z monthly 0.8 @@ -82406,7 +82595,7 @@ https://www.rfc1437.de/2003/09/27/ibm-reicht-neue-klage-gegen-sco-ein/ - 2026-03-04T12:14:29.000Z + 2026-03-04T12:14:29.389Z monthly 0.8 @@ -82415,7 +82604,7 @@ https://www.rfc1437.de/2003/09/27/morons-in-the-news-banned-book-week-food-for-thght/ - 2026-03-04T12:14:33.000Z + 2026-03-04T12:14:33.686Z monthly 0.8 @@ -82424,7 +82613,7 @@ https://www.rfc1437.de/2003/09/27/reader-submitted-cwa-decides-that-hmsxls-r-trrrsts/ - 2026-03-04T12:14:38.000Z + 2026-03-04T12:14:38.952Z monthly 0.8 @@ -82433,7 +82622,7 @@ https://www.rfc1437.de/2003/09/27/spd-abweichler-muessen-sich-verantworten/ - 2026-03-04T12:14:43.000Z + 2026-03-04T12:14:43.530Z monthly 0.8 @@ -82442,7 +82631,7 @@ https://www.rfc1437.de/2003/09/27/unionspolitiker-fuer-schaeuble-als-rau-nachfolger/ - 2026-03-04T12:14:48.000Z + 2026-03-04T12:14:48.242Z monthly 0.8 @@ -82451,7 +82640,7 @@ https://www.rfc1437.de/2003/09/27/wortfeld-icann-und-die-weltfernmeldeunion-itu/ - 2026-03-04T12:14:52.000Z + 2026-03-04T12:14:52.622Z monthly 0.8 @@ -82460,7 +82649,7 @@ https://www.rfc1437.de/2003/09/26/arm-von-amts-wegen/ - 2026-03-04T12:14:57.000Z + 2026-03-04T12:14:57.361Z monthly 0.8 @@ -82469,7 +82658,7 @@ https://www.rfc1437.de/2003/09/26/bossi-christdemokraten-gehoerten-erschossen/ - 2026-03-04T12:15:01.000Z + 2026-03-04T12:15:01.420Z monthly 0.8 @@ -82478,7 +82667,7 @@ https://www.rfc1437.de/2003/09/26/herzog-kommission-rente-nach-45-jahren/ - 2026-03-04T12:15:06.000Z + 2026-03-04T12:15:06.011Z monthly 0.8 @@ -82487,7 +82676,7 @@ https://www.rfc1437.de/2003/09/26/imaginary-python-books-that-i-would-like-to-read/ - 2026-03-04T12:15:10.000Z + 2026-03-04T12:15:10.556Z monthly 0.8 @@ -82496,7 +82685,7 @@ https://www.rfc1437.de/2003/09/26/motorola-trennt-sich-von-chipsaetzen-fuer-powerpcs/ - 2026-03-04T12:15:15.000Z + 2026-03-04T12:15:15.550Z monthly 0.8 @@ -82505,7 +82694,7 @@ https://www.rfc1437.de/2003/09/26/storever-online-backup/ - 2026-03-04T12:15:20.000Z + 2026-03-04T12:15:20.346Z monthly 0.8 @@ -82514,7 +82703,7 @@ https://www.rfc1437.de/2003/09/26/umfrage-spd-weiter-im-sinkflug/ - 2026-03-04T12:15:24.000Z + 2026-03-04T12:15:24.987Z monthly 0.8 @@ -82523,7 +82712,7 @@ https://www.rfc1437.de/2003/09/25/apt-fuer-rpms/ - 2026-03-04T12:15:29.000Z + 2026-03-04T12:15:29.026Z monthly 0.8 @@ -82532,7 +82721,7 @@ https://www.rfc1437.de/2003/09/25/israel-kampfpiloten-rebellion-lost-pltschs-rdbbn-s/ - 2026-03-04T12:15:34.000Z + 2026-03-04T12:15:34.027Z monthly 0.8 @@ -82541,7 +82730,7 @@ https://www.rfc1437.de/2003/09/25/israelische-piloten-verweigern-angriffe/ - 2026-03-04T12:15:38.000Z + 2026-03-04T12:15:38.976Z monthly 0.8 @@ -82550,7 +82739,7 @@ https://www.rfc1437.de/2003/09/25/passwort-klau-durch-luecke-im-internet-explorer/ - 2026-03-04T12:15:42.000Z + 2026-03-04T12:15:42.572Z monthly 0.8 @@ -82559,7 +82748,7 @@ https://www.rfc1437.de/2003/09/25/unions-fraktion-fuer-studiengebuehren/ - 2026-03-04T12:15:47.000Z + 2026-03-04T12:15:47.109Z monthly 0.8 @@ -82568,7 +82757,7 @@ https://www.rfc1437.de/2003/09/24/berlusconi-als-kaempfer-gegen-den-antisemtsms-ghrt/ - 2026-03-04T12:15:52.000Z + 2026-03-04T12:15:52.023Z monthly 0.8 @@ -82577,7 +82766,7 @@ https://www.rfc1437.de/2003/09/24/ftp-server-proftpd-verwundbar/ - 2026-03-04T12:15:56.000Z + 2026-03-04T12:15:56.967Z monthly 0.8 @@ -82586,7 +82775,7 @@ https://www.rfc1437.de/2003/09/24/klammerschluszliggesetz/ - 2026-03-04T12:16:01.000Z + 2026-03-04T12:16:01.411Z monthly 0.8 @@ -82595,7 +82784,7 @@ https://www.rfc1437.de/2003/09/24/richtlinie-zu-software-patenten-verabschiedet/ - 2026-03-04T12:16:05.000Z + 2026-03-04T12:16:05.983Z monthly 0.8 @@ -82604,7 +82793,7 @@ https://www.rfc1437.de/2003/09/24/sophos-kauft-activestate/ - 2026-03-04T12:16:10.000Z + 2026-03-04T12:16:10.394Z monthly 0.8 @@ -82613,7 +82802,7 @@ https://www.rfc1437.de/2003/09/23/in-sechs-wochen-vom-helfer-zum-vueltasieger/ - 2026-03-04T12:16:14.000Z + 2026-03-04T12:16:14.818Z monthly 0.8 @@ -82622,7 +82811,7 @@ https://www.rfc1437.de/2003/09/23/mac-os-x-1028-causes-problems-for-some/ - 2026-03-04T12:16:19.000Z + 2026-03-04T12:16:19.376Z monthly 0.8 @@ -82631,7 +82820,7 @@ https://www.rfc1437.de/2003/09/23/rainer-joswigs-home/ - 2026-03-04T12:16:23.000Z + 2026-03-04T12:16:23.933Z monthly 0.8 @@ -82640,7 +82829,7 @@ https://www.rfc1437.de/2003/09/22/ermittlungsverfahren-gegen-altkanzler-kohl/ - 2026-03-04T12:16:28.000Z + 2026-03-04T12:16:28.422Z monthly 0.8 @@ -82649,7 +82838,7 @@ https://www.rfc1437.de/2003/09/22/gesundheitskompromiss-merz-laeuft-amok/ - 2026-03-04T12:16:33.000Z + 2026-03-04T12:16:33.470Z monthly 0.8 @@ -82658,7 +82847,7 @@ https://www.rfc1437.de/2003/09/22/spd-gewaltiger-mitgliederschwund-in-nrw/ - 2026-03-04T12:16:37.000Z + 2026-03-04T12:16:37.894Z monthly 0.8 @@ -82667,7 +82856,7 @@ https://www.rfc1437.de/2003/09/21/wnr-f-dwy-dcml-systm-ss-nw-yrks-lbrry-htl-frm-tmp/ - 2026-03-04T12:16:42.000Z + 2026-03-04T12:16:42.814Z monthly 0.8 @@ -82676,7 +82865,7 @@ https://www.rfc1437.de/2003/09/20/applescript-studio-tutorial/ - 2026-03-04T12:16:46.000Z + 2026-03-04T12:16:46.349Z monthly 0.8 @@ -82685,7 +82874,7 @@ https://www.rfc1437.de/2003/09/20/faszinierend/ - 2026-03-04T12:16:49.000Z + 2026-03-04T12:16:49.471Z monthly 0.8 @@ -82694,7 +82883,7 @@ https://www.rfc1437.de/2003/09/20/hightech-heroin/ - 2026-03-04T12:16:53.000Z + 2026-03-04T12:16:53.924Z monthly 0.8 @@ -82703,7 +82892,7 @@ https://www.rfc1437.de/2003/09/20/pursuing-the-17th-century-origins-of-the-hckrs-grl/ - 2026-03-04T12:16:58.000Z + 2026-03-04T12:16:58.777Z monthly 0.8 @@ -82712,7 +82901,7 @@ https://www.rfc1437.de/2003/09/20/taz-20903-stoiber-erringt-klaren-sieg/ - 2026-03-04T12:17:03.000Z + 2026-03-04T12:17:03.712Z monthly 0.8 @@ -82721,7 +82910,7 @@ https://www.rfc1437.de/2003/09/19/casemodding-der-ganz-besonderen-art/ - 2026-03-04T12:17:07.000Z + 2026-03-04T12:17:07.246Z monthly 0.8 @@ -82730,7 +82919,7 @@ https://www.rfc1437.de/2003/09/19/computer-makers-sued-over-hard-drive-size-claims/ - 2026-03-04T12:17:12.000Z + 2026-03-04T12:17:12.174Z monthly 0.8 @@ -82739,7 +82928,7 @@ https://www.rfc1437.de/2003/09/19/die-zukunft-fuer-hessens-frauen-ist-gesichert/ - 2026-03-04T12:17:16.000Z + 2026-03-04T12:17:16.995Z monthly 0.8 @@ -82748,7 +82937,7 @@ https://www.rfc1437.de/2003/09/19/doch-nur-ein-braunbaer/ - 2026-03-04T12:17:21.000Z + 2026-03-04T12:17:21.690Z monthly 0.8 @@ -82757,7 +82946,7 @@ https://www.rfc1437.de/2003/09/19/dosenfleisch/ - 2026-03-04T12:17:26.000Z + 2026-03-04T12:17:26.529Z monthly 0.8 @@ -82766,7 +82955,7 @@ https://www.rfc1437.de/2003/09/19/effektive-massnahmen-gegen-comment-spam/ - 2026-03-04T12:17:30.000Z + 2026-03-04T12:17:30.523Z monthly 0.8 @@ -82775,7 +82964,7 @@ https://www.rfc1437.de/2003/09/18/200-dollar-note-mit-bush-bild/ - 2026-03-04T12:17:34.000Z + 2026-03-04T12:17:34.109Z monthly 0.8 @@ -82784,7 +82973,7 @@ https://www.rfc1437.de/2003/09/18/ebay-happy-to-give-away-all-personal-info/ - 2026-03-04T12:17:38.000Z + 2026-03-04T12:17:38.550Z monthly 0.8 @@ -82793,7 +82982,7 @@ https://www.rfc1437.de/2003/09/18/falsche-kriminalstatistik-in-hamburg/ - 2026-03-04T12:17:43.000Z + 2026-03-04T12:17:43.381Z monthly 0.8 @@ -82802,7 +82991,7 @@ https://www.rfc1437.de/2003/09/18/integration-von-mailsmith-mit-popfile/ - 2026-03-04T12:17:48.000Z + 2026-03-04T12:17:48.032Z monthly 0.8 @@ -82811,7 +83000,7 @@ https://www.rfc1437.de/2003/09/18/mit-linux-auf-verbrecherjagd/ - 2026-03-04T12:17:52.000Z + 2026-03-04T12:17:52.471Z monthly 0.8 @@ -82820,7 +83009,7 @@ https://www.rfc1437.de/2003/09/18/pic-schloss-nordkirchen/ - 2026-03-04T12:17:56.000Z + 2026-03-04T12:17:56.941Z monthly 0.8 @@ -82829,7 +83018,7 @@ https://www.rfc1437.de/2003/09/18/rtl-steigt-im-poker-um-tour-rechte-aus/ - 2026-03-04T12:18:01.000Z + 2026-03-04T12:18:01.403Z monthly 0.8 @@ -82838,7 +83027,7 @@ https://www.rfc1437.de/2003/09/18/schloss-nordkirchen/ - 2026-03-04T12:18:08.000Z + 2026-03-04T12:18:08.892Z monthly 0.8 @@ -82847,7 +83036,7 @@ https://www.rfc1437.de/2003/09/18/wouthit-a-porbelm-huh/ - 2026-03-04T12:18:13.000Z + 2026-03-04T12:18:13.381Z monthly 0.8 @@ -82856,7 +83045,7 @@ https://www.rfc1437.de/2003/09/17/all-your-com-are-belong-to-us-hebigorgblog/ - 2026-03-04T12:18:18.000Z + 2026-03-04T12:18:18.800Z monthly 0.8 @@ -82865,7 +83054,7 @@ https://www.rfc1437.de/2003/09/17/apple-expo-radio-mit-timeshift/ - 2026-03-04T12:18:22.000Z + 2026-03-04T12:18:22.537Z monthly 0.8 @@ -82874,7 +83063,7 @@ https://www.rfc1437.de/2003/09/17/ceo-performance-poll/ - 2026-03-04T12:18:26.000Z + 2026-03-04T12:18:26.975Z monthly 0.8 @@ -82883,7 +83072,7 @@ https://www.rfc1437.de/2003/09/17/interview-mit-udo-boelts/ - 2026-03-04T12:18:31.000Z + 2026-03-04T12:18:31.919Z monthly 0.8 @@ -82892,7 +83081,7 @@ https://www.rfc1437.de/2003/09/17/openssh-37-schliesst-sicherheitsloch-2-update/ - 2026-03-04T12:18:36.000Z + 2026-03-04T12:18:36.829Z monthly 0.8 @@ -82901,7 +83090,7 @@ https://www.rfc1437.de/2003/09/17/regtp-statt-denic-aktiv-werden/ - 2026-03-04T12:18:40.000Z + 2026-03-04T12:18:40.972Z monthly 0.8 @@ -82910,7 +83099,7 @@ https://www.rfc1437.de/2003/09/17/turn-your-radio-on/ - 2026-03-04T12:18:45.000Z + 2026-03-04T12:18:45.850Z monthly 0.8 @@ -82919,7 +83108,7 @@ https://www.rfc1437.de/2003/09/17/verisign-fischt-traffic-ab/ - 2026-03-04T12:18:49.000Z + 2026-03-04T12:18:49.833Z monthly 0.8 @@ -82928,7 +83117,7 @@ https://www.rfc1437.de/2003/09/16/karl-klammer-fuers-netz/ - 2026-03-04T12:18:54.000Z + 2026-03-04T12:18:54.536Z monthly 0.8 @@ -82937,7 +83126,7 @@ https://www.rfc1437.de/2003/09/16/kommentare-zu-den-neuen-apple-spielzeugen/ - 2026-03-04T12:18:59.000Z + 2026-03-04T12:18:59.237Z monthly 0.8 @@ -82946,7 +83135,7 @@ https://www.rfc1437.de/2003/09/16/kris-delmhorst/ - 2026-03-04T12:19:03.000Z + 2026-03-04T12:19:03.462Z monthly 0.8 @@ -82955,7 +83144,7 @@ https://www.rfc1437.de/2003/09/16/muensterland-tour-der-junioren-ab-freitag/ - 2026-03-04T12:19:07.000Z + 2026-03-04T12:19:07.899Z monthly 0.8 @@ -82964,7 +83153,7 @@ https://www.rfc1437.de/2003/09/16/nickijainecom/ - 2026-03-04T12:19:11.000Z + 2026-03-04T12:19:11.914Z monthly 0.8 @@ -82982,7 +83171,7 @@ https://www.rfc1437.de/2003/09/16/pic-lampen-an-der-stadtbuecherei/ - 2026-03-04T12:19:22.000Z + 2026-03-04T12:19:22.076Z monthly 0.8 @@ -82991,7 +83180,7 @@ https://www.rfc1437.de/2003/09/16/pic-stadtbuecherei-muenster-haupteingang/ - 2026-03-04T12:19:27.000Z + 2026-03-04T12:19:27.718Z monthly 0.8 @@ -83000,7 +83189,7 @@ https://www.rfc1437.de/2003/09/16/pic-stadtbuecherei-muenster-nebengang/ - 2026-03-04T12:19:33.000Z + 2026-03-04T12:19:33.212Z monthly 0.8 @@ -83009,7 +83198,7 @@ https://www.rfc1437.de/2003/09/16/shared-space-20/ - 2026-03-04T12:19:37.000Z + 2026-03-04T12:19:37.776Z monthly 0.8 @@ -83018,7 +83207,7 @@ https://www.rfc1437.de/2003/09/16/verisign-hat-einen-wildcard-a-record-auf-nt-ngtrgn/ - 2026-03-04T12:19:42.000Z + 2026-03-04T12:19:42.658Z monthly 0.8 @@ -83027,7 +83216,7 @@ https://www.rfc1437.de/2003/09/16/wenn-helles-licht-in-die-nase-geht/ - 2026-03-04T12:19:47.000Z + 2026-03-04T12:19:47.183Z monthly 0.8 @@ -83036,7 +83225,7 @@ https://www.rfc1437.de/2003/09/16/whole-wheat-radio-home/ - 2026-03-04T12:19:51.000Z + 2026-03-04T12:19:51.661Z monthly 0.8 @@ -83045,7 +83234,7 @@ https://www.rfc1437.de/2003/09/15/schwarze-katze-weisser-kater/ - 2026-03-04T12:19:56.000Z + 2026-03-04T12:19:56.331Z monthly 0.8 @@ -83054,7 +83243,7 @@ https://www.rfc1437.de/2003/09/15/senderbase/ - 2026-03-04T12:20:00.000Z + 2026-03-04T12:20:00.534Z monthly 0.8 @@ -83063,7 +83252,7 @@ https://www.rfc1437.de/2003/09/15/vuelta-virenque-disqualifiziert/ - 2026-03-04T12:20:05.000Z + 2026-03-04T12:20:05.335Z monthly 0.8 @@ -83072,7 +83261,7 @@ https://www.rfc1437.de/2003/09/15/zuelle-gibt-vuelta-auf-nie-mehr-grosse-rundfahrt/ - 2026-03-04T12:20:09.000Z + 2026-03-04T12:20:09.623Z monthly 0.8 @@ -83081,7 +83270,7 @@ https://www.rfc1437.de/2003/09/14/attentat-auf-arafat-legitime-option-fuer-israel/ - 2026-03-04T12:20:14.000Z + 2026-03-04T12:20:14.403Z monthly 0.8 @@ -83090,7 +83279,7 @@ https://www.rfc1437.de/2003/09/14/barockes-quecksilber/ - 2026-03-04T12:20:18.000Z + 2026-03-04T12:20:18.904Z monthly 0.8 @@ -83099,7 +83288,7 @@ https://www.rfc1437.de/2003/09/14/ebay-diskriminiert-nicht-windows-user/ - 2026-03-04T12:20:22.000Z + 2026-03-04T12:20:22.860Z monthly 0.8 @@ -83108,7 +83297,7 @@ https://www.rfc1437.de/2003/09/14/fussel-im-bauchnabel/ - 2026-03-04T12:20:26.000Z + 2026-03-04T12:20:26.274Z monthly 0.8 @@ -83117,7 +83306,7 @@ https://www.rfc1437.de/2003/09/14/moeglicher-kreditkartenmissbrauch/ - 2026-03-04T12:20:30.000Z + 2026-03-04T12:20:30.583Z monthly 0.8 @@ -83126,7 +83315,7 @@ https://www.rfc1437.de/2003/09/13/hundt-will-maximal-zwoelf-monate-arbeitslosengeld/ - 2026-03-04T12:20:34.000Z + 2026-03-04T12:20:34.558Z monthly 0.8 @@ -83135,7 +83324,7 @@ https://www.rfc1437.de/2003/09/13/le-monde-de-marco/ - 2026-03-04T12:20:38.000Z + 2026-03-04T12:20:38.809Z monthly 0.8 @@ -83144,7 +83333,7 @@ https://www.rfc1437.de/2003/09/13/phoku-webserver/ - 2026-03-04T12:20:42.000Z + 2026-03-04T12:20:42.276Z monthly 0.8 @@ -83153,7 +83342,7 @@ https://www.rfc1437.de/2003/09/13/scheissjob/ - 2026-03-04T12:20:46.000Z + 2026-03-04T12:20:46.599Z monthly 0.8 @@ -83162,7 +83351,7 @@ https://www.rfc1437.de/2003/09/13/star-trek-dimension-investigating-trek/ - 2026-03-04T12:20:50.000Z + 2026-03-04T12:20:50.905Z monthly 0.8 @@ -83171,7 +83360,7 @@ https://www.rfc1437.de/2003/09/11/berlusconi-mussolini-war-gutartig/ - 2026-03-04T12:20:55.000Z + 2026-03-04T12:20:55.785Z monthly 0.8 @@ -83180,7 +83369,7 @@ https://www.rfc1437.de/2003/09/11/schwarzes-loch-haemmert-baesse-ins-all/ - 2026-03-04T12:20:59.000Z + 2026-03-04T12:20:59.861Z monthly 0.8 @@ -83189,7 +83378,7 @@ https://www.rfc1437.de/2003/09/11/wie-man-sich-eine-farbe-zu-eigen-macht/ - 2026-03-04T12:21:04.000Z + 2026-03-04T12:21:04.823Z monthly 0.8 @@ -83198,7 +83387,7 @@ https://www.rfc1437.de/2003/09/11/wieder-da/ - 2026-03-04T12:21:08.000Z + 2026-03-04T12:21:08.705Z monthly 0.8 @@ -83207,7 +83396,7 @@ https://www.rfc1437.de/2003/09/08/updated-medusa-release/ - 2026-03-04T12:21:12.000Z + 2026-03-04T12:21:12.623Z monthly 0.8 @@ -83216,7 +83405,7 @@ https://www.rfc1437.de/2003/09/07/open-firmwar-psswrd-nt-rcgnzd-whn-t-cntns-th-lttr/ - 2026-03-04T12:21:16.000Z + 2026-03-04T12:21:16.917Z monthly 0.8 @@ -83225,7 +83414,7 @@ https://www.rfc1437.de/2003/09/07/politiker-entdecken-sozialhilfe-ls-rdkls-nsprptnzl/ - 2026-03-04T12:21:21.000Z + 2026-03-04T12:21:21.575Z monthly 0.8 @@ -83234,7 +83423,7 @@ https://www.rfc1437.de/2003/09/07/schaeuble-will-offenbar-rau-nachfolgen/ - 2026-03-04T12:21:26.000Z + 2026-03-04T12:21:26.711Z monthly 0.8 @@ -83243,7 +83432,7 @@ https://www.rfc1437.de/2003/09/06/16000-grippetote-in-deutschland/ - 2026-03-04T12:21:30.000Z + 2026-03-04T12:21:30.636Z monthly 0.8 @@ -83252,7 +83441,7 @@ https://www.rfc1437.de/2003/09/06/lg-hamburg-de-nur-noch-fuer-deppen/ - 2026-03-04T12:21:35.000Z + 2026-03-04T12:21:35.009Z monthly 0.8 @@ -83261,7 +83450,7 @@ https://www.rfc1437.de/2003/09/05/doping-lieferung-an-belgische-radprofis-gestanden/ - 2026-03-04T12:21:40.000Z + 2026-03-04T12:21:40.348Z monthly 0.8 @@ -83270,7 +83459,7 @@ https://www.rfc1437.de/2003/09/05/lwl-wstf-ndstrmsm-schffshbwrk-hnrchnbrg-lts-schffs/ - 2026-03-04T12:21:45.000Z + 2026-03-04T12:21:45.043Z monthly 0.8 @@ -83279,7 +83468,7 @@ https://www.rfc1437.de/2003/09/05/merkel-mehr-arbeiten-fuer-mehr-arbeitsplaetze/ - 2026-03-04T12:21:49.000Z + 2026-03-04T12:21:49.343Z monthly 0.8 @@ -83288,7 +83477,7 @@ https://www.rfc1437.de/2003/09/05/moellemann-affaere-spender-namen-auf-den-tisch/ - 2026-03-04T12:21:53.000Z + 2026-03-04T12:21:53.198Z monthly 0.8 @@ -83297,7 +83486,7 @@ https://www.rfc1437.de/2003/09/04/bei-bianchi-rumort-es/ - 2026-03-04T12:21:57.000Z + 2026-03-04T12:21:57.043Z monthly 0.8 @@ -83306,7 +83495,7 @@ https://www.rfc1437.de/2003/09/04/berlusconi-richter-sind-geistesgestoert/ - 2026-03-04T12:22:01.000Z + 2026-03-04T12:22:01.801Z monthly 0.8 @@ -83315,7 +83504,7 @@ https://www.rfc1437.de/2003/09/04/rechtsstreit-obelix-vs-mobilix-endgueltig-beendet/ - 2026-03-04T12:22:06.000Z + 2026-03-04T12:22:06.614Z monthly 0.8 @@ -83324,7 +83513,7 @@ https://www.rfc1437.de/2003/09/04/uebermenschen-fuer-das-pentagon/ - 2026-03-04T12:22:10.000Z + 2026-03-04T12:22:10.534Z monthly 0.8 @@ -83333,7 +83522,7 @@ https://www.rfc1437.de/2003/09/03/digital-outback-photo-reviews-photokit-sharpener/ - 2026-03-04T12:22:14.000Z + 2026-03-04T12:22:14.810Z monthly 0.8 @@ -83342,7 +83531,7 @@ https://www.rfc1437.de/2003/09/03/facespan-40-public-beta/ - 2026-03-04T12:22:19.000Z + 2026-03-04T12:22:19.291Z monthly 0.8 @@ -83351,7 +83540,7 @@ https://www.rfc1437.de/2003/09/03/florida-rolf-nd-d-rcht-hrnhlft-dr-szlmnstrn-schmdt/ - 2026-03-04T12:22:24.000Z + 2026-03-04T12:22:24.026Z monthly 0.8 @@ -83360,7 +83549,7 @@ https://www.rfc1437.de/2003/09/03/tobit-feiert-radi-mp3-sftwr-clpnc-ls-wchtgst-f-nht/ - 2026-03-04T12:22:28.000Z + 2026-03-04T12:22:28.778Z monthly 0.8 @@ -83369,7 +83558,7 @@ https://www.rfc1437.de/2003/09/02/20-jahre-btx/ - 2026-03-04T12:22:33.000Z + 2026-03-04T12:22:33.985Z monthly 0.8 @@ -83378,7 +83567,7 @@ https://www.rfc1437.de/2003/09/02/applescript-to-open-popfile-links-from-entourage-x/ - 2026-03-04T12:22:38.000Z + 2026-03-04T12:22:38.708Z monthly 0.8 @@ -83387,7 +83576,7 @@ https://www.rfc1437.de/2003/09/02/dramatische-haushaltslagen-in-nrw-und-berlin/ - 2026-03-04T12:22:43.000Z + 2026-03-04T12:22:43.404Z monthly 0.8 @@ -83396,7 +83585,7 @@ https://www.rfc1437.de/2003/09/02/sco-muss-ordnungsgeld-zahlen/ - 2026-03-04T12:22:48.000Z + 2026-03-04T12:22:48.188Z monthly 0.8 @@ -83405,7 +83594,7 @@ https://www.rfc1437.de/2003/09/02/tom-waits-blood-money/ - 2026-03-04T12:22:51.000Z + 2026-03-04T12:22:51.224Z monthly 0.8 @@ -83414,7 +83603,7 @@ https://www.rfc1437.de/2003/09/02/ullrich-vergiftete-infusion-schuld-am-tour-fieber/ - 2026-03-04T12:22:55.000Z + 2026-03-04T12:22:55.957Z monthly 0.8 @@ -83423,7 +83612,7 @@ https://www.rfc1437.de/2003/09/02/vuelta-zabel-fuehrt-telekom-an/ - 2026-03-04T12:23:00.000Z + 2026-03-04T12:23:00.230Z monthly 0.8 @@ -83432,7 +83621,7 @@ https://www.rfc1437.de/2003/09/01/der-grosse-jackpot/ - 2026-03-04T12:23:04.000Z + 2026-03-04T12:23:04.987Z monthly 0.8 @@ -83441,7 +83630,7 @@ https://www.rfc1437.de/2003/09/01/gewonnen-hat-die-pharmaindustrie/ - 2026-03-04T12:23:09.000Z + 2026-03-04T12:23:09.382Z monthly 0.8 @@ -83450,7 +83639,7 @@ https://www.rfc1437.de/2003/09/01/ullrich-bei-toursieg-haette-ich-karriere-beendet/ - 2026-03-04T12:23:14.000Z + 2026-03-04T12:23:14.097Z monthly 0.8 @@ -83459,7 +83648,7 @@ https://www.rfc1437.de/2003/08/31/punkt-und-komma-im-gehirn/ - 2026-03-04T12:23:19.000Z + 2026-03-04T12:23:19.041Z monthly 0.8 @@ -83468,7 +83657,7 @@ https://www.rfc1437.de/2003/08/30/diggler/ - 2026-03-04T12:23:23.000Z + 2026-03-04T12:23:23.400Z monthly 0.8 @@ -83477,7 +83666,7 @@ https://www.rfc1437.de/2003/08/30/fraktion-ueber-schill-der-braucht-hilfe/ - 2026-03-04T12:23:28.000Z + 2026-03-04T12:23:28.115Z monthly 0.8 @@ -83486,7 +83675,7 @@ https://www.rfc1437.de/2003/08/30/hardware-ist-doof/ - 2026-03-04T12:23:32.000Z + 2026-03-04T12:23:32.444Z monthly 0.8 @@ -83495,7 +83684,7 @@ https://www.rfc1437.de/2003/08/30/informationsfreiheit-ab-2004/ - 2026-03-04T12:23:36.000Z + 2026-03-04T12:23:36.302Z monthly 0.8 @@ -83504,7 +83693,7 @@ https://www.rfc1437.de/2003/08/30/merkel-bei-wahlsieg-raus-aus-dem-atomausstieg/ - 2026-03-04T12:23:41.000Z + 2026-03-04T12:23:41.086Z monthly 0.8 @@ -83513,7 +83702,7 @@ https://www.rfc1437.de/2003/08/29/gerolsteiner-hat-interesse-an-beloki/ - 2026-03-04T12:23:45.000Z + 2026-03-04T12:23:45.846Z monthly 0.8 @@ -83522,7 +83711,7 @@ https://www.rfc1437.de/2003/08/29/strato-und-mtu/ - 2026-03-04T12:23:52.000Z + 2026-03-04T12:23:52.419Z monthly 0.8 @@ -83531,7 +83720,7 @@ https://www.rfc1437.de/2003/08/28/w3c-sieht-gefahr-fuer-internet-standards/ - 2026-03-04T12:23:57.000Z + 2026-03-04T12:23:57.119Z monthly 0.8 @@ -83540,7 +83729,7 @@ https://www.rfc1437.de/2003/08/27/auch-robert-ist-seinen-job-bei-der-telekom-los/ - 2026-03-04T12:24:00.000Z + 2026-03-04T12:24:00.995Z monthly 0.8 @@ -83549,7 +83738,7 @@ https://www.rfc1437.de/2003/08/27/banken-dienstleister-gad-schliesst-vier-standorte/ - 2026-03-04T12:24:05.000Z + 2026-03-04T12:24:05.758Z monthly 0.8 @@ -83558,7 +83747,7 @@ https://www.rfc1437.de/2003/08/27/bayern-plant-integrationsobergrenze/ - 2026-03-04T12:24:10.000Z + 2026-03-04T12:24:10.073Z monthly 0.8 @@ -83567,7 +83756,7 @@ https://www.rfc1437.de/2003/08/27/das-totale-knipsen/ - 2026-03-04T12:24:13.000Z + 2026-03-04T12:24:13.931Z monthly 0.8 @@ -83576,7 +83765,7 @@ https://www.rfc1437.de/2003/08/26/123830-frauen-sind-wie-webserver/ - 2026-03-04T12:24:17.000Z + 2026-03-04T12:24:17.826Z monthly 0.8 @@ -83585,7 +83774,7 @@ https://www.rfc1437.de/2003/08/26/bash-is-new-default-terminal-shell-in-panther/ - 2026-03-04T12:24:22.000Z + 2026-03-04T12:24:22.348Z monthly 0.8 @@ -83594,7 +83783,7 @@ https://www.rfc1437.de/2003/08/26/christiania-soll-normaler-werden/ - 2026-03-04T12:24:26.000Z + 2026-03-04T12:24:26.629Z monthly 0.8 @@ -83603,7 +83792,7 @@ https://www.rfc1437.de/2003/08/26/mueller-will-eltern-bei-rente-bevorzugen/ - 2026-03-04T12:24:31.000Z + 2026-03-04T12:24:31.419Z monthly 0.8 @@ -83612,7 +83801,7 @@ https://www.rfc1437.de/2003/08/26/wie-wikis-wachsen-und-gedeihen/ - 2026-03-04T12:24:35.000Z + 2026-03-04T12:24:35.308Z monthly 0.8 @@ -83621,7 +83810,7 @@ https://www.rfc1437.de/2003/08/25/microsoft-blockiert-internationale-knfrnz-z-pn-src/ - 2026-03-04T12:24:39.000Z + 2026-03-04T12:24:39.597Z monthly 0.8 @@ -83630,7 +83819,7 @@ https://www.rfc1437.de/2003/08/25/php-unter-anderen-userrechten-im-apache/ - 2026-03-04T12:24:43.000Z + 2026-03-04T12:24:43.922Z monthly 0.8 @@ -83639,7 +83828,7 @@ https://www.rfc1437.de/2003/08/25/postscript-mit-python-produzieren/ - 2026-03-04T12:24:48.000Z + 2026-03-04T12:24:48.252Z monthly 0.8 @@ -83648,7 +83837,7 @@ https://www.rfc1437.de/2003/08/25/spam-filter-fuer-imap-mailboxen/ - 2026-03-04T12:24:52.000Z + 2026-03-04T12:24:52.612Z monthly 0.8 @@ -83657,7 +83846,7 @@ https://www.rfc1437.de/2003/08/25/und-mal-wieder-ein-bischen-was-zur-sco-farce/ - 2026-03-04T12:24:57.000Z + 2026-03-04T12:24:57.411Z monthly 0.8 @@ -83666,7 +83855,7 @@ https://www.rfc1437.de/2003/08/25/warum-gibt-es-in-windows-funktnn-w-br-bnny-nd-pglt/ - 2026-03-04T12:25:02.000Z + 2026-03-04T12:25:02.152Z monthly 0.8 @@ -83675,7 +83864,7 @@ https://www.rfc1437.de/2003/08/24/backupsoftware-fuer-mac-os-x-und-dvd-r-writer/ - 2026-03-04T12:25:06.000Z + 2026-03-04T12:25:06.964Z monthly 0.8 @@ -83684,7 +83873,7 @@ https://www.rfc1437.de/2003/08/24/der-boese-computerfresser-hat-mal-wieder-zugschlgn/ - 2026-03-04T12:25:11.000Z + 2026-03-04T12:25:11.704Z monthly 0.8 @@ -83693,7 +83882,7 @@ https://www.rfc1437.de/2003/08/24/macosxfile-and-psync/ - 2026-03-04T12:25:16.000Z + 2026-03-04T12:25:16.044Z monthly 0.8 @@ -83702,7 +83891,7 @@ https://www.rfc1437.de/2003/08/23/openoffice-fuer-mac-os-x-ohne-x11-lasst-f-sch-wrtn/ - 2026-03-04T12:25:20.000Z + 2026-03-04T12:25:20.696Z monthly 0.8 @@ -83711,7 +83900,7 @@ https://www.rfc1437.de/2003/08/23/schill-drohte-wohl-mit-outing-zur-prime-time/ - 2026-03-04T12:25:25.000Z + 2026-03-04T12:25:25.891Z monthly 0.8 @@ -83720,7 +83909,7 @@ https://www.rfc1437.de/2003/08/23/sco-vs-linux-die-zeit-der-verschwoerungstheorien/ - 2026-03-04T12:25:30.000Z + 2026-03-04T12:25:30.213Z monthly 0.8 @@ -83729,7 +83918,7 @@ https://www.rfc1437.de/2003/08/23/venusblumenkoerbchen-als-lichtwellenleiter/ - 2026-03-04T12:25:34.000Z + 2026-03-04T12:25:34.584Z monthly 0.8 @@ -83738,7 +83927,7 @@ https://www.rfc1437.de/2003/08/21/beust-schmeisst-schill-raus/ - 2026-03-04T12:25:38.000Z + 2026-03-04T12:25:38.993Z monthly 0.8 @@ -83747,7 +83936,7 @@ https://www.rfc1437.de/2003/08/21/buckelwal-sprang-auf-segelboot/ - 2026-03-04T12:25:43.000Z + 2026-03-04T12:25:43.362Z monthly 0.8 @@ -83756,7 +83945,7 @@ https://www.rfc1437.de/2003/08/21/canon-eos-300d-digital-rebel/ - 2026-03-04T12:25:47.000Z + 2026-03-04T12:25:47.785Z monthly 0.8 @@ -83765,7 +83954,7 @@ https://www.rfc1437.de/2003/08/21/erik-zabel-kann-doch-noch-gewinnen/ - 2026-03-04T12:25:52.000Z + 2026-03-04T12:25:52.104Z monthly 0.8 @@ -83774,7 +83963,7 @@ https://www.rfc1437.de/2003/08/21/hessische-steuerfahnder-ausgebremst/ - 2026-03-04T12:25:56.000Z + 2026-03-04T12:25:56.839Z monthly 0.8 @@ -83783,7 +83972,7 @@ https://www.rfc1437.de/2003/08/21/hmbrgr-rgrngskrs-schlmmschlcht-m-bsts-sxltt-pltk-s/ - 2026-03-04T12:26:00.000Z + 2026-03-04T12:26:00.689Z monthly 0.8 @@ -83792,7 +83981,7 @@ https://www.rfc1437.de/2003/08/21/ich-bin-alter-nationalsozialist/ - 2026-03-04T12:26:05.000Z + 2026-03-04T12:26:05.090Z monthly 0.8 @@ -83801,7 +83990,7 @@ https://www.rfc1437.de/2003/08/21/sco-der-beweis/ - 2026-03-04T12:26:08.000Z + 2026-03-04T12:26:08.945Z monthly 0.8 @@ -83810,7 +83999,7 @@ https://www.rfc1437.de/2003/08/18/da-koennte-ja-jeder-kommen/ - 2026-03-04T12:26:13.000Z + 2026-03-04T12:26:13.748Z monthly 0.8 @@ -83819,7 +84008,7 @@ https://www.rfc1437.de/2003/08/18/ipod-wirklich-ein-nettes-spielzeug/ - 2026-03-04T12:26:18.000Z + 2026-03-04T12:26:18.174Z monthly 0.8 @@ -83828,7 +84017,7 @@ https://www.rfc1437.de/2003/08/18/powerbooks-kommen/ - 2026-03-04T12:26:22.000Z + 2026-03-04T12:26:22.728Z monthly 0.8 @@ -83837,7 +84026,7 @@ https://www.rfc1437.de/2003/08/18/vatikan-und-missbrchsfll-brcht-br-vrtschngs-nrdnng/ - 2026-03-04T12:26:26.000Z + 2026-03-04T12:26:26.630Z monthly 0.8 @@ -83846,7 +84035,7 @@ https://www.rfc1437.de/2003/08/17/sql-slammer-beeintraechtigte-us-kraftwerksteuerung/ - 2026-03-04T12:26:30.000Z + 2026-03-04T12:26:30.527Z monthly 0.8 @@ -83855,7 +84044,7 @@ https://www.rfc1437.de/2003/08/16/microsoft-laesst-wurmangriff-ins-leere-laufen/ - 2026-03-04T12:26:35.000Z + 2026-03-04T12:26:35.023Z monthly 0.8 @@ -83864,7 +84053,7 @@ https://www.rfc1437.de/2003/08/15/doch-ein-zusammenhang-zwischen-blackt-nd-wndws-wrm/ - 2026-03-04T12:26:39.000Z + 2026-03-04T12:26:39.744Z monthly 0.8 @@ -83873,7 +84062,7 @@ https://www.rfc1437.de/2003/08/15/mystep-11/ - 2026-03-04T12:26:44.000Z + 2026-03-04T12:26:44.061Z monthly 0.8 @@ -83882,7 +84071,7 @@ https://www.rfc1437.de/2003/08/15/neue-sony-f-828/ - 2026-03-04T12:26:48.000Z + 2026-03-04T12:26:48.022Z monthly 0.8 @@ -83891,7 +84080,7 @@ https://www.rfc1437.de/2003/08/15/rss-wo-steht-der-link-auf-einen-artikel/ - 2026-03-04T12:26:52.000Z + 2026-03-04T12:26:52.339Z monthly 0.8 @@ -83900,7 +84089,7 @@ https://www.rfc1437.de/2003/08/15/sco-lizenzen-auch-fuer-sco-linux-faellig/ - 2026-03-04T12:26:56.000Z + 2026-03-04T12:26:56.716Z monthly 0.8 @@ -83909,7 +84098,7 @@ https://www.rfc1437.de/2003/08/14/amerikaner-werfen-u-bahnen-ins-meer/ - 2026-03-04T12:27:00.000Z + 2026-03-04T12:27:00.567Z monthly 0.8 @@ -83918,7 +84107,7 @@ https://www.rfc1437.de/2003/08/14/ftp-server-des-gnu-projekts-gehackt/ - 2026-03-04T12:27:04.000Z + 2026-03-04T12:27:04.548Z monthly 0.8 @@ -83927,7 +84116,7 @@ https://www.rfc1437.de/2003/08/14/reader-submitted-fox-news-clams-sl-s-f-fr-nd-blncd/ - 2026-03-04T12:27:08.000Z + 2026-03-04T12:27:08.948Z monthly 0.8 @@ -83936,7 +84125,7 @@ https://www.rfc1437.de/2003/08/14/sco-erklaert-die-gpl-fuer-ungueltig/ - 2026-03-04T12:27:13.000Z + 2026-03-04T12:27:13.274Z monthly 0.8 @@ -83945,7 +84134,7 @@ https://www.rfc1437.de/2003/08/14/stromausfall-im-amerikanischen-nordosten/ - 2026-03-04T12:27:17.000Z + 2026-03-04T12:27:17.651Z monthly 0.8 @@ -83954,7 +84143,7 @@ https://www.rfc1437.de/2003/08/14/wypy-wiki-in-python/ - 2026-03-04T12:27:22.000Z + 2026-03-04T12:27:22.226Z monthly 0.8 @@ -83963,7 +84152,7 @@ https://www.rfc1437.de/2003/08/13/10-python-pitfalls/ - 2026-03-04T12:27:26.000Z + 2026-03-04T12:27:26.059Z monthly 0.8 @@ -83972,7 +84161,7 @@ https://www.rfc1437.de/2003/08/13/bloggde-xml-rpc-interface/ - 2026-03-04T12:27:29.000Z + 2026-03-04T12:27:29.528Z monthly 0.8 @@ -83981,7 +84170,7 @@ https://www.rfc1437.de/2003/08/13/ralle-the-switcher/ - 2026-03-04T12:27:34.000Z + 2026-03-04T12:27:34.368Z monthly 0.8 @@ -83990,7 +84179,7 @@ https://www.rfc1437.de/2003/08/12/facespan-40/ - 2026-03-04T12:27:38.000Z + 2026-03-04T12:27:38.744Z monthly 0.8 @@ -83999,7 +84188,7 @@ https://www.rfc1437.de/2003/08/11/aldag-gewinnt-giro-in-bochum/ - 2026-03-04T12:27:42.000Z + 2026-03-04T12:27:42.678Z monthly 0.8 @@ -84008,7 +84197,7 @@ https://www.rfc1437.de/2003/08/11/dngsd-rtkl-lbr-hrr-brg-wrt-mtlsnd-rhbrrcht-nd-qlln/ - 2026-03-04T12:27:47.000Z + 2026-03-04T12:27:47.423Z monthly 0.8 @@ -84017,7 +84206,7 @@ https://www.rfc1437.de/2003/08/11/notebook-da/ - 2026-03-04T12:27:50.000Z + 2026-03-04T12:27:50.485Z monthly 0.8 @@ -84026,7 +84215,7 @@ https://www.rfc1437.de/2003/08/11/skript-kiddies/ - 2026-03-04T12:27:54.000Z + 2026-03-04T12:27:54.938Z monthly 0.8 @@ -84035,7 +84224,7 @@ https://www.rfc1437.de/2003/08/10/saban-kritisiert-nahost-berichterstattung/ - 2026-03-04T12:27:59.000Z + 2026-03-04T12:27:59.278Z monthly 0.8 @@ -84044,7 +84233,7 @@ https://www.rfc1437.de/2003/08/10/steinbrueck-streicht-urlaubsgeld-und-subventionen/ - 2026-03-04T12:28:03.000Z + 2026-03-04T12:28:03.666Z monthly 0.8 @@ -84053,7 +84242,7 @@ https://www.rfc1437.de/2003/08/08/hitzeschaden/ - 2026-03-04T12:28:07.000Z + 2026-03-04T12:28:07.957Z monthly 0.8 @@ -84062,7 +84251,7 @@ https://www.rfc1437.de/2003/08/08/ich-hasse-das-wetter/ - 2026-03-04T12:28:12.000Z + 2026-03-04T12:28:12.350Z monthly 0.8 @@ -84071,7 +84260,7 @@ https://www.rfc1437.de/2003/08/08/immunitaet-fuer-amerikanische-oelkonzerne-im-irak/ - 2026-03-04T12:28:16.000Z + 2026-03-04T12:28:16.195Z monthly 0.8 @@ -84080,7 +84269,7 @@ https://www.rfc1437.de/2003/08/08/jaksche-vor-wechsel-zu-gerolsteiner/ - 2026-03-04T12:28:20.000Z + 2026-03-04T12:28:20.908Z monthly 0.8 @@ -84089,7 +84278,7 @@ https://www.rfc1437.de/2003/08/08/usa-warfen-im-irak-krieg-brandbomben/ - 2026-03-04T12:28:24.000Z + 2026-03-04T12:28:24.813Z monthly 0.8 @@ -84098,7 +84287,7 @@ https://www.rfc1437.de/2003/08/05/heise-news-ticker-red-hat-verklagt-sco/ - 2026-03-04T12:28:28.000Z + 2026-03-04T12:28:28.306Z monthly 0.8 @@ -84107,7 +84296,7 @@ https://www.rfc1437.de/2003/08/05/once-beendet-radsport-engagement-nach-15-jahren/ - 2026-03-04T12:28:32.000Z + 2026-03-04T12:28:32.260Z monthly 0.8 @@ -84116,7 +84305,7 @@ https://www.rfc1437.de/2003/08/04/dialog-durch-kunst/ - 2026-03-04T12:28:36.000Z + 2026-03-04T12:28:36.637Z monthly 0.8 @@ -84125,7 +84314,7 @@ https://www.rfc1437.de/2003/08/04/ein-drittel-aller-beschaeftigten-im-niedriglhnbrch/ - 2026-03-04T12:28:41.000Z + 2026-03-04T12:28:41.440Z monthly 0.8 @@ -84134,7 +84323,7 @@ https://www.rfc1437.de/2003/08/04/how-to-install-windows-xp-in-5-hrs-r-lss-dv-nt-mrk/ - 2026-03-04T12:28:44.000Z + 2026-03-04T12:28:44.913Z monthly 0.8 @@ -84143,7 +84332,7 @@ https://www.rfc1437.de/2003/08/04/schwarze-liste-fuer-anti-kriegs-aktvstn-n-s-flghfn/ - 2026-03-04T12:28:49.000Z + 2026-03-04T12:28:49.747Z monthly 0.8 @@ -84152,7 +84341,7 @@ https://www.rfc1437.de/2003/08/02/10-jahre-apple-newton-dem-ersten-pda-zur-erinnerng/ - 2026-03-04T12:28:54.000Z + 2026-03-04T12:28:54.108Z monthly 0.8 @@ -84161,7 +84350,7 @@ https://www.rfc1437.de/2003/08/02/joblose-muessen-fast-jedes-angebot-annehmen/ - 2026-03-04T12:28:58.000Z + 2026-03-04T12:28:58.447Z monthly 0.8 @@ -84170,7 +84359,7 @@ https://www.rfc1437.de/2003/08/02/once-rennstall-droht-das-aus-am-saisonende/ - 2026-03-04T12:29:02.000Z + 2026-03-04T12:29:02.447Z monthly 0.8 @@ -84179,7 +84368,7 @@ https://www.rfc1437.de/2003/08/02/sbcl-for-os-x/ - 2026-03-04T12:29:06.000Z + 2026-03-04T12:29:06.355Z monthly 0.8 @@ -84188,7 +84377,7 @@ https://www.rfc1437.de/2003/08/02/stereo-images-time-for-space/ - 2026-03-04T12:29:10.000Z + 2026-03-04T12:29:10.243Z monthly 0.8 @@ -84197,7 +84386,7 @@ https://www.rfc1437.de/2003/08/02/traue-keiner-statistik-di-d-ncht-slbst-gflscht-hst/ - 2026-03-04T12:29:14.000Z + 2026-03-04T12:29:14.158Z monthly 0.8 @@ -84206,7 +84395,7 @@ https://www.rfc1437.de/2003/08/01/chinesenisches-seeungeheuer/ - 2026-03-04T12:29:19.000Z + 2026-03-04T12:29:19.146Z monthly 0.8 @@ -84215,7 +84404,7 @@ https://www.rfc1437.de/2003/08/01/sun-chef-mcnealy-finger-weg-von-open-source/ - 2026-03-04T12:29:23.000Z + 2026-03-04T12:29:23.126Z monthly 0.8 @@ -84224,7 +84413,7 @@ https://www.rfc1437.de/2003/08/01/windows-user-machen-internet-kaputt/ - 2026-03-04T12:29:27.000Z + 2026-03-04T12:29:27.522Z monthly 0.8 @@ -84233,7 +84422,7 @@ https://www.rfc1437.de/2003/07/31/entwurf-fuer-gentechnik-gesetz-vorgelegt/ - 2026-03-04T12:29:31.000Z + 2026-03-04T12:29:31.874Z monthly 0.8 @@ -84242,7 +84431,7 @@ https://www.rfc1437.de/2003/07/31/gesetz-trennt-israelisch-palaestinensische-ehepaar/ - 2026-03-04T12:29:35.000Z + 2026-03-04T12:29:35.813Z monthly 0.8 @@ -84251,7 +84440,7 @@ https://www.rfc1437.de/2003/07/31/panorama-rules/ - 2026-03-04T12:29:40.000Z + 2026-03-04T12:29:40.650Z monthly 0.8 @@ -84260,7 +84449,7 @@ https://www.rfc1437.de/2003/07/31/vatikan-mobilisiert-gegen-homo-ehe/ - 2026-03-04T12:29:45.000Z + 2026-03-04T12:29:45.035Z monthly 0.8 @@ -84269,7 +84458,7 @@ https://www.rfc1437.de/2003/07/30/hamburg-kindern-droht-abschiebung/ - 2026-03-04T12:29:49.000Z + 2026-03-04T12:29:49.424Z monthly 0.8 @@ -84278,7 +84467,7 @@ https://www.rfc1437.de/2003/07/30/peschel-aus-krankenhaus-entlassen/ - 2026-03-04T12:29:53.000Z + 2026-03-04T12:29:53.825Z monthly 0.8 @@ -84287,7 +84476,7 @@ https://www.rfc1437.de/2003/07/30/whats-new-in-python-23/ - 2026-03-04T12:29:58.000Z + 2026-03-04T12:29:58.205Z monthly 0.8 @@ -84296,7 +84485,7 @@ https://www.rfc1437.de/2003/07/29/activedeveloper-214/ - 2026-03-04T12:30:02.000Z + 2026-03-04T12:30:02.529Z monthly 0.8 @@ -84305,7 +84494,7 @@ https://www.rfc1437.de/2003/07/29/ibm-kontert-im-rechtsstreit-gegen-sco/ - 2026-03-04T12:30:07.000Z + 2026-03-04T12:30:07.349Z monthly 0.8 @@ -84314,7 +84503,7 @@ https://www.rfc1437.de/2003/07/29/tp-email-klau-ueber-den-weg-des-domainklaus-st-lgl/ - 2026-03-04T12:30:12.000Z + 2026-03-04T12:30:12.090Z monthly 0.8 @@ -84323,7 +84512,7 @@ https://www.rfc1437.de/2003/07/28/cog-05/ - 2026-03-04T12:30:16.000Z + 2026-03-04T12:30:16.939Z monthly 0.8 @@ -84332,7 +84521,7 @@ https://www.rfc1437.de/2003/07/28/es-gibt-kein-monster-im-loch-ness/ - 2026-03-04T12:30:21.000Z + 2026-03-04T12:30:21.801Z monthly 0.8 @@ -84341,7 +84530,7 @@ https://www.rfc1437.de/2003/07/28/stoibrs-tktrn-st-kn-prblm-ds-fdrlsms-sndrn-dr-cdcs/ - 2026-03-04T12:30:27.000Z + 2026-03-04T12:30:27.373Z monthly 0.8 @@ -84350,7 +84539,7 @@ https://www.rfc1437.de/2003/07/27/bill-gates-linux-enthaelt-auch-microsoft-code/ - 2026-03-04T12:30:32.000Z + 2026-03-04T12:30:32.286Z monthly 0.8 @@ -84359,7 +84548,7 @@ https://www.rfc1437.de/2003/07/27/guter-bildschirmhintergrund/ - 2026-03-04T12:30:35.000Z + 2026-03-04T12:30:35.791Z monthly 0.8 @@ -84368,7 +84557,7 @@ https://www.rfc1437.de/2003/07/27/ostfriesland-waechst/ - 2026-03-04T12:30:39.000Z + 2026-03-04T12:30:39.758Z monthly 0.8 @@ -84377,7 +84566,7 @@ https://www.rfc1437.de/2003/07/27/tja-das-war-sie-die-tour-2003/ - 2026-03-04T12:30:43.000Z + 2026-03-04T12:30:43.693Z monthly 0.8 @@ -84386,7 +84575,7 @@ https://www.rfc1437.de/2003/07/27/wasser-und-plutonium-bergen-explosive-gefahr/ - 2026-03-04T12:30:48.000Z + 2026-03-04T12:30:48.131Z monthly 0.8 @@ -84395,7 +84584,7 @@ https://www.rfc1437.de/2003/07/27/zehn-jahre-windows-nt/ - 2026-03-04T12:30:52.000Z + 2026-03-04T12:30:52.505Z monthly 0.8 @@ -84404,7 +84593,7 @@ https://www.rfc1437.de/2003/07/26/apple-drm-and-me/ - 2026-03-04T12:30:56.000Z + 2026-03-04T12:30:56.971Z monthly 0.8 @@ -84413,7 +84602,7 @@ https://www.rfc1437.de/2003/07/26/e-mail-archive-als-zeitvernichter/ - 2026-03-04T12:31:01.000Z + 2026-03-04T12:31:01.335Z monthly 0.8 @@ -84422,7 +84611,7 @@ https://www.rfc1437.de/2003/07/26/saugefaehrlich-dieses-zeitfahren/ - 2026-03-04T12:31:05.000Z + 2026-03-04T12:31:05.771Z monthly 0.8 @@ -84431,7 +84620,7 @@ https://www.rfc1437.de/2003/07/26/uebersicht-ueber-pings-fuer-den-ping-cacher/ - 2026-03-04T12:31:10.000Z + 2026-03-04T12:31:10.704Z monthly 0.8 @@ -84440,7 +84629,7 @@ https://www.rfc1437.de/2003/07/26/uwe-peschel-gestuerzt-und-mit-schweren-verletzungn/ - 2026-03-04T12:31:14.000Z + 2026-03-04T12:31:14.699Z monthly 0.8 @@ -84449,7 +84638,7 @@ https://www.rfc1437.de/2003/07/26/walter-zapp-gestorben/ - 2026-03-04T12:31:18.000Z + 2026-03-04T12:31:18.295Z monthly 0.8 @@ -84458,7 +84647,7 @@ https://www.rfc1437.de/2003/07/26/weblogscom-ping-cacher-in-php-from-reinvented-inc/ - 2026-03-04T12:31:22.000Z + 2026-03-04T12:31:22.968Z monthly 0.8 @@ -84467,7 +84656,7 @@ https://www.rfc1437.de/2003/07/25/erneuter-fehler-in-windows-rpc-schnittstelle/ - 2026-03-04T12:31:27.000Z + 2026-03-04T12:31:27.776Z monthly 0.8 @@ -84476,7 +84665,7 @@ https://www.rfc1437.de/2003/07/25/heise-news-ticker-auslands-frst-mt-ppls-nln-mskldn/ - 2026-03-04T12:31:32.000Z + 2026-03-04T12:31:32.642Z monthly 0.8 @@ -84485,7 +84674,7 @@ https://www.rfc1437.de/2003/07/24/cd-linux-knoppix-kommt-auf-den-mac/ - 2026-03-04T12:31:37.000Z + 2026-03-04T12:31:37.440Z monthly 0.8 @@ -84494,7 +84683,7 @@ https://www.rfc1437.de/2003/07/24/gates-stiftung-spendiert-new-yorker-schuln-plm-pds/ - 2026-03-04T12:31:41.000Z + 2026-03-04T12:31:41.448Z monthly 0.8 @@ -84503,7 +84692,7 @@ https://www.rfc1437.de/2003/07/24/lobpreist-die-systemadministratoren/ - 2026-03-04T12:31:44.000Z + 2026-03-04T12:31:44.930Z monthly 0.8 @@ -84512,7 +84701,7 @@ https://www.rfc1437.de/2003/07/23/heute-die-tour-mal-nur-im-ticker/ - 2026-03-04T12:31:50.000Z + 2026-03-04T12:31:50.275Z monthly 0.8 @@ -84521,7 +84710,7 @@ https://www.rfc1437.de/2003/07/23/italiens-parlament-staerkt-berlusconis-medienmacht/ - 2026-03-04T12:31:54.000Z + 2026-03-04T12:31:54.678Z monthly 0.8 @@ -84530,7 +84719,7 @@ https://www.rfc1437.de/2003/07/23/stage-16-tyler-freaking-hamilton-takes-stage-16/ - 2026-03-04T12:31:58.000Z + 2026-03-04T12:31:58.619Z monthly 0.8 @@ -84539,7 +84728,7 @@ https://www.rfc1437.de/2003/07/22/hondo-vor-wechsel-zu-gerolsteiner/ - 2026-03-04T12:32:02.000Z + 2026-03-04T12:32:02.538Z monthly 0.8 @@ -84548,7 +84737,7 @@ https://www.rfc1437.de/2003/07/22/neuer-mail-server-in-x3-server/ - 2026-03-04T12:32:07.000Z + 2026-03-04T12:32:07.021Z monthly 0.8 @@ -84557,7 +84746,7 @@ https://www.rfc1437.de/2003/07/22/sco-vs-linux-linux-steuer-oder-sicherheit-update/ - 2026-03-04T12:32:11.000Z + 2026-03-04T12:32:11.863Z monthly 0.8 @@ -84566,7 +84755,7 @@ https://www.rfc1437.de/2003/07/21/antidot-lizenz-von-sco/ - 2026-03-04T12:32:16.000Z + 2026-03-04T12:32:16.243Z monthly 0.8 @@ -84575,7 +84764,7 @@ https://www.rfc1437.de/2003/07/21/atom-minen-sollten-deutschland-verwuesten/ - 2026-03-04T12:32:20.000Z + 2026-03-04T12:32:20.417Z monthly 0.8 @@ -84584,7 +84773,7 @@ https://www.rfc1437.de/2003/07/21/die-eckpunkte-des-gesundheitskompromisses/ - 2026-03-04T12:32:25.000Z + 2026-03-04T12:32:25.221Z monthly 0.8 @@ -84593,7 +84782,7 @@ https://www.rfc1437.de/2003/07/21/die-tour-war-schon-hart-heute/ - 2026-03-04T12:32:29.000Z + 2026-03-04T12:32:29.665Z monthly 0.8 @@ -84602,7 +84791,7 @@ https://www.rfc1437.de/2003/07/21/radsport-newscom/ - 2026-03-04T12:32:33.000Z + 2026-03-04T12:32:33.186Z monthly 0.8 @@ -84611,7 +84800,7 @@ https://www.rfc1437.de/2003/07/21/wolfowitz-leave-iraq-alone/ - 2026-03-04T12:32:37.000Z + 2026-03-04T12:32:37.544Z monthly 0.8 @@ -84620,7 +84809,7 @@ https://www.rfc1437.de/2003/07/20/bild-von-joseba-beloki-nach-dem-boesn-crsh-nd-dr-p/ - 2026-03-04T12:32:42.000Z + 2026-03-04T12:32:42.846Z monthly 0.8 @@ -84629,7 +84818,7 @@ https://www.rfc1437.de/2003/07/20/der-tag-von-vinokourov-war-das-heute/ - 2026-03-04T12:32:47.000Z + 2026-03-04T12:32:47.240Z monthly 0.8 @@ -84638,7 +84827,7 @@ https://www.rfc1437.de/2003/07/20/neotonic-clearsilver/ - 2026-03-04T12:32:51.000Z + 2026-03-04T12:32:51.158Z monthly 0.8 @@ -84647,7 +84836,7 @@ https://www.rfc1437.de/2003/07/20/umstrittenes-oeffentliches-geloebnis-in-berlin/ - 2026-03-04T12:32:55.000Z + 2026-03-04T12:32:55.495Z monthly 0.8 @@ -84656,7 +84845,7 @@ https://www.rfc1437.de/2003/07/20/unusual-product-names-2/ - 2026-03-04T12:32:59.000Z + 2026-03-04T12:32:59.017Z monthly 0.8 @@ -84665,7 +84854,7 @@ https://www.rfc1437.de/2003/07/19/amazon-wegen-kaufempfehlungen-verklagt/ - 2026-03-04T12:33:03.000Z + 2026-03-04T12:33:03.021Z monthly 0.8 @@ -84674,7 +84863,7 @@ https://www.rfc1437.de/2003/07/19/bushs-aschenputtel-test/ - 2026-03-04T12:33:07.000Z + 2026-03-04T12:33:07.805Z monthly 0.8 @@ -84683,7 +84872,7 @@ https://www.rfc1437.de/2003/07/19/diese-tour-ist-viel-zu-spannend-fuer-mich/ - 2026-03-04T12:33:12.000Z + 2026-03-04T12:33:12.180Z monthly 0.8 @@ -84692,7 +84881,7 @@ https://www.rfc1437.de/2003/07/19/pltch-jhn-glmr-ws-jctd-frm-pln-fr-wrng-sspctd-tr/ - 2026-03-04T12:33:16.000Z + 2026-03-04T12:33:16.579Z monthly 0.8 @@ -84701,7 +84890,7 @@ https://www.rfc1437.de/2003/07/19/sco-plant-linux-lizenzen-fuer-anwender/ - 2026-03-04T12:33:21.000Z + 2026-03-04T12:33:21.684Z monthly 0.8 @@ -84710,7 +84899,7 @@ https://www.rfc1437.de/2003/07/19/zeitung-mehr-kosten-fuer-patienten/ - 2026-03-04T12:33:26.000Z + 2026-03-04T12:33:26.099Z monthly 0.8 @@ -84719,7 +84908,7 @@ https://www.rfc1437.de/2003/07/18/bgh-funktion-der-hyperlnks-stht-br-kmmrzlln-ntrssn/ - 2026-03-04T12:33:29.000Z + 2026-03-04T12:33:29.596Z monthly 0.8 @@ -84728,7 +84917,7 @@ https://www.rfc1437.de/2003/07/18/filesharing-soll-ein-verbrechen-werden/ - 2026-03-04T12:33:34.000Z + 2026-03-04T12:33:34.469Z monthly 0.8 @@ -84737,7 +84926,7 @@ https://www.rfc1437.de/2003/07/18/mtvcom-news-metallica-sue-canadian-bnd-vr-f-chrds/ - 2026-03-04T12:33:38.000Z + 2026-03-04T12:33:38.926Z monthly 0.8 @@ -84746,7 +84935,7 @@ https://www.rfc1437.de/2003/07/18/software-verband-ntzt-rchtsstd-z-pn-src-frs-lbbyng/ - 2026-03-04T12:33:43.000Z + 2026-03-04T12:33:43.292Z monthly 0.8 @@ -84755,7 +84944,7 @@ https://www.rfc1437.de/2003/07/18/tinderwiki/ - 2026-03-04T12:33:47.000Z + 2026-03-04T12:33:47.712Z monthly 0.8 @@ -84764,7 +84953,7 @@ https://www.rfc1437.de/2003/07/18/to-ping-or-not-to-ping/ - 2026-03-04T12:33:52.000Z + 2026-03-04T12:33:52.481Z monthly 0.8 @@ -84773,7 +84962,7 @@ https://www.rfc1437.de/2003/07/18/zeitfahren-kann-doch-spannend-sein/ - 2026-03-04T12:33:56.000Z + 2026-03-04T12:33:56.839Z monthly 0.8 @@ -84782,7 +84971,7 @@ https://www.rfc1437.de/2003/07/17/bgh-prueft-rechtmaessigkeit-des-deep-linking/ - 2026-03-04T12:34:01.000Z + 2026-03-04T12:34:01.234Z monthly 0.8 @@ -84791,7 +84980,7 @@ https://www.rfc1437.de/2003/07/17/ehemaliger-freebsd-entwickler-strtt-gns-btrbssystm/ - 2026-03-04T12:34:05.000Z + 2026-03-04T12:34:05.659Z monthly 0.8 @@ -84800,7 +84989,7 @@ https://www.rfc1437.de/2003/07/17/rss/ - 2026-03-04T12:34:10.000Z + 2026-03-04T12:34:10.527Z monthly 0.8 @@ -84809,7 +84998,7 @@ https://www.rfc1437.de/2003/07/17/wer-im-web-gefunden-werden-will-muss-im-web-sein/ - 2026-03-04T12:34:14.000Z + 2026-03-04T12:34:14.937Z monthly 0.8 @@ -84818,7 +85007,7 @@ https://www.rfc1437.de/2003/07/17/zuwanderer-halten-einwohnerzahl-stabil/ - 2026-03-04T12:34:19.000Z + 2026-03-04T12:34:19.845Z monthly 0.8 @@ -84827,7 +85016,7 @@ https://www.rfc1437.de/2003/07/16/frankfurtblogplande/ - 2026-03-04T12:34:23.000Z + 2026-03-04T12:34:23.854Z monthly 0.8 @@ -84836,7 +85025,7 @@ https://www.rfc1437.de/2003/07/16/gut-zu-wissen/ - 2026-03-04T12:34:28.000Z + 2026-03-04T12:34:28.254Z monthly 0.8 @@ -84845,7 +85034,7 @@ https://www.rfc1437.de/2003/07/16/its-hard-to-fight-for-a-liar/ - 2026-03-04T12:34:33.000Z + 2026-03-04T12:34:33.607Z monthly 0.8 @@ -84854,7 +85043,7 @@ https://www.rfc1437.de/2003/07/16/jeffrey-zeldman-presents-the-daily-report/ - 2026-03-04T12:34:37.000Z + 2026-03-04T12:34:37.966Z monthly 0.8 @@ -84863,7 +85052,7 @@ https://www.rfc1437.de/2003/07/16/kindermann-keiner-praesentiert-mehr-seine-visionen/ - 2026-03-04T12:34:42.000Z + 2026-03-04T12:34:42.356Z monthly 0.8 @@ -84872,7 +85061,7 @@ https://www.rfc1437.de/2003/07/16/shooting-nekkid-women-for-fun/ - 2026-03-04T12:34:46.000Z + 2026-03-04T12:34:46.748Z monthly 0.8 @@ -84881,7 +85070,7 @@ https://www.rfc1437.de/2003/07/16/some-continue-to-resist-itunes-muisc-store/ - 2026-03-04T12:34:51.000Z + 2026-03-04T12:34:51.101Z monthly 0.8 @@ -84890,7 +85079,7 @@ https://www.rfc1437.de/2003/07/16/walross-dame-antje-liegt-im-sterben/ - 2026-03-04T12:34:55.000Z + 2026-03-04T12:34:55.705Z monthly 0.8 @@ -84899,7 +85088,7 @@ https://www.rfc1437.de/2003/07/15/pdf-hat-doofe-ohren/ - 2026-03-04T12:35:00.000Z + 2026-03-04T12:35:00.055Z monthly 0.8 @@ -84908,7 +85097,7 @@ https://www.rfc1437.de/2003/07/15/t-vor-gericht/ - 2026-03-04T12:35:04.000Z + 2026-03-04T12:35:04.986Z monthly 0.8 @@ -84917,7 +85106,7 @@ https://www.rfc1437.de/2003/07/15/there-is-no-spoon/ - 2026-03-04T12:35:10.000Z + 2026-03-04T12:35:10.292Z monthly 0.8 @@ -84926,7 +85115,7 @@ https://www.rfc1437.de/2003/07/14/allwetterzoo-muenster-nachwuchs/ - 2026-03-04T12:35:14.000Z + 2026-03-04T12:35:14.203Z monthly 0.8 @@ -84935,7 +85124,7 @@ https://www.rfc1437.de/2003/07/14/oben-und-unten-liegen-so-eng-beieinander/ - 2026-03-04T12:35:18.000Z + 2026-03-04T12:35:18.680Z monthly 0.8 @@ -84944,7 +85133,7 @@ https://www.rfc1437.de/2003/07/14/tour-de-france-beloki-muss-nach-sturz-aufgeben/ - 2026-03-04T12:35:23.000Z + 2026-03-04T12:35:23.339Z monthly 0.8 @@ -84953,7 +85142,7 @@ https://www.rfc1437.de/2003/07/13/linux-on-a-saturday-night/ - 2026-03-04T12:35:27.000Z + 2026-03-04T12:35:27.878Z monthly 0.8 @@ -84962,7 +85151,7 @@ https://www.rfc1437.de/2003/07/13/more-webcore-fixes/ - 2026-03-04T12:35:32.000Z + 2026-03-04T12:35:32.380Z monthly 0.8 @@ -84971,7 +85160,7 @@ https://www.rfc1437.de/2003/07/13/top-fahrer-der-tour-heute-fuer-mich-tyler-hamilton/ - 2026-03-04T12:35:36.000Z + 2026-03-04T12:35:36.294Z monthly 0.8 @@ -84980,7 +85169,7 @@ https://www.rfc1437.de/2003/07/12/aldag-ist-einfach-beeindruckend/ - 2026-03-04T12:35:40.000Z + 2026-03-04T12:35:40.720Z monthly 0.8 @@ -84989,7 +85178,7 @@ https://www.rfc1437.de/2003/07/12/design-komplettrechner-von-sony/ - 2026-03-04T12:35:45.000Z + 2026-03-04T12:35:45.562Z monthly 0.8 @@ -84998,7 +85187,7 @@ https://www.rfc1437.de/2003/07/12/land-in-sicht-fuer-quietsche-entchen/ - 2026-03-04T12:35:50.000Z + 2026-03-04T12:35:50.030Z monthly 0.8 @@ -85007,7 +85196,7 @@ https://www.rfc1437.de/2003/07/12/stoiber-fuer-laengere-wochenarbeitszeit/ - 2026-03-04T12:35:54.000Z + 2026-03-04T12:35:54.387Z monthly 0.8 @@ -85016,7 +85205,7 @@ https://www.rfc1437.de/2003/07/12/the-home-page-of-squeak-fr-sl-srs-zrs-zch-nd-qtppq/ - 2026-03-04T12:35:58.000Z + 2026-03-04T12:35:58.392Z monthly 0.8 @@ -85025,7 +85214,7 @@ https://www.rfc1437.de/2003/07/11/affen-koennen-programmieren/ - 2026-03-04T12:36:02.000Z + 2026-03-04T12:36:02.359Z monthly 0.8 @@ -85034,7 +85223,7 @@ https://www.rfc1437.de/2003/07/11/freenet-und-aol-mahnen-tauschboersen-nutzer-ab/ - 2026-03-04T12:36:06.000Z + 2026-03-04T12:36:06.855Z monthly 0.8 @@ -85043,7 +85232,7 @@ https://www.rfc1437.de/2003/07/11/hubble-sieht-aumlltesten-planeten/ - 2026-03-04T12:36:10.000Z + 2026-03-04T12:36:10.357Z monthly 0.8 @@ -85052,7 +85241,7 @@ https://www.rfc1437.de/2003/07/10/dritter-etappensieg-fuer-petacchi/ - 2026-03-04T12:36:14.000Z + 2026-03-04T12:36:14.305Z monthly 0.8 @@ -85061,7 +85250,7 @@ https://www.rfc1437.de/2003/07/10/monitor-gentechnikbeitrag/ - 2026-03-04T12:36:18.000Z + 2026-03-04T12:36:18.781Z monthly 0.8 @@ -85070,7 +85259,7 @@ https://www.rfc1437.de/2003/07/10/preis-fuer-drehtabak-bald-auf-rekordniveau/ - 2026-03-04T12:36:23.000Z + 2026-03-04T12:36:23.327Z monthly 0.8 @@ -85079,7 +85268,7 @@ https://www.rfc1437.de/2003/07/10/teleinfo-erklaert-sich-zu-spam-vorwuerfen/ - 2026-03-04T12:36:28.000Z + 2026-03-04T12:36:28.266Z monthly 0.8 @@ -85088,7 +85277,7 @@ https://www.rfc1437.de/2003/07/09/hubble-entdeckt-sensationellen-extrasolaren-plantn/ - 2026-03-04T12:36:31.000Z + 2026-03-04T12:36:31.810Z monthly 0.8 @@ -85097,7 +85286,7 @@ https://www.rfc1437.de/2003/07/09/yahoo-news-online-diaries-cn-cs-tn-frndshps-t-sffr/ - 2026-03-04T12:36:36.000Z + 2026-03-04T12:36:36.757Z monthly 0.8 @@ -85106,7 +85295,7 @@ https://www.rfc1437.de/2003/07/07/sex-luegen-und-videoueberwachung/ - 2026-03-04T12:36:40.000Z + 2026-03-04T12:36:40.251Z monthly 0.8 @@ -85115,7 +85304,7 @@ https://www.rfc1437.de/2003/07/07/sharp-laesst-den-zaurus-in-deutschland-sterben/ - 2026-03-04T12:36:44.000Z + 2026-03-04T12:36:44.300Z monthly 0.8 @@ -85124,7 +85313,7 @@ https://www.rfc1437.de/2003/07/07/target-blank/ - 2026-03-04T12:36:47.000Z + 2026-03-04T12:36:47.854Z monthly 0.8 @@ -85133,7 +85322,7 @@ https://www.rfc1437.de/2003/07/07/the-observer-politics-confess-r-d-s-tlls-jld-brtns/ - 2026-03-04T12:36:53.000Z + 2026-03-04T12:36:53.111Z monthly 0.8 @@ -85142,7 +85331,7 @@ https://www.rfc1437.de/2003/07/06/bei-55-kmh-ein-massensturz/ - 2026-03-04T12:36:57.000Z + 2026-03-04T12:36:57.093Z monthly 0.8 @@ -85151,7 +85340,7 @@ https://www.rfc1437.de/2003/07/06/du-weisst-das-en-tr-tpp-grd-ncht-s-rchtg-spnnnd-st/ - 2026-03-04T12:37:00.000Z + 2026-03-04T12:37:00.578Z monthly 0.8 @@ -85160,7 +85349,7 @@ https://www.rfc1437.de/2003/07/06/merkel-will-im-steuerstreit-machtwort-sprechen/ - 2026-03-04T12:37:05.000Z + 2026-03-04T12:37:05.502Z monthly 0.8 @@ -85169,7 +85358,7 @@ https://www.rfc1437.de/2003/07/06/the-internet-is-shit-2/ - 2026-03-04T12:37:08.000Z + 2026-03-04T12:37:08.640Z monthly 0.8 @@ -85178,7 +85367,7 @@ https://www.rfc1437.de/2003/07/06/user-feedback-bei-blogs/ - 2026-03-04T12:37:13.000Z + 2026-03-04T12:37:13.117Z monthly 0.8 @@ -85187,7 +85376,7 @@ https://www.rfc1437.de/2003/07/05/aol-blogs/ - 2026-03-04T12:37:17.000Z + 2026-03-04T12:37:17.948Z monthly 0.8 @@ -85196,7 +85385,7 @@ https://www.rfc1437.de/2003/07/05/die-curta/ - 2026-03-04T12:37:21.000Z + 2026-03-04T12:37:21.763Z monthly 0.8 @@ -85205,7 +85394,7 @@ https://www.rfc1437.de/2003/07/05/saturdy-5-jly-pg-ls-wrks-wth-sbcl-pnmcl-nd-lspwrks/ - 2026-03-04T12:37:25.000Z + 2026-03-04T12:37:25.746Z monthly 0.8 @@ -85214,7 +85403,7 @@ https://www.rfc1437.de/2003/07/04/angeblicher-millnn-kf-b-by-ntpppt-sch-ls-blr-schrz/ - 2026-03-04T12:37:29.000Z + 2026-03-04T12:37:29.686Z monthly 0.8 @@ -85223,7 +85412,7 @@ https://www.rfc1437.de/2003/07/04/berlusconi-will-sich-nicht-entschuldigt-haben/ - 2026-03-04T12:37:34.000Z + 2026-03-04T12:37:34.656Z monthly 0.8 @@ -85232,7 +85421,7 @@ https://www.rfc1437.de/2003/07/04/peinliches-irak-dossier-im-word-format/ - 2026-03-04T12:37:38.000Z + 2026-03-04T12:37:38.624Z monthly 0.8 @@ -85241,7 +85430,7 @@ https://www.rfc1437.de/2003/07/04/sport-im-ungraden-sommer/ - 2026-03-04T12:37:42.000Z + 2026-03-04T12:37:42.542Z monthly 0.8 @@ -85250,7 +85439,7 @@ https://www.rfc1437.de/2003/07/04/taz-4703-der-traum-des-domestiken/ - 2026-03-04T12:37:46.000Z + 2026-03-04T12:37:46.591Z monthly 0.8 @@ -85259,7 +85448,7 @@ https://www.rfc1437.de/2003/07/04/webdesktop/ - 2026-03-04T12:37:51.000Z + 2026-03-04T12:37:51.131Z monthly 0.8 @@ -85268,7 +85457,7 @@ https://www.rfc1437.de/2003/07/03/deutsche-regierung-erschwert-ach-wtrhn-kmpf-ggn-ds/ - 2026-03-04T12:37:55.000Z + 2026-03-04T12:37:55.138Z monthly 0.8 @@ -85277,7 +85466,7 @@ https://www.rfc1437.de/2003/07/03/kinderrechte-keine-frage-des-mitgefuehls/ - 2026-03-04T12:37:59.000Z + 2026-03-04T12:37:59.966Z monthly 0.8 @@ -85286,7 +85475,7 @@ https://www.rfc1437.de/2003/07/03/lispworks-43-os-x-screenshots/ - 2026-03-04T12:38:03.000Z + 2026-03-04T12:38:03.506Z monthly 0.8 @@ -85295,7 +85484,7 @@ https://www.rfc1437.de/2003/07/03/the-omni-group-applications-omnioutliner/ - 2026-03-04T12:38:06.000Z + 2026-03-04T12:38:06.668Z monthly 0.8 @@ -85304,7 +85493,7 @@ https://www.rfc1437.de/2003/07/03/uks-straw-admits-iraq-dossier-was-embarrassing/ - 2026-03-04T12:38:11.000Z + 2026-03-04T12:38:11.979Z monthly 0.8 @@ -85313,7 +85502,7 @@ https://www.rfc1437.de/2003/07/02/berlusconi-als-eu-ratspraesident/ - 2026-03-04T12:38:15.000Z + 2026-03-04T12:38:15.494Z monthly 0.8 @@ -85322,7 +85511,7 @@ https://www.rfc1437.de/2003/07/02/i-love-me-vol-i/ - 2026-03-04T12:38:20.000Z + 2026-03-04T12:38:20.068Z monthly 0.8 @@ -85331,7 +85520,7 @@ https://www.rfc1437.de/2003/07/02/microsoft-word-bytes-tony-blair-in-the-butt/ - 2026-03-04T12:38:24.000Z + 2026-03-04T12:38:24.949Z monthly 0.8 @@ -85340,7 +85529,7 @@ https://www.rfc1437.de/2003/07/02/nazi-witze-im-eu-parlament/ - 2026-03-04T12:38:29.000Z + 2026-03-04T12:38:29.399Z monthly 0.8 @@ -85349,7 +85538,7 @@ https://www.rfc1437.de/2003/07/02/ringel-neuer-vorstandschef-der-westlb/ - 2026-03-04T12:38:33.000Z + 2026-03-04T12:38:33.924Z monthly 0.8 @@ -85358,7 +85547,7 @@ https://www.rfc1437.de/2003/07/02/secret-santa-terrorism/ - 2026-03-04T12:38:38.000Z + 2026-03-04T12:38:38.804Z monthly 0.8 @@ -85367,7 +85556,7 @@ https://www.rfc1437.de/2003/07/02/spambayes-outlook-addin/ - 2026-03-04T12:38:43.000Z + 2026-03-04T12:38:43.170Z monthly 0.8 @@ -85376,7 +85565,7 @@ https://www.rfc1437.de/2003/07/01/ct-eroeffnet-portal-fuer-it-sicherheit/ - 2026-03-04T12:38:47.000Z + 2026-03-04T12:38:47.111Z monthly 0.8 @@ -85385,7 +85574,7 @@ https://www.rfc1437.de/2003/07/01/fwd-infowarde-medien-im-krieg-wegen-kritik-entlssn/ - 2026-03-04T12:38:51.000Z + 2026-03-04T12:38:51.311Z monthly 0.8 @@ -85394,7 +85583,7 @@ https://www.rfc1437.de/2003/07/01/im-juli/ - 2026-03-04T12:38:54.000Z + 2026-03-04T12:38:54.882Z monthly 0.8 @@ -85403,7 +85592,7 @@ https://www.rfc1437.de/2003/07/01/lispworks-43-for-os-x/ - 2026-03-04T12:38:59.000Z + 2026-03-04T12:38:59.340Z monthly 0.8 @@ -85412,7 +85601,7 @@ https://www.rfc1437.de/2003/07/01/microsoft-kriegt-nichtmal-ein-hr-tag-richtig-hin/ - 2026-03-04T12:39:04.000Z + 2026-03-04T12:39:04.725Z monthly 0.8 @@ -85421,7 +85610,7 @@ https://www.rfc1437.de/2003/07/01/mullenewz-rss-reader-dockling/ - 2026-03-04T12:39:09.000Z + 2026-03-04T12:39:09.122Z monthly 0.8 @@ -85430,7 +85619,7 @@ https://www.rfc1437.de/2003/07/01/t-online-startet-flatrate-fuer-dsl-1500/ - 2026-03-04T12:39:13.000Z + 2026-03-04T12:39:13.644Z monthly 0.8 @@ -85439,7 +85628,7 @@ https://www.rfc1437.de/2003/06/30/frankenstein-food-die-neuauflage/ - 2026-03-04T12:39:18.000Z + 2026-03-04T12:39:18.043Z monthly 0.8 @@ -85448,7 +85637,7 @@ https://www.rfc1437.de/2003/06/30/google-mit-thumbs/ - 2026-03-04T12:39:22.000Z + 2026-03-04T12:39:22.282Z monthly 0.8 @@ -85457,7 +85646,7 @@ https://www.rfc1437.de/2003/06/30/tom-waits-textsammlung/ - 2026-03-04T12:39:27.000Z + 2026-03-04T12:39:27.143Z monthly 0.8 @@ -85466,7 +85655,7 @@ https://www.rfc1437.de/2003/06/30/zabel-deutscher-strassenmeister/ - 2026-03-04T12:39:31.000Z + 2026-03-04T12:39:31.992Z monthly 0.8 @@ -85475,7 +85664,7 @@ https://www.rfc1437.de/2003/06/29/friends-defend-photographer-s-h-s-rrgnd-n-sx-chrgs/ - 2026-03-04T12:39:36.000Z + 2026-03-04T12:39:36.495Z monthly 0.8 @@ -85484,7 +85673,7 @@ https://www.rfc1437.de/2003/06/28/comeback-der-alten-bahncard/ - 2026-03-04T12:39:41.000Z + 2026-03-04T12:39:41.345Z monthly 0.8 @@ -85493,7 +85682,7 @@ https://www.rfc1437.de/2003/06/28/freeware-verletzt-apples-geistiges-eigentum/ - 2026-03-04T12:39:45.000Z + 2026-03-04T12:39:45.785Z monthly 0.8 @@ -85502,7 +85691,7 @@ https://www.rfc1437.de/2003/06/27/bad-msnbot-bad/ - 2026-03-04T12:39:50.000Z + 2026-03-04T12:39:50.246Z monthly 0.8 @@ -85511,7 +85700,7 @@ https://www.rfc1437.de/2003/06/27/if-sco-isnt-right-someone-else-will-be/ - 2026-03-04T12:39:54.000Z + 2026-03-04T12:39:54.876Z monthly 0.8 @@ -85520,7 +85709,7 @@ https://www.rfc1437.de/2003/06/27/steinbrueck-geht-in-die-offensive/ - 2026-03-04T12:39:59.000Z + 2026-03-04T12:39:59.283Z monthly 0.8 @@ -85529,7 +85718,7 @@ https://www.rfc1437.de/2003/06/26/bill-gates-it-schafft-sicherheit/ - 2026-03-04T12:40:04.000Z + 2026-03-04T12:40:04.174Z monthly 0.8 @@ -85538,7 +85727,7 @@ https://www.rfc1437.de/2003/06/26/stoiber-sauer-ueber-treffen-merkel-schroeder/ - 2026-03-04T12:40:08.000Z + 2026-03-04T12:40:08.992Z monthly 0.8 @@ -85547,7 +85736,7 @@ https://www.rfc1437.de/2003/06/25/leica-digital-modul-for-the-r8-r9/ - 2026-03-04T12:40:13.000Z + 2026-03-04T12:40:13.944Z monthly 0.8 @@ -85556,7 +85745,7 @@ https://www.rfc1437.de/2003/06/25/standartintegrale/ - 2026-03-04T12:40:18.000Z + 2026-03-04T12:40:18.361Z monthly 0.8 @@ -85565,7 +85754,7 @@ https://www.rfc1437.de/2003/06/25/verbraucherzentralen-ueberraschn-mt-0190-srvcnmmrn/ - 2026-03-04T12:40:24.000Z + 2026-03-04T12:40:24.050Z monthly 0.8 @@ -85574,7 +85763,7 @@ https://www.rfc1437.de/2003/06/25/winokurow-gewinnt-tour-de-suisse/ - 2026-03-04T12:40:28.000Z + 2026-03-04T12:40:28.011Z monthly 0.8 @@ -85583,7 +85772,7 @@ https://www.rfc1437.de/2003/06/25/wolfowitz-to-be-in-charge-of-military-tribunals/ - 2026-03-04T12:40:32.000Z + 2026-03-04T12:40:32.844Z monthly 0.8 @@ -85592,7 +85781,7 @@ https://www.rfc1437.de/2003/06/24/cow-programming-for-bovines/ - 2026-03-04T12:40:35.000Z + 2026-03-04T12:40:35.932Z monthly 0.8 @@ -85601,7 +85790,7 @@ https://www.rfc1437.de/2003/06/24/genfood-auf-europaeischen-tisch/ - 2026-03-04T12:40:40.000Z + 2026-03-04T12:40:40.385Z monthly 0.8 @@ -85610,7 +85799,7 @@ https://www.rfc1437.de/2003/06/24/ndrhng-vn-zwngsgldrn-wgn-fhlndr-wbst-sprrngn-n-nrw/ - 2026-03-04T12:40:45.000Z + 2026-03-04T12:40:45.312Z monthly 0.8 @@ -85619,7 +85808,7 @@ https://www.rfc1437.de/2003/06/24/neues-bundesamt-fuer-bevoelkerungsschutz/ - 2026-03-04T12:40:49.000Z + 2026-03-04T12:40:49.252Z monthly 0.8 @@ -85628,7 +85817,7 @@ https://www.rfc1437.de/2003/06/24/olympus-e-1-digital-slr/ - 2026-03-04T12:40:54.000Z + 2026-03-04T12:40:54.074Z monthly 0.8 @@ -85637,7 +85826,7 @@ https://www.rfc1437.de/2003/06/24/syndication/ - 2026-03-04T12:40:58.000Z + 2026-03-04T12:40:58.503Z monthly 0.8 @@ -85646,7 +85835,7 @@ https://www.rfc1437.de/2003/06/23/charming-python-usng-cmbntrl-fnctns-n-th-trtls-mdl/ - 2026-03-04T12:41:02.000Z + 2026-03-04T12:41:02.897Z monthly 0.8 @@ -85655,7 +85844,7 @@ https://www.rfc1437.de/2003/06/23/couchblog-abgeben/ - 2026-03-04T12:41:06.000Z + 2026-03-04T12:41:06.844Z monthly 0.8 @@ -85664,7 +85853,7 @@ https://www.rfc1437.de/2003/06/23/ein-unghrs-lchln-dl-lm-fll-ns-gttkngs-vn-cln-gldnr/ - 2026-03-04T12:41:11.000Z + 2026-03-04T12:41:11.728Z monthly 0.8 @@ -85673,7 +85862,7 @@ https://www.rfc1437.de/2003/06/23/macosx-packages-for-mozart-125/ - 2026-03-04T12:41:16.000Z + 2026-03-04T12:41:16.552Z monthly 0.8 @@ -85682,7 +85871,7 @@ https://www.rfc1437.de/2003/06/23/try-before-you-sell/ - 2026-03-04T12:41:20.000Z + 2026-03-04T12:41:20.844Z monthly 0.8 @@ -85691,7 +85880,7 @@ https://www.rfc1437.de/2003/06/23/vim-6-a-great-linux-outliner/ - 2026-03-04T12:41:25.000Z + 2026-03-04T12:41:25.322Z monthly 0.8 @@ -85700,7 +85889,7 @@ https://www.rfc1437.de/2003/06/23/wer-heute-noch-liest-hat-selber-schuld/ - 2026-03-04T12:41:29.000Z + 2026-03-04T12:41:29.751Z monthly 0.8 @@ -85709,7 +85898,7 @@ https://www.rfc1437.de/2003/06/22/belgien-aendert-erneut-kriegsverbrechergesetz/ - 2026-03-04T12:41:33.000Z + 2026-03-04T12:41:33.744Z monthly 0.8 @@ -85718,7 +85907,7 @@ https://www.rfc1437.de/2003/06/22/the-hercules-system370-esa390-and-zarchitectr-mltr/ - 2026-03-04T12:41:38.000Z + 2026-03-04T12:41:38.611Z monthly 0.8 @@ -85727,7 +85916,7 @@ https://www.rfc1437.de/2003/06/21/abcnewscom-women-have-surgery-to-restore-virginity/ - 2026-03-04T12:41:43.000Z + 2026-03-04T12:41:43.439Z monthly 0.8 @@ -85736,7 +85925,7 @@ https://www.rfc1437.de/2003/06/21/ehemaliger-coast-sportdirektor-nimmt-rechtsanwalt/ - 2026-03-04T12:41:47.000Z + 2026-03-04T12:41:47.503Z monthly 0.8 @@ -85745,7 +85934,7 @@ https://www.rfc1437.de/2003/06/21/my-visit-to-sco/ - 2026-03-04T12:41:51.000Z + 2026-03-04T12:41:51.901Z monthly 0.8 @@ -85754,7 +85943,7 @@ https://www.rfc1437.de/2003/06/21/os-x-oberflaeche-fuer-spice/ - 2026-03-04T12:41:56.000Z + 2026-03-04T12:41:56.372Z monthly 0.8 @@ -85763,7 +85952,7 @@ https://www.rfc1437.de/2003/06/21/schleuser-ermittlungen-auch-im-bundestag/ - 2026-03-04T12:42:01.000Z + 2026-03-04T12:42:01.222Z monthly 0.8 @@ -85772,7 +85961,7 @@ https://www.rfc1437.de/2003/06/21/thunderbird-fuer-os-x/ - 2026-03-04T12:42:05.000Z + 2026-03-04T12:42:05.678Z monthly 0.8 @@ -85781,7 +85970,7 @@ https://www.rfc1437.de/2003/06/20/eu-bischoefe-verlangen-christliche-europaverfassng/ - 2026-03-04T12:42:10.000Z + 2026-03-04T12:42:10.185Z monthly 0.8 @@ -85790,7 +85979,7 @@ https://www.rfc1437.de/2003/06/20/hundt-will-insolvenzgeld-kuerzen/ - 2026-03-04T12:42:15.000Z + 2026-03-04T12:42:15.002Z monthly 0.8 @@ -85799,7 +85988,7 @@ https://www.rfc1437.de/2003/06/20/partei-der-schwarzen-kassen/ - 2026-03-04T12:42:19.000Z + 2026-03-04T12:42:19.529Z monthly 0.8 @@ -85808,7 +85997,7 @@ https://www.rfc1437.de/2003/06/20/perle-saddam-war-keine-unmittelbare-gefahr/ - 2026-03-04T12:42:24.000Z + 2026-03-04T12:42:24.906Z monthly 0.8 @@ -85817,7 +86006,7 @@ https://www.rfc1437.de/2003/06/20/swindle-clos-und-mehr-fuer-drscheme/ - 2026-03-04T12:42:29.000Z + 2026-03-04T12:42:29.389Z monthly 0.8 @@ -85826,7 +86015,7 @@ https://www.rfc1437.de/2003/06/20/xchemerpc/ - 2026-03-04T12:42:33.000Z + 2026-03-04T12:42:33.350Z monthly 0.8 @@ -85835,7 +86024,7 @@ https://www.rfc1437.de/2003/06/19/101-three-sixty-five/ - 2026-03-04T12:42:37.000Z + 2026-03-04T12:42:37.352Z monthly 0.8 @@ -85844,7 +86033,7 @@ https://www.rfc1437.de/2003/06/19/dieter-bohlen-vorbild-fuer-deutschland/ - 2026-03-04T12:42:42.000Z + 2026-03-04T12:42:42.192Z monthly 0.8 @@ -85853,7 +86042,7 @@ https://www.rfc1437.de/2003/06/19/drscheme/ - 2026-03-04T12:42:46.000Z + 2026-03-04T12:42:46.634Z monthly 0.8 @@ -85862,7 +86051,7 @@ https://www.rfc1437.de/2003/06/19/looking-to-do-web-stuff-with-python/ - 2026-03-04T12:42:51.000Z + 2026-03-04T12:42:51.453Z monthly 0.8 @@ -85871,7 +86060,7 @@ https://www.rfc1437.de/2003/06/19/mikrofotografie/ - 2026-03-04T12:42:54.000Z + 2026-03-04T12:42:54.984Z monthly 0.8 @@ -85880,7 +86069,7 @@ https://www.rfc1437.de/2003/06/19/plonk/ - 2026-03-04T12:42:59.000Z + 2026-03-04T12:42:59.879Z monthly 0.8 @@ -85889,7 +86078,7 @@ https://www.rfc1437.de/2003/06/19/sad-day-gif-patent-dead-at-20/ - 2026-03-04T12:43:04.000Z + 2026-03-04T12:43:04.360Z monthly 0.8 @@ -85898,7 +86087,7 @@ https://www.rfc1437.de/2003/06/19/textsatzsysteme-wie-man-sie-nicht-machen-sollte/ - 2026-03-04T12:43:08.000Z + 2026-03-04T12:43:08.752Z monthly 0.8 @@ -85907,7 +86096,7 @@ https://www.rfc1437.de/2003/06/18/egon-du-hast-die-url-vergessen/ - 2026-03-04T12:43:13.000Z + 2026-03-04T12:43:13.154Z monthly 0.8 @@ -85916,7 +86105,7 @@ https://www.rfc1437.de/2003/06/18/europaeische-softwarepatente-ruecken-naeher/ - 2026-03-04T12:43:17.000Z + 2026-03-04T12:43:17.578Z monthly 0.8 @@ -85925,7 +86114,7 @@ https://www.rfc1437.de/2003/06/18/mark-pilgrim-an-einen-robot-schreiberling/ - 2026-03-04T12:43:21.000Z + 2026-03-04T12:43:21.411Z monthly 0.8 @@ -85934,7 +86123,7 @@ https://www.rfc1437.de/2003/06/18/orrin-hatch-clueless-and-malevolent/ - 2026-03-04T12:43:25.000Z + 2026-03-04T12:43:25.834Z monthly 0.8 @@ -85943,7 +86132,7 @@ https://www.rfc1437.de/2003/06/18/sco-vs-ibm-suns-mcnealy-preist-vorzuege-von-solars/ - 2026-03-04T12:43:31.000Z + 2026-03-04T12:43:31.191Z monthly 0.8 @@ -85952,7 +86141,7 @@ https://www.rfc1437.de/2003/06/17/clement-deutsche-sollten-mehr-arbeiten/ - 2026-03-04T12:43:35.000Z + 2026-03-04T12:43:35.962Z monthly 0.8 @@ -85961,7 +86150,7 @@ https://www.rfc1437.de/2003/06/17/wenns-richtig-wild-werden-soll-paketdienste/ - 2026-03-04T12:43:40.000Z + 2026-03-04T12:43:40.487Z monthly 0.8 @@ -85970,7 +86159,7 @@ https://www.rfc1437.de/2003/06/16/auf-wiedersehen-und-danke-fuer-den-fisch/ - 2026-03-04T12:43:44.000Z + 2026-03-04T12:43:44.439Z monthly 0.8 @@ -85979,7 +86168,7 @@ https://www.rfc1437.de/2003/06/16/checkpointed-object-database/ - 2026-03-04T12:43:48.000Z + 2026-03-04T12:43:48.479Z monthly 0.8 @@ -85988,7 +86177,7 @@ https://www.rfc1437.de/2003/06/16/das-ende-des-www/ - 2026-03-04T12:43:53.000Z + 2026-03-04T12:43:53.304Z monthly 0.8 @@ -85997,7 +86186,7 @@ https://www.rfc1437.de/2003/06/16/fdp-verlangt-ende-der-kohle-subvention/ - 2026-03-04T12:43:58.000Z + 2026-03-04T12:43:58.658Z monthly 0.8 @@ -86006,7 +86195,7 @@ https://www.rfc1437.de/2003/06/16/firebird-unter-os-x/ - 2026-03-04T12:44:03.000Z + 2026-03-04T12:44:03.094Z monthly 0.8 @@ -86015,7 +86204,7 @@ https://www.rfc1437.de/2003/06/16/koks-ist-so-doof-das-muesste-es-eigentlch-b-ld-gbn/ - 2026-03-04T12:44:07.000Z + 2026-03-04T12:44:07.944Z monthly 0.8 @@ -86024,7 +86213,7 @@ https://www.rfc1437.de/2003/06/16/nochmal-zum-validator/ - 2026-03-04T12:44:12.000Z + 2026-03-04T12:44:12.349Z monthly 0.8 @@ -86033,7 +86222,7 @@ https://www.rfc1437.de/2003/06/16/sco-erweitert-klage-gegen-ibm/ - 2026-03-04T12:44:17.000Z + 2026-03-04T12:44:17.224Z monthly 0.8 @@ -86042,7 +86231,7 @@ https://www.rfc1437.de/2003/06/16/union-will-zahnbehandlung-privatisieren/ - 2026-03-04T12:44:22.000Z + 2026-03-04T12:44:22.011Z monthly 0.8 @@ -86051,7 +86240,7 @@ https://www.rfc1437.de/2003/06/15/domain-schacher/ - 2026-03-04T12:44:25.000Z + 2026-03-04T12:44:25.973Z monthly 0.8 @@ -86060,7 +86249,7 @@ https://www.rfc1437.de/2003/06/15/icab-hat-auch-doofe-ohren/ - 2026-03-04T12:44:29.000Z + 2026-03-04T12:44:29.976Z monthly 0.8 @@ -86069,7 +86258,7 @@ https://www.rfc1437.de/2003/06/15/sandbox-fuer-python/ - 2026-03-04T12:44:33.000Z + 2026-03-04T12:44:33.969Z monthly 0.8 @@ -86078,7 +86267,7 @@ https://www.rfc1437.de/2003/06/15/seehofer-will-gesetzliche-krankenkasse-fuer-alle/ - 2026-03-04T12:44:39.000Z + 2026-03-04T12:44:39.288Z monthly 0.8 @@ -86087,7 +86276,7 @@ https://www.rfc1437.de/2003/06/15/w3-validator-sehr-seltsam/ - 2026-03-04T12:44:43.000Z + 2026-03-04T12:44:43.701Z monthly 0.8 @@ -86096,7 +86285,7 @@ https://www.rfc1437.de/2003/06/14/microsoft-gibt-internet-explorer-fuer-mac-auf/ - 2026-03-04T12:44:48.000Z + 2026-03-04T12:44:48.121Z monthly 0.8 @@ -86105,7 +86294,7 @@ https://www.rfc1437.de/2003/06/13/40000-bahn-jobs-auf-dem-pruefstand/ - 2026-03-04T12:44:52.000Z + 2026-03-04T12:44:52.239Z monthly 0.8 @@ -86114,7 +86303,7 @@ https://www.rfc1437.de/2003/06/13/schily-fuer-mehr-kameras-auf-bahnhoefen/ - 2026-03-04T12:44:56.000Z + 2026-03-04T12:44:56.767Z monthly 0.8 @@ -86123,7 +86312,7 @@ https://www.rfc1437.de/2003/06/12/antiviren-zukauf-von-microsoft-sorgt-fuer-wirbel/ - 2026-03-04T12:45:01.000Z + 2026-03-04T12:45:01.863Z monthly 0.8 @@ -86132,7 +86321,7 @@ https://www.rfc1437.de/2003/06/12/die-csu-mag-keine-pinguine/ - 2026-03-04T12:45:07.000Z + 2026-03-04T12:45:07.482Z monthly 0.8 @@ -86141,7 +86330,7 @@ https://www.rfc1437.de/2003/06/12/homeland-security-jagt-politiker/ - 2026-03-04T12:45:12.000Z + 2026-03-04T12:45:12.822Z monthly 0.8 @@ -86150,7 +86339,7 @@ https://www.rfc1437.de/2003/06/12/ip-addresses-sold-on-the-black-market/ - 2026-03-04T12:45:17.000Z + 2026-03-04T12:45:17.576Z monthly 0.8 @@ -86159,7 +86348,7 @@ https://www.rfc1437.de/2003/06/12/sun-linux-nutzer-wollen-in-wirklichkeit-kein-linux/ - 2026-03-04T12:45:22.000Z + 2026-03-04T12:45:22.748Z monthly 0.8 @@ -86168,7 +86357,7 @@ https://www.rfc1437.de/2003/06/12/washington-setzt-immunitaet-fuer-us-soldaten-durch/ - 2026-03-04T12:45:27.000Z + 2026-03-04T12:45:27.568Z monthly 0.8 @@ -86177,7 +86366,7 @@ https://www.rfc1437.de/2003/06/11/blix-ich-hatte-meine-verleumder-in-washington/ - 2026-03-04T12:45:32.000Z + 2026-03-04T12:45:32.509Z monthly 0.8 @@ -86186,7 +86375,7 @@ https://www.rfc1437.de/2003/06/11/koch-muss-zahlen/ - 2026-03-04T12:45:38.000Z + 2026-03-04T12:45:38.488Z monthly 0.8 @@ -86195,7 +86384,7 @@ https://www.rfc1437.de/2003/06/11/untersuchungsausschuss-wegen-moellemann/ - 2026-03-04T12:45:43.000Z + 2026-03-04T12:45:43.058Z monthly 0.8 @@ -86204,7 +86393,7 @@ https://www.rfc1437.de/2003/06/11/visible-human-server/ - 2026-03-04T12:45:47.000Z + 2026-03-04T12:45:47.722Z monthly 0.8 @@ -86213,7 +86402,7 @@ https://www.rfc1437.de/2003/06/10/another-smalltalk/ - 2026-03-04T12:45:52.000Z + 2026-03-04T12:45:52.897Z monthly 0.8 @@ -86222,7 +86411,7 @@ https://www.rfc1437.de/2003/06/10/gabriel-aus-von-modern-talking-lange-ueberfaellig/ - 2026-03-04T12:45:58.000Z + 2026-03-04T12:45:58.728Z monthly 0.8 @@ -86231,7 +86420,7 @@ https://www.rfc1437.de/2003/06/10/nasa-techniker-gelingt-reparatur-aus-800-millionen/ - 2026-03-04T12:46:03.000Z + 2026-03-04T12:46:03.803Z monthly 0.8 @@ -86240,7 +86429,7 @@ https://www.rfc1437.de/2003/06/09/das-mass-ist-voll-killt-ie-6/ - 2026-03-04T12:46:08.000Z + 2026-03-04T12:46:08.409Z monthly 0.8 @@ -86249,7 +86438,7 @@ https://www.rfc1437.de/2003/06/09/gizmodo-1983/ - 2026-03-04T12:46:12.000Z + 2026-03-04T12:46:12.559Z monthly 0.8 @@ -86258,7 +86447,7 @@ https://www.rfc1437.de/2003/06/09/noch-so-eine-angebliche-vertretung-des-buergrwllns/ - 2026-03-04T12:46:17.000Z + 2026-03-04T12:46:17.139Z monthly 0.8 @@ -86267,7 +86456,7 @@ https://www.rfc1437.de/2003/06/09/waste-verschluesseltes-file-sharing/ - 2026-03-04T12:46:21.000Z + 2026-03-04T12:46:21.988Z monthly 0.8 @@ -86276,7 +86465,7 @@ https://www.rfc1437.de/2003/06/08/peak-pyprotocols/ - 2026-03-04T12:46:26.000Z + 2026-03-04T12:46:26.994Z monthly 0.8 @@ -86285,7 +86474,7 @@ https://www.rfc1437.de/2003/06/08/shift-gehaeuse-deckel/ - 2026-03-04T12:46:31.000Z + 2026-03-04T12:46:31.561Z monthly 0.8 @@ -86294,7 +86483,7 @@ https://www.rfc1437.de/2003/06/08/unwetterwarnung-fuer-nrw/ - 2026-03-04T12:46:36.000Z + 2026-03-04T12:46:36.192Z monthly 0.8 @@ -86303,7 +86492,7 @@ https://www.rfc1437.de/2003/06/07/python-und-curses-und-eine-python-mplmnttn-vn-rdln/ - 2026-03-04T12:46:40.000Z + 2026-03-04T12:46:40.716Z monthly 0.8 @@ -86312,7 +86501,7 @@ https://www.rfc1437.de/2003/06/07/zutritt-verboten/ - 2026-03-04T12:46:45.000Z + 2026-03-04T12:46:45.279Z monthly 0.8 @@ -86321,7 +86510,7 @@ https://www.rfc1437.de/2003/06/06/bloogle/ - 2026-03-04T12:46:50.000Z + 2026-03-04T12:46:50.208Z monthly 0.8 @@ -86330,7 +86519,7 @@ https://www.rfc1437.de/2003/06/06/contax-n-digital-slr-discontinued/ - 2026-03-04T12:46:54.000Z + 2026-03-04T12:46:54.301Z monthly 0.8 @@ -86339,7 +86528,7 @@ https://www.rfc1437.de/2003/06/06/icomic-absolut-cool/ - 2026-03-04T12:46:58.000Z + 2026-03-04T12:46:58.358Z monthly 0.8 @@ -86348,7 +86537,7 @@ https://www.rfc1437.de/2003/06/06/moellemann-der-waffenschieber/ - 2026-03-04T12:47:03.000Z + 2026-03-04T12:47:03.298Z monthly 0.8 @@ -86357,7 +86546,7 @@ https://www.rfc1437.de/2003/06/06/private-konkurrenz-fuer-die-bahn/ - 2026-03-04T12:47:07.000Z + 2026-03-04T12:47:07.836Z monthly 0.8 @@ -86366,7 +86555,7 @@ https://www.rfc1437.de/2003/06/05/clement-will-weniger-buerokratie-in-berufen/ - 2026-03-04T12:47:12.000Z + 2026-03-04T12:47:12.778Z monthly 0.8 @@ -86375,7 +86564,7 @@ https://www.rfc1437.de/2003/06/05/ein-virtuelles-kernobst-als-potenzieller-zankapfel/ - 2026-03-04T12:47:17.000Z + 2026-03-04T12:47:17.233Z monthly 0.8 @@ -86384,7 +86573,7 @@ https://www.rfc1437.de/2003/06/05/juergen-w-moellemann-ist-tot/ - 2026-03-04T12:47:22.000Z + 2026-03-04T12:47:22.469Z monthly 0.8 @@ -86393,7 +86582,7 @@ https://www.rfc1437.de/2003/06/05/microsoft-laesst-sich-ntrctv-ntrtnmnt-systm-ptntrn/ - 2026-03-04T12:47:26.000Z + 2026-03-04T12:47:26.534Z monthly 0.8 @@ -86402,7 +86591,7 @@ https://www.rfc1437.de/2003/06/05/pantani-zu-bianchi/ - 2026-03-04T12:47:31.000Z + 2026-03-04T12:47:31.001Z monthly 0.8 @@ -86411,7 +86600,7 @@ https://www.rfc1437.de/2003/06/05/pendlerpauschale-auf-dem-pruefstand/ - 2026-03-04T12:47:35.000Z + 2026-03-04T12:47:35.938Z monthly 0.8 @@ -86420,7 +86609,7 @@ https://www.rfc1437.de/2003/06/05/steve-ballmer-fuehlt-sich-durch-linux-bedroht/ - 2026-03-04T12:47:40.000Z + 2026-03-04T12:47:40.449Z monthly 0.8 @@ -86429,7 +86618,7 @@ https://www.rfc1437.de/2003/06/05/web-crawler-sucht-nach-steuersuendern/ - 2026-03-04T12:47:45.000Z + 2026-03-04T12:47:45.386Z monthly 0.8 @@ -86438,7 +86627,7 @@ https://www.rfc1437.de/2003/06/05/wieder-stret-m-ntwrf-zr-vrffntlchng-vn-schrhtslckn/ - 2026-03-04T12:47:50.000Z + 2026-03-04T12:47:50.426Z monthly 0.8 @@ -86447,7 +86636,7 @@ https://www.rfc1437.de/2003/06/04/430-millionen-euro-fuer-eschede-opfer-gefordert/ - 2026-03-04T12:47:55.000Z + 2026-03-04T12:47:55.286Z monthly 0.8 @@ -86456,7 +86645,7 @@ https://www.rfc1437.de/2003/06/04/auch-sendmail-schuetzt-jetzt-vor-spam/ - 2026-03-04T12:47:59.000Z + 2026-03-04T12:47:59.793Z monthly 0.8 @@ -86465,7 +86654,7 @@ https://www.rfc1437.de/2003/06/04/aus-fuer-einwegverpackungen/ - 2026-03-04T12:48:04.000Z + 2026-03-04T12:48:04.266Z monthly 0.8 @@ -86474,7 +86663,7 @@ https://www.rfc1437.de/2003/06/04/deutsche-buerokratie-bewegt-sich-nicht/ - 2026-03-04T12:48:08.000Z + 2026-03-04T12:48:08.693Z monthly 0.8 @@ -86483,7 +86672,7 @@ https://www.rfc1437.de/2003/06/04/netzzensor-buessow-tritt-aus-gegen-kritiker/ - 2026-03-04T12:48:13.000Z + 2026-03-04T12:48:13.173Z monthly 0.8 @@ -86492,7 +86681,7 @@ https://www.rfc1437.de/2003/06/03/biste-alt-biste-arm-kannste-sterben/ - 2026-03-04T12:48:17.000Z + 2026-03-04T12:48:17.585Z monthly 0.8 @@ -86501,7 +86690,7 @@ https://www.rfc1437.de/2003/06/03/dynamically-scoped-variables/ - 2026-03-04T12:48:22.000Z + 2026-03-04T12:48:22.837Z monthly 0.8 @@ -86510,7 +86699,7 @@ https://www.rfc1437.de/2003/06/03/this-is-just-cool-st-80in-vw-7/ - 2026-03-04T12:48:27.000Z + 2026-03-04T12:48:27.321Z monthly 0.8 @@ -86519,7 +86708,7 @@ https://www.rfc1437.de/2003/06/02/blei-in-den-regalen/ - 2026-03-04T12:48:32.000Z + 2026-03-04T12:48:32.708Z monthly 0.8 @@ -86528,7 +86717,7 @@ https://www.rfc1437.de/2003/06/02/die-open-content-lizenz-wird-europaeisch/ - 2026-03-04T12:48:37.000Z + 2026-03-04T12:48:37.156Z monthly 0.8 @@ -86537,7 +86726,7 @@ https://www.rfc1437.de/2003/06/01/das-monty-hall-problem/ - 2026-03-04T12:48:41.000Z + 2026-03-04T12:48:41.129Z monthly 0.8 @@ -86546,7 +86735,7 @@ https://www.rfc1437.de/2003/06/01/ein-maulkorb-fuer-sco/ - 2026-03-04T12:48:45.000Z + 2026-03-04T12:48:45.162Z monthly 0.8 @@ -86555,7 +86744,7 @@ https://www.rfc1437.de/2003/06/01/objektivverzeichnung-korrigieren/ - 2026-03-04T12:48:49.000Z + 2026-03-04T12:48:49.611Z monthly 0.8 @@ -86564,7 +86753,7 @@ https://www.rfc1437.de/2003/06/01/photokit-analoge-bildeffekte-fuer-photoshop/ - 2026-03-04T12:48:54.000Z + 2026-03-04T12:48:54.070Z monthly 0.8 @@ -86573,7 +86762,7 @@ https://www.rfc1437.de/2003/06/01/siggy-pop/ - 2026-03-04T12:48:58.000Z + 2026-03-04T12:48:58.934Z monthly 0.8 @@ -86582,7 +86771,7 @@ https://www.rfc1437.de/2003/06/01/uebersicht-ueber-die-geschichte-der-linhof-technik/ - 2026-03-04T12:49:03.000Z + 2026-03-04T12:49:03.450Z monthly 0.8 @@ -86591,7 +86780,7 @@ https://www.rfc1437.de/2003/06/01/us-regulierungsbehoerde-unter-korruptionsverdacht/ - 2026-03-04T12:49:08.000Z + 2026-03-04T12:49:08.690Z monthly 0.8 @@ -86600,7 +86789,7 @@ https://www.rfc1437.de/2003/05/31/20-years-of-smalltalk-80/ - 2026-03-04T12:49:13.000Z + 2026-03-04T12:49:13.155Z monthly 0.8 @@ -86609,7 +86798,7 @@ https://www.rfc1437.de/2003/05/31/polaroid-195-wird-wieder-neu-aufgelegt/ - 2026-03-04T12:49:17.000Z + 2026-03-04T12:49:17.548Z monthly 0.8 @@ -86618,7 +86807,7 @@ https://www.rfc1437.de/2003/05/30/das-rungholt-projekt/ - 2026-03-04T12:49:22.000Z + 2026-03-04T12:49:22.338Z monthly 0.8 @@ -86627,7 +86816,7 @@ https://www.rfc1437.de/2003/05/30/wolfowitz-laesst-maske-fallen/ - 2026-03-04T12:49:26.000Z + 2026-03-04T12:49:26.702Z monthly 0.8 @@ -86636,7 +86825,7 @@ https://www.rfc1437.de/2003/05/29/mal-wieder-geruechte-um-digiback-fuer-leic-r8-dr-9/ - 2026-03-04T12:49:31.000Z + 2026-03-04T12:49:31.595Z monthly 0.8 @@ -86645,7 +86834,7 @@ https://www.rfc1437.de/2003/05/28/neues-itunes-unterbindet-musik-sharing-br-ds-ntrnt/ - 2026-03-04T12:49:36.000Z + 2026-03-04T12:49:36.548Z monthly 0.8 @@ -86654,7 +86843,7 @@ https://www.rfc1437.de/2003/05/28/novell-reklamiert-eigene-unix-rechte-im-strt-m-lnx/ - 2026-03-04T12:49:40.000Z + 2026-03-04T12:49:40.989Z monthly 0.8 @@ -86663,7 +86852,7 @@ https://www.rfc1437.de/2003/05/28/usa-erneuern-vorwuerfe-gegen-iran/ - 2026-03-04T12:49:45.000Z + 2026-03-04T12:49:45.421Z monthly 0.8 @@ -86672,7 +86861,7 @@ https://www.rfc1437.de/2003/05/28/wer-nichts-wird-wird-werber/ - 2026-03-04T12:49:49.000Z + 2026-03-04T12:49:49.820Z monthly 0.8 @@ -86681,7 +86870,7 @@ https://www.rfc1437.de/2003/05/27/gmx-landete-auf-open-relay-blacklist/ - 2026-03-04T12:49:54.000Z + 2026-03-04T12:49:54.491Z monthly 0.8 @@ -86690,7 +86879,7 @@ https://www.rfc1437.de/2003/05/27/microsoft-fordert-neue-ausschreibung-in-munchn-pdt/ - 2026-03-04T12:49:58.000Z + 2026-03-04T12:49:58.886Z monthly 0.8 @@ -86699,7 +86888,7 @@ https://www.rfc1437.de/2003/05/27/oh-gott-3/ - 2026-03-04T12:50:03.000Z + 2026-03-04T12:50:03.879Z monthly 0.8 @@ -86708,7 +86897,7 @@ https://www.rfc1437.de/2003/05/26/a-land-without-consequences/ - 2026-03-04T12:50:08.000Z + 2026-03-04T12:50:08.278Z monthly 0.8 @@ -86717,7 +86906,7 @@ https://www.rfc1437.de/2003/05/26/linuxtag-mahnt-sco-ab/ - 2026-03-04T12:50:12.000Z + 2026-03-04T12:50:12.744Z monthly 0.8 @@ -86726,7 +86915,7 @@ https://www.rfc1437.de/2003/05/26/milliarden-forderung-an-die-bahn/ - 2026-03-04T12:50:17.000Z + 2026-03-04T12:50:17.238Z monthly 0.8 @@ -86735,7 +86924,7 @@ https://www.rfc1437.de/2003/05/26/muenchener-rathaus-spd-entscheidet-sich-fuer-linux/ - 2026-03-04T12:50:21.000Z + 2026-03-04T12:50:21.498Z monthly 0.8 @@ -86744,7 +86933,7 @@ https://www.rfc1437.de/2003/05/26/steinbrueck-fortsetzung-der-koalition-offen/ - 2026-03-04T12:50:25.000Z + 2026-03-04T12:50:25.998Z monthly 0.8 @@ -86753,7 +86942,7 @@ https://www.rfc1437.de/2003/05/24/scientists-find-animal-link-for-sars-virus/ - 2026-03-04T12:50:30.000Z + 2026-03-04T12:50:30.830Z monthly 0.8 @@ -86762,7 +86951,7 @@ https://www.rfc1437.de/2003/05/23/bush-attackiert-old-europe/ - 2026-03-04T12:50:35.000Z + 2026-03-04T12:50:35.423Z monthly 0.8 @@ -86771,7 +86960,7 @@ https://www.rfc1437.de/2003/05/23/eigentor-von-sco/ - 2026-03-04T12:50:40.000Z + 2026-03-04T12:50:40.292Z monthly 0.8 @@ -86780,7 +86969,7 @@ https://www.rfc1437.de/2003/05/23/sap-setzt-auf-mysql/ - 2026-03-04T12:50:45.000Z + 2026-03-04T12:50:45.273Z monthly 0.8 @@ -86789,7 +86978,7 @@ https://www.rfc1437.de/2003/05/23/spam-filter-from-heck/ - 2026-03-04T12:50:49.000Z + 2026-03-04T12:50:49.718Z monthly 0.8 @@ -86798,7 +86987,7 @@ https://www.rfc1437.de/2003/05/23/ullrich-wird-bei-tour-starten/ - 2026-03-04T12:50:53.000Z + 2026-03-04T12:50:53.721Z monthly 0.8 @@ -86807,7 +86996,7 @@ https://www.rfc1437.de/2003/05/22/bruce-perens-on-sco-v-linux/ - 2026-03-04T12:50:57.000Z + 2026-03-04T12:50:57.742Z monthly 0.8 @@ -86816,7 +87005,7 @@ https://www.rfc1437.de/2003/05/22/cia-muss-eigene-irak-berichte-durchforsten/ - 2026-03-04T12:51:02.000Z + 2026-03-04T12:51:02.856Z monthly 0.8 @@ -86825,7 +87014,7 @@ https://www.rfc1437.de/2003/05/22/eiffel-releases-beta-of-eiffelstudio-for-os-x/ - 2026-03-04T12:51:07.000Z + 2026-03-04T12:51:07.408Z monthly 0.8 @@ -86834,7 +87023,7 @@ https://www.rfc1437.de/2003/05/22/koeln-am-abgrund/ - 2026-03-04T12:51:11.000Z + 2026-03-04T12:51:11.901Z monthly 0.8 @@ -86843,7 +87032,7 @@ https://www.rfc1437.de/2003/05/22/schimpansen-sind-auch-nur-menschen/ - 2026-03-04T12:51:16.000Z + 2026-03-04T12:51:16.865Z monthly 0.8 @@ -86852,7 +87041,7 @@ https://www.rfc1437.de/2003/05/22/tabubruch-fuer-die-eigene-sicherheit/ - 2026-03-04T12:51:21.000Z + 2026-03-04T12:51:21.660Z monthly 0.8 @@ -86861,7 +87050,7 @@ https://www.rfc1437.de/2003/05/22/weltrekord-eine-titanenhafte-bluete/ - 2026-03-04T12:51:25.000Z + 2026-03-04T12:51:25.212Z monthly 0.8 @@ -86870,7 +87059,7 @@ https://www.rfc1437.de/2003/05/21/abloesesumme-fuer-ullrich/ - 2026-03-04T12:51:30.000Z + 2026-03-04T12:51:30.180Z monthly 0.8 @@ -86879,7 +87068,7 @@ https://www.rfc1437.de/2003/05/21/boyz-need-toyz-2/ - 2026-03-04T12:51:35.000Z + 2026-03-04T12:51:35.153Z monthly 0.8 @@ -86888,7 +87077,7 @@ https://www.rfc1437.de/2003/05/21/kamera-handys-werden-auch-von-spannern-genutzt/ - 2026-03-04T12:51:40.000Z + 2026-03-04T12:51:40.090Z monthly 0.8 @@ -86897,7 +87086,7 @@ https://www.rfc1437.de/2003/05/21/lenin-strahlt/ - 2026-03-04T12:51:44.000Z + 2026-03-04T12:51:44.105Z monthly 0.8 @@ -86906,7 +87095,7 @@ https://www.rfc1437.de/2003/05/20/bahn-manager-fliegen/ - 2026-03-04T12:51:49.000Z + 2026-03-04T12:51:49.073Z monthly 0.8 @@ -86915,7 +87104,7 @@ https://www.rfc1437.de/2003/05/20/neues-preissystem-bahn-feuert-zwei-manager/ - 2026-03-04T12:51:53.000Z + 2026-03-04T12:51:53.523Z monthly 0.8 @@ -86924,7 +87113,7 @@ https://www.rfc1437.de/2003/05/19/ahnungslose-und-zynische-politiker/ - 2026-03-04T12:51:58.000Z + 2026-03-04T12:51:58.480Z monthly 0.8 @@ -86933,7 +87122,7 @@ https://www.rfc1437.de/2003/05/18/matrix-reloaded-features-nmap/ - 2026-03-04T12:52:03.000Z + 2026-03-04T12:52:03.421Z monthly 0.8 @@ -86942,7 +87131,7 @@ https://www.rfc1437.de/2003/05/18/pic-eine-trauerweide/ - 2026-03-04T12:52:08.000Z + 2026-03-04T12:52:08.423Z monthly 0.8 @@ -86951,7 +87140,7 @@ https://www.rfc1437.de/2003/05/18/pic-promenade-im-fruehling/ - 2026-03-04T12:52:12.000Z + 2026-03-04T12:52:12.481Z monthly 0.8 @@ -86960,7 +87149,7 @@ https://www.rfc1437.de/2003/05/18/pic-wer-da-wohl-sitzt/ - 2026-03-04T12:52:16.000Z + 2026-03-04T12:52:16.501Z monthly 0.8 @@ -86969,7 +87158,7 @@ https://www.rfc1437.de/2003/05/17/dotcomisches/ - 2026-03-04T12:52:22.000Z + 2026-03-04T12:52:22.205Z monthly 0.8 @@ -86978,7 +87167,7 @@ https://www.rfc1437.de/2003/05/17/gericht-verbietet-domains-mit-staedtenamen/ - 2026-03-04T12:52:27.000Z + 2026-03-04T12:52:27.542Z monthly 0.8 @@ -86987,7 +87176,7 @@ https://www.rfc1437.de/2003/05/17/marvin-minsky-kuenstliche-intelligenz-ist-gehirntt/ - 2026-03-04T12:52:32.000Z + 2026-03-04T12:52:32.120Z monthly 0.8 @@ -86996,7 +87185,7 @@ https://www.rfc1437.de/2003/05/17/script-kiddies/ - 2026-03-04T12:52:36.000Z + 2026-03-04T12:52:36.696Z monthly 0.8 @@ -87005,7 +87194,7 @@ https://www.rfc1437.de/2003/05/17/texas-bill-enviro-terrorist/ - 2026-03-04T12:52:40.000Z + 2026-03-04T12:52:40.842Z monthly 0.8 @@ -87014,7 +87203,7 @@ https://www.rfc1437.de/2003/05/16/bahn-fernverkehr-bricht-offenbar-weiter-ein/ - 2026-03-04T12:52:45.000Z + 2026-03-04T12:52:45.836Z monthly 0.8 @@ -87023,7 +87212,7 @@ https://www.rfc1437.de/2003/05/16/bianchi-team-erhaelt-die-coast-lizenz/ - 2026-03-04T12:52:49.000Z + 2026-03-04T12:52:49.812Z monthly 0.8 @@ -87032,7 +87221,7 @@ https://www.rfc1437.de/2003/05/16/die-anonymen-anpacker/ - 2026-03-04T12:52:54.000Z + 2026-03-04T12:52:54.350Z monthly 0.8 @@ -87041,7 +87230,7 @@ https://www.rfc1437.de/2003/05/16/dosenfleisch-ii/ - 2026-03-04T12:52:59.000Z + 2026-03-04T12:52:59.326Z monthly 0.8 @@ -87050,7 +87239,7 @@ https://www.rfc1437.de/2003/05/16/gericht-praezisiert-haftung-fur-btrbr-vn-ntrnt-frn/ - 2026-03-04T12:53:02.000Z + 2026-03-04T12:53:02.879Z monthly 0.8 @@ -87059,7 +87248,7 @@ https://www.rfc1437.de/2003/05/16/metablogging/ - 2026-03-04T12:53:07.000Z + 2026-03-04T12:53:07.389Z monthly 0.8 @@ -87068,7 +87257,7 @@ https://www.rfc1437.de/2003/05/16/microsofts-protokoll-peepshow/ - 2026-03-04T12:53:12.000Z + 2026-03-04T12:53:12.332Z monthly 0.8 @@ -87077,7 +87266,7 @@ https://www.rfc1437.de/2003/05/16/routing-tabellen-ntr-lnx-nfllg-fr-dnl-f-srvc-ttckn/ - 2026-03-04T12:53:16.000Z + 2026-03-04T12:53:16.348Z monthly 0.8 @@ -87086,7 +87275,7 @@ https://www.rfc1437.de/2003/05/15/polizei-nimmt-net-fahndungssystem-in-betrieb/ - 2026-03-04T12:53:21.000Z + 2026-03-04T12:53:21.936Z monthly 0.8 @@ -87095,7 +87284,7 @@ https://www.rfc1437.de/2003/05/15/sco-declares-total-war-on-gnulinux/ - 2026-03-04T12:53:25.000Z + 2026-03-04T12:53:25.540Z monthly 0.8 @@ -87104,7 +87293,7 @@ https://www.rfc1437.de/2003/05/15/t-mobile-stoppt-windows-handy-update/ - 2026-03-04T12:53:30.000Z + 2026-03-04T12:53:30.471Z monthly 0.8 @@ -87113,7 +87302,7 @@ https://www.rfc1437.de/2003/05/14/bmwi-stoppt-opensoure-projekte/ - 2026-03-04T12:53:35.000Z + 2026-03-04T12:53:35.044Z monthly 0.8 @@ -87122,7 +87311,7 @@ https://www.rfc1437.de/2003/05/14/on-lisp-reprint/ - 2026-03-04T12:53:39.000Z + 2026-03-04T12:53:39.096Z monthly 0.8 @@ -87131,7 +87320,7 @@ https://www.rfc1437.de/2003/05/14/python-panik-rund-um-juelich/ - 2026-03-04T12:53:43.000Z + 2026-03-04T12:53:43.078Z monthly 0.8 @@ -87140,7 +87329,7 @@ https://www.rfc1437.de/2003/05/14/ullrich-trennt-sich-von-coast/ - 2026-03-04T12:53:48.000Z + 2026-03-04T12:53:48.070Z monthly 0.8 @@ -87149,7 +87338,7 @@ https://www.rfc1437.de/2003/05/14/velvia-100-due-in-august/ - 2026-03-04T12:53:52.000Z + 2026-03-04T12:53:52.079Z monthly 0.8 @@ -87158,7 +87347,7 @@ https://www.rfc1437.de/2003/05/13/inquiry-shws-brtsh-scntsts-tk-brns-wtht-fmls-cnsnt/ - 2026-03-04T12:53:57.000Z + 2026-03-04T12:53:57.873Z monthly 0.8 @@ -87167,7 +87356,7 @@ https://www.rfc1437.de/2003/05/13/orchideen-sind-auch-nur-spargel/ - 2026-03-04T12:54:02.000Z + 2026-03-04T12:54:02.750Z monthly 0.8 @@ -87176,7 +87365,7 @@ https://www.rfc1437.de/2003/05/12/experte-mehrwertsteuer-muss-rauf/ - 2026-03-04T12:54:07.000Z + 2026-03-04T12:54:07.697Z monthly 0.8 @@ -87185,7 +87374,7 @@ https://www.rfc1437.de/2003/05/11/dem-schockwellenreiter-sein-kantel-wird-50/ - 2026-03-04T12:54:11.000Z + 2026-03-04T12:54:11.689Z monthly 0.8 @@ -87194,7 +87383,7 @@ https://www.rfc1437.de/2003/05/11/nrw-nameserver-umgeht-sperrungsverfuegung/ - 2026-03-04T12:54:16.000Z + 2026-03-04T12:54:16.231Z monthly 0.8 @@ -87203,7 +87392,7 @@ https://www.rfc1437.de/2003/05/11/oberbuergermeisterin-von-hanau-abgewaehlt/ - 2026-03-04T12:54:20.000Z + 2026-03-04T12:54:20.421Z monthly 0.8 @@ -87212,7 +87401,7 @@ https://www.rfc1437.de/2003/05/10/donald-e-knuth-ueber-signifikanten-whitespace/ - 2026-03-04T12:54:25.000Z + 2026-03-04T12:54:25.415Z monthly 0.8 @@ -87221,7 +87410,7 @@ https://www.rfc1437.de/2003/05/10/great-barrier-riff/ - 2026-03-04T12:54:29.000Z + 2026-03-04T12:54:29.905Z monthly 0.8 @@ -87230,7 +87419,7 @@ https://www.rfc1437.de/2003/05/10/microsoft-droht-billionenstrafe/ - 2026-03-04T12:54:34.000Z + 2026-03-04T12:54:34.890Z monthly 0.8 @@ -87239,7 +87428,7 @@ https://www.rfc1437.de/2003/05/10/my-leg-is-a-security-hole/ - 2026-03-04T12:54:39.000Z + 2026-03-04T12:54:39.032Z monthly 0.8 @@ -87248,7 +87437,7 @@ https://www.rfc1437.de/2003/05/10/ullrich-zurueck-zu-telekom/ - 2026-03-04T12:54:43.000Z + 2026-03-04T12:54:43.490Z monthly 0.8 @@ -87257,7 +87446,7 @@ https://www.rfc1437.de/2003/05/10/web-browser-safari-schlampt-bei-ssl-zertifikaten/ - 2026-03-04T12:54:47.000Z + 2026-03-04T12:54:47.539Z monthly 0.8 @@ -87266,7 +87455,7 @@ https://www.rfc1437.de/2003/05/09/jan-ullrich-vor-dem-absprung/ - 2026-03-04T12:54:52.000Z + 2026-03-04T12:54:52.029Z monthly 0.8 @@ -87275,7 +87464,7 @@ https://www.rfc1437.de/2003/05/09/juice-reduction/ - 2026-03-04T12:54:57.000Z + 2026-03-04T12:54:57.033Z monthly 0.8 @@ -87293,7 +87482,7 @@ https://www.rfc1437.de/2003/05/09/will-google-die-weblogs-aussperren/ - 2026-03-04T12:55:06.000Z + 2026-03-04T12:55:06.985Z monthly 0.8 @@ -87302,7 +87491,7 @@ https://www.rfc1437.de/2003/05/08/bush-blair-fuer-nobelpreis-nominiert/ - 2026-03-04T12:55:11.000Z + 2026-03-04T12:55:11.035Z monthly 0.8 @@ -87311,7 +87500,7 @@ https://www.rfc1437.de/2003/05/08/gut-100-millionen-fuer-opfer-des-11-september/ - 2026-03-04T12:55:15.000Z + 2026-03-04T12:55:15.945Z monthly 0.8 @@ -87320,7 +87509,7 @@ https://www.rfc1437.de/2003/05/08/patentstreit-um-spam-schutz/ - 2026-03-04T12:55:20.000Z + 2026-03-04T12:55:20.550Z monthly 0.8 @@ -87329,7 +87518,7 @@ https://www.rfc1437.de/2003/05/08/schwachstelle-in-microsofts-passport/ - 2026-03-04T12:55:25.000Z + 2026-03-04T12:55:25.547Z monthly 0.8 @@ -87338,7 +87527,7 @@ https://www.rfc1437.de/2003/05/08/spam-in-zukunft-unzumutbare-belaestigung/ - 2026-03-04T12:55:29.000Z + 2026-03-04T12:55:29.964Z monthly 0.8 @@ -87347,7 +87536,7 @@ https://www.rfc1437.de/2003/05/08/team-von-jan-ullrich-erneut-ohne-lizenz/ - 2026-03-04T12:55:34.000Z + 2026-03-04T12:55:34.035Z monthly 0.8 @@ -87356,7 +87545,7 @@ https://www.rfc1437.de/2003/05/07/aol-weblogs/ - 2026-03-04T12:55:38.000Z + 2026-03-04T12:55:38.973Z monthly 0.8 @@ -87365,7 +87554,7 @@ https://www.rfc1437.de/2003/05/07/in-den-fuszligstapfen-von-microoft/ - 2026-03-04T12:55:43.000Z + 2026-03-04T12:55:43.041Z monthly 0.8 @@ -87374,7 +87563,7 @@ https://www.rfc1437.de/2003/05/07/mehdorn-friszlig-schienen/ - 2026-03-04T12:55:47.000Z + 2026-03-04T12:55:47.112Z monthly 0.8 @@ -87383,7 +87572,7 @@ https://www.rfc1437.de/2003/05/07/rice-wirft-berlin-und-paris-geiselnahme-vor/ - 2026-03-04T12:55:51.000Z + 2026-03-04T12:55:51.117Z monthly 0.8 @@ -87392,7 +87581,7 @@ https://www.rfc1437.de/2003/05/06/fischer-warnt-gruene-vor-verlust-der-regierngsmcht/ - 2026-03-04T12:55:56.000Z + 2026-03-04T12:55:56.094Z monthly 0.8 @@ -87401,7 +87590,7 @@ https://www.rfc1437.de/2003/05/06/lafontaine-auf-spd-jubilaeumsfeier-unerwuenscht/ - 2026-03-04T12:56:00.000Z + 2026-03-04T12:56:00.968Z monthly 0.8 @@ -87410,7 +87599,7 @@ https://www.rfc1437.de/2003/05/06/michael-arndt/ - 2026-03-04T12:56:05.000Z + 2026-03-04T12:56:05.126Z monthly 0.8 @@ -87419,7 +87608,7 @@ https://www.rfc1437.de/2003/05/06/us-staaten-verbieten-fernseher-und-telefone/ - 2026-03-04T12:56:09.000Z + 2026-03-04T12:56:09.202Z monthly 0.8 @@ -87428,7 +87617,7 @@ https://www.rfc1437.de/2003/05/06/verwechslung/ - 2026-03-04T12:56:13.000Z + 2026-03-04T12:56:13.285Z monthly 0.8 @@ -87437,7 +87626,7 @@ https://www.rfc1437.de/2003/05/05/hackers-and-painters-2/ - 2026-03-04T12:56:17.000Z + 2026-03-04T12:56:17.744Z monthly 0.8 @@ -87446,7 +87635,7 @@ https://www.rfc1437.de/2003/05/05/schleswig-holstein-kippt-umstrittene-diaetenerhhng/ - 2026-03-04T12:56:22.000Z + 2026-03-04T12:56:22.119Z monthly 0.8 @@ -87455,7 +87644,7 @@ https://www.rfc1437.de/2003/05/05/schroeder-zeiten-des-ueberflusses-sind-vorbei/ - 2026-03-04T12:56:26.000Z + 2026-03-04T12:56:26.105Z monthly 0.8 @@ -87464,7 +87653,7 @@ https://www.rfc1437.de/2003/05/04/berlusconi-unterstellt-richtern-putschversuch/ - 2026-03-04T12:56:30.000Z + 2026-03-04T12:56:30.641Z monthly 0.8 @@ -87473,7 +87662,7 @@ https://www.rfc1437.de/2003/05/04/linux-keine-chance-fuer-buffer-overflows/ - 2026-03-04T12:56:34.000Z + 2026-03-04T12:56:34.703Z monthly 0.8 @@ -87482,7 +87671,7 @@ https://www.rfc1437.de/2003/05/04/sonderparteitag-zur-pds-fuehrungskrise/ - 2026-03-04T12:56:40.000Z + 2026-03-04T12:56:40.070Z monthly 0.8 @@ -87491,7 +87680,7 @@ https://www.rfc1437.de/2003/05/04/sorge-ueber-ein-ende-von-rot-gruen/ - 2026-03-04T12:56:44.000Z + 2026-03-04T12:56:44.569Z monthly 0.8 @@ -87500,7 +87689,7 @@ https://www.rfc1437.de/2003/05/04/union-streitet-um-renteneintrittsalter/ - 2026-03-04T12:56:49.000Z + 2026-03-04T12:56:49.527Z monthly 0.8 @@ -87509,7 +87698,7 @@ https://www.rfc1437.de/2003/05/01/sendepause/ - 2026-03-04T12:56:52.000Z + 2026-03-04T12:56:52.694Z monthly 0.8 @@ -87518,7 +87707,7 @@ https://www.rfc1437.de/2003/04/30/80x86-asm-for-aspnet/ - 2026-03-04T12:56:57.000Z + 2026-03-04T12:56:57.564Z monthly 0.8 @@ -87527,7 +87716,7 @@ https://www.rfc1437.de/2003/04/30/geheime-dienste/ - 2026-03-04T12:57:01.000Z + 2026-03-04T12:57:01.129Z monthly 0.8 @@ -87536,7 +87725,7 @@ https://www.rfc1437.de/2003/04/30/und-welcher-feind-der-christlichen-kirche-bist-du/ - 2026-03-04T12:57:05.000Z + 2026-03-04T12:57:05.704Z monthly 0.8 @@ -87545,7 +87734,7 @@ https://www.rfc1437.de/2003/04/30/waldmaeuse-orientieren-sich-wie-haensel-und-gretel/ - 2026-03-04T12:57:10.000Z + 2026-03-04T12:57:10.675Z monthly 0.8 @@ -87554,7 +87743,7 @@ https://www.rfc1437.de/2003/04/29/merz-sozialhilfe-im-extremfall-ganz-streichen/ - 2026-03-04T12:57:14.000Z + 2026-03-04T12:57:14.761Z monthly 0.8 @@ -87563,7 +87752,7 @@ https://www.rfc1437.de/2003/04/29/sco-als-naechstes-sind-red-hat-und-suse-dran/ - 2026-03-04T12:57:20.000Z + 2026-03-04T12:57:20.312Z monthly 0.8 @@ -87572,7 +87761,7 @@ https://www.rfc1437.de/2003/04/28/bericht-neue-linke-terrorgruppe-entsteht/ - 2026-03-04T12:57:24.000Z + 2026-03-04T12:57:24.926Z monthly 0.8 @@ -87581,7 +87770,7 @@ https://www.rfc1437.de/2003/04/28/blair-fuer-alleinige-vormachtstellung-der-usa/ - 2026-03-04T12:57:29.000Z + 2026-03-04T12:57:29.427Z monthly 0.8 @@ -87590,7 +87779,7 @@ https://www.rfc1437.de/2003/04/28/der-patriot-act-und-seine-auswirkungen-in-den-usa/ - 2026-03-04T12:57:33.000Z + 2026-03-04T12:57:33.956Z monthly 0.8 @@ -87599,7 +87788,7 @@ https://www.rfc1437.de/2003/04/28/schemix-a-scheme-in-the-linux-kernel/ - 2026-03-04T12:57:38.000Z + 2026-03-04T12:57:38.902Z monthly 0.8 @@ -87608,7 +87797,7 @@ https://www.rfc1437.de/2003/04/28/studie-jeder-zweite-akzeptrt-kstnpflchtg-ntrntngbt/ - 2026-03-04T12:57:43.000Z + 2026-03-04T12:57:43.812Z monthly 0.8 @@ -87617,7 +87806,7 @@ https://www.rfc1437.de/2003/04/27/more-on-the-mini-pc/ - 2026-03-04T12:57:47.000Z + 2026-03-04T12:57:47.470Z monthly 0.8 @@ -87626,7 +87815,7 @@ https://www.rfc1437.de/2003/04/27/nackte-tatsachen/ - 2026-03-04T12:57:52.000Z + 2026-03-04T12:57:52.029Z monthly 0.8 @@ -87635,7 +87824,7 @@ https://www.rfc1437.de/2003/04/27/pharma-grosshaendler-und-aerzte-unter-betrgsvrdcht/ - 2026-03-04T12:57:56.000Z + 2026-03-04T12:57:56.982Z monthly 0.8 @@ -87644,7 +87833,7 @@ https://www.rfc1437.de/2003/04/27/spammer-ziehen-anti-spam-aktivisten-vor-den-kadi/ - 2026-03-04T12:58:01.000Z + 2026-03-04T12:58:01.178Z monthly 0.8 @@ -87653,7 +87842,7 @@ https://www.rfc1437.de/2003/04/27/terry-jones-ueber-tony-blair/ - 2026-03-04T12:58:05.000Z + 2026-03-04T12:58:05.681Z monthly 0.8 @@ -87662,7 +87851,7 @@ https://www.rfc1437.de/2003/04/26/chicken-mcspam/ - 2026-03-04T12:58:11.000Z + 2026-03-04T12:58:11.099Z monthly 0.8 @@ -87671,7 +87860,7 @@ https://www.rfc1437.de/2003/04/26/kohl-betrieb-als-kanzler-lobbyarbeit/ - 2026-03-04T12:58:15.000Z + 2026-03-04T12:58:15.621Z monthly 0.8 @@ -87680,7 +87869,7 @@ https://www.rfc1437.de/2003/04/26/py-xmlrpc-0883/ - 2026-03-04T12:58:20.000Z + 2026-03-04T12:58:20.771Z monthly 0.8 @@ -87689,7 +87878,7 @@ https://www.rfc1437.de/2003/04/26/pyro-32/ - 2026-03-04T12:58:24.000Z + 2026-03-04T12:58:24.935Z monthly 0.8 @@ -87698,7 +87887,7 @@ https://www.rfc1437.de/2003/04/25/behrens-warnt-vor-intellektuellen-nazis/ - 2026-03-04T12:58:29.000Z + 2026-03-04T12:58:29.957Z monthly 0.8 @@ -87707,7 +87896,7 @@ https://www.rfc1437.de/2003/04/25/gsmgprs-on-an-sd-card/ - 2026-03-04T12:58:33.000Z + 2026-03-04T12:58:33.937Z monthly 0.8 @@ -87716,7 +87905,7 @@ https://www.rfc1437.de/2003/04/25/kos-on-bushs-iraq-lies/ - 2026-03-04T12:58:37.000Z + 2026-03-04T12:58:37.527Z monthly 0.8 @@ -87725,7 +87914,7 @@ https://www.rfc1437.de/2003/04/24/grosse-pointe-blank-guter-film-abr-vn-kmrs-kn-hnng/ - 2026-03-04T12:58:42.000Z + 2026-03-04T12:58:42.013Z monthly 0.8 @@ -87734,7 +87923,7 @@ https://www.rfc1437.de/2003/04/24/heise-goes-east-aber-bitte-schoen-ohne-mitarbeiter/ - 2026-03-04T12:58:47.000Z + 2026-03-04T12:58:47.384Z monthly 0.8 @@ -87743,7 +87932,7 @@ https://www.rfc1437.de/2003/04/24/luminous-landscape-reviews-fuji-s2-pro/ - 2026-03-04T12:58:51.000Z + 2026-03-04T12:58:51.883Z monthly 0.8 @@ -87752,7 +87941,7 @@ https://www.rfc1437.de/2003/04/24/neustart-der-us-atomwaffen-produktion/ - 2026-03-04T12:58:55.000Z + 2026-03-04T12:58:55.449Z monthly 0.8 @@ -87761,7 +87950,7 @@ https://www.rfc1437.de/2003/04/24/the-world-as-a-blog/ - 2026-03-04T12:58:58.000Z + 2026-03-04T12:58:58.609Z monthly 0.8 @@ -87770,7 +87959,7 @@ https://www.rfc1437.de/2003/04/24/weisses-haus-schweigt-zu-schwulen-attacken/ - 2026-03-04T12:59:02.000Z + 2026-03-04T12:59:02.628Z monthly 0.8 @@ -87779,7 +87968,7 @@ https://www.rfc1437.de/2003/04/23/nur-mal-wieder-ein-bischen-eigenwerbung/ - 2026-03-04T12:59:06.000Z + 2026-03-04T12:59:06.615Z monthly 0.8 @@ -87788,7 +87977,7 @@ https://www.rfc1437.de/2003/04/23/openbsd-in-ungnade/ - 2026-03-04T12:59:11.000Z + 2026-03-04T12:59:11.163Z monthly 0.8 @@ -87797,7 +87986,7 @@ https://www.rfc1437.de/2003/04/23/roland-koch-gleicher-lohn-bei-mehr-arbeit/ - 2026-03-04T12:59:16.000Z + 2026-03-04T12:59:16.070Z monthly 0.8 @@ -87806,7 +87995,7 @@ https://www.rfc1437.de/2003/04/23/weblog-hosting/ - 2026-03-04T12:59:20.000Z + 2026-03-04T12:59:20.762Z monthly 0.8 @@ -87815,7 +88004,7 @@ https://www.rfc1437.de/2003/04/22/gruene-urabstimmung-soll-alten-zopf-abschneiden/ - 2026-03-04T12:59:26.000Z + 2026-03-04T12:59:26.300Z monthly 0.8 @@ -87824,7 +88013,7 @@ https://www.rfc1437.de/2003/04/22/politik-mit-opferzahlen/ - 2026-03-04T12:59:30.000Z + 2026-03-04T12:59:30.860Z monthly 0.8 @@ -87833,7 +88022,7 @@ https://www.rfc1437.de/2003/04/22/spanien-will-massiv-gegen-anti-kriegs-protst-vrghn/ - 2026-03-04T12:59:35.000Z + 2026-03-04T12:59:35.385Z monthly 0.8 @@ -87842,7 +88031,7 @@ https://www.rfc1437.de/2003/04/21/children-taken-from-couple-over-breast-feeding-pht/ - 2026-03-04T12:59:39.000Z + 2026-03-04T12:59:39.840Z monthly 0.8 @@ -87851,7 +88040,7 @@ https://www.rfc1437.de/2003/04/21/jan-ullrich-gewinnt-rund-um-koeln/ - 2026-03-04T12:59:44.000Z + 2026-03-04T12:59:44.748Z monthly 0.8 @@ -87860,7 +88049,7 @@ https://www.rfc1437.de/2003/04/21/jazz-saengerin-nina-simone-ist-tot/ - 2026-03-04T12:59:48.000Z + 2026-03-04T12:59:48.799Z monthly 0.8 @@ -87869,7 +88058,7 @@ https://www.rfc1437.de/2003/04/20/der-gravenreuth-report/ - 2026-03-04T13:05:47.000Z + 2026-03-04T13:05:47.701Z monthly 0.8 @@ -87878,7 +88067,7 @@ https://www.rfc1437.de/2003/04/20/die-un-cd-und-die-positionierung-der-wirtschaft/ - 2026-03-04T13:05:50.000Z + 2026-03-04T13:05:50.718Z monthly 0.8 @@ -87887,7 +88076,7 @@ https://www.rfc1437.de/2003/04/20/jutta-dithfurts-serie-uumlber-die-gruumlnen/ - 2026-03-04T13:05:54.000Z + 2026-03-04T13:05:54.386Z monthly 0.8 @@ -87896,7 +88085,7 @@ https://www.rfc1437.de/2003/04/20/no-sex/ - 2026-03-04T13:05:57.000Z + 2026-03-04T13:05:57.717Z monthly 0.8 @@ -87905,7 +88094,7 @@ https://www.rfc1437.de/2003/04/19/fagan-droht-der-bahn-mit-milliardenforderung/ - 2026-03-04T13:06:01.000Z + 2026-03-04T13:06:01.072Z monthly 0.8 @@ -87914,7 +88103,7 @@ https://www.rfc1437.de/2003/04/19/forscher-entdecken-uralte-dns/ - 2026-03-04T13:06:04.000Z + 2026-03-04T13:06:04.397Z monthly 0.8 @@ -87923,7 +88112,7 @@ https://www.rfc1437.de/2003/04/19/mac-os-x-und-darwinports/ - 2026-03-04T13:06:07.000Z + 2026-03-04T13:06:07.750Z monthly 0.8 @@ -87932,7 +88121,7 @@ https://www.rfc1437.de/2003/04/19/spam-zurueckschicken/ - 2026-03-04T13:06:11.000Z + 2026-03-04T13:06:11.086Z monthly 0.8 @@ -87941,7 +88130,7 @@ https://www.rfc1437.de/2003/04/19/stoiber-lobt-schroeder/ - 2026-03-04T13:06:14.000Z + 2026-03-04T13:06:14.085Z monthly 0.8 @@ -87950,7 +88139,7 @@ https://www.rfc1437.de/2003/04/18/aus-der-traum-keine-us-gelder-fuer-openbsd/ - 2026-03-04T13:06:17.000Z + 2026-03-04T13:06:17.445Z monthly 0.8 @@ -87959,7 +88148,7 @@ https://www.rfc1437.de/2003/04/18/biblis-a-wegen-sicherheitsproblemen-abgeschaltet/ - 2026-03-04T13:06:21.000Z + 2026-03-04T13:06:21.132Z monthly 0.8 @@ -87968,7 +88157,7 @@ https://www.rfc1437.de/2003/04/18/der-rollberg/ - 2026-03-04T13:06:24.000Z + 2026-03-04T13:06:24.825Z monthly 0.8 @@ -87977,7 +88166,7 @@ https://www.rfc1437.de/2003/04/18/nbzhlt-wrbng-drch-vrlnkng-dr-w-brng-ch-nn-kmmrzlln/ - 2026-03-04T13:06:28.000Z + 2026-03-04T13:06:28.479Z monthly 0.8 @@ -87986,7 +88175,7 @@ https://www.rfc1437.de/2003/04/18/oel-oder-kultur/ - 2026-03-04T13:06:31.000Z + 2026-03-04T13:06:31.817Z monthly 0.8 @@ -87995,7 +88184,7 @@ https://www.rfc1437.de/2003/04/18/technisches-vom-rollberg/ - 2026-03-04T13:06:35.000Z + 2026-03-04T13:06:35.479Z monthly 0.8 @@ -88004,7 +88193,7 @@ https://www.rfc1437.de/2003/04/18/us-experten-sollen-massenvernichtungswaffen-suchen/ - 2026-03-04T13:06:39.000Z + 2026-03-04T13:06:39.201Z monthly 0.8 @@ -88013,7 +88202,7 @@ https://www.rfc1437.de/2003/04/18/zahnarzt-entwickelt-bohrer-fuumlr-mars-sonde/ - 2026-03-04T13:06:42.000Z + 2026-03-04T13:06:42.866Z monthly 0.8 @@ -88022,7 +88211,7 @@ https://www.rfc1437.de/2003/04/17/heise-gewinnt-gegen-spammer/ - 2026-03-04T13:06:45.000Z + 2026-03-04T13:06:45.558Z monthly 0.8 @@ -88031,7 +88220,7 @@ https://www.rfc1437.de/2003/04/17/interessante-programmiersprache-goo/ - 2026-03-04T13:06:48.000Z + 2026-03-04T13:06:48.930Z monthly 0.8 @@ -88040,7 +88229,7 @@ https://www.rfc1437.de/2003/04/17/spd-linke-warnt-vor-scheitern-der-regierung/ - 2026-03-04T13:06:52.000Z + 2026-03-04T13:06:52.946Z monthly 0.8 @@ -88049,7 +88238,7 @@ https://www.rfc1437.de/2003/04/17/umzug-muensterlandorg-auf-eine-neue-maschine/ - 2026-03-04T13:06:56.000Z + 2026-03-04T13:06:56.339Z monthly 0.8 @@ -88058,7 +88247,7 @@ https://www.rfc1437.de/2003/04/16/mann-starb-bei-waldbrand-in-nottuln/ - 2026-03-04T13:07:00.000Z + 2026-03-04T13:07:00.037Z monthly 0.8 @@ -88067,7 +88256,7 @@ https://www.rfc1437.de/2003/04/15/cnn-mogelt-bei-der-moore-oscar-rede/ - 2026-03-04T13:07:03.000Z + 2026-03-04T13:07:03.478Z monthly 0.8 @@ -88076,7 +88265,7 @@ https://www.rfc1437.de/2003/04/15/ist-freenet-das-aol-der-weblogs/ - 2026-03-04T13:07:07.000Z + 2026-03-04T13:07:07.212Z monthly 0.8 @@ -88085,7 +88274,7 @@ https://www.rfc1437.de/2003/04/15/niedersachsen-will-justiz-privatisieren/ - 2026-03-04T13:07:10.000Z + 2026-03-04T13:07:10.278Z monthly 0.8 @@ -88094,7 +88283,7 @@ https://www.rfc1437.de/2003/04/14/damit-die-affen-erkannt-werden/ - 2026-03-04T13:07:13.000Z + 2026-03-04T13:07:13.706Z monthly 0.8 @@ -88103,7 +88292,7 @@ https://www.rfc1437.de/2003/04/14/explosionsartiger-anstieg-von-birkenpollen/ - 2026-03-04T13:07:16.000Z + 2026-03-04T13:07:16.767Z monthly 0.8 @@ -88112,7 +88301,7 @@ https://www.rfc1437.de/2003/04/14/reformpaket-schroeder-droht-mit-ruecktritt/ - 2026-03-04T13:07:20.000Z + 2026-03-04T13:07:20.273Z monthly 0.8 @@ -88121,7 +88310,7 @@ https://www.rfc1437.de/2003/04/14/safari-public-beta-2-ist-da/ - 2026-03-04T13:07:23.000Z + 2026-03-04T13:07:23.390Z monthly 0.8 @@ -88130,7 +88319,7 @@ https://www.rfc1437.de/2003/04/14/thierse-lafontaine-ist-nicht-mehrheitsfaehig/ - 2026-03-04T13:07:26.000Z + 2026-03-04T13:07:26.481Z monthly 0.8 @@ -88139,7 +88328,7 @@ https://www.rfc1437.de/2003/04/13/bdi-will-arbeitnehmer-vertreter-entmachten/ - 2026-03-04T13:07:30.000Z + 2026-03-04T13:07:30.343Z monthly 0.8 @@ -88148,7 +88337,7 @@ https://www.rfc1437.de/2003/04/13/no-question-some-senior-iraqs-fld-t-syr-rmsfld-sys/ - 2026-03-04T13:07:33.000Z + 2026-03-04T13:07:33.847Z monthly 0.8 @@ -88157,7 +88346,7 @@ https://www.rfc1437.de/2003/04/12/altkanzler-kohl-war-berater-bei-kirch/ - 2026-03-04T13:07:37.000Z + 2026-03-04T13:07:37.334Z monthly 0.8 @@ -88166,7 +88355,7 @@ https://www.rfc1437.de/2003/04/12/bilder-mit-dem-28180-an-der-rts-iii/ - 2026-03-04T13:07:40.000Z + 2026-03-04T13:07:40.830Z monthly 0.8 @@ -88175,7 +88364,7 @@ https://www.rfc1437.de/2003/04/12/cooles-tier-der-woche-hasenmaulfledermaus/ - 2026-03-04T13:07:44.000Z + 2026-03-04T13:07:44.713Z monthly 0.8 @@ -88184,7 +88373,7 @@ https://www.rfc1437.de/2003/04/12/das-genfer-bkmmn-br-dn-schtz-vn-zvlprsnn-n-krgsztn/ - 2026-03-04T13:07:48.000Z + 2026-03-04T13:07:48.653Z monthly 0.8 @@ -88193,7 +88382,7 @@ https://www.rfc1437.de/2003/04/12/fdp-verlangt-von-journalisten-eintrittsgld-b-prttg/ - 2026-03-04T13:07:52.000Z + 2026-03-04T13:07:52.928Z monthly 0.8 @@ -88202,7 +88391,7 @@ https://www.rfc1437.de/2003/04/12/frauenhandel-und-tempelprostitution-in-suedasien/ - 2026-03-04T13:07:57.000Z + 2026-03-04T13:07:57.148Z monthly 0.8 @@ -88211,7 +88400,7 @@ https://www.rfc1437.de/2003/04/12/mehr-mehr/ - 2026-03-04T13:08:01.000Z + 2026-03-04T13:08:01.441Z monthly 0.8 @@ -88229,7 +88418,7 @@ https://www.rfc1437.de/2003/04/12/pik-as-hussein/ - 2026-03-04T13:08:09.000Z + 2026-03-04T13:08:09.153Z monthly 0.8 @@ -88238,7 +88427,7 @@ https://www.rfc1437.de/2003/04/12/schokolade-kann-schmerzen-lindern/ - 2026-03-04T13:08:12.000Z + 2026-03-04T13:08:12.770Z monthly 0.8 @@ -88247,7 +88436,7 @@ https://www.rfc1437.de/2003/04/12/topicexchange-channel-fuer-deutsche-blogs/ - 2026-03-04T13:08:16.000Z + 2026-03-04T13:08:16.919Z monthly 0.8 @@ -88256,7 +88445,7 @@ https://www.rfc1437.de/2003/04/12/was-hat-trackback-mit-dem-historischen-web-zu-tun/ - 2026-03-04T13:08:21.000Z + 2026-03-04T13:08:21.392Z monthly 0.8 @@ -88265,7 +88454,7 @@ https://www.rfc1437.de/2003/04/11/currywurst-kann-maeuse-suechtig-machen/ - 2026-03-04T13:08:25.000Z + 2026-03-04T13:08:25.274Z monthly 0.8 @@ -88274,7 +88463,7 @@ https://www.rfc1437.de/2003/04/11/home-is-where-cvsroot-is/ - 2026-03-04T13:08:29.000Z + 2026-03-04T13:08:29.699Z monthly 0.8 @@ -88283,7 +88472,7 @@ https://www.rfc1437.de/2003/04/11/the-save-farscape-library-project/ - 2026-03-04T13:08:33.000Z + 2026-03-04T13:08:33.605Z monthly 0.8 @@ -88292,7 +88481,7 @@ https://www.rfc1437.de/2003/04/10/buero-software-zum-nulltarif/ - 2026-03-04T13:08:37.000Z + 2026-03-04T13:08:37.137Z monthly 0.8 @@ -88301,7 +88490,7 @@ https://www.rfc1437.de/2003/04/10/christliche-fundamentalisten-auf-dem-vormarsch/ - 2026-03-04T13:08:41.000Z + 2026-03-04T13:08:41.630Z monthly 0.8 @@ -88310,7 +88499,7 @@ https://www.rfc1437.de/2003/04/10/jan-ullrich-gut-in-form/ - 2026-03-04T13:08:46.000Z + 2026-03-04T13:08:46.197Z monthly 0.8 @@ -88319,7 +88508,7 @@ https://www.rfc1437.de/2003/04/10/neue-risikobewertung-erforderlich/ - 2026-03-04T13:08:50.000Z + 2026-03-04T13:08:50.281Z monthly 0.8 @@ -88328,7 +88517,7 @@ https://www.rfc1437.de/2003/04/10/paul-graham-spekuliert-br-prgrmmrsprchn-n-100-jhrn/ - 2026-03-04T13:08:54.000Z + 2026-03-04T13:08:54.379Z monthly 0.8 @@ -88337,7 +88526,7 @@ https://www.rfc1437.de/2003/04/10/pic-fruehling-das-ich-nicht-lache/ - 2026-03-04T13:08:59.000Z + 2026-03-04T13:08:59.039Z monthly 0.8 @@ -88346,7 +88535,7 @@ https://www.rfc1437.de/2003/04/10/pic-ok-das-hat-mich-aber-wieder-versoehnt/ - 2026-03-04T13:09:04.000Z + 2026-03-04T13:09:04.105Z monthly 0.8 @@ -88355,7 +88544,7 @@ https://www.rfc1437.de/2003/04/09/seehofer-wirft-unionsspitze-missmanagement-vor/ - 2026-03-04T13:09:09.000Z + 2026-03-04T13:09:09.264Z monthly 0.8 @@ -88364,7 +88553,7 @@ https://www.rfc1437.de/2003/04/09/weltgroesste-digitalkamera-liefert-erste-bilder/ - 2026-03-04T13:09:13.000Z + 2026-03-04T13:09:13.405Z monthly 0.8 @@ -88373,7 +88562,7 @@ https://www.rfc1437.de/2003/04/09/weltweit-duemmste-sicherheitsmassnahmen-geehrt/ - 2026-03-04T13:09:18.000Z + 2026-03-04T13:09:18.001Z monthly 0.8 @@ -88382,7 +88571,7 @@ https://www.rfc1437.de/2003/04/08/ard-team-beweist-einsatz-von-uranhaltiger-munition/ - 2026-03-04T13:09:22.000Z + 2026-03-04T13:09:22.933Z monthly 0.8 @@ -88391,7 +88580,7 @@ https://www.rfc1437.de/2003/04/08/contax-tvs-review-at-steves-digicams/ - 2026-03-04T13:09:27.000Z + 2026-03-04T13:09:27.445Z monthly 0.8 @@ -88400,7 +88589,7 @@ https://www.rfc1437.de/2003/04/08/island-will-wieder-wale-jagen/ - 2026-03-04T13:09:31.000Z + 2026-03-04T13:09:31.947Z monthly 0.8 @@ -88409,7 +88598,7 @@ https://www.rfc1437.de/2003/04/08/john-c-dvorak-is-a-blithering-idiot/ - 2026-03-04T13:09:37.000Z + 2026-03-04T13:09:37.021Z monthly 0.8 @@ -88418,7 +88607,7 @@ https://www.rfc1437.de/2003/04/08/leerer-palast/ - 2026-03-04T13:09:42.000Z + 2026-03-04T13:09:42.092Z monthly 0.8 @@ -88427,7 +88616,7 @@ https://www.rfc1437.de/2003/04/08/medien-hotel-getroffen-mehrere-journalisten-vrltzt/ - 2026-03-04T13:09:47.000Z + 2026-03-04T13:09:47.025Z monthly 0.8 @@ -88436,7 +88625,7 @@ https://www.rfc1437.de/2003/04/08/microsofts-leitfaden-gegen-linux/ - 2026-03-04T13:09:51.000Z + 2026-03-04T13:09:51.917Z monthly 0.8 @@ -88445,7 +88634,7 @@ https://www.rfc1437.de/2003/04/08/minolta-announce-dimage-scan-elite-5400/ - 2026-03-04T13:09:56.000Z + 2026-03-04T13:09:56.858Z monthly 0.8 @@ -88454,7 +88643,7 @@ https://www.rfc1437.de/2003/04/08/sensationsfund-steinzeitdolch-am-bodensee-ausggrbn/ - 2026-03-04T13:10:01.000Z + 2026-03-04T13:10:01.720Z monthly 0.8 @@ -88463,7 +88652,7 @@ https://www.rfc1437.de/2003/04/08/us-verteidigungsministerium-unterstuetzt-openbsd/ - 2026-03-04T13:10:06.000Z + 2026-03-04T13:10:06.220Z monthly 0.8 @@ -88472,7 +88661,7 @@ https://www.rfc1437.de/2003/04/06/bbc-us-bomben-auf-eigene-truppen/ - 2026-03-04T13:10:11.000Z + 2026-03-04T13:10:11.064Z monthly 0.8 @@ -88481,7 +88670,7 @@ https://www.rfc1437.de/2003/04/06/merkel-einen-monat-kein-geld-fuer-arbeitslose/ - 2026-03-04T13:10:15.000Z + 2026-03-04T13:10:15.478Z monthly 0.8 @@ -88490,7 +88679,7 @@ https://www.rfc1437.de/2003/04/06/openxp-from-shareware-to-free-software/ - 2026-03-04T13:10:20.000Z + 2026-03-04T13:10:20.414Z monthly 0.8 @@ -88499,7 +88688,7 @@ https://www.rfc1437.de/2003/04/06/schlaegt-dem-gorilla-bald-die-letzte-stunde/ - 2026-03-04T13:10:24.000Z + 2026-03-04T13:10:24.456Z monthly 0.8 @@ -88508,7 +88697,7 @@ https://www.rfc1437.de/2003/04/05/72-prozent-fuer-ruettgers/ - 2026-03-04T13:10:29.000Z + 2026-03-04T13:10:29.240Z monthly 0.8 @@ -88517,7 +88706,7 @@ https://www.rfc1437.de/2003/04/05/georg-w-bushs-morgenlektuere/ - 2026-03-04T13:10:33.000Z + 2026-03-04T13:10:33.728Z monthly 0.8 @@ -88526,7 +88715,7 @@ https://www.rfc1437.de/2003/04/05/george-lakoff-metaphor-and-war-again/ - 2026-03-04T13:10:37.000Z + 2026-03-04T13:10:37.607Z monthly 0.8 @@ -88535,7 +88724,7 @@ https://www.rfc1437.de/2003/04/05/politikersprache-in-kriegszeiten/ - 2026-03-04T13:10:42.000Z + 2026-03-04T13:10:42.118Z monthly 0.8 @@ -88544,7 +88733,7 @@ https://www.rfc1437.de/2003/04/04/anti-war-slogan-coined-reprpsd-nd-gglwshd-n-42-dys/ - 2026-03-04T13:10:46.000Z + 2026-03-04T13:10:46.487Z monthly 0.8 @@ -88553,7 +88742,7 @@ https://www.rfc1437.de/2003/04/04/riesiger-kalmar-vor-der-antarktis-gefangen/ - 2026-03-04T13:10:50.000Z + 2026-03-04T13:10:50.534Z monthly 0.8 @@ -88562,7 +88751,7 @@ https://www.rfc1437.de/2003/04/03/aehhhh/ - 2026-03-04T13:10:54.000Z + 2026-03-04T13:10:54.524Z monthly 0.8 @@ -88571,7 +88760,7 @@ https://www.rfc1437.de/2003/04/03/elefanten-koennen-ganz-schoen-rennen/ - 2026-03-04T13:10:58.000Z + 2026-03-04T13:10:58.884Z monthly 0.8 @@ -88580,7 +88769,7 @@ https://www.rfc1437.de/2003/04/03/microsoft-patent-on-probabilistic-classiffiers/ - 2026-03-04T13:11:03.000Z + 2026-03-04T13:11:03.245Z monthly 0.8 @@ -88589,7 +88778,7 @@ https://www.rfc1437.de/2003/04/03/olympus-stylus-400300-digital-reviews/ - 2026-03-04T13:11:07.000Z + 2026-03-04T13:11:07.120Z monthly 0.8 @@ -88598,7 +88787,7 @@ https://www.rfc1437.de/2003/04/03/peter-arnett-and-treason/ - 2026-03-04T13:11:11.000Z + 2026-03-04T13:11:11.509Z monthly 0.8 @@ -88607,7 +88796,7 @@ https://www.rfc1437.de/2003/04/03/photoshop-im-krieg/ - 2026-03-04T13:11:15.000Z + 2026-03-04T13:11:15.445Z monthly 0.8 @@ -88616,7 +88805,7 @@ https://www.rfc1437.de/2003/04/02/belgien-entschaerft-voelkermord-gesetz/ - 2026-03-04T13:11:19.000Z + 2026-03-04T13:11:19.389Z monthly 0.8 @@ -88625,7 +88814,7 @@ https://www.rfc1437.de/2003/04/02/betriebe-sollen-leichter-ausbilden-koennen/ - 2026-03-04T13:11:23.000Z + 2026-03-04T13:11:23.916Z monthly 0.8 @@ -88634,7 +88823,7 @@ https://www.rfc1437.de/2003/04/02/kieler-landtag-erhoeht-diaeten-um-fast-50-prozent/ - 2026-03-04T13:11:28.000Z + 2026-03-04T13:11:28.735Z monthly 0.8 @@ -88643,7 +88832,7 @@ https://www.rfc1437.de/2003/04/02/moellemann-bush-gehoert-vor-ein-tribunal/ - 2026-03-04T13:11:33.000Z + 2026-03-04T13:11:33.581Z monthly 0.8 @@ -88652,7 +88841,7 @@ https://www.rfc1437.de/2003/04/02/rot-gruen-einigt-sich-auf-neuen-terroristenpargrfn/ - 2026-03-04T13:11:37.000Z + 2026-03-04T13:11:37.468Z monthly 0.8 @@ -88661,7 +88850,7 @@ https://www.rfc1437.de/2003/04/02/sony-ordered-to-pay-25m-in-patent-claim/ - 2026-03-04T13:11:41.000Z + 2026-03-04T13:11:41.392Z monthly 0.8 @@ -88670,7 +88859,7 @@ https://www.rfc1437.de/2003/04/01/hat-merkel-was-mit-merken-zu-tun/ - 2026-03-04T13:11:45.000Z + 2026-03-04T13:11:45.307Z monthly 0.8 @@ -88679,7 +88868,7 @@ https://www.rfc1437.de/2003/04/01/neue-quicktime-version/ - 2026-03-04T13:11:50.000Z + 2026-03-04T13:11:50.191Z monthly 0.8 @@ -88688,7 +88877,7 @@ https://www.rfc1437.de/2003/04/01/newcode-a-secure-pl/ - 2026-03-04T13:11:54.000Z + 2026-03-04T13:11:54.089Z monthly 0.8 @@ -88697,7 +88886,7 @@ https://www.rfc1437.de/2003/04/01/polaroid-600-se-komplettiert/ - 2026-03-04T13:11:58.000Z + 2026-03-04T13:11:58.001Z monthly 0.8 @@ -88706,7 +88895,7 @@ https://www.rfc1437.de/2003/04/01/serienproduktion-fuer-ibms-universal-business-dptr/ - 2026-03-04T13:12:01.000Z + 2026-03-04T13:12:01.943Z monthly 0.8 @@ -88715,7 +88904,7 @@ https://www.rfc1437.de/2003/04/01/us-sonderberater-schmiedet-nachkriegsplaene/ - 2026-03-04T13:12:06.000Z + 2026-03-04T13:12:06.768Z monthly 0.8 @@ -88724,7 +88913,7 @@ https://www.rfc1437.de/2003/04/01/usa-ruegen-behandlung-religiosr-mndrhtn-n-dtschlnd/ - 2026-03-04T13:12:11.000Z + 2026-03-04T13:12:11.243Z monthly 0.8 @@ -88733,7 +88922,7 @@ https://www.rfc1437.de/2003/04/01/whitespace/ - 2026-03-04T13:12:14.000Z + 2026-03-04T13:12:14.773Z monthly 0.8 @@ -88742,7 +88931,7 @@ https://www.rfc1437.de/2003/04/01/yahoo-store-switches-back-to-lisp/ - 2026-03-04T13:12:18.000Z + 2026-03-04T13:12:18.255Z monthly 0.8 @@ -88751,7 +88940,7 @@ https://www.rfc1437.de/2003/03/31/die-us-armee-und-die-presse/ - 2026-03-04T13:12:22.000Z + 2026-03-04T13:12:22.502Z monthly 0.8 @@ -88760,7 +88949,7 @@ https://www.rfc1437.de/2003/03/31/maher-mike-hawash/ - 2026-03-04T13:12:26.000Z + 2026-03-04T13:12:26.010Z monthly 0.8 @@ -88769,7 +88958,7 @@ https://www.rfc1437.de/2003/03/31/peter-arnett-faellt-in-ungnade/ - 2026-03-04T13:12:29.000Z + 2026-03-04T13:12:29.976Z monthly 0.8 @@ -88778,7 +88967,7 @@ https://www.rfc1437.de/2003/03/31/was-man-nicht-mit-debian-linux-machen-sollte/ - 2026-03-04T13:12:35.000Z + 2026-03-04T13:12:35.310Z monthly 0.8 @@ -88787,7 +88976,7 @@ https://www.rfc1437.de/2003/03/30/kritik-an-rumsfeld-aus-eigenen-reihen/ - 2026-03-04T13:12:39.000Z + 2026-03-04T13:12:39.240Z monthly 0.8 @@ -88796,7 +88985,7 @@ https://www.rfc1437.de/2003/03/29/explosion-said-to-be-from-missile-empty-mall-n-kwt/ - 2026-03-04T13:12:44.000Z + 2026-03-04T13:12:44.070Z monthly 0.8 @@ -88805,7 +88994,7 @@ https://www.rfc1437.de/2003/03/29/httpwwwtacitusorgarchives000572html/ - 2026-03-04T13:12:48.000Z + 2026-03-04T13:12:48.927Z monthly 0.8 @@ -88814,7 +89003,7 @@ https://www.rfc1437.de/2003/03/29/moellemann-erneut-vor-gericht/ - 2026-03-04T13:12:53.000Z + 2026-03-04T13:12:53.716Z monthly 0.8 @@ -88823,7 +89012,7 @@ https://www.rfc1437.de/2003/03/29/robb-on-the-bush-doctrine/ - 2026-03-04T13:12:57.000Z + 2026-03-04T13:12:57.657Z monthly 0.8 @@ -88832,7 +89021,7 @@ https://www.rfc1437.de/2003/03/29/usa-werfen-syrien-unterstuetzung-des-irak-vor/ - 2026-03-04T13:13:01.000Z + 2026-03-04T13:13:01.579Z monthly 0.8 @@ -88841,7 +89030,7 @@ https://www.rfc1437.de/2003/03/29/wegen-irak-krieg-arzt-behandelt-keine-amerikaner/ - 2026-03-04T13:13:06.000Z + 2026-03-04T13:13:06.062Z monthly 0.8 @@ -88850,7 +89039,7 @@ https://www.rfc1437.de/2003/03/28/alles-ist-relativ/ - 2026-03-04T13:13:10.000Z + 2026-03-04T13:13:10.480Z monthly 0.8 @@ -88859,7 +89048,7 @@ https://www.rfc1437.de/2003/03/28/java-oder-wie-es-dazu-kam/ - 2026-03-04T13:13:14.000Z + 2026-03-04T13:13:14.024Z monthly 0.8 @@ -88868,7 +89057,7 @@ https://www.rfc1437.de/2003/03/28/krankenkasse-schwaerzt-aerzte-bei-firmen-an/ - 2026-03-04T13:13:18.000Z + 2026-03-04T13:13:18.483Z monthly 0.8 @@ -88877,7 +89066,7 @@ https://www.rfc1437.de/2003/03/28/merkel-will-kinderlosen-die-rente-kuerzen/ - 2026-03-04T13:13:23.000Z + 2026-03-04T13:13:23.109Z monthly 0.8 @@ -88886,7 +89075,7 @@ https://www.rfc1437.de/2003/03/28/meteorit-schlug-in-haus-ein/ - 2026-03-04T13:13:27.000Z + 2026-03-04T13:13:27.505Z monthly 0.8 @@ -88895,7 +89084,7 @@ https://www.rfc1437.de/2003/03/28/patriotische-idioten-unterbrechn-msm-scrty-mlnglst/ - 2026-03-04T13:13:31.000Z + 2026-03-04T13:13:31.437Z monthly 0.8 @@ -88904,7 +89093,7 @@ https://www.rfc1437.de/2003/03/28/rau-nicht-auf-us-linie-eingehen/ - 2026-03-04T13:13:35.000Z + 2026-03-04T13:13:35.488Z monthly 0.8 @@ -88913,7 +89102,7 @@ https://www.rfc1437.de/2003/03/28/schlangenfraszlig/ - 2026-03-04T13:13:39.000Z + 2026-03-04T13:13:39.465Z monthly 0.8 @@ -88922,7 +89111,7 @@ https://www.rfc1437.de/2003/03/28/stopped-making-sense/ - 2026-03-04T13:13:43.000Z + 2026-03-04T13:13:43.890Z monthly 0.8 @@ -88931,7 +89120,7 @@ https://www.rfc1437.de/2003/03/28/us-parlament-fordert-gebetstag-fuer-die-nation/ - 2026-03-04T13:13:48.000Z + 2026-03-04T13:13:48.300Z monthly 0.8 @@ -88940,7 +89129,7 @@ https://www.rfc1437.de/2003/03/27/eu-schweroel-nicht-mehr-in-einhuellentankern/ - 2026-03-04T13:13:52.000Z + 2026-03-04T13:13:52.673Z monthly 0.8 @@ -88949,7 +89138,7 @@ https://www.rfc1437.de/2003/03/27/france-boycott-to-extend-to-cellphone-standards/ - 2026-03-04T13:13:56.000Z + 2026-03-04T13:13:56.706Z monthly 0.8 @@ -88958,7 +89147,7 @@ https://www.rfc1437.de/2003/03/27/kein-patch-fuer-rpc-sicherheitsloch-bei-windows-nt/ - 2026-03-04T13:14:01.000Z + 2026-03-04T13:14:01.955Z monthly 0.8 @@ -88967,7 +89156,7 @@ https://www.rfc1437.de/2003/03/27/lispworks-beta-for-os-x/ - 2026-03-04T13:14:06.000Z + 2026-03-04T13:14:06.454Z monthly 0.8 @@ -88976,7 +89165,7 @@ https://www.rfc1437.de/2003/03/27/mal-wieder-was-in-eigener-sache-trackback/ - 2026-03-04T13:14:10.000Z + 2026-03-04T13:14:10.059Z monthly 0.8 @@ -88985,7 +89174,7 @@ https://www.rfc1437.de/2003/03/27/panorama-rules-2/ - 2026-03-04T13:14:14.000Z + 2026-03-04T13:14:14.483Z monthly 0.8 @@ -88994,7 +89183,7 @@ https://www.rfc1437.de/2003/03/27/to-cool-for-secure-code/ - 2026-03-04T13:14:18.000Z + 2026-03-04T13:14:18.899Z monthly 0.8 @@ -89003,7 +89192,7 @@ https://www.rfc1437.de/2003/03/27/wirbel-um-website-von-al-jazeera/ - 2026-03-04T13:14:23.000Z + 2026-03-04T13:14:23.647Z monthly 0.8 @@ -89012,7 +89201,7 @@ https://www.rfc1437.de/2003/03/26/esser-kann-auf-schmerzensgeld-hoffen/ - 2026-03-04T13:14:28.000Z + 2026-03-04T13:14:28.045Z monthly 0.8 @@ -89021,7 +89210,7 @@ https://www.rfc1437.de/2003/03/26/klauen-klauen-klauen/ - 2026-03-04T13:14:32.000Z + 2026-03-04T13:14:32.473Z monthly 0.8 @@ -89030,7 +89219,7 @@ https://www.rfc1437.de/2003/03/26/mcdonalds-rubbellos-ist-sittenwidrig/ - 2026-03-04T13:14:36.000Z + 2026-03-04T13:14:36.900Z monthly 0.8 @@ -89039,7 +89228,7 @@ https://www.rfc1437.de/2003/03/26/perl-python/ - 2026-03-04T13:14:41.000Z + 2026-03-04T13:14:41.512Z monthly 0.8 @@ -89048,7 +89237,7 @@ https://www.rfc1437.de/2003/03/26/schroeder-will-bundeswehr-staerken/ - 2026-03-04T13:14:46.000Z + 2026-03-04T13:14:46.398Z monthly 0.8 @@ -89057,7 +89246,7 @@ https://www.rfc1437.de/2003/03/26/seilschaften/ - 2026-03-04T13:14:50.000Z + 2026-03-04T13:14:50.397Z monthly 0.8 @@ -89066,7 +89255,7 @@ https://www.rfc1437.de/2003/03/26/soksoksoksok/ - 2026-03-04T13:14:54.000Z + 2026-03-04T13:14:54.933Z monthly 0.8 @@ -89075,7 +89264,7 @@ https://www.rfc1437.de/2003/03/25/britische-sender-verbannen-duestere-songs/ - 2026-03-04T13:14:59.000Z + 2026-03-04T13:14:59.771Z monthly 0.8 @@ -89084,7 +89273,7 @@ https://www.rfc1437.de/2003/03/25/das-letzte-lied-der-sirenen/ - 2026-03-04T13:15:04.000Z + 2026-03-04T13:15:04.744Z monthly 0.8 @@ -89093,7 +89282,7 @@ https://www.rfc1437.de/2003/03/25/kritik-an-polizeieinsatz-gegen-schuelerdemo/ - 2026-03-04T13:15:09.000Z + 2026-03-04T13:15:09.114Z monthly 0.8 @@ -89102,7 +89291,7 @@ https://www.rfc1437.de/2003/03/25/neue-kaeferfamilie/ - 2026-03-04T13:15:13.000Z + 2026-03-04T13:15:13.501Z monthly 0.8 @@ -89111,7 +89300,7 @@ https://www.rfc1437.de/2003/03/24/artifacting/ - 2026-03-04T13:15:17.000Z + 2026-03-04T13:15:17.534Z monthly 0.8 @@ -89120,7 +89309,7 @@ https://www.rfc1437.de/2003/03/24/cdu-vermeidet-eindeutige-position-zu-irak-krieg/ - 2026-03-04T13:15:21.000Z + 2026-03-04T13:15:21.851Z monthly 0.8 @@ -89129,7 +89318,7 @@ https://www.rfc1437.de/2003/03/24/dank-sei-gott-fuer-den-tod-der-un/ - 2026-03-04T13:15:25.000Z + 2026-03-04T13:15:25.796Z monthly 0.8 @@ -89138,7 +89327,7 @@ https://www.rfc1437.de/2003/03/24/finally-full-review-of-kodak-dcs-pro-14n/ - 2026-03-04T13:15:29.000Z + 2026-03-04T13:15:29.792Z monthly 0.8 @@ -89147,7 +89336,7 @@ https://www.rfc1437.de/2003/03/24/its-krieg-baby/ - 2026-03-04T13:15:34.000Z + 2026-03-04T13:15:34.286Z monthly 0.8 @@ -89156,7 +89345,7 @@ https://www.rfc1437.de/2003/03/24/monday-24-mrch-xml-rpc-dd-pntr-t-xml-rpc-fr-pnmcl/ - 2026-03-04T13:15:38.000Z + 2026-03-04T13:15:38.688Z monthly 0.8 @@ -89165,7 +89354,7 @@ https://www.rfc1437.de/2003/03/24/moore-blasts-bush/ - 2026-03-04T13:15:44.000Z + 2026-03-04T13:15:44.044Z monthly 0.8 @@ -89174,7 +89363,7 @@ https://www.rfc1437.de/2003/03/23/britische-reporter-legnd-vrmtlch-vn-s-mrns-rschssn/ - 2026-03-04T13:15:48.000Z + 2026-03-04T13:15:48.773Z monthly 0.8 @@ -89183,7 +89372,7 @@ https://www.rfc1437.de/2003/03/23/die-vertreibung-der-tiere-aus-dem-himmelreich/ - 2026-03-04T13:15:54.000Z + 2026-03-04T13:15:54.709Z monthly 0.8 @@ -89192,7 +89381,7 @@ https://www.rfc1437.de/2003/03/23/intelligente-bomben/ - 2026-03-04T13:15:58.000Z + 2026-03-04T13:15:58.381Z monthly 0.8 @@ -89201,7 +89390,7 @@ https://www.rfc1437.de/2003/03/23/kommentar-der-erste-gefaehrliche-linux-virus-kommt/ - 2026-03-04T13:16:01.000Z + 2026-03-04T13:16:01.780Z monthly 0.8 @@ -89210,7 +89399,7 @@ https://www.rfc1437.de/2003/03/23/pic-die-tuckesburg/ - 2026-03-04T13:16:05.000Z + 2026-03-04T13:16:05.836Z monthly 0.8 @@ -89219,7 +89408,7 @@ https://www.rfc1437.de/2003/03/23/the-future-of-xfree86/ - 2026-03-04T13:16:09.000Z + 2026-03-04T13:16:09.850Z monthly 0.8 @@ -89228,7 +89417,7 @@ https://www.rfc1437.de/2003/03/23/zweierlei-mass/ - 2026-03-04T13:16:13.000Z + 2026-03-04T13:16:13.976Z monthly 0.8 @@ -89237,7 +89426,7 @@ https://www.rfc1437.de/2003/03/22/bruhaha/ - 2026-03-04T13:16:18.000Z + 2026-03-04T13:16:18.017Z monthly 0.8 @@ -89246,7 +89435,7 @@ https://www.rfc1437.de/2003/03/22/csu-vorstand-einig-ueber-sozialrefomen/ - 2026-03-04T13:16:23.000Z + 2026-03-04T13:16:23.978Z monthly 0.8 @@ -89255,7 +89444,7 @@ https://www.rfc1437.de/2003/03/22/leben-ohne-microoft/ - 2026-03-04T13:16:28.000Z + 2026-03-04T13:16:28.564Z monthly 0.8 @@ -89264,7 +89453,7 @@ https://www.rfc1437.de/2003/03/22/lmns-lndscp-ht-nn-krzn-vrglchstst-cnn-1ds-ggn-kdk/ - 2026-03-04T13:16:33.000Z + 2026-03-04T13:16:33.031Z monthly 0.8 @@ -89273,7 +89462,7 @@ https://www.rfc1437.de/2003/03/22/siebenmeilenstiefel-mit-verbrennungsmotor/ - 2026-03-04T13:16:37.000Z + 2026-03-04T13:16:37.582Z monthly 0.8 @@ -89282,7 +89471,7 @@ https://www.rfc1437.de/2003/03/22/un-cds-nein-danke/ - 2026-03-04T13:16:41.000Z + 2026-03-04T13:16:41.512Z monthly 0.8 @@ -89291,7 +89480,7 @@ https://www.rfc1437.de/2003/03/22/weblog-artikel/ - 2026-03-04T13:16:46.000Z + 2026-03-04T13:16:46.948Z monthly 0.8 @@ -89300,7 +89489,7 @@ https://www.rfc1437.de/2003/03/21/comparing-bush-to-hitler/ - 2026-03-04T13:16:50.000Z + 2026-03-04T13:16:50.551Z monthly 0.8 @@ -89309,7 +89498,7 @@ https://www.rfc1437.de/2003/03/21/kulturschaetze-im-irak-bedroht/ - 2026-03-04T13:16:55.000Z + 2026-03-04T13:16:55.614Z monthly 0.8 @@ -89318,7 +89507,7 @@ https://www.rfc1437.de/2003/03/21/mitschweigen-fuer-den-frieden/ - 2026-03-04T13:17:00.000Z + 2026-03-04T13:17:00.616Z monthly 0.8 @@ -89327,7 +89516,7 @@ https://www.rfc1437.de/2003/03/20/brief-von-moore-an-bush/ - 2026-03-04T13:17:04.000Z + 2026-03-04T13:17:04.756Z monthly 0.8 @@ -89336,7 +89525,7 @@ https://www.rfc1437.de/2003/03/20/byrd-i-weep-for-my-country/ - 2026-03-04T13:17:09.000Z + 2026-03-04T13:17:09.348Z monthly 0.8 @@ -89345,7 +89534,7 @@ https://www.rfc1437.de/2003/03/20/herta-for-praesident/ - 2026-03-04T13:17:13.000Z + 2026-03-04T13:17:13.469Z monthly 0.8 @@ -89354,7 +89543,7 @@ https://www.rfc1437.de/2003/03/20/schuelerdemos-mit-nachsitzen/ - 2026-03-04T13:17:18.000Z + 2026-03-04T13:17:18.121Z monthly 0.8 @@ -89363,7 +89552,7 @@ https://www.rfc1437.de/2003/03/20/streit-um-ueberflugrechte-fuer-us-streitkraefte/ - 2026-03-04T13:17:23.000Z + 2026-03-04T13:17:23.037Z monthly 0.8 @@ -89372,7 +89561,7 @@ https://www.rfc1437.de/2003/03/20/und-gleich-noch-ein-gedicht/ - 2026-03-04T13:17:27.000Z + 2026-03-04T13:17:27.756Z monthly 0.8 @@ -89381,7 +89570,7 @@ https://www.rfc1437.de/2003/03/20/und-schon-wieder/ - 2026-03-04T13:17:32.000Z + 2026-03-04T13:17:32.326Z monthly 0.8 @@ -89390,7 +89579,7 @@ https://www.rfc1437.de/2003/03/19/behaarte-alpenrose-mit-froschgen/ - 2026-03-04T13:17:36.000Z + 2026-03-04T13:17:36.949Z monthly 0.8 @@ -89399,7 +89588,7 @@ https://www.rfc1437.de/2003/03/19/juristische-schlappe-fuer-0190-inkasso-der-telekom/ - 2026-03-04T13:17:41.000Z + 2026-03-04T13:17:41.590Z monthly 0.8 @@ -89408,7 +89597,7 @@ https://www.rfc1437.de/2003/03/19/lauschangriff-auf-eu-bueros/ - 2026-03-04T13:17:46.000Z + 2026-03-04T13:17:46.136Z monthly 0.8 @@ -89417,7 +89606,7 @@ https://www.rfc1437.de/2003/03/19/python-desktop-server-0417/ - 2026-03-04T13:17:49.000Z + 2026-03-04T13:17:49.756Z monthly 0.8 @@ -89426,7 +89615,7 @@ https://www.rfc1437.de/2003/03/19/seehofer-droht-im-unionsstreit-mit-ruecktritt/ - 2026-03-04T13:17:54.000Z + 2026-03-04T13:17:54.957Z monthly 0.8 @@ -89435,7 +89624,7 @@ https://www.rfc1437.de/2003/03/18/clement-plant-drakonische-strafen-fuer-arbeitslose/ - 2026-03-04T13:17:59.000Z + 2026-03-04T13:17:59.555Z monthly 0.8 @@ -89444,7 +89633,7 @@ https://www.rfc1437.de/2003/03/18/landgericht-spam-nicht-unbedingt-rechtswidrig/ - 2026-03-04T13:18:04.000Z + 2026-03-04T13:18:04.620Z monthly 0.8 @@ -89453,7 +89642,7 @@ https://www.rfc1437.de/2003/03/18/mac-user-against-war/ - 2026-03-04T13:18:09.000Z + 2026-03-04T13:18:09.122Z monthly 0.8 @@ -89462,7 +89651,7 @@ https://www.rfc1437.de/2003/03/18/npd-verbot-gescheitert/ - 2026-03-04T13:18:14.000Z + 2026-03-04T13:18:14.142Z monthly 0.8 @@ -89471,7 +89660,7 @@ https://www.rfc1437.de/2003/03/18/ruecktrittsrede-von-cook/ - 2026-03-04T13:18:18.000Z + 2026-03-04T13:18:18.191Z monthly 0.8 @@ -89480,7 +89669,7 @@ https://www.rfc1437.de/2003/03/18/screamer/ - 2026-03-04T13:18:22.000Z + 2026-03-04T13:18:22.068Z monthly 0.8 @@ -89489,7 +89678,7 @@ https://www.rfc1437.de/2003/03/18/trusted-debian-09/ - 2026-03-07T21:18:44.000Z + 2026-03-07T21:18:44.303Z monthly 0.8 @@ -89498,7 +89687,7 @@ https://www.rfc1437.de/2003/03/18/web-demonstration-gegen-den-krieg/ - 2026-03-04T13:18:32.000Z + 2026-03-04T13:18:32.131Z monthly 0.8 @@ -89507,7 +89696,7 @@ https://www.rfc1437.de/2003/03/17/may-the-best-team-lose/ - 2026-03-04T13:18:37.000Z + 2026-03-04T13:18:37.035Z monthly 0.8 @@ -89516,7 +89705,7 @@ https://www.rfc1437.de/2003/03/17/meyer-rueffelt-stoiber/ - 2026-03-04T13:18:41.000Z + 2026-03-04T13:18:41.926Z monthly 0.8 @@ -89525,7 +89714,7 @@ https://www.rfc1437.de/2003/03/17/moellemann-gibt-parteibuch-zurueck/ - 2026-03-04T13:18:46.000Z + 2026-03-04T13:18:46.880Z monthly 0.8 @@ -89534,7 +89723,7 @@ https://www.rfc1437.de/2003/03/16/virtuelle-sternwarte-entdeckt-braunen-zwerg/ - 2026-03-04T13:18:51.000Z + 2026-03-04T13:18:51.321Z monthly 0.8 @@ -89543,7 +89732,7 @@ https://www.rfc1437.de/2003/03/15/falschmeldung/ - 2026-03-04T13:18:55.000Z + 2026-03-04T13:18:55.334Z monthly 0.8 @@ -89552,7 +89741,7 @@ https://www.rfc1437.de/2003/03/15/krieg-dem-krieg/ - 2026-03-04T13:19:00.000Z + 2026-03-04T13:19:00.939Z monthly 0.8 @@ -89570,7 +89759,7 @@ https://www.rfc1437.de/2003/03/15/schroeders-rede-ein-gut-getarnter-offenbarungseid/ - 2026-03-04T13:19:08.000Z + 2026-03-04T13:19:08.726Z monthly 0.8 @@ -89579,7 +89768,7 @@ https://www.rfc1437.de/2003/03/15/tatsuya-sato/ - 2026-03-04T13:19:12.000Z + 2026-03-04T13:19:12.274Z monthly 0.8 @@ -89588,7 +89777,7 @@ https://www.rfc1437.de/2003/03/15/wnn-kmmrzll-spmbkmpfr-spmmn-m-spmschtz-z-vrsspmmns/ - 2026-03-04T13:19:17.000Z + 2026-03-04T13:19:17.147Z monthly 0.8 @@ -89597,7 +89786,7 @@ https://www.rfc1437.de/2003/03/14/5-etappe-geht-an-team-telekom/ - 2026-03-04T13:19:20.000Z + 2026-03-04T13:19:20.829Z monthly 0.8 @@ -89606,7 +89795,7 @@ https://www.rfc1437.de/2003/03/14/bilder-vom-fruehling/ - 2026-03-04T13:19:25.000Z + 2026-03-04T13:19:25.382Z monthly 0.8 @@ -89615,7 +89804,7 @@ https://www.rfc1437.de/2003/03/14/minisd/ - 2026-03-04T13:19:28.000Z + 2026-03-04T13:19:28.993Z monthly 0.8 @@ -89624,7 +89813,7 @@ https://www.rfc1437.de/2003/03/14/morgenandacht-auf-der-cebit-go-a-head-g-hd-t-l-km/ - 2026-03-04T13:19:34.000Z + 2026-03-04T13:19:34.417Z monthly 0.8 @@ -89633,7 +89822,7 @@ https://www.rfc1437.de/2003/03/14/pic-ueberbleibsel-aus-dem-herbst/ - 2026-03-04T13:19:38.000Z + 2026-03-04T13:19:38.822Z monthly 0.8 @@ -89642,7 +89831,7 @@ https://www.rfc1437.de/2003/03/14/pic-und-ein-letztes/ - 2026-03-04T13:19:43.000Z + 2026-03-04T13:19:43.231Z monthly 0.8 @@ -89651,7 +89840,7 @@ https://www.rfc1437.de/2003/03/14/pic-und-noch-ein-paar/ - 2026-03-04T13:19:47.000Z + 2026-03-04T13:19:47.212Z monthly 0.8 @@ -89660,7 +89849,7 @@ https://www.rfc1437.de/2003/03/14/pic-und-noch-mehr/ - 2026-03-04T13:19:51.000Z + 2026-03-04T13:19:51.304Z monthly 0.8 @@ -89669,7 +89858,7 @@ https://www.rfc1437.de/2003/03/14/pic-weidenkaetzchen/ - 2026-03-04T13:19:56.000Z + 2026-03-04T13:19:56.283Z monthly 0.8 @@ -89678,7 +89867,7 @@ https://www.rfc1437.de/2003/03/14/wir-in-hessen/ - 2026-03-04T13:20:00.000Z + 2026-03-04T13:20:00.316Z monthly 0.8 @@ -89687,7 +89876,7 @@ https://www.rfc1437.de/2003/03/13/america-the-gullible/ - 2026-03-04T13:20:04.000Z + 2026-03-04T13:20:04.764Z monthly 0.8 @@ -89696,7 +89885,7 @@ https://www.rfc1437.de/2003/03/13/apple-x11-anpassen-1/ - 2026-03-04T13:20:09.000Z + 2026-03-04T13:20:09.161Z monthly 0.8 @@ -89705,7 +89894,7 @@ https://www.rfc1437.de/2003/03/13/moellemann-will-in-der-fdp-bleiben/ - 2026-03-04T13:20:14.000Z + 2026-03-04T13:20:14.066Z monthly 0.8 @@ -89714,7 +89903,7 @@ https://www.rfc1437.de/2003/03/13/monitorbericht-ueber-amerikanische-emdiplomatieem/ - 2026-03-04T13:20:18.000Z + 2026-03-04T13:20:18.958Z monthly 0.8 @@ -89723,7 +89912,7 @@ https://www.rfc1437.de/2003/03/13/pic-der-dom/ - 2026-03-04T13:20:23.000Z + 2026-03-04T13:20:23.752Z monthly 0.8 @@ -89732,7 +89921,7 @@ https://www.rfc1437.de/2003/03/13/pic-erste-fruehlingszeichen/ - 2026-03-04T13:20:28.000Z + 2026-03-04T13:20:28.606Z monthly 0.8 @@ -89741,7 +89930,7 @@ https://www.rfc1437.de/2003/03/13/pic-josefskirche-kirchturm/ - 2026-03-04T13:20:33.000Z + 2026-03-04T13:20:33.124Z monthly 0.8 @@ -89750,7 +89939,7 @@ https://www.rfc1437.de/2003/03/13/pic-noch-mehr-kirche/ - 2026-03-04T13:20:37.000Z + 2026-03-04T13:20:37.530Z monthly 0.8 @@ -89759,7 +89948,7 @@ https://www.rfc1437.de/2003/03/12/clutter/ - 2026-03-04T13:20:41.000Z + 2026-03-04T13:20:41.087Z monthly 0.8 @@ -89768,7 +89957,7 @@ https://www.rfc1437.de/2003/03/12/gedenkfahrt-fuer-gestorbenen-radprofi-kiwilew/ - 2026-03-04T13:20:45.000Z + 2026-03-04T13:20:45.589Z monthly 0.8 @@ -89777,7 +89966,7 @@ https://www.rfc1437.de/2003/03/12/java-141/ - 2026-03-04T13:20:50.000Z + 2026-03-04T13:20:50.048Z monthly 0.8 @@ -89786,7 +89975,7 @@ https://www.rfc1437.de/2003/03/12/koenigin-beatrix-droht-strafanzeige/ - 2026-03-04T13:20:55.000Z + 2026-03-04T13:20:55.016Z monthly 0.8 @@ -89795,7 +89984,7 @@ https://www.rfc1437.de/2003/03/12/pommes/ - 2026-03-04T13:20:58.000Z + 2026-03-04T13:20:58.980Z monthly 0.8 @@ -89804,7 +89993,7 @@ https://www.rfc1437.de/2003/03/11/ausschnitt-aus-einem-kommentar-von-bsh-sr-n-bsh-jr/ - 2026-03-04T13:21:04.000Z + 2026-03-04T13:21:04.614Z monthly 0.8 @@ -89813,7 +90002,7 @@ https://www.rfc1437.de/2003/03/11/friedensappelle-zu-irak-verboten/ - 2026-03-04T13:21:09.000Z + 2026-03-04T13:21:09.953Z monthly 0.8 @@ -89822,7 +90011,7 @@ https://www.rfc1437.de/2003/03/11/kein-krieg-in-unserem-namen/ - 2026-03-04T13:21:14.000Z + 2026-03-04T13:21:14.844Z monthly 0.8 @@ -89831,7 +90020,7 @@ https://www.rfc1437.de/2003/03/11/neues-ausschlussverfahren-gegen-moellemann/ - 2026-03-04T13:21:19.000Z + 2026-03-04T13:21:19.289Z monthly 0.8 @@ -89840,7 +90029,7 @@ https://www.rfc1437.de/2003/03/11/nigeria-connection/ - 2026-03-04T13:21:24.000Z + 2026-03-04T13:21:24.485Z monthly 0.8 @@ -89849,7 +90038,7 @@ https://www.rfc1437.de/2003/03/11/pic-schief/ - 2026-03-04T13:21:29.000Z + 2026-03-04T13:21:29.353Z monthly 0.8 @@ -89858,7 +90047,7 @@ https://www.rfc1437.de/2003/03/11/pic-weide-am-teich/ - 2026-03-04T13:21:35.000Z + 2026-03-04T13:21:35.054Z monthly 0.8 @@ -89867,7 +90056,7 @@ https://www.rfc1437.de/2003/03/11/pydbc-02/ - 2026-03-04T13:21:40.000Z + 2026-03-04T13:21:40.386Z monthly 0.8 @@ -89876,7 +90065,7 @@ https://www.rfc1437.de/2003/03/11/weltgericht-nimmt-arbeit-auf/ - 2026-03-04T13:21:46.000Z + 2026-03-04T13:21:46.002Z monthly 0.8 @@ -89885,7 +90074,7 @@ https://www.rfc1437.de/2003/03/10/anleitung-um-einen-anonymen-cvs-server-mt-dbn-z-bn/ - 2026-03-04T13:21:51.000Z + 2026-03-04T13:21:51.098Z monthly 0.8 @@ -89894,7 +90083,7 @@ https://www.rfc1437.de/2003/03/10/ari-fleischr-dmts-bsh-clld-frm-prprd-lst-f-rprtrs/ - 2026-03-04T13:21:56.000Z + 2026-03-04T13:21:56.184Z monthly 0.8 @@ -89903,7 +90092,7 @@ https://www.rfc1437.de/2003/03/10/bush-und-die-wahrheit/ - 2026-03-04T13:22:00.000Z + 2026-03-04T13:22:00.218Z monthly 0.8 @@ -89912,7 +90101,7 @@ https://www.rfc1437.de/2003/03/10/moellemann-will-doch-im-bundestag-bleiben/ - 2026-03-04T13:22:05.000Z + 2026-03-04T13:22:05.359Z monthly 0.8 @@ -89921,7 +90110,7 @@ https://www.rfc1437.de/2003/03/09/all-crazy-on-the-western-front/ - 2026-03-04T13:22:11.000Z + 2026-03-04T13:22:11.013Z monthly 0.8 @@ -89930,7 +90119,7 @@ https://www.rfc1437.de/2003/03/09/britische-regierung-vor-der-zerreissprobe/ - 2026-03-04T13:22:17.000Z + 2026-03-04T13:22:17.471Z monthly 0.8 @@ -89939,7 +90128,7 @@ https://www.rfc1437.de/2003/03/09/juwr-20030309-011jpg/ - 2026-03-04T13:22:22.000Z + 2026-03-04T13:22:22.966Z monthly 0.8 @@ -89948,7 +90137,7 @@ https://www.rfc1437.de/2003/03/08/happy-hour-fuer-fachhaendler/ - 2026-03-04T13:22:29.000Z + 2026-03-04T13:22:29.158Z monthly 0.8 @@ -89957,7 +90146,7 @@ https://www.rfc1437.de/2003/03/08/roogle-rss-feed-suchmaschine/ - 2026-03-04T13:22:33.000Z + 2026-03-04T13:22:33.733Z monthly 0.8 @@ -89966,7 +90155,7 @@ https://www.rfc1437.de/2003/03/07/eric-raymond-zur-klage-von-sco-gegen-ibm/ - 2026-03-04T13:22:38.000Z + 2026-03-04T13:22:38.648Z monthly 0.8 @@ -89975,7 +90164,7 @@ https://www.rfc1437.de/2003/03/07/erster-saisonerfolg-fuer-erik-zabel/ - 2026-03-04T13:22:42.000Z + 2026-03-04T13:22:42.748Z monthly 0.8 @@ -89984,7 +90173,7 @@ https://www.rfc1437.de/2003/03/07/make-no-mistake/ - 2026-03-04T13:22:47.000Z + 2026-03-04T13:22:47.805Z monthly 0.8 @@ -89993,7 +90182,7 @@ https://www.rfc1437.de/2003/03/07/onlin-dtnbnk-nfrmrt-br-kntktllrgns-ptnzl-vn-chmkln/ - 2026-03-04T13:22:52.000Z + 2026-03-04T13:22:52.273Z monthly 0.8 @@ -90002,7 +90191,7 @@ https://www.rfc1437.de/2003/03/07/pic-kult/ - 2026-03-04T13:22:56.000Z + 2026-03-04T13:22:56.307Z monthly 0.8 @@ -90011,7 +90200,7 @@ https://www.rfc1437.de/2003/03/07/ranchero-releases-xml-rpc-client-for-macos/ - 2026-03-04T13:23:00.000Z + 2026-03-04T13:23:00.346Z monthly 0.8 @@ -90020,7 +90209,7 @@ https://www.rfc1437.de/2003/03/07/westerwelles-raketen/ - 2026-03-04T13:23:05.000Z + 2026-03-04T13:23:05.827Z monthly 0.8 @@ -90029,7 +90218,7 @@ https://www.rfc1437.de/2003/03/06/moellemann-kehrt-zurueck-in-bayern/ - 2026-03-04T13:23:10.000Z + 2026-03-04T13:23:10.316Z monthly 0.8 @@ -90038,7 +90227,7 @@ https://www.rfc1437.de/2003/03/06/pic-und-schon-wieder-moosbuschel/ - 2026-03-04T13:23:15.000Z + 2026-03-04T13:23:15.223Z monthly 0.8 @@ -90047,7 +90236,7 @@ https://www.rfc1437.de/2003/03/06/terry-jones-on-the-war/ - 2026-03-04T13:23:21.000Z + 2026-03-04T13:23:21.261Z monthly 0.8 @@ -90056,7 +90245,7 @@ https://www.rfc1437.de/2003/03/05/adobe-verscherbelt-lllustrator-10/ - 2026-03-04T13:23:25.000Z + 2026-03-04T13:23:25.355Z monthly 0.8 @@ -90065,7 +90254,7 @@ https://www.rfc1437.de/2003/03/05/gericht-untersagt-den-versand-von-sms-spam/ - 2026-03-04T13:23:29.000Z + 2026-03-04T13:23:29.929Z monthly 0.8 @@ -90074,7 +90263,7 @@ https://www.rfc1437.de/2003/03/05/jaeger-bedrohen-die-letzten-luchse/ - 2026-03-04T13:23:34.000Z + 2026-03-04T13:23:34.516Z monthly 0.8 @@ -90083,7 +90272,7 @@ https://www.rfc1437.de/2003/03/05/openofficeorg-unter-mac-os-x-102-installieren/ - 2026-03-04T13:23:39.000Z + 2026-03-04T13:23:39.012Z monthly 0.8 @@ -90092,7 +90281,7 @@ https://www.rfc1437.de/2003/03/05/zabel-zweiter-bei-murcia-rundfahrt/ - 2026-03-04T13:23:43.000Z + 2026-03-04T13:23:43.017Z monthly 0.8 @@ -90101,7 +90290,7 @@ https://www.rfc1437.de/2003/03/04/caffeine-software-suspends-operations/ - 2026-03-04T13:23:47.000Z + 2026-03-04T13:23:47.080Z monthly 0.8 @@ -90110,7 +90299,7 @@ https://www.rfc1437.de/2003/03/04/der-erste-fruehling/ - 2026-03-04T13:23:50.000Z + 2026-03-04T13:23:50.654Z monthly 0.8 @@ -90119,7 +90308,7 @@ https://www.rfc1437.de/2003/03/04/kleine-grafische-linux-workstation-auf-alter-hrdwr/ - 2026-03-04T13:23:55.000Z + 2026-03-04T13:23:55.584Z monthly 0.8 @@ -90128,7 +90317,7 @@ https://www.rfc1437.de/2003/03/04/moellemann-verstrickt-in-kirch-affaere/ - 2026-03-04T13:24:00.000Z + 2026-03-04T13:24:00.002Z monthly 0.8 @@ -90137,7 +90326,7 @@ https://www.rfc1437.de/2003/03/04/olympus-e-system-from-the-show-floor/ - 2026-03-04T13:24:04.000Z + 2026-03-04T13:24:04.079Z monthly 0.8 @@ -90155,7 +90344,7 @@ https://www.rfc1437.de/2003/03/04/pic-und-der-erste-fruehling/ - 2026-03-04T13:24:13.000Z + 2026-03-04T13:24:13.403Z monthly 0.8 @@ -90164,7 +90353,7 @@ https://www.rfc1437.de/2003/03/04/pic-und-wieder-mal-ein-moosbuschel/ - 2026-03-04T13:24:17.000Z + 2026-03-04T13:24:17.958Z monthly 0.8 @@ -90173,7 +90362,7 @@ https://www.rfc1437.de/2003/03/04/protest/ - 2026-03-04T13:24:21.000Z + 2026-03-04T13:24:21.714Z monthly 0.8 @@ -90182,7 +90371,7 @@ https://www.rfc1437.de/2003/03/03/immer-noch-beim-neu-einrichten-der-platte/ - 2026-03-04T13:24:25.000Z + 2026-03-04T13:24:25.805Z monthly 0.8 @@ -90191,7 +90380,7 @@ https://www.rfc1437.de/2003/03/02/glub-gola-gefuehle/ - 2026-03-04T13:24:30.000Z + 2026-03-04T13:24:30.252Z monthly 0.8 @@ -90200,7 +90389,7 @@ https://www.rfc1437.de/2003/03/02/minolta-dimage-xt/ - 2026-03-04T13:24:35.000Z + 2026-03-04T13:24:35.240Z monthly 0.8 @@ -90209,7 +90398,7 @@ https://www.rfc1437.de/2003/03/02/os-x-102-upgrade-all-software-sucks/ - 2026-03-07T21:18:46.000Z + 2026-03-07T21:18:46.271Z monthly 0.8 @@ -90218,7 +90407,7 @@ https://www.rfc1437.de/2003/03/02/os-x-upgrades-machen-spass-not/ - 2026-03-04T13:24:43.000Z + 2026-03-04T13:24:43.284Z monthly 0.8 @@ -90227,7 +90416,7 @@ https://www.rfc1437.de/2003/03/02/secret-document/ - 2026-03-04T13:24:48.000Z + 2026-03-04T13:24:48.652Z monthly 0.8 @@ -90236,7 +90425,7 @@ https://www.rfc1437.de/2003/03/01/entwicklungsumgebung/ - 2026-03-04T13:24:53.000Z + 2026-03-04T13:24:53.690Z monthly 0.8 @@ -90245,7 +90434,7 @@ https://www.rfc1437.de/2003/03/01/gewerkschaftsstreit-westerwelle-legt-nach/ - 2026-03-04T13:24:58.000Z + 2026-03-04T13:24:58.551Z monthly 0.8 @@ -90254,7 +90443,7 @@ https://www.rfc1437.de/2003/03/01/is-this-thing-on/ - 2026-03-07T21:18:48.000Z + 2026-03-07T21:18:48.798Z monthly 0.8 @@ -90263,7 +90452,7 @@ https://www.rfc1437.de/2003/03/01/leica-mit-neuer-alter-kamera/ - 2026-03-04T13:25:06.000Z + 2026-03-04T13:25:06.632Z monthly 0.8 @@ -90272,7 +90461,7 @@ https://www.rfc1437.de/2003/03/01/mcrsft-w-hv-n-plns-t-rmv-lnx-spprt-frm-vrtl-pc-fr/ - 2026-03-04T13:25:11.000Z + 2026-03-04T13:25:11.113Z monthly 0.8 @@ -90281,7 +90470,7 @@ https://www.rfc1437.de/2003/03/01/neue-nisus-writer-os-x-version-unterwegs/ - 2026-03-04T13:25:15.000Z + 2026-03-04T13:25:15.612Z monthly 0.8 @@ -90290,7 +90479,7 @@ https://www.rfc1437.de/2003/03/01/scheissfruehling/ - 2026-03-04T13:25:19.000Z + 2026-03-04T13:25:19.669Z monthly 0.8 @@ -90299,7 +90488,7 @@ https://www.rfc1437.de/2003/02/28/ari-fleischer-laughed-out-of-white-hous-prss-brfng/ - 2026-03-04T13:25:25.000Z + 2026-03-04T13:25:25.282Z monthly 0.8 @@ -90308,7 +90497,7 @@ https://www.rfc1437.de/2003/02/28/bill-gates-wettert-in-japan-gegen-open-source/ - 2026-03-04T13:25:29.000Z + 2026-03-04T13:25:29.757Z monthly 0.8 @@ -90317,7 +90506,7 @@ https://www.rfc1437.de/2003/02/28/buchstabensalat/ - 2026-03-04T13:25:34.000Z + 2026-03-04T13:25:34.282Z monthly 0.8 @@ -90326,7 +90515,7 @@ https://www.rfc1437.de/2003/02/28/openoffice-verwirrt-die-bsa/ - 2026-03-04T13:25:39.000Z + 2026-03-04T13:25:39.223Z monthly 0.8 @@ -90335,7 +90524,7 @@ https://www.rfc1437.de/2003/02/27/amazon-no/ - 2026-03-04T13:25:43.000Z + 2026-03-04T13:25:43.729Z monthly 0.8 @@ -90344,7 +90533,7 @@ https://www.rfc1437.de/2003/02/27/bibliothek-die-niemals-schliesst/ - 2026-03-04T13:25:47.000Z + 2026-03-04T13:25:47.854Z monthly 0.8 @@ -90353,7 +90542,7 @@ https://www.rfc1437.de/2003/02/27/clean-now-available-under-lgpl-license/ - 2026-03-04T13:25:51.000Z + 2026-03-04T13:25:51.830Z monthly 0.8 @@ -90362,7 +90551,7 @@ https://www.rfc1437.de/2003/02/27/einstellung-von-npd-verbotverfahren-erwartet/ - 2026-03-04T13:25:56.000Z + 2026-03-04T13:25:56.751Z monthly 0.8 @@ -90371,7 +90560,7 @@ https://www.rfc1437.de/2003/02/27/google-erhaelt-patent-fuer-ranking-technik/ - 2026-03-04T13:26:01.000Z + 2026-03-04T13:26:01.208Z monthly 0.8 @@ -90380,7 +90569,7 @@ https://www.rfc1437.de/2003/02/27/now-theres-a-usb-hot-cup/ - 2026-03-04T13:26:05.000Z + 2026-03-04T13:26:05.738Z monthly 0.8 @@ -90389,7 +90578,7 @@ https://www.rfc1437.de/2003/02/27/pentax-ist-d/ - 2026-03-04T13:26:09.000Z + 2026-03-04T13:26:09.765Z monthly 0.8 @@ -90398,7 +90587,7 @@ https://www.rfc1437.de/2003/02/27/pic-bruecken-schlagen/ - 2026-03-04T13:26:13.000Z + 2026-03-04T13:26:13.907Z monthly 0.8 @@ -90407,7 +90596,7 @@ https://www.rfc1437.de/2003/02/27/pic-noch-ist-er-vereist/ - 2026-03-04T13:26:18.000Z + 2026-03-04T13:26:18.409Z monthly 0.8 @@ -90416,7 +90605,7 @@ https://www.rfc1437.de/2003/02/27/pic-tierbabys/ - 2026-03-04T13:26:23.000Z + 2026-03-04T13:26:23.159Z monthly 0.8 @@ -90425,7 +90614,7 @@ https://www.rfc1437.de/2003/02/27/pic-wilder-wald/ - 2026-03-04T13:26:28.000Z + 2026-03-04T13:26:28.150Z monthly 0.8 @@ -90434,7 +90623,7 @@ https://www.rfc1437.de/2003/02/27/schlechte-zeiten-fuer-kuenftige-azubis/ - 2026-03-04T13:26:32.000Z + 2026-03-04T13:26:32.940Z monthly 0.8 @@ -90443,7 +90632,7 @@ https://www.rfc1437.de/2003/02/27/us-justiz-besetzt-domain-namen/ - 2026-03-04T13:26:37.000Z + 2026-03-04T13:26:37.986Z monthly 0.8 @@ -90452,7 +90641,7 @@ https://www.rfc1437.de/2003/02/27/weltraum-veteran-pioneer-10-ist-verstummt/ - 2026-03-04T13:26:58.000Z + 2026-03-04T13:26:58.462Z monthly 0.8 @@ -90461,7 +90650,7 @@ https://www.rfc1437.de/2003/02/27/zuwachs-bei-der-kamerasammlung/ - 2026-03-04T13:28:26.000Z + 2026-03-04T13:28:26.963Z monthly 0.8 @@ -90470,7 +90659,7 @@ https://www.rfc1437.de/2003/02/26/ultranationalisten-in-israelischer-regierung/ - 2026-03-04T13:28:30.000Z + 2026-03-04T13:28:30.585Z monthly 0.8 @@ -90479,7 +90668,7 @@ https://www.rfc1437.de/2003/02/25/canons-new-digital-slr/ - 2026-03-04T13:28:33.000Z + 2026-03-04T13:28:33.659Z monthly 0.8 @@ -90488,7 +90677,7 @@ https://www.rfc1437.de/2003/02/25/union-fordert-nationalgarde/ - 2026-03-04T13:28:37.000Z + 2026-03-04T13:28:37.366Z monthly 0.8 @@ -90497,7 +90686,7 @@ https://www.rfc1437.de/2003/02/25/yahoo-schreibt-lisp-code-um-in-c/ - 2026-03-04T13:28:40.000Z + 2026-03-04T13:28:40.696Z monthly 0.8 @@ -90506,7 +90695,7 @@ https://www.rfc1437.de/2003/02/25/zurueck-ins-mittelalter/ - 2026-03-04T13:28:44.000Z + 2026-03-04T13:28:44.410Z monthly 0.8 @@ -90515,7 +90704,7 @@ https://www.rfc1437.de/2003/02/24/akte-x-das-ende/ - 2026-03-04T13:28:47.000Z + 2026-03-04T13:28:47.083Z monthly 0.8 @@ -90524,7 +90713,7 @@ https://www.rfc1437.de/2003/02/24/deutsche-bank-ist-kreditrisiken-leid/ - 2026-03-04T13:28:50.000Z + 2026-03-04T13:28:50.771Z monthly 0.8 @@ -90533,7 +90722,7 @@ https://www.rfc1437.de/2003/02/24/first-ogg-vorbis-player/ - 2026-03-04T13:28:54.000Z + 2026-03-04T13:28:54.184Z monthly 0.8 @@ -90542,7 +90731,7 @@ https://www.rfc1437.de/2003/02/23/bank-will-keine-diskussion-ueber-sicherheitssystem/ - 2026-03-04T13:28:57.000Z + 2026-03-04T13:28:57.530Z monthly 0.8 @@ -90551,7 +90740,7 @@ https://www.rfc1437.de/2003/02/23/der-mann-der-die-zeit-anhielt/ - 2026-03-04T13:29:00.000Z + 2026-03-04T13:29:00.566Z monthly 0.8 @@ -90560,7 +90749,7 @@ https://www.rfc1437.de/2003/02/23/neue-io-version/ - 2026-03-04T13:29:03.000Z + 2026-03-04T13:29:03.237Z monthly 0.8 @@ -90569,7 +90758,7 @@ https://www.rfc1437.de/2003/02/22/022203-2022-uhr-wetten-dass-ii/ - 2026-03-04T13:29:06.000Z + 2026-03-04T13:29:06.583Z monthly 0.8 @@ -90578,7 +90767,7 @@ https://www.rfc1437.de/2003/02/22/bastelkurs-fuer-mac-anwender/ - 2026-03-04T13:29:10.000Z + 2026-03-04T13:29:10.277Z monthly 0.8 @@ -90587,7 +90776,7 @@ https://www.rfc1437.de/2003/02/22/legoday/ - 2026-03-04T13:29:13.000Z + 2026-03-04T13:29:13.279Z monthly 0.8 @@ -90596,7 +90785,7 @@ https://www.rfc1437.de/2003/02/22/script-identifier-001/ - 2026-03-04T13:29:16.000Z + 2026-03-04T13:29:16.306Z monthly 0.8 @@ -90605,7 +90794,7 @@ https://www.rfc1437.de/2003/02/21/gericht-macht-koerperwelten-den-weg-frei/ - 2026-03-04T13:29:20.000Z + 2026-03-04T13:29:20.053Z monthly 0.8 @@ -90614,7 +90803,7 @@ https://www.rfc1437.de/2003/02/21/how-many-parents-call-their-baby-it/ - 2026-03-04T13:29:23.000Z + 2026-03-04T13:29:23.091Z monthly 0.8 @@ -90623,7 +90812,7 @@ https://www.rfc1437.de/2003/02/21/mobilix-heisst-jetzt-tuxmobil/ - 2026-03-04T13:29:26.000Z + 2026-03-04T13:29:26.902Z monthly 0.8 @@ -90632,7 +90821,7 @@ https://www.rfc1437.de/2003/02/21/sample-finepix-f700-images-at-dpreview/ - 2026-03-04T13:29:30.000Z + 2026-03-04T13:29:30.307Z monthly 0.8 @@ -90641,7 +90830,7 @@ https://www.rfc1437.de/2003/02/20/20022003-2028-tv-tipp/ - 2026-03-04T13:29:33.000Z + 2026-03-04T13:29:33.727Z monthly 0.8 @@ -90650,7 +90839,7 @@ https://www.rfc1437.de/2003/02/20/banks-attempt-to-cover-up-worst-pin-vulnerablty-yt/ - 2026-03-04T13:29:36.000Z + 2026-03-04T13:29:36.834Z monthly 0.8 @@ -90659,7 +90848,7 @@ https://www.rfc1437.de/2003/02/20/diskussion-um-folter-drohungen-entbrannt/ - 2026-03-04T13:29:40.000Z + 2026-03-04T13:29:40.352Z monthly 0.8 @@ -90668,7 +90857,7 @@ https://www.rfc1437.de/2003/02/20/history-of-personal-computing/ - 2026-03-04T13:29:44.000Z + 2026-03-04T13:29:44.552Z monthly 0.8 @@ -90677,7 +90866,7 @@ https://www.rfc1437.de/2003/02/20/weniger-belege-bei-elektronischer-steuererklaerung/ - 2026-03-04T13:29:48.000Z + 2026-03-04T13:29:48.060Z monthly 0.8 @@ -90686,7 +90875,7 @@ https://www.rfc1437.de/2003/02/19/a-windows-flashback/ - 2026-03-04T13:29:51.000Z + 2026-03-04T13:29:51.573Z monthly 0.8 @@ -90695,7 +90884,7 @@ https://www.rfc1437.de/2003/02/19/gruene-kratzen-am-kuendigungsschutz/ - 2026-03-04T13:29:54.000Z + 2026-03-04T13:29:54.884Z monthly 0.8 @@ -90704,7 +90893,7 @@ https://www.rfc1437.de/2003/02/19/hacker-knacken-millionen-kreditkarten-konten/ - 2026-03-04T13:29:58.000Z + 2026-03-04T13:29:58.188Z monthly 0.8 @@ -90713,7 +90902,7 @@ https://www.rfc1437.de/2003/02/19/is-microsoft-engaging-in-a-little-domain-nm-sqttng/ - 2026-03-04T13:30:02.000Z + 2026-03-04T13:30:02.337Z monthly 0.8 @@ -90722,7 +90911,7 @@ https://www.rfc1437.de/2003/02/19/usa-irak-soll-wiederaufbau-selbst-schultern/ - 2026-03-04T13:30:06.000Z + 2026-03-04T13:30:06.925Z monthly 0.8 @@ -90731,7 +90920,7 @@ https://www.rfc1437.de/2003/02/18/desktop-cray/ - 2026-03-04T13:30:10.000Z + 2026-03-04T13:30:10.239Z monthly 0.8 @@ -90740,7 +90929,7 @@ https://www.rfc1437.de/2003/02/18/nikon-coolpix-sq-quick-preview/ - 2026-03-04T13:30:14.000Z + 2026-03-04T13:30:14.192Z monthly 0.8 @@ -90749,7 +90938,7 @@ https://www.rfc1437.de/2003/02/18/noch-mehr-wasser-unter-der-marsoberflaumlche/ - 2026-03-04T13:30:17.000Z + 2026-03-04T13:30:17.559Z monthly 0.8 @@ -90758,7 +90947,7 @@ https://www.rfc1437.de/2003/02/18/pic-und-noch-mal-weils-so-schoen-ist/ - 2026-03-04T13:30:22.000Z + 2026-03-04T13:30:22.677Z monthly 0.8 @@ -90767,7 +90956,7 @@ https://www.rfc1437.de/2003/02/18/pic-wenn-am-abend-im-hafen/ - 2026-03-04T13:30:26.000Z + 2026-03-04T13:30:26.982Z monthly 0.8 @@ -90776,7 +90965,7 @@ https://www.rfc1437.de/2003/02/18/tv-tip/ - 2026-03-04T13:30:30.000Z + 2026-03-04T13:30:30.486Z monthly 0.8 @@ -90785,7 +90974,7 @@ https://www.rfc1437.de/2003/02/17/021703-1814-uhr-das-ist-der-herr-busch/ - 2026-03-04T13:30:34.000Z + 2026-03-04T13:30:34.990Z monthly 0.8 @@ -90794,7 +90983,7 @@ https://www.rfc1437.de/2003/02/17/fotospaziergang-am-dortmund-ems-kanal/ - 2026-03-04T13:30:40.000Z + 2026-03-04T13:30:40.080Z monthly 0.8 @@ -90803,7 +90992,7 @@ https://www.rfc1437.de/2003/02/17/iphoto-hat-doofe-ohren/ - 2026-03-04T13:30:44.000Z + 2026-03-04T13:30:44.233Z monthly 0.8 @@ -90812,7 +91001,7 @@ https://www.rfc1437.de/2003/02/17/keine-lotto-million-mit-strickmuster-tipp/ - 2026-03-04T13:30:49.000Z + 2026-03-04T13:30:49.442Z monthly 0.8 @@ -90821,7 +91010,7 @@ https://www.rfc1437.de/2003/02/17/kleinster-gemeinsamer-nenner/ - 2026-03-04T13:30:54.000Z + 2026-03-04T13:30:54.366Z monthly 0.8 @@ -90830,7 +91019,7 @@ https://www.rfc1437.de/2003/02/17/microsoft-in-second-deal-to-sell-phone-software/ - 2026-03-04T13:30:59.000Z + 2026-03-04T13:30:59.936Z monthly 0.8 @@ -90839,7 +91028,7 @@ https://www.rfc1437.de/2003/02/17/pic-der-war-wirklich-so-kitschig/ - 2026-03-04T13:31:05.000Z + 2026-03-04T13:31:05.420Z monthly 0.8 @@ -90848,7 +91037,7 @@ https://www.rfc1437.de/2003/02/17/pic-gruen-waers-ja-schoener/ - 2026-03-04T13:31:10.000Z + 2026-03-04T13:31:10.919Z monthly 0.8 @@ -90857,7 +91046,7 @@ https://www.rfc1437.de/2003/02/17/pic-man-koennte-fast-fernweh-kriegen/ - 2026-03-04T13:31:15.000Z + 2026-03-04T13:31:15.974Z monthly 0.8 @@ -90866,7 +91055,7 @@ https://www.rfc1437.de/2003/02/17/pic-ok-noch-ein-paar-farbtupfer/ - 2026-03-04T13:31:21.000Z + 2026-03-04T13:31:21.377Z monthly 0.8 @@ -90875,7 +91064,7 @@ https://www.rfc1437.de/2003/02/17/pic-wenn-der-einzige-farbtupfer/ - 2026-03-04T13:31:26.000Z + 2026-03-04T13:31:26.357Z monthly 0.8 @@ -90884,7 +91073,7 @@ https://www.rfc1437.de/2003/02/17/pic-wetterphaenomene-hautnah/ - 2026-03-04T13:31:31.000Z + 2026-03-04T13:31:31.275Z monthly 0.8 @@ -90893,7 +91082,7 @@ https://www.rfc1437.de/2003/02/16/apples-global-pricing-policy-utter-cobblers/ - 2026-03-04T13:31:36.000Z + 2026-03-04T13:31:36.649Z monthly 0.8 @@ -90902,7 +91091,7 @@ https://www.rfc1437.de/2003/02/16/gaelic-is-dying/ - 2026-03-04T13:31:41.000Z + 2026-03-04T13:31:41.483Z monthly 0.8 @@ -90911,7 +91100,7 @@ https://www.rfc1437.de/2003/02/16/ring-around-the-earth/ - 2026-03-04T13:31:45.000Z + 2026-03-04T13:31:45.817Z monthly 0.8 @@ -90920,7 +91109,7 @@ https://www.rfc1437.de/2003/02/16/spielerei-am-sonntag/ - 2026-03-04T13:31:51.000Z + 2026-03-04T13:31:51.006Z monthly 0.8 @@ -90929,7 +91118,7 @@ https://www.rfc1437.de/2003/02/16/weather/ - 2026-03-04T13:31:55.000Z + 2026-03-04T13:31:55.529Z monthly 0.8 @@ -90938,7 +91127,7 @@ https://www.rfc1437.de/2003/02/15/die-rede-des-us-senators-robert-byrd-vor-dem-senat/ - 2026-03-04T13:31:59.000Z + 2026-03-04T13:31:59.380Z monthly 0.8 @@ -90947,7 +91136,7 @@ https://www.rfc1437.de/2003/02/15/kate-bush-all-albums/ - 2026-03-04T13:32:03.000Z + 2026-03-04T13:32:03.179Z monthly 0.8 @@ -90956,7 +91145,7 @@ https://www.rfc1437.de/2003/02/15/mehrere-millionn-mnschn-dmnstrrn-n-spnn-ggn-dn-krg/ - 2026-03-04T13:32:08.000Z + 2026-03-04T13:32:08.754Z monthly 0.8 @@ -90965,7 +91154,7 @@ https://www.rfc1437.de/2003/02/15/pic-moosbuschel/ - 2026-03-04T13:32:13.000Z + 2026-03-04T13:32:13.377Z monthly 0.8 @@ -90974,7 +91163,7 @@ https://www.rfc1437.de/2003/02/14/designing-reusable-classes-pdf/ - 2026-03-04T13:32:17.000Z + 2026-03-04T13:32:17.514Z monthly 0.8 @@ -90983,7 +91172,7 @@ https://www.rfc1437.de/2003/02/14/geistervertreibung/ - 2026-03-04T13:32:22.000Z + 2026-03-04T13:32:22.303Z monthly 0.8 @@ -90992,7 +91181,7 @@ https://www.rfc1437.de/2003/02/14/google-google-noch-einmal/ - 2026-03-04T13:32:27.000Z + 2026-03-04T13:32:27.342Z monthly 0.8 @@ -91001,7 +91190,7 @@ https://www.rfc1437.de/2003/02/14/keith-haring-ausstellung-in-hamburg-eroeffnet/ - 2026-03-04T13:32:31.000Z + 2026-03-04T13:32:31.653Z monthly 0.8 @@ -91010,7 +91199,7 @@ https://www.rfc1437.de/2003/02/14/pic-fruehling-frost/ - 2026-03-04T13:32:35.000Z + 2026-03-04T13:32:35.715Z monthly 0.8 @@ -91019,7 +91208,7 @@ https://www.rfc1437.de/2003/02/13/bilderblog-als-ergaenzung-zum-fotoblog/ - 2026-03-04T13:32:40.000Z + 2026-03-04T13:32:40.798Z monthly 0.8 @@ -91028,7 +91217,7 @@ https://www.rfc1437.de/2003/02/13/chimera-needs-a-new-name/ - 2026-03-04T13:32:44.000Z + 2026-03-04T13:32:44.832Z monthly 0.8 @@ -91046,7 +91235,7 @@ https://www.rfc1437.de/2003/02/13/pic-fernweh/ - 2026-03-04T13:32:53.000Z + 2026-03-04T13:32:53.928Z monthly 0.8 @@ -91055,7 +91244,7 @@ https://www.rfc1437.de/2003/02/13/schon-wieder-die-wertschoepfungskette/ - 2026-03-04T13:32:59.000Z + 2026-03-04T13:32:59.181Z monthly 0.8 @@ -91064,7 +91253,7 @@ https://www.rfc1437.de/2003/02/12/apache-vs-yaws/ - 2026-03-04T13:33:03.000Z + 2026-03-04T13:33:03.691Z monthly 0.8 @@ -91073,7 +91262,7 @@ https://www.rfc1437.de/2003/02/12/ist-stonehenge-ein-steinhenge/ - 2026-03-04T13:33:07.000Z + 2026-03-04T13:33:07.783Z monthly 0.8 @@ -91082,7 +91271,7 @@ https://www.rfc1437.de/2003/02/11/fdp-fraktion-schmeisst-moellemann-raus/ - 2026-03-04T13:33:11.000Z + 2026-03-04T13:33:11.796Z monthly 0.8 @@ -91091,7 +91280,7 @@ https://www.rfc1437.de/2003/02/11/perlpad-01/ - 2026-03-04T13:33:15.000Z + 2026-03-04T13:33:15.874Z monthly 0.8 @@ -91100,7 +91289,7 @@ https://www.rfc1437.de/2003/02/10/erster-nachteil-von-openzaurus/ - 2026-03-04T13:33:19.000Z + 2026-03-04T13:33:19.920Z monthly 0.8 @@ -91109,7 +91298,7 @@ https://www.rfc1437.de/2003/02/10/montag-10022003-ich-mach-jetzt-auch-mit/ - 2026-03-04T13:33:24.000Z + 2026-03-04T13:33:24.040Z monthly 0.8 @@ -91118,7 +91307,7 @@ https://www.rfc1437.de/2003/02/10/neunzehn/ - 2026-03-04T13:33:27.000Z + 2026-03-04T13:33:27.757Z monthly 0.8 @@ -91127,7 +91316,7 @@ https://www.rfc1437.de/2003/02/10/otan/ - 2026-03-04T13:33:31.000Z + 2026-03-04T13:33:31.374Z monthly 0.8 @@ -91136,7 +91325,7 @@ https://www.rfc1437.de/2003/02/10/why-sun-is-right-that-java-sucks/ - 2026-03-04T13:33:35.000Z + 2026-03-04T13:33:35.966Z monthly 0.8 @@ -91145,7 +91334,7 @@ https://www.rfc1437.de/2003/02/10/zahnaerzte-bohren-nur-noch-auf-rechnung/ - 2026-03-04T13:33:40.000Z + 2026-03-04T13:33:40.029Z monthly 0.8 @@ -91154,7 +91343,7 @@ https://www.rfc1437.de/2003/02/09/nikon-uncovered/ - 2026-03-04T13:33:43.000Z + 2026-03-04T13:33:43.628Z monthly 0.8 @@ -91163,7 +91352,7 @@ https://www.rfc1437.de/2003/02/09/tangled-up-in-spam/ - 2026-03-04T13:33:48.000Z + 2026-03-04T13:33:48.174Z monthly 0.8 @@ -91172,7 +91361,7 @@ https://www.rfc1437.de/2003/02/09/zaurus-auf-openzaurus-umstellen/ - 2026-03-04T13:33:52.000Z + 2026-03-04T13:33:52.664Z monthly 0.8 @@ -91181,7 +91370,7 @@ https://www.rfc1437.de/2003/02/08/constructing-an-efficient-prime-number-detector/ - 2026-03-04T13:33:57.000Z + 2026-03-04T13:33:57.491Z monthly 0.8 @@ -91190,7 +91379,7 @@ https://www.rfc1437.de/2003/02/08/in-der-nachbarschaft/ - 2026-03-04T13:34:01.000Z + 2026-03-04T13:34:01.965Z monthly 0.8 @@ -91199,7 +91388,7 @@ https://www.rfc1437.de/2003/02/08/muentefering-stellt-sich-beim-them-kndgngsschtz-qr/ - 2026-03-04T13:34:06.000Z + 2026-03-04T13:34:06.478Z monthly 0.8 @@ -91208,7 +91397,7 @@ https://www.rfc1437.de/2003/02/08/opensource-compiler-fuer-cc-und-fortran-freigegebn/ - 2026-03-04T13:34:10.000Z + 2026-03-04T13:34:10.961Z monthly 0.8 @@ -91217,7 +91406,7 @@ https://www.rfc1437.de/2003/02/08/zoll-bietet-indizierte-dvd-an/ - 2026-03-04T13:34:15.000Z + 2026-03-04T13:34:15.905Z monthly 0.8 @@ -91226,7 +91415,7 @@ https://www.rfc1437.de/2003/02/07/80-already/ - 2026-03-04T13:34:19.000Z + 2026-03-04T13:34:19.926Z monthly 0.8 @@ -91235,7 +91424,7 @@ https://www.rfc1437.de/2003/02/07/gut-unterrichtete-kreise/ - 2026-03-04T13:34:24.000Z + 2026-03-04T13:34:24.873Z monthly 0.8 @@ -91244,7 +91433,7 @@ https://www.rfc1437.de/2003/02/07/letters-to-the-editor/ - 2026-03-07T21:18:51.000Z + 2026-03-07T21:18:51.399Z monthly 0.8 @@ -91253,7 +91442,7 @@ https://www.rfc1437.de/2003/02/07/mal-ein-wirklich-sinnloses-feature-ds-cmmnty-srvrs/ - 2026-03-04T13:34:32.000Z + 2026-03-04T13:34:32.970Z monthly 0.8 @@ -91262,7 +91451,7 @@ https://www.rfc1437.de/2003/02/07/neue-enthuellungen-zum-aerztebetrug-mit-toten/ - 2026-03-04T13:34:37.000Z + 2026-03-04T13:34:37.945Z monthly 0.8 @@ -91271,7 +91460,7 @@ https://www.rfc1437.de/2003/02/07/sie-haben-post/ - 2026-03-04T13:34:42.000Z + 2026-03-04T13:34:42.416Z monthly 0.8 @@ -91280,7 +91469,7 @@ https://www.rfc1437.de/2003/02/07/weblogsoftware-bei-anderen/ - 2026-03-04T13:34:46.000Z + 2026-03-04T13:34:46.893Z monthly 0.8 @@ -91289,7 +91478,7 @@ https://www.rfc1437.de/2003/02/06/aufruf-zum-krieg-ohne-substanziell-neues/ - 2026-03-04T13:34:51.000Z + 2026-03-04T13:34:51.425Z monthly 0.8 @@ -91298,7 +91487,7 @@ https://www.rfc1437.de/2003/02/06/beamte-wollen-sparen-helfen/ - 2026-03-04T13:34:56.000Z + 2026-03-04T13:34:56.172Z monthly 0.8 @@ -91307,7 +91496,7 @@ https://www.rfc1437.de/2003/02/06/blogging-in-der-sinnkrise/ - 2026-03-04T13:35:01.000Z + 2026-03-04T13:35:01.207Z monthly 0.8 @@ -91316,7 +91505,7 @@ https://www.rfc1437.de/2003/02/06/dell-verzichtet-auf-diskettenlaufwerke/ - 2026-03-04T13:35:06.000Z + 2026-03-04T13:35:06.121Z monthly 0.8 @@ -91325,7 +91514,7 @@ https://www.rfc1437.de/2003/02/06/gsm-handys-schaedigen-nervenzellen/ - 2026-03-04T13:35:10.000Z + 2026-03-04T13:35:10.673Z monthly 0.8 @@ -91334,7 +91523,7 @@ https://www.rfc1437.de/2003/02/06/mac-osx-usb-beta-drivers/ - 2026-03-04T13:35:14.000Z + 2026-03-04T13:35:14.688Z monthly 0.8 @@ -91343,7 +91532,7 @@ https://www.rfc1437.de/2003/02/06/wetterbericht/ - 2026-03-04T13:35:18.000Z + 2026-03-04T13:35:18.720Z monthly 0.8 @@ -91352,7 +91541,7 @@ https://www.rfc1437.de/2003/02/06/you-really-should-try-this/ - 2026-03-04T13:35:22.000Z + 2026-03-04T13:35:22.772Z monthly 0.8 @@ -91361,7 +91550,7 @@ https://www.rfc1437.de/2003/02/05/dsl-treiber-cfos-jetzt-mit-traffic-shaping/ - 2026-03-04T13:35:27.000Z + 2026-03-04T13:35:27.695Z monthly 0.8 @@ -91370,7 +91559,7 @@ https://www.rfc1437.de/2003/02/05/rechtsvertretung-fuer-autoren-freier-software/ - 2026-03-04T13:35:32.000Z + 2026-03-04T13:35:32.682Z monthly 0.8 @@ -91379,7 +91568,7 @@ https://www.rfc1437.de/2003/02/04/nasa-entliess-angeblich-kritische-berater/ - 2026-03-04T13:35:37.000Z + 2026-03-04T13:35:37.130Z monthly 0.8 @@ -91388,7 +91577,7 @@ https://www.rfc1437.de/2003/02/04/neues-spielzeug-an-bord/ - 2026-03-04T13:35:41.000Z + 2026-03-04T13:35:41.614Z monthly 0.8 @@ -91397,7 +91586,7 @@ https://www.rfc1437.de/2003/02/04/nrw-fdp-moellemann-soll-mandat-abgeben/ - 2026-03-04T13:35:46.000Z + 2026-03-04T13:35:46.564Z monthly 0.8 @@ -91406,7 +91595,7 @@ https://www.rfc1437.de/2003/02/04/schroeder-eiert-weiter/ - 2026-03-04T13:35:51.000Z + 2026-03-04T13:35:51.035Z monthly 0.8 @@ -91415,7 +91604,7 @@ https://www.rfc1437.de/2003/02/04/totgesagt/ - 2026-03-04T13:35:55.000Z + 2026-03-04T13:35:55.199Z monthly 0.8 @@ -91424,7 +91613,7 @@ https://www.rfc1437.de/2003/02/03/applescript-ii/ - 2026-03-04T13:35:59.000Z + 2026-03-04T13:35:59.320Z monthly 0.8 @@ -91433,7 +91622,7 @@ https://www.rfc1437.de/2003/02/03/die-stadtwerke-haben-doofe-ohren/ - 2026-03-04T13:36:04.000Z + 2026-03-04T13:36:04.312Z monthly 0.8 @@ -91442,7 +91631,7 @@ https://www.rfc1437.de/2003/02/03/einsamer-schuetze/ - 2026-03-04T13:36:07.000Z + 2026-03-04T13:36:07.996Z monthly 0.8 @@ -91451,7 +91640,7 @@ https://www.rfc1437.de/2003/02/03/endlich/ - 2026-03-04T13:36:12.000Z + 2026-03-04T13:36:12.424Z monthly 0.8 @@ -91460,7 +91649,7 @@ https://www.rfc1437.de/2003/02/03/lange-risse-am-shuttle-fluegel/ - 2026-03-04T13:36:16.000Z + 2026-03-04T13:36:16.514Z monthly 0.8 @@ -91469,7 +91658,7 @@ https://www.rfc1437.de/2003/02/03/tuesday-28-january-lisp-as-a-shell-ddd-lsh-nd-scsh/ - 2026-03-04T13:36:21.000Z + 2026-03-04T13:36:21.084Z monthly 0.8 @@ -91478,7 +91667,7 @@ https://www.rfc1437.de/2003/02/02/columbia-warnungen-wurden-ignoriert/ - 2026-03-04T13:36:25.000Z + 2026-03-04T13:36:25.093Z monthly 0.8 @@ -91487,7 +91676,7 @@ https://www.rfc1437.de/2003/02/02/wahlen-in-niedersachsen-und-hessen/ - 2026-03-04T13:36:29.000Z + 2026-03-04T13:36:29.686Z monthly 0.8 @@ -91496,7 +91685,7 @@ https://www.rfc1437.de/2003/02/01/aktuell-auf-eins-live/ - 2026-03-04T13:36:33.000Z + 2026-03-04T13:36:33.713Z monthly 0.8 @@ -91505,7 +91694,7 @@ https://www.rfc1437.de/2003/02/01/beim-schockwellenreiter-ist-heute-alles-banane/ - 2026-03-04T13:36:37.000Z + 2026-03-04T13:36:37.734Z monthly 0.8 @@ -91514,7 +91703,7 @@ https://www.rfc1437.de/2003/02/01/beispielmakros-fuer-pyds/ - 2026-03-04T13:36:42.000Z + 2026-03-04T13:36:42.743Z monthly 0.8 @@ -91523,7 +91712,7 @@ https://www.rfc1437.de/2003/02/01/blitze-produzieren-auch-roentgenstrahlung/ - 2026-03-04T13:36:46.000Z + 2026-03-04T13:36:46.781Z monthly 0.8 @@ -91532,7 +91721,7 @@ https://www.rfc1437.de/2003/02/01/deutlch-krzng-dr-rbtslsnhlf-nd-jbpflcht-fr-jgndlch/ - 2026-03-04T13:36:51.000Z + 2026-03-04T13:36:51.280Z monthly 0.8 @@ -91541,7 +91730,7 @@ https://www.rfc1437.de/2003/02/01/lizenz-zum-schroepfen/ - 2026-03-04T13:36:56.000Z + 2026-03-04T13:36:56.004Z monthly 0.8 @@ -91550,7 +91739,7 @@ https://www.rfc1437.de/2003/02/01/musikindustrie-zockt-kindergaerten-ab/ - 2026-03-04T13:37:00.000Z + 2026-03-04T13:37:00.590Z monthly 0.8 @@ -91559,7 +91748,7 @@ https://www.rfc1437.de/2003/02/01/pyobjc-oreilly/ - 2026-03-04T13:37:05.000Z + 2026-03-04T13:37:05.184Z monthly 0.8 @@ -91568,7 +91757,7 @@ https://www.rfc1437.de/2003/01/31/blix-widerspricht-bush/ - 2026-03-04T13:37:09.000Z + 2026-03-04T13:37:09.312Z monthly 0.8 @@ -91577,7 +91766,7 @@ https://www.rfc1437.de/2003/01/31/deutsche-dienen-als-versuchskaninchen/ - 2026-03-04T13:37:13.000Z + 2026-03-04T13:37:13.841Z monthly 0.8 @@ -91586,7 +91775,7 @@ https://www.rfc1437.de/2003/01/30/erster-fall-von-e-thrombose/ - 2026-03-04T13:37:17.000Z + 2026-03-04T13:37:17.991Z monthly 0.8 @@ -91595,7 +91784,7 @@ https://www.rfc1437.de/2003/01/30/language-mumps-107/ - 2026-03-04T13:37:22.000Z + 2026-03-04T13:37:22.597Z monthly 0.8 @@ -91604,7 +91793,7 @@ https://www.rfc1437.de/2003/01/30/obelix-siegt-ueber-mobilix/ - 2026-03-04T13:37:27.000Z + 2026-03-04T13:37:27.038Z monthly 0.8 @@ -91613,7 +91802,7 @@ https://www.rfc1437.de/2003/01/30/physicists-teleport-quantum-bits-over-long-distanc/ - 2026-03-04T13:37:31.000Z + 2026-03-04T13:37:31.582Z monthly 0.8 @@ -91622,7 +91811,7 @@ https://www.rfc1437.de/2003/01/30/radio-userland-clone/ - 2026-03-04T13:37:36.000Z + 2026-03-04T13:37:36.092Z monthly 0.8 @@ -91631,7 +91820,7 @@ https://www.rfc1437.de/2003/01/29/interessante-interviews-mit-guido-van-rossum/ - 2026-03-04T13:37:40.000Z + 2026-03-04T13:37:40.598Z monthly 0.8 @@ -91640,7 +91829,7 @@ https://www.rfc1437.de/2003/01/29/muenchen-verbietet-koerperwelten/ - 2026-03-04T13:37:45.000Z + 2026-03-04T13:37:45.040Z monthly 0.8 @@ -91649,7 +91838,7 @@ https://www.rfc1437.de/2003/01/29/opera-mac-development-likely-to-cease/ - 2026-03-04T13:37:49.000Z + 2026-03-04T13:37:49.574Z monthly 0.8 @@ -91658,7 +91847,7 @@ https://www.rfc1437.de/2003/01/29/team-telekom-sechs-neulinge/ - 2026-03-04T13:37:54.000Z + 2026-03-04T13:37:54.100Z monthly 0.8 @@ -91676,7 +91865,7 @@ https://www.rfc1437.de/2003/01/26/forscher-suchen-den-sinn-des-sex/ - 2026-03-04T13:38:01.000Z + 2026-03-04T13:38:01.671Z monthly 0.8 @@ -91685,7 +91874,7 @@ https://www.rfc1437.de/2003/01/26/gabriel-attackiert-rot-gruene/ - 2026-03-04T13:38:06.000Z + 2026-03-04T13:38:06.689Z monthly 0.8 @@ -91694,7 +91883,7 @@ https://www.rfc1437.de/2003/01/26/html-sucks-completely-0928/ - 2026-03-04T13:38:10.000Z + 2026-03-04T13:38:10.753Z monthly 0.8 @@ -91703,7 +91892,7 @@ https://www.rfc1437.de/2003/01/26/internet-stundenlang-lahmgelegt/ - 2026-03-04T13:38:15.000Z + 2026-03-04T13:38:15.272Z monthly 0.8 @@ -91712,7 +91901,7 @@ https://www.rfc1437.de/2003/01/26/mal-was-in-eigener-sache/ - 2026-03-04T13:38:19.000Z + 2026-03-04T13:38:19.749Z monthly 0.8 @@ -91721,7 +91910,7 @@ https://www.rfc1437.de/2003/01/26/nasas-visible-earth/ - 2026-03-04T13:38:23.000Z + 2026-03-04T13:38:23.406Z monthly 0.8 @@ -91730,7 +91919,7 @@ https://www.rfc1437.de/2003/01/26/pypi-now-has-a-browsing-feature/ - 2026-03-04T13:38:27.000Z + 2026-03-04T13:38:27.980Z monthly 0.8 @@ -91739,7 +91928,7 @@ https://www.rfc1437.de/2003/01/26/pythonxml-082/ - 2026-03-04T13:38:32.000Z + 2026-03-04T13:38:32.535Z monthly 0.8 @@ -91748,7 +91937,7 @@ https://www.rfc1437.de/2003/01/26/satellitenbilder-von-den-buschbraenden-n-sdststrln/ - 2026-03-04T13:38:36.000Z + 2026-03-04T13:38:36.566Z monthly 0.8 @@ -91757,7 +91946,7 @@ https://www.rfc1437.de/2003/01/26/spd-spitze-niemand-wartet-auf-lafontaine/ - 2026-03-04T13:38:41.000Z + 2026-03-04T13:38:41.144Z monthly 0.8 @@ -91766,7 +91955,7 @@ https://www.rfc1437.de/2003/01/26/steptalk-070pre1/ - 2026-03-04T13:39:45.000Z + 2026-03-04T13:39:45.656Z monthly 0.8 @@ -91775,7 +91964,7 @@ https://www.rfc1437.de/2003/01/26/tinc-hopelessly-borken/ - 2026-03-07T21:18:56.000Z + 2026-03-07T21:18:56.169Z monthly 0.8 @@ -91784,7 +91973,7 @@ https://www.rfc1437.de/2003/01/26/umstieg-auf-pyds/ - 2026-03-04T13:41:52.000Z + 2026-03-04T13:41:52.655Z monthly 0.8 @@ -91793,7 +91982,7 @@ https://www.rfc1437.de/2003/01/26/us-prepares-for-possible-use-of-nukes/ - 2026-03-04T13:41:55.000Z + 2026-03-04T13:41:55.940Z monthly 0.8 @@ -91802,7 +91991,7 @@ https://www.rfc1437.de/2003/01/26/visual-works-smalltalk-fuer-mac-os-x/ - 2026-03-04T13:41:59.000Z + 2026-03-04T13:41:59.271Z monthly 0.8 @@ -91811,7 +92000,7 @@ https://www.rfc1437.de/2003/01/25/brainfuck-debugger-02/ - 2026-03-04T13:42:02.000Z + 2026-03-04T13:42:02.256Z monthly 0.8 @@ -91820,7 +92009,7 @@ https://www.rfc1437.de/2003/01/25/sbcl-ascendent/ - 2026-03-04T13:42:05.000Z + 2026-03-04T13:42:05.318Z monthly 0.8 @@ -91829,7 +92018,7 @@ https://www.rfc1437.de/2003/01/25/schmidt-regt-tuev-fuer-aerzte-an/ - 2026-03-04T13:42:09.000Z + 2026-03-04T13:42:09.011Z monthly 0.8 @@ -91838,7 +92027,7 @@ https://www.rfc1437.de/2003/01/25/tasten-kapott/ - 2026-03-04T13:42:12.000Z + 2026-03-04T13:42:12.729Z monthly 0.8 @@ -91847,7 +92036,7 @@ https://www.rfc1437.de/2003/01/24/oracle-v-sql-server-part-7/ - 2026-03-04T13:42:15.000Z + 2026-03-04T13:42:15.753Z monthly 0.8 @@ -91856,7 +92045,7 @@ https://www.rfc1437.de/2003/01/24/pyobjc-news-and-unit-tests-rock/ - 2026-03-04T13:42:19.000Z + 2026-03-04T13:42:19.166Z monthly 0.8 @@ -91865,7 +92054,7 @@ https://www.rfc1437.de/2003/01/23/network-solutions-verschickt-zhntsnd-vn-kndn-drssn/ - 2026-03-04T13:42:22.000Z + 2026-03-04T13:42:22.738Z monthly 0.8 @@ -91874,7 +92063,7 @@ https://www.rfc1437.de/2003/01/23/staranwalt-soll-fuer-sco-unix-urheberrechte-pruefn/ - 2026-03-04T13:42:26.000Z + 2026-03-04T13:42:26.453Z monthly 0.8 @@ -91883,7 +92072,7 @@ https://www.rfc1437.de/2003/01/23/us-gericht-verbietet-unternehmen-das-vrsndn-vn-spm/ - 2026-03-04T13:42:29.000Z + 2026-03-04T13:42:29.528Z monthly 0.8 @@ -91892,7 +92081,7 @@ https://www.rfc1437.de/2003/01/22/15-jahre-nigeria-connection/ - 2026-03-04T13:42:32.000Z + 2026-03-04T13:42:32.566Z monthly 0.8 @@ -91901,7 +92090,7 @@ https://www.rfc1437.de/2003/01/22/aohell-fuer-fast-alle-und-zwar-umsonst/ - 2026-03-04T13:42:35.000Z + 2026-03-04T13:42:35.646Z monthly 0.8 @@ -91919,7 +92108,7 @@ https://www.rfc1437.de/2003/01/21/installation-von-popfile-unter-os-x/ - 2026-03-04T13:42:42.000Z + 2026-03-04T13:42:42.727Z monthly 0.8 @@ -91928,7 +92117,7 @@ https://www.rfc1437.de/2003/01/21/moellemann-befragung-ohne-ergebnisse/ - 2026-03-04T13:42:45.000Z + 2026-03-04T13:42:45.759Z monthly 0.8 @@ -91937,7 +92126,7 @@ https://www.rfc1437.de/2003/01/21/openmcl-0133/ - 2026-03-04T13:42:48.000Z + 2026-03-04T13:42:48.794Z monthly 0.8 @@ -91946,7 +92135,7 @@ https://www.rfc1437.de/2003/01/21/pythoncard-07/ - 2026-03-04T13:42:51.000Z + 2026-03-04T13:42:51.927Z monthly 0.8 @@ -91955,7 +92144,7 @@ https://www.rfc1437.de/2003/01/21/simpletal/ - 2026-03-04T13:42:55.000Z + 2026-03-04T13:42:55.355Z monthly 0.8 @@ -91964,7 +92153,7 @@ https://www.rfc1437.de/2003/01/21/smtp-relay-server-von-t-online-kuenftg-kstnpflchtg/ - 2026-03-04T13:42:59.000Z + 2026-03-04T13:42:59.132Z monthly 0.8 @@ -91973,7 +92162,7 @@ https://www.rfc1437.de/2003/01/21/werden-gute-mailfilter-spam-auf-dauer-verhindern/ - 2026-03-04T13:43:02.000Z + 2026-03-04T13:43:02.569Z monthly 0.8 @@ -91982,7 +92171,7 @@ https://www.rfc1437.de/2003/01/20/schockwellenreiter-bastelt/ - 2026-03-04T13:43:06.000Z + 2026-03-04T13:43:06.081Z monthly 0.8 @@ -91991,7 +92180,7 @@ https://www.rfc1437.de/2003/01/20/trackback-in-the-saddle-again/ - 2026-03-04T13:43:09.000Z + 2026-03-04T13:43:09.166Z monthly 0.8 @@ -92000,7 +92189,7 @@ https://www.rfc1437.de/2003/01/19/mein-naechstes-nachbarblog/ - 2026-03-04T13:43:12.000Z + 2026-03-04T13:43:12.939Z monthly 0.8 @@ -92009,7 +92198,7 @@ https://www.rfc1437.de/2003/01/19/politiker-wollen-bundeslaender-zusammenlegen/ - 2026-03-04T13:43:16.000Z + 2026-03-04T13:43:16.434Z monthly 0.8 @@ -92018,7 +92207,7 @@ https://www.rfc1437.de/2003/01/19/wissenschaft-auf-dem-holzweg/ - 2026-03-04T13:43:19.000Z + 2026-03-04T13:43:19.526Z monthly 0.8 @@ -92036,7 +92225,7 @@ https://www.rfc1437.de/2003/01/17/die-duemmsten-barn-dr-lrnt-d-byrsch-sttsrgrng-n-dz/ - 2026-03-04T13:43:25.000Z + 2026-03-04T13:43:25.556Z monthly 0.8 @@ -92045,7 +92234,7 @@ https://www.rfc1437.de/2003/01/17/fb-wrnt-vr-ngblch-znhmndn-cybrttckn-pr-rkschr-dr-r/ - 2026-03-04T13:43:29.000Z + 2026-03-04T13:43:29.088Z monthly 0.8 @@ -92054,7 +92243,7 @@ https://www.rfc1437.de/2003/01/17/just-posted-olympus-c-5050-zoom-review/ - 2026-03-04T13:43:32.000Z + 2026-03-04T13:43:32.647Z monthly 0.8 @@ -92063,7 +92252,7 @@ https://www.rfc1437.de/2003/01/17/lisp-15-programmers-manual/ - 2026-03-04T13:43:36.000Z + 2026-03-04T13:43:36.283Z monthly 0.8 @@ -92072,7 +92261,7 @@ https://www.rfc1437.de/2003/01/16/che-guevara-der-revolutionaer-als-fotograf/ - 2026-03-04T13:43:39.000Z + 2026-03-04T13:43:39.573Z monthly 0.8 @@ -92081,7 +92270,7 @@ https://www.rfc1437.de/2003/01/16/esoteric-computer-languages/ - 2026-03-04T13:43:42.000Z + 2026-03-04T13:43:42.528Z monthly 0.8 @@ -92090,7 +92279,7 @@ https://www.rfc1437.de/2003/01/16/gebrauchte-festplatten-als-fndgrb-fr-hckr-nd-crckr/ - 2026-03-04T13:43:45.000Z + 2026-03-04T13:43:45.859Z monthly 0.8 @@ -92099,7 +92288,7 @@ https://www.rfc1437.de/2003/01/16/migration-durchgefuehrt/ - 2026-03-04T13:43:49.000Z + 2026-03-04T13:43:49.763Z monthly 0.8 @@ -92108,7 +92297,7 @@ https://www.rfc1437.de/2003/01/16/random-dont-forget-your-instuments/ - 2026-03-04T13:43:53.000Z + 2026-03-04T13:43:53.496Z monthly 0.8 @@ -92117,7 +92306,7 @@ https://www.rfc1437.de/2003/01/16/story-python-community-server/ - 2026-03-04T13:43:57.000Z + 2026-03-04T13:43:57.546Z monthly 0.8 @@ -92360,7 +92549,7 @@ https://www.rfc1437.de/2003/01/07/p229/ - 2026-03-07T21:18:58.000Z + 2026-03-07T21:18:58.516Z monthly 0.8 @@ -92495,7 +92684,7 @@ https://www.rfc1437.de/2003/01/03/p205/ - 2026-03-07T21:19:00.000Z + 2026-03-07T21:19:00.040Z monthly 0.8 @@ -92648,7 +92837,7 @@ https://www.rfc1437.de/2002/12/31/p193/ - 2026-03-04T13:48:35.000Z + 2026-03-04T13:48:35.672Z monthly 0.8 @@ -92657,7 +92846,7 @@ https://www.rfc1437.de/2002/12/31/p194/ - 2026-03-07T21:19:02.000Z + 2026-03-07T21:19:02.502Z monthly 0.8 @@ -92945,7 +93134,7 @@ https://www.rfc1437.de/2002/12/22/p162/ - 2026-03-07T21:19:05.000Z + 2026-03-07T21:19:05.558Z monthly 0.8 @@ -93053,7 +93242,7 @@ https://www.rfc1437.de/2002/12/20/p154/ - 2026-03-07T21:19:07.000Z + 2026-03-07T21:19:07.824Z monthly 0.8 @@ -93062,7 +93251,7 @@ https://www.rfc1437.de/2002/12/20/p155/ - 2026-03-07T21:19:10.000Z + 2026-03-07T21:19:10.926Z monthly 0.8 @@ -93233,7 +93422,7 @@ https://www.rfc1437.de/2002/12/16/p137/ - 2026-03-07T21:19:13.000Z + 2026-03-07T21:19:13.536Z monthly 0.8 @@ -93350,7 +93539,7 @@ https://www.rfc1437.de/2002/12/12/p117/ - 2026-03-07T21:19:14.000Z + 2026-03-07T21:19:14.997Z monthly 0.8 @@ -93656,7 +93845,7 @@ https://www.rfc1437.de/2002/11/30/p83/ - 2026-03-04T14:06:08.000Z + 2026-03-04T14:06:08.597Z monthly 0.8 @@ -93719,7 +93908,7 @@ https://www.rfc1437.de/2002/11/28/p76/ - 2026-03-07T21:19:16.000Z + 2026-03-07T21:19:16.690Z monthly 0.8 @@ -93791,7 +93980,7 @@ https://www.rfc1437.de/2002/11/27/p73/ - 2026-03-07T21:19:20.000Z + 2026-03-07T21:19:20.899Z monthly 0.8 @@ -93872,7 +94061,7 @@ https://www.rfc1437.de/2002/11/20/p60/ - 2026-03-07T21:19:22.000Z + 2026-03-07T21:19:22.373Z monthly 0.8 @@ -94340,7 +94529,7 @@ https://www.rfc1437.de/2002/11/05/p9/ - 2026-03-07T21:19:27.000Z + 2026-03-07T21:19:27.382Z monthly 0.8 @@ -94394,7 +94583,7 @@ https://www.rfc1437.de/2022/11/05/sweet-so-sweet/ - 2026-03-08T12:21:49.000Z + 2026-03-08T12:21:49.541Z monthly 0.8 @@ -94402,7 +94591,7 @@ https://www.rfc1437.de/bilderarchiv-2003/ - 2026-03-08T13:26:58.000Z + 2026-03-08T13:26:58.210Z weekly 0.7 @@ -94411,7 +94600,7 @@ https://www.rfc1437.de/bilderarchiv-2004/ - 2026-03-08T13:27:10.000Z + 2026-03-08T13:27:10.935Z weekly 0.7 @@ -94420,7 +94609,7 @@ https://www.rfc1437.de/bilderarchiv-2005/ - 2026-03-08T13:27:20.000Z + 2026-03-08T13:27:20.604Z weekly 0.7 @@ -94429,7 +94618,7 @@ https://www.rfc1437.de/bilderarchiv-2008/ - 2026-03-08T13:27:30.000Z + 2026-03-08T13:27:30.993Z weekly 0.7 @@ -94438,7 +94627,7 @@ https://www.rfc1437.de/bilderarchiv-2009/ - 2026-03-08T13:27:41.000Z + 2026-03-08T13:27:41.612Z weekly 0.7 @@ -94447,7 +94636,7 @@ https://www.rfc1437.de/wiki/ - 2026-03-08T16:30:28.000Z + 2026-03-08T16:30:28.557Z weekly 0.7 @@ -94456,7 +94645,7 @@ https://www.rfc1437.de/tag-cloud/ - 2026-03-07T21:06:29.000Z + 2026-03-07T21:06:29.584Z weekly 0.7 @@ -94465,7 +94654,7 @@ https://www.rfc1437.de/bilderarchiv-2022/ - 2026-03-08T16:32:11.000Z + 2026-03-08T16:32:11.101Z weekly 0.7 @@ -94474,7 +94663,7 @@ https://www.rfc1437.de/svb-brettspielrunde-im-internet/ - 2026-03-08T16:32:45.000Z + 2026-03-08T16:32:45.220Z weekly 0.7 @@ -94483,7 +94672,7 @@ https://www.rfc1437.de/bilderarchiv-2016/ - 2026-03-02T16:41:40.000Z + 2026-03-02T16:41:40.382Z weekly 0.7 @@ -94492,7 +94681,7 @@ https://www.rfc1437.de/bilderarchiv-2015/ - 2026-03-02T20:39:42.000Z + 2026-03-02T20:39:42.150Z weekly 0.7 @@ -94501,7 +94690,7 @@ https://www.rfc1437.de/bilderarchiv-2014/ - 2026-03-03T10:16:52.000Z + 2026-03-03T10:16:52.706Z weekly 0.7 @@ -94510,7 +94699,7 @@ https://www.rfc1437.de/bilderarchiv-2013/ - 2026-03-03T10:36:45.000Z + 2026-03-03T10:36:45.114Z weekly 0.7 @@ -94519,7 +94708,7 @@ https://www.rfc1437.de/bilderarchiv-2012/ - 2026-03-03T10:52:53.000Z + 2026-03-03T10:52:53.447Z weekly 0.7 @@ -94528,7 +94717,7 @@ https://www.rfc1437.de/bilderarchiv-2010/ - 2026-03-03T10:52:56.000Z + 2026-03-03T10:52:56.430Z weekly 0.7 @@ -94537,7 +94726,7 @@ https://www.rfc1437.de/bilderarchiv-2011/ - 2026-03-03T10:52:59.000Z + 2026-03-03T10:52:59.389Z weekly 0.7 @@ -94546,7 +94735,7 @@ https://www.rfc1437.de/bilderarchiv/ - 2026-03-03T11:39:41.000Z + 2026-03-03T11:39:41.922Z weekly 0.7 @@ -94555,7 +94744,7 @@ https://www.rfc1437.de/about/ - 2026-03-07T21:07:22.000Z + 2026-03-07T21:07:22.739Z weekly 0.7 @@ -94564,7 +94753,7 @@ https://www.rfc1437.de/impressum/ - 2026-03-08T12:14:59.000Z + 2026-07-05T14:31:02.372Z weekly 0.7 @@ -94573,7 +94762,7 @@ https://www.rfc1437.de/2026/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -94582,7 +94771,7 @@ https://www.rfc1437.de/2023/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -94591,7 +94780,7 @@ https://www.rfc1437.de/2022/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -94600,7 +94789,7 @@ https://www.rfc1437.de/2021/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -94609,7 +94798,7 @@ https://www.rfc1437.de/2020/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -94618,7 +94807,7 @@ https://www.rfc1437.de/2019/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -94627,7 +94816,7 @@ https://www.rfc1437.de/2018/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -94636,7 +94825,7 @@ https://www.rfc1437.de/2017/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -94645,7 +94834,7 @@ https://www.rfc1437.de/2016/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -94654,7 +94843,7 @@ https://www.rfc1437.de/2015/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -94663,7 +94852,7 @@ https://www.rfc1437.de/2014/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -94672,7 +94861,7 @@ https://www.rfc1437.de/2013/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -94681,7 +94870,7 @@ https://www.rfc1437.de/2012/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -94690,7 +94879,7 @@ https://www.rfc1437.de/2011/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -94699,7 +94888,7 @@ https://www.rfc1437.de/2010/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -94708,7 +94897,7 @@ https://www.rfc1437.de/2009/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -94717,7 +94906,7 @@ https://www.rfc1437.de/2008/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -94726,7 +94915,7 @@ https://www.rfc1437.de/2007/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -94735,7 +94924,7 @@ https://www.rfc1437.de/2006/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -94744,7 +94933,7 @@ https://www.rfc1437.de/2005/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -94753,7 +94942,7 @@ https://www.rfc1437.de/2004/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -94762,7 +94951,7 @@ https://www.rfc1437.de/2003/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -94771,16 +94960,43 @@ https://www.rfc1437.de/2002/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 + + https://www.rfc1437.de/2026/07/ + 2026-07-17T15:40:06.464Z + monthly + 0.5 + + + + + + https://www.rfc1437.de/2026/06/ + 2026-07-17T15:40:06.464Z + monthly + 0.5 + + + + + + https://www.rfc1437.de/2026/05/ + 2026-07-17T15:40:06.464Z + monthly + 0.5 + + + + https://www.rfc1437.de/2026/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -94789,7 +95005,7 @@ https://www.rfc1437.de/2026/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -94798,7 +95014,7 @@ https://www.rfc1437.de/2026/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -94807,7 +95023,7 @@ https://www.rfc1437.de/2023/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -94816,7 +95032,7 @@ https://www.rfc1437.de/2022/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -94825,7 +95041,7 @@ https://www.rfc1437.de/2022/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -94834,7 +95050,7 @@ https://www.rfc1437.de/2021/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -94843,7 +95059,7 @@ https://www.rfc1437.de/2020/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -94852,7 +95068,7 @@ https://www.rfc1437.de/2020/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -94861,7 +95077,7 @@ https://www.rfc1437.de/2019/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -94870,7 +95086,7 @@ https://www.rfc1437.de/2019/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -94879,7 +95095,7 @@ https://www.rfc1437.de/2019/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -94888,7 +95104,7 @@ https://www.rfc1437.de/2019/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -94897,7 +95113,7 @@ https://www.rfc1437.de/2019/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -94906,7 +95122,7 @@ https://www.rfc1437.de/2019/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -94915,7 +95131,7 @@ https://www.rfc1437.de/2018/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -94924,7 +95140,7 @@ https://www.rfc1437.de/2018/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -94933,7 +95149,7 @@ https://www.rfc1437.de/2018/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -94942,7 +95158,7 @@ https://www.rfc1437.de/2018/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -94951,7 +95167,7 @@ https://www.rfc1437.de/2018/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -94960,7 +95176,7 @@ https://www.rfc1437.de/2017/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -94969,7 +95185,7 @@ https://www.rfc1437.de/2017/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -94978,7 +95194,7 @@ https://www.rfc1437.de/2017/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -94987,7 +95203,7 @@ https://www.rfc1437.de/2017/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -94996,7 +95212,7 @@ https://www.rfc1437.de/2017/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95005,7 +95221,7 @@ https://www.rfc1437.de/2016/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95014,7 +95230,7 @@ https://www.rfc1437.de/2016/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95023,7 +95239,7 @@ https://www.rfc1437.de/2016/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95032,7 +95248,7 @@ https://www.rfc1437.de/2016/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95041,7 +95257,7 @@ https://www.rfc1437.de/2016/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95050,7 +95266,7 @@ https://www.rfc1437.de/2016/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95059,7 +95275,7 @@ https://www.rfc1437.de/2016/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95068,7 +95284,7 @@ https://www.rfc1437.de/2016/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95077,7 +95293,7 @@ https://www.rfc1437.de/2016/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95086,7 +95302,7 @@ https://www.rfc1437.de/2016/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95095,7 +95311,7 @@ https://www.rfc1437.de/2016/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95104,7 +95320,7 @@ https://www.rfc1437.de/2015/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95113,7 +95329,7 @@ https://www.rfc1437.de/2015/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95122,7 +95338,7 @@ https://www.rfc1437.de/2015/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95131,7 +95347,7 @@ https://www.rfc1437.de/2015/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95140,7 +95356,7 @@ https://www.rfc1437.de/2015/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95149,7 +95365,7 @@ https://www.rfc1437.de/2015/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95158,7 +95374,7 @@ https://www.rfc1437.de/2015/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95167,7 +95383,7 @@ https://www.rfc1437.de/2015/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95176,7 +95392,7 @@ https://www.rfc1437.de/2015/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95185,7 +95401,7 @@ https://www.rfc1437.de/2015/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95194,7 +95410,7 @@ https://www.rfc1437.de/2015/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95203,7 +95419,7 @@ https://www.rfc1437.de/2015/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95212,7 +95428,7 @@ https://www.rfc1437.de/2014/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95221,7 +95437,7 @@ https://www.rfc1437.de/2014/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95230,7 +95446,7 @@ https://www.rfc1437.de/2014/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95239,7 +95455,7 @@ https://www.rfc1437.de/2014/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95248,7 +95464,7 @@ https://www.rfc1437.de/2014/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95257,7 +95473,7 @@ https://www.rfc1437.de/2014/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95266,7 +95482,7 @@ https://www.rfc1437.de/2014/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95275,7 +95491,7 @@ https://www.rfc1437.de/2014/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95284,7 +95500,7 @@ https://www.rfc1437.de/2014/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95293,7 +95509,7 @@ https://www.rfc1437.de/2014/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95302,7 +95518,7 @@ https://www.rfc1437.de/2014/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95311,7 +95527,7 @@ https://www.rfc1437.de/2014/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95320,7 +95536,7 @@ https://www.rfc1437.de/2013/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95329,7 +95545,7 @@ https://www.rfc1437.de/2013/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95338,7 +95554,7 @@ https://www.rfc1437.de/2013/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95347,7 +95563,7 @@ https://www.rfc1437.de/2013/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95356,7 +95572,7 @@ https://www.rfc1437.de/2013/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95365,7 +95581,7 @@ https://www.rfc1437.de/2013/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95374,7 +95590,7 @@ https://www.rfc1437.de/2013/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95383,7 +95599,7 @@ https://www.rfc1437.de/2013/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95392,7 +95608,7 @@ https://www.rfc1437.de/2013/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95401,7 +95617,7 @@ https://www.rfc1437.de/2013/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95410,7 +95626,7 @@ https://www.rfc1437.de/2013/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95419,7 +95635,7 @@ https://www.rfc1437.de/2013/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95428,7 +95644,7 @@ https://www.rfc1437.de/2012/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95437,7 +95653,7 @@ https://www.rfc1437.de/2012/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95446,7 +95662,7 @@ https://www.rfc1437.de/2012/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95455,7 +95671,7 @@ https://www.rfc1437.de/2012/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95464,7 +95680,7 @@ https://www.rfc1437.de/2012/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95473,7 +95689,7 @@ https://www.rfc1437.de/2012/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95482,7 +95698,7 @@ https://www.rfc1437.de/2012/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95491,7 +95707,7 @@ https://www.rfc1437.de/2012/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95500,7 +95716,7 @@ https://www.rfc1437.de/2012/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95509,7 +95725,7 @@ https://www.rfc1437.de/2012/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95518,7 +95734,7 @@ https://www.rfc1437.de/2012/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95527,7 +95743,7 @@ https://www.rfc1437.de/2012/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95536,7 +95752,7 @@ https://www.rfc1437.de/2011/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95545,7 +95761,7 @@ https://www.rfc1437.de/2011/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95554,7 +95770,7 @@ https://www.rfc1437.de/2011/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95563,7 +95779,7 @@ https://www.rfc1437.de/2011/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95572,7 +95788,7 @@ https://www.rfc1437.de/2011/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95581,7 +95797,7 @@ https://www.rfc1437.de/2011/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95590,7 +95806,7 @@ https://www.rfc1437.de/2011/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95599,7 +95815,7 @@ https://www.rfc1437.de/2011/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95608,7 +95824,7 @@ https://www.rfc1437.de/2011/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95617,7 +95833,7 @@ https://www.rfc1437.de/2011/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95626,7 +95842,7 @@ https://www.rfc1437.de/2011/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95635,7 +95851,7 @@ https://www.rfc1437.de/2011/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95644,7 +95860,7 @@ https://www.rfc1437.de/2010/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95653,7 +95869,7 @@ https://www.rfc1437.de/2010/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95662,7 +95878,7 @@ https://www.rfc1437.de/2010/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95671,7 +95887,7 @@ https://www.rfc1437.de/2010/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95680,7 +95896,7 @@ https://www.rfc1437.de/2010/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95689,7 +95905,7 @@ https://www.rfc1437.de/2010/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95698,7 +95914,7 @@ https://www.rfc1437.de/2010/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95707,7 +95923,7 @@ https://www.rfc1437.de/2010/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95716,7 +95932,7 @@ https://www.rfc1437.de/2010/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95725,7 +95941,7 @@ https://www.rfc1437.de/2010/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95734,7 +95950,7 @@ https://www.rfc1437.de/2010/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95743,7 +95959,7 @@ https://www.rfc1437.de/2010/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95752,7 +95968,7 @@ https://www.rfc1437.de/2009/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95761,7 +95977,7 @@ https://www.rfc1437.de/2009/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95770,7 +95986,7 @@ https://www.rfc1437.de/2009/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95779,7 +95995,7 @@ https://www.rfc1437.de/2009/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95788,7 +96004,7 @@ https://www.rfc1437.de/2009/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95797,7 +96013,7 @@ https://www.rfc1437.de/2009/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95806,7 +96022,7 @@ https://www.rfc1437.de/2009/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95815,7 +96031,7 @@ https://www.rfc1437.de/2009/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95824,7 +96040,7 @@ https://www.rfc1437.de/2009/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95833,7 +96049,7 @@ https://www.rfc1437.de/2009/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95842,7 +96058,7 @@ https://www.rfc1437.de/2009/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95851,7 +96067,7 @@ https://www.rfc1437.de/2009/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95860,7 +96076,7 @@ https://www.rfc1437.de/2008/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95869,7 +96085,7 @@ https://www.rfc1437.de/2008/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95878,7 +96094,7 @@ https://www.rfc1437.de/2008/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95887,7 +96103,7 @@ https://www.rfc1437.de/2008/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95896,7 +96112,7 @@ https://www.rfc1437.de/2008/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95905,7 +96121,7 @@ https://www.rfc1437.de/2008/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95914,7 +96130,7 @@ https://www.rfc1437.de/2008/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95923,7 +96139,7 @@ https://www.rfc1437.de/2008/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95932,7 +96148,7 @@ https://www.rfc1437.de/2008/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95941,7 +96157,7 @@ https://www.rfc1437.de/2008/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95950,7 +96166,7 @@ https://www.rfc1437.de/2008/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95959,7 +96175,7 @@ https://www.rfc1437.de/2008/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95968,7 +96184,7 @@ https://www.rfc1437.de/2007/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95977,7 +96193,7 @@ https://www.rfc1437.de/2007/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95986,7 +96202,7 @@ https://www.rfc1437.de/2007/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -95995,7 +96211,7 @@ https://www.rfc1437.de/2007/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -96004,7 +96220,7 @@ https://www.rfc1437.de/2007/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -96013,7 +96229,7 @@ https://www.rfc1437.de/2007/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -96022,7 +96238,7 @@ https://www.rfc1437.de/2007/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -96031,7 +96247,7 @@ https://www.rfc1437.de/2007/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -96040,7 +96256,7 @@ https://www.rfc1437.de/2007/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -96049,7 +96265,7 @@ https://www.rfc1437.de/2007/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -96058,7 +96274,7 @@ https://www.rfc1437.de/2007/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -96067,7 +96283,7 @@ https://www.rfc1437.de/2007/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -96076,7 +96292,7 @@ https://www.rfc1437.de/2006/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -96085,7 +96301,7 @@ https://www.rfc1437.de/2006/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -96094,7 +96310,7 @@ https://www.rfc1437.de/2006/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -96103,7 +96319,7 @@ https://www.rfc1437.de/2006/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -96112,7 +96328,7 @@ https://www.rfc1437.de/2006/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -96121,7 +96337,7 @@ https://www.rfc1437.de/2006/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -96130,7 +96346,7 @@ https://www.rfc1437.de/2006/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -96139,7 +96355,7 @@ https://www.rfc1437.de/2006/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -96148,7 +96364,7 @@ https://www.rfc1437.de/2006/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -96157,7 +96373,7 @@ https://www.rfc1437.de/2006/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -96166,7 +96382,7 @@ https://www.rfc1437.de/2006/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -96175,7 +96391,7 @@ https://www.rfc1437.de/2006/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -96184,7 +96400,7 @@ https://www.rfc1437.de/2005/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -96193,7 +96409,7 @@ https://www.rfc1437.de/2005/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -96202,7 +96418,7 @@ https://www.rfc1437.de/2005/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -96211,7 +96427,7 @@ https://www.rfc1437.de/2005/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -96220,7 +96436,7 @@ https://www.rfc1437.de/2005/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -96229,7 +96445,7 @@ https://www.rfc1437.de/2005/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -96238,7 +96454,7 @@ https://www.rfc1437.de/2005/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -96247,7 +96463,7 @@ https://www.rfc1437.de/2005/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -96256,7 +96472,7 @@ https://www.rfc1437.de/2005/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -96265,7 +96481,7 @@ https://www.rfc1437.de/2005/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -96274,7 +96490,7 @@ https://www.rfc1437.de/2005/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -96283,7 +96499,7 @@ https://www.rfc1437.de/2005/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -96292,7 +96508,7 @@ https://www.rfc1437.de/2004/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -96301,7 +96517,7 @@ https://www.rfc1437.de/2004/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -96310,7 +96526,7 @@ https://www.rfc1437.de/2004/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -96319,7 +96535,7 @@ https://www.rfc1437.de/2004/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -96328,7 +96544,7 @@ https://www.rfc1437.de/2004/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -96337,7 +96553,7 @@ https://www.rfc1437.de/2004/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -96346,7 +96562,7 @@ https://www.rfc1437.de/2004/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -96355,7 +96571,7 @@ https://www.rfc1437.de/2004/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -96364,7 +96580,7 @@ https://www.rfc1437.de/2004/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -96373,7 +96589,7 @@ https://www.rfc1437.de/2004/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -96382,7 +96598,7 @@ https://www.rfc1437.de/2004/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -96391,7 +96607,7 @@ https://www.rfc1437.de/2004/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -96400,7 +96616,7 @@ https://www.rfc1437.de/2003/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -96409,7 +96625,7 @@ https://www.rfc1437.de/2003/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -96418,7 +96634,7 @@ https://www.rfc1437.de/2003/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -96427,7 +96643,7 @@ https://www.rfc1437.de/2003/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -96436,7 +96652,7 @@ https://www.rfc1437.de/2003/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -96445,7 +96661,7 @@ https://www.rfc1437.de/2003/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -96454,7 +96670,7 @@ https://www.rfc1437.de/2003/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -96463,7 +96679,7 @@ https://www.rfc1437.de/2003/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -96472,7 +96688,7 @@ https://www.rfc1437.de/2003/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -96481,7 +96697,7 @@ https://www.rfc1437.de/2003/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -96490,7 +96706,7 @@ https://www.rfc1437.de/2003/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -96499,7 +96715,7 @@ https://www.rfc1437.de/2003/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -96508,7 +96724,7 @@ https://www.rfc1437.de/2002/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 @@ -96517,16 +96733,151 @@ https://www.rfc1437.de/2002/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.5 + + https://www.rfc1437.de/2026/07/17/ + 2026-07-17T15:40:06.464Z + monthly + 0.4 + + + + + + https://www.rfc1437.de/2026/07/14/ + 2026-07-17T15:40:06.464Z + monthly + 0.4 + + + + + + https://www.rfc1437.de/2026/07/13/ + 2026-07-17T15:40:06.464Z + monthly + 0.4 + + + + + + https://www.rfc1437.de/2026/07/06/ + 2026-07-17T15:40:06.464Z + monthly + 0.4 + + + + + + https://www.rfc1437.de/2026/07/05/ + 2026-07-17T15:40:06.464Z + monthly + 0.4 + + + + + + https://www.rfc1437.de/2026/06/30/ + 2026-07-17T15:40:06.464Z + monthly + 0.4 + + + + + + https://www.rfc1437.de/2026/06/21/ + 2026-07-17T15:40:06.464Z + monthly + 0.4 + + + + + + https://www.rfc1437.de/2026/06/20/ + 2026-07-17T15:40:06.464Z + monthly + 0.4 + + + + + + https://www.rfc1437.de/2026/06/18/ + 2026-07-17T15:40:06.464Z + monthly + 0.4 + + + + + + https://www.rfc1437.de/2026/05/30/ + 2026-07-17T15:40:06.464Z + monthly + 0.4 + + + + + + https://www.rfc1437.de/2026/05/29/ + 2026-07-17T15:40:06.464Z + monthly + 0.4 + + + + + + https://www.rfc1437.de/2026/05/28/ + 2026-07-17T15:40:06.464Z + monthly + 0.4 + + + + + + https://www.rfc1437.de/2026/04/27/ + 2026-07-17T15:40:06.464Z + monthly + 0.4 + + + + + + https://www.rfc1437.de/2026/04/10/ + 2026-07-17T15:40:06.464Z + monthly + 0.4 + + + + + + https://www.rfc1437.de/2026/04/04/ + 2026-07-17T15:40:06.464Z + monthly + 0.4 + + + + https://www.rfc1437.de/2026/04/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -96535,7 +96886,7 @@ https://www.rfc1437.de/2026/03/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -96544,7 +96895,7 @@ https://www.rfc1437.de/2026/03/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -96553,7 +96904,7 @@ https://www.rfc1437.de/2026/03/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -96562,7 +96913,7 @@ https://www.rfc1437.de/2026/03/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -96571,7 +96922,7 @@ https://www.rfc1437.de/2026/03/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -96580,7 +96931,7 @@ https://www.rfc1437.de/2026/03/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -96589,7 +96940,7 @@ https://www.rfc1437.de/2026/03/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -96598,7 +96949,7 @@ https://www.rfc1437.de/2026/03/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -96607,7 +96958,7 @@ https://www.rfc1437.de/2026/03/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -96616,7 +96967,7 @@ https://www.rfc1437.de/2026/03/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -96625,7 +96976,7 @@ https://www.rfc1437.de/2026/03/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -96634,7 +96985,7 @@ https://www.rfc1437.de/2026/03/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -96643,7 +96994,7 @@ https://www.rfc1437.de/2026/03/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -96652,7 +97003,7 @@ https://www.rfc1437.de/2026/03/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -96661,7 +97012,7 @@ https://www.rfc1437.de/2026/03/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -96670,7 +97021,7 @@ https://www.rfc1437.de/2026/02/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -96679,7 +97030,7 @@ https://www.rfc1437.de/2026/02/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -96688,7 +97039,7 @@ https://www.rfc1437.de/2026/02/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -96697,7 +97048,7 @@ https://www.rfc1437.de/2026/02/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -96706,7 +97057,7 @@ https://www.rfc1437.de/2026/02/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -96715,7 +97066,7 @@ https://www.rfc1437.de/2023/08/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -96724,7 +97075,7 @@ https://www.rfc1437.de/2023/08/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -96733,7 +97084,7 @@ https://www.rfc1437.de/2022/11/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -96742,7 +97093,7 @@ https://www.rfc1437.de/2022/11/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -96751,7 +97102,7 @@ https://www.rfc1437.de/2022/11/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -96760,7 +97111,7 @@ https://www.rfc1437.de/2022/08/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -96769,7 +97120,7 @@ https://www.rfc1437.de/2021/01/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -96778,7 +97129,7 @@ https://www.rfc1437.de/2020/03/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -96787,7 +97138,7 @@ https://www.rfc1437.de/2020/03/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -96796,7 +97147,7 @@ https://www.rfc1437.de/2020/02/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -96805,7 +97156,7 @@ https://www.rfc1437.de/2019/11/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -96814,7 +97165,7 @@ https://www.rfc1437.de/2019/08/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -96823,7 +97174,7 @@ https://www.rfc1437.de/2019/08/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -96832,7 +97183,7 @@ https://www.rfc1437.de/2019/06/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -96841,7 +97192,7 @@ https://www.rfc1437.de/2019/06/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -96850,7 +97201,7 @@ https://www.rfc1437.de/2019/05/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -96859,7 +97210,7 @@ https://www.rfc1437.de/2019/04/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -96868,7 +97219,7 @@ https://www.rfc1437.de/2019/02/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -96877,7 +97228,7 @@ https://www.rfc1437.de/2018/11/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -96886,7 +97237,7 @@ https://www.rfc1437.de/2018/11/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -96895,7 +97246,7 @@ https://www.rfc1437.de/2018/11/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -96904,7 +97255,7 @@ https://www.rfc1437.de/2018/11/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -96913,7 +97264,7 @@ https://www.rfc1437.de/2018/08/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -96922,7 +97273,7 @@ https://www.rfc1437.de/2018/06/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -96931,7 +97282,7 @@ https://www.rfc1437.de/2018/06/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -96940,7 +97291,7 @@ https://www.rfc1437.de/2018/06/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -96949,7 +97300,7 @@ https://www.rfc1437.de/2018/06/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -96958,7 +97309,7 @@ https://www.rfc1437.de/2018/05/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -96967,7 +97318,7 @@ https://www.rfc1437.de/2018/01/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -96976,7 +97327,7 @@ https://www.rfc1437.de/2017/11/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -96985,7 +97336,7 @@ https://www.rfc1437.de/2017/11/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -96994,7 +97345,7 @@ https://www.rfc1437.de/2017/11/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97003,7 +97354,7 @@ https://www.rfc1437.de/2017/11/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97012,7 +97363,7 @@ https://www.rfc1437.de/2017/11/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97021,7 +97372,7 @@ https://www.rfc1437.de/2017/11/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97030,7 +97381,7 @@ https://www.rfc1437.de/2017/09/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97039,7 +97390,7 @@ https://www.rfc1437.de/2017/08/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97048,7 +97399,7 @@ https://www.rfc1437.de/2017/08/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97057,7 +97408,7 @@ https://www.rfc1437.de/2017/02/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97066,7 +97417,7 @@ https://www.rfc1437.de/2017/01/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97075,7 +97426,7 @@ https://www.rfc1437.de/2017/01/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97084,7 +97435,7 @@ https://www.rfc1437.de/2017/01/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97093,7 +97444,7 @@ https://www.rfc1437.de/2017/01/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97102,7 +97453,7 @@ https://www.rfc1437.de/2016/11/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97111,7 +97462,7 @@ https://www.rfc1437.de/2016/11/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97120,7 +97471,7 @@ https://www.rfc1437.de/2016/10/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97129,7 +97480,7 @@ https://www.rfc1437.de/2016/10/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97138,7 +97489,7 @@ https://www.rfc1437.de/2016/10/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97147,7 +97498,7 @@ https://www.rfc1437.de/2016/09/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97156,7 +97507,7 @@ https://www.rfc1437.de/2016/09/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97165,7 +97516,7 @@ https://www.rfc1437.de/2016/08/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97174,7 +97525,7 @@ https://www.rfc1437.de/2016/08/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97183,7 +97534,7 @@ https://www.rfc1437.de/2016/08/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97192,7 +97543,7 @@ https://www.rfc1437.de/2016/08/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97201,7 +97552,7 @@ https://www.rfc1437.de/2016/08/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97210,7 +97561,7 @@ https://www.rfc1437.de/2016/07/31/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97219,7 +97570,7 @@ https://www.rfc1437.de/2016/07/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97228,7 +97579,7 @@ https://www.rfc1437.de/2016/07/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97237,7 +97588,7 @@ https://www.rfc1437.de/2016/07/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97246,7 +97597,7 @@ https://www.rfc1437.de/2016/07/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97255,7 +97606,7 @@ https://www.rfc1437.de/2016/06/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97264,7 +97615,7 @@ https://www.rfc1437.de/2016/06/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97273,7 +97624,7 @@ https://www.rfc1437.de/2016/06/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97282,7 +97633,7 @@ https://www.rfc1437.de/2016/06/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97291,7 +97642,7 @@ https://www.rfc1437.de/2016/06/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97300,7 +97651,7 @@ https://www.rfc1437.de/2016/06/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97309,7 +97660,7 @@ https://www.rfc1437.de/2016/06/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97318,7 +97669,7 @@ https://www.rfc1437.de/2016/06/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97327,7 +97678,7 @@ https://www.rfc1437.de/2016/05/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97336,7 +97687,7 @@ https://www.rfc1437.de/2016/05/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97345,7 +97696,7 @@ https://www.rfc1437.de/2016/05/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97354,7 +97705,7 @@ https://www.rfc1437.de/2016/05/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97363,7 +97714,7 @@ https://www.rfc1437.de/2016/05/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97372,7 +97723,7 @@ https://www.rfc1437.de/2016/04/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97381,7 +97732,7 @@ https://www.rfc1437.de/2016/04/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97390,7 +97741,7 @@ https://www.rfc1437.de/2016/04/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97399,7 +97750,7 @@ https://www.rfc1437.de/2016/04/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97408,7 +97759,7 @@ https://www.rfc1437.de/2016/04/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97417,7 +97768,7 @@ https://www.rfc1437.de/2016/03/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97426,7 +97777,7 @@ https://www.rfc1437.de/2016/03/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97435,7 +97786,7 @@ https://www.rfc1437.de/2016/03/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97444,7 +97795,7 @@ https://www.rfc1437.de/2016/03/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97453,7 +97804,7 @@ https://www.rfc1437.de/2016/03/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97462,7 +97813,7 @@ https://www.rfc1437.de/2016/02/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97471,7 +97822,7 @@ https://www.rfc1437.de/2016/02/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97480,7 +97831,7 @@ https://www.rfc1437.de/2016/02/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97489,7 +97840,7 @@ https://www.rfc1437.de/2016/02/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97498,7 +97849,7 @@ https://www.rfc1437.de/2016/01/31/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97507,7 +97858,7 @@ https://www.rfc1437.de/2016/01/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97516,7 +97867,7 @@ https://www.rfc1437.de/2016/01/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97525,7 +97876,7 @@ https://www.rfc1437.de/2016/01/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97534,7 +97885,7 @@ https://www.rfc1437.de/2016/01/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97543,7 +97894,7 @@ https://www.rfc1437.de/2016/01/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97552,7 +97903,7 @@ https://www.rfc1437.de/2016/01/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97561,7 +97912,7 @@ https://www.rfc1437.de/2016/01/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97570,7 +97921,7 @@ https://www.rfc1437.de/2015/12/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97579,7 +97930,7 @@ https://www.rfc1437.de/2015/12/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97588,7 +97939,7 @@ https://www.rfc1437.de/2015/12/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97597,7 +97948,7 @@ https://www.rfc1437.de/2015/11/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97606,7 +97957,7 @@ https://www.rfc1437.de/2015/11/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97615,7 +97966,7 @@ https://www.rfc1437.de/2015/11/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97624,7 +97975,7 @@ https://www.rfc1437.de/2015/11/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97633,7 +97984,7 @@ https://www.rfc1437.de/2015/11/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97642,7 +97993,7 @@ https://www.rfc1437.de/2015/11/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97651,7 +98002,7 @@ https://www.rfc1437.de/2015/11/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97660,7 +98011,7 @@ https://www.rfc1437.de/2015/11/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97669,7 +98020,7 @@ https://www.rfc1437.de/2015/11/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97678,7 +98029,7 @@ https://www.rfc1437.de/2015/10/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97687,7 +98038,7 @@ https://www.rfc1437.de/2015/10/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97696,7 +98047,7 @@ https://www.rfc1437.de/2015/10/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97705,7 +98056,7 @@ https://www.rfc1437.de/2015/10/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97714,7 +98065,7 @@ https://www.rfc1437.de/2015/10/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97723,7 +98074,7 @@ https://www.rfc1437.de/2015/10/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97732,7 +98083,7 @@ https://www.rfc1437.de/2015/09/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97741,7 +98092,7 @@ https://www.rfc1437.de/2015/09/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97750,7 +98101,7 @@ https://www.rfc1437.de/2015/09/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97759,7 +98110,7 @@ https://www.rfc1437.de/2015/09/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97768,7 +98119,7 @@ https://www.rfc1437.de/2015/09/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97777,7 +98128,7 @@ https://www.rfc1437.de/2015/09/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97786,7 +98137,7 @@ https://www.rfc1437.de/2015/09/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97795,7 +98146,7 @@ https://www.rfc1437.de/2015/08/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97804,7 +98155,7 @@ https://www.rfc1437.de/2015/08/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97813,7 +98164,7 @@ https://www.rfc1437.de/2015/08/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97822,7 +98173,7 @@ https://www.rfc1437.de/2015/08/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97831,7 +98182,7 @@ https://www.rfc1437.de/2015/08/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97840,7 +98191,7 @@ https://www.rfc1437.de/2015/08/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97849,7 +98200,7 @@ https://www.rfc1437.de/2015/08/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97858,7 +98209,7 @@ https://www.rfc1437.de/2015/07/31/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97867,7 +98218,7 @@ https://www.rfc1437.de/2015/07/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97876,7 +98227,7 @@ https://www.rfc1437.de/2015/07/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97885,7 +98236,7 @@ https://www.rfc1437.de/2015/07/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97894,7 +98245,7 @@ https://www.rfc1437.de/2015/07/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97903,7 +98254,7 @@ https://www.rfc1437.de/2015/07/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97912,7 +98263,7 @@ https://www.rfc1437.de/2015/07/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97921,7 +98272,7 @@ https://www.rfc1437.de/2015/07/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97930,7 +98281,7 @@ https://www.rfc1437.de/2015/07/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97939,7 +98290,7 @@ https://www.rfc1437.de/2015/06/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97948,7 +98299,7 @@ https://www.rfc1437.de/2015/06/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97957,7 +98308,7 @@ https://www.rfc1437.de/2015/06/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97966,7 +98317,7 @@ https://www.rfc1437.de/2015/06/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97975,7 +98326,7 @@ https://www.rfc1437.de/2015/06/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97984,7 +98335,7 @@ https://www.rfc1437.de/2015/05/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -97993,7 +98344,7 @@ https://www.rfc1437.de/2015/05/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98002,7 +98353,7 @@ https://www.rfc1437.de/2015/05/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98011,7 +98362,7 @@ https://www.rfc1437.de/2015/05/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98020,7 +98371,7 @@ https://www.rfc1437.de/2015/05/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98029,7 +98380,7 @@ https://www.rfc1437.de/2015/05/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98038,7 +98389,7 @@ https://www.rfc1437.de/2015/05/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98047,7 +98398,7 @@ https://www.rfc1437.de/2015/04/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98056,7 +98407,7 @@ https://www.rfc1437.de/2015/04/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98065,7 +98416,7 @@ https://www.rfc1437.de/2015/04/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98074,7 +98425,7 @@ https://www.rfc1437.de/2015/04/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98083,7 +98434,7 @@ https://www.rfc1437.de/2015/04/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98092,7 +98443,7 @@ https://www.rfc1437.de/2015/04/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98101,7 +98452,7 @@ https://www.rfc1437.de/2015/04/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98110,7 +98461,7 @@ https://www.rfc1437.de/2015/04/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98119,7 +98470,7 @@ https://www.rfc1437.de/2015/03/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98128,7 +98479,7 @@ https://www.rfc1437.de/2015/03/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98137,7 +98488,7 @@ https://www.rfc1437.de/2015/03/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98146,7 +98497,7 @@ https://www.rfc1437.de/2015/03/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98155,7 +98506,7 @@ https://www.rfc1437.de/2015/03/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98164,7 +98515,7 @@ https://www.rfc1437.de/2015/03/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98173,7 +98524,7 @@ https://www.rfc1437.de/2015/03/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98182,7 +98533,7 @@ https://www.rfc1437.de/2015/03/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98191,7 +98542,7 @@ https://www.rfc1437.de/2015/03/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98200,7 +98551,7 @@ https://www.rfc1437.de/2015/03/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98209,7 +98560,7 @@ https://www.rfc1437.de/2015/03/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98218,7 +98569,7 @@ https://www.rfc1437.de/2015/03/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98227,7 +98578,7 @@ https://www.rfc1437.de/2015/03/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98236,7 +98587,7 @@ https://www.rfc1437.de/2015/02/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98245,7 +98596,7 @@ https://www.rfc1437.de/2015/02/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98254,7 +98605,7 @@ https://www.rfc1437.de/2015/02/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98263,7 +98614,7 @@ https://www.rfc1437.de/2015/02/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98272,7 +98623,7 @@ https://www.rfc1437.de/2015/02/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98281,7 +98632,7 @@ https://www.rfc1437.de/2015/02/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98290,7 +98641,7 @@ https://www.rfc1437.de/2015/02/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98299,7 +98650,7 @@ https://www.rfc1437.de/2015/02/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98308,7 +98659,7 @@ https://www.rfc1437.de/2015/02/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98317,7 +98668,7 @@ https://www.rfc1437.de/2015/02/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98326,7 +98677,7 @@ https://www.rfc1437.de/2015/02/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98335,7 +98686,7 @@ https://www.rfc1437.de/2015/01/31/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98344,7 +98695,7 @@ https://www.rfc1437.de/2015/01/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98353,7 +98704,7 @@ https://www.rfc1437.de/2015/01/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98362,7 +98713,7 @@ https://www.rfc1437.de/2015/01/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98371,7 +98722,7 @@ https://www.rfc1437.de/2015/01/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98380,7 +98731,7 @@ https://www.rfc1437.de/2015/01/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98389,7 +98740,7 @@ https://www.rfc1437.de/2015/01/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98398,7 +98749,7 @@ https://www.rfc1437.de/2015/01/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98407,7 +98758,7 @@ https://www.rfc1437.de/2015/01/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98416,7 +98767,7 @@ https://www.rfc1437.de/2015/01/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98425,7 +98776,7 @@ https://www.rfc1437.de/2015/01/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98434,7 +98785,7 @@ https://www.rfc1437.de/2015/01/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98443,7 +98794,7 @@ https://www.rfc1437.de/2015/01/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98452,7 +98803,7 @@ https://www.rfc1437.de/2015/01/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98461,7 +98812,7 @@ https://www.rfc1437.de/2015/01/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98470,7 +98821,7 @@ https://www.rfc1437.de/2015/01/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98479,7 +98830,7 @@ https://www.rfc1437.de/2015/01/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98488,7 +98839,7 @@ https://www.rfc1437.de/2015/01/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98497,7 +98848,7 @@ https://www.rfc1437.de/2015/01/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98506,7 +98857,7 @@ https://www.rfc1437.de/2015/01/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98515,7 +98866,7 @@ https://www.rfc1437.de/2014/12/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98524,7 +98875,7 @@ https://www.rfc1437.de/2014/11/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98533,7 +98884,7 @@ https://www.rfc1437.de/2014/11/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98542,7 +98893,7 @@ https://www.rfc1437.de/2014/11/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98551,7 +98902,7 @@ https://www.rfc1437.de/2014/10/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98560,7 +98911,7 @@ https://www.rfc1437.de/2014/10/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98569,7 +98920,7 @@ https://www.rfc1437.de/2014/10/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98578,7 +98929,7 @@ https://www.rfc1437.de/2014/09/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98587,7 +98938,7 @@ https://www.rfc1437.de/2014/08/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98596,7 +98947,7 @@ https://www.rfc1437.de/2014/07/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98605,7 +98956,7 @@ https://www.rfc1437.de/2014/07/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98614,7 +98965,7 @@ https://www.rfc1437.de/2014/07/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98623,7 +98974,7 @@ https://www.rfc1437.de/2014/07/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98632,7 +98983,7 @@ https://www.rfc1437.de/2014/06/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98641,7 +98992,7 @@ https://www.rfc1437.de/2014/06/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98650,7 +99001,7 @@ https://www.rfc1437.de/2014/06/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98659,7 +99010,7 @@ https://www.rfc1437.de/2014/06/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98668,7 +99019,7 @@ https://www.rfc1437.de/2014/06/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98677,7 +99028,7 @@ https://www.rfc1437.de/2014/06/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98686,7 +99037,7 @@ https://www.rfc1437.de/2014/06/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98695,7 +99046,7 @@ https://www.rfc1437.de/2014/06/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98704,7 +99055,7 @@ https://www.rfc1437.de/2014/05/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98713,7 +99064,7 @@ https://www.rfc1437.de/2014/05/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98722,7 +99073,7 @@ https://www.rfc1437.de/2014/05/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98731,7 +99082,7 @@ https://www.rfc1437.de/2014/05/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98740,7 +99091,7 @@ https://www.rfc1437.de/2014/05/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98749,7 +99100,7 @@ https://www.rfc1437.de/2014/05/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98758,7 +99109,7 @@ https://www.rfc1437.de/2014/04/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98767,7 +99118,7 @@ https://www.rfc1437.de/2014/04/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98776,7 +99127,7 @@ https://www.rfc1437.de/2014/04/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98785,7 +99136,7 @@ https://www.rfc1437.de/2014/04/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98794,7 +99145,7 @@ https://www.rfc1437.de/2014/04/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98803,7 +99154,7 @@ https://www.rfc1437.de/2014/04/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98812,7 +99163,7 @@ https://www.rfc1437.de/2014/03/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98821,7 +99172,7 @@ https://www.rfc1437.de/2014/03/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98830,7 +99181,7 @@ https://www.rfc1437.de/2014/03/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98839,7 +99190,7 @@ https://www.rfc1437.de/2014/02/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98848,7 +99199,7 @@ https://www.rfc1437.de/2014/02/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98857,7 +99208,7 @@ https://www.rfc1437.de/2014/01/31/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98866,7 +99217,7 @@ https://www.rfc1437.de/2014/01/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98875,7 +99226,7 @@ https://www.rfc1437.de/2014/01/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98884,7 +99235,7 @@ https://www.rfc1437.de/2014/01/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98893,7 +99244,7 @@ https://www.rfc1437.de/2014/01/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98902,7 +99253,7 @@ https://www.rfc1437.de/2014/01/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98911,7 +99262,7 @@ https://www.rfc1437.de/2014/01/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98920,7 +99271,7 @@ https://www.rfc1437.de/2014/01/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98929,7 +99280,7 @@ https://www.rfc1437.de/2014/01/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98938,7 +99289,7 @@ https://www.rfc1437.de/2014/01/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98947,7 +99298,7 @@ https://www.rfc1437.de/2013/12/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98956,7 +99307,7 @@ https://www.rfc1437.de/2013/12/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98965,7 +99316,7 @@ https://www.rfc1437.de/2013/12/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98974,7 +99325,7 @@ https://www.rfc1437.de/2013/12/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98983,7 +99334,7 @@ https://www.rfc1437.de/2013/12/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -98992,7 +99343,7 @@ https://www.rfc1437.de/2013/11/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99001,7 +99352,7 @@ https://www.rfc1437.de/2013/11/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99010,7 +99361,7 @@ https://www.rfc1437.de/2013/10/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99019,7 +99370,7 @@ https://www.rfc1437.de/2013/10/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99028,7 +99379,7 @@ https://www.rfc1437.de/2013/10/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99037,7 +99388,7 @@ https://www.rfc1437.de/2013/10/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99046,7 +99397,7 @@ https://www.rfc1437.de/2013/09/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99055,7 +99406,7 @@ https://www.rfc1437.de/2013/09/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99064,7 +99415,7 @@ https://www.rfc1437.de/2013/09/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99073,7 +99424,7 @@ https://www.rfc1437.de/2013/09/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99082,7 +99433,7 @@ https://www.rfc1437.de/2013/09/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99091,7 +99442,7 @@ https://www.rfc1437.de/2013/09/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99100,7 +99451,7 @@ https://www.rfc1437.de/2013/09/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99109,7 +99460,7 @@ https://www.rfc1437.de/2013/09/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99118,7 +99469,7 @@ https://www.rfc1437.de/2013/09/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99127,7 +99478,7 @@ https://www.rfc1437.de/2013/08/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99136,7 +99487,7 @@ https://www.rfc1437.de/2013/08/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99145,7 +99496,7 @@ https://www.rfc1437.de/2013/08/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99154,7 +99505,7 @@ https://www.rfc1437.de/2013/08/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99163,7 +99514,7 @@ https://www.rfc1437.de/2013/08/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99172,7 +99523,7 @@ https://www.rfc1437.de/2013/08/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99181,7 +99532,7 @@ https://www.rfc1437.de/2013/08/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99190,7 +99541,7 @@ https://www.rfc1437.de/2013/07/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99199,7 +99550,7 @@ https://www.rfc1437.de/2013/07/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99208,7 +99559,7 @@ https://www.rfc1437.de/2013/07/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99217,7 +99568,7 @@ https://www.rfc1437.de/2013/07/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99226,7 +99577,7 @@ https://www.rfc1437.de/2013/07/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99235,7 +99586,7 @@ https://www.rfc1437.de/2013/06/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99244,7 +99595,7 @@ https://www.rfc1437.de/2013/05/31/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99253,7 +99604,7 @@ https://www.rfc1437.de/2013/05/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99262,7 +99613,7 @@ https://www.rfc1437.de/2013/05/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99271,7 +99622,7 @@ https://www.rfc1437.de/2013/05/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99280,7 +99631,7 @@ https://www.rfc1437.de/2013/05/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99289,7 +99640,7 @@ https://www.rfc1437.de/2013/04/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99298,7 +99649,7 @@ https://www.rfc1437.de/2013/04/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99307,7 +99658,7 @@ https://www.rfc1437.de/2013/04/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99316,7 +99667,7 @@ https://www.rfc1437.de/2013/04/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99325,7 +99676,7 @@ https://www.rfc1437.de/2013/04/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99334,7 +99685,7 @@ https://www.rfc1437.de/2013/04/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99343,7 +99694,7 @@ https://www.rfc1437.de/2013/04/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99352,7 +99703,7 @@ https://www.rfc1437.de/2013/04/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99361,7 +99712,7 @@ https://www.rfc1437.de/2013/03/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99370,7 +99721,7 @@ https://www.rfc1437.de/2013/03/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99379,7 +99730,7 @@ https://www.rfc1437.de/2013/03/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99388,7 +99739,7 @@ https://www.rfc1437.de/2013/03/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99397,7 +99748,7 @@ https://www.rfc1437.de/2013/03/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99406,7 +99757,7 @@ https://www.rfc1437.de/2013/03/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99415,7 +99766,7 @@ https://www.rfc1437.de/2013/03/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99424,7 +99775,7 @@ https://www.rfc1437.de/2013/03/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99433,7 +99784,7 @@ https://www.rfc1437.de/2013/03/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99442,7 +99793,7 @@ https://www.rfc1437.de/2013/03/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99451,7 +99802,7 @@ https://www.rfc1437.de/2013/03/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99460,7 +99811,7 @@ https://www.rfc1437.de/2013/03/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99469,7 +99820,7 @@ https://www.rfc1437.de/2013/03/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99478,7 +99829,7 @@ https://www.rfc1437.de/2013/03/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99487,7 +99838,7 @@ https://www.rfc1437.de/2013/03/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99496,7 +99847,7 @@ https://www.rfc1437.de/2013/02/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99505,7 +99856,7 @@ https://www.rfc1437.de/2013/02/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99514,7 +99865,7 @@ https://www.rfc1437.de/2013/02/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99523,7 +99874,7 @@ https://www.rfc1437.de/2013/02/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99532,7 +99883,7 @@ https://www.rfc1437.de/2013/02/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99541,7 +99892,7 @@ https://www.rfc1437.de/2013/02/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99550,7 +99901,7 @@ https://www.rfc1437.de/2013/02/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99559,7 +99910,7 @@ https://www.rfc1437.de/2013/02/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99568,7 +99919,7 @@ https://www.rfc1437.de/2013/02/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99577,7 +99928,7 @@ https://www.rfc1437.de/2013/02/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99586,7 +99937,7 @@ https://www.rfc1437.de/2013/02/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99595,7 +99946,7 @@ https://www.rfc1437.de/2013/02/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99604,7 +99955,7 @@ https://www.rfc1437.de/2013/02/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99613,7 +99964,7 @@ https://www.rfc1437.de/2013/02/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99622,7 +99973,7 @@ https://www.rfc1437.de/2013/01/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99631,7 +99982,7 @@ https://www.rfc1437.de/2013/01/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99640,7 +99991,7 @@ https://www.rfc1437.de/2013/01/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99649,7 +100000,7 @@ https://www.rfc1437.de/2013/01/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99658,7 +100009,7 @@ https://www.rfc1437.de/2013/01/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99667,7 +100018,7 @@ https://www.rfc1437.de/2013/01/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99676,7 +100027,7 @@ https://www.rfc1437.de/2013/01/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99685,7 +100036,7 @@ https://www.rfc1437.de/2013/01/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99694,7 +100045,7 @@ https://www.rfc1437.de/2012/12/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99703,7 +100054,7 @@ https://www.rfc1437.de/2012/12/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99712,7 +100063,7 @@ https://www.rfc1437.de/2012/12/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99721,7 +100072,7 @@ https://www.rfc1437.de/2012/12/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99730,7 +100081,7 @@ https://www.rfc1437.de/2012/12/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99739,7 +100090,7 @@ https://www.rfc1437.de/2012/12/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99748,7 +100099,7 @@ https://www.rfc1437.de/2012/12/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99757,7 +100108,7 @@ https://www.rfc1437.de/2012/11/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99766,7 +100117,7 @@ https://www.rfc1437.de/2012/11/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99775,7 +100126,7 @@ https://www.rfc1437.de/2012/11/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99784,7 +100135,7 @@ https://www.rfc1437.de/2012/11/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99793,7 +100144,7 @@ https://www.rfc1437.de/2012/11/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99802,7 +100153,7 @@ https://www.rfc1437.de/2012/11/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99811,7 +100162,7 @@ https://www.rfc1437.de/2012/11/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99820,7 +100171,7 @@ https://www.rfc1437.de/2012/11/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99829,7 +100180,7 @@ https://www.rfc1437.de/2012/10/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99838,7 +100189,7 @@ https://www.rfc1437.de/2012/10/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99847,7 +100198,7 @@ https://www.rfc1437.de/2012/10/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99856,7 +100207,7 @@ https://www.rfc1437.de/2012/10/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99865,7 +100216,7 @@ https://www.rfc1437.de/2012/10/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99874,7 +100225,7 @@ https://www.rfc1437.de/2012/10/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99883,7 +100234,7 @@ https://www.rfc1437.de/2012/10/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99892,7 +100243,7 @@ https://www.rfc1437.de/2012/10/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99901,7 +100252,7 @@ https://www.rfc1437.de/2012/10/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99910,7 +100261,7 @@ https://www.rfc1437.de/2012/10/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99919,7 +100270,7 @@ https://www.rfc1437.de/2012/10/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99928,7 +100279,7 @@ https://www.rfc1437.de/2012/10/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99937,7 +100288,7 @@ https://www.rfc1437.de/2012/10/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99946,7 +100297,7 @@ https://www.rfc1437.de/2012/10/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99955,7 +100306,7 @@ https://www.rfc1437.de/2012/10/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99964,7 +100315,7 @@ https://www.rfc1437.de/2012/10/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99973,7 +100324,7 @@ https://www.rfc1437.de/2012/10/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99982,7 +100333,7 @@ https://www.rfc1437.de/2012/10/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -99991,7 +100342,7 @@ https://www.rfc1437.de/2012/10/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100000,7 +100351,7 @@ https://www.rfc1437.de/2012/09/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100009,7 +100360,7 @@ https://www.rfc1437.de/2012/09/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100018,7 +100369,7 @@ https://www.rfc1437.de/2012/09/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100027,7 +100378,7 @@ https://www.rfc1437.de/2012/09/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100036,7 +100387,7 @@ https://www.rfc1437.de/2012/09/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100045,7 +100396,7 @@ https://www.rfc1437.de/2012/09/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100054,7 +100405,7 @@ https://www.rfc1437.de/2012/09/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100063,7 +100414,7 @@ https://www.rfc1437.de/2012/09/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100072,7 +100423,7 @@ https://www.rfc1437.de/2012/09/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100081,7 +100432,7 @@ https://www.rfc1437.de/2012/09/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100090,7 +100441,7 @@ https://www.rfc1437.de/2012/09/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100099,7 +100450,7 @@ https://www.rfc1437.de/2012/09/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100108,7 +100459,7 @@ https://www.rfc1437.de/2012/08/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100117,7 +100468,7 @@ https://www.rfc1437.de/2012/08/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100126,7 +100477,7 @@ https://www.rfc1437.de/2012/08/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100135,7 +100486,7 @@ https://www.rfc1437.de/2012/08/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100144,7 +100495,7 @@ https://www.rfc1437.de/2012/08/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100153,7 +100504,7 @@ https://www.rfc1437.de/2012/08/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100162,7 +100513,7 @@ https://www.rfc1437.de/2012/07/31/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100171,7 +100522,7 @@ https://www.rfc1437.de/2012/07/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100180,7 +100531,7 @@ https://www.rfc1437.de/2012/07/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100189,7 +100540,7 @@ https://www.rfc1437.de/2012/07/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100198,7 +100549,7 @@ https://www.rfc1437.de/2012/07/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100207,7 +100558,7 @@ https://www.rfc1437.de/2012/07/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100216,7 +100567,7 @@ https://www.rfc1437.de/2012/07/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100225,7 +100576,7 @@ https://www.rfc1437.de/2012/07/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100234,7 +100585,7 @@ https://www.rfc1437.de/2012/07/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100243,7 +100594,7 @@ https://www.rfc1437.de/2012/07/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100252,7 +100603,7 @@ https://www.rfc1437.de/2012/07/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100261,7 +100612,7 @@ https://www.rfc1437.de/2012/07/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100270,7 +100621,7 @@ https://www.rfc1437.de/2012/07/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100279,7 +100630,7 @@ https://www.rfc1437.de/2012/07/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100288,7 +100639,7 @@ https://www.rfc1437.de/2012/07/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100297,7 +100648,7 @@ https://www.rfc1437.de/2012/07/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100306,7 +100657,7 @@ https://www.rfc1437.de/2012/06/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100315,7 +100666,7 @@ https://www.rfc1437.de/2012/06/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100324,7 +100675,7 @@ https://www.rfc1437.de/2012/06/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100333,7 +100684,7 @@ https://www.rfc1437.de/2012/06/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100342,7 +100693,7 @@ https://www.rfc1437.de/2012/06/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100351,7 +100702,7 @@ https://www.rfc1437.de/2012/06/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100360,7 +100711,7 @@ https://www.rfc1437.de/2012/06/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100369,7 +100720,7 @@ https://www.rfc1437.de/2012/06/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100378,7 +100729,7 @@ https://www.rfc1437.de/2012/06/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100387,7 +100738,7 @@ https://www.rfc1437.de/2012/06/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100396,7 +100747,7 @@ https://www.rfc1437.de/2012/06/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100405,7 +100756,7 @@ https://www.rfc1437.de/2012/06/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100414,7 +100765,7 @@ https://www.rfc1437.de/2012/06/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100423,7 +100774,7 @@ https://www.rfc1437.de/2012/06/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100432,7 +100783,7 @@ https://www.rfc1437.de/2012/05/31/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100441,7 +100792,7 @@ https://www.rfc1437.de/2012/05/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100450,7 +100801,7 @@ https://www.rfc1437.de/2012/05/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100459,7 +100810,7 @@ https://www.rfc1437.de/2012/05/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100468,7 +100819,7 @@ https://www.rfc1437.de/2012/05/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100477,7 +100828,7 @@ https://www.rfc1437.de/2012/05/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100486,7 +100837,7 @@ https://www.rfc1437.de/2012/05/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100495,7 +100846,7 @@ https://www.rfc1437.de/2012/05/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100504,7 +100855,7 @@ https://www.rfc1437.de/2012/05/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100513,7 +100864,7 @@ https://www.rfc1437.de/2012/05/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100522,7 +100873,7 @@ https://www.rfc1437.de/2012/05/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100531,7 +100882,7 @@ https://www.rfc1437.de/2012/05/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100540,7 +100891,7 @@ https://www.rfc1437.de/2012/05/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100549,7 +100900,7 @@ https://www.rfc1437.de/2012/05/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100558,7 +100909,7 @@ https://www.rfc1437.de/2012/05/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100567,7 +100918,7 @@ https://www.rfc1437.de/2012/05/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100576,7 +100927,7 @@ https://www.rfc1437.de/2012/04/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100585,7 +100936,7 @@ https://www.rfc1437.de/2012/04/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100594,7 +100945,7 @@ https://www.rfc1437.de/2012/04/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100603,7 +100954,7 @@ https://www.rfc1437.de/2012/04/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100612,7 +100963,7 @@ https://www.rfc1437.de/2012/04/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100621,7 +100972,7 @@ https://www.rfc1437.de/2012/04/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100630,7 +100981,7 @@ https://www.rfc1437.de/2012/04/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100639,7 +100990,7 @@ https://www.rfc1437.de/2012/04/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100648,7 +100999,7 @@ https://www.rfc1437.de/2012/04/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100657,7 +101008,7 @@ https://www.rfc1437.de/2012/04/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100666,7 +101017,7 @@ https://www.rfc1437.de/2012/04/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100675,7 +101026,7 @@ https://www.rfc1437.de/2012/04/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100684,7 +101035,7 @@ https://www.rfc1437.de/2012/04/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100693,7 +101044,7 @@ https://www.rfc1437.de/2012/03/31/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100702,7 +101053,7 @@ https://www.rfc1437.de/2012/03/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100711,7 +101062,7 @@ https://www.rfc1437.de/2012/03/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100720,7 +101071,7 @@ https://www.rfc1437.de/2012/03/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100729,7 +101080,7 @@ https://www.rfc1437.de/2012/03/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100738,7 +101089,7 @@ https://www.rfc1437.de/2012/03/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100747,7 +101098,7 @@ https://www.rfc1437.de/2012/03/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100756,7 +101107,7 @@ https://www.rfc1437.de/2012/03/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100765,7 +101116,7 @@ https://www.rfc1437.de/2012/03/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100774,7 +101125,7 @@ https://www.rfc1437.de/2012/03/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100783,7 +101134,7 @@ https://www.rfc1437.de/2012/03/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100792,7 +101143,7 @@ https://www.rfc1437.de/2012/03/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100801,7 +101152,7 @@ https://www.rfc1437.de/2012/03/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100810,7 +101161,7 @@ https://www.rfc1437.de/2012/03/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100819,7 +101170,7 @@ https://www.rfc1437.de/2012/03/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100828,7 +101179,7 @@ https://www.rfc1437.de/2012/03/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100837,7 +101188,7 @@ https://www.rfc1437.de/2012/03/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100846,7 +101197,7 @@ https://www.rfc1437.de/2012/03/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100855,7 +101206,7 @@ https://www.rfc1437.de/2012/03/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100864,7 +101215,7 @@ https://www.rfc1437.de/2012/03/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100873,7 +101224,7 @@ https://www.rfc1437.de/2012/02/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100882,7 +101233,7 @@ https://www.rfc1437.de/2012/02/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100891,7 +101242,7 @@ https://www.rfc1437.de/2012/02/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100900,7 +101251,7 @@ https://www.rfc1437.de/2012/02/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100909,7 +101260,7 @@ https://www.rfc1437.de/2012/02/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100918,7 +101269,7 @@ https://www.rfc1437.de/2012/02/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100927,7 +101278,7 @@ https://www.rfc1437.de/2012/02/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100936,7 +101287,7 @@ https://www.rfc1437.de/2012/02/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100945,7 +101296,7 @@ https://www.rfc1437.de/2012/02/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100954,7 +101305,7 @@ https://www.rfc1437.de/2012/02/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100963,7 +101314,7 @@ https://www.rfc1437.de/2012/02/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100972,7 +101323,7 @@ https://www.rfc1437.de/2012/02/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100981,7 +101332,7 @@ https://www.rfc1437.de/2012/02/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100990,7 +101341,7 @@ https://www.rfc1437.de/2012/02/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -100999,7 +101350,7 @@ https://www.rfc1437.de/2012/02/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101008,7 +101359,7 @@ https://www.rfc1437.de/2012/02/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101017,7 +101368,7 @@ https://www.rfc1437.de/2012/02/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101026,7 +101377,7 @@ https://www.rfc1437.de/2012/01/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101035,7 +101386,7 @@ https://www.rfc1437.de/2012/01/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101044,7 +101395,7 @@ https://www.rfc1437.de/2012/01/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101053,7 +101404,7 @@ https://www.rfc1437.de/2012/01/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101062,7 +101413,7 @@ https://www.rfc1437.de/2012/01/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101071,7 +101422,7 @@ https://www.rfc1437.de/2011/12/31/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101080,7 +101431,7 @@ https://www.rfc1437.de/2011/12/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101089,7 +101440,7 @@ https://www.rfc1437.de/2011/12/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101098,7 +101449,7 @@ https://www.rfc1437.de/2011/12/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101107,7 +101458,7 @@ https://www.rfc1437.de/2011/12/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101116,7 +101467,7 @@ https://www.rfc1437.de/2011/12/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101125,7 +101476,7 @@ https://www.rfc1437.de/2011/12/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101134,7 +101485,7 @@ https://www.rfc1437.de/2011/12/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101143,7 +101494,7 @@ https://www.rfc1437.de/2011/12/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101152,7 +101503,7 @@ https://www.rfc1437.de/2011/12/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101161,7 +101512,7 @@ https://www.rfc1437.de/2011/12/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101170,7 +101521,7 @@ https://www.rfc1437.de/2011/12/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101179,7 +101530,7 @@ https://www.rfc1437.de/2011/12/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101188,7 +101539,7 @@ https://www.rfc1437.de/2011/12/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101197,7 +101548,7 @@ https://www.rfc1437.de/2011/11/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101206,7 +101557,7 @@ https://www.rfc1437.de/2011/11/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101215,7 +101566,7 @@ https://www.rfc1437.de/2011/11/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101224,7 +101575,7 @@ https://www.rfc1437.de/2011/11/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101233,7 +101584,7 @@ https://www.rfc1437.de/2011/11/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101242,7 +101593,7 @@ https://www.rfc1437.de/2011/11/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101251,7 +101602,7 @@ https://www.rfc1437.de/2011/11/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101260,7 +101611,7 @@ https://www.rfc1437.de/2011/11/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101269,7 +101620,7 @@ https://www.rfc1437.de/2011/11/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101278,7 +101629,7 @@ https://www.rfc1437.de/2011/10/31/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101287,7 +101638,7 @@ https://www.rfc1437.de/2011/10/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101296,7 +101647,7 @@ https://www.rfc1437.de/2011/10/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101305,7 +101656,7 @@ https://www.rfc1437.de/2011/10/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101314,7 +101665,7 @@ https://www.rfc1437.de/2011/10/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101323,7 +101674,7 @@ https://www.rfc1437.de/2011/10/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101332,7 +101683,7 @@ https://www.rfc1437.de/2011/10/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101341,7 +101692,7 @@ https://www.rfc1437.de/2011/10/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101350,7 +101701,7 @@ https://www.rfc1437.de/2011/10/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101359,7 +101710,7 @@ https://www.rfc1437.de/2011/10/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101368,7 +101719,7 @@ https://www.rfc1437.de/2011/10/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101377,7 +101728,7 @@ https://www.rfc1437.de/2011/10/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101386,7 +101737,7 @@ https://www.rfc1437.de/2011/10/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101395,7 +101746,7 @@ https://www.rfc1437.de/2011/10/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101404,7 +101755,7 @@ https://www.rfc1437.de/2011/10/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101413,7 +101764,7 @@ https://www.rfc1437.de/2011/10/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101422,7 +101773,7 @@ https://www.rfc1437.de/2011/10/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101431,7 +101782,7 @@ https://www.rfc1437.de/2011/10/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101440,7 +101791,7 @@ https://www.rfc1437.de/2011/10/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101449,7 +101800,7 @@ https://www.rfc1437.de/2011/10/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101458,7 +101809,7 @@ https://www.rfc1437.de/2011/10/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101467,7 +101818,7 @@ https://www.rfc1437.de/2011/10/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101476,7 +101827,7 @@ https://www.rfc1437.de/2011/09/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101485,7 +101836,7 @@ https://www.rfc1437.de/2011/09/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101494,7 +101845,7 @@ https://www.rfc1437.de/2011/09/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101503,7 +101854,7 @@ https://www.rfc1437.de/2011/09/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101512,7 +101863,7 @@ https://www.rfc1437.de/2011/09/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101521,7 +101872,7 @@ https://www.rfc1437.de/2011/09/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101530,7 +101881,7 @@ https://www.rfc1437.de/2011/09/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101539,7 +101890,7 @@ https://www.rfc1437.de/2011/09/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101548,7 +101899,7 @@ https://www.rfc1437.de/2011/09/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101557,7 +101908,7 @@ https://www.rfc1437.de/2011/09/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101566,7 +101917,7 @@ https://www.rfc1437.de/2011/09/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101575,7 +101926,7 @@ https://www.rfc1437.de/2011/09/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101584,7 +101935,7 @@ https://www.rfc1437.de/2011/09/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101593,7 +101944,7 @@ https://www.rfc1437.de/2011/09/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101602,7 +101953,7 @@ https://www.rfc1437.de/2011/09/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101611,7 +101962,7 @@ https://www.rfc1437.de/2011/09/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101620,7 +101971,7 @@ https://www.rfc1437.de/2011/08/31/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101629,7 +101980,7 @@ https://www.rfc1437.de/2011/08/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101638,7 +101989,7 @@ https://www.rfc1437.de/2011/08/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101647,7 +101998,7 @@ https://www.rfc1437.de/2011/08/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101656,7 +102007,7 @@ https://www.rfc1437.de/2011/08/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101665,7 +102016,7 @@ https://www.rfc1437.de/2011/08/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101674,7 +102025,7 @@ https://www.rfc1437.de/2011/08/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101683,7 +102034,7 @@ https://www.rfc1437.de/2011/08/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101692,7 +102043,7 @@ https://www.rfc1437.de/2011/08/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101701,7 +102052,7 @@ https://www.rfc1437.de/2011/08/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101710,7 +102061,7 @@ https://www.rfc1437.de/2011/08/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101719,7 +102070,7 @@ https://www.rfc1437.de/2011/08/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101728,7 +102079,7 @@ https://www.rfc1437.de/2011/08/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101737,7 +102088,7 @@ https://www.rfc1437.de/2011/08/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101746,7 +102097,7 @@ https://www.rfc1437.de/2011/08/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101755,7 +102106,7 @@ https://www.rfc1437.de/2011/08/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101764,7 +102115,7 @@ https://www.rfc1437.de/2011/08/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101773,7 +102124,7 @@ https://www.rfc1437.de/2011/08/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101782,7 +102133,7 @@ https://www.rfc1437.de/2011/08/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101791,7 +102142,7 @@ https://www.rfc1437.de/2011/08/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101800,7 +102151,7 @@ https://www.rfc1437.de/2011/08/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101809,7 +102160,7 @@ https://www.rfc1437.de/2011/08/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101818,7 +102169,7 @@ https://www.rfc1437.de/2011/07/31/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101827,7 +102178,7 @@ https://www.rfc1437.de/2011/07/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101836,7 +102187,7 @@ https://www.rfc1437.de/2011/07/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101845,7 +102196,7 @@ https://www.rfc1437.de/2011/07/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101854,7 +102205,7 @@ https://www.rfc1437.de/2011/07/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101863,7 +102214,7 @@ https://www.rfc1437.de/2011/07/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101872,7 +102223,7 @@ https://www.rfc1437.de/2011/07/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101881,7 +102232,7 @@ https://www.rfc1437.de/2011/07/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101890,7 +102241,7 @@ https://www.rfc1437.de/2011/07/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101899,7 +102250,7 @@ https://www.rfc1437.de/2011/07/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101908,7 +102259,7 @@ https://www.rfc1437.de/2011/07/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101917,7 +102268,7 @@ https://www.rfc1437.de/2011/07/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101926,7 +102277,7 @@ https://www.rfc1437.de/2011/07/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101935,7 +102286,7 @@ https://www.rfc1437.de/2011/07/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101944,7 +102295,7 @@ https://www.rfc1437.de/2011/07/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101953,7 +102304,7 @@ https://www.rfc1437.de/2011/07/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101962,7 +102313,7 @@ https://www.rfc1437.de/2011/07/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101971,7 +102322,7 @@ https://www.rfc1437.de/2011/07/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101980,7 +102331,7 @@ https://www.rfc1437.de/2011/07/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101989,7 +102340,7 @@ https://www.rfc1437.de/2011/07/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -101998,7 +102349,7 @@ https://www.rfc1437.de/2011/07/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102007,7 +102358,7 @@ https://www.rfc1437.de/2011/07/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102016,7 +102367,7 @@ https://www.rfc1437.de/2011/07/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102025,7 +102376,7 @@ https://www.rfc1437.de/2011/07/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102034,7 +102385,7 @@ https://www.rfc1437.de/2011/07/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102043,7 +102394,7 @@ https://www.rfc1437.de/2011/07/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102052,7 +102403,7 @@ https://www.rfc1437.de/2011/07/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102061,7 +102412,7 @@ https://www.rfc1437.de/2011/07/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102070,7 +102421,7 @@ https://www.rfc1437.de/2011/06/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102079,7 +102430,7 @@ https://www.rfc1437.de/2011/06/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102088,7 +102439,7 @@ https://www.rfc1437.de/2011/06/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102097,7 +102448,7 @@ https://www.rfc1437.de/2011/06/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102106,7 +102457,7 @@ https://www.rfc1437.de/2011/06/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102115,7 +102466,7 @@ https://www.rfc1437.de/2011/06/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102124,7 +102475,7 @@ https://www.rfc1437.de/2011/06/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102133,7 +102484,7 @@ https://www.rfc1437.de/2011/06/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102142,7 +102493,7 @@ https://www.rfc1437.de/2011/06/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102151,7 +102502,7 @@ https://www.rfc1437.de/2011/06/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102160,7 +102511,7 @@ https://www.rfc1437.de/2011/06/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102169,7 +102520,7 @@ https://www.rfc1437.de/2011/06/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102178,7 +102529,7 @@ https://www.rfc1437.de/2011/06/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102187,7 +102538,7 @@ https://www.rfc1437.de/2011/06/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102196,7 +102547,7 @@ https://www.rfc1437.de/2011/06/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102205,7 +102556,7 @@ https://www.rfc1437.de/2011/06/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102214,7 +102565,7 @@ https://www.rfc1437.de/2011/06/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102223,7 +102574,7 @@ https://www.rfc1437.de/2011/06/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102232,7 +102583,7 @@ https://www.rfc1437.de/2011/06/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102241,7 +102592,7 @@ https://www.rfc1437.de/2011/06/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102250,7 +102601,7 @@ https://www.rfc1437.de/2011/06/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102259,7 +102610,7 @@ https://www.rfc1437.de/2011/06/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102268,7 +102619,7 @@ https://www.rfc1437.de/2011/05/31/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102277,7 +102628,7 @@ https://www.rfc1437.de/2011/05/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102286,7 +102637,7 @@ https://www.rfc1437.de/2011/05/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102295,7 +102646,7 @@ https://www.rfc1437.de/2011/05/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102304,7 +102655,7 @@ https://www.rfc1437.de/2011/05/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102313,7 +102664,7 @@ https://www.rfc1437.de/2011/05/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102322,7 +102673,7 @@ https://www.rfc1437.de/2011/05/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102331,7 +102682,7 @@ https://www.rfc1437.de/2011/05/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102340,7 +102691,7 @@ https://www.rfc1437.de/2011/05/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102349,7 +102700,7 @@ https://www.rfc1437.de/2011/05/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102358,7 +102709,7 @@ https://www.rfc1437.de/2011/05/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102367,7 +102718,7 @@ https://www.rfc1437.de/2011/05/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102376,7 +102727,7 @@ https://www.rfc1437.de/2011/05/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102385,7 +102736,7 @@ https://www.rfc1437.de/2011/05/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102394,7 +102745,7 @@ https://www.rfc1437.de/2011/05/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102403,7 +102754,7 @@ https://www.rfc1437.de/2011/05/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102412,7 +102763,7 @@ https://www.rfc1437.de/2011/05/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102421,7 +102772,7 @@ https://www.rfc1437.de/2011/05/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102430,7 +102781,7 @@ https://www.rfc1437.de/2011/05/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102439,7 +102790,7 @@ https://www.rfc1437.de/2011/05/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102448,7 +102799,7 @@ https://www.rfc1437.de/2011/05/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102457,7 +102808,7 @@ https://www.rfc1437.de/2011/05/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102466,7 +102817,7 @@ https://www.rfc1437.de/2011/05/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102475,7 +102826,7 @@ https://www.rfc1437.de/2011/05/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102484,7 +102835,7 @@ https://www.rfc1437.de/2011/05/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102493,7 +102844,7 @@ https://www.rfc1437.de/2011/05/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102502,7 +102853,7 @@ https://www.rfc1437.de/2011/05/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102511,7 +102862,7 @@ https://www.rfc1437.de/2011/04/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102520,7 +102871,7 @@ https://www.rfc1437.de/2011/04/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102529,7 +102880,7 @@ https://www.rfc1437.de/2011/04/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102538,7 +102889,7 @@ https://www.rfc1437.de/2011/04/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102547,7 +102898,7 @@ https://www.rfc1437.de/2011/04/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102556,7 +102907,7 @@ https://www.rfc1437.de/2011/04/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102565,7 +102916,7 @@ https://www.rfc1437.de/2011/04/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102574,7 +102925,7 @@ https://www.rfc1437.de/2011/04/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102583,7 +102934,7 @@ https://www.rfc1437.de/2011/04/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102592,7 +102943,7 @@ https://www.rfc1437.de/2011/04/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102601,7 +102952,7 @@ https://www.rfc1437.de/2011/04/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102610,7 +102961,7 @@ https://www.rfc1437.de/2011/04/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102619,7 +102970,7 @@ https://www.rfc1437.de/2011/04/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102628,7 +102979,7 @@ https://www.rfc1437.de/2011/04/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102637,7 +102988,7 @@ https://www.rfc1437.de/2011/04/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102646,7 +102997,7 @@ https://www.rfc1437.de/2011/04/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102655,7 +103006,7 @@ https://www.rfc1437.de/2011/04/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102664,7 +103015,7 @@ https://www.rfc1437.de/2011/04/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102673,7 +103024,7 @@ https://www.rfc1437.de/2011/04/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102682,7 +103033,7 @@ https://www.rfc1437.de/2011/04/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102691,7 +103042,7 @@ https://www.rfc1437.de/2011/04/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102700,7 +103051,7 @@ https://www.rfc1437.de/2011/04/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102709,7 +103060,7 @@ https://www.rfc1437.de/2011/03/31/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102718,7 +103069,7 @@ https://www.rfc1437.de/2011/03/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102727,7 +103078,7 @@ https://www.rfc1437.de/2011/03/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102736,7 +103087,7 @@ https://www.rfc1437.de/2011/03/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102745,7 +103096,7 @@ https://www.rfc1437.de/2011/03/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102754,7 +103105,7 @@ https://www.rfc1437.de/2011/03/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102763,7 +103114,7 @@ https://www.rfc1437.de/2011/03/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102772,7 +103123,7 @@ https://www.rfc1437.de/2011/03/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102781,7 +103132,7 @@ https://www.rfc1437.de/2011/03/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102790,7 +103141,7 @@ https://www.rfc1437.de/2011/03/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102799,7 +103150,7 @@ https://www.rfc1437.de/2011/03/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102808,7 +103159,7 @@ https://www.rfc1437.de/2011/03/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102817,7 +103168,7 @@ https://www.rfc1437.de/2011/03/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102826,7 +103177,7 @@ https://www.rfc1437.de/2011/03/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102835,7 +103186,7 @@ https://www.rfc1437.de/2011/03/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102844,7 +103195,7 @@ https://www.rfc1437.de/2011/03/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102853,7 +103204,7 @@ https://www.rfc1437.de/2011/03/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102862,7 +103213,7 @@ https://www.rfc1437.de/2011/03/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102871,7 +103222,7 @@ https://www.rfc1437.de/2011/03/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102880,7 +103231,7 @@ https://www.rfc1437.de/2011/03/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102889,7 +103240,7 @@ https://www.rfc1437.de/2011/03/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102898,7 +103249,7 @@ https://www.rfc1437.de/2011/03/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102907,7 +103258,7 @@ https://www.rfc1437.de/2011/03/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102916,7 +103267,7 @@ https://www.rfc1437.de/2011/03/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102925,7 +103276,7 @@ https://www.rfc1437.de/2011/03/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102934,7 +103285,7 @@ https://www.rfc1437.de/2011/02/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102943,7 +103294,7 @@ https://www.rfc1437.de/2011/02/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102952,7 +103303,7 @@ https://www.rfc1437.de/2011/02/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102961,7 +103312,7 @@ https://www.rfc1437.de/2011/02/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102970,7 +103321,7 @@ https://www.rfc1437.de/2011/02/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102979,7 +103330,7 @@ https://www.rfc1437.de/2011/02/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102988,7 +103339,7 @@ https://www.rfc1437.de/2011/02/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -102997,7 +103348,7 @@ https://www.rfc1437.de/2011/02/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103006,7 +103357,7 @@ https://www.rfc1437.de/2011/02/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103015,7 +103366,7 @@ https://www.rfc1437.de/2011/02/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103024,7 +103375,7 @@ https://www.rfc1437.de/2011/02/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103033,7 +103384,7 @@ https://www.rfc1437.de/2011/02/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103042,7 +103393,7 @@ https://www.rfc1437.de/2011/02/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103051,7 +103402,7 @@ https://www.rfc1437.de/2011/02/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103060,7 +103411,7 @@ https://www.rfc1437.de/2011/02/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103069,7 +103420,7 @@ https://www.rfc1437.de/2011/02/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103078,7 +103429,7 @@ https://www.rfc1437.de/2011/02/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103087,7 +103438,7 @@ https://www.rfc1437.de/2011/02/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103096,7 +103447,7 @@ https://www.rfc1437.de/2011/02/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103105,7 +103456,7 @@ https://www.rfc1437.de/2011/02/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103114,7 +103465,7 @@ https://www.rfc1437.de/2011/02/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103123,7 +103474,7 @@ https://www.rfc1437.de/2011/02/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103132,7 +103483,7 @@ https://www.rfc1437.de/2011/02/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103141,7 +103492,7 @@ https://www.rfc1437.de/2011/02/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103150,7 +103501,7 @@ https://www.rfc1437.de/2011/02/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103159,7 +103510,7 @@ https://www.rfc1437.de/2011/01/31/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103168,7 +103519,7 @@ https://www.rfc1437.de/2011/01/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103177,7 +103528,7 @@ https://www.rfc1437.de/2011/01/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103186,7 +103537,7 @@ https://www.rfc1437.de/2011/01/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103195,7 +103546,7 @@ https://www.rfc1437.de/2011/01/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103204,7 +103555,7 @@ https://www.rfc1437.de/2011/01/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103213,7 +103564,7 @@ https://www.rfc1437.de/2011/01/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103222,7 +103573,7 @@ https://www.rfc1437.de/2011/01/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103231,7 +103582,7 @@ https://www.rfc1437.de/2011/01/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103240,7 +103591,7 @@ https://www.rfc1437.de/2011/01/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103249,7 +103600,7 @@ https://www.rfc1437.de/2011/01/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103258,7 +103609,7 @@ https://www.rfc1437.de/2011/01/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103267,7 +103618,7 @@ https://www.rfc1437.de/2011/01/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103276,7 +103627,7 @@ https://www.rfc1437.de/2011/01/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103285,7 +103636,7 @@ https://www.rfc1437.de/2011/01/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103294,7 +103645,7 @@ https://www.rfc1437.de/2011/01/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103303,7 +103654,7 @@ https://www.rfc1437.de/2011/01/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103312,7 +103663,7 @@ https://www.rfc1437.de/2011/01/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103321,7 +103672,7 @@ https://www.rfc1437.de/2010/12/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103330,7 +103681,7 @@ https://www.rfc1437.de/2010/12/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103339,7 +103690,7 @@ https://www.rfc1437.de/2010/12/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103348,7 +103699,7 @@ https://www.rfc1437.de/2010/12/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103357,7 +103708,7 @@ https://www.rfc1437.de/2010/12/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103366,7 +103717,7 @@ https://www.rfc1437.de/2010/12/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103375,7 +103726,7 @@ https://www.rfc1437.de/2010/12/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103384,7 +103735,7 @@ https://www.rfc1437.de/2010/12/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103393,7 +103744,7 @@ https://www.rfc1437.de/2010/12/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103402,7 +103753,7 @@ https://www.rfc1437.de/2010/12/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103411,7 +103762,7 @@ https://www.rfc1437.de/2010/12/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103420,7 +103771,7 @@ https://www.rfc1437.de/2010/12/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103429,7 +103780,7 @@ https://www.rfc1437.de/2010/12/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103438,7 +103789,7 @@ https://www.rfc1437.de/2010/12/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103447,7 +103798,7 @@ https://www.rfc1437.de/2010/12/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103456,7 +103807,7 @@ https://www.rfc1437.de/2010/12/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103465,7 +103816,7 @@ https://www.rfc1437.de/2010/12/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103474,7 +103825,7 @@ https://www.rfc1437.de/2010/12/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103483,7 +103834,7 @@ https://www.rfc1437.de/2010/12/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103492,7 +103843,7 @@ https://www.rfc1437.de/2010/12/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103501,7 +103852,7 @@ https://www.rfc1437.de/2010/12/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103510,7 +103861,7 @@ https://www.rfc1437.de/2010/12/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103519,7 +103870,7 @@ https://www.rfc1437.de/2010/12/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103528,7 +103879,7 @@ https://www.rfc1437.de/2010/12/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103537,7 +103888,7 @@ https://www.rfc1437.de/2010/12/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103546,7 +103897,7 @@ https://www.rfc1437.de/2010/11/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103555,7 +103906,7 @@ https://www.rfc1437.de/2010/11/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103564,7 +103915,7 @@ https://www.rfc1437.de/2010/11/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103573,7 +103924,7 @@ https://www.rfc1437.de/2010/11/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103582,7 +103933,7 @@ https://www.rfc1437.de/2010/11/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103591,7 +103942,7 @@ https://www.rfc1437.de/2010/11/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103600,7 +103951,7 @@ https://www.rfc1437.de/2010/11/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103609,7 +103960,7 @@ https://www.rfc1437.de/2010/11/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103618,7 +103969,7 @@ https://www.rfc1437.de/2010/11/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103627,7 +103978,7 @@ https://www.rfc1437.de/2010/11/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103636,7 +103987,7 @@ https://www.rfc1437.de/2010/11/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103645,7 +103996,7 @@ https://www.rfc1437.de/2010/11/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103654,7 +104005,7 @@ https://www.rfc1437.de/2010/11/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103663,7 +104014,7 @@ https://www.rfc1437.de/2010/11/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103672,7 +104023,7 @@ https://www.rfc1437.de/2010/11/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103681,7 +104032,7 @@ https://www.rfc1437.de/2010/11/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103690,7 +104041,7 @@ https://www.rfc1437.de/2010/11/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103699,7 +104050,7 @@ https://www.rfc1437.de/2010/11/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103708,7 +104059,7 @@ https://www.rfc1437.de/2010/11/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103717,7 +104068,7 @@ https://www.rfc1437.de/2010/11/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103726,7 +104077,7 @@ https://www.rfc1437.de/2010/11/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103735,7 +104086,7 @@ https://www.rfc1437.de/2010/11/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103744,7 +104095,7 @@ https://www.rfc1437.de/2010/11/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103753,7 +104104,7 @@ https://www.rfc1437.de/2010/11/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103762,7 +104113,7 @@ https://www.rfc1437.de/2010/11/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103771,7 +104122,7 @@ https://www.rfc1437.de/2010/10/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103780,7 +104131,7 @@ https://www.rfc1437.de/2010/10/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103789,7 +104140,7 @@ https://www.rfc1437.de/2010/10/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103798,7 +104149,7 @@ https://www.rfc1437.de/2010/10/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103807,7 +104158,7 @@ https://www.rfc1437.de/2010/10/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103816,7 +104167,7 @@ https://www.rfc1437.de/2010/10/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103825,7 +104176,7 @@ https://www.rfc1437.de/2010/10/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103834,7 +104185,7 @@ https://www.rfc1437.de/2010/10/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103843,7 +104194,7 @@ https://www.rfc1437.de/2010/10/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103852,7 +104203,7 @@ https://www.rfc1437.de/2010/10/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103861,7 +104212,7 @@ https://www.rfc1437.de/2010/10/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103870,7 +104221,7 @@ https://www.rfc1437.de/2010/10/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103879,7 +104230,7 @@ https://www.rfc1437.de/2010/10/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103888,7 +104239,7 @@ https://www.rfc1437.de/2010/10/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103897,7 +104248,7 @@ https://www.rfc1437.de/2010/09/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103906,7 +104257,7 @@ https://www.rfc1437.de/2010/09/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103915,7 +104266,7 @@ https://www.rfc1437.de/2010/09/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103924,7 +104275,7 @@ https://www.rfc1437.de/2010/09/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103933,7 +104284,7 @@ https://www.rfc1437.de/2010/09/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103942,7 +104293,7 @@ https://www.rfc1437.de/2010/09/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103951,7 +104302,7 @@ https://www.rfc1437.de/2010/09/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103960,7 +104311,7 @@ https://www.rfc1437.de/2010/09/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103969,7 +104320,7 @@ https://www.rfc1437.de/2010/09/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103978,7 +104329,7 @@ https://www.rfc1437.de/2010/09/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103987,7 +104338,7 @@ https://www.rfc1437.de/2010/09/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -103996,7 +104347,7 @@ https://www.rfc1437.de/2010/09/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104005,7 +104356,7 @@ https://www.rfc1437.de/2010/09/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104014,7 +104365,7 @@ https://www.rfc1437.de/2010/08/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104023,7 +104374,7 @@ https://www.rfc1437.de/2010/08/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104032,7 +104383,7 @@ https://www.rfc1437.de/2010/08/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104041,7 +104392,7 @@ https://www.rfc1437.de/2010/08/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104050,7 +104401,7 @@ https://www.rfc1437.de/2010/08/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104059,7 +104410,7 @@ https://www.rfc1437.de/2010/08/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104068,7 +104419,7 @@ https://www.rfc1437.de/2010/07/31/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104077,7 +104428,7 @@ https://www.rfc1437.de/2010/07/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104086,7 +104437,7 @@ https://www.rfc1437.de/2010/07/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104095,7 +104446,7 @@ https://www.rfc1437.de/2010/07/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104104,7 +104455,7 @@ https://www.rfc1437.de/2010/07/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104113,7 +104464,7 @@ https://www.rfc1437.de/2010/07/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104122,7 +104473,7 @@ https://www.rfc1437.de/2010/07/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104131,7 +104482,7 @@ https://www.rfc1437.de/2010/07/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104140,7 +104491,7 @@ https://www.rfc1437.de/2010/07/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104149,7 +104500,7 @@ https://www.rfc1437.de/2010/07/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104158,7 +104509,7 @@ https://www.rfc1437.de/2010/07/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104167,7 +104518,7 @@ https://www.rfc1437.de/2010/07/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104176,7 +104527,7 @@ https://www.rfc1437.de/2010/07/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104185,7 +104536,7 @@ https://www.rfc1437.de/2010/07/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104194,7 +104545,7 @@ https://www.rfc1437.de/2010/07/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104203,7 +104554,7 @@ https://www.rfc1437.de/2010/07/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104212,7 +104563,7 @@ https://www.rfc1437.de/2010/07/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104221,7 +104572,7 @@ https://www.rfc1437.de/2010/07/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104230,7 +104581,7 @@ https://www.rfc1437.de/2010/07/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104239,7 +104590,7 @@ https://www.rfc1437.de/2010/07/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104248,7 +104599,7 @@ https://www.rfc1437.de/2010/07/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104257,7 +104608,7 @@ https://www.rfc1437.de/2010/06/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104266,7 +104617,7 @@ https://www.rfc1437.de/2010/06/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104275,7 +104626,7 @@ https://www.rfc1437.de/2010/06/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104284,7 +104635,7 @@ https://www.rfc1437.de/2010/06/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104293,7 +104644,7 @@ https://www.rfc1437.de/2010/06/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104302,7 +104653,7 @@ https://www.rfc1437.de/2010/06/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104311,7 +104662,7 @@ https://www.rfc1437.de/2010/06/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104320,7 +104671,7 @@ https://www.rfc1437.de/2010/06/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104329,7 +104680,7 @@ https://www.rfc1437.de/2010/06/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104338,7 +104689,7 @@ https://www.rfc1437.de/2010/06/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104347,7 +104698,7 @@ https://www.rfc1437.de/2010/06/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104356,7 +104707,7 @@ https://www.rfc1437.de/2010/06/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104365,7 +104716,7 @@ https://www.rfc1437.de/2010/06/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104374,7 +104725,7 @@ https://www.rfc1437.de/2010/06/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104383,7 +104734,7 @@ https://www.rfc1437.de/2010/05/31/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104392,7 +104743,7 @@ https://www.rfc1437.de/2010/05/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104401,7 +104752,7 @@ https://www.rfc1437.de/2010/05/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104410,7 +104761,7 @@ https://www.rfc1437.de/2010/05/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104419,7 +104770,7 @@ https://www.rfc1437.de/2010/05/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104428,7 +104779,7 @@ https://www.rfc1437.de/2010/05/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104437,7 +104788,7 @@ https://www.rfc1437.de/2010/05/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104446,7 +104797,7 @@ https://www.rfc1437.de/2010/05/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104455,7 +104806,7 @@ https://www.rfc1437.de/2010/05/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104464,7 +104815,7 @@ https://www.rfc1437.de/2010/05/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104473,7 +104824,7 @@ https://www.rfc1437.de/2010/05/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104482,7 +104833,7 @@ https://www.rfc1437.de/2010/05/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104491,7 +104842,7 @@ https://www.rfc1437.de/2010/05/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104500,7 +104851,7 @@ https://www.rfc1437.de/2010/05/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104509,7 +104860,7 @@ https://www.rfc1437.de/2010/05/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104518,7 +104869,7 @@ https://www.rfc1437.de/2010/05/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104527,7 +104878,7 @@ https://www.rfc1437.de/2010/05/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104536,7 +104887,7 @@ https://www.rfc1437.de/2010/05/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104545,7 +104896,7 @@ https://www.rfc1437.de/2010/05/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104554,7 +104905,7 @@ https://www.rfc1437.de/2010/05/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104563,7 +104914,7 @@ https://www.rfc1437.de/2010/04/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104572,7 +104923,7 @@ https://www.rfc1437.de/2010/04/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104581,7 +104932,7 @@ https://www.rfc1437.de/2010/04/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104590,7 +104941,7 @@ https://www.rfc1437.de/2010/04/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104599,7 +104950,7 @@ https://www.rfc1437.de/2010/04/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104608,7 +104959,7 @@ https://www.rfc1437.de/2010/04/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104617,7 +104968,7 @@ https://www.rfc1437.de/2010/04/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104626,7 +104977,7 @@ https://www.rfc1437.de/2010/04/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104635,7 +104986,7 @@ https://www.rfc1437.de/2010/04/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104644,7 +104995,7 @@ https://www.rfc1437.de/2010/04/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104653,7 +105004,7 @@ https://www.rfc1437.de/2010/04/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104662,7 +105013,7 @@ https://www.rfc1437.de/2010/04/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104671,7 +105022,7 @@ https://www.rfc1437.de/2010/04/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104680,7 +105031,7 @@ https://www.rfc1437.de/2010/04/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104689,7 +105040,7 @@ https://www.rfc1437.de/2010/04/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104698,7 +105049,7 @@ https://www.rfc1437.de/2010/03/31/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104707,7 +105058,7 @@ https://www.rfc1437.de/2010/03/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104716,7 +105067,7 @@ https://www.rfc1437.de/2010/03/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104725,7 +105076,7 @@ https://www.rfc1437.de/2010/03/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104734,7 +105085,7 @@ https://www.rfc1437.de/2010/03/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104743,7 +105094,7 @@ https://www.rfc1437.de/2010/03/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104752,7 +105103,7 @@ https://www.rfc1437.de/2010/03/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104761,7 +105112,7 @@ https://www.rfc1437.de/2010/03/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104770,7 +105121,7 @@ https://www.rfc1437.de/2010/02/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104779,7 +105130,7 @@ https://www.rfc1437.de/2010/02/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104788,7 +105139,7 @@ https://www.rfc1437.de/2010/02/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104797,7 +105148,7 @@ https://www.rfc1437.de/2010/02/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104806,7 +105157,7 @@ https://www.rfc1437.de/2010/02/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104815,7 +105166,7 @@ https://www.rfc1437.de/2010/02/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104824,7 +105175,7 @@ https://www.rfc1437.de/2010/02/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104833,7 +105184,7 @@ https://www.rfc1437.de/2010/02/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104842,7 +105193,7 @@ https://www.rfc1437.de/2010/02/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104851,7 +105202,7 @@ https://www.rfc1437.de/2010/02/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104860,7 +105211,7 @@ https://www.rfc1437.de/2010/02/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104869,7 +105220,7 @@ https://www.rfc1437.de/2010/02/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104878,7 +105229,7 @@ https://www.rfc1437.de/2010/02/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104887,7 +105238,7 @@ https://www.rfc1437.de/2010/02/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104896,7 +105247,7 @@ https://www.rfc1437.de/2010/02/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104905,7 +105256,7 @@ https://www.rfc1437.de/2010/02/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104914,7 +105265,7 @@ https://www.rfc1437.de/2010/02/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104923,7 +105274,7 @@ https://www.rfc1437.de/2010/02/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104932,7 +105283,7 @@ https://www.rfc1437.de/2010/02/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104941,7 +105292,7 @@ https://www.rfc1437.de/2010/02/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104950,7 +105301,7 @@ https://www.rfc1437.de/2010/02/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104959,7 +105310,7 @@ https://www.rfc1437.de/2010/01/31/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104968,7 +105319,7 @@ https://www.rfc1437.de/2010/01/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104977,7 +105328,7 @@ https://www.rfc1437.de/2010/01/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104986,7 +105337,7 @@ https://www.rfc1437.de/2010/01/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -104995,7 +105346,7 @@ https://www.rfc1437.de/2010/01/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105004,7 +105355,7 @@ https://www.rfc1437.de/2010/01/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105013,7 +105364,7 @@ https://www.rfc1437.de/2010/01/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105022,7 +105373,7 @@ https://www.rfc1437.de/2010/01/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105031,7 +105382,7 @@ https://www.rfc1437.de/2010/01/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105040,7 +105391,7 @@ https://www.rfc1437.de/2010/01/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105049,7 +105400,7 @@ https://www.rfc1437.de/2010/01/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105058,7 +105409,7 @@ https://www.rfc1437.de/2010/01/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105067,7 +105418,7 @@ https://www.rfc1437.de/2010/01/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105076,7 +105427,7 @@ https://www.rfc1437.de/2010/01/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105085,7 +105436,7 @@ https://www.rfc1437.de/2010/01/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105094,7 +105445,7 @@ https://www.rfc1437.de/2010/01/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105103,7 +105454,7 @@ https://www.rfc1437.de/2010/01/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105112,7 +105463,7 @@ https://www.rfc1437.de/2010/01/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105121,7 +105472,7 @@ https://www.rfc1437.de/2010/01/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105130,7 +105481,7 @@ https://www.rfc1437.de/2010/01/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105139,7 +105490,7 @@ https://www.rfc1437.de/2010/01/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105148,7 +105499,7 @@ https://www.rfc1437.de/2010/01/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105157,7 +105508,7 @@ https://www.rfc1437.de/2010/01/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105166,7 +105517,7 @@ https://www.rfc1437.de/2010/01/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105175,7 +105526,7 @@ https://www.rfc1437.de/2010/01/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105184,7 +105535,7 @@ https://www.rfc1437.de/2010/01/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105193,7 +105544,7 @@ https://www.rfc1437.de/2010/01/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105202,7 +105553,7 @@ https://www.rfc1437.de/2010/01/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105211,7 +105562,7 @@ https://www.rfc1437.de/2009/12/31/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105220,7 +105571,7 @@ https://www.rfc1437.de/2009/12/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105229,7 +105580,7 @@ https://www.rfc1437.de/2009/12/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105238,7 +105589,7 @@ https://www.rfc1437.de/2009/12/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105247,7 +105598,7 @@ https://www.rfc1437.de/2009/12/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105256,7 +105607,7 @@ https://www.rfc1437.de/2009/12/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105265,7 +105616,7 @@ https://www.rfc1437.de/2009/12/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105274,7 +105625,7 @@ https://www.rfc1437.de/2009/12/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105283,7 +105634,7 @@ https://www.rfc1437.de/2009/12/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105292,7 +105643,7 @@ https://www.rfc1437.de/2009/12/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105301,7 +105652,7 @@ https://www.rfc1437.de/2009/12/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105310,7 +105661,7 @@ https://www.rfc1437.de/2009/12/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105319,7 +105670,7 @@ https://www.rfc1437.de/2009/12/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105328,7 +105679,7 @@ https://www.rfc1437.de/2009/12/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105337,7 +105688,7 @@ https://www.rfc1437.de/2009/12/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105346,7 +105697,7 @@ https://www.rfc1437.de/2009/12/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105355,7 +105706,7 @@ https://www.rfc1437.de/2009/12/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105364,7 +105715,7 @@ https://www.rfc1437.de/2009/12/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105373,7 +105724,7 @@ https://www.rfc1437.de/2009/12/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105382,7 +105733,7 @@ https://www.rfc1437.de/2009/12/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105391,7 +105742,7 @@ https://www.rfc1437.de/2009/12/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105400,7 +105751,7 @@ https://www.rfc1437.de/2009/12/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105409,7 +105760,7 @@ https://www.rfc1437.de/2009/12/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105418,7 +105769,7 @@ https://www.rfc1437.de/2009/12/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105427,7 +105778,7 @@ https://www.rfc1437.de/2009/12/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105436,7 +105787,7 @@ https://www.rfc1437.de/2009/12/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105445,7 +105796,7 @@ https://www.rfc1437.de/2009/12/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105454,7 +105805,7 @@ https://www.rfc1437.de/2009/11/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105463,7 +105814,7 @@ https://www.rfc1437.de/2009/11/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105472,7 +105823,7 @@ https://www.rfc1437.de/2009/11/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105481,7 +105832,7 @@ https://www.rfc1437.de/2009/11/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105490,7 +105841,7 @@ https://www.rfc1437.de/2009/11/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105499,7 +105850,7 @@ https://www.rfc1437.de/2009/11/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105508,7 +105859,7 @@ https://www.rfc1437.de/2009/11/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105517,7 +105868,7 @@ https://www.rfc1437.de/2009/11/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105526,7 +105877,7 @@ https://www.rfc1437.de/2009/11/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105535,7 +105886,7 @@ https://www.rfc1437.de/2009/11/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105544,7 +105895,7 @@ https://www.rfc1437.de/2009/11/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105553,7 +105904,7 @@ https://www.rfc1437.de/2009/11/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105562,7 +105913,7 @@ https://www.rfc1437.de/2009/11/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105571,7 +105922,7 @@ https://www.rfc1437.de/2009/11/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105580,7 +105931,7 @@ https://www.rfc1437.de/2009/11/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105589,7 +105940,7 @@ https://www.rfc1437.de/2009/11/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105598,7 +105949,7 @@ https://www.rfc1437.de/2009/11/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105607,7 +105958,7 @@ https://www.rfc1437.de/2009/11/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105616,7 +105967,7 @@ https://www.rfc1437.de/2009/11/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105625,7 +105976,7 @@ https://www.rfc1437.de/2009/11/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105634,7 +105985,7 @@ https://www.rfc1437.de/2009/10/31/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105643,7 +105994,7 @@ https://www.rfc1437.de/2009/10/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105652,7 +106003,7 @@ https://www.rfc1437.de/2009/10/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105661,7 +106012,7 @@ https://www.rfc1437.de/2009/10/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105670,7 +106021,7 @@ https://www.rfc1437.de/2009/10/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105679,7 +106030,7 @@ https://www.rfc1437.de/2009/10/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105688,7 +106039,7 @@ https://www.rfc1437.de/2009/10/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105697,7 +106048,7 @@ https://www.rfc1437.de/2009/10/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105706,7 +106057,7 @@ https://www.rfc1437.de/2009/10/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105715,7 +106066,7 @@ https://www.rfc1437.de/2009/10/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105724,7 +106075,7 @@ https://www.rfc1437.de/2009/10/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105733,7 +106084,7 @@ https://www.rfc1437.de/2009/10/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105742,7 +106093,7 @@ https://www.rfc1437.de/2009/10/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105751,7 +106102,7 @@ https://www.rfc1437.de/2009/10/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105760,7 +106111,7 @@ https://www.rfc1437.de/2009/10/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105769,7 +106120,7 @@ https://www.rfc1437.de/2009/10/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105778,7 +106129,7 @@ https://www.rfc1437.de/2009/10/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105787,7 +106138,7 @@ https://www.rfc1437.de/2009/10/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105796,7 +106147,7 @@ https://www.rfc1437.de/2009/10/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105805,7 +106156,7 @@ https://www.rfc1437.de/2009/10/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105814,7 +106165,7 @@ https://www.rfc1437.de/2009/10/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105823,7 +106174,7 @@ https://www.rfc1437.de/2009/10/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105832,7 +106183,7 @@ https://www.rfc1437.de/2009/10/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105841,7 +106192,7 @@ https://www.rfc1437.de/2009/10/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105850,7 +106201,7 @@ https://www.rfc1437.de/2009/10/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105859,7 +106210,7 @@ https://www.rfc1437.de/2009/10/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105868,7 +106219,7 @@ https://www.rfc1437.de/2009/10/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105877,7 +106228,7 @@ https://www.rfc1437.de/2009/10/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105886,7 +106237,7 @@ https://www.rfc1437.de/2009/09/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105895,7 +106246,7 @@ https://www.rfc1437.de/2009/09/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105904,7 +106255,7 @@ https://www.rfc1437.de/2009/09/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105913,7 +106264,7 @@ https://www.rfc1437.de/2009/09/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105922,7 +106273,7 @@ https://www.rfc1437.de/2009/09/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105931,7 +106282,7 @@ https://www.rfc1437.de/2009/09/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105940,7 +106291,7 @@ https://www.rfc1437.de/2009/09/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105949,7 +106300,7 @@ https://www.rfc1437.de/2009/09/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105958,7 +106309,7 @@ https://www.rfc1437.de/2009/09/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105967,7 +106318,7 @@ https://www.rfc1437.de/2009/09/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105976,7 +106327,7 @@ https://www.rfc1437.de/2009/09/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105985,7 +106336,7 @@ https://www.rfc1437.de/2009/09/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -105994,7 +106345,7 @@ https://www.rfc1437.de/2009/09/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106003,7 +106354,7 @@ https://www.rfc1437.de/2009/09/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106012,7 +106363,7 @@ https://www.rfc1437.de/2009/09/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106021,7 +106372,7 @@ https://www.rfc1437.de/2009/09/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106030,7 +106381,7 @@ https://www.rfc1437.de/2009/09/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106039,7 +106390,7 @@ https://www.rfc1437.de/2009/09/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106048,7 +106399,7 @@ https://www.rfc1437.de/2009/09/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106057,7 +106408,7 @@ https://www.rfc1437.de/2009/09/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106066,7 +106417,7 @@ https://www.rfc1437.de/2009/09/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106075,7 +106426,7 @@ https://www.rfc1437.de/2009/09/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106084,7 +106435,7 @@ https://www.rfc1437.de/2009/08/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106093,7 +106444,7 @@ https://www.rfc1437.de/2009/08/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106102,7 +106453,7 @@ https://www.rfc1437.de/2009/08/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106111,7 +106462,7 @@ https://www.rfc1437.de/2009/08/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106120,7 +106471,7 @@ https://www.rfc1437.de/2009/08/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106129,7 +106480,7 @@ https://www.rfc1437.de/2009/08/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106138,7 +106489,7 @@ https://www.rfc1437.de/2009/08/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106147,7 +106498,7 @@ https://www.rfc1437.de/2009/08/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106156,7 +106507,7 @@ https://www.rfc1437.de/2009/08/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106165,7 +106516,7 @@ https://www.rfc1437.de/2009/08/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106174,7 +106525,7 @@ https://www.rfc1437.de/2009/08/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106183,7 +106534,7 @@ https://www.rfc1437.de/2009/07/31/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106192,7 +106543,7 @@ https://www.rfc1437.de/2009/07/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106201,7 +106552,7 @@ https://www.rfc1437.de/2009/07/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106210,7 +106561,7 @@ https://www.rfc1437.de/2009/07/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106219,7 +106570,7 @@ https://www.rfc1437.de/2009/07/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106228,7 +106579,7 @@ https://www.rfc1437.de/2009/07/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106237,7 +106588,7 @@ https://www.rfc1437.de/2009/07/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106246,7 +106597,7 @@ https://www.rfc1437.de/2009/07/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106255,7 +106606,7 @@ https://www.rfc1437.de/2009/07/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106264,7 +106615,7 @@ https://www.rfc1437.de/2009/07/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106273,7 +106624,7 @@ https://www.rfc1437.de/2009/07/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106282,7 +106633,7 @@ https://www.rfc1437.de/2009/07/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106291,7 +106642,7 @@ https://www.rfc1437.de/2009/07/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106300,7 +106651,7 @@ https://www.rfc1437.de/2009/07/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106309,7 +106660,7 @@ https://www.rfc1437.de/2009/06/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106318,7 +106669,7 @@ https://www.rfc1437.de/2009/06/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106327,7 +106678,7 @@ https://www.rfc1437.de/2009/06/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106336,7 +106687,7 @@ https://www.rfc1437.de/2009/06/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106345,7 +106696,7 @@ https://www.rfc1437.de/2009/06/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106354,7 +106705,7 @@ https://www.rfc1437.de/2009/06/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106363,7 +106714,7 @@ https://www.rfc1437.de/2009/06/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106372,7 +106723,7 @@ https://www.rfc1437.de/2009/06/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106381,7 +106732,7 @@ https://www.rfc1437.de/2009/06/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106390,7 +106741,7 @@ https://www.rfc1437.de/2009/06/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106399,7 +106750,7 @@ https://www.rfc1437.de/2009/06/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106408,7 +106759,7 @@ https://www.rfc1437.de/2009/06/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106417,7 +106768,7 @@ https://www.rfc1437.de/2009/06/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106426,7 +106777,7 @@ https://www.rfc1437.de/2009/06/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106435,7 +106786,7 @@ https://www.rfc1437.de/2009/06/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106444,7 +106795,7 @@ https://www.rfc1437.de/2009/05/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106453,7 +106804,7 @@ https://www.rfc1437.de/2009/05/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106462,7 +106813,7 @@ https://www.rfc1437.de/2009/05/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106471,7 +106822,7 @@ https://www.rfc1437.de/2009/05/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106480,7 +106831,7 @@ https://www.rfc1437.de/2009/05/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106489,7 +106840,7 @@ https://www.rfc1437.de/2009/05/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106498,7 +106849,7 @@ https://www.rfc1437.de/2009/05/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106507,7 +106858,7 @@ https://www.rfc1437.de/2009/05/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106516,7 +106867,7 @@ https://www.rfc1437.de/2009/05/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106525,7 +106876,7 @@ https://www.rfc1437.de/2009/04/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106534,7 +106885,7 @@ https://www.rfc1437.de/2009/04/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106543,7 +106894,7 @@ https://www.rfc1437.de/2009/04/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106552,7 +106903,7 @@ https://www.rfc1437.de/2009/04/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106561,7 +106912,7 @@ https://www.rfc1437.de/2009/04/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106570,7 +106921,7 @@ https://www.rfc1437.de/2009/04/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106579,7 +106930,7 @@ https://www.rfc1437.de/2009/04/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106588,7 +106939,7 @@ https://www.rfc1437.de/2009/04/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106597,7 +106948,7 @@ https://www.rfc1437.de/2009/04/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106606,7 +106957,7 @@ https://www.rfc1437.de/2009/04/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106615,7 +106966,7 @@ https://www.rfc1437.de/2009/04/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106624,7 +106975,7 @@ https://www.rfc1437.de/2009/04/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106633,7 +106984,7 @@ https://www.rfc1437.de/2009/04/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106642,7 +106993,7 @@ https://www.rfc1437.de/2009/04/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106651,7 +107002,7 @@ https://www.rfc1437.de/2009/04/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106660,7 +107011,7 @@ https://www.rfc1437.de/2009/03/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106669,7 +107020,7 @@ https://www.rfc1437.de/2009/03/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106678,7 +107029,7 @@ https://www.rfc1437.de/2009/03/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106687,7 +107038,7 @@ https://www.rfc1437.de/2009/03/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106696,7 +107047,7 @@ https://www.rfc1437.de/2009/03/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106705,7 +107056,7 @@ https://www.rfc1437.de/2009/03/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106714,7 +107065,7 @@ https://www.rfc1437.de/2009/03/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106723,7 +107074,7 @@ https://www.rfc1437.de/2009/03/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106732,7 +107083,7 @@ https://www.rfc1437.de/2009/03/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106741,7 +107092,7 @@ https://www.rfc1437.de/2009/03/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106750,7 +107101,7 @@ https://www.rfc1437.de/2009/03/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106759,7 +107110,7 @@ https://www.rfc1437.de/2009/03/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106768,7 +107119,7 @@ https://www.rfc1437.de/2009/03/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106777,7 +107128,7 @@ https://www.rfc1437.de/2009/03/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106786,7 +107137,7 @@ https://www.rfc1437.de/2009/03/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106795,7 +107146,7 @@ https://www.rfc1437.de/2009/03/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106804,7 +107155,7 @@ https://www.rfc1437.de/2009/03/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106813,7 +107164,7 @@ https://www.rfc1437.de/2009/03/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106822,7 +107173,7 @@ https://www.rfc1437.de/2009/03/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106831,7 +107182,7 @@ https://www.rfc1437.de/2009/02/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106840,7 +107191,7 @@ https://www.rfc1437.de/2009/02/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106849,7 +107200,7 @@ https://www.rfc1437.de/2009/02/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106858,7 +107209,7 @@ https://www.rfc1437.de/2009/02/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106867,7 +107218,7 @@ https://www.rfc1437.de/2009/02/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106876,7 +107227,7 @@ https://www.rfc1437.de/2009/02/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106885,7 +107236,7 @@ https://www.rfc1437.de/2009/02/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106894,7 +107245,7 @@ https://www.rfc1437.de/2009/02/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106903,7 +107254,7 @@ https://www.rfc1437.de/2009/02/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106912,7 +107263,7 @@ https://www.rfc1437.de/2009/02/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106921,7 +107272,7 @@ https://www.rfc1437.de/2009/02/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106930,7 +107281,7 @@ https://www.rfc1437.de/2009/02/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106939,7 +107290,7 @@ https://www.rfc1437.de/2009/02/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106948,7 +107299,7 @@ https://www.rfc1437.de/2009/02/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106957,7 +107308,7 @@ https://www.rfc1437.de/2009/01/31/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106966,7 +107317,7 @@ https://www.rfc1437.de/2009/01/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106975,7 +107326,7 @@ https://www.rfc1437.de/2009/01/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106984,7 +107335,7 @@ https://www.rfc1437.de/2009/01/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -106993,7 +107344,7 @@ https://www.rfc1437.de/2009/01/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107002,7 +107353,7 @@ https://www.rfc1437.de/2009/01/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107011,7 +107362,7 @@ https://www.rfc1437.de/2009/01/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107020,7 +107371,7 @@ https://www.rfc1437.de/2009/01/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107029,7 +107380,7 @@ https://www.rfc1437.de/2009/01/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107038,7 +107389,7 @@ https://www.rfc1437.de/2009/01/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107047,7 +107398,7 @@ https://www.rfc1437.de/2009/01/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107056,7 +107407,7 @@ https://www.rfc1437.de/2009/01/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107065,7 +107416,7 @@ https://www.rfc1437.de/2009/01/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107074,7 +107425,7 @@ https://www.rfc1437.de/2009/01/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107083,7 +107434,7 @@ https://www.rfc1437.de/2009/01/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107092,7 +107443,7 @@ https://www.rfc1437.de/2008/12/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107101,7 +107452,7 @@ https://www.rfc1437.de/2008/12/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107110,7 +107461,7 @@ https://www.rfc1437.de/2008/12/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107119,7 +107470,7 @@ https://www.rfc1437.de/2008/12/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107128,7 +107479,7 @@ https://www.rfc1437.de/2008/12/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107137,7 +107488,7 @@ https://www.rfc1437.de/2008/12/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107146,7 +107497,7 @@ https://www.rfc1437.de/2008/11/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107155,7 +107506,7 @@ https://www.rfc1437.de/2008/11/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107164,7 +107515,7 @@ https://www.rfc1437.de/2008/11/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107173,7 +107524,7 @@ https://www.rfc1437.de/2008/11/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107182,7 +107533,7 @@ https://www.rfc1437.de/2008/11/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107191,7 +107542,7 @@ https://www.rfc1437.de/2008/11/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107200,7 +107551,7 @@ https://www.rfc1437.de/2008/11/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107209,7 +107560,7 @@ https://www.rfc1437.de/2008/11/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107218,7 +107569,7 @@ https://www.rfc1437.de/2008/11/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107227,7 +107578,7 @@ https://www.rfc1437.de/2008/11/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107236,7 +107587,7 @@ https://www.rfc1437.de/2008/11/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107245,7 +107596,7 @@ https://www.rfc1437.de/2008/11/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107254,7 +107605,7 @@ https://www.rfc1437.de/2008/11/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107263,7 +107614,7 @@ https://www.rfc1437.de/2008/10/31/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107272,7 +107623,7 @@ https://www.rfc1437.de/2008/10/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107281,7 +107632,7 @@ https://www.rfc1437.de/2008/10/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107290,7 +107641,7 @@ https://www.rfc1437.de/2008/10/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107299,7 +107650,7 @@ https://www.rfc1437.de/2008/10/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107308,7 +107659,7 @@ https://www.rfc1437.de/2008/10/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107317,7 +107668,7 @@ https://www.rfc1437.de/2008/10/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107326,7 +107677,7 @@ https://www.rfc1437.de/2008/10/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107335,7 +107686,7 @@ https://www.rfc1437.de/2008/10/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107344,7 +107695,7 @@ https://www.rfc1437.de/2008/10/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107353,7 +107704,7 @@ https://www.rfc1437.de/2008/10/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107362,7 +107713,7 @@ https://www.rfc1437.de/2008/10/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107371,7 +107722,7 @@ https://www.rfc1437.de/2008/10/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107380,7 +107731,7 @@ https://www.rfc1437.de/2008/10/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107389,7 +107740,7 @@ https://www.rfc1437.de/2008/10/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107398,7 +107749,7 @@ https://www.rfc1437.de/2008/10/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107407,7 +107758,7 @@ https://www.rfc1437.de/2008/10/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107416,7 +107767,7 @@ https://www.rfc1437.de/2008/10/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107425,7 +107776,7 @@ https://www.rfc1437.de/2008/10/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107434,7 +107785,7 @@ https://www.rfc1437.de/2008/10/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107443,7 +107794,7 @@ https://www.rfc1437.de/2008/10/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107452,7 +107803,7 @@ https://www.rfc1437.de/2008/10/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107461,7 +107812,7 @@ https://www.rfc1437.de/2008/10/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107470,7 +107821,7 @@ https://www.rfc1437.de/2008/09/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107479,7 +107830,7 @@ https://www.rfc1437.de/2008/09/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107488,7 +107839,7 @@ https://www.rfc1437.de/2008/09/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107497,7 +107848,7 @@ https://www.rfc1437.de/2008/09/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107506,7 +107857,7 @@ https://www.rfc1437.de/2008/09/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107515,7 +107866,7 @@ https://www.rfc1437.de/2008/09/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107524,7 +107875,7 @@ https://www.rfc1437.de/2008/09/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107533,7 +107884,7 @@ https://www.rfc1437.de/2008/09/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107542,7 +107893,7 @@ https://www.rfc1437.de/2008/09/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107551,7 +107902,7 @@ https://www.rfc1437.de/2008/09/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107560,7 +107911,7 @@ https://www.rfc1437.de/2008/09/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107569,7 +107920,7 @@ https://www.rfc1437.de/2008/09/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107578,7 +107929,7 @@ https://www.rfc1437.de/2008/09/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107587,7 +107938,7 @@ https://www.rfc1437.de/2008/09/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107596,7 +107947,7 @@ https://www.rfc1437.de/2008/09/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107605,7 +107956,7 @@ https://www.rfc1437.de/2008/09/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107614,7 +107965,7 @@ https://www.rfc1437.de/2008/09/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107623,7 +107974,7 @@ https://www.rfc1437.de/2008/08/31/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107632,7 +107983,7 @@ https://www.rfc1437.de/2008/08/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107641,7 +107992,7 @@ https://www.rfc1437.de/2008/08/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107650,7 +108001,7 @@ https://www.rfc1437.de/2008/08/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107659,7 +108010,7 @@ https://www.rfc1437.de/2008/08/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107668,7 +108019,7 @@ https://www.rfc1437.de/2008/08/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107677,7 +108028,7 @@ https://www.rfc1437.de/2008/08/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107686,7 +108037,7 @@ https://www.rfc1437.de/2008/08/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107695,7 +108046,7 @@ https://www.rfc1437.de/2008/08/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107704,7 +108055,7 @@ https://www.rfc1437.de/2008/08/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107713,7 +108064,7 @@ https://www.rfc1437.de/2008/08/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107722,7 +108073,7 @@ https://www.rfc1437.de/2008/08/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107731,7 +108082,7 @@ https://www.rfc1437.de/2008/08/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107740,7 +108091,7 @@ https://www.rfc1437.de/2008/08/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107749,7 +108100,7 @@ https://www.rfc1437.de/2008/07/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107758,7 +108109,7 @@ https://www.rfc1437.de/2008/07/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107767,7 +108118,7 @@ https://www.rfc1437.de/2008/07/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107776,7 +108127,7 @@ https://www.rfc1437.de/2008/07/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107785,7 +108136,7 @@ https://www.rfc1437.de/2008/07/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107794,7 +108145,7 @@ https://www.rfc1437.de/2008/07/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107803,7 +108154,7 @@ https://www.rfc1437.de/2008/07/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107812,7 +108163,7 @@ https://www.rfc1437.de/2008/07/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107821,7 +108172,7 @@ https://www.rfc1437.de/2008/07/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107830,7 +108181,7 @@ https://www.rfc1437.de/2008/07/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107839,7 +108190,7 @@ https://www.rfc1437.de/2008/07/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107848,7 +108199,7 @@ https://www.rfc1437.de/2008/07/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107857,7 +108208,7 @@ https://www.rfc1437.de/2008/07/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107866,7 +108217,7 @@ https://www.rfc1437.de/2008/07/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107875,7 +108226,7 @@ https://www.rfc1437.de/2008/07/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107884,7 +108235,7 @@ https://www.rfc1437.de/2008/07/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107893,7 +108244,7 @@ https://www.rfc1437.de/2008/07/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107902,7 +108253,7 @@ https://www.rfc1437.de/2008/06/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107911,7 +108262,7 @@ https://www.rfc1437.de/2008/06/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107920,7 +108271,7 @@ https://www.rfc1437.de/2008/06/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107929,7 +108280,7 @@ https://www.rfc1437.de/2008/06/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107938,7 +108289,7 @@ https://www.rfc1437.de/2008/06/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107947,7 +108298,7 @@ https://www.rfc1437.de/2008/06/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107956,7 +108307,7 @@ https://www.rfc1437.de/2008/06/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107965,7 +108316,7 @@ https://www.rfc1437.de/2008/06/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107974,7 +108325,7 @@ https://www.rfc1437.de/2008/06/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107983,7 +108334,7 @@ https://www.rfc1437.de/2008/06/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -107992,7 +108343,7 @@ https://www.rfc1437.de/2008/06/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108001,7 +108352,7 @@ https://www.rfc1437.de/2008/06/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108010,7 +108361,7 @@ https://www.rfc1437.de/2008/06/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108019,7 +108370,7 @@ https://www.rfc1437.de/2008/06/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108028,7 +108379,7 @@ https://www.rfc1437.de/2008/06/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108037,7 +108388,7 @@ https://www.rfc1437.de/2008/06/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108046,7 +108397,7 @@ https://www.rfc1437.de/2008/06/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108055,7 +108406,7 @@ https://www.rfc1437.de/2008/06/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108064,7 +108415,7 @@ https://www.rfc1437.de/2008/06/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108073,7 +108424,7 @@ https://www.rfc1437.de/2008/06/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108082,7 +108433,7 @@ https://www.rfc1437.de/2008/06/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108091,7 +108442,7 @@ https://www.rfc1437.de/2008/06/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108100,7 +108451,7 @@ https://www.rfc1437.de/2008/06/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108109,7 +108460,7 @@ https://www.rfc1437.de/2008/05/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108118,7 +108469,7 @@ https://www.rfc1437.de/2008/05/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108127,7 +108478,7 @@ https://www.rfc1437.de/2008/05/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108136,7 +108487,7 @@ https://www.rfc1437.de/2008/05/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108145,7 +108496,7 @@ https://www.rfc1437.de/2008/05/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108154,7 +108505,7 @@ https://www.rfc1437.de/2008/05/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108163,7 +108514,7 @@ https://www.rfc1437.de/2008/05/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108172,7 +108523,7 @@ https://www.rfc1437.de/2008/05/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108181,7 +108532,7 @@ https://www.rfc1437.de/2008/05/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108190,7 +108541,7 @@ https://www.rfc1437.de/2008/05/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108199,7 +108550,7 @@ https://www.rfc1437.de/2008/05/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108208,7 +108559,7 @@ https://www.rfc1437.de/2008/05/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108217,7 +108568,7 @@ https://www.rfc1437.de/2008/05/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108226,7 +108577,7 @@ https://www.rfc1437.de/2008/05/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108235,7 +108586,7 @@ https://www.rfc1437.de/2008/04/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108244,7 +108595,7 @@ https://www.rfc1437.de/2008/04/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108253,7 +108604,7 @@ https://www.rfc1437.de/2008/04/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108262,7 +108613,7 @@ https://www.rfc1437.de/2008/04/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108271,7 +108622,7 @@ https://www.rfc1437.de/2008/04/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108280,7 +108631,7 @@ https://www.rfc1437.de/2008/04/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108289,7 +108640,7 @@ https://www.rfc1437.de/2008/04/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108298,7 +108649,7 @@ https://www.rfc1437.de/2008/04/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108307,7 +108658,7 @@ https://www.rfc1437.de/2008/04/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108316,7 +108667,7 @@ https://www.rfc1437.de/2008/04/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108325,7 +108676,7 @@ https://www.rfc1437.de/2008/04/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108334,7 +108685,7 @@ https://www.rfc1437.de/2008/04/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108343,7 +108694,7 @@ https://www.rfc1437.de/2008/04/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108352,7 +108703,7 @@ https://www.rfc1437.de/2008/04/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108361,7 +108712,7 @@ https://www.rfc1437.de/2008/03/31/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108370,7 +108721,7 @@ https://www.rfc1437.de/2008/03/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108379,7 +108730,7 @@ https://www.rfc1437.de/2008/03/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108388,7 +108739,7 @@ https://www.rfc1437.de/2008/03/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108397,7 +108748,7 @@ https://www.rfc1437.de/2008/03/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108406,7 +108757,7 @@ https://www.rfc1437.de/2008/03/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108415,7 +108766,7 @@ https://www.rfc1437.de/2008/03/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108424,7 +108775,7 @@ https://www.rfc1437.de/2008/03/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108433,7 +108784,7 @@ https://www.rfc1437.de/2008/03/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108442,7 +108793,7 @@ https://www.rfc1437.de/2008/03/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108451,7 +108802,7 @@ https://www.rfc1437.de/2008/03/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108460,7 +108811,7 @@ https://www.rfc1437.de/2008/03/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108469,7 +108820,7 @@ https://www.rfc1437.de/2008/03/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108478,7 +108829,7 @@ https://www.rfc1437.de/2008/03/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108487,7 +108838,7 @@ https://www.rfc1437.de/2008/03/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108496,7 +108847,7 @@ https://www.rfc1437.de/2008/03/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108505,7 +108856,7 @@ https://www.rfc1437.de/2008/03/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108514,7 +108865,7 @@ https://www.rfc1437.de/2008/03/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108523,7 +108874,7 @@ https://www.rfc1437.de/2008/03/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108532,7 +108883,7 @@ https://www.rfc1437.de/2008/02/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108541,7 +108892,7 @@ https://www.rfc1437.de/2008/02/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108550,7 +108901,7 @@ https://www.rfc1437.de/2008/02/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108559,7 +108910,7 @@ https://www.rfc1437.de/2008/02/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108568,7 +108919,7 @@ https://www.rfc1437.de/2008/02/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108577,7 +108928,7 @@ https://www.rfc1437.de/2008/02/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108586,7 +108937,7 @@ https://www.rfc1437.de/2008/02/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108595,7 +108946,7 @@ https://www.rfc1437.de/2008/02/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108604,7 +108955,7 @@ https://www.rfc1437.de/2008/02/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108613,7 +108964,7 @@ https://www.rfc1437.de/2008/02/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108622,7 +108973,7 @@ https://www.rfc1437.de/2008/02/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108631,7 +108982,7 @@ https://www.rfc1437.de/2008/02/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108640,7 +108991,7 @@ https://www.rfc1437.de/2008/02/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108649,7 +109000,7 @@ https://www.rfc1437.de/2008/02/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108658,7 +109009,7 @@ https://www.rfc1437.de/2008/02/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108667,7 +109018,7 @@ https://www.rfc1437.de/2008/02/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108676,7 +109027,7 @@ https://www.rfc1437.de/2008/01/31/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108685,7 +109036,7 @@ https://www.rfc1437.de/2008/01/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108694,7 +109045,7 @@ https://www.rfc1437.de/2008/01/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108703,7 +109054,7 @@ https://www.rfc1437.de/2008/01/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108712,7 +109063,7 @@ https://www.rfc1437.de/2008/01/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108721,7 +109072,7 @@ https://www.rfc1437.de/2008/01/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108730,7 +109081,7 @@ https://www.rfc1437.de/2008/01/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108739,7 +109090,7 @@ https://www.rfc1437.de/2008/01/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108748,7 +109099,7 @@ https://www.rfc1437.de/2008/01/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108757,7 +109108,7 @@ https://www.rfc1437.de/2008/01/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108766,7 +109117,7 @@ https://www.rfc1437.de/2008/01/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108775,7 +109126,7 @@ https://www.rfc1437.de/2008/01/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108784,7 +109135,7 @@ https://www.rfc1437.de/2008/01/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108793,7 +109144,7 @@ https://www.rfc1437.de/2008/01/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108802,7 +109153,7 @@ https://www.rfc1437.de/2008/01/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108811,7 +109162,7 @@ https://www.rfc1437.de/2008/01/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108820,7 +109171,7 @@ https://www.rfc1437.de/2008/01/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108829,7 +109180,7 @@ https://www.rfc1437.de/2008/01/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108838,7 +109189,7 @@ https://www.rfc1437.de/2008/01/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108847,7 +109198,7 @@ https://www.rfc1437.de/2008/01/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108856,7 +109207,7 @@ https://www.rfc1437.de/2007/12/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108865,7 +109216,7 @@ https://www.rfc1437.de/2007/12/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108874,7 +109225,7 @@ https://www.rfc1437.de/2007/12/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108883,7 +109234,7 @@ https://www.rfc1437.de/2007/12/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108892,7 +109243,7 @@ https://www.rfc1437.de/2007/12/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108901,7 +109252,7 @@ https://www.rfc1437.de/2007/12/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108910,7 +109261,7 @@ https://www.rfc1437.de/2007/12/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108919,7 +109270,7 @@ https://www.rfc1437.de/2007/12/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108928,7 +109279,7 @@ https://www.rfc1437.de/2007/12/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108937,7 +109288,7 @@ https://www.rfc1437.de/2007/12/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108946,7 +109297,7 @@ https://www.rfc1437.de/2007/12/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108955,7 +109306,7 @@ https://www.rfc1437.de/2007/12/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108964,7 +109315,7 @@ https://www.rfc1437.de/2007/12/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108973,7 +109324,7 @@ https://www.rfc1437.de/2007/12/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108982,7 +109333,7 @@ https://www.rfc1437.de/2007/11/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -108991,7 +109342,7 @@ https://www.rfc1437.de/2007/11/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109000,7 +109351,7 @@ https://www.rfc1437.de/2007/11/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109009,7 +109360,7 @@ https://www.rfc1437.de/2007/11/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109018,7 +109369,7 @@ https://www.rfc1437.de/2007/11/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109027,7 +109378,7 @@ https://www.rfc1437.de/2007/11/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109036,7 +109387,7 @@ https://www.rfc1437.de/2007/11/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109045,7 +109396,7 @@ https://www.rfc1437.de/2007/11/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109054,7 +109405,7 @@ https://www.rfc1437.de/2007/11/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109063,7 +109414,7 @@ https://www.rfc1437.de/2007/11/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109072,7 +109423,7 @@ https://www.rfc1437.de/2007/11/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109081,7 +109432,7 @@ https://www.rfc1437.de/2007/10/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109090,7 +109441,7 @@ https://www.rfc1437.de/2007/10/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109099,7 +109450,7 @@ https://www.rfc1437.de/2007/10/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109108,7 +109459,7 @@ https://www.rfc1437.de/2007/10/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109117,7 +109468,7 @@ https://www.rfc1437.de/2007/10/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109126,7 +109477,7 @@ https://www.rfc1437.de/2007/10/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109135,7 +109486,7 @@ https://www.rfc1437.de/2007/10/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109144,7 +109495,7 @@ https://www.rfc1437.de/2007/10/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109153,7 +109504,7 @@ https://www.rfc1437.de/2007/10/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109162,7 +109513,7 @@ https://www.rfc1437.de/2007/10/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109171,7 +109522,7 @@ https://www.rfc1437.de/2007/10/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109180,7 +109531,7 @@ https://www.rfc1437.de/2007/10/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109189,7 +109540,7 @@ https://www.rfc1437.de/2007/10/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109198,7 +109549,7 @@ https://www.rfc1437.de/2007/10/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109207,7 +109558,7 @@ https://www.rfc1437.de/2007/10/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109216,7 +109567,7 @@ https://www.rfc1437.de/2007/10/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109225,7 +109576,7 @@ https://www.rfc1437.de/2007/10/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109234,7 +109585,7 @@ https://www.rfc1437.de/2007/10/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109243,7 +109594,7 @@ https://www.rfc1437.de/2007/09/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109252,7 +109603,7 @@ https://www.rfc1437.de/2007/09/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109261,7 +109612,7 @@ https://www.rfc1437.de/2007/09/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109270,7 +109621,7 @@ https://www.rfc1437.de/2007/09/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109279,7 +109630,7 @@ https://www.rfc1437.de/2007/09/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109288,7 +109639,7 @@ https://www.rfc1437.de/2007/09/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109297,7 +109648,7 @@ https://www.rfc1437.de/2007/09/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109306,7 +109657,7 @@ https://www.rfc1437.de/2007/09/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109315,7 +109666,7 @@ https://www.rfc1437.de/2007/09/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109324,7 +109675,7 @@ https://www.rfc1437.de/2007/09/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109333,7 +109684,7 @@ https://www.rfc1437.de/2007/09/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109342,7 +109693,7 @@ https://www.rfc1437.de/2007/09/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109351,7 +109702,7 @@ https://www.rfc1437.de/2007/08/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109360,7 +109711,7 @@ https://www.rfc1437.de/2007/08/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109369,7 +109720,7 @@ https://www.rfc1437.de/2007/08/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109378,7 +109729,7 @@ https://www.rfc1437.de/2007/08/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109387,7 +109738,7 @@ https://www.rfc1437.de/2007/08/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109396,7 +109747,7 @@ https://www.rfc1437.de/2007/08/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109405,7 +109756,7 @@ https://www.rfc1437.de/2007/08/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109414,7 +109765,7 @@ https://www.rfc1437.de/2007/08/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109423,7 +109774,7 @@ https://www.rfc1437.de/2007/08/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109432,7 +109783,7 @@ https://www.rfc1437.de/2007/07/31/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109441,7 +109792,7 @@ https://www.rfc1437.de/2007/07/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109450,7 +109801,7 @@ https://www.rfc1437.de/2007/07/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109459,7 +109810,7 @@ https://www.rfc1437.de/2007/07/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109468,7 +109819,7 @@ https://www.rfc1437.de/2007/07/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109477,7 +109828,7 @@ https://www.rfc1437.de/2007/07/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109486,7 +109837,7 @@ https://www.rfc1437.de/2007/07/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109495,7 +109846,7 @@ https://www.rfc1437.de/2007/07/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109504,7 +109855,7 @@ https://www.rfc1437.de/2007/07/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109513,7 +109864,7 @@ https://www.rfc1437.de/2007/07/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109522,7 +109873,7 @@ https://www.rfc1437.de/2007/07/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109531,7 +109882,7 @@ https://www.rfc1437.de/2007/07/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109540,7 +109891,7 @@ https://www.rfc1437.de/2007/07/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109549,7 +109900,7 @@ https://www.rfc1437.de/2007/07/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109558,7 +109909,7 @@ https://www.rfc1437.de/2007/07/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109567,7 +109918,7 @@ https://www.rfc1437.de/2007/07/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109576,7 +109927,7 @@ https://www.rfc1437.de/2007/07/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109585,7 +109936,7 @@ https://www.rfc1437.de/2007/07/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109594,7 +109945,7 @@ https://www.rfc1437.de/2007/07/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109603,7 +109954,7 @@ https://www.rfc1437.de/2007/07/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109612,7 +109963,7 @@ https://www.rfc1437.de/2007/07/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109621,7 +109972,7 @@ https://www.rfc1437.de/2007/07/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109630,7 +109981,7 @@ https://www.rfc1437.de/2007/07/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109639,7 +109990,7 @@ https://www.rfc1437.de/2007/06/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109648,7 +109999,7 @@ https://www.rfc1437.de/2007/06/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109657,7 +110008,7 @@ https://www.rfc1437.de/2007/06/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109666,7 +110017,7 @@ https://www.rfc1437.de/2007/06/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109675,7 +110026,7 @@ https://www.rfc1437.de/2007/06/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109684,7 +110035,7 @@ https://www.rfc1437.de/2007/06/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109693,7 +110044,7 @@ https://www.rfc1437.de/2007/06/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109702,7 +110053,7 @@ https://www.rfc1437.de/2007/06/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109711,7 +110062,7 @@ https://www.rfc1437.de/2007/06/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109720,7 +110071,7 @@ https://www.rfc1437.de/2007/06/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109729,7 +110080,7 @@ https://www.rfc1437.de/2007/06/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109738,7 +110089,7 @@ https://www.rfc1437.de/2007/06/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109747,7 +110098,7 @@ https://www.rfc1437.de/2007/06/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109756,7 +110107,7 @@ https://www.rfc1437.de/2007/06/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109765,7 +110116,7 @@ https://www.rfc1437.de/2007/06/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109774,7 +110125,7 @@ https://www.rfc1437.de/2007/06/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109783,7 +110134,7 @@ https://www.rfc1437.de/2007/06/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109792,7 +110143,7 @@ https://www.rfc1437.de/2007/06/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109801,7 +110152,7 @@ https://www.rfc1437.de/2007/06/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109810,7 +110161,7 @@ https://www.rfc1437.de/2007/05/31/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109819,7 +110170,7 @@ https://www.rfc1437.de/2007/05/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109828,7 +110179,7 @@ https://www.rfc1437.de/2007/05/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109837,7 +110188,7 @@ https://www.rfc1437.de/2007/05/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109846,7 +110197,7 @@ https://www.rfc1437.de/2007/05/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109855,7 +110206,7 @@ https://www.rfc1437.de/2007/05/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109864,7 +110215,7 @@ https://www.rfc1437.de/2007/05/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109873,7 +110224,7 @@ https://www.rfc1437.de/2007/05/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109882,7 +110233,7 @@ https://www.rfc1437.de/2007/05/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109891,7 +110242,7 @@ https://www.rfc1437.de/2007/05/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109900,7 +110251,7 @@ https://www.rfc1437.de/2007/05/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109909,7 +110260,7 @@ https://www.rfc1437.de/2007/05/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109918,7 +110269,7 @@ https://www.rfc1437.de/2007/05/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109927,7 +110278,7 @@ https://www.rfc1437.de/2007/05/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109936,7 +110287,7 @@ https://www.rfc1437.de/2007/05/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109945,7 +110296,7 @@ https://www.rfc1437.de/2007/05/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109954,7 +110305,7 @@ https://www.rfc1437.de/2007/05/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109963,7 +110314,7 @@ https://www.rfc1437.de/2007/05/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109972,7 +110323,7 @@ https://www.rfc1437.de/2007/05/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109981,7 +110332,7 @@ https://www.rfc1437.de/2007/05/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109990,7 +110341,7 @@ https://www.rfc1437.de/2007/05/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -109999,7 +110350,7 @@ https://www.rfc1437.de/2007/05/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110008,7 +110359,7 @@ https://www.rfc1437.de/2007/05/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110017,7 +110368,7 @@ https://www.rfc1437.de/2007/04/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110026,7 +110377,7 @@ https://www.rfc1437.de/2007/04/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110035,7 +110386,7 @@ https://www.rfc1437.de/2007/04/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110044,7 +110395,7 @@ https://www.rfc1437.de/2007/04/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110053,7 +110404,7 @@ https://www.rfc1437.de/2007/04/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110062,7 +110413,7 @@ https://www.rfc1437.de/2007/04/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110071,7 +110422,7 @@ https://www.rfc1437.de/2007/04/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110080,7 +110431,7 @@ https://www.rfc1437.de/2007/04/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110089,7 +110440,7 @@ https://www.rfc1437.de/2007/04/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110098,7 +110449,7 @@ https://www.rfc1437.de/2007/04/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110107,7 +110458,7 @@ https://www.rfc1437.de/2007/04/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110116,7 +110467,7 @@ https://www.rfc1437.de/2007/04/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110125,7 +110476,7 @@ https://www.rfc1437.de/2007/04/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110134,7 +110485,7 @@ https://www.rfc1437.de/2007/04/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110143,7 +110494,7 @@ https://www.rfc1437.de/2007/04/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110152,7 +110503,7 @@ https://www.rfc1437.de/2007/04/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110161,7 +110512,7 @@ https://www.rfc1437.de/2007/04/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110170,7 +110521,7 @@ https://www.rfc1437.de/2007/04/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110179,7 +110530,7 @@ https://www.rfc1437.de/2007/04/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110188,7 +110539,7 @@ https://www.rfc1437.de/2007/04/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110197,7 +110548,7 @@ https://www.rfc1437.de/2007/03/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110206,7 +110557,7 @@ https://www.rfc1437.de/2007/03/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110215,7 +110566,7 @@ https://www.rfc1437.de/2007/03/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110224,7 +110575,7 @@ https://www.rfc1437.de/2007/03/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110233,7 +110584,7 @@ https://www.rfc1437.de/2007/03/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110242,7 +110593,7 @@ https://www.rfc1437.de/2007/03/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110251,7 +110602,7 @@ https://www.rfc1437.de/2007/03/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110260,7 +110611,7 @@ https://www.rfc1437.de/2007/03/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110269,7 +110620,7 @@ https://www.rfc1437.de/2007/03/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110278,7 +110629,7 @@ https://www.rfc1437.de/2007/03/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110287,7 +110638,7 @@ https://www.rfc1437.de/2007/03/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110296,7 +110647,7 @@ https://www.rfc1437.de/2007/03/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110305,7 +110656,7 @@ https://www.rfc1437.de/2007/03/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110314,7 +110665,7 @@ https://www.rfc1437.de/2007/03/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110323,7 +110674,7 @@ https://www.rfc1437.de/2007/02/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110332,7 +110683,7 @@ https://www.rfc1437.de/2007/02/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110341,7 +110692,7 @@ https://www.rfc1437.de/2007/02/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110350,7 +110701,7 @@ https://www.rfc1437.de/2007/02/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110359,7 +110710,7 @@ https://www.rfc1437.de/2007/02/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110368,7 +110719,7 @@ https://www.rfc1437.de/2007/02/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110377,7 +110728,7 @@ https://www.rfc1437.de/2007/02/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110386,7 +110737,7 @@ https://www.rfc1437.de/2007/02/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110395,7 +110746,7 @@ https://www.rfc1437.de/2007/02/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110404,7 +110755,7 @@ https://www.rfc1437.de/2007/02/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110413,7 +110764,7 @@ https://www.rfc1437.de/2007/02/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110422,7 +110773,7 @@ https://www.rfc1437.de/2007/02/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110431,7 +110782,7 @@ https://www.rfc1437.de/2007/02/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110440,7 +110791,7 @@ https://www.rfc1437.de/2007/02/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110449,7 +110800,7 @@ https://www.rfc1437.de/2007/02/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110458,7 +110809,7 @@ https://www.rfc1437.de/2007/02/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110467,7 +110818,7 @@ https://www.rfc1437.de/2007/01/31/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110476,7 +110827,7 @@ https://www.rfc1437.de/2007/01/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110485,7 +110836,7 @@ https://www.rfc1437.de/2007/01/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110494,7 +110845,7 @@ https://www.rfc1437.de/2007/01/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110503,7 +110854,7 @@ https://www.rfc1437.de/2007/01/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110512,7 +110863,7 @@ https://www.rfc1437.de/2007/01/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110521,7 +110872,7 @@ https://www.rfc1437.de/2007/01/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110530,7 +110881,7 @@ https://www.rfc1437.de/2007/01/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110539,7 +110890,7 @@ https://www.rfc1437.de/2007/01/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110548,7 +110899,7 @@ https://www.rfc1437.de/2007/01/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110557,7 +110908,7 @@ https://www.rfc1437.de/2007/01/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110566,7 +110917,7 @@ https://www.rfc1437.de/2007/01/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110575,7 +110926,7 @@ https://www.rfc1437.de/2007/01/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110584,7 +110935,7 @@ https://www.rfc1437.de/2007/01/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110593,7 +110944,7 @@ https://www.rfc1437.de/2007/01/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110602,7 +110953,7 @@ https://www.rfc1437.de/2007/01/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110611,7 +110962,7 @@ https://www.rfc1437.de/2007/01/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110620,7 +110971,7 @@ https://www.rfc1437.de/2007/01/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110629,7 +110980,7 @@ https://www.rfc1437.de/2007/01/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110638,7 +110989,7 @@ https://www.rfc1437.de/2007/01/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110647,7 +110998,7 @@ https://www.rfc1437.de/2006/12/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110656,7 +111007,7 @@ https://www.rfc1437.de/2006/12/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110665,7 +111016,7 @@ https://www.rfc1437.de/2006/12/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110674,7 +111025,7 @@ https://www.rfc1437.de/2006/12/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110683,7 +111034,7 @@ https://www.rfc1437.de/2006/12/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110692,7 +111043,7 @@ https://www.rfc1437.de/2006/12/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110701,7 +111052,7 @@ https://www.rfc1437.de/2006/12/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110710,7 +111061,7 @@ https://www.rfc1437.de/2006/12/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110719,7 +111070,7 @@ https://www.rfc1437.de/2006/12/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110728,7 +111079,7 @@ https://www.rfc1437.de/2006/12/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110737,7 +111088,7 @@ https://www.rfc1437.de/2006/12/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110746,7 +111097,7 @@ https://www.rfc1437.de/2006/12/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110755,7 +111106,7 @@ https://www.rfc1437.de/2006/12/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110764,7 +111115,7 @@ https://www.rfc1437.de/2006/11/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110773,7 +111124,7 @@ https://www.rfc1437.de/2006/11/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110782,7 +111133,7 @@ https://www.rfc1437.de/2006/11/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110791,7 +111142,7 @@ https://www.rfc1437.de/2006/11/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110800,7 +111151,7 @@ https://www.rfc1437.de/2006/11/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110809,7 +111160,7 @@ https://www.rfc1437.de/2006/11/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110818,7 +111169,7 @@ https://www.rfc1437.de/2006/11/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110827,7 +111178,7 @@ https://www.rfc1437.de/2006/11/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110836,7 +111187,7 @@ https://www.rfc1437.de/2006/11/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110845,7 +111196,7 @@ https://www.rfc1437.de/2006/11/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110854,7 +111205,7 @@ https://www.rfc1437.de/2006/11/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110863,7 +111214,7 @@ https://www.rfc1437.de/2006/11/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110872,7 +111223,7 @@ https://www.rfc1437.de/2006/11/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110881,7 +111232,7 @@ https://www.rfc1437.de/2006/11/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110890,7 +111241,7 @@ https://www.rfc1437.de/2006/11/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110899,7 +111250,7 @@ https://www.rfc1437.de/2006/11/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110908,7 +111259,7 @@ https://www.rfc1437.de/2006/11/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110917,7 +111268,7 @@ https://www.rfc1437.de/2006/11/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110926,7 +111277,7 @@ https://www.rfc1437.de/2006/11/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110935,7 +111286,7 @@ https://www.rfc1437.de/2006/10/31/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110944,7 +111295,7 @@ https://www.rfc1437.de/2006/10/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110953,7 +111304,7 @@ https://www.rfc1437.de/2006/10/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110962,7 +111313,7 @@ https://www.rfc1437.de/2006/10/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110971,7 +111322,7 @@ https://www.rfc1437.de/2006/10/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110980,7 +111331,7 @@ https://www.rfc1437.de/2006/10/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110989,7 +111340,7 @@ https://www.rfc1437.de/2006/10/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -110998,7 +111349,7 @@ https://www.rfc1437.de/2006/10/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111007,7 +111358,7 @@ https://www.rfc1437.de/2006/10/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111016,7 +111367,7 @@ https://www.rfc1437.de/2006/10/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111025,7 +111376,7 @@ https://www.rfc1437.de/2006/10/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111034,7 +111385,7 @@ https://www.rfc1437.de/2006/10/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111043,7 +111394,7 @@ https://www.rfc1437.de/2006/10/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111052,7 +111403,7 @@ https://www.rfc1437.de/2006/10/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111061,7 +111412,7 @@ https://www.rfc1437.de/2006/10/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111070,7 +111421,7 @@ https://www.rfc1437.de/2006/10/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111079,7 +111430,7 @@ https://www.rfc1437.de/2006/10/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111088,7 +111439,7 @@ https://www.rfc1437.de/2006/10/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111097,7 +111448,7 @@ https://www.rfc1437.de/2006/10/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111106,7 +111457,7 @@ https://www.rfc1437.de/2006/09/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111115,7 +111466,7 @@ https://www.rfc1437.de/2006/09/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111124,7 +111475,7 @@ https://www.rfc1437.de/2006/09/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111133,7 +111484,7 @@ https://www.rfc1437.de/2006/09/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111142,7 +111493,7 @@ https://www.rfc1437.de/2006/09/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111151,7 +111502,7 @@ https://www.rfc1437.de/2006/09/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111160,7 +111511,7 @@ https://www.rfc1437.de/2006/09/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111169,7 +111520,7 @@ https://www.rfc1437.de/2006/09/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111178,7 +111529,7 @@ https://www.rfc1437.de/2006/09/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111187,7 +111538,7 @@ https://www.rfc1437.de/2006/09/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111196,7 +111547,7 @@ https://www.rfc1437.de/2006/09/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111205,7 +111556,7 @@ https://www.rfc1437.de/2006/09/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111214,7 +111565,7 @@ https://www.rfc1437.de/2006/09/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111223,7 +111574,7 @@ https://www.rfc1437.de/2006/09/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111232,7 +111583,7 @@ https://www.rfc1437.de/2006/09/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111241,7 +111592,7 @@ https://www.rfc1437.de/2006/09/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111250,7 +111601,7 @@ https://www.rfc1437.de/2006/09/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111259,7 +111610,7 @@ https://www.rfc1437.de/2006/09/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111268,7 +111619,7 @@ https://www.rfc1437.de/2006/09/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111277,7 +111628,7 @@ https://www.rfc1437.de/2006/08/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111286,7 +111637,7 @@ https://www.rfc1437.de/2006/08/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111295,7 +111646,7 @@ https://www.rfc1437.de/2006/08/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111304,7 +111655,7 @@ https://www.rfc1437.de/2006/08/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111313,7 +111664,7 @@ https://www.rfc1437.de/2006/08/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111322,7 +111673,7 @@ https://www.rfc1437.de/2006/08/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111331,7 +111682,7 @@ https://www.rfc1437.de/2006/08/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111340,7 +111691,7 @@ https://www.rfc1437.de/2006/08/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111349,7 +111700,7 @@ https://www.rfc1437.de/2006/08/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111358,7 +111709,7 @@ https://www.rfc1437.de/2006/08/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111367,7 +111718,7 @@ https://www.rfc1437.de/2006/08/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111376,7 +111727,7 @@ https://www.rfc1437.de/2006/08/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111385,7 +111736,7 @@ https://www.rfc1437.de/2006/08/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111394,7 +111745,7 @@ https://www.rfc1437.de/2006/08/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111403,7 +111754,7 @@ https://www.rfc1437.de/2006/08/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111412,7 +111763,7 @@ https://www.rfc1437.de/2006/08/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111421,7 +111772,7 @@ https://www.rfc1437.de/2006/08/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111430,7 +111781,7 @@ https://www.rfc1437.de/2006/07/31/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111439,7 +111790,7 @@ https://www.rfc1437.de/2006/07/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111448,7 +111799,7 @@ https://www.rfc1437.de/2006/07/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111457,7 +111808,7 @@ https://www.rfc1437.de/2006/07/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111466,7 +111817,7 @@ https://www.rfc1437.de/2006/07/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111475,7 +111826,7 @@ https://www.rfc1437.de/2006/07/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111484,7 +111835,7 @@ https://www.rfc1437.de/2006/07/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111493,7 +111844,7 @@ https://www.rfc1437.de/2006/07/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111502,7 +111853,7 @@ https://www.rfc1437.de/2006/07/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111511,7 +111862,7 @@ https://www.rfc1437.de/2006/07/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111520,7 +111871,7 @@ https://www.rfc1437.de/2006/07/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111529,7 +111880,7 @@ https://www.rfc1437.de/2006/07/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111538,7 +111889,7 @@ https://www.rfc1437.de/2006/07/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111547,7 +111898,7 @@ https://www.rfc1437.de/2006/07/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111556,7 +111907,7 @@ https://www.rfc1437.de/2006/07/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111565,7 +111916,7 @@ https://www.rfc1437.de/2006/07/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111574,7 +111925,7 @@ https://www.rfc1437.de/2006/07/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111583,7 +111934,7 @@ https://www.rfc1437.de/2006/06/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111592,7 +111943,7 @@ https://www.rfc1437.de/2006/06/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111601,7 +111952,7 @@ https://www.rfc1437.de/2006/06/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111610,7 +111961,7 @@ https://www.rfc1437.de/2006/06/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111619,7 +111970,7 @@ https://www.rfc1437.de/2006/06/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111628,7 +111979,7 @@ https://www.rfc1437.de/2006/06/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111637,7 +111988,7 @@ https://www.rfc1437.de/2006/06/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111646,7 +111997,7 @@ https://www.rfc1437.de/2006/06/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111655,7 +112006,7 @@ https://www.rfc1437.de/2006/06/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111664,7 +112015,7 @@ https://www.rfc1437.de/2006/06/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111673,7 +112024,7 @@ https://www.rfc1437.de/2006/06/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111682,7 +112033,7 @@ https://www.rfc1437.de/2006/06/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111691,7 +112042,7 @@ https://www.rfc1437.de/2006/06/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111700,7 +112051,7 @@ https://www.rfc1437.de/2006/06/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111709,7 +112060,7 @@ https://www.rfc1437.de/2006/05/31/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111718,7 +112069,7 @@ https://www.rfc1437.de/2006/05/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111727,7 +112078,7 @@ https://www.rfc1437.de/2006/05/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111736,7 +112087,7 @@ https://www.rfc1437.de/2006/05/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111745,7 +112096,7 @@ https://www.rfc1437.de/2006/05/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111754,7 +112105,7 @@ https://www.rfc1437.de/2006/05/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111763,7 +112114,7 @@ https://www.rfc1437.de/2006/05/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111772,7 +112123,7 @@ https://www.rfc1437.de/2006/05/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111781,7 +112132,7 @@ https://www.rfc1437.de/2006/05/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111790,7 +112141,7 @@ https://www.rfc1437.de/2006/05/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111799,7 +112150,7 @@ https://www.rfc1437.de/2006/05/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111808,7 +112159,7 @@ https://www.rfc1437.de/2006/05/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111817,7 +112168,7 @@ https://www.rfc1437.de/2006/05/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111826,7 +112177,7 @@ https://www.rfc1437.de/2006/05/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111835,7 +112186,7 @@ https://www.rfc1437.de/2006/05/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111844,7 +112195,7 @@ https://www.rfc1437.de/2006/05/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111853,7 +112204,7 @@ https://www.rfc1437.de/2006/05/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111862,7 +112213,7 @@ https://www.rfc1437.de/2006/04/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111871,7 +112222,7 @@ https://www.rfc1437.de/2006/04/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111880,7 +112231,7 @@ https://www.rfc1437.de/2006/04/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111889,7 +112240,7 @@ https://www.rfc1437.de/2006/04/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111898,7 +112249,7 @@ https://www.rfc1437.de/2006/04/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111907,7 +112258,7 @@ https://www.rfc1437.de/2006/04/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111916,7 +112267,7 @@ https://www.rfc1437.de/2006/04/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111925,7 +112276,7 @@ https://www.rfc1437.de/2006/04/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111934,7 +112285,7 @@ https://www.rfc1437.de/2006/04/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111943,7 +112294,7 @@ https://www.rfc1437.de/2006/04/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111952,7 +112303,7 @@ https://www.rfc1437.de/2006/04/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111961,7 +112312,7 @@ https://www.rfc1437.de/2006/04/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111970,7 +112321,7 @@ https://www.rfc1437.de/2006/04/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111979,7 +112330,7 @@ https://www.rfc1437.de/2006/04/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111988,7 +112339,7 @@ https://www.rfc1437.de/2006/04/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -111997,7 +112348,7 @@ https://www.rfc1437.de/2006/04/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112006,7 +112357,7 @@ https://www.rfc1437.de/2006/04/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112015,7 +112366,7 @@ https://www.rfc1437.de/2006/04/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112024,7 +112375,7 @@ https://www.rfc1437.de/2006/04/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112033,7 +112384,7 @@ https://www.rfc1437.de/2006/04/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112042,7 +112393,7 @@ https://www.rfc1437.de/2006/04/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112051,7 +112402,7 @@ https://www.rfc1437.de/2006/03/31/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112060,7 +112411,7 @@ https://www.rfc1437.de/2006/03/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112069,7 +112420,7 @@ https://www.rfc1437.de/2006/03/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112078,7 +112429,7 @@ https://www.rfc1437.de/2006/03/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112087,7 +112438,7 @@ https://www.rfc1437.de/2006/03/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112096,7 +112447,7 @@ https://www.rfc1437.de/2006/03/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112105,7 +112456,7 @@ https://www.rfc1437.de/2006/03/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112114,7 +112465,7 @@ https://www.rfc1437.de/2006/03/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112123,7 +112474,7 @@ https://www.rfc1437.de/2006/03/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112132,7 +112483,7 @@ https://www.rfc1437.de/2006/03/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112141,7 +112492,7 @@ https://www.rfc1437.de/2006/03/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112150,7 +112501,7 @@ https://www.rfc1437.de/2006/03/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112159,7 +112510,7 @@ https://www.rfc1437.de/2006/03/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112168,7 +112519,7 @@ https://www.rfc1437.de/2006/03/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112177,7 +112528,7 @@ https://www.rfc1437.de/2006/03/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112186,7 +112537,7 @@ https://www.rfc1437.de/2006/03/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112195,7 +112546,7 @@ https://www.rfc1437.de/2006/03/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112204,7 +112555,7 @@ https://www.rfc1437.de/2006/03/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112213,7 +112564,7 @@ https://www.rfc1437.de/2006/03/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112222,7 +112573,7 @@ https://www.rfc1437.de/2006/03/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112231,7 +112582,7 @@ https://www.rfc1437.de/2006/03/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112240,7 +112591,7 @@ https://www.rfc1437.de/2006/03/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112249,7 +112600,7 @@ https://www.rfc1437.de/2006/03/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112258,7 +112609,7 @@ https://www.rfc1437.de/2006/03/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112267,7 +112618,7 @@ https://www.rfc1437.de/2006/03/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112276,7 +112627,7 @@ https://www.rfc1437.de/2006/03/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112285,7 +112636,7 @@ https://www.rfc1437.de/2006/02/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112294,7 +112645,7 @@ https://www.rfc1437.de/2006/02/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112303,7 +112654,7 @@ https://www.rfc1437.de/2006/02/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112312,7 +112663,7 @@ https://www.rfc1437.de/2006/02/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112321,7 +112672,7 @@ https://www.rfc1437.de/2006/02/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112330,7 +112681,7 @@ https://www.rfc1437.de/2006/02/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112339,7 +112690,7 @@ https://www.rfc1437.de/2006/02/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112348,7 +112699,7 @@ https://www.rfc1437.de/2006/02/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112357,7 +112708,7 @@ https://www.rfc1437.de/2006/02/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112366,7 +112717,7 @@ https://www.rfc1437.de/2006/02/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112375,7 +112726,7 @@ https://www.rfc1437.de/2006/02/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112384,7 +112735,7 @@ https://www.rfc1437.de/2006/02/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112393,7 +112744,7 @@ https://www.rfc1437.de/2006/02/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112402,7 +112753,7 @@ https://www.rfc1437.de/2006/02/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112411,7 +112762,7 @@ https://www.rfc1437.de/2006/02/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112420,7 +112771,7 @@ https://www.rfc1437.de/2006/02/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112429,7 +112780,7 @@ https://www.rfc1437.de/2006/02/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112438,7 +112789,7 @@ https://www.rfc1437.de/2006/02/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112447,7 +112798,7 @@ https://www.rfc1437.de/2006/02/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112456,7 +112807,7 @@ https://www.rfc1437.de/2006/02/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112465,7 +112816,7 @@ https://www.rfc1437.de/2006/02/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112474,7 +112825,7 @@ https://www.rfc1437.de/2006/02/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112483,7 +112834,7 @@ https://www.rfc1437.de/2006/02/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112492,7 +112843,7 @@ https://www.rfc1437.de/2006/02/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112501,7 +112852,7 @@ https://www.rfc1437.de/2006/02/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112510,7 +112861,7 @@ https://www.rfc1437.de/2006/02/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112519,7 +112870,7 @@ https://www.rfc1437.de/2006/02/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112528,7 +112879,7 @@ https://www.rfc1437.de/2006/02/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112537,7 +112888,7 @@ https://www.rfc1437.de/2006/01/31/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112546,7 +112897,7 @@ https://www.rfc1437.de/2006/01/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112555,7 +112906,7 @@ https://www.rfc1437.de/2006/01/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112564,7 +112915,7 @@ https://www.rfc1437.de/2006/01/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112573,7 +112924,7 @@ https://www.rfc1437.de/2006/01/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112582,7 +112933,7 @@ https://www.rfc1437.de/2006/01/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112591,7 +112942,7 @@ https://www.rfc1437.de/2006/01/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112600,7 +112951,7 @@ https://www.rfc1437.de/2006/01/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112609,7 +112960,7 @@ https://www.rfc1437.de/2006/01/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112618,7 +112969,7 @@ https://www.rfc1437.de/2006/01/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112627,7 +112978,7 @@ https://www.rfc1437.de/2006/01/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112636,7 +112987,7 @@ https://www.rfc1437.de/2006/01/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112645,7 +112996,7 @@ https://www.rfc1437.de/2006/01/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112654,7 +113005,7 @@ https://www.rfc1437.de/2006/01/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112663,7 +113014,7 @@ https://www.rfc1437.de/2006/01/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112672,7 +113023,7 @@ https://www.rfc1437.de/2006/01/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112681,7 +113032,7 @@ https://www.rfc1437.de/2006/01/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112690,7 +113041,7 @@ https://www.rfc1437.de/2006/01/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112699,7 +113050,7 @@ https://www.rfc1437.de/2006/01/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112708,7 +113059,7 @@ https://www.rfc1437.de/2006/01/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112717,7 +113068,7 @@ https://www.rfc1437.de/2006/01/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112726,7 +113077,7 @@ https://www.rfc1437.de/2006/01/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112735,7 +113086,7 @@ https://www.rfc1437.de/2006/01/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112744,7 +113095,7 @@ https://www.rfc1437.de/2006/01/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112753,7 +113104,7 @@ https://www.rfc1437.de/2006/01/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112762,7 +113113,7 @@ https://www.rfc1437.de/2006/01/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112771,7 +113122,7 @@ https://www.rfc1437.de/2006/01/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112780,7 +113131,7 @@ https://www.rfc1437.de/2006/01/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112789,7 +113140,7 @@ https://www.rfc1437.de/2006/01/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112798,7 +113149,7 @@ https://www.rfc1437.de/2005/12/31/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112807,7 +113158,7 @@ https://www.rfc1437.de/2005/12/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112816,7 +113167,7 @@ https://www.rfc1437.de/2005/12/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112825,7 +113176,7 @@ https://www.rfc1437.de/2005/12/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112834,7 +113185,7 @@ https://www.rfc1437.de/2005/12/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112843,7 +113194,7 @@ https://www.rfc1437.de/2005/12/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112852,7 +113203,7 @@ https://www.rfc1437.de/2005/12/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112861,7 +113212,7 @@ https://www.rfc1437.de/2005/12/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112870,7 +113221,7 @@ https://www.rfc1437.de/2005/12/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112879,7 +113230,7 @@ https://www.rfc1437.de/2005/12/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112888,7 +113239,7 @@ https://www.rfc1437.de/2005/12/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112897,7 +113248,7 @@ https://www.rfc1437.de/2005/12/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112906,7 +113257,7 @@ https://www.rfc1437.de/2005/12/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112915,7 +113266,7 @@ https://www.rfc1437.de/2005/12/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112924,7 +113275,7 @@ https://www.rfc1437.de/2005/12/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112933,7 +113284,7 @@ https://www.rfc1437.de/2005/12/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112942,7 +113293,7 @@ https://www.rfc1437.de/2005/12/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112951,7 +113302,7 @@ https://www.rfc1437.de/2005/12/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112960,7 +113311,7 @@ https://www.rfc1437.de/2005/12/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112969,7 +113320,7 @@ https://www.rfc1437.de/2005/12/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112978,7 +113329,7 @@ https://www.rfc1437.de/2005/12/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112987,7 +113338,7 @@ https://www.rfc1437.de/2005/12/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -112996,7 +113347,7 @@ https://www.rfc1437.de/2005/12/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113005,7 +113356,7 @@ https://www.rfc1437.de/2005/12/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113014,7 +113365,7 @@ https://www.rfc1437.de/2005/12/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113023,7 +113374,7 @@ https://www.rfc1437.de/2005/12/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113032,7 +113383,7 @@ https://www.rfc1437.de/2005/12/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113041,7 +113392,7 @@ https://www.rfc1437.de/2005/12/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113050,7 +113401,7 @@ https://www.rfc1437.de/2005/12/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113059,7 +113410,7 @@ https://www.rfc1437.de/2005/11/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113068,7 +113419,7 @@ https://www.rfc1437.de/2005/11/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113077,7 +113428,7 @@ https://www.rfc1437.de/2005/11/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113086,7 +113437,7 @@ https://www.rfc1437.de/2005/11/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113095,7 +113446,7 @@ https://www.rfc1437.de/2005/11/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113104,7 +113455,7 @@ https://www.rfc1437.de/2005/11/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113113,7 +113464,7 @@ https://www.rfc1437.de/2005/11/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113122,7 +113473,7 @@ https://www.rfc1437.de/2005/11/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113131,7 +113482,7 @@ https://www.rfc1437.de/2005/11/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113140,7 +113491,7 @@ https://www.rfc1437.de/2005/11/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113149,7 +113500,7 @@ https://www.rfc1437.de/2005/11/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113158,7 +113509,7 @@ https://www.rfc1437.de/2005/11/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113167,7 +113518,7 @@ https://www.rfc1437.de/2005/11/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113176,7 +113527,7 @@ https://www.rfc1437.de/2005/11/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113185,7 +113536,7 @@ https://www.rfc1437.de/2005/11/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113194,7 +113545,7 @@ https://www.rfc1437.de/2005/11/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113203,7 +113554,7 @@ https://www.rfc1437.de/2005/11/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113212,7 +113563,7 @@ https://www.rfc1437.de/2005/11/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113221,7 +113572,7 @@ https://www.rfc1437.de/2005/11/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113230,7 +113581,7 @@ https://www.rfc1437.de/2005/11/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113239,7 +113590,7 @@ https://www.rfc1437.de/2005/11/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113248,7 +113599,7 @@ https://www.rfc1437.de/2005/11/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113257,7 +113608,7 @@ https://www.rfc1437.de/2005/11/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113266,7 +113617,7 @@ https://www.rfc1437.de/2005/10/31/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113275,7 +113626,7 @@ https://www.rfc1437.de/2005/10/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113284,7 +113635,7 @@ https://www.rfc1437.de/2005/10/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113293,7 +113644,7 @@ https://www.rfc1437.de/2005/10/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113302,7 +113653,7 @@ https://www.rfc1437.de/2005/10/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113311,7 +113662,7 @@ https://www.rfc1437.de/2005/10/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113320,7 +113671,7 @@ https://www.rfc1437.de/2005/10/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113329,7 +113680,7 @@ https://www.rfc1437.de/2005/10/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113338,7 +113689,7 @@ https://www.rfc1437.de/2005/10/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113347,7 +113698,7 @@ https://www.rfc1437.de/2005/10/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113356,7 +113707,7 @@ https://www.rfc1437.de/2005/10/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113365,7 +113716,7 @@ https://www.rfc1437.de/2005/10/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113374,7 +113725,7 @@ https://www.rfc1437.de/2005/10/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113383,7 +113734,7 @@ https://www.rfc1437.de/2005/10/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113392,7 +113743,7 @@ https://www.rfc1437.de/2005/10/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113401,7 +113752,7 @@ https://www.rfc1437.de/2005/10/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113410,7 +113761,7 @@ https://www.rfc1437.de/2005/10/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113419,7 +113770,7 @@ https://www.rfc1437.de/2005/10/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113428,7 +113779,7 @@ https://www.rfc1437.de/2005/10/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113437,7 +113788,7 @@ https://www.rfc1437.de/2005/10/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113446,7 +113797,7 @@ https://www.rfc1437.de/2005/10/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113455,7 +113806,7 @@ https://www.rfc1437.de/2005/10/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113464,7 +113815,7 @@ https://www.rfc1437.de/2005/10/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113473,7 +113824,7 @@ https://www.rfc1437.de/2005/10/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113482,7 +113833,7 @@ https://www.rfc1437.de/2005/10/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113491,7 +113842,7 @@ https://www.rfc1437.de/2005/10/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113500,7 +113851,7 @@ https://www.rfc1437.de/2005/10/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113509,7 +113860,7 @@ https://www.rfc1437.de/2005/10/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113518,7 +113869,7 @@ https://www.rfc1437.de/2005/10/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113527,7 +113878,7 @@ https://www.rfc1437.de/2005/10/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113536,7 +113887,7 @@ https://www.rfc1437.de/2005/09/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113545,7 +113896,7 @@ https://www.rfc1437.de/2005/09/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113554,7 +113905,7 @@ https://www.rfc1437.de/2005/09/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113563,7 +113914,7 @@ https://www.rfc1437.de/2005/09/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113572,7 +113923,7 @@ https://www.rfc1437.de/2005/09/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113581,7 +113932,7 @@ https://www.rfc1437.de/2005/09/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113590,7 +113941,7 @@ https://www.rfc1437.de/2005/09/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113599,7 +113950,7 @@ https://www.rfc1437.de/2005/09/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113608,7 +113959,7 @@ https://www.rfc1437.de/2005/09/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113617,7 +113968,7 @@ https://www.rfc1437.de/2005/09/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113626,7 +113977,7 @@ https://www.rfc1437.de/2005/09/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113635,7 +113986,7 @@ https://www.rfc1437.de/2005/09/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113644,7 +113995,7 @@ https://www.rfc1437.de/2005/09/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113653,7 +114004,7 @@ https://www.rfc1437.de/2005/09/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113662,7 +114013,7 @@ https://www.rfc1437.de/2005/09/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113671,7 +114022,7 @@ https://www.rfc1437.de/2005/09/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113680,7 +114031,7 @@ https://www.rfc1437.de/2005/09/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113689,7 +114040,7 @@ https://www.rfc1437.de/2005/09/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113698,7 +114049,7 @@ https://www.rfc1437.de/2005/09/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113707,7 +114058,7 @@ https://www.rfc1437.de/2005/09/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113716,7 +114067,7 @@ https://www.rfc1437.de/2005/09/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113725,7 +114076,7 @@ https://www.rfc1437.de/2005/09/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113734,7 +114085,7 @@ https://www.rfc1437.de/2005/09/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113743,7 +114094,7 @@ https://www.rfc1437.de/2005/09/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113752,7 +114103,7 @@ https://www.rfc1437.de/2005/09/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113761,7 +114112,7 @@ https://www.rfc1437.de/2005/08/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113770,7 +114121,7 @@ https://www.rfc1437.de/2005/08/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113779,7 +114130,7 @@ https://www.rfc1437.de/2005/08/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113788,7 +114139,7 @@ https://www.rfc1437.de/2005/08/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113797,7 +114148,7 @@ https://www.rfc1437.de/2005/08/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113806,7 +114157,7 @@ https://www.rfc1437.de/2005/08/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113815,7 +114166,7 @@ https://www.rfc1437.de/2005/08/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113824,7 +114175,7 @@ https://www.rfc1437.de/2005/08/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113833,7 +114184,7 @@ https://www.rfc1437.de/2005/08/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113842,7 +114193,7 @@ https://www.rfc1437.de/2005/08/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113851,7 +114202,7 @@ https://www.rfc1437.de/2005/08/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113860,7 +114211,7 @@ https://www.rfc1437.de/2005/08/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113869,7 +114220,7 @@ https://www.rfc1437.de/2005/08/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113878,7 +114229,7 @@ https://www.rfc1437.de/2005/08/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113887,7 +114238,7 @@ https://www.rfc1437.de/2005/08/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113896,7 +114247,7 @@ https://www.rfc1437.de/2005/08/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113905,7 +114256,7 @@ https://www.rfc1437.de/2005/08/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113914,7 +114265,7 @@ https://www.rfc1437.de/2005/08/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113923,7 +114274,7 @@ https://www.rfc1437.de/2005/08/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113932,7 +114283,7 @@ https://www.rfc1437.de/2005/08/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113941,7 +114292,7 @@ https://www.rfc1437.de/2005/08/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113950,7 +114301,7 @@ https://www.rfc1437.de/2005/08/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113959,7 +114310,7 @@ https://www.rfc1437.de/2005/08/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113968,7 +114319,7 @@ https://www.rfc1437.de/2005/08/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113977,7 +114328,7 @@ https://www.rfc1437.de/2005/08/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113986,7 +114337,7 @@ https://www.rfc1437.de/2005/08/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -113995,7 +114346,7 @@ https://www.rfc1437.de/2005/08/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114004,7 +114355,7 @@ https://www.rfc1437.de/2005/08/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114013,7 +114364,7 @@ https://www.rfc1437.de/2005/08/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114022,7 +114373,7 @@ https://www.rfc1437.de/2005/08/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114031,7 +114382,7 @@ https://www.rfc1437.de/2005/07/31/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114040,7 +114391,7 @@ https://www.rfc1437.de/2005/07/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114049,7 +114400,7 @@ https://www.rfc1437.de/2005/07/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114058,7 +114409,7 @@ https://www.rfc1437.de/2005/07/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114067,7 +114418,7 @@ https://www.rfc1437.de/2005/07/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114076,7 +114427,7 @@ https://www.rfc1437.de/2005/07/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114085,7 +114436,7 @@ https://www.rfc1437.de/2005/07/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114094,7 +114445,7 @@ https://www.rfc1437.de/2005/07/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114103,7 +114454,7 @@ https://www.rfc1437.de/2005/07/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114112,7 +114463,7 @@ https://www.rfc1437.de/2005/07/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114121,7 +114472,7 @@ https://www.rfc1437.de/2005/07/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114130,7 +114481,7 @@ https://www.rfc1437.de/2005/07/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114139,7 +114490,7 @@ https://www.rfc1437.de/2005/07/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114148,7 +114499,7 @@ https://www.rfc1437.de/2005/07/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114157,7 +114508,7 @@ https://www.rfc1437.de/2005/07/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114166,7 +114517,7 @@ https://www.rfc1437.de/2005/07/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114175,7 +114526,7 @@ https://www.rfc1437.de/2005/07/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114184,7 +114535,7 @@ https://www.rfc1437.de/2005/07/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114193,7 +114544,7 @@ https://www.rfc1437.de/2005/07/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114202,7 +114553,7 @@ https://www.rfc1437.de/2005/07/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114211,7 +114562,7 @@ https://www.rfc1437.de/2005/07/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114220,7 +114571,7 @@ https://www.rfc1437.de/2005/07/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114229,7 +114580,7 @@ https://www.rfc1437.de/2005/07/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114238,7 +114589,7 @@ https://www.rfc1437.de/2005/07/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114247,7 +114598,7 @@ https://www.rfc1437.de/2005/07/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114256,7 +114607,7 @@ https://www.rfc1437.de/2005/07/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114265,7 +114616,7 @@ https://www.rfc1437.de/2005/07/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114274,7 +114625,7 @@ https://www.rfc1437.de/2005/07/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114283,7 +114634,7 @@ https://www.rfc1437.de/2005/06/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114292,7 +114643,7 @@ https://www.rfc1437.de/2005/06/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114301,7 +114652,7 @@ https://www.rfc1437.de/2005/06/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114310,7 +114661,7 @@ https://www.rfc1437.de/2005/06/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114319,7 +114670,7 @@ https://www.rfc1437.de/2005/06/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114328,7 +114679,7 @@ https://www.rfc1437.de/2005/06/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114337,7 +114688,7 @@ https://www.rfc1437.de/2005/06/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114346,7 +114697,7 @@ https://www.rfc1437.de/2005/06/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114355,7 +114706,7 @@ https://www.rfc1437.de/2005/06/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114364,7 +114715,7 @@ https://www.rfc1437.de/2005/06/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114373,7 +114724,7 @@ https://www.rfc1437.de/2005/06/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114382,7 +114733,7 @@ https://www.rfc1437.de/2005/06/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114391,7 +114742,7 @@ https://www.rfc1437.de/2005/06/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114400,7 +114751,7 @@ https://www.rfc1437.de/2005/06/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114409,7 +114760,7 @@ https://www.rfc1437.de/2005/06/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114418,7 +114769,7 @@ https://www.rfc1437.de/2005/06/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114427,7 +114778,7 @@ https://www.rfc1437.de/2005/06/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114436,7 +114787,7 @@ https://www.rfc1437.de/2005/06/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114445,7 +114796,7 @@ https://www.rfc1437.de/2005/06/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114454,7 +114805,7 @@ https://www.rfc1437.de/2005/06/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114463,7 +114814,7 @@ https://www.rfc1437.de/2005/06/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114472,7 +114823,7 @@ https://www.rfc1437.de/2005/06/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114481,7 +114832,7 @@ https://www.rfc1437.de/2005/06/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114490,7 +114841,7 @@ https://www.rfc1437.de/2005/06/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114499,7 +114850,7 @@ https://www.rfc1437.de/2005/06/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114508,7 +114859,7 @@ https://www.rfc1437.de/2005/06/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114517,7 +114868,7 @@ https://www.rfc1437.de/2005/06/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114526,7 +114877,7 @@ https://www.rfc1437.de/2005/06/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114535,7 +114886,7 @@ https://www.rfc1437.de/2005/06/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114544,7 +114895,7 @@ https://www.rfc1437.de/2005/05/31/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114553,7 +114904,7 @@ https://www.rfc1437.de/2005/05/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114562,7 +114913,7 @@ https://www.rfc1437.de/2005/05/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114571,7 +114922,7 @@ https://www.rfc1437.de/2005/05/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114580,7 +114931,7 @@ https://www.rfc1437.de/2005/05/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114589,7 +114940,7 @@ https://www.rfc1437.de/2005/05/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114598,7 +114949,7 @@ https://www.rfc1437.de/2005/05/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114607,7 +114958,7 @@ https://www.rfc1437.de/2005/05/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114616,7 +114967,7 @@ https://www.rfc1437.de/2005/05/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114625,7 +114976,7 @@ https://www.rfc1437.de/2005/05/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114634,7 +114985,7 @@ https://www.rfc1437.de/2005/05/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114643,7 +114994,7 @@ https://www.rfc1437.de/2005/05/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114652,7 +115003,7 @@ https://www.rfc1437.de/2005/05/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114661,7 +115012,7 @@ https://www.rfc1437.de/2005/05/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114670,7 +115021,7 @@ https://www.rfc1437.de/2005/05/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114679,7 +115030,7 @@ https://www.rfc1437.de/2005/05/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114688,7 +115039,7 @@ https://www.rfc1437.de/2005/05/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114697,7 +115048,7 @@ https://www.rfc1437.de/2005/05/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114706,7 +115057,7 @@ https://www.rfc1437.de/2005/05/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114715,7 +115066,7 @@ https://www.rfc1437.de/2005/05/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114724,7 +115075,7 @@ https://www.rfc1437.de/2005/05/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114733,7 +115084,7 @@ https://www.rfc1437.de/2005/05/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114742,7 +115093,7 @@ https://www.rfc1437.de/2005/05/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114751,7 +115102,7 @@ https://www.rfc1437.de/2005/05/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114760,7 +115111,7 @@ https://www.rfc1437.de/2005/04/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114769,7 +115120,7 @@ https://www.rfc1437.de/2005/04/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114778,7 +115129,7 @@ https://www.rfc1437.de/2005/04/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114787,7 +115138,7 @@ https://www.rfc1437.de/2005/04/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114796,7 +115147,7 @@ https://www.rfc1437.de/2005/04/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114805,7 +115156,7 @@ https://www.rfc1437.de/2005/04/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114814,7 +115165,7 @@ https://www.rfc1437.de/2005/04/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114823,7 +115174,7 @@ https://www.rfc1437.de/2005/04/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114832,7 +115183,7 @@ https://www.rfc1437.de/2005/04/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114841,7 +115192,7 @@ https://www.rfc1437.de/2005/04/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114850,7 +115201,7 @@ https://www.rfc1437.de/2005/04/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114859,7 +115210,7 @@ https://www.rfc1437.de/2005/04/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114868,7 +115219,7 @@ https://www.rfc1437.de/2005/04/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114877,7 +115228,7 @@ https://www.rfc1437.de/2005/04/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114886,7 +115237,7 @@ https://www.rfc1437.de/2005/04/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114895,7 +115246,7 @@ https://www.rfc1437.de/2005/04/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114904,7 +115255,7 @@ https://www.rfc1437.de/2005/04/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114913,7 +115264,7 @@ https://www.rfc1437.de/2005/04/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114922,7 +115273,7 @@ https://www.rfc1437.de/2005/04/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114931,7 +115282,7 @@ https://www.rfc1437.de/2005/04/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114940,7 +115291,7 @@ https://www.rfc1437.de/2005/04/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114949,7 +115300,7 @@ https://www.rfc1437.de/2005/04/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114958,7 +115309,7 @@ https://www.rfc1437.de/2005/04/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114967,7 +115318,7 @@ https://www.rfc1437.de/2005/04/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114976,7 +115327,7 @@ https://www.rfc1437.de/2005/04/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114985,7 +115336,7 @@ https://www.rfc1437.de/2005/04/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -114994,7 +115345,7 @@ https://www.rfc1437.de/2005/04/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115003,7 +115354,7 @@ https://www.rfc1437.de/2005/04/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115012,7 +115363,7 @@ https://www.rfc1437.de/2005/04/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115021,7 +115372,7 @@ https://www.rfc1437.de/2005/03/31/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115030,7 +115381,7 @@ https://www.rfc1437.de/2005/03/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115039,7 +115390,7 @@ https://www.rfc1437.de/2005/03/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115048,7 +115399,7 @@ https://www.rfc1437.de/2005/03/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115057,7 +115408,7 @@ https://www.rfc1437.de/2005/03/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115066,7 +115417,7 @@ https://www.rfc1437.de/2005/03/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115075,7 +115426,7 @@ https://www.rfc1437.de/2005/03/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115084,7 +115435,7 @@ https://www.rfc1437.de/2005/03/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115093,7 +115444,7 @@ https://www.rfc1437.de/2005/03/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115102,7 +115453,7 @@ https://www.rfc1437.de/2005/03/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115111,7 +115462,7 @@ https://www.rfc1437.de/2005/03/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115120,7 +115471,7 @@ https://www.rfc1437.de/2005/03/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115129,7 +115480,7 @@ https://www.rfc1437.de/2005/03/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115138,7 +115489,7 @@ https://www.rfc1437.de/2005/03/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115147,7 +115498,7 @@ https://www.rfc1437.de/2005/03/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115156,7 +115507,7 @@ https://www.rfc1437.de/2005/03/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115165,7 +115516,7 @@ https://www.rfc1437.de/2005/03/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115174,7 +115525,7 @@ https://www.rfc1437.de/2005/03/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115183,7 +115534,7 @@ https://www.rfc1437.de/2005/03/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115192,7 +115543,7 @@ https://www.rfc1437.de/2005/03/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115201,7 +115552,7 @@ https://www.rfc1437.de/2005/03/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115210,7 +115561,7 @@ https://www.rfc1437.de/2005/03/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115219,7 +115570,7 @@ https://www.rfc1437.de/2005/03/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115228,7 +115579,7 @@ https://www.rfc1437.de/2005/03/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115237,7 +115588,7 @@ https://www.rfc1437.de/2005/03/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115246,7 +115597,7 @@ https://www.rfc1437.de/2005/03/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115255,7 +115606,7 @@ https://www.rfc1437.de/2005/03/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115264,7 +115615,7 @@ https://www.rfc1437.de/2005/03/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115273,7 +115624,7 @@ https://www.rfc1437.de/2005/03/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115282,7 +115633,7 @@ https://www.rfc1437.de/2005/02/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115291,7 +115642,7 @@ https://www.rfc1437.de/2005/02/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115300,7 +115651,7 @@ https://www.rfc1437.de/2005/02/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115309,7 +115660,7 @@ https://www.rfc1437.de/2005/02/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115318,7 +115669,7 @@ https://www.rfc1437.de/2005/02/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115327,7 +115678,7 @@ https://www.rfc1437.de/2005/02/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115336,7 +115687,7 @@ https://www.rfc1437.de/2005/02/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115345,7 +115696,7 @@ https://www.rfc1437.de/2005/02/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115354,7 +115705,7 @@ https://www.rfc1437.de/2005/02/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115363,7 +115714,7 @@ https://www.rfc1437.de/2005/02/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115372,7 +115723,7 @@ https://www.rfc1437.de/2005/02/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115381,7 +115732,7 @@ https://www.rfc1437.de/2005/02/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115390,7 +115741,7 @@ https://www.rfc1437.de/2005/02/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115399,7 +115750,7 @@ https://www.rfc1437.de/2005/02/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115408,7 +115759,7 @@ https://www.rfc1437.de/2005/02/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115417,7 +115768,7 @@ https://www.rfc1437.de/2005/02/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115426,7 +115777,7 @@ https://www.rfc1437.de/2005/02/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115435,7 +115786,7 @@ https://www.rfc1437.de/2005/02/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115444,7 +115795,7 @@ https://www.rfc1437.de/2005/02/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115453,7 +115804,7 @@ https://www.rfc1437.de/2005/02/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115462,7 +115813,7 @@ https://www.rfc1437.de/2005/02/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115471,7 +115822,7 @@ https://www.rfc1437.de/2005/02/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115480,7 +115831,7 @@ https://www.rfc1437.de/2005/02/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115489,7 +115840,7 @@ https://www.rfc1437.de/2005/02/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115498,7 +115849,7 @@ https://www.rfc1437.de/2005/02/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115507,7 +115858,7 @@ https://www.rfc1437.de/2005/02/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115516,7 +115867,7 @@ https://www.rfc1437.de/2005/02/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115525,7 +115876,7 @@ https://www.rfc1437.de/2005/02/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115534,7 +115885,7 @@ https://www.rfc1437.de/2005/01/31/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115543,7 +115894,7 @@ https://www.rfc1437.de/2005/01/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115552,7 +115903,7 @@ https://www.rfc1437.de/2005/01/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115561,7 +115912,7 @@ https://www.rfc1437.de/2005/01/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115570,7 +115921,7 @@ https://www.rfc1437.de/2005/01/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115579,7 +115930,7 @@ https://www.rfc1437.de/2005/01/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115588,7 +115939,7 @@ https://www.rfc1437.de/2005/01/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115597,7 +115948,7 @@ https://www.rfc1437.de/2005/01/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115606,7 +115957,7 @@ https://www.rfc1437.de/2005/01/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115615,7 +115966,7 @@ https://www.rfc1437.de/2005/01/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115624,7 +115975,7 @@ https://www.rfc1437.de/2005/01/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115633,7 +115984,7 @@ https://www.rfc1437.de/2005/01/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115642,7 +115993,7 @@ https://www.rfc1437.de/2005/01/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115651,7 +116002,7 @@ https://www.rfc1437.de/2005/01/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115660,7 +116011,7 @@ https://www.rfc1437.de/2005/01/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115669,7 +116020,7 @@ https://www.rfc1437.de/2005/01/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115678,7 +116029,7 @@ https://www.rfc1437.de/2005/01/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115687,7 +116038,7 @@ https://www.rfc1437.de/2005/01/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115696,7 +116047,7 @@ https://www.rfc1437.de/2005/01/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115705,7 +116056,7 @@ https://www.rfc1437.de/2005/01/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115714,7 +116065,7 @@ https://www.rfc1437.de/2005/01/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115723,7 +116074,7 @@ https://www.rfc1437.de/2005/01/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115732,7 +116083,7 @@ https://www.rfc1437.de/2005/01/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115741,7 +116092,7 @@ https://www.rfc1437.de/2005/01/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115750,7 +116101,7 @@ https://www.rfc1437.de/2005/01/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115759,7 +116110,7 @@ https://www.rfc1437.de/2005/01/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115768,7 +116119,7 @@ https://www.rfc1437.de/2005/01/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115777,7 +116128,7 @@ https://www.rfc1437.de/2005/01/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115786,7 +116137,7 @@ https://www.rfc1437.de/2005/01/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115795,7 +116146,7 @@ https://www.rfc1437.de/2005/01/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115804,7 +116155,7 @@ https://www.rfc1437.de/2004/12/31/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115813,7 +116164,7 @@ https://www.rfc1437.de/2004/12/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115822,7 +116173,7 @@ https://www.rfc1437.de/2004/12/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115831,7 +116182,7 @@ https://www.rfc1437.de/2004/12/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115840,7 +116191,7 @@ https://www.rfc1437.de/2004/12/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115849,7 +116200,7 @@ https://www.rfc1437.de/2004/12/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115858,7 +116209,7 @@ https://www.rfc1437.de/2004/12/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115867,7 +116218,7 @@ https://www.rfc1437.de/2004/12/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115876,7 +116227,7 @@ https://www.rfc1437.de/2004/12/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115885,7 +116236,7 @@ https://www.rfc1437.de/2004/12/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115894,7 +116245,7 @@ https://www.rfc1437.de/2004/12/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115903,7 +116254,7 @@ https://www.rfc1437.de/2004/12/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115912,7 +116263,7 @@ https://www.rfc1437.de/2004/12/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115921,7 +116272,7 @@ https://www.rfc1437.de/2004/12/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115930,7 +116281,7 @@ https://www.rfc1437.de/2004/12/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115939,7 +116290,7 @@ https://www.rfc1437.de/2004/12/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115948,7 +116299,7 @@ https://www.rfc1437.de/2004/12/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115957,7 +116308,7 @@ https://www.rfc1437.de/2004/12/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115966,7 +116317,7 @@ https://www.rfc1437.de/2004/12/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115975,7 +116326,7 @@ https://www.rfc1437.de/2004/12/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115984,7 +116335,7 @@ https://www.rfc1437.de/2004/12/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -115993,7 +116344,7 @@ https://www.rfc1437.de/2004/12/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116002,7 +116353,7 @@ https://www.rfc1437.de/2004/12/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116011,7 +116362,7 @@ https://www.rfc1437.de/2004/12/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116020,7 +116371,7 @@ https://www.rfc1437.de/2004/12/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116029,7 +116380,7 @@ https://www.rfc1437.de/2004/12/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116038,7 +116389,7 @@ https://www.rfc1437.de/2004/12/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116047,7 +116398,7 @@ https://www.rfc1437.de/2004/12/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116056,7 +116407,7 @@ https://www.rfc1437.de/2004/12/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116065,7 +116416,7 @@ https://www.rfc1437.de/2004/12/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116074,7 +116425,7 @@ https://www.rfc1437.de/2004/11/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116083,7 +116434,7 @@ https://www.rfc1437.de/2004/11/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116092,7 +116443,7 @@ https://www.rfc1437.de/2004/11/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116101,7 +116452,7 @@ https://www.rfc1437.de/2004/11/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116110,7 +116461,7 @@ https://www.rfc1437.de/2004/11/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116119,7 +116470,7 @@ https://www.rfc1437.de/2004/11/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116128,7 +116479,7 @@ https://www.rfc1437.de/2004/11/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116137,7 +116488,7 @@ https://www.rfc1437.de/2004/11/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116146,7 +116497,7 @@ https://www.rfc1437.de/2004/11/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116155,7 +116506,7 @@ https://www.rfc1437.de/2004/11/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116164,7 +116515,7 @@ https://www.rfc1437.de/2004/11/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116173,7 +116524,7 @@ https://www.rfc1437.de/2004/11/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116182,7 +116533,7 @@ https://www.rfc1437.de/2004/11/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116191,7 +116542,7 @@ https://www.rfc1437.de/2004/11/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116200,7 +116551,7 @@ https://www.rfc1437.de/2004/11/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116209,7 +116560,7 @@ https://www.rfc1437.de/2004/11/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116218,7 +116569,7 @@ https://www.rfc1437.de/2004/11/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116227,7 +116578,7 @@ https://www.rfc1437.de/2004/11/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116236,7 +116587,7 @@ https://www.rfc1437.de/2004/11/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116245,7 +116596,7 @@ https://www.rfc1437.de/2004/11/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116254,7 +116605,7 @@ https://www.rfc1437.de/2004/11/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116263,7 +116614,7 @@ https://www.rfc1437.de/2004/11/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116272,7 +116623,7 @@ https://www.rfc1437.de/2004/11/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116281,7 +116632,7 @@ https://www.rfc1437.de/2004/11/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116290,7 +116641,7 @@ https://www.rfc1437.de/2004/11/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116299,7 +116650,7 @@ https://www.rfc1437.de/2004/11/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116308,7 +116659,7 @@ https://www.rfc1437.de/2004/11/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116317,7 +116668,7 @@ https://www.rfc1437.de/2004/11/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116326,7 +116677,7 @@ https://www.rfc1437.de/2004/10/31/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116335,7 +116686,7 @@ https://www.rfc1437.de/2004/10/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116344,7 +116695,7 @@ https://www.rfc1437.de/2004/10/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116353,7 +116704,7 @@ https://www.rfc1437.de/2004/10/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116362,7 +116713,7 @@ https://www.rfc1437.de/2004/10/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116371,7 +116722,7 @@ https://www.rfc1437.de/2004/10/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116380,7 +116731,7 @@ https://www.rfc1437.de/2004/10/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116389,7 +116740,7 @@ https://www.rfc1437.de/2004/10/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116398,7 +116749,7 @@ https://www.rfc1437.de/2004/10/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116407,7 +116758,7 @@ https://www.rfc1437.de/2004/10/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116416,7 +116767,7 @@ https://www.rfc1437.de/2004/10/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116425,7 +116776,7 @@ https://www.rfc1437.de/2004/10/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116434,7 +116785,7 @@ https://www.rfc1437.de/2004/10/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116443,7 +116794,7 @@ https://www.rfc1437.de/2004/10/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116452,7 +116803,7 @@ https://www.rfc1437.de/2004/10/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116461,7 +116812,7 @@ https://www.rfc1437.de/2004/10/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116470,7 +116821,7 @@ https://www.rfc1437.de/2004/10/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116479,7 +116830,7 @@ https://www.rfc1437.de/2004/10/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116488,7 +116839,7 @@ https://www.rfc1437.de/2004/10/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116497,7 +116848,7 @@ https://www.rfc1437.de/2004/10/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116506,7 +116857,7 @@ https://www.rfc1437.de/2004/10/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116515,7 +116866,7 @@ https://www.rfc1437.de/2004/10/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116524,7 +116875,7 @@ https://www.rfc1437.de/2004/10/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116533,7 +116884,7 @@ https://www.rfc1437.de/2004/10/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116542,7 +116893,7 @@ https://www.rfc1437.de/2004/10/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116551,7 +116902,7 @@ https://www.rfc1437.de/2004/10/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116560,7 +116911,7 @@ https://www.rfc1437.de/2004/10/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116569,7 +116920,7 @@ https://www.rfc1437.de/2004/09/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116578,7 +116929,7 @@ https://www.rfc1437.de/2004/09/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116587,7 +116938,7 @@ https://www.rfc1437.de/2004/09/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116596,7 +116947,7 @@ https://www.rfc1437.de/2004/09/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116605,7 +116956,7 @@ https://www.rfc1437.de/2004/09/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116614,7 +116965,7 @@ https://www.rfc1437.de/2004/09/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116623,7 +116974,7 @@ https://www.rfc1437.de/2004/09/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116632,7 +116983,7 @@ https://www.rfc1437.de/2004/09/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116641,7 +116992,7 @@ https://www.rfc1437.de/2004/09/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116650,7 +117001,7 @@ https://www.rfc1437.de/2004/09/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116659,7 +117010,7 @@ https://www.rfc1437.de/2004/09/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116668,7 +117019,7 @@ https://www.rfc1437.de/2004/09/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116677,7 +117028,7 @@ https://www.rfc1437.de/2004/09/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116686,7 +117037,7 @@ https://www.rfc1437.de/2004/09/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116695,7 +117046,7 @@ https://www.rfc1437.de/2004/09/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116704,7 +117055,7 @@ https://www.rfc1437.de/2004/09/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116713,7 +117064,7 @@ https://www.rfc1437.de/2004/09/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116722,7 +117073,7 @@ https://www.rfc1437.de/2004/09/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116731,7 +117082,7 @@ https://www.rfc1437.de/2004/09/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116740,7 +117091,7 @@ https://www.rfc1437.de/2004/09/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116749,7 +117100,7 @@ https://www.rfc1437.de/2004/09/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116758,7 +117109,7 @@ https://www.rfc1437.de/2004/09/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116767,7 +117118,7 @@ https://www.rfc1437.de/2004/09/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116776,7 +117127,7 @@ https://www.rfc1437.de/2004/09/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116785,7 +117136,7 @@ https://www.rfc1437.de/2004/09/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116794,7 +117145,7 @@ https://www.rfc1437.de/2004/09/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116803,7 +117154,7 @@ https://www.rfc1437.de/2004/08/31/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116812,7 +117163,7 @@ https://www.rfc1437.de/2004/08/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116821,7 +117172,7 @@ https://www.rfc1437.de/2004/08/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116830,7 +117181,7 @@ https://www.rfc1437.de/2004/08/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116839,7 +117190,7 @@ https://www.rfc1437.de/2004/08/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116848,7 +117199,7 @@ https://www.rfc1437.de/2004/08/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116857,7 +117208,7 @@ https://www.rfc1437.de/2004/08/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116866,7 +117217,7 @@ https://www.rfc1437.de/2004/08/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116875,7 +117226,7 @@ https://www.rfc1437.de/2004/08/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116884,7 +117235,7 @@ https://www.rfc1437.de/2004/08/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116893,7 +117244,7 @@ https://www.rfc1437.de/2004/08/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116902,7 +117253,7 @@ https://www.rfc1437.de/2004/08/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116911,7 +117262,7 @@ https://www.rfc1437.de/2004/08/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116920,7 +117271,7 @@ https://www.rfc1437.de/2004/08/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116929,7 +117280,7 @@ https://www.rfc1437.de/2004/08/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116938,7 +117289,7 @@ https://www.rfc1437.de/2004/08/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116947,7 +117298,7 @@ https://www.rfc1437.de/2004/08/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116956,7 +117307,7 @@ https://www.rfc1437.de/2004/08/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116965,7 +117316,7 @@ https://www.rfc1437.de/2004/08/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116974,7 +117325,7 @@ https://www.rfc1437.de/2004/08/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116983,7 +117334,7 @@ https://www.rfc1437.de/2004/08/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -116992,7 +117343,7 @@ https://www.rfc1437.de/2004/08/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117001,7 +117352,7 @@ https://www.rfc1437.de/2004/08/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117010,7 +117361,7 @@ https://www.rfc1437.de/2004/08/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117019,7 +117370,7 @@ https://www.rfc1437.de/2004/08/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117028,7 +117379,7 @@ https://www.rfc1437.de/2004/08/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117037,7 +117388,7 @@ https://www.rfc1437.de/2004/08/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117046,7 +117397,7 @@ https://www.rfc1437.de/2004/08/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117055,7 +117406,7 @@ https://www.rfc1437.de/2004/08/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117064,7 +117415,7 @@ https://www.rfc1437.de/2004/08/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117073,7 +117424,7 @@ https://www.rfc1437.de/2004/08/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117082,7 +117433,7 @@ https://www.rfc1437.de/2004/07/31/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117091,7 +117442,7 @@ https://www.rfc1437.de/2004/07/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117100,7 +117451,7 @@ https://www.rfc1437.de/2004/07/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117109,7 +117460,7 @@ https://www.rfc1437.de/2004/07/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117118,7 +117469,7 @@ https://www.rfc1437.de/2004/07/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117127,7 +117478,7 @@ https://www.rfc1437.de/2004/07/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117136,7 +117487,7 @@ https://www.rfc1437.de/2004/07/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117145,7 +117496,7 @@ https://www.rfc1437.de/2004/07/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117154,7 +117505,7 @@ https://www.rfc1437.de/2004/07/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117163,7 +117514,7 @@ https://www.rfc1437.de/2004/07/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117172,7 +117523,7 @@ https://www.rfc1437.de/2004/07/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117181,7 +117532,7 @@ https://www.rfc1437.de/2004/07/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117190,7 +117541,7 @@ https://www.rfc1437.de/2004/07/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117199,7 +117550,7 @@ https://www.rfc1437.de/2004/07/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117208,7 +117559,7 @@ https://www.rfc1437.de/2004/07/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117217,7 +117568,7 @@ https://www.rfc1437.de/2004/07/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117226,7 +117577,7 @@ https://www.rfc1437.de/2004/07/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117235,7 +117586,7 @@ https://www.rfc1437.de/2004/07/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117244,7 +117595,7 @@ https://www.rfc1437.de/2004/07/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117253,7 +117604,7 @@ https://www.rfc1437.de/2004/07/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117262,7 +117613,7 @@ https://www.rfc1437.de/2004/07/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117271,7 +117622,7 @@ https://www.rfc1437.de/2004/07/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117280,7 +117631,7 @@ https://www.rfc1437.de/2004/07/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117289,7 +117640,7 @@ https://www.rfc1437.de/2004/07/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117298,7 +117649,7 @@ https://www.rfc1437.de/2004/07/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117307,7 +117658,7 @@ https://www.rfc1437.de/2004/07/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117316,7 +117667,7 @@ https://www.rfc1437.de/2004/07/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117325,7 +117676,7 @@ https://www.rfc1437.de/2004/07/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117334,7 +117685,7 @@ https://www.rfc1437.de/2004/07/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117343,7 +117694,7 @@ https://www.rfc1437.de/2004/07/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117352,7 +117703,7 @@ https://www.rfc1437.de/2004/07/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117361,7 +117712,7 @@ https://www.rfc1437.de/2004/06/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117370,7 +117721,7 @@ https://www.rfc1437.de/2004/06/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117379,7 +117730,7 @@ https://www.rfc1437.de/2004/06/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117388,7 +117739,7 @@ https://www.rfc1437.de/2004/06/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117397,7 +117748,7 @@ https://www.rfc1437.de/2004/06/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117406,7 +117757,7 @@ https://www.rfc1437.de/2004/06/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117415,7 +117766,7 @@ https://www.rfc1437.de/2004/06/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117424,7 +117775,7 @@ https://www.rfc1437.de/2004/06/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117433,7 +117784,7 @@ https://www.rfc1437.de/2004/06/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117442,7 +117793,7 @@ https://www.rfc1437.de/2004/06/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117451,7 +117802,7 @@ https://www.rfc1437.de/2004/06/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117460,7 +117811,7 @@ https://www.rfc1437.de/2004/06/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117469,7 +117820,7 @@ https://www.rfc1437.de/2004/06/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117478,7 +117829,7 @@ https://www.rfc1437.de/2004/06/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117487,7 +117838,7 @@ https://www.rfc1437.de/2004/06/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117496,7 +117847,7 @@ https://www.rfc1437.de/2004/06/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117505,7 +117856,7 @@ https://www.rfc1437.de/2004/06/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117514,7 +117865,7 @@ https://www.rfc1437.de/2004/06/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117523,7 +117874,7 @@ https://www.rfc1437.de/2004/06/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117532,7 +117883,7 @@ https://www.rfc1437.de/2004/06/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117541,7 +117892,7 @@ https://www.rfc1437.de/2004/06/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117550,7 +117901,7 @@ https://www.rfc1437.de/2004/06/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117559,7 +117910,7 @@ https://www.rfc1437.de/2004/06/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117568,7 +117919,7 @@ https://www.rfc1437.de/2004/06/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117577,7 +117928,7 @@ https://www.rfc1437.de/2004/06/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117586,7 +117937,7 @@ https://www.rfc1437.de/2004/06/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117595,7 +117946,7 @@ https://www.rfc1437.de/2004/05/31/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117604,7 +117955,7 @@ https://www.rfc1437.de/2004/05/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117613,7 +117964,7 @@ https://www.rfc1437.de/2004/05/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117622,7 +117973,7 @@ https://www.rfc1437.de/2004/05/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117631,7 +117982,7 @@ https://www.rfc1437.de/2004/05/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117640,7 +117991,7 @@ https://www.rfc1437.de/2004/05/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117649,7 +118000,7 @@ https://www.rfc1437.de/2004/05/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117658,7 +118009,7 @@ https://www.rfc1437.de/2004/05/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117667,7 +118018,7 @@ https://www.rfc1437.de/2004/05/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117676,7 +118027,7 @@ https://www.rfc1437.de/2004/05/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117685,7 +118036,7 @@ https://www.rfc1437.de/2004/05/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117694,7 +118045,7 @@ https://www.rfc1437.de/2004/05/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117703,7 +118054,7 @@ https://www.rfc1437.de/2004/05/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117712,7 +118063,7 @@ https://www.rfc1437.de/2004/05/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117721,7 +118072,7 @@ https://www.rfc1437.de/2004/05/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117730,7 +118081,7 @@ https://www.rfc1437.de/2004/05/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117739,7 +118090,7 @@ https://www.rfc1437.de/2004/05/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117748,7 +118099,7 @@ https://www.rfc1437.de/2004/05/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117757,7 +118108,7 @@ https://www.rfc1437.de/2004/05/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117766,7 +118117,7 @@ https://www.rfc1437.de/2004/05/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117775,7 +118126,7 @@ https://www.rfc1437.de/2004/05/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117784,7 +118135,7 @@ https://www.rfc1437.de/2004/05/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117793,7 +118144,7 @@ https://www.rfc1437.de/2004/05/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117802,7 +118153,7 @@ https://www.rfc1437.de/2004/05/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117811,7 +118162,7 @@ https://www.rfc1437.de/2004/05/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117820,7 +118171,7 @@ https://www.rfc1437.de/2004/05/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117829,7 +118180,7 @@ https://www.rfc1437.de/2004/05/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117838,7 +118189,7 @@ https://www.rfc1437.de/2004/05/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117847,7 +118198,7 @@ https://www.rfc1437.de/2004/04/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117856,7 +118207,7 @@ https://www.rfc1437.de/2004/04/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117865,7 +118216,7 @@ https://www.rfc1437.de/2004/04/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117874,7 +118225,7 @@ https://www.rfc1437.de/2004/04/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117883,7 +118234,7 @@ https://www.rfc1437.de/2004/04/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117892,7 +118243,7 @@ https://www.rfc1437.de/2004/04/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117901,7 +118252,7 @@ https://www.rfc1437.de/2004/04/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117910,7 +118261,7 @@ https://www.rfc1437.de/2004/04/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117919,7 +118270,7 @@ https://www.rfc1437.de/2004/04/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117928,7 +118279,7 @@ https://www.rfc1437.de/2004/04/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117937,7 +118288,7 @@ https://www.rfc1437.de/2004/04/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117946,7 +118297,7 @@ https://www.rfc1437.de/2004/04/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117955,7 +118306,7 @@ https://www.rfc1437.de/2004/04/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117964,7 +118315,7 @@ https://www.rfc1437.de/2004/04/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117973,7 +118324,7 @@ https://www.rfc1437.de/2004/04/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117982,7 +118333,7 @@ https://www.rfc1437.de/2004/04/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -117991,7 +118342,7 @@ https://www.rfc1437.de/2004/04/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118000,7 +118351,7 @@ https://www.rfc1437.de/2004/04/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118009,7 +118360,7 @@ https://www.rfc1437.de/2004/04/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118018,7 +118369,7 @@ https://www.rfc1437.de/2004/04/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118027,7 +118378,7 @@ https://www.rfc1437.de/2004/04/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118036,7 +118387,7 @@ https://www.rfc1437.de/2004/04/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118045,7 +118396,7 @@ https://www.rfc1437.de/2004/04/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118054,7 +118405,7 @@ https://www.rfc1437.de/2004/04/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118063,7 +118414,7 @@ https://www.rfc1437.de/2004/04/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118072,7 +118423,7 @@ https://www.rfc1437.de/2004/04/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118081,7 +118432,7 @@ https://www.rfc1437.de/2004/04/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118090,7 +118441,7 @@ https://www.rfc1437.de/2004/04/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118099,7 +118450,7 @@ https://www.rfc1437.de/2004/04/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118108,7 +118459,7 @@ https://www.rfc1437.de/2004/03/31/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118117,7 +118468,7 @@ https://www.rfc1437.de/2004/03/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118126,7 +118477,7 @@ https://www.rfc1437.de/2004/03/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118135,7 +118486,7 @@ https://www.rfc1437.de/2004/03/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118144,7 +118495,7 @@ https://www.rfc1437.de/2004/03/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118153,7 +118504,7 @@ https://www.rfc1437.de/2004/03/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118162,7 +118513,7 @@ https://www.rfc1437.de/2004/03/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118171,7 +118522,7 @@ https://www.rfc1437.de/2004/03/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118180,7 +118531,7 @@ https://www.rfc1437.de/2004/03/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118189,7 +118540,7 @@ https://www.rfc1437.de/2004/03/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118198,7 +118549,7 @@ https://www.rfc1437.de/2004/03/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118207,7 +118558,7 @@ https://www.rfc1437.de/2004/03/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118216,7 +118567,7 @@ https://www.rfc1437.de/2004/03/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118225,7 +118576,7 @@ https://www.rfc1437.de/2004/03/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118234,7 +118585,7 @@ https://www.rfc1437.de/2004/03/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118243,7 +118594,7 @@ https://www.rfc1437.de/2004/03/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118252,7 +118603,7 @@ https://www.rfc1437.de/2004/03/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118261,7 +118612,7 @@ https://www.rfc1437.de/2004/03/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118270,7 +118621,7 @@ https://www.rfc1437.de/2004/03/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118279,7 +118630,7 @@ https://www.rfc1437.de/2004/03/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118288,7 +118639,7 @@ https://www.rfc1437.de/2004/03/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118297,7 +118648,7 @@ https://www.rfc1437.de/2004/03/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118306,7 +118657,7 @@ https://www.rfc1437.de/2004/03/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118315,7 +118666,7 @@ https://www.rfc1437.de/2004/03/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118324,7 +118675,7 @@ https://www.rfc1437.de/2004/03/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118333,7 +118684,7 @@ https://www.rfc1437.de/2004/03/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118342,7 +118693,7 @@ https://www.rfc1437.de/2004/03/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118351,7 +118702,7 @@ https://www.rfc1437.de/2004/03/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118360,7 +118711,7 @@ https://www.rfc1437.de/2004/03/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118369,7 +118720,7 @@ https://www.rfc1437.de/2004/03/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118378,7 +118729,7 @@ https://www.rfc1437.de/2004/02/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118387,7 +118738,7 @@ https://www.rfc1437.de/2004/02/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118396,7 +118747,7 @@ https://www.rfc1437.de/2004/02/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118405,7 +118756,7 @@ https://www.rfc1437.de/2004/02/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118414,7 +118765,7 @@ https://www.rfc1437.de/2004/02/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118423,7 +118774,7 @@ https://www.rfc1437.de/2004/02/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118432,7 +118783,7 @@ https://www.rfc1437.de/2004/02/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118441,7 +118792,7 @@ https://www.rfc1437.de/2004/02/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118450,7 +118801,7 @@ https://www.rfc1437.de/2004/02/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118459,7 +118810,7 @@ https://www.rfc1437.de/2004/02/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118468,7 +118819,7 @@ https://www.rfc1437.de/2004/02/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118477,7 +118828,7 @@ https://www.rfc1437.de/2004/02/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118486,7 +118837,7 @@ https://www.rfc1437.de/2004/02/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118495,7 +118846,7 @@ https://www.rfc1437.de/2004/02/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118504,7 +118855,7 @@ https://www.rfc1437.de/2004/02/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118513,7 +118864,7 @@ https://www.rfc1437.de/2004/02/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118522,7 +118873,7 @@ https://www.rfc1437.de/2004/02/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118531,7 +118882,7 @@ https://www.rfc1437.de/2004/02/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118540,7 +118891,7 @@ https://www.rfc1437.de/2004/02/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118549,7 +118900,7 @@ https://www.rfc1437.de/2004/02/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118558,7 +118909,7 @@ https://www.rfc1437.de/2004/02/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118567,7 +118918,7 @@ https://www.rfc1437.de/2004/02/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118576,7 +118927,7 @@ https://www.rfc1437.de/2004/02/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118585,7 +118936,7 @@ https://www.rfc1437.de/2004/02/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118594,7 +118945,7 @@ https://www.rfc1437.de/2004/02/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118603,7 +118954,7 @@ https://www.rfc1437.de/2004/02/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118612,7 +118963,7 @@ https://www.rfc1437.de/2004/01/31/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118621,7 +118972,7 @@ https://www.rfc1437.de/2004/01/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118630,7 +118981,7 @@ https://www.rfc1437.de/2004/01/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118639,7 +118990,7 @@ https://www.rfc1437.de/2004/01/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118648,7 +118999,7 @@ https://www.rfc1437.de/2004/01/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118657,7 +119008,7 @@ https://www.rfc1437.de/2004/01/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118666,7 +119017,7 @@ https://www.rfc1437.de/2004/01/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118675,7 +119026,7 @@ https://www.rfc1437.de/2004/01/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118684,7 +119035,7 @@ https://www.rfc1437.de/2004/01/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118693,7 +119044,7 @@ https://www.rfc1437.de/2004/01/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118702,7 +119053,7 @@ https://www.rfc1437.de/2004/01/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118711,7 +119062,7 @@ https://www.rfc1437.de/2004/01/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118720,7 +119071,7 @@ https://www.rfc1437.de/2004/01/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118729,7 +119080,7 @@ https://www.rfc1437.de/2004/01/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118738,7 +119089,7 @@ https://www.rfc1437.de/2004/01/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118747,7 +119098,7 @@ https://www.rfc1437.de/2004/01/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118756,7 +119107,7 @@ https://www.rfc1437.de/2004/01/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118765,7 +119116,7 @@ https://www.rfc1437.de/2004/01/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118774,7 +119125,7 @@ https://www.rfc1437.de/2004/01/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118783,7 +119134,7 @@ https://www.rfc1437.de/2004/01/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118792,7 +119143,7 @@ https://www.rfc1437.de/2004/01/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118801,7 +119152,7 @@ https://www.rfc1437.de/2004/01/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118810,7 +119161,7 @@ https://www.rfc1437.de/2004/01/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118819,7 +119170,7 @@ https://www.rfc1437.de/2004/01/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118828,7 +119179,7 @@ https://www.rfc1437.de/2004/01/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118837,7 +119188,7 @@ https://www.rfc1437.de/2004/01/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118846,7 +119197,7 @@ https://www.rfc1437.de/2004/01/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118855,7 +119206,7 @@ https://www.rfc1437.de/2004/01/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118864,7 +119215,7 @@ https://www.rfc1437.de/2004/01/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118873,7 +119224,7 @@ https://www.rfc1437.de/2004/01/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118882,7 +119233,7 @@ https://www.rfc1437.de/2003/12/31/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118891,7 +119242,7 @@ https://www.rfc1437.de/2003/12/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118900,7 +119251,7 @@ https://www.rfc1437.de/2003/12/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118909,7 +119260,7 @@ https://www.rfc1437.de/2003/12/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118918,7 +119269,7 @@ https://www.rfc1437.de/2003/12/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118927,7 +119278,7 @@ https://www.rfc1437.de/2003/12/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118936,7 +119287,7 @@ https://www.rfc1437.de/2003/12/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118945,7 +119296,7 @@ https://www.rfc1437.de/2003/12/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118954,7 +119305,7 @@ https://www.rfc1437.de/2003/12/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118963,7 +119314,7 @@ https://www.rfc1437.de/2003/12/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118972,7 +119323,7 @@ https://www.rfc1437.de/2003/12/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118981,7 +119332,7 @@ https://www.rfc1437.de/2003/12/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118990,7 +119341,7 @@ https://www.rfc1437.de/2003/12/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -118999,7 +119350,7 @@ https://www.rfc1437.de/2003/12/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119008,7 +119359,7 @@ https://www.rfc1437.de/2003/12/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119017,7 +119368,7 @@ https://www.rfc1437.de/2003/12/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119026,7 +119377,7 @@ https://www.rfc1437.de/2003/12/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119035,7 +119386,7 @@ https://www.rfc1437.de/2003/12/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119044,7 +119395,7 @@ https://www.rfc1437.de/2003/12/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119053,7 +119404,7 @@ https://www.rfc1437.de/2003/12/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119062,7 +119413,7 @@ https://www.rfc1437.de/2003/12/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119071,7 +119422,7 @@ https://www.rfc1437.de/2003/12/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119080,7 +119431,7 @@ https://www.rfc1437.de/2003/12/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119089,7 +119440,7 @@ https://www.rfc1437.de/2003/12/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119098,7 +119449,7 @@ https://www.rfc1437.de/2003/12/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119107,7 +119458,7 @@ https://www.rfc1437.de/2003/12/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119116,7 +119467,7 @@ https://www.rfc1437.de/2003/12/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119125,7 +119476,7 @@ https://www.rfc1437.de/2003/12/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119134,7 +119485,7 @@ https://www.rfc1437.de/2003/12/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119143,7 +119494,7 @@ https://www.rfc1437.de/2003/12/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119152,7 +119503,7 @@ https://www.rfc1437.de/2003/12/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119161,7 +119512,7 @@ https://www.rfc1437.de/2003/11/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119170,7 +119521,7 @@ https://www.rfc1437.de/2003/11/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119179,7 +119530,7 @@ https://www.rfc1437.de/2003/11/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119188,7 +119539,7 @@ https://www.rfc1437.de/2003/11/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119197,7 +119548,7 @@ https://www.rfc1437.de/2003/11/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119206,7 +119557,7 @@ https://www.rfc1437.de/2003/11/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119215,7 +119566,7 @@ https://www.rfc1437.de/2003/11/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119224,7 +119575,7 @@ https://www.rfc1437.de/2003/11/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119233,7 +119584,7 @@ https://www.rfc1437.de/2003/11/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119242,7 +119593,7 @@ https://www.rfc1437.de/2003/11/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119251,7 +119602,7 @@ https://www.rfc1437.de/2003/11/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119260,7 +119611,7 @@ https://www.rfc1437.de/2003/11/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119269,7 +119620,7 @@ https://www.rfc1437.de/2003/11/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119278,7 +119629,7 @@ https://www.rfc1437.de/2003/11/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119287,7 +119638,7 @@ https://www.rfc1437.de/2003/11/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119296,7 +119647,7 @@ https://www.rfc1437.de/2003/11/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119305,7 +119656,7 @@ https://www.rfc1437.de/2003/11/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119314,7 +119665,7 @@ https://www.rfc1437.de/2003/11/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119323,7 +119674,7 @@ https://www.rfc1437.de/2003/11/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119332,7 +119683,7 @@ https://www.rfc1437.de/2003/11/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119341,7 +119692,7 @@ https://www.rfc1437.de/2003/11/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119350,7 +119701,7 @@ https://www.rfc1437.de/2003/11/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119359,7 +119710,7 @@ https://www.rfc1437.de/2003/11/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119368,7 +119719,7 @@ https://www.rfc1437.de/2003/11/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119377,7 +119728,7 @@ https://www.rfc1437.de/2003/11/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119386,7 +119737,7 @@ https://www.rfc1437.de/2003/11/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119395,7 +119746,7 @@ https://www.rfc1437.de/2003/11/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119404,7 +119755,7 @@ https://www.rfc1437.de/2003/11/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119413,7 +119764,7 @@ https://www.rfc1437.de/2003/11/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119422,7 +119773,7 @@ https://www.rfc1437.de/2003/11/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119431,7 +119782,7 @@ https://www.rfc1437.de/2003/10/31/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119440,7 +119791,7 @@ https://www.rfc1437.de/2003/10/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119449,7 +119800,7 @@ https://www.rfc1437.de/2003/10/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119458,7 +119809,7 @@ https://www.rfc1437.de/2003/10/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119467,7 +119818,7 @@ https://www.rfc1437.de/2003/10/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119476,7 +119827,7 @@ https://www.rfc1437.de/2003/10/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119485,7 +119836,7 @@ https://www.rfc1437.de/2003/10/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119494,7 +119845,7 @@ https://www.rfc1437.de/2003/10/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119503,7 +119854,7 @@ https://www.rfc1437.de/2003/10/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119512,7 +119863,7 @@ https://www.rfc1437.de/2003/10/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119521,7 +119872,7 @@ https://www.rfc1437.de/2003/10/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119530,7 +119881,7 @@ https://www.rfc1437.de/2003/10/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119539,7 +119890,7 @@ https://www.rfc1437.de/2003/10/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119548,7 +119899,7 @@ https://www.rfc1437.de/2003/10/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119557,7 +119908,7 @@ https://www.rfc1437.de/2003/10/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119566,7 +119917,7 @@ https://www.rfc1437.de/2003/10/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119575,7 +119926,7 @@ https://www.rfc1437.de/2003/10/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119584,7 +119935,7 @@ https://www.rfc1437.de/2003/10/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119593,7 +119944,7 @@ https://www.rfc1437.de/2003/10/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119602,7 +119953,7 @@ https://www.rfc1437.de/2003/10/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119611,7 +119962,7 @@ https://www.rfc1437.de/2003/10/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119620,7 +119971,7 @@ https://www.rfc1437.de/2003/10/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119629,7 +119980,7 @@ https://www.rfc1437.de/2003/10/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119638,7 +119989,7 @@ https://www.rfc1437.de/2003/10/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119647,7 +119998,7 @@ https://www.rfc1437.de/2003/10/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119656,7 +120007,7 @@ https://www.rfc1437.de/2003/10/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119665,7 +120016,7 @@ https://www.rfc1437.de/2003/10/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119674,7 +120025,7 @@ https://www.rfc1437.de/2003/10/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119683,7 +120034,7 @@ https://www.rfc1437.de/2003/10/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119692,7 +120043,7 @@ https://www.rfc1437.de/2003/10/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119701,7 +120052,7 @@ https://www.rfc1437.de/2003/10/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119710,7 +120061,7 @@ https://www.rfc1437.de/2003/09/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119719,7 +120070,7 @@ https://www.rfc1437.de/2003/09/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119728,7 +120079,7 @@ https://www.rfc1437.de/2003/09/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119737,7 +120088,7 @@ https://www.rfc1437.de/2003/09/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119746,7 +120097,7 @@ https://www.rfc1437.de/2003/09/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119755,7 +120106,7 @@ https://www.rfc1437.de/2003/09/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119764,7 +120115,7 @@ https://www.rfc1437.de/2003/09/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119773,7 +120124,7 @@ https://www.rfc1437.de/2003/09/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119782,7 +120133,7 @@ https://www.rfc1437.de/2003/09/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119791,7 +120142,7 @@ https://www.rfc1437.de/2003/09/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119800,7 +120151,7 @@ https://www.rfc1437.de/2003/09/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119809,7 +120160,7 @@ https://www.rfc1437.de/2003/09/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119818,7 +120169,7 @@ https://www.rfc1437.de/2003/09/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119827,7 +120178,7 @@ https://www.rfc1437.de/2003/09/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119836,7 +120187,7 @@ https://www.rfc1437.de/2003/09/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119845,7 +120196,7 @@ https://www.rfc1437.de/2003/09/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119854,7 +120205,7 @@ https://www.rfc1437.de/2003/09/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119863,7 +120214,7 @@ https://www.rfc1437.de/2003/09/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119872,7 +120223,7 @@ https://www.rfc1437.de/2003/09/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119881,7 +120232,7 @@ https://www.rfc1437.de/2003/09/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119890,7 +120241,7 @@ https://www.rfc1437.de/2003/09/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119899,7 +120250,7 @@ https://www.rfc1437.de/2003/09/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119908,7 +120259,7 @@ https://www.rfc1437.de/2003/09/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119917,7 +120268,7 @@ https://www.rfc1437.de/2003/09/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119926,7 +120277,7 @@ https://www.rfc1437.de/2003/09/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119935,7 +120286,7 @@ https://www.rfc1437.de/2003/09/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119944,7 +120295,7 @@ https://www.rfc1437.de/2003/09/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119953,7 +120304,7 @@ https://www.rfc1437.de/2003/08/31/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119962,7 +120313,7 @@ https://www.rfc1437.de/2003/08/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119971,7 +120322,7 @@ https://www.rfc1437.de/2003/08/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119980,7 +120331,7 @@ https://www.rfc1437.de/2003/08/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119989,7 +120340,7 @@ https://www.rfc1437.de/2003/08/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -119998,7 +120349,7 @@ https://www.rfc1437.de/2003/08/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120007,7 +120358,7 @@ https://www.rfc1437.de/2003/08/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120016,7 +120367,7 @@ https://www.rfc1437.de/2003/08/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120025,7 +120376,7 @@ https://www.rfc1437.de/2003/08/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120034,7 +120385,7 @@ https://www.rfc1437.de/2003/08/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120043,7 +120394,7 @@ https://www.rfc1437.de/2003/08/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120052,7 +120403,7 @@ https://www.rfc1437.de/2003/08/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120061,7 +120412,7 @@ https://www.rfc1437.de/2003/08/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120070,7 +120421,7 @@ https://www.rfc1437.de/2003/08/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120079,7 +120430,7 @@ https://www.rfc1437.de/2003/08/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120088,7 +120439,7 @@ https://www.rfc1437.de/2003/08/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120097,7 +120448,7 @@ https://www.rfc1437.de/2003/08/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120106,7 +120457,7 @@ https://www.rfc1437.de/2003/08/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120115,7 +120466,7 @@ https://www.rfc1437.de/2003/08/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120124,7 +120475,7 @@ https://www.rfc1437.de/2003/08/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120133,7 +120484,7 @@ https://www.rfc1437.de/2003/08/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120142,7 +120493,7 @@ https://www.rfc1437.de/2003/08/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120151,7 +120502,7 @@ https://www.rfc1437.de/2003/08/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120160,7 +120511,7 @@ https://www.rfc1437.de/2003/08/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120169,7 +120520,7 @@ https://www.rfc1437.de/2003/07/31/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120178,7 +120529,7 @@ https://www.rfc1437.de/2003/07/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120187,7 +120538,7 @@ https://www.rfc1437.de/2003/07/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120196,7 +120547,7 @@ https://www.rfc1437.de/2003/07/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120205,7 +120556,7 @@ https://www.rfc1437.de/2003/07/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120214,7 +120565,7 @@ https://www.rfc1437.de/2003/07/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120223,7 +120574,7 @@ https://www.rfc1437.de/2003/07/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120232,7 +120583,7 @@ https://www.rfc1437.de/2003/07/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120241,7 +120592,7 @@ https://www.rfc1437.de/2003/07/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120250,7 +120601,7 @@ https://www.rfc1437.de/2003/07/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120259,7 +120610,7 @@ https://www.rfc1437.de/2003/07/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120268,7 +120619,7 @@ https://www.rfc1437.de/2003/07/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120277,7 +120628,7 @@ https://www.rfc1437.de/2003/07/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120286,7 +120637,7 @@ https://www.rfc1437.de/2003/07/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120295,7 +120646,7 @@ https://www.rfc1437.de/2003/07/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120304,7 +120655,7 @@ https://www.rfc1437.de/2003/07/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120313,7 +120664,7 @@ https://www.rfc1437.de/2003/07/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120322,7 +120673,7 @@ https://www.rfc1437.de/2003/07/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120331,7 +120682,7 @@ https://www.rfc1437.de/2003/07/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120340,7 +120691,7 @@ https://www.rfc1437.de/2003/07/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120349,7 +120700,7 @@ https://www.rfc1437.de/2003/07/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120358,7 +120709,7 @@ https://www.rfc1437.de/2003/07/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120367,7 +120718,7 @@ https://www.rfc1437.de/2003/07/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120376,7 +120727,7 @@ https://www.rfc1437.de/2003/07/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120385,7 +120736,7 @@ https://www.rfc1437.de/2003/07/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120394,7 +120745,7 @@ https://www.rfc1437.de/2003/07/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120403,7 +120754,7 @@ https://www.rfc1437.de/2003/07/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120412,7 +120763,7 @@ https://www.rfc1437.de/2003/07/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120421,7 +120772,7 @@ https://www.rfc1437.de/2003/07/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120430,7 +120781,7 @@ https://www.rfc1437.de/2003/07/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120439,7 +120790,7 @@ https://www.rfc1437.de/2003/06/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120448,7 +120799,7 @@ https://www.rfc1437.de/2003/06/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120457,7 +120808,7 @@ https://www.rfc1437.de/2003/06/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120466,7 +120817,7 @@ https://www.rfc1437.de/2003/06/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120475,7 +120826,7 @@ https://www.rfc1437.de/2003/06/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120484,7 +120835,7 @@ https://www.rfc1437.de/2003/06/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120493,7 +120844,7 @@ https://www.rfc1437.de/2003/06/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120502,7 +120853,7 @@ https://www.rfc1437.de/2003/06/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120511,7 +120862,7 @@ https://www.rfc1437.de/2003/06/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120520,7 +120871,7 @@ https://www.rfc1437.de/2003/06/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120529,7 +120880,7 @@ https://www.rfc1437.de/2003/06/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120538,7 +120889,7 @@ https://www.rfc1437.de/2003/06/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120547,7 +120898,7 @@ https://www.rfc1437.de/2003/06/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120556,7 +120907,7 @@ https://www.rfc1437.de/2003/06/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120565,7 +120916,7 @@ https://www.rfc1437.de/2003/06/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120574,7 +120925,7 @@ https://www.rfc1437.de/2003/06/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120583,7 +120934,7 @@ https://www.rfc1437.de/2003/06/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120592,7 +120943,7 @@ https://www.rfc1437.de/2003/06/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120601,7 +120952,7 @@ https://www.rfc1437.de/2003/06/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120610,7 +120961,7 @@ https://www.rfc1437.de/2003/06/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120619,7 +120970,7 @@ https://www.rfc1437.de/2003/06/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120628,7 +120979,7 @@ https://www.rfc1437.de/2003/06/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120637,7 +120988,7 @@ https://www.rfc1437.de/2003/06/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120646,7 +120997,7 @@ https://www.rfc1437.de/2003/06/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120655,7 +121006,7 @@ https://www.rfc1437.de/2003/06/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120664,7 +121015,7 @@ https://www.rfc1437.de/2003/06/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120673,7 +121024,7 @@ https://www.rfc1437.de/2003/06/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120682,7 +121033,7 @@ https://www.rfc1437.de/2003/06/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120691,7 +121042,7 @@ https://www.rfc1437.de/2003/06/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120700,7 +121051,7 @@ https://www.rfc1437.de/2003/06/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120709,7 +121060,7 @@ https://www.rfc1437.de/2003/05/31/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120718,7 +121069,7 @@ https://www.rfc1437.de/2003/05/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120727,7 +121078,7 @@ https://www.rfc1437.de/2003/05/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120736,7 +121087,7 @@ https://www.rfc1437.de/2003/05/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120745,7 +121096,7 @@ https://www.rfc1437.de/2003/05/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120754,7 +121105,7 @@ https://www.rfc1437.de/2003/05/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120763,7 +121114,7 @@ https://www.rfc1437.de/2003/05/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120772,7 +121123,7 @@ https://www.rfc1437.de/2003/05/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120781,7 +121132,7 @@ https://www.rfc1437.de/2003/05/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120790,7 +121141,7 @@ https://www.rfc1437.de/2003/05/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120799,7 +121150,7 @@ https://www.rfc1437.de/2003/05/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120808,7 +121159,7 @@ https://www.rfc1437.de/2003/05/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120817,7 +121168,7 @@ https://www.rfc1437.de/2003/05/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120826,7 +121177,7 @@ https://www.rfc1437.de/2003/05/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120835,7 +121186,7 @@ https://www.rfc1437.de/2003/05/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120844,7 +121195,7 @@ https://www.rfc1437.de/2003/05/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120853,7 +121204,7 @@ https://www.rfc1437.de/2003/05/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120862,7 +121213,7 @@ https://www.rfc1437.de/2003/05/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120871,7 +121222,7 @@ https://www.rfc1437.de/2003/05/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120880,7 +121231,7 @@ https://www.rfc1437.de/2003/05/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120889,7 +121240,7 @@ https://www.rfc1437.de/2003/05/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120898,7 +121249,7 @@ https://www.rfc1437.de/2003/05/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120907,7 +121258,7 @@ https://www.rfc1437.de/2003/05/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120916,7 +121267,7 @@ https://www.rfc1437.de/2003/05/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120925,7 +121276,7 @@ https://www.rfc1437.de/2003/05/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120934,7 +121285,7 @@ https://www.rfc1437.de/2003/05/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120943,7 +121294,7 @@ https://www.rfc1437.de/2003/05/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120952,7 +121303,7 @@ https://www.rfc1437.de/2003/05/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120961,7 +121312,7 @@ https://www.rfc1437.de/2003/04/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120970,7 +121321,7 @@ https://www.rfc1437.de/2003/04/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120979,7 +121330,7 @@ https://www.rfc1437.de/2003/04/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120988,7 +121339,7 @@ https://www.rfc1437.de/2003/04/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -120997,7 +121348,7 @@ https://www.rfc1437.de/2003/04/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121006,7 +121357,7 @@ https://www.rfc1437.de/2003/04/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121015,7 +121366,7 @@ https://www.rfc1437.de/2003/04/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121024,7 +121375,7 @@ https://www.rfc1437.de/2003/04/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121033,7 +121384,7 @@ https://www.rfc1437.de/2003/04/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121042,7 +121393,7 @@ https://www.rfc1437.de/2003/04/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121051,7 +121402,7 @@ https://www.rfc1437.de/2003/04/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121060,7 +121411,7 @@ https://www.rfc1437.de/2003/04/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121069,7 +121420,7 @@ https://www.rfc1437.de/2003/04/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121078,7 +121429,7 @@ https://www.rfc1437.de/2003/04/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121087,7 +121438,7 @@ https://www.rfc1437.de/2003/04/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121096,7 +121447,7 @@ https://www.rfc1437.de/2003/04/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121105,7 +121456,7 @@ https://www.rfc1437.de/2003/04/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121114,7 +121465,7 @@ https://www.rfc1437.de/2003/04/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121123,7 +121474,7 @@ https://www.rfc1437.de/2003/04/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121132,7 +121483,7 @@ https://www.rfc1437.de/2003/04/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121141,7 +121492,7 @@ https://www.rfc1437.de/2003/04/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121150,7 +121501,7 @@ https://www.rfc1437.de/2003/04/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121159,7 +121510,7 @@ https://www.rfc1437.de/2003/04/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121168,7 +121519,7 @@ https://www.rfc1437.de/2003/04/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121177,7 +121528,7 @@ https://www.rfc1437.de/2003/04/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121186,7 +121537,7 @@ https://www.rfc1437.de/2003/04/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121195,7 +121546,7 @@ https://www.rfc1437.de/2003/04/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121204,7 +121555,7 @@ https://www.rfc1437.de/2003/04/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121213,7 +121564,7 @@ https://www.rfc1437.de/2003/04/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121222,7 +121573,7 @@ https://www.rfc1437.de/2003/03/31/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121231,7 +121582,7 @@ https://www.rfc1437.de/2003/03/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121240,7 +121591,7 @@ https://www.rfc1437.de/2003/03/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121249,7 +121600,7 @@ https://www.rfc1437.de/2003/03/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121258,7 +121609,7 @@ https://www.rfc1437.de/2003/03/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121267,7 +121618,7 @@ https://www.rfc1437.de/2003/03/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121276,7 +121627,7 @@ https://www.rfc1437.de/2003/03/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121285,7 +121636,7 @@ https://www.rfc1437.de/2003/03/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121294,7 +121645,7 @@ https://www.rfc1437.de/2003/03/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121303,7 +121654,7 @@ https://www.rfc1437.de/2003/03/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121312,7 +121663,7 @@ https://www.rfc1437.de/2003/03/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121321,7 +121672,7 @@ https://www.rfc1437.de/2003/03/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121330,7 +121681,7 @@ https://www.rfc1437.de/2003/03/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121339,7 +121690,7 @@ https://www.rfc1437.de/2003/03/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121348,7 +121699,7 @@ https://www.rfc1437.de/2003/03/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121357,7 +121708,7 @@ https://www.rfc1437.de/2003/03/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121366,7 +121717,7 @@ https://www.rfc1437.de/2003/03/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121375,7 +121726,7 @@ https://www.rfc1437.de/2003/03/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121384,7 +121735,7 @@ https://www.rfc1437.de/2003/03/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121393,7 +121744,7 @@ https://www.rfc1437.de/2003/03/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121402,7 +121753,7 @@ https://www.rfc1437.de/2003/03/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121411,7 +121762,7 @@ https://www.rfc1437.de/2003/03/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121420,7 +121771,7 @@ https://www.rfc1437.de/2003/03/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121429,7 +121780,7 @@ https://www.rfc1437.de/2003/03/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121438,7 +121789,7 @@ https://www.rfc1437.de/2003/03/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121447,7 +121798,7 @@ https://www.rfc1437.de/2003/03/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121456,7 +121807,7 @@ https://www.rfc1437.de/2003/03/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121465,7 +121816,7 @@ https://www.rfc1437.de/2003/03/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121474,7 +121825,7 @@ https://www.rfc1437.de/2003/03/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121483,7 +121834,7 @@ https://www.rfc1437.de/2003/03/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121492,7 +121843,7 @@ https://www.rfc1437.de/2003/03/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121501,7 +121852,7 @@ https://www.rfc1437.de/2003/02/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121510,7 +121861,7 @@ https://www.rfc1437.de/2003/02/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121519,7 +121870,7 @@ https://www.rfc1437.de/2003/02/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121528,7 +121879,7 @@ https://www.rfc1437.de/2003/02/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121537,7 +121888,7 @@ https://www.rfc1437.de/2003/02/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121546,7 +121897,7 @@ https://www.rfc1437.de/2003/02/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121555,7 +121906,7 @@ https://www.rfc1437.de/2003/02/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121564,7 +121915,7 @@ https://www.rfc1437.de/2003/02/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121573,7 +121924,7 @@ https://www.rfc1437.de/2003/02/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121582,7 +121933,7 @@ https://www.rfc1437.de/2003/02/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121591,7 +121942,7 @@ https://www.rfc1437.de/2003/02/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121600,7 +121951,7 @@ https://www.rfc1437.de/2003/02/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121609,7 +121960,7 @@ https://www.rfc1437.de/2003/02/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121618,7 +121969,7 @@ https://www.rfc1437.de/2003/02/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121627,7 +121978,7 @@ https://www.rfc1437.de/2003/02/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121636,7 +121987,7 @@ https://www.rfc1437.de/2003/02/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121645,7 +121996,7 @@ https://www.rfc1437.de/2003/02/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121654,7 +122005,7 @@ https://www.rfc1437.de/2003/02/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121663,7 +122014,7 @@ https://www.rfc1437.de/2003/02/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121672,7 +122023,7 @@ https://www.rfc1437.de/2003/02/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121681,7 +122032,7 @@ https://www.rfc1437.de/2003/02/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121690,7 +122041,7 @@ https://www.rfc1437.de/2003/02/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121699,7 +122050,7 @@ https://www.rfc1437.de/2003/02/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121708,7 +122059,7 @@ https://www.rfc1437.de/2003/02/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121717,7 +122068,7 @@ https://www.rfc1437.de/2003/02/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121726,7 +122077,7 @@ https://www.rfc1437.de/2003/02/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121735,7 +122086,7 @@ https://www.rfc1437.de/2003/02/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121744,7 +122095,7 @@ https://www.rfc1437.de/2003/02/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121753,7 +122104,7 @@ https://www.rfc1437.de/2003/01/31/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121762,7 +122113,7 @@ https://www.rfc1437.de/2003/01/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121771,7 +122122,7 @@ https://www.rfc1437.de/2003/01/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121780,7 +122131,7 @@ https://www.rfc1437.de/2003/01/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121789,7 +122140,7 @@ https://www.rfc1437.de/2003/01/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121798,7 +122149,7 @@ https://www.rfc1437.de/2003/01/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121807,7 +122158,7 @@ https://www.rfc1437.de/2003/01/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121816,7 +122167,7 @@ https://www.rfc1437.de/2003/01/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121825,7 +122176,7 @@ https://www.rfc1437.de/2003/01/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121834,7 +122185,7 @@ https://www.rfc1437.de/2003/01/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121843,7 +122194,7 @@ https://www.rfc1437.de/2003/01/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121852,7 +122203,7 @@ https://www.rfc1437.de/2003/01/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121861,7 +122212,7 @@ https://www.rfc1437.de/2003/01/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121870,7 +122221,7 @@ https://www.rfc1437.de/2003/01/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121879,7 +122230,7 @@ https://www.rfc1437.de/2003/01/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121888,7 +122239,7 @@ https://www.rfc1437.de/2003/01/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121897,7 +122248,7 @@ https://www.rfc1437.de/2003/01/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121906,7 +122257,7 @@ https://www.rfc1437.de/2003/01/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121915,7 +122266,7 @@ https://www.rfc1437.de/2003/01/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121924,7 +122275,7 @@ https://www.rfc1437.de/2003/01/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121933,7 +122284,7 @@ https://www.rfc1437.de/2003/01/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121942,7 +122293,7 @@ https://www.rfc1437.de/2003/01/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121951,7 +122302,7 @@ https://www.rfc1437.de/2003/01/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121960,7 +122311,7 @@ https://www.rfc1437.de/2003/01/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121969,7 +122320,7 @@ https://www.rfc1437.de/2003/01/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121978,7 +122329,7 @@ https://www.rfc1437.de/2003/01/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121987,7 +122338,7 @@ https://www.rfc1437.de/2003/01/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -121996,7 +122347,7 @@ https://www.rfc1437.de/2003/01/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -122005,7 +122356,7 @@ https://www.rfc1437.de/2003/01/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -122014,7 +122365,7 @@ https://www.rfc1437.de/2003/01/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -122023,7 +122374,7 @@ https://www.rfc1437.de/2002/12/31/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -122032,7 +122383,7 @@ https://www.rfc1437.de/2002/12/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -122041,7 +122392,7 @@ https://www.rfc1437.de/2002/12/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -122050,7 +122401,7 @@ https://www.rfc1437.de/2002/12/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -122059,7 +122410,7 @@ https://www.rfc1437.de/2002/12/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -122068,7 +122419,7 @@ https://www.rfc1437.de/2002/12/26/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -122077,7 +122428,7 @@ https://www.rfc1437.de/2002/12/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -122086,7 +122437,7 @@ https://www.rfc1437.de/2002/12/24/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -122095,7 +122446,7 @@ https://www.rfc1437.de/2002/12/23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -122104,7 +122455,7 @@ https://www.rfc1437.de/2002/12/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -122113,7 +122464,7 @@ https://www.rfc1437.de/2002/12/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -122122,7 +122473,7 @@ https://www.rfc1437.de/2002/12/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -122131,7 +122482,7 @@ https://www.rfc1437.de/2002/12/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -122140,7 +122491,7 @@ https://www.rfc1437.de/2002/12/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -122149,7 +122500,7 @@ https://www.rfc1437.de/2002/12/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -122158,7 +122509,7 @@ https://www.rfc1437.de/2002/12/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -122167,7 +122518,7 @@ https://www.rfc1437.de/2002/12/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -122176,7 +122527,7 @@ https://www.rfc1437.de/2002/12/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -122185,7 +122536,7 @@ https://www.rfc1437.de/2002/12/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -122194,7 +122545,7 @@ https://www.rfc1437.de/2002/12/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -122203,7 +122554,7 @@ https://www.rfc1437.de/2002/12/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -122212,7 +122563,7 @@ https://www.rfc1437.de/2002/12/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -122221,7 +122572,7 @@ https://www.rfc1437.de/2002/12/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -122230,7 +122581,7 @@ https://www.rfc1437.de/2002/12/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -122239,7 +122590,7 @@ https://www.rfc1437.de/2002/12/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -122248,7 +122599,7 @@ https://www.rfc1437.de/2002/12/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -122257,7 +122608,7 @@ https://www.rfc1437.de/2002/12/04/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -122266,7 +122617,7 @@ https://www.rfc1437.de/2002/12/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -122275,7 +122626,7 @@ https://www.rfc1437.de/2002/12/02/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -122284,7 +122635,7 @@ https://www.rfc1437.de/2002/12/01/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -122293,7 +122644,7 @@ https://www.rfc1437.de/2002/11/30/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -122302,7 +122653,7 @@ https://www.rfc1437.de/2002/11/29/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -122311,7 +122662,7 @@ https://www.rfc1437.de/2002/11/28/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -122320,7 +122671,7 @@ https://www.rfc1437.de/2002/11/27/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -122329,7 +122680,7 @@ https://www.rfc1437.de/2002/11/25/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -122338,7 +122689,7 @@ https://www.rfc1437.de/2002/11/22/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -122347,7 +122698,7 @@ https://www.rfc1437.de/2002/11/21/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -122356,7 +122707,7 @@ https://www.rfc1437.de/2002/11/20/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -122365,7 +122716,7 @@ https://www.rfc1437.de/2002/11/19/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -122374,7 +122725,7 @@ https://www.rfc1437.de/2002/11/18/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -122383,7 +122734,7 @@ https://www.rfc1437.de/2002/11/17/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -122392,7 +122743,7 @@ https://www.rfc1437.de/2002/11/16/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -122401,7 +122752,7 @@ https://www.rfc1437.de/2002/11/15/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -122410,7 +122761,7 @@ https://www.rfc1437.de/2002/11/14/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -122419,7 +122770,7 @@ https://www.rfc1437.de/2002/11/13/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -122428,7 +122779,7 @@ https://www.rfc1437.de/2002/11/12/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -122437,7 +122788,7 @@ https://www.rfc1437.de/2002/11/11/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -122446,7 +122797,7 @@ https://www.rfc1437.de/2002/11/10/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -122455,7 +122806,7 @@ https://www.rfc1437.de/2002/11/09/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -122464,7 +122815,7 @@ https://www.rfc1437.de/2002/11/08/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -122473,7 +122824,7 @@ https://www.rfc1437.de/2002/11/07/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -122482,7 +122833,7 @@ https://www.rfc1437.de/2002/11/06/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -122491,7 +122842,7 @@ https://www.rfc1437.de/2002/11/05/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -122500,7 +122851,7 @@ https://www.rfc1437.de/2002/11/03/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z monthly 0.4 @@ -122509,7 +122860,7 @@ https://www.rfc1437.de/category/article/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -122518,7 +122869,7 @@ https://www.rfc1437.de/category/aside/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -122527,7 +122878,7 @@ https://www.rfc1437.de/category/kochbuch/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -122536,7 +122887,7 @@ https://www.rfc1437.de/category/metaowl/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -122545,7 +122896,7 @@ https://www.rfc1437.de/category/picture/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -122554,7 +122905,7 @@ https://www.rfc1437.de/category/spielelog/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -122563,7 +122914,7 @@ https://www.rfc1437.de/tag/3d/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -122572,7 +122923,7 @@ https://www.rfc1437.de/tag/aachen/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -122581,7 +122932,7 @@ https://www.rfc1437.de/tag/abmahnwahn/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -122590,7 +122941,7 @@ https://www.rfc1437.de/tag/abstrakt/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -122599,7 +122950,7 @@ https://www.rfc1437.de/tag/ada/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -122608,7 +122959,7 @@ https://www.rfc1437.de/tag/ajax/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -122617,7 +122968,7 @@ https://www.rfc1437.de/tag/allesgeklaut/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -122626,7 +122977,7 @@ https://www.rfc1437.de/tag/altertum/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -122635,7 +122986,7 @@ https://www.rfc1437.de/tag/android/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -122644,7 +122995,7 @@ https://www.rfc1437.de/tag/animation/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -122653,7 +123004,7 @@ https://www.rfc1437.de/tag/apache/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -122662,7 +123013,7 @@ https://www.rfc1437.de/tag/api/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -122671,7 +123022,7 @@ https://www.rfc1437.de/tag/apl/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -122680,7 +123031,7 @@ https://www.rfc1437.de/tag/apple/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -122689,7 +123040,7 @@ https://www.rfc1437.de/tag/applescript/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -122698,7 +123049,7 @@ https://www.rfc1437.de/tag/arduino/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -122707,7 +123058,7 @@ https://www.rfc1437.de/tag/arnheim/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -122716,7 +123067,7 @@ https://www.rfc1437.de/tag/asocialnetworks/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -122725,7 +123076,7 @@ https://www.rfc1437.de/tag/astronomie/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -122734,7 +123085,7 @@ https://www.rfc1437.de/tag/atomkraft/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -122743,7 +123094,7 @@ https://www.rfc1437.de/tag/audio/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -122752,7 +123103,7 @@ https://www.rfc1437.de/tag/augmentedreality/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -122761,7 +123112,7 @@ https://www.rfc1437.de/tag/backen/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -122770,7 +123121,7 @@ https://www.rfc1437.de/tag/backup/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -122779,7 +123130,7 @@ https://www.rfc1437.de/tag/bananenrepublik/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -122788,7 +123139,7 @@ https://www.rfc1437.de/tag/bananenunion/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -122797,7 +123148,7 @@ https://www.rfc1437.de/tag/basic/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -122806,7 +123157,7 @@ https://www.rfc1437.de/tag/basis/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -122815,7 +123166,7 @@ https://www.rfc1437.de/tag/bastelprojekte/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -122824,7 +123175,7 @@ https://www.rfc1437.de/tag/baum/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -122833,7 +123184,7 @@ https://www.rfc1437.de/tag/bbc/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -122842,7 +123193,7 @@ https://www.rfc1437.de/tag/berlin/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -122851,7 +123202,7 @@ https://www.rfc1437.de/tag/bildbearbeitung/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -122860,7 +123211,7 @@ https://www.rfc1437.de/tag/bilderblog/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -122869,7 +123220,7 @@ https://www.rfc1437.de/tag/bildung/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -122878,7 +123229,7 @@ https://www.rfc1437.de/tag/biologie/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -122887,7 +123238,7 @@ https://www.rfc1437.de/tag/blogging/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -122896,7 +123247,7 @@ https://www.rfc1437.de/tag/blume/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -122905,7 +123256,7 @@ https://www.rfc1437.de/tag/blumen/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -122914,7 +123265,7 @@ https://www.rfc1437.de/tag/bonn/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -122923,7 +123274,7 @@ https://www.rfc1437.de/tag/boo/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -122932,7 +123283,7 @@ https://www.rfc1437.de/tag/browser/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -122941,7 +123292,7 @@ https://www.rfc1437.de/tag/bruecke/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -122950,7 +123301,7 @@ https://www.rfc1437.de/tag/buch/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -122959,7 +123310,7 @@ https://www.rfc1437.de/tag/buddypress/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -122968,7 +123319,7 @@ https://www.rfc1437.de/tag/b%C3%BCcher/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -122977,7 +123328,7 @@ https://www.rfc1437.de/tag/c%23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -122986,7 +123337,7 @@ https://www.rfc1437.de/tag/camino/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -122995,7 +123346,7 @@ https://www.rfc1437.de/tag/canadadaism/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123004,7 +123355,7 @@ https://www.rfc1437.de/tag/canon/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123013,7 +123364,7 @@ https://www.rfc1437.de/tag/ccl/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123022,7 +123373,7 @@ https://www.rfc1437.de/tag/cedh/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123031,7 +123382,7 @@ https://www.rfc1437.de/tag/censorship/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123040,7 +123391,7 @@ https://www.rfc1437.de/tag/chor/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123049,7 +123400,7 @@ https://www.rfc1437.de/tag/chrome/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123058,7 +123409,7 @@ https://www.rfc1437.de/tag/chumby/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123067,7 +123418,7 @@ https://www.rfc1437.de/tag/clojure/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123076,7 +123427,7 @@ https://www.rfc1437.de/tag/cms/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123085,7 +123436,7 @@ https://www.rfc1437.de/tag/comic/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123094,7 +123445,7 @@ https://www.rfc1437.de/tag/contax/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123103,7 +123454,7 @@ https://www.rfc1437.de/tag/cosim/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123112,7 +123463,7 @@ https://www.rfc1437.de/tag/couchdb/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123121,7 +123472,7 @@ https://www.rfc1437.de/tag/creativecommons/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123130,7 +123481,7 @@ https://www.rfc1437.de/tag/csharp/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123139,7 +123490,7 @@ https://www.rfc1437.de/tag/css/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123148,7 +123499,7 @@ https://www.rfc1437.de/tag/datenbank/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123157,7 +123508,7 @@ https://www.rfc1437.de/tag/datensammler/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123166,7 +123517,7 @@ https://www.rfc1437.de/tag/datenschutz/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123175,7 +123526,7 @@ https://www.rfc1437.de/tag/debian/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123184,7 +123535,7 @@ https://www.rfc1437.de/tag/demotivator/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123193,7 +123544,7 @@ https://www.rfc1437.de/tag/descent/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123202,7 +123553,7 @@ https://www.rfc1437.de/tag/design/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123211,7 +123562,7 @@ https://www.rfc1437.de/tag/dgx/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123220,7 +123571,7 @@ https://www.rfc1437.de/tag/diaspora/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123229,7 +123580,7 @@ https://www.rfc1437.de/tag/diskriminierung/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123238,7 +123589,7 @@ https://www.rfc1437.de/tag/distributed/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123247,7 +123598,7 @@ https://www.rfc1437.de/tag/djan/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123256,7 +123607,7 @@ https://www.rfc1437.de/tag/django/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123265,7 +123616,7 @@ https://www.rfc1437.de/tag/dokumentation/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123274,7 +123625,7 @@ https://www.rfc1437.de/tag/doping/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123283,7 +123634,7 @@ https://www.rfc1437.de/tag/dotnet/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123292,7 +123643,7 @@ https://www.rfc1437.de/tag/dreckstool/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123301,7 +123652,7 @@ https://www.rfc1437.de/tag/drm/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123310,7 +123661,7 @@ https://www.rfc1437.de/tag/drupal/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123319,7 +123670,7 @@ https://www.rfc1437.de/tag/dummeideen/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123328,7 +123679,7 @@ https://www.rfc1437.de/tag/dylan/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123337,7 +123688,7 @@ https://www.rfc1437.de/tag/edh/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123346,7 +123697,7 @@ https://www.rfc1437.de/tag/editor/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123355,7 +123706,7 @@ https://www.rfc1437.de/tag/eeepc/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123364,7 +123715,7 @@ https://www.rfc1437.de/tag/eisenbahn/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123373,16 +123724,25 @@ https://www.rfc1437.de/tag/elektronik/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 + + https://www.rfc1437.de/tag/elixir/ + 2026-07-17T15:40:06.464Z + weekly + 0.6 + + + + https://www.rfc1437.de/tag/emacs/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123391,7 +123751,7 @@ https://www.rfc1437.de/tag/embedded/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123400,7 +123760,7 @@ https://www.rfc1437.de/tag/emulation/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123409,7 +123769,7 @@ https://www.rfc1437.de/tag/emulator/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123418,7 +123778,7 @@ https://www.rfc1437.de/tag/energie/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123427,7 +123787,7 @@ https://www.rfc1437.de/tag/enschede/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123436,7 +123796,7 @@ https://www.rfc1437.de/tag/erbsenzaehler/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123445,7 +123805,7 @@ https://www.rfc1437.de/tag/erlang/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123454,7 +123814,7 @@ https://www.rfc1437.de/tag/essen/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123463,7 +123823,7 @@ https://www.rfc1437.de/tag/europabananen/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123472,7 +123832,7 @@ https://www.rfc1437.de/tag/extension/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123481,7 +123841,7 @@ https://www.rfc1437.de/tag/f%23/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123490,7 +123850,7 @@ https://www.rfc1437.de/tag/facepalm/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123499,7 +123859,7 @@ https://www.rfc1437.de/tag/factor/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123508,7 +123868,7 @@ https://www.rfc1437.de/tag/fahrrad/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123517,7 +123877,7 @@ https://www.rfc1437.de/tag/fatzebuch/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123526,7 +123886,7 @@ https://www.rfc1437.de/tag/feedreader/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123535,7 +123895,7 @@ https://www.rfc1437.de/tag/feuerwerk/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123544,7 +123904,7 @@ https://www.rfc1437.de/tag/film/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123553,7 +123913,7 @@ https://www.rfc1437.de/tag/filtertueten/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123562,7 +123922,7 @@ https://www.rfc1437.de/tag/firefox/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123571,7 +123931,7 @@ https://www.rfc1437.de/tag/firmware/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123580,7 +123940,7 @@ https://www.rfc1437.de/tag/flash/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123589,7 +123949,7 @@ https://www.rfc1437.de/tag/flickr/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123598,7 +123958,7 @@ https://www.rfc1437.de/tag/fluss/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123607,7 +123967,7 @@ https://www.rfc1437.de/tag/font/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123616,7 +123976,7 @@ https://www.rfc1437.de/tag/fortbewegung/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123625,7 +123985,7 @@ https://www.rfc1437.de/tag/forth/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123634,7 +123994,7 @@ https://www.rfc1437.de/tag/fotografie/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123643,7 +124003,7 @@ https://www.rfc1437.de/tag/framework/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123652,7 +124012,7 @@ https://www.rfc1437.de/tag/friday/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123661,7 +124021,7 @@ https://www.rfc1437.de/tag/frontier/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123670,7 +124030,7 @@ https://www.rfc1437.de/tag/gboh/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123679,7 +124039,7 @@ https://www.rfc1437.de/tag/gebaeude/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123688,7 +124048,7 @@ https://www.rfc1437.de/tag/genfood/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123697,7 +124057,7 @@ https://www.rfc1437.de/tag/geschichte/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123706,7 +124066,7 @@ https://www.rfc1437.de/tag/gesellschaft/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123715,7 +124075,7 @@ https://www.rfc1437.de/tag/git/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123724,7 +124084,7 @@ https://www.rfc1437.de/tag/gmail/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123733,7 +124093,7 @@ https://www.rfc1437.de/tag/gnome/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123742,7 +124102,7 @@ https://www.rfc1437.de/tag/go/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123751,7 +124111,7 @@ https://www.rfc1437.de/tag/google%2B/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123760,7 +124120,7 @@ https://www.rfc1437.de/tag/googleplus/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123769,7 +124129,7 @@ https://www.rfc1437.de/tag/gpl/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123778,7 +124138,7 @@ https://www.rfc1437.de/tag/grafik/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123787,7 +124147,7 @@ https://www.rfc1437.de/tag/gr%C3%BCbeln/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123796,7 +124156,7 @@ https://www.rfc1437.de/tag/gui/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123805,7 +124165,7 @@ https://www.rfc1437.de/tag/hack/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123814,7 +124174,7 @@ https://www.rfc1437.de/tag/hamburg/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123823,7 +124183,7 @@ https://www.rfc1437.de/tag/handarbeiten/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123832,7 +124192,7 @@ https://www.rfc1437.de/tag/hardware/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123841,7 +124201,7 @@ https://www.rfc1437.de/tag/haskell/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123850,7 +124210,7 @@ https://www.rfc1437.de/tag/herbst/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123859,7 +124219,7 @@ https://www.rfc1437.de/tag/hochzeit/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123868,7 +124228,7 @@ https://www.rfc1437.de/tag/holland/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123877,7 +124237,7 @@ https://www.rfc1437.de/tag/html/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123886,7 +124246,7 @@ https://www.rfc1437.de/tag/hurtigruten/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123895,7 +124255,7 @@ https://www.rfc1437.de/tag/hype/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123904,7 +124264,7 @@ https://www.rfc1437.de/tag/hyper-v/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123913,7 +124273,7 @@ https://www.rfc1437.de/tag/hypercard/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123922,7 +124282,7 @@ https://www.rfc1437.de/tag/ide/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123931,7 +124291,7 @@ https://www.rfc1437.de/tag/information/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123940,7 +124300,7 @@ https://www.rfc1437.de/tag/infrarot/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123949,7 +124309,7 @@ https://www.rfc1437.de/tag/innovation/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123958,7 +124318,7 @@ https://www.rfc1437.de/tag/inselderverdammten/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123967,7 +124327,7 @@ https://www.rfc1437.de/tag/intern/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123976,7 +124336,7 @@ https://www.rfc1437.de/tag/internet/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123985,7 +124345,7 @@ https://www.rfc1437.de/tag/internetkaputt/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -123994,7 +124354,7 @@ https://www.rfc1437.de/tag/ios/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124003,7 +124363,7 @@ https://www.rfc1437.de/tag/ipad/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124012,7 +124372,7 @@ https://www.rfc1437.de/tag/iphone/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124021,7 +124381,7 @@ https://www.rfc1437.de/tag/iphoto/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124030,7 +124390,7 @@ https://www.rfc1437.de/tag/ipod/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124039,7 +124399,7 @@ https://www.rfc1437.de/tag/irc/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124048,7 +124408,7 @@ https://www.rfc1437.de/tag/itms/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124057,7 +124417,7 @@ https://www.rfc1437.de/tag/itunes/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124066,7 +124426,7 @@ https://www.rfc1437.de/tag/java/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124075,7 +124435,7 @@ https://www.rfc1437.de/tag/javascript/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124084,7 +124444,7 @@ https://www.rfc1437.de/tag/jquery/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124093,7 +124453,7 @@ https://www.rfc1437.de/tag/json/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124102,7 +124462,7 @@ https://www.rfc1437.de/tag/kaefer/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124111,7 +124471,7 @@ https://www.rfc1437.de/tag/kaktus/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124120,7 +124480,7 @@ https://www.rfc1437.de/tag/kaktusmilbe/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124129,7 +124489,7 @@ https://www.rfc1437.de/tag/kanal/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124138,7 +124498,7 @@ https://www.rfc1437.de/tag/karte/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124147,7 +124507,7 @@ https://www.rfc1437.de/tag/katastrophe/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124156,7 +124516,7 @@ https://www.rfc1437.de/tag/kindalikefoodmaybe/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124165,7 +124525,7 @@ https://www.rfc1437.de/tag/kindle/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124174,7 +124534,7 @@ https://www.rfc1437.de/tag/kino/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124183,7 +124543,7 @@ https://www.rfc1437.de/tag/klimawandel/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124192,7 +124552,7 @@ https://www.rfc1437.de/tag/kochen/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124201,7 +124561,7 @@ https://www.rfc1437.de/tag/koken/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124210,7 +124570,7 @@ https://www.rfc1437.de/tag/komplettgaga/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124219,7 +124579,7 @@ https://www.rfc1437.de/tag/kontrollfetischismus/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124228,7 +124588,7 @@ https://www.rfc1437.de/tag/kopierschutz/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124237,7 +124597,7 @@ https://www.rfc1437.de/tag/korruption/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124246,7 +124606,7 @@ https://www.rfc1437.de/tag/kosmos/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124255,7 +124615,7 @@ https://www.rfc1437.de/tag/krieg/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124264,7 +124624,7 @@ https://www.rfc1437.de/tag/kultur/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124273,7 +124633,7 @@ https://www.rfc1437.de/tag/kunst/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124282,7 +124642,7 @@ https://www.rfc1437.de/tag/lanzarote/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124291,7 +124651,7 @@ https://www.rfc1437.de/tag/layout/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124300,7 +124660,7 @@ https://www.rfc1437.de/tag/leapmotion/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124309,7 +124669,7 @@ https://www.rfc1437.de/tag/legden/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124318,7 +124678,7 @@ https://www.rfc1437.de/tag/lego/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124327,7 +124687,7 @@ https://www.rfc1437.de/tag/leica/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124336,7 +124696,7 @@ https://www.rfc1437.de/tag/leipzig/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124345,7 +124705,7 @@ https://www.rfc1437.de/tag/lesen/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124354,7 +124714,7 @@ https://www.rfc1437.de/tag/leute/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124363,7 +124723,7 @@ https://www.rfc1437.de/tag/lightroom/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124372,7 +124732,7 @@ https://www.rfc1437.de/tag/linux/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124381,7 +124741,7 @@ https://www.rfc1437.de/tag/lisp/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124390,7 +124750,7 @@ https://www.rfc1437.de/tag/literatur/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124399,7 +124759,7 @@ https://www.rfc1437.de/tag/livecode/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124408,7 +124768,7 @@ https://www.rfc1437.de/tag/llm/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124417,7 +124777,7 @@ https://www.rfc1437.de/tag/llvm/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124426,7 +124786,7 @@ https://www.rfc1437.de/tag/lokales/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124435,7 +124795,7 @@ https://www.rfc1437.de/tag/lua/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124444,7 +124804,7 @@ https://www.rfc1437.de/tag/mac/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124453,7 +124813,7 @@ https://www.rfc1437.de/tag/mac-os-x/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124462,7 +124822,7 @@ https://www.rfc1437.de/tag/macosx/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124471,7 +124831,7 @@ https://www.rfc1437.de/tag/madeira/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124480,7 +124840,7 @@ https://www.rfc1437.de/tag/maemo/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124489,7 +124849,7 @@ https://www.rfc1437.de/tag/magicthegathering/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124498,7 +124858,7 @@ https://www.rfc1437.de/tag/mail/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124507,7 +124867,7 @@ https://www.rfc1437.de/tag/maker/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124516,7 +124876,7 @@ https://www.rfc1437.de/tag/makro/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124525,7 +124885,7 @@ https://www.rfc1437.de/tag/markdown/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124534,7 +124894,7 @@ https://www.rfc1437.de/tag/markenunfug/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124543,7 +124903,7 @@ https://www.rfc1437.de/tag/markenwahnsinn/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124552,7 +124912,7 @@ https://www.rfc1437.de/tag/mars/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124561,7 +124921,7 @@ https://www.rfc1437.de/tag/material/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124570,7 +124930,7 @@ https://www.rfc1437.de/tag/mathematica/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124579,7 +124939,7 @@ https://www.rfc1437.de/tag/mathematik/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124588,7 +124948,7 @@ https://www.rfc1437.de/tag/maxima/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124597,7 +124957,7 @@ https://www.rfc1437.de/tag/medien/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124606,7 +124966,7 @@ https://www.rfc1437.de/tag/medizin/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124615,7 +124975,7 @@ https://www.rfc1437.de/tag/meego/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124624,7 +124984,7 @@ https://www.rfc1437.de/tag/meinungsfreiheit/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124633,7 +124993,7 @@ https://www.rfc1437.de/tag/menschenrechte/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124642,7 +125002,7 @@ https://www.rfc1437.de/tag/mercurial/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124651,7 +125011,7 @@ https://www.rfc1437.de/tag/microsoft/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124660,7 +125020,7 @@ https://www.rfc1437.de/tag/militaer/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124669,7 +125029,7 @@ https://www.rfc1437.de/tag/minecraft/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124678,7 +125038,7 @@ https://www.rfc1437.de/tag/mirah/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124687,7 +125047,7 @@ https://www.rfc1437.de/tag/mistral/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124696,7 +125056,7 @@ https://www.rfc1437.de/tag/ml/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124705,7 +125065,7 @@ https://www.rfc1437.de/tag/mobil/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124714,7 +125074,7 @@ https://www.rfc1437.de/tag/mobile/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124723,7 +125083,7 @@ https://www.rfc1437.de/tag/mobilemurks/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124732,7 +125092,7 @@ https://www.rfc1437.de/tag/moblogging/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124741,7 +125101,7 @@ https://www.rfc1437.de/tag/moebel/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124750,7 +125110,7 @@ https://www.rfc1437.de/tag/mono/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124759,7 +125119,7 @@ https://www.rfc1437.de/tag/monochrom/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124768,7 +125128,7 @@ https://www.rfc1437.de/tag/mtg/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124777,7 +125137,7 @@ https://www.rfc1437.de/tag/muell/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124786,7 +125146,7 @@ https://www.rfc1437.de/tag/muenchen/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124795,7 +125155,7 @@ https://www.rfc1437.de/tag/muenster/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124804,7 +125164,7 @@ https://www.rfc1437.de/tag/mumps/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124813,7 +125173,7 @@ https://www.rfc1437.de/tag/museum/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124822,7 +125182,7 @@ https://www.rfc1437.de/tag/musik/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124831,7 +125191,7 @@ https://www.rfc1437.de/tag/muster/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124840,7 +125200,7 @@ https://www.rfc1437.de/tag/m%C3%BCnster/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124849,7 +125209,7 @@ https://www.rfc1437.de/tag/nanotechnik/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124858,7 +125218,7 @@ https://www.rfc1437.de/tag/napoleon/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124867,7 +125227,7 @@ https://www.rfc1437.de/tag/natur/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124876,7 +125236,7 @@ https://www.rfc1437.de/tag/ndk/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124885,7 +125245,7 @@ https://www.rfc1437.de/tag/netz/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124894,7 +125254,7 @@ https://www.rfc1437.de/tag/nex/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124903,7 +125263,7 @@ https://www.rfc1437.de/tag/nikon/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124912,7 +125272,7 @@ https://www.rfc1437.de/tag/nizza/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124921,7 +125281,7 @@ https://www.rfc1437.de/tag/nodejs/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124930,7 +125290,7 @@ https://www.rfc1437.de/tag/nokia/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124939,7 +125299,7 @@ https://www.rfc1437.de/tag/nordkirchen/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124948,7 +125308,7 @@ https://www.rfc1437.de/tag/nordsee/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124957,7 +125317,7 @@ https://www.rfc1437.de/tag/nosql/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124966,7 +125326,7 @@ https://www.rfc1437.de/tag/nostalgie/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124975,7 +125335,7 @@ https://www.rfc1437.de/tag/nrw/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124984,7 +125344,7 @@ https://www.rfc1437.de/tag/oberon/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -124993,7 +125353,7 @@ https://www.rfc1437.de/tag/ocaml/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125002,7 +125362,7 @@ https://www.rfc1437.de/tag/olpc/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125011,7 +125371,7 @@ https://www.rfc1437.de/tag/openclaw/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125020,7 +125380,7 @@ https://www.rfc1437.de/tag/opensim/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125029,7 +125389,7 @@ https://www.rfc1437.de/tag/os/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125038,7 +125398,7 @@ https://www.rfc1437.de/tag/osx/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125047,7 +125407,7 @@ https://www.rfc1437.de/tag/outliner/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125056,7 +125416,7 @@ https://www.rfc1437.de/tag/owl/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125065,7 +125425,7 @@ https://www.rfc1437.de/tag/owncloud/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125074,7 +125434,7 @@ https://www.rfc1437.de/tag/p2p/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125083,7 +125443,7 @@ https://www.rfc1437.de/tag/pappnasen/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125092,7 +125452,7 @@ https://www.rfc1437.de/tag/pascal/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125101,7 +125461,7 @@ https://www.rfc1437.de/tag/patentwahnsinn/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125110,7 +125470,7 @@ https://www.rfc1437.de/tag/pauper/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125119,7 +125479,7 @@ https://www.rfc1437.de/tag/paynotpal/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125128,7 +125488,7 @@ https://www.rfc1437.de/tag/pda/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125137,7 +125497,7 @@ https://www.rfc1437.de/tag/perl/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125146,7 +125506,7 @@ https://www.rfc1437.de/tag/pharmazocker/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125155,7 +125515,7 @@ https://www.rfc1437.de/tag/philosophie/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125164,7 +125524,7 @@ https://www.rfc1437.de/tag/photography/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125173,7 +125533,7 @@ https://www.rfc1437.de/tag/photoshop/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125182,7 +125542,7 @@ https://www.rfc1437.de/tag/php/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125191,7 +125551,7 @@ https://www.rfc1437.de/tag/plugin/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125200,7 +125560,7 @@ https://www.rfc1437.de/tag/politik/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125209,7 +125569,7 @@ https://www.rfc1437.de/tag/postgresql/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125218,7 +125578,7 @@ https://www.rfc1437.de/tag/processing/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125227,7 +125587,7 @@ https://www.rfc1437.de/tag/programmierung/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125236,7 +125596,7 @@ https://www.rfc1437.de/tag/prolog/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125245,7 +125605,7 @@ https://www.rfc1437.de/tag/pycharm/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125254,7 +125614,7 @@ https://www.rfc1437.de/tag/python/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125263,7 +125623,7 @@ https://www.rfc1437.de/tag/qt/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125272,7 +125632,7 @@ https://www.rfc1437.de/tag/rant/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125281,7 +125641,7 @@ https://www.rfc1437.de/tag/rapidweaver/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125290,7 +125650,7 @@ https://www.rfc1437.de/tag/recht/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125299,7 +125659,7 @@ https://www.rfc1437.de/tag/rechteabzocker/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125308,7 +125668,7 @@ https://www.rfc1437.de/tag/regenschirm/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125317,7 +125677,7 @@ https://www.rfc1437.de/tag/regionalschwachsinn/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125326,7 +125686,7 @@ https://www.rfc1437.de/tag/reisen/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125335,7 +125695,7 @@ https://www.rfc1437.de/tag/rendering/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125344,7 +125704,7 @@ https://www.rfc1437.de/tag/reprap/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125353,7 +125713,7 @@ https://www.rfc1437.de/tag/rfid/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125362,7 +125722,7 @@ https://www.rfc1437.de/tag/ricoh/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125371,7 +125731,7 @@ https://www.rfc1437.de/tag/rieselfelder/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125380,7 +125740,7 @@ https://www.rfc1437.de/tag/roboter/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125389,7 +125749,7 @@ https://www.rfc1437.de/tag/rollei/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125398,7 +125758,7 @@ https://www.rfc1437.de/tag/rss/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125407,7 +125767,7 @@ https://www.rfc1437.de/tag/ruby/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125416,7 +125776,7 @@ https://www.rfc1437.de/tag/russland/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125425,7 +125785,7 @@ https://www.rfc1437.de/tag/rust/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125434,7 +125794,7 @@ https://www.rfc1437.de/tag/safari/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125443,7 +125803,7 @@ https://www.rfc1437.de/tag/samba/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125452,7 +125812,7 @@ https://www.rfc1437.de/tag/samsung/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125461,7 +125821,7 @@ https://www.rfc1437.de/tag/santorin/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125470,7 +125830,7 @@ https://www.rfc1437.de/tag/scala/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125479,7 +125839,7 @@ https://www.rfc1437.de/tag/scheinheilig/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125488,7 +125848,7 @@ https://www.rfc1437.de/tag/scheisssoftware/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125497,7 +125857,7 @@ https://www.rfc1437.de/tag/scheme/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125506,7 +125866,7 @@ https://www.rfc1437.de/tag/schiff/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125515,7 +125875,7 @@ https://www.rfc1437.de/tag/sco/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125524,7 +125884,7 @@ https://www.rfc1437.de/tag/secondlife/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125533,7 +125893,7 @@ https://www.rfc1437.de/tag/see/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125542,7 +125902,7 @@ https://www.rfc1437.de/tag/self/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125551,7 +125911,7 @@ https://www.rfc1437.de/tag/send/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125560,7 +125920,7 @@ https://www.rfc1437.de/tag/shell/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125569,7 +125929,7 @@ https://www.rfc1437.de/tag/shithitsfan/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125578,7 +125938,7 @@ https://www.rfc1437.de/tag/shop/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125587,7 +125947,7 @@ https://www.rfc1437.de/tag/sicherheit/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125596,7 +125956,7 @@ https://www.rfc1437.de/tag/simulation/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125605,7 +125965,7 @@ https://www.rfc1437.de/tag/slovenien/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125614,7 +125974,7 @@ https://www.rfc1437.de/tag/smalltalk/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125623,7 +125983,7 @@ https://www.rfc1437.de/tag/software/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125632,7 +125992,7 @@ https://www.rfc1437.de/tag/sozialsystem/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125641,7 +126001,7 @@ https://www.rfc1437.de/tag/space/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125650,7 +126010,7 @@ https://www.rfc1437.de/tag/spaghettimonster/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125659,7 +126019,7 @@ https://www.rfc1437.de/tag/spam/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125668,7 +126028,7 @@ https://www.rfc1437.de/tag/sperrspinner/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125677,7 +126037,7 @@ https://www.rfc1437.de/tag/spiel/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125686,7 +126046,7 @@ https://www.rfc1437.de/tag/spiele/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125695,7 +126055,7 @@ https://www.rfc1437.de/tag/spielen/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125704,7 +126064,7 @@ https://www.rfc1437.de/tag/spinne/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125713,7 +126073,7 @@ https://www.rfc1437.de/tag/sport/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125722,7 +126082,7 @@ https://www.rfc1437.de/tag/sql/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125731,7 +126091,7 @@ https://www.rfc1437.de/tag/sqlite/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125740,7 +126100,7 @@ https://www.rfc1437.de/tag/struktur/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125749,7 +126109,7 @@ https://www.rfc1437.de/tag/sublimetext/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125758,7 +126118,7 @@ https://www.rfc1437.de/tag/svg/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125767,7 +126127,7 @@ https://www.rfc1437.de/tag/synchronisation/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125776,7 +126136,7 @@ https://www.rfc1437.de/tag/sysadmin/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125785,7 +126145,7 @@ https://www.rfc1437.de/tag/tagesgeschehen/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125794,7 +126154,7 @@ https://www.rfc1437.de/tag/tagil/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125803,7 +126163,7 @@ https://www.rfc1437.de/tag/tak/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125812,7 +126172,7 @@ https://www.rfc1437.de/tag/tcl/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125821,7 +126181,7 @@ https://www.rfc1437.de/tag/technik/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125830,7 +126190,7 @@ https://www.rfc1437.de/tag/telekomisches/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125839,7 +126199,7 @@ https://www.rfc1437.de/tag/texte/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125848,7 +126208,7 @@ https://www.rfc1437.de/tag/thunderstone/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125857,7 +126217,7 @@ https://www.rfc1437.de/tag/tiere/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125866,7 +126226,7 @@ https://www.rfc1437.de/tag/toys/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125875,7 +126235,7 @@ https://www.rfc1437.de/tag/trademarkbullshit/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125884,7 +126244,7 @@ https://www.rfc1437.de/tag/ubuntu/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125893,7 +126253,7 @@ https://www.rfc1437.de/tag/umlaute/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125902,7 +126262,7 @@ https://www.rfc1437.de/tag/umwelt/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125911,7 +126271,7 @@ https://www.rfc1437.de/tag/unterhaltung/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125920,7 +126280,7 @@ https://www.rfc1437.de/tag/unuseability/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125929,7 +126289,7 @@ https://www.rfc1437.de/tag/urlaub/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125938,7 +126298,7 @@ https://www.rfc1437.de/tag/useability/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125947,7 +126307,7 @@ https://www.rfc1437.de/tag/usofabsurdity/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125956,7 +126316,7 @@ https://www.rfc1437.de/tag/versionsverwaltung/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125965,7 +126325,7 @@ https://www.rfc1437.de/tag/vibecoding/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125974,7 +126334,7 @@ https://www.rfc1437.de/tag/video/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125983,7 +126343,7 @@ https://www.rfc1437.de/tag/vim/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -125992,7 +126352,7 @@ https://www.rfc1437.de/tag/virtualworld/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -126001,7 +126361,7 @@ https://www.rfc1437.de/tag/virtuelles/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -126010,7 +126370,7 @@ https://www.rfc1437.de/tag/visualisierung/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -126019,7 +126379,7 @@ https://www.rfc1437.de/tag/vollbekloppt/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -126028,7 +126388,7 @@ https://www.rfc1437.de/tag/wahlen/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -126037,7 +126397,7 @@ https://www.rfc1437.de/tag/wasser/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -126046,7 +126406,7 @@ https://www.rfc1437.de/tag/wear/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -126055,7 +126415,7 @@ https://www.rfc1437.de/tag/web/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -126064,7 +126424,7 @@ https://www.rfc1437.de/tag/webservice/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -126073,7 +126433,7 @@ https://www.rfc1437.de/tag/webservices/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -126082,7 +126442,7 @@ https://www.rfc1437.de/tag/weird/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -126091,7 +126451,7 @@ https://www.rfc1437.de/tag/wiki/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -126100,7 +126460,7 @@ https://www.rfc1437.de/tag/wikileaks/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -126109,7 +126469,7 @@ https://www.rfc1437.de/tag/wikipediatrie/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -126118,7 +126478,7 @@ https://www.rfc1437.de/tag/wikip%C3%A4diatrie/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -126127,7 +126487,7 @@ https://www.rfc1437.de/tag/windows/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -126136,7 +126496,7 @@ https://www.rfc1437.de/tag/wingspan/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -126145,7 +126505,7 @@ https://www.rfc1437.de/tag/wirtschaft/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -126154,7 +126514,7 @@ https://www.rfc1437.de/tag/wissen/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -126163,7 +126523,7 @@ https://www.rfc1437.de/tag/wissenschaft/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -126172,7 +126532,7 @@ https://www.rfc1437.de/tag/wlan/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -126181,7 +126541,7 @@ https://www.rfc1437.de/tag/wochenmarkt/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -126190,7 +126550,7 @@ https://www.rfc1437.de/tag/wordpress/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -126199,7 +126559,7 @@ https://www.rfc1437.de/tag/wsgi/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -126208,7 +126568,7 @@ https://www.rfc1437.de/tag/wtf/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -126217,7 +126577,7 @@ https://www.rfc1437.de/tag/wunschglaube/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -126226,7 +126586,7 @@ https://www.rfc1437.de/tag/xcode/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -126235,7 +126595,7 @@ https://www.rfc1437.de/tag/xml/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -126244,7 +126604,7 @@ https://www.rfc1437.de/tag/xmpp/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -126253,7 +126613,7 @@ https://www.rfc1437.de/tag/yaml/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -126262,7 +126622,7 @@ https://www.rfc1437.de/tag/zeiss/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -126271,7 +126631,7 @@ https://www.rfc1437.de/tag/zensurspinner/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -126280,7 +126640,7 @@ https://www.rfc1437.de/tag/zoo/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 @@ -126289,7 +126649,7 @@ https://www.rfc1437.de/tag/zope/ - 2026-04-01T07:44:13.000Z + 2026-07-17T15:40:06.464Z weekly 0.6 diff --git a/fixtures/update_golden_rendering.sh b/fixtures/update_golden_rendering.sh new file mode 100755 index 0000000..1d4175e --- /dev/null +++ b/fixtures/update_golden_rendering.sh @@ -0,0 +1,31 @@ +#!/bin/sh +set -eu + +# Run from the RuDS repository root. Optional arguments override the generated +# bDS2 site and bDS2 checkout paths. + +source_dir=${1:-"$HOME/Blogs/rfc1437.de/html"} +bds2_dir=${2:-"$(dirname "$PWD")/bDS2"} +target_dir="fixtures/golden-generated-sites/rfc1437-sample" + +for relative_path in \ + 2005/11/13/esmeralda/index.html \ + 2026/03/13/cmux-das-terminal-fur-multitasking/index.html \ + 2026/03/13/ghostty/index.html \ + atom.xml \ + calendar.json \ + category/article/index.html \ + en/2005/11/13/esmeralda/index.html \ + en/2026/03/13/cmux-das-terminal-fur-multitasking/index.html \ + en/2026/03/13/ghostty/index.html \ + en/index.html \ + index.html \ + rss.xml \ + sitemap.xml +do + cp "$source_dir/$relative_path" "$target_dir/$relative_path" + perl -pi -e 's/[ \t]+$//' "$target_dir/$relative_path" +done + +cp "$bds2_dir/priv/preview_assets/assets/bds.css" "$target_dir/assets/bds.css" +cp "$bds2_dir/priv/preview_assets/assets/search-runtime.js" "$target_dir/assets/search-runtime.js" diff --git a/locales/render/de.ftl b/locales/render/de.ftl index ea842ae..dd6ae12 100644 --- a/locales/render/de.ftl +++ b/locales/render/de.ftl @@ -10,7 +10,7 @@ render-tagCloud-empty = Keine Tags gefunden. render-tagCloud-ariaLabel = Tag-Wolke render-calendar-open = Kalender öffnen render-calendar-close = Kalender schließen -render-calendar-title = Archivkalender +render-calendar-title = Archiv render-calendar-loading = Kalender wird geladen … render-calendar-error = Kalenderdaten konnten nicht geladen werden. render-taxonomy-ariaLabel = Taxonomie @@ -33,3 +33,4 @@ render-month-11 = Nov. render-month-12 = Dezember render-search-placeholder = Suchen... render-search-ariaLabel = Seitensuche +render-search-noResults = Keine Ergebnisse gefunden diff --git a/locales/render/en.ftl b/locales/render/en.ftl index e5e593a..5ba768a 100644 --- a/locales/render/en.ftl +++ b/locales/render/en.ftl @@ -33,3 +33,4 @@ render-month-11 = November render-month-12 = December render-search-placeholder = Search... render-search-ariaLabel = Site search +render-search-noResults = No results found diff --git a/locales/render/es.ftl b/locales/render/es.ftl index 0b8337a..97c5565 100644 --- a/locales/render/es.ftl +++ b/locales/render/es.ftl @@ -10,7 +10,7 @@ render-tagCloud-empty = No se encontraron etiquetas. render-tagCloud-ariaLabel = Nube de etiquetas render-calendar-open = Abrir calendario render-calendar-close = Cerrar calendario -render-calendar-title = Calendario de archivo +render-calendar-title = Archivo render-calendar-loading = Cargando calendario… render-calendar-error = No se pudieron cargar los datos del calendario. render-taxonomy-ariaLabel = Taxonomía @@ -33,3 +33,4 @@ render-month-11 = noviembre render-month-12 = diciembre render-search-placeholder = Buscar... render-search-ariaLabel = Buscar en el sitio +render-search-noResults = No se encontraron resultados diff --git a/locales/render/fr.ftl b/locales/render/fr.ftl index 9af7424..f0df6d0 100644 --- a/locales/render/fr.ftl +++ b/locales/render/fr.ftl @@ -10,7 +10,7 @@ render-tagCloud-empty = Aucun tag trouvé. render-tagCloud-ariaLabel = Nuage de tags render-calendar-open = Ouvrir le calendrier render-calendar-close = Fermer le calendrier -render-calendar-title = Calendrier des archives +render-calendar-title = Archives render-calendar-loading = Chargement du calendrier… render-calendar-error = Impossible de charger les données du calendrier. render-taxonomy-ariaLabel = Taxonomie @@ -33,3 +33,4 @@ render-month-11 = novembre render-month-12 = décembre render-search-placeholder = Rechercher... render-search-ariaLabel = Recherche du site +render-search-noResults = Aucun résultat trouvé diff --git a/locales/render/it.ftl b/locales/render/it.ftl index d2ef324..b6c12c9 100644 --- a/locales/render/it.ftl +++ b/locales/render/it.ftl @@ -10,7 +10,7 @@ render-tagCloud-empty = Nessun tag trovato. render-tagCloud-ariaLabel = Nuvola di tag render-calendar-open = Apri calendario render-calendar-close = Chiudi calendario -render-calendar-title = Calendario archivio +render-calendar-title = Archivio render-calendar-loading = Caricamento calendario… render-calendar-error = Impossibile caricare i dati del calendario. render-taxonomy-ariaLabel = Tassonomia @@ -33,3 +33,4 @@ render-month-11 = novembre render-month-12 = dicembre render-search-placeholder = Cerca... render-search-ariaLabel = Ricerca nel sito +render-search-noResults = Nessun risultato trovato diff --git a/specs/generation.allium b/specs/generation.allium index 41210f1..3422842 100644 --- a/specs/generation.allium +++ b/specs/generation.allium @@ -108,20 +108,30 @@ invariant IncrementalByContentHash { } invariant MultiLanguageRoutes { - -- Main language: flat routes (/{yyyy}/{mm}/{dd}/{slug}) + -- Main language: unprefixed routes (/{yyyy}/{mm}/{dd}/{slug}) -- Additional languages: prefixed (/{lang}/{yyyy}/{mm}/{dd}/{slug}) -- Each language subtree gets its own feeds and archives + -- Route dates and archive/calendar membership use created_at in local time, + -- matching bDS2. + -- Posts in the page category additionally render at /{slug} in every tree. } invariant LanguageVariantSelection { -- Every language tree renders each post in its own language when a - -- matching variant exists, falling back to the post's original language. - -- This applies uniformly to single pages, list pages (home/pagination, - -- category/tag/date archives), and feeds: + -- matching variant exists. The main tree prefers the main-language + -- translation and otherwise falls back to the original post. An additional + -- tree uses the original post when its source language matches that tree, + -- otherwise its matching translation, falling back to the original post. + -- This applies uniformly to single pages and list pages (home/pagination, + -- category/tag/date archives): -- Main tree: a post whose language differs from main_language renders -- its main_language translation when one exists (canonical variant). -- Additional-language trees: posts resolve to that language's -- translation; do_not_translate posts are excluded from those trees. + -- Feeds are deliberately narrower: the main feed contains original + -- published records, while an additional-language feed contains only + -- originals or translations whose language matches that tree. A + -- foreign-language HTML fallback is therefore not added to that feed. } invariant CanonicalBaseUrlConfigured { @@ -146,20 +156,26 @@ rule GenerateCoreSectionPages { requires: core in generation.sections ensures: FileGenerated("index.html") ensures: FileGenerated("sitemap.xml") - -- Multi-language sitemap with hreflang alternates + -- Single root sitemap with hreflang alternates; no per-language sitemap ensures: FileGenerated("rss.xml") - -- RSS 2.0 feed (same output name as the old bDS app; templates link /rss.xml) + -- bDS2-compatible minimal feed over all published snapshots ensures: FileGenerated("atom.xml") -- Atom feed ensures: FileGenerated("calendar.json") - -- Post dates for calendar widget + -- created_at counts for all published snapshots, including list-hidden posts ensures: FileGenerated("404.html") -- Not-found page rendered from the not-found template + for p in Posts where status = published and p.categories.contains("page"): + ensures: FileGenerated(format("{slug}/index.html", slug: p.slug)) for lang in generation.blog_languages - {generation.language}: ensures: FileGenerated(format("{lang}/index.html", lang: lang)) ensures: FileGenerated(format("{lang}/rss.xml", lang: lang)) ensures: FileGenerated(format("{lang}/atom.xml", lang: lang)) ensures: FileGenerated(format("{lang}/404.html", lang: lang)) + for p in Posts where status = published and + p.categories.contains("page") and not p.do_not_translate: + ensures: FileGenerated(format("{lang}/{slug}/index.html", + lang: lang, slug: p.slug)) } -- Single section: one HTML page per published post @@ -171,7 +187,7 @@ rule GenerateSinglePostPages { let url = post_canonical_url(p) ensures: FileGenerated(format("{url}/index.html", url: url)) for lang in generation.blog_languages - {generation.language}: - if p.translations.any(t => t.language.code = lang): + if not p.do_not_translate: ensures: FileGenerated(format("{lang}/{url}/index.html", lang: lang, url: url)) } diff --git a/specs/rendering.allium b/specs/rendering.allium index 8754a22..28cd08d 100644 --- a/specs/rendering.allium +++ b/specs/rendering.allium @@ -151,6 +151,11 @@ value RenderLabels { -- and macro fallback labels. Month names resolved 1..12 per language. } +invariant CompleteStarterNavigation { + -- Starter rendering preserves recursive menu children and the archive + -- calendar entry, and provides localized search empty-result text. +} + invariant LabelsUseContentLanguage { -- RenderLabels and the i18n filter resolve against the content/render -- language, consistent with i18n.allium's split-localization rule.