Compare commits
103 commits
cosin-cfp-
...
master
Author | SHA1 | Date | |
---|---|---|---|
|
990048803b | ||
e6e7d63548 | |||
c13b9e34dc | |||
e7738dab7c | |||
cce40cc0d3 | |||
38f3ca3a1d | |||
ff5bef9954 | |||
b16270578a | |||
852c06e55b | |||
4bef75a8fc | |||
984b3b2c1c | |||
2429e19bee | |||
e126d7d4d9 | |||
a6cfb6a0cd | |||
16a373029f | |||
f78cbc7d07 | |||
4aec03a560 | |||
0ecc44c3a2 | |||
1ae76f09ad | |||
4a40cf8925 | |||
7958712586 | |||
ffd8664776 | |||
6ec872e3e5 | |||
053bf5b0a0 | |||
92ed5b2a83 | |||
12a8ecfb3e | |||
a6f0f91073 | |||
1518efc4e8 | |||
967b793094 | |||
|
d1dd3c0e97 | ||
8ecdb60291 | |||
|
3aa4407652 | ||
433b443374 | |||
|
c1a8a0b5a3 | ||
|
aac9357a96 | ||
|
c21a392cb2 | ||
|
43e6d44616 | ||
|
3c230b706b | ||
|
bc4c3b807b | ||
|
c51b66fb6b | ||
|
436dbe25ff | ||
|
654c8e9d40 | ||
|
9bc66c1da9 | ||
|
c693170c31 | ||
|
a4f734a44f | ||
|
b0a9c7fc66 | ||
|
f11030fbff | ||
|
2d95a49db0 | ||
|
14a10bf79b | ||
|
9867805c1e | ||
|
8cbdd59388 | ||
|
271153c950 | ||
|
ac4f4f1e41 | ||
|
06ac4ea3e6 | ||
|
7ff830b7f8 | ||
|
fede9f3845 | ||
|
26670d8c1a | ||
|
4ad2d5192a | ||
|
02cb48fd66 | ||
|
140fa32341 | ||
|
9fe21045d2 | ||
|
fd68e79db4 | ||
|
32a3e6c9c1 | ||
|
dc017371e8 | ||
|
f9003b93b0 | ||
|
47e6045b2a | ||
|
984786b830 | ||
|
a1e4947cd5 | ||
|
df078664f9 | ||
|
3fe815b6ba | ||
|
75ef5eaaca | ||
|
cdfe3c978b | ||
|
1dc89aafe4 | ||
|
3d28d4808c | ||
|
c430265f7c | ||
|
762b3e6fa6 | ||
|
d6168fe37d | ||
|
1d8cf3746c | ||
|
cfbed92405 | ||
|
083ee41b4f | ||
|
493862cbaf | ||
|
49f4a3acd8 | ||
|
0e1da00962 | ||
|
dedfefc097 | ||
|
48686da89f | ||
|
677ab713ac | ||
|
47c3616e2b | ||
|
bbb9f144e3 | ||
|
84b307bda2 | ||
|
f334774c3b | ||
|
12fb344630 | ||
|
eb879102f9 | ||
|
0363284432 | ||
|
fd8f2cde1f | ||
|
dcec8ac005 | ||
|
c77152b581 | ||
|
da221c66e3 | ||
|
e20493506e | ||
|
d3c25d8106 | ||
|
29bc02aeea | ||
|
8da3860bda | ||
|
d56359de2b | ||
|
21530397b5 |
29
.forgejo/workflows/deploy.yml
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
---
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
|
||||||
|
deploy:
|
||||||
|
runs-on: ipv6
|
||||||
|
env:
|
||||||
|
SSH_KNOWN_HOSTS: ${{ secrets.SSH_KNOWN_HOSTS }}
|
||||||
|
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
|
||||||
|
RSYNC_DEST: ${{ secrets.RSYNC_DEST }}
|
||||||
|
steps:
|
||||||
|
- uses: https://code.forgejo.org/actions/checkout@v4
|
||||||
|
- name: test
|
||||||
|
run: |
|
||||||
|
apt-get update
|
||||||
|
apt-get install --yes --no-install-recommends make hugo rsync
|
||||||
|
make clean generate
|
||||||
|
- name: upload
|
||||||
|
run: |
|
||||||
|
echo "$SSH_KNOWN_HOSTS" > /ssh_known_hosts
|
||||||
|
echo "$SSH_PRIVATE_KEY" > /ssh_private_key
|
||||||
|
chmod 0600 /ssh_private_key
|
||||||
|
rsync -v --recursive --delete -e "ssh -oUserKnownHostsFile=/ssh_known_hosts -i /ssh_private_key" "public/" "$RSYNC_DEST"
|
||||||
|
|
15
.forgejo/workflows/test.yml
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
---
|
||||||
|
|
||||||
|
on: push
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
|
||||||
|
test:
|
||||||
|
runs-on: docker
|
||||||
|
steps:
|
||||||
|
- uses: https://code.forgejo.org/actions/checkout@v4
|
||||||
|
- name: test
|
||||||
|
run: |
|
||||||
|
apt-get update
|
||||||
|
apt-get install --yes --no-install-recommends make hugo rsync
|
||||||
|
make clean generate
|
6
.gitignore
vendored
|
@ -1,4 +1,8 @@
|
||||||
|
# Hugo
|
||||||
|
.hugo_build.lock
|
||||||
/public/
|
/public/
|
||||||
/resources/_gen
|
/resources/_gen/
|
||||||
|
/assets/jsconfig.json
|
||||||
|
|
||||||
|
# Backup files
|
||||||
*~
|
*~
|
||||||
|
|
33
Makefile
|
@ -1,22 +1,31 @@
|
||||||
OUTPUT_DIR = public
|
# Hugo configuration.
|
||||||
|
HUGO_COMMAND := hugo
|
||||||
|
HUGO_OPTIONS := --printI18nWarnings --minify
|
||||||
|
|
||||||
SSH_HOST = www.cosin.ch
|
OUTPUT_DIR := public
|
||||||
SSH_USER = root
|
|
||||||
TARGET_DIR = /srv/www/www.cosin.ch/
|
|
||||||
|
|
||||||
HUGO_FLAGS = --i18n-warnings
|
# Vnu validator configuration.
|
||||||
|
VNU_COMMAND := vnu
|
||||||
|
VNU_OPTIONS := --skip-non-html --also-check-css
|
||||||
|
|
||||||
.PHONY: generate server upload clean
|
# Non-file goals.
|
||||||
|
.PHONY: server generate validate upload clean
|
||||||
|
|
||||||
|
# Include the configuration files.
|
||||||
|
-include config.mk settings.mk
|
||||||
|
|
||||||
generate:
|
# Start a local development server.
|
||||||
hugo $(HUGO_FLAGS)
|
|
||||||
|
|
||||||
server:
|
server:
|
||||||
hugo $(HUGO_FLAGS) server
|
hugo $(HUGO_OPTIONS) server
|
||||||
|
|
||||||
upload: generate
|
# Generate static output files for deployment.
|
||||||
rsync -P -rvzc --delete --include=*/fahrplan/ --exclude=fahrplan/ $(OUTPUT_DIR)/ $(SSH_USER)@$(SSH_HOST):$(TARGET_DIR)
|
generate:
|
||||||
|
hugo $(HUGO_OPTIONS)
|
||||||
|
|
||||||
|
# Validate html and css in generated files.
|
||||||
|
validate: generate
|
||||||
|
$(VNU_COMMAND) $(VNU_OPTIONS) $(OUTPUT_DIR)
|
||||||
|
|
||||||
|
# Clean up.
|
||||||
clean:
|
clean:
|
||||||
rm -rf $(OUTPUT_DIR)
|
rm -rf $(OUTPUT_DIR)
|
||||||
|
|
BIN
assets/images/ogp/cosin_icon_2018.png
Normal file
After Width: | Height: | Size: 19 KiB |
BIN
assets/images/ogp/cosin_icon_2019.png
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
assets/images/ogp/cosin_icon_2020.png
Normal file
After Width: | Height: | Size: 50 KiB |
BIN
assets/images/ogp/cosin_icon_2021.png
Normal file
After Width: | Height: | Size: 50 KiB |
BIN
assets/images/ogp/cosin_icon_2024.png
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
assets/images/ogp/cosin_icon_generic.png
Normal file
After Width: | Height: | Size: 8.9 KiB |
|
@ -1,7 +1,6 @@
|
||||||
/*
|
/*
|
||||||
* Styleshoot for Cosin 2009 - by Cedric Spindler
|
* Stylesheet for Cosin 2009 - by Cedric Spindler
|
||||||
* adapted for Cosin 2009 - poven
|
* adapted for Cosin 2009 - poven
|
||||||
*
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* ###### General ###### */
|
/* ###### General ###### */
|
||||||
|
@ -15,6 +14,15 @@ body {
|
||||||
width: 934px;
|
width: 934px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
text-align: justify;
|
||||||
|
overflow-wrap: break-word;
|
||||||
|
/* word-break: break-all; */
|
||||||
|
-wekit-hyphens: auto;
|
||||||
|
-moz-hyphens: auto;
|
||||||
|
hyphens: auto;
|
||||||
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color: #5c8040;
|
color: #5c8040;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
|
@ -133,7 +141,6 @@ a:hover {
|
||||||
margin-bottom: 3px;
|
margin-bottom: 3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* ###### Reset ###### */
|
/* ###### Reset ###### */
|
||||||
|
|
||||||
#clear {
|
#clear {
|
||||||
|
@ -146,3 +153,9 @@ footer {
|
||||||
font-size: 0.8em;
|
font-size: 0.8em;
|
||||||
margin: 5px;
|
margin: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
iframe.openstreetmap {
|
||||||
|
border: 0px solid black;
|
||||||
|
width: 100%;
|
||||||
|
height: 400px;
|
||||||
|
}
|
18
config.toml
|
@ -1,11 +1,13 @@
|
||||||
baseURL = "https://www.cosin.ch/"
|
baseURL = "https://cosin.ch/"
|
||||||
|
|
||||||
title = "CoSin - Chaos Singularity"
|
title = "CoSin - Chaos Singularity"
|
||||||
|
|
||||||
theme = "cosin-theme"
|
languageCode = "de-CH"
|
||||||
|
defaultContentLanguage = "de"
|
||||||
|
defaultContentLanguageInSubdir = true
|
||||||
|
|
||||||
DefaultContentLanguage = "de"
|
disableHugoGeneratorInject = true
|
||||||
DefaultContentLanguageInSubdir = true
|
enableRobotsTXT = true
|
||||||
|
disableKinds = ["taxonomy", "term"]
|
||||||
|
|
||||||
[Languages]
|
[Languages]
|
||||||
[Languages.de]
|
[Languages.de]
|
||||||
|
@ -23,3 +25,9 @@ DefaultContentLanguageInSubdir = true
|
||||||
[Languages.en]
|
[Languages.en]
|
||||||
weight = 4
|
weight = 4
|
||||||
LanguageName = "English"
|
LanguageName = "English"
|
||||||
|
|
||||||
|
[markup]
|
||||||
|
[markup.goldmark]
|
||||||
|
[markup.goldmark.renderer]
|
||||||
|
hardWraps = true
|
||||||
|
unsafe = true
|
||||||
|
|
|
@ -1,92 +1,49 @@
|
||||||
---
|
---
|
||||||
title: Hauptseite
|
title: "Hauptseite"
|
||||||
type: page
|
type: page
|
||||||
menu:
|
menu:
|
||||||
main:
|
main:
|
||||||
weight: 50
|
weight: 50
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
## Willkommen
|
## Willkommen
|
||||||
|
|
||||||
CoSin steht für Chaos Singularity. Wir sind uns zwar nicht so sicher, was das
|
CoSin steht für Chaos Singularity. Wir sind uns zwar nicht so sicher, was das bedeutet, aber wir wissen dafür, was wir damit wollen: eine Begegnungs-, Lehr-, Lern-, Kontakt-, sowie Unterhaltungs- und Entspannungsmöglichkeit für Geeks, Nerds, Hacker, Datenreisende, Diskordianer, Chaoten und andere Interessierte. Drei Tage lang soll die Gelegenheit bestehen, Computer und andere Technik zu erforschen, deren Auswirkungen auf die Gesellschaft zu untersuchen oder einfach nur gemütlich mit anderen Teilnehmern zu diskutieren.
|
||||||
bedeutet, aber wir wissen dafür, was wir damit wollen: eine Begegnungs-, Lehr-,
|
|
||||||
Lern-, Kontakt-, sowie Unterhaltungs- und Entspannungsmöglichkeit für Geeks,
|
|
||||||
Nerds, Hacker, Datenreisende, Diskordianer, Chaoten und andere
|
|
||||||
Interessierte. Drei Tage lang soll die Gelegenheit bestehen, Computer und andere
|
|
||||||
Technik zu erforschen, deren Auswirkungen auf die Gesellschaft zu untersuchen
|
|
||||||
oder einfach nur gemütlich mit anderen Teilnehmern zu diskutieren.
|
|
||||||
|
|
||||||
## Was ist das CoSin?
|
## Was ist die CoSin?
|
||||||
|
|
||||||
Das CoSin ist ein technischer und politischer Event mit Workshops, Vorträgen,
|
Das CoSin ist ein technischer und politischer Event mit Workshops, Vorträgen, Diskussionsrunden und anderem Inhalt. Das CoSin ist nicht gewinnorientiert, und auch sonst eher chaotisch in der Zielsetzung. Die ursprüngliche Idee war es schlicht, einen Event anzubieten, der die Bedürfnisse von Geeks, Hackern und sonstigen Freunden des Chaos abdeckt. Als solches folgt der Event naturgemäss stark dem Do-It-Yourself-Prinzip, d.h. Besucher sind nicht passive Konsumenten, sondern aktive Teilnehmer und Mitgestalter.
|
||||||
Diskussionsrunden und anderem Inhalt. Das CoSin ist nicht gewinnorientiert, und
|
|
||||||
auch sonst eher chaotisch in der Zielsetzung. Die ursprüngliche Idee war es
|
|
||||||
schlicht, einen Event anzubieten, der die Bedürfnisse von Geeks, Hackern und
|
|
||||||
sonstigen Freunden des Chaos abdeckt. Als solches folgt der Event naturgemäss
|
|
||||||
stark dem Do-It-Yourself-Prinzip, d.h. Besucher sind nicht passive Konsumenten,
|
|
||||||
sondern aktive Teilnehmer und Mitgestalter.
|
|
||||||
|
|
||||||
Da auch in der Schweiz die politische Realität immer mehr von unseren Idealen
|
Da auch in der Schweiz die politische Realität immer mehr von unseren Idealen wie Informationsfreiheit und Schutz der Privatsphäre abweicht, gibt es je länger je mehr auch politischen Inhalt. Insofern soll die CoSin auch eine Möglichkeit zum Austausch zwischen Leuten mit technischem und politischem Hintergrund bieten.
|
||||||
wie Informationsfreiheit und Schutz der Privatsphäre abweicht, gibt es je länger
|
|
||||||
je mehr auch politischen Inhalt. Insofern soll das CoSin auch eine Möglichkeit
|
|
||||||
zum Austausch zwischen Leuten mit technischem und politischem Hintergrund
|
|
||||||
bieten.
|
|
||||||
|
|
||||||
Das CoSin im soll auch Gelegenheit bieten, Menschen aus verschiedensten
|
Das CoSin soll auch Gelegenheit bieten, Menschen aus verschiedensten Gruppierungen, sowie deren Projekte in einer lockeren Atmosphäre kennenzulernen. Auch interessiere Menschen ohne technischen Hintergrund sind willkommen, sich Einblicke zu verschaffen, die über reine Anwenderkenntnisse hinausgehen.
|
||||||
Gruppierungen, sowie deren Projekte in einer lockeren Atmosphäre
|
|
||||||
kennenzulernen. Auch interessiere Menschen ohne technischen Hintergrund sind
|
|
||||||
willkommen, sich Einblicke zu verschaffen, die über reine Anwenderkenntnisse
|
|
||||||
hinausgehen.
|
|
||||||
|
|
||||||
Detaillierte Informationen zu geplanten Vorträgen und Workshops können
|
Detaillierte Informationen zu geplanten Vorträgen und Workshops können dem [Fahrplan]({{< relref "fahrplan.de.md" >}}) entnommen werden.
|
||||||
dem [Fahrplan]({{< relref "fahrplan.de.md" >}}) entnommen werden.
|
|
||||||
|
|
||||||
Darüberhinaus verfolgen wir mit dem CoSin und die Organisationen dahinter auch
|
Darüberhinaus verfolgen wir mit dem CoSin und die Organisationen dahinter auch diverse langfristige Ziele:
|
||||||
diverse langfristige Ziele:
|
|
||||||
|
|
||||||
* Vernetzung der diversen Gruppen auch über kantonale Grenzen hinaus
|
* Vernetzung der diversen Gruppen auch über kantonale Grenzen hinaus
|
||||||
* Förderung von freien Projekten in den Bereichen Technik und
|
* Förderung von freien Projekten in den Bereichen Technik und Informationspolitik
|
||||||
Informationspolitik
|
* Förderung eines breiten Bewusstseins für Chancen und Gefahren der Informationsgesellschaft
|
||||||
* Förderung eines breiten Bewusstseins für Chancen und Gefahren der
|
* Kritische Betrachtung von neuen Technologien und Erforschung von deren Auswirkungen auf die Gesellschaft
|
||||||
Informationsgesellschaft
|
|
||||||
* Kritische Betrachtung von neuen Technologien und Erforschung von deren
|
|
||||||
Auswirkungen auf die Gesellschaft
|
|
||||||
|
|
||||||
## Was bedeutet der Name?
|
## Was bedeutet der Name?
|
||||||
|
|
||||||
Eine [Singularität][1] ist ein bestimmter Punkt in Zeit und Raum, in dem sich
|
Eine [Singularität][1] ist ein bestimmter Punkt in Zeit und Raum, in dem sich alles konzentriert (so ist z.B. ein schwarzes Loch eine [Gravitationssingularität][2]). Chaos Singularity wäre damit eine Konzentration von Chaos. Der Begriff [Singularität][3] kann auch einfach etwas Ungewöhnliches oder Einmaliges bezeichnen. Die technologische [Singularität][4] bezeichnet den Zeitpunkt, wo das exponentielle Wachstum der Technologie unendlich schnell wird. Zu diesem Zeitpunkt geschehen alle Entwicklungen extrem schnell und fast vollständig chaotisch, wodurch Voraussagen über die darauf folgende Zeit beinahe unmöglich werden.
|
||||||
alles konzentriert (so ist z.B. ein schwarzes Loch eine
|
|
||||||
[Gravitationssingularität][2]). Chaos Singularity wäre damit eine Konzentration
|
|
||||||
von Chaos. Der Begriff [Singularität][3] kann auch einfach etwas Ungewöhnliches
|
|
||||||
oder Einmaliges bezeichnen. Die technologische [Singularität][4] bezeichnet den
|
|
||||||
Zeitpunkt, wo das exponentielle Wachstum der Technologie unendlich schnell
|
|
||||||
wird. Zu diesem Zeitpunkt geschehen alle Entwicklungen extrem schnell und fast
|
|
||||||
vollständig chaotisch, wodurch Voraussagen über die darauf folgende Zeit beinahe
|
|
||||||
unmöglich werden.
|
|
||||||
|
|
||||||
CoSin könnte auch Abkürzung für die trigonometrische CoSinus-Funktion sein.
|
CoSin könnte auch Abkürzung für die trigonometrische CoSinus-Funktion sein. Diese hat keine [Singularitäten][5]. Der Wert von `cosin({{< cosin "date_year" >}})` ist ungefähr {{< cosin "cos_value" >}}.
|
||||||
Diese hat keine [Singularitäten][5]. Der Wert von `cosin({{< cosin "date_year" >}})`
|
|
||||||
ist ungefähr {{< cosin "cos_value" >}}.
|
|
||||||
|
|
||||||
## Wer steckt dahinter?
|
## Wer steckt dahinter?
|
||||||
|
|
||||||
Organisiert wird die Veranstaltung seit 2013 von verschiedenen [Hackerspaces][6]
|
Organisiert wird die Veranstaltung seit 2013 von verschiedenen [Hackspaces][6] der Schweiz, die sich den Maximen der [Hackerethik][7] des [Chaos Computer Club][8] verpflichten. Viele der Hackspaces sind im [Chaos Computer Club Schweiz][9] organisiert. Auch weitere Einzelpersonen sind am Zustandekommen der CoSin beteiligt.
|
||||||
der Schweiz, die sich den Maximen der [Hackerethik][7] des
|
|
||||||
[Chaos Computer Club][8] verpflichten. Viele der Hackerspaces sind im
|
|
||||||
[Chaos Computer Club Schweiz][9] organisiert. Auch weitere Einzelpersonen sind
|
|
||||||
am Zustandekommen der CoSin beteiligt.
|
|
||||||
|
|
||||||
Der Inhalt schliesslich stammt von allen möglichen Personen. Jede und jeder ist
|
Der Inhalt schliesslich stammt von allen möglichen Personen. Jede und jeder ist eingeladen, auf die eine oder andere Art zum Programm beizutragen, und wir sind dankbar an all die Menschen, die dies jedes Jahr auch tun.
|
||||||
eingeladen, auf die eine oder andere Art zum Programm beizutragen, und wir sind
|
|
||||||
dankbar an all die Menschen, die dies jedes Jahr auch tun.
|
|
||||||
|
|
||||||
[1]: https://de.wikipedia.org/wiki/Singularität
|
[1]: https://de.wikipedia.org/wiki/Singularität
|
||||||
[2]: https://de.wikipedia.org/wiki/Singularität_(Astronomie)
|
[2]: https://de.wikipedia.org/wiki/Singularität_(Astronomie)
|
||||||
[3]: https://de.wiktionary.org/wiki/Singularität
|
[3]: https://de.wiktionary.org/wiki/Singularität
|
||||||
[4]: https://de.wikipedia.org/wiki/Technologische_Singularität
|
[4]: https://de.wikipedia.org/wiki/Technologische_Singularität
|
||||||
[5]: https://de.wikipedia.org/wiki/Singularität_(Mathematik)
|
[5]: https://de.wikipedia.org/wiki/Singularität_(Mathematik)
|
||||||
[6]: https://hackerspaces.org/wiki/Switzerland
|
[6]: https://wiki.hackerspaces.org/Switzerland
|
||||||
[7]: https://www.ccc.de/de/hackerethik
|
[7]: https://www.ccc.de/de/hackerethik
|
||||||
[8]: https://www.ccc.de/de/
|
[8]: https://www.ccc.de/de/
|
||||||
[9]: https://www.ccc-ch.ch/
|
[9]: https://www.ccc-ch.ch/
|
||||||
|
|
|
@ -1,39 +1,21 @@
|
||||||
---
|
---
|
||||||
title: Main Page
|
title: "Main Page"
|
||||||
type: page
|
type: page
|
||||||
menu:
|
menu:
|
||||||
main:
|
main:
|
||||||
weight: 50
|
weight: 50
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
## Welcome
|
## Welcome
|
||||||
|
|
||||||
CoSin is short for Chaos Singularity. We are not quite sure what that means, but
|
CoSin is short for Chaos Singularity. We are not quite sure what that means, but we do know, what we want with it: We hope to provide a chance for geeks, nerds, hackers, discordians, chaots and other interested or curious people, to meet, learn, chat, have fun and relax. During three days, we'd like to offer the opportunity to investigate technology, think about its effects on society, or just chat with other participants in a relaxed atmosphere.
|
||||||
we do know, what we want with it: We hope to provide a chance for geeks, nerds,
|
|
||||||
hackers, discordians, chaots and other interested or curious people, to meet,
|
|
||||||
learn, chat, have fun and relax. During three days, we'd like to offer the
|
|
||||||
opportunity to investigate technology, think about its effects on society, or
|
|
||||||
just chat with other participants in a relaxed atmosphere.
|
|
||||||
|
|
||||||
## What is CoSin?
|
## What is CoSin?
|
||||||
|
|
||||||
CoSin is a technical and political event, where we intend to hold lectures,
|
CoSin is a technical and political event, where we intend to hold lectures, operate a network and have a lot of fun. Lectures are going to be in German and English (in the past mostly German). CoSin is a non-profit event, and generally chaotic when it comes to our goals. Originally, we just wanted to offer an event for geeks, hackers and other friends of constructive chaos, to meet, chat and have fun. As such, the event follows a strong do-it-yourself principle, i.e. visitors are not consumers, but participants.
|
||||||
operate a network and have a lot of fun. Lectures are going to be in German and
|
|
||||||
English (in the past mostly German). CoSin is a non-profit event, and generally
|
|
||||||
chaotic when it comes to our goals. Originally, we just wanted to offer an event
|
|
||||||
for geeks, hackers and other friends of constructive chaos, to meet, chat and
|
|
||||||
have fun. As such, the event follows a strong do-it-yourself principle,
|
|
||||||
i.e. visitors are not consumers, but participants.
|
|
||||||
|
|
||||||
As a courtesy of the political reality, which seems to differ more from our
|
As a courtesy of the political reality, which seems to differ more from our ideals - like freedom of information and protection of privacy - each year, there is also an ever growing amount of political content. As such, we also hope to provide an opportunity for people with technical and political background to meet and exchange thoughts.
|
||||||
ideals - like freedom of information and protection of privacy - each year,
|
|
||||||
there is also an ever growing amount of political content. As such, we also hope
|
|
||||||
to provide an opportunity for people with technical and political background to
|
|
||||||
meet and exchange thoughts.
|
|
||||||
|
|
||||||
Finally, CoSin is also a good chance for people without technical background, to
|
Finally, CoSin is also a good chance for people without technical background, to gain an insight.
|
||||||
gain an insight.
|
|
||||||
|
|
||||||
## Topics
|
## Topics
|
||||||
|
|
||||||
|
@ -47,51 +29,32 @@ The content of the CoSin event depends on the participants. Some topics are:
|
||||||
* Politics (especially information and net-related topics)
|
* Politics (especially information and net-related topics)
|
||||||
* Fun
|
* Fun
|
||||||
|
|
||||||
More specific information about talks and workshops can be found in our
|
More specific information about talks and workshops can be found in our [schedule]({{< relref "fahrplan.en.md" >}}). Besides sharing knowledge and experience, CoSin and the organisations behind it also pursue various long-run objectives:
|
||||||
[schedule]({{< relref "fahrplan.en.md" >}}). Besides sharing knowledge
|
|
||||||
and experience, CoSin and the organisations behind it also pursue various
|
|
||||||
long-run objectives:
|
|
||||||
|
|
||||||
* Networking between groups of different geographical areas.
|
* Networking between groups of different geographical areas.
|
||||||
* Support of free projects around technology and information politics.
|
* Support of free projects around technology and information politics.
|
||||||
* Advancement of information security.
|
* Advancement of information security.
|
||||||
* Creation of a broader consciousness for opportunities and risks around
|
* Creation of a broader consciousness for opportunities and risks around information society.
|
||||||
information society.
|
|
||||||
* Investigation of new technologies and analysis of their impact on society.
|
* Investigation of new technologies and analysis of their impact on society.
|
||||||
* Understanding the interrelation between technology and information freedom.
|
* Understanding the interrelation between technology and information freedom.
|
||||||
|
|
||||||
Furthermore, CoSin is also meant to offer an opportunity to get to know people
|
Furthermore, CoSin is also meant to offer an opportunity to get to know people and their projects in a relaxed atmosphere.
|
||||||
and their projects in a relaxed atmosphere.
|
|
||||||
|
|
||||||
## For Whom?
|
## For Whom?
|
||||||
|
|
||||||
CoSin is open to everyone, who is interested in technology and it's effects on
|
CoSin is open to everyone, who is interested in technology and it's effects on society. You don't have to be an Unix guru to participate - all curious people are welcome. We'd be happy to meet you at CoSin!
|
||||||
society. You don't have to be an Unix guru to participate - all curious people
|
|
||||||
are welcome. We'd be happy to meet you at CoSin!
|
|
||||||
|
|
||||||
## What does the Name mean?
|
## What does the Name mean?
|
||||||
|
|
||||||
A [singularity][1] is a particular point in time and/or space, where everything
|
A [singularity][1] is a particular point in time and/or space, where everything concentrates (e.g. a black hole - a gravitational [singularity][2]). Chaos Singularity could therefore be a concentration of all chaos. A [singularity][3] can be something strange, unusual, peculiar or unique. Furthermore, [singularity][4] is the point in time, where the exponential growth in technology becomes infinite. At this point, all development happens extremely fast and almost completely chaotic, making any predictions about the following time impossible.
|
||||||
concentrates (e.g. a black hole - a gravitational [singularity][2]). Chaos
|
|
||||||
Singularity could therefore be a concentration of all chaos. A [singularity][3]
|
|
||||||
can be something strange, unusual, peculiar or unique. Furthermore,
|
|
||||||
[singularity][4] is the point in time, where the exponential growth in
|
|
||||||
technology becomes infinite. At this point, all development happens extremely
|
|
||||||
fast and almost completely chaotic, making any predictions about the following
|
|
||||||
time impossible.
|
|
||||||
|
|
||||||
Cosine is a trigonometric function. It does not have any [singularities][5].
|
Cosine is a trigonometric function. It does not have any [singularities][5]. The value of `cosin({{< cosin "date_year" >}})` is approximately {{< cosin "cos_value" >}}.
|
||||||
The value of `cosin({{< cosin "date_year" >}})` is approximately {{< cosin "cos_value" >}}.
|
|
||||||
|
|
||||||
## Who organizes CoSin?
|
## Who organizes CoSin?
|
||||||
|
|
||||||
CoSin is a chaotic event organised by [Chaostreffs][6] of Switzerland.
|
CoSin is a chaotic event organised by [Chaostreffs][6] of Switzerland. These groups share a common support for the German [CCC e.V.][7] and its ideals, in Switzerland represented by the [CCC-CH][8].
|
||||||
These groups share a common support for the German [CCC e.V.][7] and its ideals,
|
|
||||||
in Switzerland represented by the [CCC-CH][8].
|
|
||||||
|
|
||||||
The content is provided by all sorts of persons. Everyone is invited to
|
The content is provided by all sorts of persons. Everyone is invited to contribute to the program, and we are grateful towards all the people who do this every year.
|
||||||
contribute to the program, and we are grateful towards all the people who do
|
|
||||||
this every year.
|
|
||||||
|
|
||||||
[1]: https://en.wikipedia.org/wiki/Singularity
|
[1]: https://en.wikipedia.org/wiki/Singularity
|
||||||
[2]: https://en.wikipedia.org/wiki/Gravitational_singularity
|
[2]: https://en.wikipedia.org/wiki/Gravitational_singularity
|
||||||
|
|
|
@ -1,105 +1,42 @@
|
||||||
---
|
---
|
||||||
title: Accueil principal
|
title: "Accueil principal"
|
||||||
type: page
|
type: page
|
||||||
menu:
|
menu:
|
||||||
main:
|
main:
|
||||||
weight: 50
|
weight: 50
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
## Bienvenue
|
## Bienvenue
|
||||||
|
|
||||||
CoSin signifie Chaos Singularity. Si nous ne sommes pas très sûrs de ce que cela
|
CoSin signifie Chaos Singularity. Si nous ne sommes pas très sûrs de ce que cela veut dire, nous savons ce que nous voulons que cela signifie : une occasion de se rencontrer, d'apprendre, de se faire des contacts, se divertir et de se détendre entre geeks, nerds, hackers, voyageurs des espaces numériques, les discordiens, les adeptes du chaos et d'autres intéressés. Pendant trois jours, nous aurons l'occasion d'investiguer les technologies numériques et d'étudier leurs effets sur la société ou tout simplement de discuter avec les autres participants dans une atmosphère détendue.
|
||||||
veut dire, nous savons ce que nous voulons que cela signifie : une occasion de
|
|
||||||
se rencontrer, d'apprendre, de se faire des contacts, se divertir et de se
|
|
||||||
détendre entre geeks, nerds, hackers, voyageurs des espaces numériques, les
|
|
||||||
discordiens, les adeptes du chaos et d'autres intéressés. Pendant trois jours,
|
|
||||||
nous aurons l'occasion d'investiguer les technologies numériques et d'étudier
|
|
||||||
leurs effets sur la société ou tout simplement de discuter avec les autres
|
|
||||||
participants dans une atmosphère détendue.
|
|
||||||
|
|
||||||
## Qu'est-ce que le CoSin ?
|
## Qu'est-ce que le CoSin?
|
||||||
|
|
||||||
Le CoSin est un événement technique et politique, oû nous prévoyons d'avoir des
|
Le CoSin est un événement technique et politique, oû nous prévoyons d'avoir des présentations, de monter un réseau et de s'amuser ensemble. Les présentations sont en Allemand (surtout) et en Anglais (un peu). Le CoSin n'est pas un événement à but lucratif mais plutôt à but chaotique. L'idée de base était simplement d'organiser un lieu de rencontre selon les besoins de geeks, hackers et d'autres amis du chaos. Par conséquent, l'événement s'organise selon le principe du "do-it-yourself", c'est-à-dire que les visiteurs ne sont pas des consommateurs passifs mais des participants actifs.
|
||||||
présentations, de monter un réseau et de s'amuser ensemble. Les présentations
|
|
||||||
sont en Allemand (surtout) et en Anglais (un peu). Le CoSin n'est pas un
|
|
||||||
événement à but lucratif mais plutôt à but chaotique. L'idée de base était
|
|
||||||
simplement d'organiser un lieu de rencontre selon les besoins de geeks, hackers
|
|
||||||
et d'autres amis du chaos. Par conséquent, l'événement s'organise selon le
|
|
||||||
principe du "do-it-yourself", c'est-à-dire que les visiteurs ne sont pas des
|
|
||||||
consommateurs passifs mais des participants actifs.
|
|
||||||
|
|
||||||
Nous estimons également que le contexte politique est de plus en plus important.
|
Nous estimons également que le contexte politique est de plus en plus important. En effet, la réalité politique differt de plus en plus de nos idéaux - la liberté de l'information et le droit au respect de la vie privée. De fait, le contenu politique à CoSin est plus important chaque année. Par conséquent, nous espérons offrir des opportunités de rencontres et d'échanges aux personnes ayant un parcours technique et/ou politique.
|
||||||
En effet, la réalité politique differt de plus en plus de nos idéaux - la
|
|
||||||
liberté de l'information et le droit au respect de la vie privée. De fait, le
|
|
||||||
contenu politique à CoSin est plus important chaque année. Par conséquent, nous
|
|
||||||
espérons offrir des opportunités de rencontres et d'échanges aux personnes ayant
|
|
||||||
un parcours technique et/ou politique.
|
|
||||||
|
|
||||||
Finalement, les personnes moins techniques sont également les bienvenues afin
|
Le CoSin offre la possibilité de faire connaissance avec des personnes de différents groupes et de leurs projets dans une atmosphère légère. Les personnes moins techniques sont également bienvenues afin d'approfondir leurs connaissances.
|
||||||
d'approfondir leurs connaissances.
|
|
||||||
|
|
||||||
## Sujets
|
Vous trouverez des informations détaillées sur les conférences et les ateliers prévus dans la [programme]({{< relref "fahrplan.fr.md" >}}).
|
||||||
|
|
||||||
Le contenu présenté à CoSin dépend des participants, mais les sujets
|
En outre, nous poursuivons divers objectifs à long terme avec le CoSin et les organisations qui le composent :
|
||||||
tournent autour de :
|
|
||||||
|
|
||||||
* Logiciel (e.g. GNU/Linux, BSD)
|
* Relier des divers groupes, également au-delà des frontières cantonales
|
||||||
* Matériel (e.g. Wireless Routers, radio amateur)
|
* Promotion de projets libres dans les domaines de la technique et de la politique d'information
|
||||||
* Electronique (e.g. atelier de soudure)
|
* Promotion d'une sensibilisation à grande échelle aux chances et aux dangers de la société de l'information
|
||||||
* Mate
|
* Considération critique des nouvelles technologies et recherche de leurs effets sur la société.
|
||||||
* Guerre de relgion (Vi vs Emacs, etc.)
|
|
||||||
* Politique (spécialement les sujets de l'information et touchant l'Internet)
|
|
||||||
* Fun
|
|
||||||
|
|
||||||
Des informations détaillées sur les présentations et les ateliers peuvent être
|
## Que signifie le nom?
|
||||||
trouvées dans le [programme]({{< relref "fahrplan.fr.md" >}}).
|
|
||||||
|
|
||||||
De manière plus générale et à long terme, les objectifs du CoSin et de son
|
Une [singularité][1] est un certain point dans le temps et dans l'espace dans lequel tout se concentre; ainsi, un trou noir est une [singularité gravitationnelle][2]. Chaos Singularity serait donc une concentration de chaos. Une singularité peut également signifier un événement singulier, c'est-à-dire insolite ou unique. La [singularité technologique][4] est le temps où la croissance exponentielle de la technologie atteindra une vitesse infinie et où tous les développements se feront de façon extrêmement rapide et chaotique, ce qui rend des prévisions concernant le temps après quasiment impossibles.
|
||||||
organisation sont de :
|
|
||||||
|
|
||||||
* Former un réseau de différents groupements au-delà des frontières des cantons ;
|
CoSin peut également signifier la fonction mathématique du cosinus, qui elle-même n'a aucune [singularité][5]. La valeur de `cosin({{< cosin "date_year" >}})` est de {{< cosin "cos_value" >}}.
|
||||||
* Promouvoir des projets libres et dans la technologie et dans la politique de
|
|
||||||
l'information ;
|
|
||||||
* Promouvoir une conscience pour les chances et les risques de la société
|
|
||||||
d'information ;
|
|
||||||
* Evaluer des nouvelles technologies avec un esprit critique et étudier leurs
|
|
||||||
conséquences sur la société.
|
|
||||||
|
|
||||||
## Publique cible
|
## Qui organise CoSin?
|
||||||
|
|
||||||
CoSin est ouvert à tout le monde qui s'intéresse à la technologie et ses effets
|
L'organisation est basée sur une collaboration entre des particuliers venant de différents «[Chaostreffs][6]» en Suisse. Ces associations ont des buts différents mais ils ont une chose en commun : ils sont proches du [Chaos Computer Club e.V.][7] allemand et ils soutiennent ses objectifs, comme la liberté de l'information. En Suisse, ils sont représentés par [CCC-CH][8].
|
||||||
sur la société. Vous n'avez pas besoin d'être un Gourou d'Unix pour participer -
|
|
||||||
tous les curieux sont bienvenus et nous serions heureux de faire votre
|
|
||||||
connaissance à CoSin !
|
|
||||||
|
|
||||||
## Que signifie le nom ?
|
Enfin, le contenu vient d'un tas de personnes différentes. Chacune et chacun est invité à contribuer au programme d'une façon ou d'une autre, et nous remercions d'ores et déjà tous ceux qui le feront cette année.
|
||||||
|
|
||||||
Une [singularité][1] est un certain point dans le temps et dans l'espace dans
|
|
||||||
lequel tout se concentre; ainsi, un trou noir est une [singularité gravitationnelle][2].
|
|
||||||
Chaos Singularity serait donc une concentration de chaos.
|
|
||||||
Une singularité peut également signifier un événement singulier, c'est-à-dire
|
|
||||||
insolite ou unique. La [singularité technologique][4] est le temps où la
|
|
||||||
croissance exponentielle de la technologie atteindra une vitesse infinie et où
|
|
||||||
tous les développements se feront de façon extrêmement rapide et chaotique, ce
|
|
||||||
qui rend des prévisions concernant le temps après quasiment impossibles.
|
|
||||||
|
|
||||||
CoSin peut également signifier la fonction mathématique du cosinus,
|
|
||||||
qui elle-même n'a aucune [singularité][5]. La valeur de `cosin({{< cosin "date_year" >}})`
|
|
||||||
est de {{< cosin "cos_value" >}}.
|
|
||||||
|
|
||||||
## Qui organise CoSin ?
|
|
||||||
|
|
||||||
L'organisation est basée sur une collaboration entre des particuliers venant de
|
|
||||||
différents « [Chaostreffs][6] » en Suisse.
|
|
||||||
Ces associations ont des buts différents mais ils ont une chose en commun : ils
|
|
||||||
sont proches du [Chaos Computer Club e.V.][7] allemand et ils soutiennent ses
|
|
||||||
objectifs, comme la liberté de l'information. En Suisse, ils sont représentés
|
|
||||||
par [CCC-CH][8].
|
|
||||||
|
|
||||||
Enfin, le contenu vient d'un tas de personnes différentes. Chacune et chacun est
|
|
||||||
invité à contribuer au programme d'une façon ou d'une autre, et nous remercions
|
|
||||||
d'ores et déjà tous ceux qui le feront cette année.
|
|
||||||
|
|
||||||
[1]: https://fr.wikipedia.org/wiki/Singularit%C3%A9
|
[1]: https://fr.wikipedia.org/wiki/Singularit%C3%A9
|
||||||
[2]: https://fr.wikipedia.org/wiki/Singularit%C3%A9_gravitationnelle
|
[2]: https://fr.wikipedia.org/wiki/Singularit%C3%A9_gravitationnelle
|
||||||
|
|
|
@ -1,97 +1,49 @@
|
||||||
---
|
---
|
||||||
title: Pagina principale
|
title: "Pagina principale"
|
||||||
type: page
|
type: page
|
||||||
menu:
|
menu:
|
||||||
main:
|
main:
|
||||||
weight: 50
|
weight: 50
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
## Benvenuti
|
## Benvenuti
|
||||||
|
|
||||||
CoSin sta per Chaos Singularity. Non siamo molto certi cosa significhi,
|
CoSin sta per Chaos Singularity. Non siamo molto certi cosa significhi, ma abbiamo le idee molto in chiaro su cosa vogliamo fare: offrire un'occasione per riunirci, trovarci, conoscerci, spiegarci, divertirci e rilassarci, stando aperti a tutti i geeks, nerds, hackers, pionieri digitali, discordiani, caoti e chiunque sia interessato. Per tre giorni ci diamo la possibilità di esplorare computer e il mondo della tecnologia digitale e discutere gli e purché abbiano effetto sulla società o che siano di comune interesse.
|
||||||
ma abbiamo le idee molto in chiaro su cosa vogliamo fare: offrire
|
|
||||||
un'occasione per riunirci, trovarci, conoscerci, spiegarci, divertirci e
|
|
||||||
rilassarci, stando aperti a tutti i geeks, nerds, hackers, pionieri
|
|
||||||
digitali, discordiani, caoti e chiunque sia interessato. Per tre giorni
|
|
||||||
ci diamo la possibilità di esplorare computer e il mondo della
|
|
||||||
tecnologia digitale e discutere gli e purché abbiano effetto sulla
|
|
||||||
società o che siano di comune interesse.
|
|
||||||
|
|
||||||
## Cos'é la CoSin?
|
## Cos'é la CoSin?
|
||||||
|
|
||||||
La CoSin é un evento dove ci occupiamo di aspetti tecnici e politici del
|
La CoSin é un evento dove ci occupiamo di aspetti tecnici e politici del mondo digitale, tramite workshops, presentazioni, discussioni e altri formati. La CoSin non è a scopo di lucro, e per il resto molto caotica negli obiettivi. L'idea originale era semplicemente di organizzare un raduno che soddisfi le necessità di geeks e hacker e amici del "Chaos". Come tale, l'evento segue molto il principio del Do-It-Yourself, cioè i partecipanti non sono semplici consumatori, bensì si assumono la responsabilità di organizzare certi aspetti dell'evento.
|
||||||
mondo digitale, tramite workshops, presentazioni, discussioni e altri
|
|
||||||
formati. La CoSin non è a scopo di lucro, e per il resto molto caotica
|
|
||||||
negli obiettivi. L'idea originale era semplicemente di organizzare un
|
|
||||||
raduno che soddisfi le necessità di geeks e hacker e amici del "Chaos".
|
|
||||||
Come tale, l'evento segue molto il principio del Do-It-Yourself, cioè i
|
|
||||||
partecipanti non sono semplici consumatori, bensì si assumono la
|
|
||||||
responsabilità di organizzare certi aspetti dell'evento.
|
|
||||||
|
|
||||||
I contenuti politici stanno guadagnando terreno, siccome anche in
|
I contenuti politici stanno guadagnando terreno, siccome anche in Svizzera la realtà politica si sta allontanando sempre più dai nostri ideali della libertà d'informazione e di tutela della vita privata. Per questo vogliamo che la CoSin sia un luogo di incontro per persone di sfondo rispettivamente tecnico e politico.
|
||||||
Svizzera la realtà politica si sta allontanando sempre più dai nostri
|
|
||||||
ideali della libertà d'informazione e di tutela della vita privata. Per
|
|
||||||
questo vogliamo che la CoSin sia un luogo di incontro per persone di
|
|
||||||
sfondo rispettivamente tecnico e politico.
|
|
||||||
|
|
||||||
La CoSin sia un luogo di incontro per gruppi e persone di interessi
|
La CoSin sia un luogo di incontro per gruppi e persone di interessi particolari e più svariati, offrendo la possibilità di mostrare i loro progetti in un ambiente molto informale. Tutti loro, anche senza conoscenze tecniche approfondite, sono benvenuti a partecipare, e farsi un'idea su applicazioni che vanno oltre le semplici conoscenze di utilizzo quotidiano.
|
||||||
particolari e più svariati, offrendo la possibilità di mostrare i loro
|
|
||||||
progetti in un ambiente molto informale. Tutti loro, anche senza
|
|
||||||
conoscenze tecniche approfondite, sono benvenuti a partecipare, e farsi
|
|
||||||
un'idea su applicazioni che vanno oltre le semplici conoscenze di
|
|
||||||
utilizzo quotidiano.
|
|
||||||
|
|
||||||
Informazioni dettagliate sulle presentazioni e i workshops sono
|
Informazioni dettagliate sulle presentazioni e i workshops sono disponibili sulla [tabella di marcia]({{< relref "fahrplan.it.md" >}}).
|
||||||
disponibili sulla [tabella di marcia]({{< relref "fahrplan.it.md" >}}).
|
|
||||||
|
|
||||||
Con la CoSin e le organizzazioni che la affiancano perseguiamo inoltre i
|
Con la CoSin e le organizzazioni che la affiancano perseguiamo inoltre i seguenti obiettivi:
|
||||||
seguenti obiettivi:
|
|
||||||
|
|
||||||
* Rafforzare il dialogo tra i vari gruppi anche oltre i limiti
|
* Rafforzare il dialogo tra i vari gruppi anche oltre i limiti cantonali.
|
||||||
cantonali.
|
* Promuovere progetti liberi nell'ambito della tecnologia e della materia d'informazione
|
||||||
* Promuovere progetti liberi nell'ambito della tecnologia e
|
* Aumentare la visibilità pubblica dei caoti e le minacce, sfide e opportunità per la civiltà che le nuove tecnologie e materia d'informazione offrono
|
||||||
della materia d'informazione
|
* Analisi critica di nuove tecnologie e ricerca dei loro effetti sulla società civile
|
||||||
* Aumentare la visibilità pubblica dei caoti e le minacce, sfide
|
|
||||||
e opportunità per la civiltà che le nuove tecnologie e materia d'informazione offrono
|
|
||||||
* Analisi critica di nuove tecnologie e ricerca dei loro effetti
|
|
||||||
sulla società civile
|
|
||||||
|
|
||||||
## Cosa significa il nome?
|
## Cosa significa il nome?
|
||||||
|
|
||||||
Una [Singolarità][1] è una coordinata nello spazio-tempo un po'
|
Una [Singolarità][1] è una coordinata nello spazio-tempo un po' particolare, dove ogni aspetto sotto analisi si concentra e intensifica (per esempio un buco nero intensifica la forza di gravità[2]). Chaos Singularity dunque è la nostra concentrazione del Caos. Il [concetto di Singolarità][3] può anche essere preso semplicemente come qualcosa di irregolare ed eccezionale. La [singolarità tecnologica][4] descrive l'istante che la moltiplicazione della tecnologica diventa infinita. In questa condizione tutto si trasforma istantaneamente e in modo praticamente caotico, per cui diventa impossibile prevederne lo sviluppo e gli effetti.
|
||||||
particolare, dove ogni aspetto sotto analisi si concentra e intensifica
|
|
||||||
(per esempio un buco nero intensifica la forza di gravità[2]). Chaos
|
|
||||||
Singularity dunque è la nostra concentrazione del Caos. Il
|
|
||||||
[concetto di Singolarità][3] può anche essere preso semplicemente come qualcosa di
|
|
||||||
irregolare ed eccezionale. La [singolarità tecnologica][4] descrive
|
|
||||||
l'istante che la moltiplicazione della tecnologica diventa infinita. In
|
|
||||||
questa condizione tutto si trasforma istantaneamente e in modo
|
|
||||||
praticamente caotico, per cui diventa impossibile prevederne lo sviluppo
|
|
||||||
e gli effetti.
|
|
||||||
|
|
||||||
CoSin potrebbe pure essere l'abbreviazione della funzione trigonometrica
|
CoSin potrebbe pure essere l'abbreviazione della funzione trigonometrica del coseno. Questa non ha [Singulorità][5]. Il valore di `cosin({{< cosin "date_year" >}})` è approssimativamente {{< cosin "cos_value" >}}.
|
||||||
del coseno. Questa non ha [Singulorità][5]. Il valore di `cosin({{< cosin "date_year" >}})`
|
|
||||||
è approssimativamente {{< cosin "cos_value" >}}.
|
|
||||||
|
|
||||||
## Chi ci sta dietro le quinte?
|
## Chi ci sta dietro le quinte?
|
||||||
|
|
||||||
A partire la 2013 la CoSin è organizzata da vari [Hackerspaces][6]
|
A partire la 2013 la CoSin è organizzata da vari [Hackspaces][6] svizzeri, che hanno riconosciuto l'[Etica degli Hacker][7] del [Chaos Computer Club][8]. La maggior parte degli Hackspaces regionali sono organizzati nel [Chaos Computer Club Svizzera][9]. Anche altre persone si ingaggiano per il successo della CoSin.
|
||||||
svizzeri, che hanno riconosciuto l'[Etica degli Hacker][7] del [Chaos
|
|
||||||
Computer Club][8]. La maggior parte degli Hackerspaces regionali sono
|
|
||||||
organizzati nel [Chaos Computer Club Svizzera][9]. Anche altre persone
|
|
||||||
si ingaggiano per il successo della CoSin.
|
|
||||||
|
|
||||||
I contenuti presentati sono contributi di ogni genere die persone. Tutti
|
I contenuti presentati sono contributi di ogni genere die persone. Tutti sono benvenuti a contribuire al programma, e siamo grati a tutti i contribuenti degli anni passati.
|
||||||
sono benvenuti a contribuire al programma, e siamo grati a tutti i
|
|
||||||
contribuenti degli anni passati.
|
|
||||||
|
|
||||||
[1]: https://de.wikipedia.org/wiki/Singularität
|
[1]: https://de.wikipedia.org/wiki/Singularität
|
||||||
[2]: https://de.wikipedia.org/wiki/Singularität_(Astronomie)
|
[2]: https://de.wikipedia.org/wiki/Singularität_(Astronomie)
|
||||||
[3]: https://de.wiktionary.org/wiki/Singularität
|
[3]: https://de.wiktionary.org/wiki/Singularität
|
||||||
[4]: https://de.wikipedia.org/wiki/Technologische_Singularität
|
[4]: https://de.wikipedia.org/wiki/Technologische_Singularität
|
||||||
[5]: https://de.wikipedia.org/wiki/Singularität_(Mathematik)
|
[5]: https://de.wikipedia.org/wiki/Singularität_(Mathematik)
|
||||||
[6]: https://hackerspaces.org/wiki/Switzerland
|
[6]: https://wiki.hackerspaces.org/Switzerland
|
||||||
[7]: https://www.ccc.de/de/hackerethik
|
[7]: https://www.ccc.de/de/hackerethik
|
||||||
[8]: https://www.ccc.de/de/
|
[8]: https://www.ccc.de/de/
|
||||||
[9]: https://www.ccc-ch.ch/
|
[9]: https://www.ccc-ch.ch/
|
||||||
|
|
|
@ -5,55 +5,35 @@ menu:
|
||||||
main:
|
main:
|
||||||
weight: 300
|
weight: 300
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
## Chaos Singularity {{< cosin "date_year" >}} - Call For Participation (CfP) {#chaos-singularity-call-for-participation}
|
## Chaos Singularity {{< cosin "date_year" >}} - Call For Participation (CfP) {#chaos-singularity-call-for-participation}
|
||||||
|
|
||||||
Die Chaos Singularity (kurz CoSin) ist der jährlich stattfindende
|
Die Chaos Singularity (kurz CoSin) ist die jährlich stattfindende Veranstaltung des [Chaos Computer Clubs Schweiz (CCC-CH)](https://www.ccc-ch.ch/) — eine Mischung aus technisch-gesellschaftlichem Kongress, kreativem Beisammensein und Hacker-Familientreffen.
|
||||||
schweizerische Kongress des
|
|
||||||
[Chaos Computer Clubs Schweiz (CCC-CH)](https://www.ccc-ch.ch/).
|
|
||||||
|
|
||||||
Auch dieses Jahr treffen sich wieder an einem Juni-Wochenende jeweils
|
Auch dieses Jahr treffen sich wieder an einem Juni-Wochenende jeweils technikbegeisterte und netzpolitisch aktive Hacker und Geeks aus der Schweiz und den umliegenden Ländern, um sich auszutauschen, voneinander zu lernen und gemeinsam Spass zu haben — nicht nur, aber auch am Gerät.
|
||||||
technikbegeisterte und netzpolitisch aktive Hacker und Geeks aus der
|
|
||||||
Schweiz und den angrenzenden Regionen, um sich auszutauschen,
|
|
||||||
voneinander zu lernen und Spass zu haben — nicht nur am Gerät.
|
|
||||||
|
|
||||||
## Wann und wo findet die CoSin statt?
|
## Wann und wo findet die CoSin statt?
|
||||||
|
|
||||||
Die CoSin findet dieses Jahr vom
|
Die CoSin findet dieses Jahr vom {{< cosin_i18n "date_start_weekday" >}}, den {{< cosin "date_start_day" >}}. {{< cosin_i18n "date_start_month" >}} bis {{< cosin_i18n "date_end_weekday" >}}, den {{< cosin "date_end_day" >}}. {{< cosin_i18n "date_end_month" >}} {{< cosin "date_year" >}} wieder {{< cosin_i18n "location_name_preposition" >}} [{{< cosin_i18n "location_name" >}}]({{< cosin "location_url" >}}) in {{< cosin_i18n "location_city" >}} statt.
|
||||||
{{< cosin_i18n "date_start_weekday" >}}, den {{< cosin "date_start_day" >}}. {{< cosin_i18n "date_start_month" >}} bis
|
<!--
|
||||||
{{< cosin_i18n "date_end_weekday" >}}, den {{< cosin "date_end_day" >}}. {{< cosin_i18n "date_end_month" >}} {{< cosin "date_year" >}}
|
Die CoSin {{< cosin "date_year" >}} findet leider nicht statt!
|
||||||
{{< cosin_i18n "location_name_preposition" >}} [{{< cosin_i18n "location_name" >}}]({{< cosin "location_url" >}}) in {{< cosin_i18n "location_city" >}}
|
-->
|
||||||
statt.
|
|
||||||
|
|
||||||
## Wie kann ich mich beteiligen?
|
## Wie kann ich mich beteiligen?
|
||||||
|
|
||||||
Wir freuen uns auf Eure Beiträge zur diesjährigen CoSin, seien es
|
Hast du Erfahrung mit einem coolen Thema? Ein cooles Projekt am Köcheln? Eine interessante Idee zum Diskutieren? Dann rede drüber.
|
||||||
spannende Vorträge, interessante Workshops, zum Nachdenken anregende
|
|
||||||
Filmvorführungen, beeindruckende Demos, Vereinsversammlungen,
|
|
||||||
Projekttreffen, Gaming Competitions, Diskussionsrunden zu
|
|
||||||
gesellschaftskritischen Themen oder Zubereitungen geekiger Speisen
|
|
||||||
oder Getränken, oder ganz andere Beitragsformen, an die wir noch gar
|
|
||||||
nicht gedacht haben.
|
|
||||||
|
|
||||||
Auch wenn Du keinen Beitrag zum offiziellen Fahrplan einsenden willst,
|
Halte einen Vortrag, veranstalte einen Workshop, organisier einen Filmeabend. Tu' Gutes und red' drüber, zeig' wie man bestimmte Dinge baut oder unübliche Nutzungen ander Dinge! Am CoSin sind wir für (fast) alles offen! Schreib' uns doch mit Deiner Idee für einen Zeitslot. Die Themenbereiche können genau so vielfältig sein wie die Leute, die teilnehmen.
|
||||||
komm einfach mit Deinem Projekt und diskutiere mit anderen Teilnehmern
|
|
||||||
darüber, führe es vor, entwickle es weiter, egal, ob es dazu einen
|
|
||||||
Lötkolben, 3D-Drucker, Laser-Cutter oder einfach nur 'n Rechner
|
|
||||||
braucht.
|
|
||||||
|
|
||||||
Oder komm einfach nur als Besucher und schau, was die anderen so
|
Und auch wenn du keine offizielle Veranstaltung machst, bist du trotzdem herzlich eingeladen, dein Projekt mitzubringen. Entwickle es weiter, diskutiere mit andern Teilnehmern oder stell es aus!
|
||||||
machen, diskutier' mit, grillier' mit und hab' einfach Spass.
|
|
||||||
|
Oder komm einfach nur als Besucher und schau, was die anderen so machen, diskutier' mit, grillier' mit und hab' einfach Spass.
|
||||||
|
|
||||||
## Wo konkret kann ich meinen Beitrag einreichen?
|
## Wo konkret kann ich meinen Beitrag einreichen?
|
||||||
|
|
||||||
Zur Organisation von Beiträgen verwenden wir das
|
Zur Organisation von Beiträgen verwenden wir das Pretalx.
|
||||||
Frab-Event-Organisationssystem des CCC. Deinen Beitrag kannst Du über
|
|
||||||
[unsere Frab-Seite]({{< cosin "cfp_url" >}}) einreichen.
|
|
||||||
|
|
||||||
Einreicheschluss ist am **{{<cosin_i18n "cfp_end_date_weekday" >}},
|
{{< cfp >}}
|
||||||
{{< cosin "cfp_end_date_day" >}}. {{< cosin_i18n "cfp_end_date_month" >}} {{< cosin "date_year" >}}.**
|
|
||||||
|
|
||||||
## Wuah: Ich habe noch Fragen!
|
## Wuah: Ich habe noch Fragen!
|
||||||
|
|
||||||
Kein Problem: Melde Dich unter [{{< cosin "orga_email" >}}](mailto:{{< cosin "orga_email" >}}).
|
Kein Problem: Melde Dich bei der [Orga](mailto:{{< cosin "orga_email" >}}).
|
||||||
|
|
|
@ -5,50 +5,33 @@ menu:
|
||||||
main:
|
main:
|
||||||
weight: 300
|
weight: 300
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
## Chaos Singularity {{< cosin "date_year" >}} - Call For Participation (CfP) {#chaos-singularity-call-for-participation}
|
## Chaos Singularity {{< cosin "date_year" >}} - Call For Participation (CfP) {#chaos-singularity-call-for-participation}
|
||||||
|
|
||||||
Chaos Singularity (short CoSin) is an annually Swiss congress of the
|
Chaos Singularity (short CoSin) is an annually Swiss congress of the [Chaos Computer Clubs Switzerland (CCC-CH)](https://www.ccc-ch.ch/).
|
||||||
[Chaos Computer Clubs Switzerland (CCC-CH)](https://www.ccc-ch.ch/).
|
|
||||||
|
|
||||||
As every year technology enthusiastic and Internet policy interested hackers
|
As every year technology enthusiastic and Internet policy interested hackers and geeks from Switzerland and neighboring regions meet to exchange ideas, learn new stuff and have fun.
|
||||||
and geeks from Switzerland and neighboring regions meet to exchange ideas,
|
|
||||||
learn new stuff and have fun.
|
|
||||||
|
|
||||||
## When and Where is CoSin?
|
## When and Where is CoSin?
|
||||||
|
|
||||||
This year's CoSin takes place from
|
This year's CoSin takes place from {{< cosin_i18n "date_start_weekday" >}}, {{< cosin_i18n "date_start_month" >}} {{< cosin_humanize "date_start_day" >}} until {{< cosin_i18n "date_end_weekday" >}}, {{< cosin_i18n "date_end_month" >}} {{< cosin_humanize "date_end_day" >}} {{< cosin "date_year" >}} {{< cosin_i18n "location_name_preposition" >}} [{{< cosin_i18n "location_name" >}}]({{< cosin "location_url" >}}) in {{< cosin_i18n "location_city" >}}.
|
||||||
{{< cosin_i18n "date_start_weekday" >}}, {{< cosin_i18n "date_start_month" >}} {{< cosin_humanize "date_start_day" >}} until
|
<!--
|
||||||
{{< cosin_i18n "date_end_weekday" >}}, {{< cosin_i18n "date_end_month" >}} {{< cosin_humanize "date_end_day" >}}
|
The CoSin {{< cosin "date_year" >}} is cancelled!
|
||||||
{{< cosin "date_year" >}}
|
-->
|
||||||
{{< cosin_i18n "location_name_preposition" >}} [{{< cosin_i18n "location_name" >}}]({{< cosin "location_url" >}}) in {{< cosin_i18n "location_city" >}}.
|
|
||||||
|
|
||||||
## How can I get involved?
|
## How can I get involved?
|
||||||
|
|
||||||
We are happy to get you involved for this year's CoSin. Being it thrilling
|
We are happy to get you involved for this year's CoSin. Being it thrilling talks, interesting hands-on workshops, thought-provoking movie screenings, astonishing demos, general assemblies, project meetings, gaming competitions, critical of society debating groups, discussions about geeky drinks and food or any other form of participation, we are open to (almost) anything.
|
||||||
talks, interesting hands-on workshops, thought-provoking movie screenings,
|
|
||||||
astonishing demos, general assemblies, project meetings, gaming competitions,
|
|
||||||
critical of society debating groups, discussions about geeky drinks and food or
|
|
||||||
any other form of participation, we are open to anything.
|
|
||||||
|
|
||||||
Even if you don't plan to submit a contribution to the official schedule
|
Even if you don't plan to submit a contribution to the official schedule (Fahrplan), you are more than welcome to just attend with your project and have discussions about it with other participants, present it and work on it. It doesn't matter if you will bring a soldering iron, a 3D printer, a laser cutter or just a computer.
|
||||||
(Fahrplan), you are more than welcome to just attend with your project and have
|
|
||||||
discussions about it with other participants, present it and work on it. It
|
|
||||||
doesn't matter if you will bring a soldering iron, a 3D printer, a laser cutter
|
|
||||||
or just a computer.
|
|
||||||
|
|
||||||
Or just attend as a visitor, look around what others do, get involved in
|
Or just attend as a visitor, look around what others do, get involved in discussions, have a drink and just have fun.
|
||||||
discussions, have a drink and just have fun.
|
|
||||||
|
|
||||||
## Where exactly can I submit my contribution?
|
## Where exactly can I submit my contribution?
|
||||||
|
|
||||||
For organizing contributions we use the Frab event organization system from the
|
For organizing contributions we use Pretalx. You can submit your entry at our Pretalx.
|
||||||
CCC. You can submit your entry at [our Frab page]({{< cosin "cfp_url" >}}).
|
|
||||||
|
|
||||||
The deadline is **{{<cosin_i18n "cfp_end_date_weekday" >}},
|
{{< cfp >}}
|
||||||
{{< cosin_humanize "cfp_end_date_day" >}} {{< cosin_i18n "cfp_end_date_month" >}} {{< cosin "date_year" >}}.**
|
|
||||||
|
|
||||||
## Whoa! I still have questions!
|
## Whoa! I still have questions!
|
||||||
|
|
||||||
No problem: Just write to [{{< cosin "orga_email" >}}](mailto:{{< cosin "orga_email" >}}).
|
No problem: Just write to the [Orga](mailto:{{< cosin "orga_email" >}}).
|
||||||
|
|
|
@ -5,55 +5,33 @@ menu:
|
||||||
main:
|
main:
|
||||||
weight: 300
|
weight: 300
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
## Chaos Singularity {{< cosin "date_year" >}} - Call For Participation (CfP) {#chaos-singularity-call-for-participation}
|
## Chaos Singularity {{< cosin "date_year" >}} - Call For Participation (CfP) {#chaos-singularity-call-for-participation}
|
||||||
|
|
||||||
La Chaos Singularity (en bref CoSin) est le congrès annuelle du [Chaos
|
La Chaos Singularity (en bref CoSin) est le congrès annuelle du [Chaos Computer Club Suisse](https://www.ccc-ch.ch/) — un mix de congrès technico-social, de rencontres créatives et de réunions de famille de hackers.
|
||||||
Computer Club Suisse](https://www.ccc-ch.ch/).
|
|
||||||
|
|
||||||
Cette année à nouveau, les geeks et hackers de Suisse et des régions
|
Cette année à nouveau, les geeks et hackers de Suisse et des régions alentours se retrouveront lors d'un week-end de juin afin d'échanger leurs expériences, rencontrer du monde et prendre du plaisir - et pas seulement sur leur machines!
|
||||||
alentours se retrouveront lors d'un week-end de juin afin d'échanger
|
|
||||||
leurs expériences, rencontrer du monde et prendre du plaisir - et pas
|
|
||||||
seulement sur leur machines !
|
|
||||||
|
|
||||||
## Quand et où le CoSin aura lieu ?
|
## Quand et où le CoSin aura lieu?
|
||||||
|
|
||||||
Cette année le CoSin aura lieu du
|
Cette année le CoSin aura lieu du {{< cosin_i18n "date_start_weekday" >}} {{< cosin "date_start_day" >}} {{< cosin_i18n "date_start_month" >}} au {{< cosin_i18n "date_end_weekday" >}} {{< cosin "date_end_day" >}} {{< cosin_i18n "date_end_month" >}} {{< cosin "date_year" >}} {{< cosin_i18n "location_name_preposition" >}} [{{< cosin_i18n "location_name" >}}]({{< cosin "location_url" >}}) à {{< cosin_i18n "location_city" >}}.
|
||||||
{{< cosin_i18n "date_start_weekday" >}} {{< cosin "date_start_day" >}} {{< cosin_i18n "date_start_month" >}} au
|
<!--
|
||||||
{{< cosin_i18n "date_end_weekday" >}} {{< cosin "date_end_day" >}} {{< cosin_i18n "date_end_month" >}} {{< cosin "date_year" >}}
|
La CoSin {{< cosin "date_year" >}} est annulé!
|
||||||
{{< cosin_i18n "location_name_preposition" >}} [{{< cosin_i18n "location_name" >}}]({{< cosin "location_url" >}}) à {{< cosin_i18n "location_city" >}}.
|
-->
|
||||||
|
|
||||||
## Comment est-ce que je participe ?
|
## Comment est-ce que je participe?
|
||||||
|
|
||||||
Nous nous réjouissons de vos contributions, que ce soient de
|
Nous nous réjouissons de vos contributions, que ce soient de passionnantes présentations, d'intéressants ateliers, des films qui suscitent à la réflexion, d'impressionnantes démos, les réunions du club, des réunions de projet, des tournoi des jeux vidéo, des discussions sur des sujets socio-critiques ou de la préparation de plats ou de boissons geeks. Et si vous avez une contribution complètement différente à laquelle nous n'avons pas pensé, elle sera aussi la bienvenue!
|
||||||
passionnantes présentations, d'intéressants ateliers, des films qui
|
|
||||||
suscitent à la réflexion, d'impressionnantes démos, les réunions du
|
|
||||||
club, des réunions de projet, des tournoi des jeux vidéo, des
|
|
||||||
discussions sur des sujets socio-critiques ou de la préparation de
|
|
||||||
plats ou de boissons geeks. Et si vous avez une contribution
|
|
||||||
complètement différente à laquelle nous n'avons pas pensé, elle sera
|
|
||||||
aussi la bienvenue !
|
|
||||||
|
|
||||||
Même si tu ne veux pas apparaître dans le programme officiel, n'hésite
|
Même si tu ne veux pas apparaître dans le programme officiel, n'hésite pas à venir avec ton projet pour en discuter avec les personnes présentes. Tu trouveras à ta disposition des fers à souder, une imprimante 3D, une machine de découpe laser et des ordinateurs.
|
||||||
pas à venir avec ton projet pour en discuter avec les personnes
|
|
||||||
présentes. Tu trouveras à ta disposition des fers à souder, une
|
|
||||||
imprimante 3D, une machine de découpe laser et des ordinateurs.
|
|
||||||
|
|
||||||
Bien évidemment, tu es aussi le bienvenue en tant que simple visiteur
|
Bien évidemment, tu es aussi le bienvenue en tant que simple visiteur pour observer discuter, griller et s'amuser avec tout le monde.
|
||||||
pour observer discuter, griller et s'amuser avec tout le monde.
|
|
||||||
|
|
||||||
## Où puis-je concrètement soumettre ma contribution?
|
## Où puis-je concrètement soumettre ma contribution?
|
||||||
|
|
||||||
Pour l’organisation du congrès, nous employons le frab - conference
|
Pour l’organisation du congrès, nous employons le Pretalx.
|
||||||
management system du CCC. Tu peux créer un compte et soumettre tes
|
|
||||||
idées à l’adresse suivante: [Frab]({{< cosin "cfp_url" >}}).
|
|
||||||
|
|
||||||
Einreicheschluss ist am **{{<cosin_i18n "cfp_end_date_weekday" >}},
|
{{< cfp >}}
|
||||||
{{< cosin "cfp_end_date_day" >}}. {{< cosin_i18n "cfp_end_date_month" >}} {{< cosin "date_year" >}}.**
|
|
||||||
|
|
||||||
## Wouah: J’ai encore des questions!
|
## Wouah: J’ai encore des questions!
|
||||||
|
|
||||||
Pas de problème: Adresse-toi auprès de
|
Pas de problème: Adresse-toi auprès de [Orga](mailto:{{< cosin "orga_email" >}}) des personnes du CoSin-Orga t’aideront à t’investir avec plaisir.
|
||||||
[{{< cosin "orga_email" >}}](mailto:{{< cosin "orga_email" >}})
|
|
||||||
des personnes du CoSin-Orga t’aideront à t’investir avec plaisir.
|
|
||||||
|
|
|
@ -5,50 +5,33 @@ menu:
|
||||||
main:
|
main:
|
||||||
weight: 300
|
weight: 300
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
## Chaos Singularity {{< cosin "date_year" >}} - Call For Participation (CfP) {#chaos-singularity-call-for-participation}
|
## Chaos Singularity {{< cosin "date_year" >}} - Call For Participation (CfP) {#chaos-singularity-call-for-participation}
|
||||||
|
|
||||||
La Chaos Singularity (in breve CoSin) è l'evento svizzero annuale del
|
La Chaos Singularity (in breve CoSin) è l'evento svizzero annuale del [Chaos Computer Clubs Svizzera (CCC-CH)](https://www.ccc-ch.ch/).
|
||||||
[Chaos Computer Clubs Svizzera (CCC-CH)](https://www.ccc-ch.ch/).
|
|
||||||
|
|
||||||
Anche quest'anno in giugno si incontreranno hacker e geeks entusiasti della tecnologia
|
Anche quest'anno in giugno si incontreranno hacker e geeks entusiasti della tecnologia e attivi in politica in materia di reti. Provenienti della svizzera e le regioni circostanti si incontreranno per scambiarsi le idee, apprendere le ultime novità, e per divertimento, non solo al computer.
|
||||||
e attivi in politica in materia di reti. Provenienti della svizzera e le regioni circostanti
|
|
||||||
si incontreranno per scambiarsi le idee, apprendere le ultime novità, e per divertimento, non
|
|
||||||
solo al computer.
|
|
||||||
|
|
||||||
## Quando e dove si svolge la CoSin?
|
## Quando e dove si svolge la CoSin?
|
||||||
|
|
||||||
Quest'anno la CoSin si svolge da
|
Quest'anno la CoSin si svolge da {{< cosin_i18n "date_start_weekday" >}} {{< cosin "date_start_day" >}}. {{< cosin_i18n "date_start_month" >}} fino a {{< cosin_i18n "date_end_weekday" >}} {{< cosin "date_end_day" >}}. {{< cosin_i18n "date_end_month" >}} {{< cosin "date_year" >}}, {{< cosin_i18n "location_name_preposition" >}} [{{< cosin_i18n "location_name" >}}]({{< cosin "location_url" >}}) a {{< cosin_i18n "location_city" >}}.
|
||||||
{{< cosin_i18n "date_start_weekday" >}} {{< cosin "date_start_day" >}}. {{< cosin_i18n "date_start_month" >}} fino a
|
<!--
|
||||||
{{< cosin_i18n "date_end_weekday" >}} {{< cosin "date_end_day" >}}. {{< cosin_i18n "date_end_month" >}} {{< cosin "date_year" >}},
|
La CoSin {{< cosin "date_year" >}} è annullato!
|
||||||
{{< cosin_i18n "location_name_preposition" >}} [{{< cosin_i18n "location_name" >}}]({{< cosin "location_url" >}}) a {{< cosin_i18n "location_city" >}}.
|
-->
|
||||||
|
|
||||||
## Come posso contribuire?
|
## Come posso contribuire?
|
||||||
|
|
||||||
Siamo grati per ogni vostro contributo, siano presentazioni interessanti, workshops,
|
Siamo grati per ogni vostro contributo, siano presentazioni interessanti, workshops, la mostra di film che inducono a riflettere, Demos impressionanti, assemblee generali, progetti, competizioni di giochi elettronici, discussioni e podi su aspetti sociali, o esperimenti culinari e bevande da geeks o forme di intrattenimento a cui non abbiamo ancora neanche pensato.
|
||||||
la mostra di film che inducono a riflettere, Demos impressionanti, assemblee generali,
|
|
||||||
progetti, competizioni di giochi elettronici, discussioni e podi su aspetti sociali,
|
|
||||||
o esperimenti culinari e bevande da geeks o forme di intrattenimento a cui non
|
|
||||||
abbiamo ancora neanche pensato.
|
|
||||||
|
|
||||||
Anche se non vuoi contribuire alla nostra "tabella di marcia" ufficiale, puoi comunque
|
Anche se non vuoi contribuire alla nostra "tabella di marcia" ufficiale, puoi comunque portare il tuo progetto, e discuterne con chi si mostra interessato, e dimostralo, sviluppalo; indipendentemente se ti serve un saldatore, una stampante 3D, un laser-cutter o semplicemente un computer.
|
||||||
portare il tuo progetto, e discuterne con chi si mostra interessato, e dimostralo, sviluppalo;
|
|
||||||
indipendentemente se ti serve un saldatore, una stampante 3D, un laser-cutter o semplicemente
|
|
||||||
un computer.
|
|
||||||
|
|
||||||
O raggiungici semplicemente come visitatore e guarda, cosa fanno gli altri, parla, discuti,
|
O raggiungici semplicemente come visitatore e guarda, cosa fanno gli altri, parla, discuti, cuoci del cibo sulla griglia con gli altri e divertiti.
|
||||||
cuoci del cibo sulla griglia con gli altri e divertiti.
|
|
||||||
|
|
||||||
## Dove esattamente posso registrare il mio contributo?
|
## Dove esattamente posso registrare il mio contributo?
|
||||||
|
|
||||||
Per l'organizzazione usiamo la nostra istanza svizzera del sistema di organizzazione
|
Per l'organizzazione usiamo Pretalx.
|
||||||
per eventi del CCC (Frab). Chiediamo dunque gentilmente di registrare il tuo contributo
|
|
||||||
[sul nostro Frab]({{< cosin "cfp_url" >}}).
|
|
||||||
|
|
||||||
Einreicheschluss ist am **{{<cosin_i18n "cfp_end_date_weekday" >}},
|
{{< cfp >}}
|
||||||
{{< cosin "cfp_end_date_day" >}}. {{< cosin_i18n "cfp_end_date_month" >}} {{< cosin "date_year" >}}.**
|
|
||||||
|
|
||||||
## Eh ma... non avete risposto alla mia domanda!
|
## Eh ma... non avete risposto alla mia domanda!
|
||||||
|
|
||||||
Nessun problema: Scrivici a [{{< cosin "orga_email" >}}](mailto:{{< cosin "orga_email" >}}).
|
Nessun problema: Scrivici a [Orga](mailto:{{< cosin "orga_email" >}}).
|
||||||
|
|
|
@ -5,27 +5,29 @@ menu:
|
||||||
main:
|
main:
|
||||||
weight: 500
|
weight: 500
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
## Fahrplan {{< cosin "date_year" >}} {#chaos-singularity-current-schedule}
|
## Fahrplan {{< cosin "date_year" >}} {#chaos-singularity-current-schedule}
|
||||||
|
|
||||||
{{< schedule >}}
|
{{< schedule >}}
|
||||||
|
<!--
|
||||||
|
Die CoSin {{< cosin "date_year" >}} findet leider nicht statt!
|
||||||
|
-->
|
||||||
|
|
||||||
## Ältere Fahrpläne
|
## Ältere Fahrpläne
|
||||||
|
|
||||||
![Infoscreen](/images/fahrplan.jpg "Infoscreen am Cosin 2017")
|
![Infoscreen](/pictures/fahrplan.jpg "Infoscreen an der CoSin 2017")
|
||||||
|
|
||||||
* [Cosin 2018](https://www.cosin.ch/fahrplan/2018/index.html)
|
* [CoSin 2024](https://fahrplan.cosin.ch/fahrplan/2024/index.html)
|
||||||
* [Cosin 2017](https://www.cosin.ch/fahrplan/2017/index.html)
|
* [CoSin 2023](https://fahrplan.cosin.ch/fahrplan/2023/index.html)
|
||||||
* [Cosin 2016](https://www.cosin.ch/fahrplan/2016/index.html)
|
* [CoSin 2019](https://fahrplan.cosin.ch/fahrplan/2019/index.html)
|
||||||
* [Cosin 2015](https://www.cosin.ch/fahrplan/2015/index.html)
|
* [CoSin 2018](https://fahrplan.cosin.ch/fahrplan/2018/index.html)
|
||||||
* [Cosin 2014](https://www.cosin.ch/fahrplan/2014/index.html)
|
* [CoSin 2017](https://fahrplan.cosin.ch/fahrplan/2017/index.html)
|
||||||
* [Cosin 2013](https://www.cosin.ch/fahrplan/2013/index.html)
|
* [CoSin 2016](https://fahrplan.cosin.ch/fahrplan/2016/index.html)
|
||||||
* [Cosin 2011](https://www.cosin.ch/fahrplan/2011/index.html)
|
* [CoSin 2015](https://fahrplan.cosin.ch/fahrplan/2015/index.html)
|
||||||
* [Cosin 2010](https://www.cosin.ch/fahrplan/2010/fahrplan.html)
|
* [CoSin 2014](https://fahrplan.cosin.ch/fahrplan/2014/index.html)
|
||||||
* [Cosin 2009](https://www.cosin.ch/fahrplan/2009/index.html)
|
* [CoSin 2013](https://fahrplan.cosin.ch/fahrplan/2013/index.html)
|
||||||
* [Cosin 2008](https://www.cosin.ch/fahrplan/2008/index.de.html)
|
* [CoSin 2011](https://fahrplan.cosin.ch/fahrplan/2011/index.html)
|
||||||
* [Cosin 2007](https://www.cosin.ch/fahrplan/2007/index.de.html)
|
* [CoSin 2010](https://fahrplan.cosin.ch/fahrplan/2010/fahrplan.html)
|
||||||
* [Cosin 2006](https://wiki.chaostreff.ch/Cosin_Fahrplan)
|
* [CoSin 2009](https://fahrplan.cosin.ch/fahrplan/2009/index.html)
|
||||||
|
* [CoSin 2008](https://fahrplan.cosin.ch/fahrplan/2008/index.de.html)
|
||||||
[1]: https://frab.cosin.ch/
|
* [CoSin 2007](https://fahrplan.cosin.ch/fahrplan/2007/index.de.html)
|
||||||
|
* [CoSin 2006](https://wiki.chaostreff.ch/index.php/Cosin_Fahrplan)
|
||||||
|
|
|
@ -5,27 +5,29 @@ menu:
|
||||||
main:
|
main:
|
||||||
weight: 500
|
weight: 500
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
## Schedule {{< cosin "date_year" >}} {#chaos-singularity-current-schedule}
|
## Schedule {{< cosin "date_year" >}} {#chaos-singularity-current-schedule}
|
||||||
|
|
||||||
{{< schedule >}}
|
{{< schedule >}}
|
||||||
|
<!--
|
||||||
|
The CoSin {{< cosin "date_year" >}} is cancelled!
|
||||||
|
-->
|
||||||
|
|
||||||
## Older schedules
|
## Older schedules
|
||||||
|
|
||||||
![Infoscreen](/images/fahrplan.jpg "Infoscreen at Cosin 2017")
|
![Infoscreen](/pictures/fahrplan.jpg "Infoscreen at CoSin 2017")
|
||||||
|
|
||||||
* [Cosin 2018](https://www.cosin.ch/fahrplan/2018/index.html)
|
* [CoSin 2024](https://fahrplan.cosin.ch/fahrplan/2024/index.html)
|
||||||
* [Cosin 2017](https://www.cosin.ch/fahrplan/2017/index.html)
|
* [CoSin 2023](https://fahrplan.cosin.ch/fahrplan/2023/index.html)
|
||||||
* [Cosin 2016](https://www.cosin.ch/fahrplan/2016/index.html)
|
* [CoSin 2019](https://fahrplan.cosin.ch/fahrplan/2019/index.html)
|
||||||
* [Cosin 2015](https://www.cosin.ch/fahrplan/2015/index.html)
|
* [CoSin 2018](https://fahrplan.cosin.ch/fahrplan/2018/index.html)
|
||||||
* [Cosin 2014](https://www.cosin.ch/fahrplan/2014/index.html)
|
* [CoSin 2017](https://fahrplan.cosin.ch/fahrplan/2017/index.html)
|
||||||
* [Cosin 2013](https://www.cosin.ch/fahrplan/2013/index.html)
|
* [CoSin 2016](https://fahrplan.cosin.ch/fahrplan/2016/index.html)
|
||||||
* [Cosin 2011](https://www.cosin.ch/fahrplan/2011/index.html)
|
* [CoSin 2015](https://fahrplan.cosin.ch/fahrplan/2015/index.html)
|
||||||
* [Cosin 2010](https://www.cosin.ch/fahrplan/2010/fahrplan.html)
|
* [CoSin 2014](https://fahrplan.cosin.ch/fahrplan/2014/index.html)
|
||||||
* [Cosin 2009](https://www.cosin.ch/fahrplan/2009/index.html)
|
* [CoSin 2013](https://fahrplan.cosin.ch/fahrplan/2013/index.html)
|
||||||
* [Cosin 2008](https://www.cosin.ch/fahrplan/2008/index.de.html)
|
* [CoSin 2011](https://fahrplan.cosin.ch/fahrplan/2011/index.html)
|
||||||
* [Cosin 2007](https://www.cosin.ch/fahrplan/2007/index.de.html)
|
* [CoSin 2010](https://fahrplan.cosin.ch/fahrplan/2010/fahrplan.html)
|
||||||
* [Cosin 2006](https://wiki.chaostreff.ch/Cosin_Fahrplan)
|
* [CoSin 2009](https://fahrplan.cosin.ch/fahrplan/2009/index.html)
|
||||||
|
* [CoSin 2008](https://fahrplan.cosin.ch/fahrplan/2008/index.de.html)
|
||||||
[1]: https://frab.cosin.ch/
|
* [CoSin 2007](https://fahrplan.cosin.ch/fahrplan/2007/index.de.html)
|
||||||
|
* [CoSin 2006](https://wiki.chaostreff.ch/index.php/Cosin_Fahrplan)
|
||||||
|
|
|
@ -5,27 +5,29 @@ menu:
|
||||||
main:
|
main:
|
||||||
weight: 500
|
weight: 500
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
## Programme {{< cosin "date_year" >}} {#chaos-singularity-current-schedule}
|
## Programme {{< cosin "date_year" >}} {#chaos-singularity-current-schedule}
|
||||||
|
|
||||||
{{< schedule >}}
|
{{< schedule >}}
|
||||||
|
<!--
|
||||||
|
La CoSin {{< cosin "date_year" >}} est annulé!
|
||||||
|
-->
|
||||||
|
|
||||||
## Anciens programmes
|
## Anciens programmes
|
||||||
|
|
||||||
![Infoscreen](/images/fahrplan.jpg "Infoscreen am Cosin 2017")
|
![Infoscreen](/pictures/fahrplan.jpg "Écran d'information à la CoSin 2017")
|
||||||
|
|
||||||
* [Cosin 2018](https://www.cosin.ch/fahrplan/2018/index.html)
|
* [CoSin 2024](https://fahrplan.cosin.ch/fahrplan/2024/index.html)
|
||||||
* [Cosin 2017](https://www.cosin.ch/fahrplan/2017/index.html)
|
* [CoSin 2023](https://fahrplan.cosin.ch/fahrplan/2023/index.html)
|
||||||
* [Cosin 2016](https://www.cosin.ch/fahrplan/2016/index.html)
|
* [CoSin 2019](https://fahrplan.cosin.ch/fahrplan/2019/index.html)
|
||||||
* [Cosin 2015](https://www.cosin.ch/fahrplan/2015/index.html)
|
* [CoSin 2018](https://fahrplan.cosin.ch/fahrplan/2018/index.html)
|
||||||
* [Cosin 2014](https://www.cosin.ch/fahrplan/2014/index.html)
|
* [CoSin 2017](https://fahrplan.cosin.ch/fahrplan/2017/index.html)
|
||||||
* [Cosin 2013](https://www.cosin.ch/fahrplan/2013/index.html)
|
* [CoSin 2016](https://fahrplan.cosin.ch/fahrplan/2016/index.html)
|
||||||
* [Cosin 2011](https://www.cosin.ch/fahrplan/2011/index.html)
|
* [CoSin 2015](https://fahrplan.cosin.ch/fahrplan/2015/index.html)
|
||||||
* [Cosin 2010](https://www.cosin.ch/fahrplan/2010/fahrplan.html)
|
* [CoSin 2014](https://fahrplan.cosin.ch/fahrplan/2014/index.html)
|
||||||
* [Cosin 2009](https://www.cosin.ch/fahrplan/2009/index.html)
|
* [CoSin 2013](https://fahrplan.cosin.ch/fahrplan/2013/index.html)
|
||||||
* [Cosin 2008](https://www.cosin.ch/fahrplan/2008/index.de.html)
|
* [CoSin 2011](https://fahrplan.cosin.ch/fahrplan/2011/index.html)
|
||||||
* [Cosin 2007](https://www.cosin.ch/fahrplan/2007/index.de.html)
|
* [CoSin 2010](https://fahrplan.cosin.ch/fahrplan/2010/fahrplan.html)
|
||||||
* [Cosin 2006](https://wiki.chaostreff.ch/Cosin_Fahrplan)
|
* [CoSin 2009](https://fahrplan.cosin.ch/fahrplan/2009/index.html)
|
||||||
|
* [CoSin 2008](https://fahrplan.cosin.ch/fahrplan/2008/index.de.html)
|
||||||
[1]: https://frab.cosin.ch/
|
* [CoSin 2007](https://fahrplan.cosin.ch/fahrplan/2007/index.de.html)
|
||||||
|
* [CoSin 2006](https://wiki.chaostreff.ch/index.php/Cosin_Fahrplan)
|
||||||
|
|
|
@ -5,27 +5,29 @@ menu:
|
||||||
main:
|
main:
|
||||||
weight: 500
|
weight: 500
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
## Tabella di marcia {{< cosin "date_year" >}} {#chaos-singularity-current-schedule}
|
## Tabella di marcia {{< cosin "date_year" >}} {#chaos-singularity-current-schedule}
|
||||||
|
|
||||||
{{< schedule >}}
|
{{< schedule >}}
|
||||||
|
<!--
|
||||||
|
La CoSin {{< cosin "date_year" >}} è annullato!
|
||||||
|
-->
|
||||||
|
|
||||||
## Tabelle di marcia precedenti
|
## Tabelle di marcia precedenti
|
||||||
|
|
||||||
![Infoscreen](/images/fahrplan.jpg "Infoscreen della Cosin 2017")
|
![Infoscreen](/pictures/fahrplan.jpg "Infoscreen della CoSin 2017")
|
||||||
|
|
||||||
* [Cosin 2018](https://www.cosin.ch/fahrplan/2018/index.html)
|
* [CoSin 2024](https://fahrplan.cosin.ch/fahrplan/2024/index.html)
|
||||||
* [Cosin 2017](https://www.cosin.ch/fahrplan/2017/index.html)
|
* [CoSin 2023](https://fahrplan.cosin.ch/fahrplan/2023/index.html)
|
||||||
* [Cosin 2016](https://www.cosin.ch/fahrplan/2016/index.html)
|
* [CoSin 2019](https://fahrplan.cosin.ch/fahrplan/2019/index.html)
|
||||||
* [Cosin 2015](https://www.cosin.ch/fahrplan/2015/index.html)
|
* [CoSin 2018](https://fahrplan.cosin.ch/fahrplan/2018/index.html)
|
||||||
* [Cosin 2014](https://www.cosin.ch/fahrplan/2014/index.html)
|
* [CoSin 2017](https://fahrplan.cosin.ch/fahrplan/2017/index.html)
|
||||||
* [Cosin 2013](https://www.cosin.ch/fahrplan/2013/index.html)
|
* [CoSin 2016](https://fahrplan.cosin.ch/fahrplan/2016/index.html)
|
||||||
* [Cosin 2011](https://www.cosin.ch/fahrplan/2011/index.html)
|
* [CoSin 2015](https://fahrplan.cosin.ch/fahrplan/2015/index.html)
|
||||||
* [Cosin 2010](https://www.cosin.ch/fahrplan/2010/fahrplan.html)
|
* [CoSin 2014](https://fahrplan.cosin.ch/fahrplan/2014/index.html)
|
||||||
* [Cosin 2009](https://www.cosin.ch/fahrplan/2009/index.html)
|
* [CoSin 2013](https://fahrplan.cosin.ch/fahrplan/2013/index.html)
|
||||||
* [Cosin 2008](https://www.cosin.ch/fahrplan/2008/index.de.html)
|
* [CoSin 2011](https://fahrplan.cosin.ch/fahrplan/2011/index.html)
|
||||||
* [Cosin 2007](https://www.cosin.ch/fahrplan/2007/index.de.html)
|
* [CoSin 2010](https://fahrplan.cosin.ch/fahrplan/2010/fahrplan.html)
|
||||||
* [Cosin 2006](https://wiki.chaostreff.ch/Cosin_Fahrplan)
|
* [CoSin 2009](https://fahrplan.cosin.ch/fahrplan/2009/index.html)
|
||||||
|
* [CoSin 2008](https://fahrplan.cosin.ch/fahrplan/2008/index.de.html)
|
||||||
[1]: https://frab.cosin.ch/
|
* [CoSin 2007](https://fahrplan.cosin.ch/fahrplan/2007/index.de.html)
|
||||||
|
* [CoSin 2006](https://wiki.chaostreff.ch/index.php/Cosin_Fahrplan)
|
||||||
|
|
|
@ -5,82 +5,60 @@ menu:
|
||||||
main:
|
main:
|
||||||
weight: 100
|
weight: 100
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
## Datum
|
## Datum
|
||||||
|
|
||||||
Das CoSin {{< cosin "date_year" >}} findet vom
|
Die CoSin {{< cosin "date_year" >}} findet vom {{< cosin_i18n "date_start_weekday" >}}, den {{< cosin "date_start_day" >}}. {{< cosin_i18n "date_start_month" >}} bis zum {{< cosin_i18n "date_end_weekday" >}}, den {{< cosin "date_end_day" >}}. {{< cosin_i18n "date_end_month" >}} {{< cosin "date_year" >}} statt.
|
||||||
{{< cosin_i18n "date_start_weekday" >}}, den {{< cosin "date_start_day" >}}. {{< cosin_i18n "date_start_month" >}} bis zum
|
<!--
|
||||||
{{< cosin_i18n "date_end_weekday" >}}, den {{< cosin "date_end_day" >}}. {{< cosin_i18n "date_end_month" >}} {{< cosin "date_year" >}}
|
Die CoSin {{< cosin "date_year" >}} findet leider nicht statt!
|
||||||
statt.
|
-->
|
||||||
|
|
||||||
## Kosten
|
## Kosten
|
||||||
|
|
||||||
Das CoSin ist nicht gewinnorientiert, doch es wird zur Kostendeckung
|
Die CoSin ist nicht gewinnorientiert, es wird aber ein kostendeckender Eintritt von {{< cosin "entrance_fee" >}} für alle drei Tage verlangt.
|
||||||
ein Eintritt von {{< cosin "entrance_fee" >}} für alle drei Tage verlangt.
|
|
||||||
|
Der Eintritt enthält alle vier Mahlzeiten (siehe unten). Bezahlen kannst du bar vor Ort, gleich beim Eingang.
|
||||||
|
|
||||||
## Anmeldung
|
## Anmeldung
|
||||||
|
|
||||||
Eine Anmeldung ist für den Event selbst nicht notwendig, zwecks
|
Anmeldung und Tickets für die CoSin gibt es online.
|
||||||
Materialbeschaffung aber für das Essen. Eine Email an
|
|
||||||
[{{< cosin "registration_email" >}}](mailto:{{< cosin "registration_email" >}})
|
{{< registration >}}
|
||||||
ist dafür hinreichend.
|
|
||||||
|
Eine Anmeldung ist nicht erforderlich, du kannst auch spontan vorbei kommen und trotzdem teilnehmen. Wir sind aber dankbar für alle Leute die sich frühzeitig anmelden. Die Anmeldungen helfen uns die Veranstaltung zu planen und adäquate Menge an Essen zuzubereiten.
|
||||||
|
|
||||||
## Essen
|
## Essen
|
||||||
|
|
||||||
Es gibt am Samstag und Sonntag für alle CoSin Besucher ein
|
Am Freitag und Samstag Abend gibt es für alle teilnehmenden Personen ein warmes Abendessen. Am Samstag und Sonntag Morgen steht ein Frühstück bereit. Die Kosten für alle Mahlzeiten sind im Eintrittspreis inbegriffen.
|
||||||
Frühstück. Das Frühstück ist im Eintrittspreis inbegriffen und
|
|
||||||
es ist keine Anmeldung erforderlich.
|
|
||||||
|
|
||||||
Sowohl am Freitag als auch am Samstag gibt es ein warmes Abendessen.
|
Bitte lass uns bei der Anmeldung wissen, ob du planst am Freitag zum Abendessen zu kommen.
|
||||||
Für beide ist eine Anmeldung per Email an
|
|
||||||
[{{< cosin "registration_email" >}}](mailto:{{< cosin "registration_email" >}})
|
|
||||||
notwendig.
|
|
||||||
Bitte erwähnt in der Email auch, wenn ihr Allergien habt oder euch
|
|
||||||
vegetarisch ernährt. Das Abendessen am Freitag ist im CoSin Eintritt
|
|
||||||
inbegriffen, für das Essen am Samstag fallen zusätzlich {{< cosin "food_fee" >}}
|
|
||||||
pro Person an.
|
|
||||||
|
|
||||||
Für diejenigen, die selbst etwas mitbringen wollen, wird am Samstag
|
Die Anmeldung beinhaltet auch ein Formular zur Angabe allfälliger Allergien oder Unverträglichkeiten sowie einer Vegetarischen oder Veganen Ernährung. Vor Ort versehen wir alle Speisen mit klaren Hinweisen.
|
||||||
Abend auch ein Grill bereit stehen.
|
|
||||||
|
Für diejenigen, die selbst etwas mitbringen wollen, wird am Samstag Abend auch ein Grill bereit stehen.
|
||||||
|
|
||||||
## Trinken
|
## Trinken
|
||||||
|
|
||||||
Lokales Bier und Mate können an der Kasse erworben werden.
|
Lokales Bier sowie Mate und Softgetränke können an der Kasse erworben werden.
|
||||||
|
|
||||||
## Schlafen
|
## Schlafen
|
||||||
|
|
||||||
Wer vor Ort übernachten möchte sollte eine Campingmatte und einen
|
Wer vor Ort übernachten möchte sollte eine Campingmatte und einen Schlafsack mitbringen.
|
||||||
Schlafsack mitbringen.
|
|
||||||
|
|
||||||
## Verschiedenes
|
## Verschiedenes
|
||||||
|
|
||||||
### Mitbringen von Computern
|
### Mitbringen von Computern
|
||||||
|
|
||||||
Das Mitbringen von Computern ist von unserer Seite her kein Problem -
|
Das Mitbringen von Computern ist von unserer Seite her kein Problem - die CoSin macht wohl sogar mehr Spass mit zumindest einem Laptop. Die Verantwortung für mitgebrachtes Material liegt aber vollständig bei den Besitzern. Da der Veranstaltungsort nur über begrenzte Stromversorgung verfügt ist es besser, den Supercomputer zu Hause zu lassen und statt dessen mit einem Notebook anzureisen.
|
||||||
das CoSin macht wohl sogar mehr Spass mit zumindest einem Laptop. Die
|
|
||||||
Verantwortung für mitgebrachtes Material liegt aber vollständig bei
|
|
||||||
den Besitzern. Da der Veranstaltungsort nur über begrenzte
|
|
||||||
Stromversorgung verfügt ist es besser, den Supercomputer zu Hause zu
|
|
||||||
lassen und statt dessen mit einem Notebook anzureisen.
|
|
||||||
|
|
||||||
![Computer](/images/computer.jpg "Ältere Computer an CoSin 2006.")
|
![Computer](/pictures/computer.jpg "Ältere Computer an CoSin 2006.")
|
||||||
|
|
||||||
### Internet
|
### Internet
|
||||||
|
|
||||||
Während dem Event steht eine Internetleitung zur Verfügung. Da die
|
Während dem Event steht eine Internetleitung zur Verfügung. Da die Bandbreite aber begrenzt ist, sind die Teilnehmer gebeten, keine File-Sharing-Anwendungen laufen zu lassen. Des weiteren möchten wir darauf hinweisen, dass wir illegale Aktivitäten nicht tolerieren werden. Die Internetleitung wird von einer Privatperson bezahlt, die wir nicht unnötig in Schwierigkeiten bringen möchten.
|
||||||
Bandbreite aber begrenzt ist, sind die Teilnehmer gebeten, keine
|
|
||||||
File-Sharing-Anwendungen laufen zu lassen. Des weiteren möchten wir
|
|
||||||
darauf hinweisen, dass wir illegale Aktivitäten nicht tolerieren
|
|
||||||
werden. Die Internetleitung wird von einer Privatperson bezahlt, die
|
|
||||||
wir nicht unnötig in Schwierigkeiten bringen möchten.
|
|
||||||
|
|
||||||
### Gaming
|
### Gaming
|
||||||
|
|
||||||
CoSin ist keine Lan-Party. Aufgrund des beschränkten Platzes sind
|
CoSin ist keine Lan-Party. Aufgrund des beschränkten Platzes sind Computerspiele nicht erwünscht. Dies soll nicht heissen, dass wir prinzipiell Gegner von Computerspielen sind, aber wir denken, dass es in der Schweiz schon genug Lanpartys gibt.
|
||||||
Computerspiele nicht erwünscht. Dies soll nicht heissen, dass wir
|
|
||||||
prinzipiell Gegner von Computerspielen sind, aber wir denken, dass es
|
|
||||||
in der Schweiz schon genug Lanpartys gibt.
|
|
||||||
|
|
||||||
### Rauchen
|
### Rauchen
|
||||||
|
|
||||||
|
@ -88,5 +66,4 @@ Innerhalb geschlossener Räume ist Rauchverbot.
|
||||||
|
|
||||||
### Photographieren
|
### Photographieren
|
||||||
|
|
||||||
Die meisten von uns mögen unsere Privatsphäre. Photographieren von
|
Die meisten von uns mögen unsere Privatsphäre. Photographieren von Teilnehmern bitte deshalb nur mit deren expliziten Erlaubnis.
|
||||||
Teilnehmern bitte deshalb nur mit deren expliziten Erlaubnis.
|
|
||||||
|
|
|
@ -5,76 +5,60 @@ menu:
|
||||||
main:
|
main:
|
||||||
weight: 100
|
weight: 100
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
## Date
|
## Date
|
||||||
|
|
||||||
CoSin {{< cosin "date_year" >}} takes place from
|
CoSin {{< cosin "date_year" >}} takes place from {{< cosin_i18n "date_start_weekday" >}}, {{< cosin_i18n "date_start_month" >}} {{< cosin_humanize "date_start_day" >}} until {{< cosin_i18n "date_end_weekday" >}}, {{< cosin_i18n "date_end_month" >}} {{< cosin_humanize "date_end_day" >}} {{< cosin "date_year" >}}.
|
||||||
{{< cosin_i18n "date_start_weekday" >}}, {{< cosin_i18n "date_start_month" >}} {{< cosin_humanize "date_start_day" >}} until
|
<!--
|
||||||
{{< cosin_i18n "date_end_weekday" >}}, {{< cosin_i18n "date_end_month" >}} {{< cosin_humanize "date_end_day" >}}
|
The CoSin {{< cosin "date_year" >}} is cancelled!
|
||||||
{{< cosin "date_year" >}}.
|
-->
|
||||||
|
|
||||||
## Cost
|
## Cost
|
||||||
|
|
||||||
CoSin is a non-profit event, but we ask for an entrance fee of
|
CoSin is a non-profit event, but we ask for an entrance fee of {{< cosin "entrance_fee" >}} for all three days to cover our costs.
|
||||||
{{< cosin "entrance_fee" >}} for all three days to cover our costs.
|
|
||||||
|
The entrance fee cover all four meals (see below). You can pay on site at the entrance.
|
||||||
|
|
||||||
## Registration
|
## Registration
|
||||||
|
|
||||||
Registration is not needed for the event itself. However you have to
|
You can register and get a ticket online.
|
||||||
register if you want to eat, so we can get the right amount of food.
|
|
||||||
A simple email to
|
{{< registration >}}
|
||||||
[{{< cosin "registration_email" >}}](mailto:{{< cosin "registration_email" >}})
|
|
||||||
is sufficient.
|
Registration beforehand is not strictly necessary. You can just show up and participate if you like. However, we are grateful for everyone who registers in a timely manner. This helps us with planning the event and cooking appropriate amounts of food.
|
||||||
|
|
||||||
## Food
|
## Food
|
||||||
|
|
||||||
On both Saturday and Sunday, breakfast is provided for all visitors
|
A warm dinner is provided for all participants on both Friday and Saturday evening. On Saturday and Sunday morning there will be breakfast available. The costs for all meals are included in the entrance fee.
|
||||||
of the CoSin. The costs are covered by the normal CoSin entrance fee
|
|
||||||
and no signup is required for breakfast.
|
|
||||||
|
|
||||||
Friday and Saturday, we make warm dinner. Both meals require signup
|
When signing up please let us know if you are planning to be here for Dinner on Friday evening.
|
||||||
via email to
|
|
||||||
[{{< cosin "registration_email" >}}](mailto:{{< cosin "registration_email" >}}).
|
|
||||||
Please also mention if you're
|
|
||||||
vegetarian or have allergies. The dinner on Friday is covered by the
|
|
||||||
CoSin entrance fee. Dinner on Saturday is {{< cosin "food_fee" >}} per person.
|
|
||||||
|
|
||||||
For those who like to bring their own food, there will be a barbecue grill at
|
The registration includes a form for people with allergies and those who prefer to eat vegetarian or vegan food. We will also make sure to label all food appropriately.
|
||||||
your disposal on Saturday evening.
|
|
||||||
|
For those who like to bring their own food, there will be a barbecue grill at your disposal on Saturday evening.
|
||||||
|
|
||||||
## Drinks
|
## Drinks
|
||||||
|
|
||||||
Local beer and Club Mate can be purchased at the cash desk.
|
Local beer and Club Mate and also some soft drinks can be purchased at the cash desk.
|
||||||
|
|
||||||
## Sleeping
|
## Sleeping
|
||||||
|
|
||||||
Sleeping at CoSin is possible, all you need is a sleeping bag and a
|
Sleeping at CoSin is possible, all you need is a sleeping bag and a camping mat.
|
||||||
camping mat.
|
|
||||||
|
|
||||||
## Assorted stuff
|
## Assorted stuff
|
||||||
|
|
||||||
### Bringing your computer
|
### Bringing your computer
|
||||||
|
|
||||||
If you like to bring your computer, that's fine with us, in fact we
|
If you like to bring your computer, that's fine with us, in fact we encourage you to bring at least a laptop. However, all responsibility for such material is taken by its owner. There is only limited electric supply, so please leave your supercomputer at home and bring your notebook.
|
||||||
encourage you to bring at least a laptop. However, all responsibility
|
|
||||||
for such material is taken by its owner. There is only limited
|
|
||||||
electric supply, so please leave your supercomputer at home and bring
|
|
||||||
your notebook.
|
|
||||||
|
|
||||||
![Computer](/images/computer.jpg "Older machines at CoSin 2006")
|
![Computer](/pictures/computer.jpg "Older machines at CoSin 2006")
|
||||||
|
|
||||||
### Using the internet
|
### Using the internet
|
||||||
|
|
||||||
There is internet access with limited bandwith available. File sharing
|
There is internet access with limited bandwith available. File sharing and illegal activities are not allowed, the line is provided by a private person which could be held liable.
|
||||||
and illegal activities are not allowed, the line is provided by a
|
|
||||||
private person which could be held liable.
|
|
||||||
|
|
||||||
### Gaming
|
### Gaming
|
||||||
|
|
||||||
Because of our limited space, please note that CoSin is not a
|
Because of our limited space, please note that CoSin is not a lanparty. This doesn't mean we're generally against games, but we think that there are enough Lanpartys in Switzerland already.
|
||||||
LanParty. This doesn't mean we're generally against games, but we
|
|
||||||
think that there are enough Lanpartys in Switzerland already.
|
|
||||||
|
|
||||||
### Smoking
|
### Smoking
|
||||||
|
|
||||||
|
@ -82,5 +66,4 @@ Give non-smokers a chance. Do not smoke inside the house.
|
||||||
|
|
||||||
### Photographs
|
### Photographs
|
||||||
|
|
||||||
Most of us value their privacy. Therefore, please do not take
|
Most of us value their privacy. Therefore, please do not take photographs of people without their explicit consent.
|
||||||
photographs of people without their explicit consent.
|
|
||||||
|
|
|
@ -5,68 +5,60 @@ menu:
|
||||||
main:
|
main:
|
||||||
weight: 100
|
weight: 100
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
## Date
|
## Date
|
||||||
|
|
||||||
Le CoSin {{< cosin "date_year" >}} se déroule du
|
Le CoSin {{< cosin "date_year" >}} se déroule du {{< cosin_i18n "date_start_weekday" >}} {{< cosin "date_start_day" >}} {{< cosin_i18n "date_start_month" >}} au {{< cosin_i18n "date_end_weekday" >}} {{< cosin "date_end_day" >}} {{< cosin_i18n "date_end_month" >}} {{< cosin "date_year" >}}.
|
||||||
{{< cosin_i18n "date_start_weekday" >}} {{< cosin "date_start_day" >}} {{< cosin_i18n "date_start_month" >}} au
|
<!--
|
||||||
{{< cosin_i18n "date_end_weekday" >}} {{< cosin "date_end_day" >}} {{< cosin_i18n "date_end_month" >}}
|
La CoSin {{< cosin "date_year" >}} est annulé!
|
||||||
{{< cosin "date_year" >}}.
|
-->
|
||||||
|
|
||||||
## Coûts
|
## Coûts
|
||||||
|
|
||||||
Le CoSin est à but non lucratif, cependant une entrée de {{< cosin "entrance_fee" >}}
|
Le CoSin est à but non lucratif, cependant une entrée de {{< cosin "entrance_fee" >}} pour les trois jours est demandée afin de couvrir les frais.
|
||||||
pour les trois jours est demandée afin de couvrir les frais.
|
|
||||||
|
L'entrée comprend les quatre repas (voir ci-dessous). Tu peux payer en espèces sur place, juste à l'entrée.
|
||||||
|
|
||||||
## Inscription
|
## Inscription
|
||||||
|
|
||||||
Il n’est pas nécessaire de s’inscrire à l’évènement, mais pour des
|
L'inscription et les tickets pour la CoSin sont disponibles en ligne.
|
||||||
raisons d’approvisionnement, une inscription aux repas est
|
|
||||||
obligatoire. Pour ce faire, un email à
|
|
||||||
[{{< cosin "registration_email" >}}](mailto:{{< cosin "registration_email" >}})
|
|
||||||
est suffisant.
|
|
||||||
|
|
||||||
## Manger & Boire
|
{{< registration >}}
|
||||||
|
|
||||||
Des repas chauds sont prévus durant les trois jours (l’inscription est
|
Une inscription n'est pas nécessaire, tu peux aussi venir spontanément et participer quand même. Nous remercions cependant toutes les personnes qui s'inscrivent à l'avance. Les inscriptions nous aident à planifier l'événement et à préparer des quantités adéquates de mets.
|
||||||
nécessaire). Le petit-déjeuner est compris dans le repas de
|
|
||||||
midi. Minérales et Club Mate sont disponible au prix coûtant. Celui
|
## Manger
|
||||||
qui veut consommer de l’alcool doit l’apporter lui-même.
|
|
||||||
|
Le vendredi et le samedi soir, un dîner sera servi à toutes les personnes participantes. Le samedi et le dimanche matin, un petit-déjeuner est prévu. Le coût de tous les repas est inclus dans le prix d'entrée.
|
||||||
|
|
||||||
|
Merci de nous faire savoir lors de l'inscription si tu prévois de venir dîner le vendredi.
|
||||||
|
|
||||||
|
L'inscription comprend également un formulaire permettant d'indiquer les éventuelles allergies ou intolérances ainsi qu'un régime végétarien ou végétalien. Sur place, nous indiquons clairement tous les plats.
|
||||||
|
|
||||||
|
Pour ceux qui souhaitent apporter quelque chose eux-mêmes, un barbecue sera également disponible le samedi soir.
|
||||||
|
|
||||||
|
## Boire
|
||||||
|
|
||||||
|
De la bière locale, du maté et des boissons non alcoolisées sont en vente à la caisse.
|
||||||
|
|
||||||
## Dormir
|
## Dormir
|
||||||
|
|
||||||
Les personnes qui souhaitent passer la nuit sur place doivent amener
|
Les personnes qui souhaitent passer la nuit sur place doivent amener un sac de couchage et une natte de camping.
|
||||||
un sac de couchage et une natte de camping.
|
|
||||||
|
|
||||||
## Divers
|
## Divers
|
||||||
|
|
||||||
### Amener des ordinateurs
|
### Amener des ordinateurs
|
||||||
|
|
||||||
Amener des ordinateurs ne nous pose aucuns problème - le CoSin est
|
Amener des ordinateurs ne nous pose aucuns problème - le CoSin est même plus plaisant avec au minimum un ordinateur portable. La responsabilité pour le matériel apporté est à l’entière charge de son propriétaire. Comme le lieu de la manifestation dispose d’une alimentation électrique limitée, il est préférable de laisser le Super-ordinateur à la maison et de venir avec un Notebook.
|
||||||
même plus plaisant avec au minimum un ordinateur portable. La
|
|
||||||
responsabilité pour le matériel apporté est à l’entière charge de son
|
|
||||||
propriétaire. Comme le lieu de la manifestation dispose d’une
|
|
||||||
alimentation électrique limitée, il est préférable de laisser le
|
|
||||||
Super-ordinateur à la maison et de venir avec un Notebook.
|
|
||||||
|
|
||||||
<br/> ![Computer](/images/computer.jpg "Ältere Computer an CoSin 2006.")
|
![Computer](/pictures/computer.jpg "Ordinateurs plus anciens à la CoSin 2006.")
|
||||||
|
|
||||||
### Internet
|
### Internet
|
||||||
|
|
||||||
Une connexion internet est à disposition durant l’événement. Comme la
|
Une connexion internet est à disposition durant l’événement. Comme la bande passante est restreinte, les participants sont priés de ne pas utiliser d’application de partage de fichiers. De plus, nous souhaitons signaler que nous ne tolérerons aucunes activités illégales. La connexion internet est payée par une personne privée que nous ne souhaitons pas mettre en difficulté inutile.
|
||||||
bande passante est restreinte, les participants sont priés de ne pas
|
|
||||||
utiliser d’application de partage de fichiers. De plus, nous
|
|
||||||
souhaitons signaler que nous ne tolérerons aucunes activités
|
|
||||||
illégales. La connexion internet est payée par une personne privée que
|
|
||||||
nous ne souhaitons pas mettre en difficulté inutile.
|
|
||||||
|
|
||||||
### Gaming
|
### Gaming
|
||||||
|
|
||||||
Le CoSin n’est pas une Lan-Party. Au vu du nombre de places limité,
|
Le CoSin n’est pas une Lan-Party. Au vu du nombre de places limité, les jeux vidéo ne sont pas souhaités. Cela ne signifie pas que nous sommes globalement contre les jeux vidéo, mais nous pensons qu’il y a déjà suffisamment de Lan-Partys en Suisse.
|
||||||
les jeux vidéo ne sont pas souhaités. Cela ne signifie pas que nous
|
|
||||||
sommes globalement contre les jeux vidéo, mais nous pensons qu’il y a
|
|
||||||
déjà suffisamment de Lan-Partys en Suisse.
|
|
||||||
|
|
||||||
### Fumer
|
### Fumer
|
||||||
|
|
||||||
|
@ -74,6 +66,4 @@ Il est interdit de fumer dans les espaces clos.
|
||||||
|
|
||||||
### Photographier
|
### Photographier
|
||||||
|
|
||||||
La majorité d’entre nous apprécie sa sphère privée. De ce fait, les
|
La majorité d’entre nous apprécie sa sphère privée. De ce fait, les photographies des participants sont permises uniquement avec leur autorisation explicite.
|
||||||
photographies des participants sont permises uniquement avec leur
|
|
||||||
autorisation explicite.
|
|
||||||
|
|
|
@ -5,64 +5,48 @@ menu:
|
||||||
main:
|
main:
|
||||||
weight: 100
|
weight: 100
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
## Data
|
## Data
|
||||||
|
|
||||||
Quest'anno la CoSin si svolge da
|
Quest'anno la CoSin si svolge da {{< cosin_i18n "date_start_weekday" >}} {{< cosin "date_start_day" >}}. {{< cosin_i18n "date_start_month" >}} fino a {{< cosin_i18n "date_end_weekday" >}} {{< cosin "date_end_day" >}}. {{< cosin_i18n "date_end_month" >}} {{< cosin "date_year" >}}, {{< cosin_i18n "location_name_preposition" >}} [{{< cosin_i18n "location_name" >}}]({{< cosin "location_url" >}}) a {{< cosin_i18n "location_city" >}}.
|
||||||
{{< cosin_i18n "date_start_weekday" >}} {{< cosin "date_start_day" >}}. {{< cosin_i18n "date_start_month" >}} fino a
|
<!--
|
||||||
{{< cosin_i18n "date_end_weekday" >}} {{< cosin "date_end_day" >}}. {{< cosin_i18n "date_end_month" >}}
|
La CoSin {{< cosin "date_year" >}} è annullato!
|
||||||
{{< cosin "date_year" >}},
|
-->
|
||||||
{{< cosin_i18n "location_name_preposition" >}} [{{< cosin_i18n "location_name" >}}]({{< cosin "location_url" >}}) a {{< cosin_i18n "location_city" >}}.
|
|
||||||
|
|
||||||
## Costi
|
## Costi
|
||||||
|
|
||||||
La CoSin non è a scopo di lucro, ma per coprire i costi richiediamo un contributo di
|
La CoSin non è a scopo di lucro, ma per coprire i costi richiediamo un contributo di {{< cosin "entrance_fee" >}}, valido per i tre giorni.
|
||||||
{{< cosin "entrance_fee" >}}, valido per i tre giorni.
|
|
||||||
|
|
||||||
## Registrazione
|
## Registrazione
|
||||||
|
|
||||||
Una registrazione per l'evento non è necessaria, ma per organizzare la cucina,
|
Una registrazione per l'evento non è necessaria, ma per organizzare la cucina.
|
||||||
ti preghiamo di annunciarti con un breve messaggio per email a
|
|
||||||
[{{< cosin "registration_email" >}}](mailto:{{< cosin "registration_email" >}}).
|
{{< registration >}}
|
||||||
|
|
||||||
## Mangiare e bere
|
## Mangiare e bere
|
||||||
|
|
||||||
Per chi si annuncia in anticipo, organizziamo cibo caldo per i tre giorni dell'evento.
|
Per chi si annuncia in anticipo, organizziamo cibo caldo per i tre giorni dell'evento. La colazione è inclusa nel pranzo.
|
||||||
La colazione è inclusa nel pranzo.
|
|
||||||
|
|
||||||
Gazzose e Mate sono disponibili al prezzo di acquisto; chi desidera bevande alcoliche
|
Gazzose e Mate sono disponibili al prezzo di acquisto; chi desidera bevande alcoliche deve organizzarle e portarle a proprio carico.
|
||||||
deve organizzarle e portarle a proprio carico.
|
|
||||||
|
|
||||||
## Dormire
|
## Dormire
|
||||||
|
|
||||||
Chi vuole dormire sul posto può farlo all'interno dell'edificio portando un materassino
|
Chi vuole dormire sul posto può farlo all'interno dell'edificio portando un materassino e un sacco letto. Ci sono anche posti limitati per tende.
|
||||||
e un sacco letto. Ci sono anche posti limitati per tende.
|
|
||||||
|
|
||||||
## Varia
|
## Varia
|
||||||
|
|
||||||
### Portare computer
|
### Portare computer
|
||||||
|
|
||||||
Non abbiamo niente da ridire se volete portare i vostri computer. Anzi un laptop personale
|
Non abbiamo niente da ridire se volete portare i vostri computer. Anzi un laptop personale può contribuire a rendere l'evento più piacevole. Non possiamo però assumerci alcuna responsabilità per il materiale che portate. L'edificio dispone di un allacciamento modesto alla rete elettrica, dunque sconsigliamo di lasciare super computer e simili a casa.
|
||||||
può contribuire a rendere l'evento più piacevole. Non possiamo però assumerci alcuna
|
|
||||||
responsabilità per il materiale che portate. L'edificio dispone di un allacciamento modesto
|
|
||||||
alla rete elettrica, dunque sconsigliamo di lasciare super computer e simili a casa.
|
|
||||||
|
|
||||||
![Computer](/images/computer.jpg "Vecchi Computer alla CoSin 2006.")
|
![Computer](/pictures/computer.jpg "Vecchi Computer alla CoSin 2006.")
|
||||||
|
|
||||||
### Internet
|
### Internet
|
||||||
|
|
||||||
Durante l'evento offriamo un collegamento a Internet. L'allacciamento ha una capacità limitata
|
Durante l'evento offriamo un collegamento a Internet. L'allacciamento ha una capacità limitata e preghiamo i partecipanti a non usare applicazioni di file-sharing. Inoltre facciamo notare che non tolleriamo atteggiamenti illegali. Il collegamento Internet è offerto da una persona privata a cui non vogliamo causare inutili difficoltà.
|
||||||
e preghiamo i partecipanti a non usare applicazioni di file-sharing. Inoltre facciamo notare
|
|
||||||
che non tolleriamo atteggiamenti illegali. Il collegamento Internet è offerto da
|
|
||||||
una persona privata a cui non vogliamo causare inutili difficoltà.
|
|
||||||
|
|
||||||
### Gaming
|
### Gaming
|
||||||
|
|
||||||
Non opponiamo giochi elettronici per principio, ma la CoSin non è una Lan-Party.
|
Non opponiamo giochi elettronici per principio, ma la CoSin non è una Lan-Party. Siccome lo spazio è limitato, non desideriamo dare questo spazio ai giochi elettronici. Siamo inoltre del parere che anche senza il nostro contributo ci siano abbastanza Lan-Partys in Svizzera.
|
||||||
Siccome lo spazio è limitato, non desideriamo dare questo spazio ai giochi elettronici.
|
|
||||||
Siamo inoltre del parere che anche senza il nostro contributo ci siano
|
|
||||||
abbastanza Lan-Partys in Svizzera.
|
|
||||||
|
|
||||||
### Fumare
|
### Fumare
|
||||||
|
|
||||||
|
@ -70,6 +54,4 @@ Negli spazi interni vige il divieto di fumare.
|
||||||
|
|
||||||
### Fotografare
|
### Fotografare
|
||||||
|
|
||||||
La maggior parte dei partecipanti desidera preservare la propria sfera privata.
|
La maggior parte dei partecipanti desidera preservare la propria sfera privata. Fotografare i partecipanti è permesso solo con l'esplicito consenso di tutte le persone che vengono fotografate.
|
||||||
Fotografare i partecipanti è permesso solo con l'esplicito consenso di tutte le
|
|
||||||
persone che vengono fotografate.
|
|
||||||
|
|
|
@ -5,33 +5,25 @@ menu:
|
||||||
main:
|
main:
|
||||||
weight: 900
|
weight: 900
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
## Mailingliste
|
## Mailingliste
|
||||||
|
|
||||||
Um uns zu kontaktieren, wende dich bitte an die
|
Um uns zu kontaktieren, wende dich bitte an die [Orga-Mailingliste](mailto:{{< cosin "orga_email" >}}).
|
||||||
[Orga-Mailingliste](mailto:{{< cosin "orga_email" >}}).
|
|
||||||
|
|
||||||
Die Mailingliste könnte am ehesten als offizielles Kommunikationsmedium
|
Die Mailingliste könnte am ehesten als offizielles Kommunikationsmedium bezeichnet werden, da damit das ganze Orga-Team erreichbar ist.
|
||||||
bezeichnet werden, da damit das ganze Orga-Team erreichbar ist.
|
|
||||||
|
|
||||||
## IRC
|
## Matrix Chat
|
||||||
|
|
||||||
Während dem Event kannst du uns am besten im IRC auf dem Server
|
Während dem Event kannst du uns am besten im Matrix-Raum [{{< cosin "matrix_space" >}}:{{< cosin "matrix_server" >}}]({{< cosin "matrix_to" >}}{{< cosin "matrix_space" >}}:{{< cosin "matrix_server" >}}) erreichen. Auch im Vorfeld sollte da zumindest ein Teil des Orga-Teams anzutreffen sein.
|
||||||
`{{< cosin "irc_server" >}}` im Kanal
|
|
||||||
[{{< cosin "irc_channel" >}}]({{< cosin "irc_server" >}}{{< cosin "irc_channel" >}})
|
|
||||||
oder [#ccc]({{< cosin "irc_server" >}}#ccc) erreichen.
|
|
||||||
Auch im Vorfeld sollte da zumindest ein Teil des Orga-Teams anzutreffen sein.
|
|
||||||
|
|
||||||
## Links
|
## Links
|
||||||
|
|
||||||
* [Chaos Computer Club Switzerland (CCC-CH)](https://ccc-ch.ch)
|
* [Chaos Computer Club Switzerland (CCC-CH)](https://ccc-ch.ch)
|
||||||
* [Chaos Computer Club Basel](https://wiki.chaostreff.ch/Chaostreff)
|
* [Chaos Computer Club Basel](https://ccc-basel.ch/)
|
||||||
* [Chaostreff Bern](https://www.chaosbern.ch/)
|
* [Chaostreff Bern](https://www.chaosbern.ch/)
|
||||||
* [Coredump (Hackerspace Rapperswil)](https://www.coredump.ch/)
|
* [Coredump (Hackspace Rapperswil)](https://www.coredump.ch/)
|
||||||
* [Hackerspace Eastermundigen](https://www.eastermundigen.ch/)
|
* [Hackspace Eastermundigen](https://www.eastermundigen.ch/)
|
||||||
* [Hackerspace St. Gallen](https://www.ruum42.ch/)
|
* [Hackspace St. Gallen](https://www.ruum42.ch/)
|
||||||
* [Odenwilusenz (Hackerspace Beringen, Schaffhausen)](https://www.odenwilusenz.ch/)
|
* [Odenwilusenz (Hackspace Beringen, Schaffhausen)](https://www.odenwilusenz.ch/)
|
||||||
* [Chaos Computer Club Zürich (CCCZH)](https://www.ccczh.ch/)
|
* [Chaos Computer Club Zürich (CCCZH)](https://www.ccczh.ch/)
|
||||||
* [SheGeeks](https://www.shegeeks.ch/)
|
* [SheGeeks](https://www.shegeeks.ch/)
|
||||||
* [Chaos Computer Club](https://www.ccc.de)
|
* [Chaos Computer Club](https://www.ccc.de)
|
||||||
|
|
|
@ -5,30 +5,25 @@ menu:
|
||||||
main:
|
main:
|
||||||
weight: 900
|
weight: 900
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
## Mailinglist
|
## Mailinglist
|
||||||
|
|
||||||
To contact us, please use our [orga mailinglist](mailto:{{< cosin "orga_email" >}}).
|
To contact us, please use our [orga mailinglist](mailto:{{< cosin "orga_email" >}}).
|
||||||
|
|
||||||
The mailing list is the best way to reach the whole CoSin team.
|
The mailing list is the best way to reach the whole CoSin team.
|
||||||
|
|
||||||
## IRC
|
## Matrix Chat
|
||||||
|
|
||||||
During the event, the best way to reach us is probably IRC. Please use
|
During the event, the best way to reach us is probably Matrix. Please use the main room [{{< cosin "matrix_space" >}}:{{< cosin "matrix_server" >}}]({{< cosin "matrix_to" >}}{{< cosin "matrix_space" >}}:{{< cosin "matrix_server" >}}).
|
||||||
the channel [{{< cosin "irc_channel" >}}]({{< cosin "irc_server" >}}{{< cosin "irc_channel" >}})
|
|
||||||
or [#ccc]({{< cosin "irc_server" >}}#ccc)
|
|
||||||
on the server `{{< cosin "irc_server" >}}`.
|
|
||||||
|
|
||||||
## Links and groups behind CoSin
|
## Links and groups behind CoSin
|
||||||
|
|
||||||
* [Chaos Computer Club Switzerland (CCC-CH)](https://ccc-ch.ch)
|
* [Chaos Computer Club Switzerland (CCC-CH)](https://ccc-ch.ch)
|
||||||
* [Chaos Computer Club Basel](https://wiki.chaostreff.ch/Chaostreff)
|
* [Chaos Computer Club Basel](https://ccc-basel.ch/)
|
||||||
* [Chaostreff Bern](https://www.chaosbern.ch/)
|
* [Chaostreff Bern](https://www.chaosbern.ch/)
|
||||||
* [Coredump (Hackerspace Rapperswil)](https://www.coredump.ch/)
|
* [Coredump (Hackspace Rapperswil)](https://www.coredump.ch/)
|
||||||
* [Hackerspace Eastermundigen](https://www.eastermundigen.ch/)
|
* [Hackspace Eastermundigen](https://www.eastermundigen.ch/)
|
||||||
* [Hackerspace St. Gallen](https://www.ruum42.ch/)
|
* [Hackspace St. Gallen](https://www.ruum42.ch/)
|
||||||
* [Odenwilusenz (Hackerspace Beringen, Schaffhausen)](https://www.odenwilusenz.ch/)
|
* [Odenwilusenz (Hackspace Beringen, Schaffhausen)](https://www.odenwilusenz.ch/)
|
||||||
* [Chaos Computer Club Zürich (CCCZH)](https://www.ccczh.ch/)
|
* [Chaos Computer Club Zürich (CCCZH)](https://www.ccczh.ch/)
|
||||||
* [SheGeeks](https://www.shegeeks.ch/)
|
* [SheGeeks](https://www.shegeeks.ch/)
|
||||||
* [Chaos Computer Club](https://www.ccc.de)
|
* [Chaos Computer Club](https://www.ccc.de)
|
||||||
|
|
|
@ -5,33 +5,25 @@ menu:
|
||||||
main:
|
main:
|
||||||
weight: 900
|
weight: 900
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
## Liste de diffusion
|
## Liste de diffusion
|
||||||
|
|
||||||
Pour nous contacter, adresse-toi à la
|
Pour nous contacter, adresse-toi à la [liste de diffusion des organisateurs](mailto:{{< cosin "orga_email" >}}).
|
||||||
[liste de diffusion des organisateurs](mailto:{{< cosin "orga_email" >}}).
|
|
||||||
|
|
||||||
La liste de diffusion permet de contacter l'ensemble de l'équipe des
|
La liste de diffusion permet de contacter l'ensemble de l'équipe des organisateurs, ce qui en fait le moyen de contact le plus officieux.
|
||||||
organisateurs, ce qui en fait le moyen de contact le plus officieux.
|
|
||||||
|
|
||||||
## IRC
|
## Matrix Chat
|
||||||
|
|
||||||
Pendant l'événement, le meilleur moyen de nous joindre est le canal
|
Pendant l'événement, le meilleur moyen de nous joindre est le canal [{{< cosin "matrix_space" >}}:{{< cosin "matrix_server" >}}]({{< cosin "matrix_to" >}}{{< cosin "matrix_space" >}}:{{< cosin "matrix_server" >}}). Même avant, au moins une partie de l'équipe d'organisation devrait y être présente.
|
||||||
[{{< cosin "irc_channel" >}}]({{< cosin "irc_server" >}}{{< cosin "irc_channel" >}})
|
|
||||||
ou [#ccc]({{< cosin "irc_server" >}}#ccc) sur le serveur `{{< cosin "irc_server" >}}`.
|
|
||||||
Même avant, au moins une partie de l'équipe d'organisation devrait y être
|
|
||||||
joignable.
|
|
||||||
|
|
||||||
## Liens
|
## Liens
|
||||||
|
|
||||||
* [Chaos Computer Club Switzerland (CCC-CH)](https://ccc-ch.ch)
|
* [Chaos Computer Club Switzerland (CCC-CH)](https://ccc-ch.ch)
|
||||||
* [Chaos Computer Club Basel](https://wiki.chaostreff.ch/Chaostreff)
|
* [Chaos Computer Club Basel](https://ccc-basel.ch/)
|
||||||
* [Chaostreff Bern](https://www.chaosbern.ch/)
|
* [Chaostreff Bern](https://www.chaosbern.ch/)
|
||||||
* [Coredump (Hackerspace Rapperswil)](https://www.coredump.ch/)
|
* [Coredump (Hackspace Rapperswil)](https://www.coredump.ch/)
|
||||||
* [Hackerspace Eastermundigen](https://www.eastermundigen.ch/)
|
* [Hackspace Eastermundigen](https://www.eastermundigen.ch/)
|
||||||
* [Hackerspace St. Gallen](https://www.ruum42.ch/)
|
* [Hackspace St. Gallen](https://www.ruum42.ch/)
|
||||||
* [Odenwilusenz (Hackerspace Beringen, Schaffhausen)](https://www.odenwilusenz.ch/)
|
* [Odenwilusenz (Hackspace Beringen, Schaffhausen)](https://www.odenwilusenz.ch/)
|
||||||
* [Chaos Computer Club Zürich (CCCZH)](https://www.ccczh.ch/)
|
* [Chaos Computer Club Zürich (CCCZH)](https://www.ccczh.ch/)
|
||||||
* [SheGeeks](https://www.shegeeks.ch/)
|
* [SheGeeks](https://www.shegeeks.ch/)
|
||||||
* [Chaos Computer Club](https://www.ccc.de)
|
* [Chaos Computer Club](https://www.ccc.de)
|
||||||
|
|
|
@ -5,31 +5,25 @@ menu:
|
||||||
main:
|
main:
|
||||||
weight: 900
|
weight: 900
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
## Mailingliste
|
## Mailingliste
|
||||||
|
|
||||||
Per contattarci, per favore scrivi alla [lista dell'orga](mailto:{{< cosin "orga_email" >}}).
|
Per contattarci, per favore scrivi alla [lista dell'orga](mailto:{{< cosin "orga_email" >}}).
|
||||||
|
|
||||||
La lista dell'orga è probabilmente il canale piú ufficiale per raggiungerci, siccome così
|
La lista dell'orga è probabilmente il canale piú ufficiale per raggiungerci, siccome così scrivi a tutti i membri dell'organizzazione.
|
||||||
scrivi a tutti i membri dell'organizzazione.
|
|
||||||
|
|
||||||
## IRC
|
## Matrix Chat
|
||||||
|
|
||||||
Durante l'evento puoi contattarci tramite IRC sul server `{{< cosin "irc_server" >}}`
|
Durante l'evento puoi contattarci tramite Matrix il canale [{{< cosin "matrix_space" >}}:{{< cosin "matrix_server" >}}]({{< cosin "matrix_to" >}}{{< cosin "matrix_space" >}}:{{< cosin "matrix_server" >}}). Anche prima dell'evento dovresti trovarci sempre qualcuno degli organizzatori.
|
||||||
e il canale [{{< cosin "irc_channel" >}}]({{< cosin "irc_server" >}}{{< cosin "irc_channel" >}})
|
|
||||||
oppure [#ccc]({{< cosin "irc_server" >}}#ccc).
|
|
||||||
Anche prima dell'evento dovresti trovarci sempre qualcuno degli organizzatori.
|
|
||||||
|
|
||||||
## Links
|
## Links
|
||||||
|
|
||||||
* [Chaos Computer Club Switzerland (CCC-CH)](https://ccc-ch.ch)
|
* [Chaos Computer Club Switzerland (CCC-CH)](https://ccc-ch.ch)
|
||||||
* [Chaos Computer Club Basel](https://wiki.chaostreff.ch/Chaostreff)
|
* [Chaos Computer Club Basel](https://ccc-basel.ch/)
|
||||||
* [Chaostreff Bern](https://www.chaosbern.ch/)
|
* [Chaostreff Bern](https://www.chaosbern.ch/)
|
||||||
* [Coredump (Hackerspace Rapperswil)](https://www.coredump.ch/)
|
* [Coredump (Hackspace Rapperswil)](https://www.coredump.ch/)
|
||||||
* [Hackerspace Eastermundigen](https://www.eastermundigen.ch/)
|
* [Hackspace Eastermundigen](https://www.eastermundigen.ch/)
|
||||||
* [Hackerspace St. Gallen](https://www.ruum42.ch/)
|
* [Hackspace St. Gallen](https://www.ruum42.ch/)
|
||||||
* [Odenwilusenz (Hackerspace Beringen, Schaffhausen)](https://www.odenwilusenz.ch/)
|
* [Odenwilusenz (Hackspace Beringen, Schaffhausen)](https://www.odenwilusenz.ch/)
|
||||||
* [Chaos Computer Club Zürich (CCCZH)](https://www.ccczh.ch/)
|
* [Chaos Computer Club Zürich (CCCZH)](https://www.ccczh.ch/)
|
||||||
* [SheGeeks](https://www.shegeeks.ch/)
|
* [SheGeeks](https://www.shegeeks.ch/)
|
||||||
* [Chaos Computer Club](https://www.ccc.de)
|
* [Chaos Computer Club](https://www.ccc.de)
|
||||||
|
|
|
@ -5,36 +5,43 @@ menu:
|
||||||
main:
|
main:
|
||||||
weight: 600
|
weight: 600
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
## Ort
|
## Ort
|
||||||
|
|
||||||
Das CoSin findet {{< cosin_i18n "location_name_preposition" >}} [{{< cosin_i18n "location_name" >}}][1] in {{< cosin_i18n "location_city" >}} statt.
|
Das CoSin findet {{< cosin_i18n "location_name_preposition" >}} [{{< cosin_i18n "location_name" >}}][1] in {{< cosin_i18n "location_city" >}} statt.
|
||||||
|
|
||||||
## Photos
|
## Photos
|
||||||
|
|
||||||
[![CoSin 2011](/photos/2011/front.small.jpg)](/photos/2011/front.jpg "Front")
|
[![CoSin 2011](/photos/2011/front.small.jpg)](/photos/2011/front.jpg "Front") [![CoSin 2011](/photos/2011/hackcenter.small.jpg)](/photos/2011/hackcenter.jpg "Hackcenter") [![CoSin 2011](/photos/2011/talk.small.jpg)](/photos/2011/talk.jpg "Talk") [![CoSin 2011](/photos/2011/cinema.small.jpg)](/photos/2011/cinema.jpg "Cinema") [![CoSin 2011](/photos/2011/workshop.small.jpg)](/photos/2011/workshop.jpg "Workshop") [![CoSin 2011](/photos/2011/workshop2.small.jpg)](/photos/2011/workshop2.jpg "Workshop") [![CoSin 2011](/photos/2011/roof.small.jpg)](/photos/2011/roof.jpg "Roof")
|
||||||
[![CoSin 2011](/photos/2011/hackcenter.small.jpg)](/photos/2011/hackcenter.jpg "Hackcenter")
|
|
||||||
[![CoSin 2011](/photos/2011/talk.small.jpg)](/photos/2011/talk.jpg "Talk")
|
|
||||||
[![CoSin 2011](/photos/2011/cinema.small.jpg)](/photos/2011/cinema.jpg "Cinema")
|
|
||||||
[![CoSin 2011](/photos/2011/workshop.small.jpg)](/photos/2011/workshop.jpg "Workshop")
|
|
||||||
[![CoSin 2011](/photos/2011/workshop2.small.jpg)](/photos/2011/workshop2.jpg "Workshop")
|
|
||||||
[![CoSin 2011](/photos/2011/roof.small.jpg)](/photos/2011/roof.jpg "Roof")
|
|
||||||
|
|
||||||
## Anfahrt
|
## Anfahrt
|
||||||
|
|
||||||
* Adresse: Juravorstadt 36, 2502 Biel
|
* Adresse: Juravorstadt 36, 2502 Biel
|
||||||
* [OpenStreetMap][2]
|
|
||||||
* Der Bahnhof ist ca. 15 min zu Fuss entfernt
|
* Der Bahnhof ist ca. 15 min zu Fuss entfernt
|
||||||
* Parkplätze gibt es vor Ort
|
* Parkplätze gibt es vor Ort
|
||||||
|
|
||||||
|
## Karte
|
||||||
|
|
||||||
|
<iframe class="openstreetmap" src="https://www.openstreetmap.org/export/embed.html?bbox=7.216086387634278%2C47.129220828331846%2C7.287755012512208%2C47.15406195569846&layer=mapnik&marker=47.14426%2C7.24994">
|
||||||
|
</iframe>
|
||||||
|
|
||||||
|
[Grössere Karte][2]
|
||||||
|
|
||||||
|
## WGS84-Koordinaten
|
||||||
|
|
||||||
|
$ kdig +short -t LOC cosin.ch.
|
||||||
|
47 8 39.336 N 7 14 59.784 E 444m 30m 5m 10m
|
||||||
|
|
||||||
|
oder weniger technisch gesagt:
|
||||||
|
|
||||||
|
- Breite: *47.14426° Nord*
|
||||||
|
- Länge: *7.24994° Ost*
|
||||||
|
|
||||||
## Übernachtung
|
## Übernachtung
|
||||||
|
|
||||||
Es besteht die Möglichkeit, in der Villa Ritter zu Übernachten. Bring
|
Es besteht die Möglichkeit, in der Villa Ritter zu Übernachten. Bring einfach Mätteli und Schlafsack mit.
|
||||||
einfach Mätteli und Schlafsack mit.
|
|
||||||
|
|
||||||
Eine andere Option ist der [Campingplatz][3], etwa 15 Minuten mit dem Velo.
|
Eine andere Option ist der [Campingplatz][3], etwa 15 Minuten mit dem Velo.
|
||||||
|
|
||||||
[1]: {{< cosin "location_url" >}}
|
[1]: {{< cosin "location_url" >}}
|
||||||
[2]: https://www.openstreetmap.org/?mlat=47.14426%2C7.24994&mlon=7.24994&zoom=17#map=16/47.14420/7.2516
|
[2]: https://www.openstreetmap.org/?mlat=47.14426%2C7.24994&mlon=7.24994&zoom=17#map=16/47.14420/7.2516
|
||||||
[3]: http://www.camping-sutz.ch/en/
|
[3]: https://camping-sutz.ch/
|
||||||
|
|
|
@ -5,36 +5,43 @@ menu:
|
||||||
main:
|
main:
|
||||||
weight: 600
|
weight: 600
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
## Location
|
## Location
|
||||||
|
|
||||||
This year's CoSin takes place {{< cosin_i18n "location_name_preposition" >}} [{{< cosin_i18n "location_name" >}}][1] in {{< cosin_i18n "location_city" >}}.
|
This year's CoSin takes place {{< cosin_i18n "location_name_preposition" >}} [{{< cosin_i18n "location_name" >}}][1] in {{< cosin_i18n "location_city" >}}.
|
||||||
|
|
||||||
## Photos
|
## Photos
|
||||||
|
|
||||||
[![CoSin 2011](/photos/2011/front.small.jpg)](/photos/2011/front.jpg "Front")
|
[![CoSin 2011](/photos/2011/front.small.jpg)](/photos/2011/front.jpg "Front") [![CoSin 2011](/photos/2011/hackcenter.small.jpg)](/photos/2011/hackcenter.jpg "Hackcenter") [![CoSin 2011](/photos/2011/talk.small.jpg)](/photos/2011/talk.jpg "Talk") [![CoSin 2011](/photos/2011/cinema.small.jpg)](/photos/2011/cinema.jpg "Cinema") [![CoSin 2011](/photos/2011/workshop.small.jpg)](/photos/2011/workshop.jpg "Workshop") [![CoSin 2011](/photos/2011/workshop2.small.jpg)](/photos/2011/workshop2.jpg "Workshop") [![CoSin 2011](/photos/2011/roof.small.jpg)](/photos/2011/roof.jpg "Roof")
|
||||||
[![CoSin 2011](/photos/2011/hackcenter.small.jpg)](/photos/2011/hackcenter.jpg "Hackcenter")
|
|
||||||
[![CoSin 2011](/photos/2011/talk.small.jpg)](/photos/2011/talk.jpg "Talk")
|
|
||||||
[![CoSin 2011](/photos/2011/cinema.small.jpg)](/photos/2011/cinema.jpg "Cinema")
|
|
||||||
[![CoSin 2011](/photos/2011/workshop.small.jpg)](/photos/2011/workshop.jpg "Workshop")
|
|
||||||
[![CoSin 2011](/photos/2011/workshop2.small.jpg)](/photos/2011/workshop2.jpg "Workshop")
|
|
||||||
[![CoSin 2011](/photos/2011/roof.small.jpg)](/photos/2011/roof.jpg "Roof")
|
|
||||||
|
|
||||||
## Getting there
|
## Getting there
|
||||||
|
|
||||||
* Address: Faubourg du Jura 36, 2502 Biel/Bienne
|
* Address: Faubourg du Jura 36, 2502 Biel/Bienne
|
||||||
* [OpenStreetMap][2]
|
|
||||||
* The railway station is approximately a 15-minute walk away
|
* The railway station is approximately a 15-minute walk away
|
||||||
* Parking spaces are available
|
* Parking spaces are available
|
||||||
|
|
||||||
|
## Map
|
||||||
|
|
||||||
|
<iframe class="openstreetmap" src="https://www.openstreetmap.org/export/embed.html?bbox=7.216086387634278%2C47.129220828331846%2C7.287755012512208%2C47.15406195569846&layer=mapnik&marker=47.14426%2C7.24994">
|
||||||
|
</iframe>
|
||||||
|
|
||||||
|
[Bigger map][2]
|
||||||
|
|
||||||
|
## WGS84 Coordinates
|
||||||
|
|
||||||
|
$ kdig +short -t LOC cosin.ch.
|
||||||
|
47 8 39.336 N 7 14 59.784 E 444m 30m 5m 10m
|
||||||
|
|
||||||
|
or in less technical terms:
|
||||||
|
|
||||||
|
- Latitude: *47.14426° north*
|
||||||
|
- Longitude: *7.24994° east*
|
||||||
|
|
||||||
## Sleeping
|
## Sleeping
|
||||||
|
|
||||||
If you like, you can stay in the Villa Ritter overnight. Just bring a
|
If you like, you can stay in the Villa Ritter overnight. Just bring a mat and a sleeping bag.
|
||||||
mat and a sleeping bag.
|
|
||||||
|
|
||||||
The [camping area][3] is another option, about 15 minutes by bike.
|
The [camping area][3] is another option, about 15 minutes by bike.
|
||||||
|
|
||||||
[1]: {{< cosin "location_url" >}}
|
[1]: {{< cosin "location_url" >}}
|
||||||
[2]: https://www.openstreetmap.org/?mlat=47.14426%2C7.24994&mlon=7.24994&zoom=17#map=16/47.14420/7.2516
|
[2]: https://www.openstreetmap.org/?mlat=47.14426%2C7.24994&mlon=7.24994&zoom=17#map=16/47.14420/7.2516
|
||||||
[3]: http://www.camping-sutz.ch/en/
|
[3]: https://camping-sutz.ch/
|
||||||
|
|
|
@ -5,29 +5,37 @@ menu:
|
||||||
main:
|
main:
|
||||||
weight: 600
|
weight: 600
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
## Lieu
|
## Lieu
|
||||||
|
|
||||||
Le CoSin se déroule {{< cosin_i18n "location_name_preposition" >}} [{{< cosin_i18n "location_name" >}}][1] à {{< cosin_i18n "location_city" >}}.
|
Le CoSin se déroule {{< cosin_i18n "location_name_preposition" >}} [{{< cosin_i18n "location_name" >}}][1] à {{< cosin_i18n "location_city" >}}.
|
||||||
|
|
||||||
## Photos
|
## Photos
|
||||||
|
|
||||||
[![CoSin 2011](/photos/2011/front.small.jpg)](/photos/2011/front.jpg "Front")
|
[![CoSin 2011](/photos/2011/front.small.jpg)](/photos/2011/front.jpg "Front") [![CoSin 2011](/photos/2011/hackcenter.small.jpg)](/photos/2011/hackcenter.jpg "Hackcenter") [![CoSin 2011](/photos/2011/talk.small.jpg)](/photos/2011/talk.jpg "Talk") [![CoSin 2011](/photos/2011/cinema.small.jpg)](/photos/2011/cinema.jpg "Cinema") [![CoSin 2011](/photos/2011/workshop.small.jpg)](/photos/2011/workshop.jpg "Workshop") [![CoSin 2011](/photos/2011/workshop2.small.jpg)](/photos/2011/workshop2.jpg "Workshop") [![CoSin 2011](/photos/2011/roof.small.jpg)](/photos/2011/roof.jpg "Roof")
|
||||||
[![CoSin 2011](/photos/2011/hackcenter.small.jpg)](/photos/2011/hackcenter.jpg "Hackcenter")
|
|
||||||
[![CoSin 2011](/photos/2011/talk.small.jpg)](/photos/2011/talk.jpg "Talk")
|
|
||||||
[![CoSin 2011](/photos/2011/cinema.small.jpg)](/photos/2011/cinema.jpg "Cinema")
|
|
||||||
[![CoSin 2011](/photos/2011/workshop.small.jpg)](/photos/2011/workshop.jpg "Workshop")
|
|
||||||
[![CoSin 2011](/photos/2011/workshop2.small.jpg)](/photos/2011/workshop2.jpg "Workshop")
|
|
||||||
[![CoSin 2011](/photos/2011/roof.small.jpg)](/photos/2011/roof.jpg "Roof")
|
|
||||||
|
|
||||||
## Arrivée
|
## Arrivée
|
||||||
|
|
||||||
* Adresse: Faubourg du Jura 36, 2502 Bienne
|
* Adresse: Faubourg du Jura 36, 2502 Bienne
|
||||||
* [OpenStreetMap][2]
|
|
||||||
* La gare est à environ 15 min de marche
|
* La gare est à environ 15 min de marche
|
||||||
* Des places de parc sont disponibles sur place
|
* Des places de parc sont disponibles sur place
|
||||||
|
|
||||||
|
## Karte
|
||||||
|
|
||||||
|
<iframe class="openstreetmap" src="https://www.openstreetmap.org/export/embed.html?bbox=7.216086387634278%2C47.129220828331846%2C7.287755012512208%2C47.15406195569846&layer=mapnik&marker=47.14426%2C7.24994">
|
||||||
|
</iframe>
|
||||||
|
|
||||||
|
[Grössere Karte][2]
|
||||||
|
|
||||||
|
## WGS84-Koordinaten
|
||||||
|
|
||||||
|
$ kdig +short -t LOC cosin.ch.
|
||||||
|
47 8 39.336 N 7 14 59.784 E 444m 30m 5m 10m
|
||||||
|
|
||||||
|
oder weniger technisch gesagt:
|
||||||
|
|
||||||
|
- Breite: *47.14426° Nord*
|
||||||
|
- Länge: *7.24994° Ost*
|
||||||
|
|
||||||
## Hébergement
|
## Hébergement
|
||||||
|
|
||||||
Il est possible de dormir dans la Villa Ritter. Apporte tout simplement un sac de couchage et une natte de camping.
|
Il est possible de dormir dans la Villa Ritter. Apporte tout simplement un sac de couchage et une natte de camping.
|
||||||
|
@ -36,4 +44,4 @@ Eine andere Option ist der [Campingplatz][3], etwa 15 Minuten mit dem Velo.
|
||||||
|
|
||||||
[1]: {{< cosin "location_url" >}}
|
[1]: {{< cosin "location_url" >}}
|
||||||
[2]: https://www.openstreetmap.org/?mlat=47.14426%2C7.24994&mlon=7.24994&zoom=17#map=16/47.14420/7.2516
|
[2]: https://www.openstreetmap.org/?mlat=47.14426%2C7.24994&mlon=7.24994&zoom=17#map=16/47.14420/7.2516
|
||||||
[3]: http://www.camping-sutz.ch/en/
|
[3]: https://camping-sutz.ch/
|
||||||
|
|
|
@ -5,36 +5,43 @@ menu:
|
||||||
main:
|
main:
|
||||||
weight: 600
|
weight: 600
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
## Luogo
|
## Luogo
|
||||||
|
|
||||||
La CoSin si svolge {{< cosin_i18n "location_name_preposition" >}} [{{< cosin_i18n "location_name" >}}][1] a {{< cosin_i18n "location_city" >}}.
|
La CoSin si svolge {{< cosin_i18n "location_name_preposition" >}} [{{< cosin_i18n "location_name" >}}][1] a {{< cosin_i18n "location_city" >}}.
|
||||||
|
|
||||||
## Foto
|
## Foto
|
||||||
|
|
||||||
[![CoSin 2011](/photos/2011/front.small.jpg)](/photos/2011/front.jpg "Front")
|
[![CoSin 2011](/photos/2011/front.small.jpg)](/photos/2011/front.jpg "Front") [![CoSin 2011](/photos/2011/hackcenter.small.jpg)](/photos/2011/hackcenter.jpg "Hackcenter") [![CoSin 2011](/photos/2011/talk.small.jpg)](/photos/2011/talk.jpg "Talk") [![CoSin 2011](/photos/2011/cinema.small.jpg)](/photos/2011/cinema.jpg "Cinema") [![CoSin 2011](/photos/2011/workshop.small.jpg)](/photos/2011/workshop.jpg "Workshop") [![CoSin 2011](/photos/2011/workshop2.small.jpg)](/photos/2011/workshop2.jpg "Workshop") [![CoSin 2011](/photos/2011/roof.small.jpg)](/photos/2011/roof.jpg "Roof")
|
||||||
[![CoSin 2011](/photos/2011/hackcenter.small.jpg)](/photos/2011/hackcenter.jpg "Hackcenter")
|
|
||||||
[![CoSin 2011](/photos/2011/talk.small.jpg)](/photos/2011/talk.jpg "Talk")
|
|
||||||
[![CoSin 2011](/photos/2011/cinema.small.jpg)](/photos/2011/cinema.jpg "Cinema")
|
|
||||||
[![CoSin 2011](/photos/2011/workshop.small.jpg)](/photos/2011/workshop.jpg "Workshop")
|
|
||||||
[![CoSin 2011](/photos/2011/workshop2.small.jpg)](/photos/2011/workshop2.jpg "Workshop")
|
|
||||||
[![CoSin 2011](/photos/2011/roof.small.jpg)](/photos/2011/roof.jpg "Roof")
|
|
||||||
|
|
||||||
## Come raggiungere la Villa Ritter
|
## Come raggiungere la Villa Ritter
|
||||||
|
|
||||||
* Indirizzo: Faubourg du Jura 36, 2502 Biel/Bienne
|
* Indirizzo: Faubourg du Jura 36, 2502 Biel/Bienne
|
||||||
* [OpenStreetMap][2]
|
|
||||||
* La stazione FFS é a circa 15 minuti a piedi
|
* La stazione FFS é a circa 15 minuti a piedi
|
||||||
* Parcheggi ci sono sul posto
|
* Parcheggi ci sono sul posto
|
||||||
|
|
||||||
|
## Karte
|
||||||
|
|
||||||
|
<iframe class="openstreetmap" src="https://www.openstreetmap.org/export/embed.html?bbox=7.216086387634278%2C47.129220828331846%2C7.287755012512208%2C47.15406195569846&layer=mapnik&marker=47.14426%2C7.24994">
|
||||||
|
</iframe>
|
||||||
|
|
||||||
|
[Grössere Karte][2]
|
||||||
|
|
||||||
|
## Coordinate WGS84
|
||||||
|
|
||||||
|
$ kdig +short -t LOC cosin.ch.
|
||||||
|
47 8 39.336 N 7 14 59.784 E 444m 30m 5m 10m
|
||||||
|
|
||||||
|
o in parole meno tecnicamente:
|
||||||
|
|
||||||
|
- Latitudine: *47.14426° nord*
|
||||||
|
- Longitudine: *7.24994° est*
|
||||||
|
|
||||||
## Pernottamento
|
## Pernottamento
|
||||||
|
|
||||||
Chi vuole dormire sul posto può farlo all'interno dell'edificio portando un materassino
|
Chi vuole dormire sul posto può farlo all'interno dell'edificio portando un materassino e un sacco letto.
|
||||||
e un sacco letto.
|
|
||||||
|
|
||||||
Eine andere Option ist der [Campingplatz][3], etwa 15 Minuten mit dem Velo.
|
Eine andere Option ist der [Campingplatz][3], etwa 15 Minuten mit dem Velo.
|
||||||
|
|
||||||
[1]: {{< cosin "location_url" >}}
|
[1]: {{< cosin "location_url" >}}
|
||||||
[2]: https://www.openstreetmap.org/?mlat=47.14426%2C7.24994&mlon=7.24994&zoom=17#map=16/47.14420/7.2516
|
[2]: https://www.openstreetmap.org/?mlat=47.14426%2C7.24994&mlon=7.24994&zoom=17#map=16/47.14420/7.2516
|
||||||
[3]: http://www.camping-sutz.ch/en/
|
[3]: https://camping-sutz.ch/
|
||||||
|
|
|
@ -5,7 +5,31 @@ menu:
|
||||||
main:
|
main:
|
||||||
weight: 200
|
weight: 200
|
||||||
---
|
---
|
||||||
|
## CoSin 2024
|
||||||
|
|
||||||
|
{{< gallery 2024 >}}
|
||||||
|
|
||||||
|
## CoSin 2023
|
||||||
|
|
||||||
|
{{< gallery 2023 >}}
|
||||||
|
|
||||||
|
## CoSin 2022
|
||||||
|
|
||||||
|
In diesem Jahr gab es keine CoSin.
|
||||||
|
|
||||||
|
## CoSin 2021
|
||||||
|
|
||||||
|
In diesem Jahr gab es keine CoSin.
|
||||||
|
|
||||||
|
## CoSin 2020
|
||||||
|
|
||||||
|
{{< gallery 2020 >}}
|
||||||
|
|
||||||
|
In diesem Jahr gab es keine CoSin.
|
||||||
|
|
||||||
|
## CoSin 2019
|
||||||
|
|
||||||
|
{{< gallery 2019 >}}
|
||||||
|
|
||||||
## CoSin 2018
|
## CoSin 2018
|
||||||
|
|
||||||
|
@ -33,8 +57,7 @@ menu:
|
||||||
|
|
||||||
## 2012
|
## 2012
|
||||||
|
|
||||||
Da das Easterhegg 2012 in der Schweiz stattfand,
|
Da das [Easterhegg 2012](https://eh12.easterhegg.ch/home) in der Schweiz stattfand, gab es in diesem Jahr keine CoSin.
|
||||||
gab es in diesem Jahr kein CoSin.
|
|
||||||
|
|
||||||
## CoSin 2011
|
## CoSin 2011
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,31 @@ menu:
|
||||||
main:
|
main:
|
||||||
weight: 200
|
weight: 200
|
||||||
---
|
---
|
||||||
|
## CoSin 2024
|
||||||
|
|
||||||
|
{{< gallery 2024 >}}
|
||||||
|
|
||||||
|
## CoSin 2023
|
||||||
|
|
||||||
|
{{< gallery 2023 >}}
|
||||||
|
|
||||||
|
## CoSin 2022
|
||||||
|
|
||||||
|
There was no CoSin in this year.
|
||||||
|
|
||||||
|
## CoSin 2021
|
||||||
|
|
||||||
|
There was no CoSin in this year.
|
||||||
|
|
||||||
|
## CoSin 2020
|
||||||
|
|
||||||
|
{{< gallery 2020 >}}
|
||||||
|
|
||||||
|
There was no CoSin in this year.
|
||||||
|
|
||||||
|
## CoSin 2019
|
||||||
|
|
||||||
|
{{< gallery 2019 >}}
|
||||||
|
|
||||||
## CoSin 2018
|
## CoSin 2018
|
||||||
|
|
||||||
|
@ -33,8 +57,7 @@ menu:
|
||||||
|
|
||||||
## 2012
|
## 2012
|
||||||
|
|
||||||
Due to the Easterhegg 2012 taking place in
|
Due to the [Easterhegg 2012](https://eh12.easterhegg.ch/home) taking place in Switzerland there was no CoSin.
|
||||||
Switzerland there was no CoSin.
|
|
||||||
|
|
||||||
## CoSin 2011
|
## CoSin 2011
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,31 @@ menu:
|
||||||
main:
|
main:
|
||||||
weight: 200
|
weight: 200
|
||||||
---
|
---
|
||||||
|
## CoSin 2024
|
||||||
|
|
||||||
|
{{< gallery 2024 >}}
|
||||||
|
|
||||||
|
## CoSin 2023
|
||||||
|
|
||||||
|
{{< gallery 2023 >}}
|
||||||
|
|
||||||
|
## CoSin 2022
|
||||||
|
|
||||||
|
There was no CoSin in this year.
|
||||||
|
|
||||||
|
## CoSin 2021
|
||||||
|
|
||||||
|
There was no CoSin in this year.
|
||||||
|
|
||||||
|
## CoSin 2020
|
||||||
|
|
||||||
|
{{< gallery 2020 >}}
|
||||||
|
|
||||||
|
There was no CoSin in this year.
|
||||||
|
|
||||||
|
## CoSin 2019
|
||||||
|
|
||||||
|
{{< gallery 2019 >}}
|
||||||
|
|
||||||
## CoSin 2018
|
## CoSin 2018
|
||||||
|
|
||||||
|
@ -33,8 +57,7 @@ menu:
|
||||||
|
|
||||||
## 2012
|
## 2012
|
||||||
|
|
||||||
Da das Easterhegg 2012 in der Schweiz stattfand,
|
Comme l'[Easterhegg 2012](https://eh12.easterhegg.ch/home) s'est déroulé en Suisse, il n'y a pas eu de CoSin cette année.
|
||||||
gab es in diesem Jahr kein CoSin.
|
|
||||||
|
|
||||||
## CoSin 2011
|
## CoSin 2011
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,31 @@ menu:
|
||||||
main:
|
main:
|
||||||
weight: 200
|
weight: 200
|
||||||
---
|
---
|
||||||
|
## CoSin 2024
|
||||||
|
|
||||||
|
{{< gallery 2024 >}}
|
||||||
|
|
||||||
|
## CoSin 2023
|
||||||
|
|
||||||
|
{{< gallery 2023 >}}
|
||||||
|
|
||||||
|
## CoSin 2022
|
||||||
|
|
||||||
|
There was no CoSin in this year.
|
||||||
|
|
||||||
|
## CoSin 2021
|
||||||
|
|
||||||
|
There was no CoSin in this year.
|
||||||
|
|
||||||
|
## CoSin 2020
|
||||||
|
|
||||||
|
{{< gallery 2020 >}}
|
||||||
|
|
||||||
|
There was no CoSin in this year.
|
||||||
|
|
||||||
|
## CoSin 2019
|
||||||
|
|
||||||
|
{{< gallery 2019 >}}
|
||||||
|
|
||||||
## CoSin 2018
|
## CoSin 2018
|
||||||
|
|
||||||
|
@ -33,8 +57,7 @@ menu:
|
||||||
|
|
||||||
## 2012
|
## 2012
|
||||||
|
|
||||||
Da das Easterhegg 2012 in der Schweiz stattfand,
|
Da das [Easterhegg 2012](https://eh12.easterhegg.ch/home) in der Schweiz stattfand, gab es in diesem Jahr keine CoSin.
|
||||||
gab es in diesem Jahr kein CoSin.
|
|
||||||
|
|
||||||
## CoSin 2011
|
## CoSin 2011
|
||||||
|
|
||||||
|
|
|
@ -5,26 +5,17 @@ menu:
|
||||||
main:
|
main:
|
||||||
weight: 400
|
weight: 400
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
## Projekte und Workshops
|
## Projekte und Workshops
|
||||||
|
|
||||||
Wir suchen noch nach interessanten Projekten die sich gerne an der
|
Wir suchen noch nach interessanten Projekten die sich gerne an der CoSin präsentieren möchten. Wenn du ein cooles Projekt hast das du gerne zur CoSin bringen würdest, falls du einen Tisch für deinen Hackspace brauchst oder du in einem Workshop Wissen und Skills weitergeben möchtest dann schicke [uns](mailto:{{< cosin "orga_email" >}}) bitte eine Email mit den Eckdaten:
|
||||||
CoSin präsentieren möchten. Wenn du ein cooles Projekt hast das du
|
|
||||||
gerne zur CoSin bringen würdest, falls du einen Tisch für deinen
|
|
||||||
Hackerspace brauchst oder du in einem Workshop Wissen und Skills
|
|
||||||
weitergeben möchtest dann schicke [uns](mailto:{{< cosin "orga_email" >}})
|
|
||||||
bitte eine Email mit den Eckdaten:
|
|
||||||
|
|
||||||
* Projektname
|
* Projektname
|
||||||
* Kurze Beschreibung
|
* Kurze Beschreibung
|
||||||
* Wie viele (sitz)Plätze braucht das Projekt
|
* Wie viele (sitz)Plätze braucht das Projekt
|
||||||
* Braucht ihr eventuell finanzielle Unterstützung
|
* Braucht ihr eventuell finanzielle Unterstützung
|
||||||
|
|
||||||
Bitte meldet euch frühzeitig, damit wir die Ressourcen gerecht
|
Bitte meldet euch frühzeitig, damit wir die Ressourcen gerecht verteilen können.
|
||||||
verteilen können.
|
|
||||||
|
|
||||||
|
## Flüssigstickstoffglace an der CoSin
|
||||||
|
|
||||||
## Flüssigstickstoffglace am CoSin
|
![IceCream](/pictures/icecream.jpg "Flüssigstickstoffglace an der CoSin 2008")
|
||||||
|
|
||||||
![IceCream](/images/icecream.jpg "Flüssigstickstoffglace am CoSin 2008")
|
|
||||||
|
|
|
@ -5,24 +5,17 @@ menu:
|
||||||
main:
|
main:
|
||||||
weight: 400
|
weight: 400
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
## Projects and Workshops
|
## Projects and Workshops
|
||||||
|
|
||||||
We are looking for interesting projects that would like to present
|
We are looking for interesting projects that would like to present themselves at CoSin. If you have a cool project that you'd like to bring to CoSin, if you need a table for your hackspace or if you'd like to pass on knowledge and skills in a workshop, please email [us](mailto:{{< cosin "orga_email" >}}) these informations:
|
||||||
themselves at CoSin. If you have a cool project that you'd like to
|
|
||||||
bring to CoSin, if you need a table for your hackerspace or if you'd
|
|
||||||
like to pass on knowledge and skills in a workshop, please email
|
|
||||||
[us](mailto:{{< cosin "orga_email" >}}) these informations:
|
|
||||||
|
|
||||||
* Name of the project / hackerspace / workshop
|
* Name of the project / hackspace / workshop
|
||||||
* A short description thereof
|
* A short description thereof
|
||||||
* How many seats do you need for your project?
|
* How many seats do you need for your project?
|
||||||
* Do you need financial support?
|
* Do you need financial support?
|
||||||
|
|
||||||
Please send this information early so we can divide the resources
|
Please send this information early so we can divide the resources equitable.
|
||||||
equitable.
|
|
||||||
|
|
||||||
## IceCream Workshop at CoSin
|
## IceCream Workshop at CoSin
|
||||||
|
|
||||||
![IceCream](/images/icecream.jpg "IceCream Workshop at CoSin 2008")
|
![IceCream](/pictures/icecream.jpg "IceCream Workshop at CoSin 2008")
|
||||||
|
|
|
@ -5,24 +5,17 @@ menu:
|
||||||
main:
|
main:
|
||||||
weight: 400
|
weight: 400
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
## Projets et Ateliers
|
## Projets et Ateliers
|
||||||
|
|
||||||
Nous cherchons encore des projets intéressants à présenter. Si tu as
|
Nous cherchons encore des projets intéressants à présenter. Si tu as un projet cool que tu aimerais bien apporter au CoSin, si jamais tu as besoin d’une table pour ton hackspace ou si tu souhaite partager tes connaissances et compétences dans un atelier, dans ce cas envoie [nous](mailto:{{< cosin "orga_email" >}}) s.t.p un email avec les références suivantes:
|
||||||
un projet cool que tu aimerais bien apporter au CoSin, si jamais tu as
|
|
||||||
besoin d’une table pour ton hackerspace ou si tu souhaite partager tes
|
|
||||||
connaissances et compétences dans un atelier, dans ce cas envoie
|
|
||||||
[nous](mailto:{{< cosin "orga_email" >}})
|
|
||||||
s.t.p un email avec les références suivantes:
|
|
||||||
|
|
||||||
* Nom du projet Courte description Combien de places (assises) sont
|
* Nom du projet
|
||||||
nécessaires au projet ?
|
* Courte description
|
||||||
* As-tu éventuellement besoin d’un soutien financier ?
|
* Combien de places (assises) sont nécessaires au projet?
|
||||||
|
* As-tu éventuellement besoin d’un soutien financier?
|
||||||
|
|
||||||
S.v.p annoncez-vous suffisamment tôt afin que nous puissions
|
S.v.p annoncez-vous suffisamment tôt afin que nous puissions distribuer les ressources de manière équitable.
|
||||||
distribuer les ressources de manière équitable.
|
|
||||||
|
|
||||||
## Flüssigstickstoffglace am CoSin
|
## Flüssigstickstoffglace an der CoSin
|
||||||
|
|
||||||
![IceCream](/images/icecream.jpg "Flüssigstickstoffglace am CoSin 2008")
|
![IceCream](/pictures/icecream.jpg "Flüssigstickstoffglace an der CoSin 2008")
|
||||||
|
|
|
@ -5,23 +5,17 @@ menu:
|
||||||
main:
|
main:
|
||||||
weight: 400
|
weight: 400
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
## Progetti e Workshops
|
## Progetti e Workshops
|
||||||
|
|
||||||
Siamo alla ricerca di ulteriori progetti interessanti da presentare alla CoSin.
|
Siamo alla ricerca di ulteriori progetti interessanti da presentare alla CoSin. Se hai un progetto interessante da portare alla CoSin, se hai bisogno di un tavolo per il tuo Hackspace, o se vuoi offrire le tue conoscenze e capacità in un workshop, allora [scrivici un email](mailto:{{< cosin "orga_email" >}}) con le coordinate:
|
||||||
Se hai un progetto interessante da portare alla CoSin, se hai bisogno di un tavolo per
|
|
||||||
il tuo Hackerspace, o se vuoi offrire le tue conoscenze e capacità in un workshop, allora
|
|
||||||
[scrivici un email](mailto:{{< cosin "orga_email" >}}) con le coordinate:
|
|
||||||
|
|
||||||
* Nome del progetto
|
* Nome del progetto
|
||||||
* Breve descrizione
|
* Breve descrizione
|
||||||
* Quanti posti a sedere ti servono
|
* Quanti posti a sedere ti servono
|
||||||
* Servono eventualmente contributi finanziari?
|
* Servono eventualmente contributi finanziari?
|
||||||
|
|
||||||
Vi preghiamo di annunciare i progetti in anticipo, cosicché possiamo equamente
|
Vi preghiamo di annunciare i progetti in anticipo, cosicché possiamo equamente distribuire le nostre risorse.
|
||||||
distribuire le nostre risorse.
|
|
||||||
|
|
||||||
## Flüssigstickstoffglace am CoSin
|
## Flüssigstickstoffglace an der CoSin
|
||||||
|
|
||||||
![IceCream](/images/icecream.jpg "Flüssigstickstoffglace am CoSin 2008")
|
![IceCream](/pictures/icecream.jpg "Flüssigstickstoffglace an der CoSin 2008")
|
||||||
|
|
|
@ -1,57 +1,68 @@
|
||||||
title = "Chaos Singularity"
|
title = "Chaos Singularity"
|
||||||
|
|
||||||
date_year = 2019
|
date_year = 2024
|
||||||
cos_value = -0.5027006789909887
|
cos_value = 0.6863550242365264
|
||||||
|
|
||||||
|
is_cancelled = false
|
||||||
|
|
||||||
# Set to false if date for next year is not known yet:
|
# Set to false if date for next year is not known yet:
|
||||||
date_known = true
|
date_known = false
|
||||||
|
|
||||||
date_start_weekday = "Freitag"
|
date_start_weekday = "Freitag"
|
||||||
date_start_day = 14
|
date_start_day = 28
|
||||||
date_start_month = "Juni"
|
date_start_month = "Juni"
|
||||||
|
|
||||||
date_end_weekday = "Sonntag"
|
date_end_weekday = "Sonntag"
|
||||||
date_end_day = 16
|
date_end_day = 30
|
||||||
date_end_month = "Juni"
|
date_end_month = "Juni"
|
||||||
|
|
||||||
|
|
||||||
location_known = true
|
location_known = false
|
||||||
|
|
||||||
location_name = "LocationVillaRitter"
|
location_name = "LocationVillaRitter"
|
||||||
location_name_preposition = "PrepositionAndArticleForLocationVillaRitter"
|
location_name_preposition = "PrepositionAndArticleForLocationVillaRitter"
|
||||||
location_url = "http://www.villa-ritter.ch/"
|
location_url = "https://www.villa-ritter.ch/"
|
||||||
location_city = "Biel"
|
location_city = "Biel"
|
||||||
|
|
||||||
|
|
||||||
registration_open = false
|
registration_open = false
|
||||||
registration_email = "mampf2019@cosin.ch"
|
registration_email = "mampf2024@cosin.ch"
|
||||||
entrance_fee = "CHF 20"
|
registration_url = "https://pretix.cosin.ch/cosin/cosin2024/"
|
||||||
food_fee = "CHF 6"
|
entrance_fee = "CHF 30"
|
||||||
|
|
||||||
|
|
||||||
flyer_available = true
|
flyer_available = false
|
||||||
flyer_path = "flyer_cosin2019.pdf"
|
flyer_path = "flyer_cosin2020.pdf"
|
||||||
|
|
||||||
|
|
||||||
cfp_running = true
|
cfp_running = false
|
||||||
cfp_url = "https://frab.ccczh.ch/en/cosin/cfp/session/new"
|
cfp_url = "https://pretalx.cosin.ch/cosin-2024/cfp"
|
||||||
|
|
||||||
cfp_end_date_weekday = "Freitag"
|
cfp_end_date_weekday = "Sonntag"
|
||||||
cfp_end_date_day = 31
|
cfp_end_date_day = 9
|
||||||
cfp_end_date_month = "Mai"
|
cfp_end_date_month = "Juni"
|
||||||
|
|
||||||
|
|
||||||
schedule_available = false
|
schedule_available = false
|
||||||
schedule_main_url = "https://www.cosin.ch/fahrplan/2018/index.html"
|
schedule_main_url = "https://pretalx.cosin.ch/cosin-2024/schedule/"
|
||||||
schedule_day_urls = [
|
schedule_day_urls = [
|
||||||
"https://www.cosin.ch/fahrplan/2018/schedule/1.html",
|
"https://pretalx.cosin.ch/cosin-2024/schedule/#2024-06-28",
|
||||||
"https://www.cosin.ch/fahrplan/2018/schedule/2.html",
|
"https://pretalx.cosin.ch/cosin-2024/schedule/#2024-06-29",
|
||||||
"https://www.cosin.ch/fahrplan/2018/schedule/3.html"]
|
"https://pretalx.cosin.ch/cosin-2024/schedule/#2024-06-30"]
|
||||||
|
|
||||||
|
streaming_available = false
|
||||||
|
streaming_main_url = "https://streaming.cosin.ch"
|
||||||
|
|
||||||
|
|
||||||
irc_server = "ircs://irc.chaostreff.ch:6601/"
|
irc_server = "ircs://irc.chaostreff.ch:6601/"
|
||||||
irc_channel = "#cosin"
|
irc_channel = "#cosin"
|
||||||
|
|
||||||
|
matrix_space = "#cosin"
|
||||||
|
matrix_server = "fairydust.space"
|
||||||
|
matrix_to = "https://mto.kabelsalat.ch/#/"
|
||||||
|
matrix_client = "https://chat.fairydust.space/#/room/"
|
||||||
|
|
||||||
orga_email = "cosin2019@cosin.ch"
|
mastodon_server = "https://chaos.social/"
|
||||||
|
mastodon_handle = "@CoSin"
|
||||||
|
|
||||||
|
orga_email = "cosin2024@cosin.ch"
|
||||||
|
|
|
@ -1,3 +1,89 @@
|
||||||
|
2024 = [
|
||||||
|
"cosin_24_1",
|
||||||
|
"cosin_24_2",
|
||||||
|
"cosin_24_3",
|
||||||
|
"cosin_24_12",
|
||||||
|
"cosin_24_23",
|
||||||
|
"cosin_24_14",
|
||||||
|
"cosin_24_8",
|
||||||
|
"cosin_24_13",
|
||||||
|
"cosin_24_19",
|
||||||
|
"cosin_24_10",
|
||||||
|
"cosin_24_9",
|
||||||
|
"cosin_24_22",
|
||||||
|
"cosin_24_7",
|
||||||
|
"cosin_24_5",
|
||||||
|
"cosin_24_16",
|
||||||
|
"cosin_24_6",
|
||||||
|
"cosin_24_11",
|
||||||
|
"cosin_24_18",
|
||||||
|
"cosin_24_20",
|
||||||
|
"cosin_24_21",
|
||||||
|
"cosin_24_15",
|
||||||
|
"cosin_24_4",
|
||||||
|
"cosin_24_17"]
|
||||||
|
|
||||||
|
2023 = [
|
||||||
|
"cosin_23_14",
|
||||||
|
"cosin_23_16",
|
||||||
|
"cosin_23_6",
|
||||||
|
"cosin_23_12",
|
||||||
|
"cosin_23_0",
|
||||||
|
"cosin_23_24",
|
||||||
|
"cosin_23_15",
|
||||||
|
"cosin_23_5",
|
||||||
|
"cosin_23_1",
|
||||||
|
"cosin_23_2",
|
||||||
|
"cosin_23_19",
|
||||||
|
"cosin_23_11",
|
||||||
|
"cosin_23_8",
|
||||||
|
"cosin_23_4",
|
||||||
|
"cosin_23_17",
|
||||||
|
"cosin_23_18",
|
||||||
|
"cosin_23_9",
|
||||||
|
"cosin_23_7",
|
||||||
|
"cosin_23_10",
|
||||||
|
"cosin_23_21",
|
||||||
|
"cosin_23_20",
|
||||||
|
"cosin_23_27",
|
||||||
|
"cosin_23_26",
|
||||||
|
"cosin_23_30",
|
||||||
|
"cosin_23_22",
|
||||||
|
"cosin_23_25",
|
||||||
|
"cosin_23_3",
|
||||||
|
"cosin_23_13",
|
||||||
|
"cosin_23_23",
|
||||||
|
"cosin_23_28",
|
||||||
|
"cosin_23_29"]
|
||||||
|
|
||||||
|
2020 = [
|
||||||
|
"cosin_20_0"]
|
||||||
|
|
||||||
|
2019 = [
|
||||||
|
"cosin_19_0",
|
||||||
|
"cosin_19_18",
|
||||||
|
"cosin_19_15",
|
||||||
|
"cosin_19_1",
|
||||||
|
"cosin_19_2",
|
||||||
|
"cosin_19_13",
|
||||||
|
"cosin_19_4",
|
||||||
|
"cosin_19_6",
|
||||||
|
"cosin_19_3",
|
||||||
|
"cosin_19_7",
|
||||||
|
"cosin_19_5",
|
||||||
|
"cosin_19_14",
|
||||||
|
"cosin_19_11",
|
||||||
|
"cosin_19_12",
|
||||||
|
#"cosin_19_8",
|
||||||
|
"cosin_19_9",
|
||||||
|
"cosin_19_10",
|
||||||
|
"cosin_19_16",
|
||||||
|
"cosin_19_17",
|
||||||
|
"cosin_19_21",
|
||||||
|
"cosin_19_22",
|
||||||
|
"cosin_19_19",
|
||||||
|
"cosin_19_20"]
|
||||||
|
|
||||||
2018 = [
|
2018 = [
|
||||||
"cosin_18_0",
|
"cosin_18_0",
|
||||||
"cosin_18_2",
|
"cosin_18_2",
|
||||||
|
@ -17,6 +103,9 @@
|
||||||
"cosin_18_18",
|
"cosin_18_18",
|
||||||
"cosin_18_19",
|
"cosin_18_19",
|
||||||
"cosin_18_14",
|
"cosin_18_14",
|
||||||
|
"cosin_18_30",
|
||||||
|
"cosin_18_28",
|
||||||
|
"cosin_18_29",
|
||||||
"cosin_18_23",
|
"cosin_18_23",
|
||||||
"cosin_18_24",
|
"cosin_18_24",
|
||||||
"cosin_18_5",
|
"cosin_18_5",
|
||||||
|
@ -64,7 +153,9 @@
|
||||||
"cosin_16_7",
|
"cosin_16_7",
|
||||||
"cosin_16_2",
|
"cosin_16_2",
|
||||||
"cosin_16_11",
|
"cosin_16_11",
|
||||||
"cosin_16_4"]
|
"cosin_16_4",
|
||||||
|
"cosin_16_13",
|
||||||
|
"cosin_16_12"]
|
||||||
|
|
||||||
2015 = [
|
2015 = [
|
||||||
"cosin_15_3",
|
"cosin_15_3",
|
||||||
|
@ -146,6 +237,7 @@
|
||||||
"netbsd"]
|
"netbsd"]
|
||||||
|
|
||||||
2006 = [
|
2006 = [
|
||||||
|
"cosin_06_0",
|
||||||
"dscf1041",
|
"dscf1041",
|
||||||
"dscf1042",
|
"dscf1042",
|
||||||
"dscf1047",
|
"dscf1047",
|
||||||
|
|
|
@ -1,7 +1,15 @@
|
||||||
|
[Montag]
|
||||||
|
other = "Montag"
|
||||||
|
[Dienstag]
|
||||||
|
other = "Dienstag"
|
||||||
|
[Mittwoch]
|
||||||
|
other = "Mittwoch"
|
||||||
[Donnerstag]
|
[Donnerstag]
|
||||||
other = "Donnerstag"
|
other = "Donnerstag"
|
||||||
[Freitag]
|
[Freitag]
|
||||||
other = "Freitag"
|
other = "Freitag"
|
||||||
|
[Samstag]
|
||||||
|
other = "Samstag"
|
||||||
[Sonntag]
|
[Sonntag]
|
||||||
other = "Sonntag"
|
other = "Sonntag"
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,15 @@
|
||||||
|
[Montag]
|
||||||
|
other = "Monday"
|
||||||
|
[Dienstag]
|
||||||
|
other = "Tuesday"
|
||||||
|
[Mittwoch]
|
||||||
|
other = "Wednesday"
|
||||||
[Donnerstag]
|
[Donnerstag]
|
||||||
other = "Thursday"
|
other = "Thursday"
|
||||||
[Freitag]
|
[Freitag]
|
||||||
other = "Friday"
|
other = "Friday"
|
||||||
|
[Samstag]
|
||||||
|
other = "Saturday"
|
||||||
[Sonntag]
|
[Sonntag]
|
||||||
other = "Sunday"
|
other = "Sunday"
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,15 @@
|
||||||
|
[Montag]
|
||||||
|
other = "lundi"
|
||||||
|
[Dienstag]
|
||||||
|
other = "mardi"
|
||||||
|
[Mittwoch]
|
||||||
|
other = "mercredi"
|
||||||
[Donnerstag]
|
[Donnerstag]
|
||||||
other = "jeudi"
|
other = "jeudi"
|
||||||
[Freitag]
|
[Freitag]
|
||||||
other = "vendredi"
|
other = "vendredi"
|
||||||
|
[Samstag]
|
||||||
|
other = "samedi"
|
||||||
[Sonntag]
|
[Sonntag]
|
||||||
other = "dimanche"
|
other = "dimanche"
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,15 @@
|
||||||
|
[Montag]
|
||||||
|
other = "lunedì"
|
||||||
|
[Dienstag]
|
||||||
|
other = "martedì"
|
||||||
|
[Mittwoch]
|
||||||
|
other = "mercoledì"
|
||||||
[Donnerstag]
|
[Donnerstag]
|
||||||
other = "giovedì"
|
other = "giovedì"
|
||||||
[Freitag]
|
[Freitag]
|
||||||
other = "venerdì"
|
other = "venerdì"
|
||||||
|
[Samstag]
|
||||||
|
other = "sabato"
|
||||||
[Sonntag]
|
[Sonntag]
|
||||||
other = "domenica"
|
other = "domenica"
|
||||||
|
|
||||||
|
|
|
@ -1,12 +1,15 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang='{{ .Site.Language.Lang }}'>
|
<html lang='{{ .Site.Language.Lang }}'>
|
||||||
<head>
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
<title>{{ .Site.Title }} | {{ .Page.Title }}</title>
|
<title>{{ .Site.Title }} | {{ .Page.Title }}</title>
|
||||||
|
|
||||||
<meta charset="utf-8">
|
<!-- Include our own css last -->
|
||||||
{{ .Hugo.Generator }}
|
{{ $options := dict "targetPath" "custom.css" "outputStyle" "compressed" }}
|
||||||
|
{{ $style := resources.Get "/sass/custom.css" | resources.ToCSS $options | resources.Fingerprint }}
|
||||||
|
<link rel="stylesheet" href="{{ $style.Permalink }}" integrity="{{ $style.Data.Integrity }}"/>
|
||||||
|
|
||||||
<link href='{{ "css/custom.css" | absURL }}' rel="stylesheet" type="text/css" />
|
{{ partial "opengraph.html" .}}
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
24
layouts/alias.html
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>{{ .Permalink }}</title>
|
||||||
|
<link rel="canonical" href="{{ .Permalink }}"/>
|
||||||
|
|
||||||
|
<meta charset="utf-8"/>
|
||||||
|
<meta name="robots" content="noindex"/>
|
||||||
|
|
||||||
|
<meta http-equiv="refresh" content="0; url={{ .Permalink }}"/>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website"/>
|
||||||
|
<meta property="og:site_name" content="CoSin - Chaos Singularity"/>
|
||||||
|
<meta property="og:title" content="Hauptseite"/>
|
||||||
|
<meta property="og:url" content="{{ .Permalink }}"/>
|
||||||
|
<meta property="og:image" content="https://www.cosin.ch/images/ogp/cosin_icon_2021.png"/>
|
||||||
|
<meta property="og:image:type" content="image/png"/>
|
||||||
|
<meta property="og:image:width" content="128"/>
|
||||||
|
<meta property="og:image:height" content="128"/>
|
||||||
|
<meta property="og:image:alt" content="CoSin Icon 2021"/>
|
||||||
|
|
||||||
|
<link rel="me" href="https://chaos.social/@CoSin"/>
|
||||||
|
</head>
|
||||||
|
</html>
|
12
layouts/partials/anmeldung.de.html
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
{{ if .Site.Data.cosin.registration_open }}
|
||||||
|
<p>
|
||||||
|
Die Anmeldung für die diesjährige CoSin ist offen:
|
||||||
|
</p>
|
||||||
|
<ul>
|
||||||
|
<li><a href="{{ .Site.Data.cosin.registration_url }}">Anmeldung CoSin {{ .Site.Data.cosin.date_year }}</a></li>
|
||||||
|
</ul>
|
||||||
|
{{ else }}
|
||||||
|
<p>
|
||||||
|
Die Anmeldung ist aktuell geschlossen.
|
||||||
|
</p>
|
||||||
|
{{ end }}
|
12
layouts/partials/anmeldung.en.html
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
{{ if .Site.Data.cosin.registration_open }}
|
||||||
|
<p>
|
||||||
|
Registration for this year's CoSin is open:
|
||||||
|
</p>
|
||||||
|
<ul>
|
||||||
|
<li><a href="{{ .Site.Data.cosin.registration_url }}">Registration CoSin {{ .Site.Data.cosin.date_year }}</a></li>
|
||||||
|
</ul>
|
||||||
|
{{ else }}
|
||||||
|
<p>
|
||||||
|
The registration is currently closed.
|
||||||
|
</p>
|
||||||
|
{{ end }}
|
12
layouts/partials/anmeldung.fr.html
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
{{ if .Site.Data.cosin.registration_open }}
|
||||||
|
<p>
|
||||||
|
Inscription:
|
||||||
|
</p>
|
||||||
|
<ul>
|
||||||
|
<li><a href="{{ .Site.Data.cosin.registration_url }}">Inscription CoSin {{ .Site.Data.cosin.date_year }}</a></li>
|
||||||
|
</ul>
|
||||||
|
{{ else }}
|
||||||
|
<p>
|
||||||
|
Die Anmeldung ist aktuell geschlossen.
|
||||||
|
</p>
|
||||||
|
{{ end }}
|
12
layouts/partials/anmeldung.it.html
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
{{ if .Site.Data.cosin.registration_open }}
|
||||||
|
<p>
|
||||||
|
Registrazione per CoSin:
|
||||||
|
</p>
|
||||||
|
<ul>
|
||||||
|
<li><a href="{{ .Site.Data.cosin.registration_url }}">Registrazione per CoSin {{ .Site.Data.cosin.date_year }}</a></li>
|
||||||
|
</ul>
|
||||||
|
{{ else }}
|
||||||
|
<p>
|
||||||
|
Die Anmeldung ist aktuell geschlossen.
|
||||||
|
</p>
|
||||||
|
{{ end }}
|
15
layouts/partials/cfp.de.html
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
{{ if .Site.Data.cosin.cfp_running }}
|
||||||
|
<p>
|
||||||
|
Das CfP für die diesjährige CoSin ist offen:
|
||||||
|
</p>
|
||||||
|
<ul>
|
||||||
|
<li><a href="{{ .Site.Data.cosin.cfp_url }}">Beitrag zur CoSin {{ .Site.Data.cosin.date_year }} einreichen</a></li>
|
||||||
|
</ul>
|
||||||
|
<p>
|
||||||
|
Einreicheschluss ist am {{ i18n .Site.Data.cosin.cfp_end_date_weekday }}, {{ .Site.Data.cosin.cfp_end_date_day }}. {{ i18n .Site.Data.cosin.cfp_end_date_month }} {{ .Site.Data.cosin.date_year }}.
|
||||||
|
</p>
|
||||||
|
{{ else }}
|
||||||
|
<p>
|
||||||
|
Das CfP ist aktuell geschlossen.
|
||||||
|
</p>
|
||||||
|
{{ end }}
|
15
layouts/partials/cfp.en.html
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
{{ if .Site.Data.cosin.cfp_running }}
|
||||||
|
<p>
|
||||||
|
The CfP for this year's CoSin is open:
|
||||||
|
</p>
|
||||||
|
<ul>
|
||||||
|
<li><a href="{{ .Site.Data.cosin.cfp_url }}">Submit contribution to CoSin {{ .Site.Data.cosin.date_year }}</a></li>
|
||||||
|
</ul>
|
||||||
|
<p>
|
||||||
|
The deadline is {{ i18n .Site.Data.cosin.cfp_end_date_weekday }}, {{ humanize .Site.Data.cosin.cfp_end_date_day }} {{ i18n .Site.Data.cosin.cfp_end_date_month }} {{ .Site.Data.cosin.date_year }}.
|
||||||
|
</p>
|
||||||
|
{{ else }}
|
||||||
|
<p>
|
||||||
|
The CfP is currently closed.
|
||||||
|
</p>
|
||||||
|
{{ end }}
|
15
layouts/partials/cfp.fr.html
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
{{ if .Site.Data.cosin.cfp_running }}
|
||||||
|
<p>
|
||||||
|
Das CfP für die diesjährige CoSin ist offen:
|
||||||
|
</p>
|
||||||
|
<ul>
|
||||||
|
<li><a href="{{ .Site.Data.cosin.cfp_url }}">Beitrag zur CoSin {{ .Site.Data.cosin.date_year }} einreichen</a></li>
|
||||||
|
</ul>
|
||||||
|
<p>
|
||||||
|
Einreicheschluss ist am {{ i18n .Site.Data.cosin.cfp_end_date_weekday }}, {{ .Site.Data.cosin.cfp_end_date_day }}. {{ i18n .Site.Data.cosin.cfp_end_date_month }} {{ .Site.Data.cosin.date_year }}.
|
||||||
|
</p>
|
||||||
|
{{ else }}
|
||||||
|
<p>
|
||||||
|
Das CfP ist aktuell geschlossen.
|
||||||
|
</p>
|
||||||
|
{{ end }}
|
15
layouts/partials/cfp.it.html
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
{{ if .Site.Data.cosin.cfp_running }}
|
||||||
|
<p>
|
||||||
|
Das CfP für die diesjährige CoSin ist offen:
|
||||||
|
</p>
|
||||||
|
<ul>
|
||||||
|
<li><a href="{{ .Site.Data.cosin.cfp_url }}">Beitrag zur CoSin {{ .Site.Data.cosin.date_year }} einreichen</a></li>
|
||||||
|
</ul>
|
||||||
|
<p>
|
||||||
|
Einreicheschluss ist am {{ i18n .Site.Data.cosin.cfp_end_date_weekday }}, {{ .Site.Data.cosin.cfp_end_date_day }}. {{ i18n .Site.Data.cosin.cfp_end_date_month }} {{ .Site.Data.cosin.date_year }}.
|
||||||
|
</p>
|
||||||
|
{{ else }}
|
||||||
|
<p>
|
||||||
|
Das CfP ist aktuell geschlossen.
|
||||||
|
</p>
|
||||||
|
{{ end }}
|
|
@ -6,7 +6,13 @@
|
||||||
<li><a href="{{ .Site.Data.cosin.schedule_main_url }}">CoSin {{ .Site.Data.cosin.date_year }}</a></li>
|
<li><a href="{{ .Site.Data.cosin.schedule_main_url }}">CoSin {{ .Site.Data.cosin.date_year }}</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
{{ else }}
|
{{ else }}
|
||||||
<p>
|
{{ if .Site.Data.cosin.date_known }}
|
||||||
Der Fahrplan für die diesjährige CoSin erscheint Anfang Juni.
|
<p>
|
||||||
</p>
|
Der Fahrplan für die diesjährige CoSin erscheint Anfang Juni.
|
||||||
|
</p>
|
||||||
|
{{ else }}
|
||||||
|
<p>
|
||||||
|
Siehe Archiv
|
||||||
|
</p>
|
||||||
|
{{ end }}
|
||||||
{{ end }}
|
{{ end }}
|
|
@ -6,7 +6,13 @@
|
||||||
<li><a href="{{ .Site.Data.cosin.schedule_main_url }}">CoSin {{ .Site.Data.cosin.date_year }}</a></li>
|
<li><a href="{{ .Site.Data.cosin.schedule_main_url }}">CoSin {{ .Site.Data.cosin.date_year }}</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
{{ else }}
|
{{ else }}
|
||||||
<p>
|
{{ if .Site.Data.cosin.date_known }}
|
||||||
Schedule of this year's CoSin will be online in early June.
|
<p>
|
||||||
</p>
|
Schedule of this year's CoSin will be online in early June.
|
||||||
|
</p>
|
||||||
|
{{ else }}
|
||||||
|
<p>
|
||||||
|
See archive
|
||||||
|
</p>
|
||||||
|
{{ end }}
|
||||||
{{ end }}
|
{{ end }}
|
|
@ -6,7 +6,13 @@
|
||||||
<li><a href="{{ .Site.Data.cosin.schedule_main_url }}">CoSin {{ .Site.Data.cosin.date_year }}</a></li>
|
<li><a href="{{ .Site.Data.cosin.schedule_main_url }}">CoSin {{ .Site.Data.cosin.date_year }}</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
{{ else }}
|
{{ else }}
|
||||||
<p>
|
{{ if .Site.Data.cosin.date_known }}
|
||||||
Der Fahrplan für die diesjährige CoSin erscheint Anfang Juni.
|
<p>
|
||||||
</p>
|
Der Fahrplan für die diesjährige CoSin erscheint Anfang Juni.
|
||||||
|
</p>
|
||||||
|
{{ else }}
|
||||||
|
<p>
|
||||||
|
Siehe Archiv
|
||||||
|
</p>
|
||||||
|
{{ end }}
|
||||||
{{ end }}
|
{{ end }}
|
|
@ -6,7 +6,13 @@
|
||||||
<li><a href="{{ .Site.Data.cosin.schedule_main_url }}">CoSin {{ .Site.Data.cosin.date_year }}</a></li>
|
<li><a href="{{ .Site.Data.cosin.schedule_main_url }}">CoSin {{ .Site.Data.cosin.date_year }}</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
{{ else }}
|
{{ else }}
|
||||||
<p>
|
{{ if .Site.Data.cosin.date_known }}
|
||||||
Der Fahrplan für die diesjährige CoSin erscheint Anfang Juni.
|
<p>
|
||||||
</p>
|
Der Fahrplan für die diesjährige CoSin erscheint Anfang Juni.
|
||||||
|
</p>
|
||||||
|
{{ else }}
|
||||||
|
<p>
|
||||||
|
Siehe Archiv
|
||||||
|
</p>
|
||||||
|
{{ end }}
|
||||||
{{ end }}
|
{{ end }}
|
14
layouts/partials/opengraph.html
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
{{ $fileName := printf "images/ogp/cosin_icon_%s.png" (string .Site.Data.cosin.date_year) }}
|
||||||
|
{{ $logo := or (resources.Get $fileName) (resources.Get "images/ogp/cosin_icon_generic.png") }}
|
||||||
|
|
||||||
|
<meta property="og:type" content="website"/>
|
||||||
|
<meta property="og:site_name" content="{{ .Site.Title }}"/>
|
||||||
|
<meta property="og:title" content="{{ .Title }}"/>
|
||||||
|
<meta property="og:url" content="{{ .Permalink | absURL }}"/>
|
||||||
|
{{ with $logo }}
|
||||||
|
<meta property="og:image" content="{{ .Permalink }}"/>
|
||||||
|
<meta property="og:image:type" content="{{ .MediaType }}"/>
|
||||||
|
<meta property="og:image:width" content="{{ .Width }}"/>
|
||||||
|
<meta property="og:image:height" content="{{ .Height }}"/>
|
||||||
|
<meta property="og:image:alt" content="CoSin Icon {{ string $.Site.Data.cosin.date_year }}"/>
|
||||||
|
{{ end }}
|
1
layouts/partials/site-footer.html
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<footer>View the website source in the <a href="https://git.kabelsalat.ch/CoSin/cosin-website">git repository</a>.</footer>
|
|
@ -8,17 +8,19 @@
|
||||||
Der Inhalt erstreckt sich über Technik und Politik zu Kunst und Kultur.
|
Der Inhalt erstreckt sich über Technik und Politik zu Kunst und Kultur.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
{{ if .is_cancelled }}
|
||||||
|
<p>
|
||||||
|
<strong>Die CoSin {{ .date_year }} findet nicht statt!</strong>
|
||||||
|
</p>
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
{{ if .date_known }}
|
{{ if .date_known }}
|
||||||
<strong>Datum:</strong> {{ .date_start_day }}. {{ i18n .date_start_month }} - {{ .date_end_day }}. {{ i18n .date_end_month }} {{ .date_year }}<br/>
|
<strong>Datum:</strong> {{ .date_start_day }}. {{ i18n .date_start_month }} - {{ .date_end_day }}. {{ i18n .date_end_month }} {{ .date_year }}<br/>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
{{ if .location_known }}
|
{{ if .location_known }}
|
||||||
<strong>Ort:</strong> {{ i18n .location_name }} in <strong>{{ i18n .location_city }}</strong><br/>
|
<strong>Ort:</strong> {{ i18n .location_name }} in <strong>{{ i18n .location_city }}</strong>
|
||||||
{{ end }}
|
|
||||||
|
|
||||||
{{ if .registration_open }}
|
|
||||||
<strong>Eintritt:</strong> {{ .entrance_fee }}
|
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
@ -29,12 +31,15 @@
|
||||||
|
|
||||||
|
|
||||||
{{ if .registration_open }}
|
{{ if .registration_open }}
|
||||||
<p><strong>Anmeldung:</strong> <a href="mailto:{{ .registration_email }}">{{ .registration_email }}</a> (nur für Essen)</p>
|
<p>
|
||||||
|
<strong>Anmeldung:</strong> <a href="{{ .registration_url }}">Tickets</a><br>
|
||||||
|
<strong>Eintritt:</strong> {{ .entrance_fee }}
|
||||||
|
</p>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
|
|
||||||
{{ if .cfp_running }}
|
{{ if .cfp_running }}
|
||||||
<p><strong>Call for Participation:</strong> <a href="{{ .cfp_url | safeURL }}">Frab</a><br>
|
<p><strong>Call for Participation:</strong> <a href="{{ .cfp_url | safeURL }}">Pretalx</a><br>
|
||||||
Offen bis {{ .cfp_end_date_day }}. {{ i18n .cfp_end_date_month }} {{ .date_year }}.<br/>
|
Offen bis {{ .cfp_end_date_day }}. {{ i18n .cfp_end_date_month }} {{ .date_year }}.<br/>
|
||||||
</p>
|
</p>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
@ -50,7 +55,20 @@ Offen bis {{ .cfp_end_date_day }}. {{ i18n .cfp_end_date_month }} {{ .date_year
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
|
|
||||||
<p><strong>IRC:</strong> <a href="{{ .irc_server | safeURL }}{{ .irc_channel }}">{{ .irc_channel }}</a></p>
|
{{ if .streaming_available }}
|
||||||
|
<p><strong>Videostreaming:</strong>
|
||||||
|
<a href="{{ .streaming_main_url | safeURL }}">Live</a>
|
||||||
|
</p>
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
|
||||||
|
<p><s><strong>IRC:</strong></s> <a href="{{ .irc_server | safeURL }}{{ .irc_channel }}"><s>{{ .irc_channel }}</s></a> (obsolet)</p>
|
||||||
|
|
||||||
|
|
||||||
|
<p><strong>Matrix:</strong> <a href="{{ .matrix_to | safeURL }}{{ urlquery .matrix_space }}:{{ .matrix_server }}">{{ .matrix_space }}:{{ .matrix_server }}</a></p>
|
||||||
|
|
||||||
|
|
||||||
|
<p><strong>Mastodon:</strong> <a rel="me" href="{{ .mastodon_server | safeURL }}{{ .mastodon_handle }}">{{ .mastodon_handle }}</a></p>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
|
|
|
@ -4,21 +4,23 @@
|
||||||
<h3>{{ .title }} {{ .date_year }}</h3>
|
<h3>{{ .title }} {{ .date_year }}</h3>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Cosin is a yearly chaotic event in Switzerland. The content ranges from
|
CoSin is a yearly chaotic event in Switzerland. The content ranges from
|
||||||
technical and political, to social and cultural.
|
technical and political, to social and cultural.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
{{ if .is_cancelled }}
|
||||||
|
<p>
|
||||||
|
<strong>The CoSin {{ .date_year }} is cancelled!</strong>
|
||||||
|
</p>
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
{{ if .date_known }}
|
{{ if .date_known }}
|
||||||
<strong>Date:</strong> {{ i18n .date_start_month }} {{ humanize .date_start_day }} - {{ i18n .date_end_month }} {{ humanize .date_end_day }} {{ .date_year }}<br/>
|
<strong>Date:</strong> {{ i18n .date_start_month }} {{ humanize .date_start_day }} - {{ i18n .date_end_month }} {{ humanize .date_end_day }} {{ .date_year }}<br/>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
{{ if .location_known }}
|
{{ if .location_known }}
|
||||||
<strong>Location:</strong> {{ i18n .location_name }} in <strong>{{ i18n .location_city }}</strong><br/>
|
<strong>Location:</strong> {{ i18n .location_name }} in <strong>{{ i18n .location_city }}</strong>
|
||||||
{{ end }}
|
|
||||||
|
|
||||||
{{ if .registration_open }}
|
|
||||||
<strong>Admission:</strong> {{ .entrance_fee }}
|
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
@ -29,12 +31,15 @@
|
||||||
|
|
||||||
|
|
||||||
{{ if .registration_open }}
|
{{ if .registration_open }}
|
||||||
<p><strong>Registration for meals:</strong> <a href="mailto:{{ .registration_email }}">{{ .registration_email }}</a></p>
|
<p>
|
||||||
|
<strong>Registration:</strong> <a href="{{ .registration_url }}">Tickets</a><br>
|
||||||
|
<strong>Admission:</strong> {{ .entrance_fee }}
|
||||||
|
</p>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
|
|
||||||
{{ if .cfp_running }}
|
{{ if .cfp_running }}
|
||||||
<p><strong>Call for Participation:</strong> <a href="{{ .cfp_url | safeURL }}">Frab</a><br>
|
<p><strong>Call for Participation:</strong> <a href="{{ .cfp_url | safeURL }}">Pretalx</a><br>
|
||||||
Open until {{ .cfp_end_date_day }}. {{ i18n .cfp_end_date_month }} {{ .date_year }}.<br/>
|
Open until {{ .cfp_end_date_day }}. {{ i18n .cfp_end_date_month }} {{ .date_year }}.<br/>
|
||||||
</p>
|
</p>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
@ -50,7 +55,20 @@ Open until {{ .cfp_end_date_day }}. {{ i18n .cfp_end_date_month }} {{ .date_year
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
|
|
||||||
<p><strong>IRC:</strong> <a href="{{ .irc_server | safeURL }}{{ .irc_channel }}">{{ .irc_channel }}</a></p>
|
{{ if .streaming_available }}
|
||||||
|
<p><strong>Videostreaming:</strong>
|
||||||
|
<a href="{{ .streaming_main_url | safeURL }}">Live</a>
|
||||||
|
</p>
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
|
||||||
|
<p><strong><s>IRC:</s></strong> <a href="{{ .irc_server | safeURL }}{{ .irc_channel }}"><s>{{ .irc_channel }}</s></a> (obsolete)</p>
|
||||||
|
|
||||||
|
|
||||||
|
<p><strong>Matrix:</strong> <a href="{{ .matrix_to | safeURL }}{{ urlquery .matrix_space }}:{{ .matrix_server }}">{{ .matrix_space }}:{{ .matrix_server }}</a></p>
|
||||||
|
|
||||||
|
|
||||||
|
<p><strong>Mastodon:</strong> <a rel="me" href="{{ .mastodon_server | safeURL }}{{ .mastodon_handle }}">{{ .mastodon_handle }}</a></p>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
|
|
|
@ -8,17 +8,19 @@
|
||||||
Le contenu s'étend de la technologie et la politique au social et culturel.
|
Le contenu s'étend de la technologie et la politique au social et culturel.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
{{ if .is_cancelled }}
|
||||||
|
<p>
|
||||||
|
<strong>La CoSin {{ .date_year }} est annulé!</strong>
|
||||||
|
</p>
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
{{ if .date_known }}
|
{{ if .date_known }}
|
||||||
<strong>Date:</strong> {{ .date_start_day }}. {{ i18n .date_start_month }} - {{ .date_end_day }}. {{ i18n .date_end_month }} {{ .date_year }}<br/>
|
<strong>Date:</strong> {{ .date_start_day }}. {{ i18n .date_start_month }} - {{ .date_end_day }}. {{ i18n .date_end_month }} {{ .date_year }}<br/>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
{{ if .location_known }}
|
{{ if .location_known }}
|
||||||
<strong>Lieu:</strong> {{ i18n .location_name }} à <strong>{{ i18n .location_city }}</strong><br/>
|
<strong>Lieu:</strong> {{ i18n .location_name }} à <strong>{{ i18n .location_city }}</strong>
|
||||||
{{ end }}
|
|
||||||
|
|
||||||
{{ if .registration_open }}
|
|
||||||
<strong>Entrée:</strong> {{ .entrance_fee }}
|
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
@ -29,12 +31,15 @@
|
||||||
|
|
||||||
|
|
||||||
{{ if .registration_open }}
|
{{ if .registration_open }}
|
||||||
<p><strong>Inscription:</strong> <a href="mailto:{{ .registration_email }}">{{ .registration_email }}</a> (inscription aux repas)</p>
|
<p>
|
||||||
|
<strong>Inscription:</strong> <a href="{{ .registration_url }}">Tickets</a><br>
|
||||||
|
<strong>Entrée:</strong> {{ .entrance_fee }}
|
||||||
|
</p>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
|
|
||||||
{{ if .cfp_running }}
|
{{ if .cfp_running }}
|
||||||
<p><strong>Call for Participation:</strong> <a href="{{ .cfp_url | safeURL }}">Frab</a><br>
|
<p><strong>Call for Participation:</strong> <a href="{{ .cfp_url | safeURL }}">Pretalx</a><br>
|
||||||
Offen bis {{ .cfp_end_date_day }}. {{ i18n .cfp_end_date_month }} {{ .date_year }}.<br/>
|
Offen bis {{ .cfp_end_date_day }}. {{ i18n .cfp_end_date_month }} {{ .date_year }}.<br/>
|
||||||
</p>
|
</p>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
@ -50,7 +55,20 @@ Offen bis {{ .cfp_end_date_day }}. {{ i18n .cfp_end_date_month }} {{ .date_year
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
|
|
||||||
<p><strong>IRC:</strong> <a href="{{ .irc_server | safeURL }}{{ .irc_channel }}">{{ .irc_channel }}</a></p>
|
{{ if .streaming_available }}
|
||||||
|
<p><strong>Videostreaming:</strong>
|
||||||
|
<a href="{{ .streaming_main_url | safeURL }}">Live</a>
|
||||||
|
</p>
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
|
||||||
|
<p><strong><s>IRC:</s></strong> <a href="{{ .irc_server | safeURL }}{{ .irc_channel }}"><s>{{ .irc_channel }}</s></a> (obsolète)</p>
|
||||||
|
|
||||||
|
|
||||||
|
<p><strong>Matrix:</strong> <a href="{{ .matrix_to | safeURL }}{{ urlquery .matrix_space }}:{{ .matrix_server }}">{{ .matrix_space }}:{{ .matrix_server }}</a></p>
|
||||||
|
|
||||||
|
|
||||||
|
<p><strong>Mastodon:</strong> <a rel="me" href="{{ .mastodon_server | safeURL }}{{ .mastodon_handle }}">{{ .mastodon_handle }}</a></p>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
|
|
|
@ -8,17 +8,19 @@
|
||||||
I contenuti si articolano tra tecnica, politica, arte e cultura.
|
I contenuti si articolano tra tecnica, politica, arte e cultura.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
{{ if .is_cancelled }}
|
||||||
|
<p>
|
||||||
|
<strong>La CoSin {{ .date_year }} è annullato!</strong>
|
||||||
|
</p>
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
{{ if .date_known }}
|
{{ if .date_known }}
|
||||||
<strong>Data:</strong> {{ .date_start_day }}. {{ i18n .date_start_month }} - {{ .date_end_day }}. {{ i18n .date_end_month }} {{ .date_year }}<br/>
|
<strong>Data:</strong> {{ .date_start_day }}. {{ i18n .date_start_month }} - {{ .date_end_day }}. {{ i18n .date_end_month }} {{ .date_year }}<br/>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
{{ if .location_known }}
|
{{ if .location_known }}
|
||||||
<strong>Luogo:</strong> {{ i18n .location_name }} a <strong>{{ i18n .location_city }}</strong><br/>
|
<strong>Luogo:</strong> {{ i18n .location_name }} a <strong>{{ i18n .location_city }}</strong>
|
||||||
{{ end }}
|
|
||||||
|
|
||||||
{{ if .registration_open }}
|
|
||||||
<strong>Costo:</strong> {{ .entrance_fee }}
|
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
@ -29,12 +31,15 @@
|
||||||
|
|
||||||
|
|
||||||
{{ if .registration_open }}
|
{{ if .registration_open }}
|
||||||
<p><strong>Registrazione:</strong> <a href="mailto:{{ .registration_email }}">{{ .registration_email }}</a> (per i pasti)</p>
|
<p>
|
||||||
|
<strong>Registrazione:</strong> <a href="{{ .registration_url }}">Tickets</a><br>
|
||||||
|
<strong>Costo:</strong> {{ .entrance_fee }}
|
||||||
|
</p>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
|
|
||||||
{{ if .cfp_running }}
|
{{ if .cfp_running }}
|
||||||
<p><strong>Call for Participation:</strong> <a href="{{ .cfp_url | safeURL }}">Frab</a><br>
|
<p><strong>Call for Participation:</strong> <a href="{{ .cfp_url | safeURL }}">Pretalx</a><br>
|
||||||
Offen bis {{ .cfp_end_date_day }}. {{ i18n .cfp_end_date_month }} {{ .date_year }}.<br/>
|
Offen bis {{ .cfp_end_date_day }}. {{ i18n .cfp_end_date_month }} {{ .date_year }}.<br/>
|
||||||
</p>
|
</p>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
@ -50,7 +55,20 @@ Offen bis {{ .cfp_end_date_day }}. {{ i18n .cfp_end_date_month }} {{ .date_year
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
|
|
||||||
<p><strong>IRC:</strong> <a href="{{ .irc_server | safeURL }}{{ .irc_channel }}">{{ .irc_channel }}</a></p>
|
{{ if .streaming_available }}
|
||||||
|
<p><strong>Videostreaming:</strong>
|
||||||
|
<a href="{{ .streaming_main_url | safeURL }}">Live</a>
|
||||||
|
</p>
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
|
||||||
|
<p><strong><s>IRC:</s></strong> <a href="{{ .irc_server | safeURL }}{{ .irc_channel }}"><s>{{ .irc_channel }}</s></a> (obsoleto)</p>
|
||||||
|
|
||||||
|
|
||||||
|
<p><strong>Matrix:</strong> <a href="{{ .matrix_to | safeURL }}{{ urlquery .matrix_space }}:{{ .matrix_server }}">{{ .matrix_space }}:{{ .matrix_server }}</a></p>
|
||||||
|
|
||||||
|
|
||||||
|
<p><strong>Mastodon:</strong> <a rel="me" href="{{ .mastodon_server | safeURL }}{{ .mastodon_handle }}">{{ .mastodon_handle }}</a></p>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
|
|
9
layouts/robots.txt
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
User-agent: CCBot
|
||||||
|
User-agent: ChatGPT-User
|
||||||
|
User-agent: Google-Extended
|
||||||
|
User-agent: GPTBot
|
||||||
|
User-agent: PerplexityBot
|
||||||
|
Disallow: /
|
||||||
|
|
||||||
|
User-agent: *
|
||||||
|
Disallow:
|
9
layouts/shortcodes/cfp.html
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
{{ if eq .Site.Language.Lang "de" }}
|
||||||
|
{{ partial "cfp.de.html" . }}
|
||||||
|
{{ else if eq .Site.Language.Lang "fr" }}
|
||||||
|
{{ partial "cfp.fr.html" . }}
|
||||||
|
{{ else if eq .Site.Language.Lang "it" }}
|
||||||
|
{{ partial "cfp.it.html" . }}
|
||||||
|
{{ else if eq .Site.Language.Lang "en" }}
|
||||||
|
{{ partial "cfp.en.html" . }}
|
||||||
|
{{ end }}
|
|
@ -1,7 +1,7 @@
|
||||||
{{ $year := string (.Get 0) }}
|
{{ $year := string (.Get 0) }}
|
||||||
{{ $images := index .Site.Data.photos $year }}
|
{{ $photos := index .Site.Data.photos $year }}
|
||||||
|
|
||||||
{{ range $images }}
|
{{ range $photos }}
|
||||||
<a href="/photos/{{ $year}}/{{ . }}.jpg">
|
<a href="/photos/{{ $year}}/{{ . }}.jpg">
|
||||||
<img src="/photos/{{ $year}}/{{ . }}.small.jpg"
|
<img src="/photos/{{ $year}}/{{ . }}.small.jpg"
|
||||||
alt="CoSin {{ $year }}" />
|
alt="CoSin {{ $year }}" />
|
||||||
|
|
9
layouts/shortcodes/registration.html
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
{{ if eq .Site.Language.Lang "de" }}
|
||||||
|
{{ partial "anmeldung.de.html" . }}
|
||||||
|
{{ else if eq .Site.Language.Lang "fr" }}
|
||||||
|
{{ partial "anmeldung.fr.html" . }}
|
||||||
|
{{ else if eq .Site.Language.Lang "it" }}
|
||||||
|
{{ partial "anmeldung.it.html" . }}
|
||||||
|
{{ else if eq .Site.Language.Lang "en" }}
|
||||||
|
{{ partial "anmeldung.en.html" . }}
|
||||||
|
{{ end }}
|
|
@ -22,8 +22,5 @@ and auto-reloads on content changes.
|
||||||
Deployment
|
Deployment
|
||||||
----------
|
----------
|
||||||
|
|
||||||
Given the necessary _ssh_ login credentials, just run:
|
The `master` branch is deployed to https://cosin.ch automatically via
|
||||||
|
Forgejo Actions.
|
||||||
make upload
|
|
||||||
|
|
||||||
to upload the static website to our webserver via _rsync_ over _ssh_.
|
|
||||||
|
|
BIN
static/flyer/flyer_cosin2016.pdf
Normal file
BIN
static/flyer/flyer_cosin2019.pdf
Normal file
BIN
static/flyer/flyer_cosin2020.pdf
Normal file
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 3.3 KiB |
Before Width: | Height: | Size: 78 KiB After Width: | Height: | Size: 78 KiB |
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 13 KiB |
Before Width: | Height: | Size: 190 B After Width: | Height: | Size: 190 B |
BIN
static/photos/2006/cosin_06_0.jpg
Normal file
After Width: | Height: | Size: 10 KiB |
BIN
static/photos/2006/cosin_06_0.small.jpg
Normal file
After Width: | Height: | Size: 10 KiB |
BIN
static/photos/2016/cosin_16_12.jpg
Normal file
After Width: | Height: | Size: 306 KiB |
BIN
static/photos/2016/cosin_16_12.small.jpg
Normal file
After Width: | Height: | Size: 37 KiB |
BIN
static/photos/2016/cosin_16_13.jpg
Normal file
After Width: | Height: | Size: 274 KiB |
BIN
static/photos/2016/cosin_16_13.small.jpg
Normal file
After Width: | Height: | Size: 38 KiB |
BIN
static/photos/2018/cosin_18_28.jpg
Normal file
After Width: | Height: | Size: 1.4 MiB |
BIN
static/photos/2018/cosin_18_28.small.jpg
Normal file
After Width: | Height: | Size: 36 KiB |
BIN
static/photos/2018/cosin_18_29.jpg
Normal file
After Width: | Height: | Size: 1.1 MiB |
BIN
static/photos/2018/cosin_18_29.small.jpg
Normal file
After Width: | Height: | Size: 33 KiB |
BIN
static/photos/2018/cosin_18_30.jpg
Normal file
After Width: | Height: | Size: 1.3 MiB |
BIN
static/photos/2018/cosin_18_30.small.jpg
Normal file
After Width: | Height: | Size: 34 KiB |
BIN
static/photos/2019/cosin_19_0.jpg
Normal file
After Width: | Height: | Size: 111 KiB |
BIN
static/photos/2019/cosin_19_0.small.jpg
Normal file
After Width: | Height: | Size: 31 KiB |