This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"dependencies": { | |
"i18next": "^19.8.4", | |
"i18next-browser-languagedetector": "^6.0.1", | |
"i18next-http-backend": "^1.0.21", | |
"react-i18next": "^11.7.3" | |
}, | |
"devDependencies": { | |
"eslint-plugin-jsx-a11y": "^6.3.1", | |
"i18next-parser": "^3.3.0" |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: UTF-8 -*- | |
# Patricia Ennenbach - 15-12-21 - Wichteln | |
# Aufgaben: | |
# - Jedes Kind soll einem Kind etwas schenken | |
# - Kinder sollen sich nicht selbst beschenken | |
# - Kinder sollen nicht ihre Geschwister beschenken | |
# - Jedes Kind soll nur einmal beschenkt werden | |
# Mein Problem: | |
# Wenn z.B "Kind == Wichtel" ist, müsste für dieses Kind ein neuer Wichtel gesucht werden, mein Weg "kinder.append(kind)" ist aber nicht ideal. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function() { | |
tooltipdiv = d3.select("body") | |
.append("div") | |
.attr("class", "tooltip"); | |
function mousemove(text, text2){ | |
tooltipdiv | |
.style("visibility", "visible") | |
.style("opacity", 1) | |
.style("top", d3.event.pageY+15 + "px") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title></title> | |
<script type="text/javascript" src="http://d3js.org/d3.v3.min.js"></script> | |
<style type="text/css"> | |
body { | |
background-color: white; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jahr | raum | zei_id | zeile | zahl | |
---|---|---|---|---|---|
2005 | Stadt Koeln | 10 | Personen in Bedarfsgemeinschaften | 116107.0 | |
2005 | Stadt Koeln | 20 | Erwerbsfaehige Leistungsberechtigte | 85547.0 | |
2005 | Stadt Koeln | 30 | darunter Frauen | 42046.0 | |
2005 | Stadt Koeln | 40 | darunter Auslaender/-innen | 30486.0 | |
2005 | Stadt Koeln | 60 | Bedarfsgemeinschaften | 65098.0 | |
2005 | Stadt Koeln | 70 | darunter Single-BG | 37718.0 | |
2005 | Stadt Koeln | 80 | darunter Alleinerziehend | 10118.0 | |
2005 | Stadt Koeln | 90 | darunter Partner-BG ohne Kinder | 6877.0 | |
2005 | Stadt Koeln | 100 | darunter Partner-BG mit Kind(ern) | 10372.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jahr | raum | zei_id | zeile | zahl | |
---|---|---|---|---|---|
2005 | Stadt Koeln | 10 | Personen in Bedarfsgemeinschaften | 116107.0 | |
2005 | Stadt Koeln | 20 | Erwerbsfaehige Leistungsberechtigte | 85547.0 | |
2005 | Stadt Koeln | 30 | darunter Frauen | 42046.0 | |
2005 | Stadt Koeln | 40 | darunter Auslaender/-innen | 30486.0 | |
2005 | Stadt Koeln | 60 | Bedarfsgemeinschaften | 65098.0 | |
2005 | Stadt Koeln | 70 | darunter Single-BG | 37718.0 | |
2005 | Stadt Koeln | 80 | darunter Alleinerziehend | 10118.0 | |
2005 | Stadt Koeln | 90 | darunter Partner-BG ohne Kinder | 6877.0 | |
2005 | Stadt Koeln | 100 | darunter Partner-BG mit Kind(ern) | 10372.0 |
NewerOlder