diff --git a/.forgejo/workflows/deploy.yaml b/.forgejo/workflows/deploy.yaml index 92e4b21..b08a439 100644 --- a/.forgejo/workflows/deploy.yaml +++ b/.forgejo/workflows/deploy.yaml @@ -29,7 +29,7 @@ jobs: # For uploading. apk add rsync openssh - - uses: actions/checkout@v7 + - uses: actions/checkout@v6 with: fetch-depth: 0 # pull full history for page lastmod by git commit date diff --git a/README.md b/README.md index 5d68b19..8bf8426 100644 --- a/README.md +++ b/README.md @@ -29,60 +29,25 @@ To populate the calendar data, please run `./fetch-calendar.sh` before running h Running the hugo command without and parameters will re-generate the site in the `public` directory. To deploy the website, just copy the whole folder to a directory which is servered by the webserver of your preference. -Please note that the website should be re-deployed at least daily to update the "announcement" section on the front page even if there were no changed to the content. -See [Automated Deployment](#automated-deployment) for the way the deployment is set up on git.hamburg.ccc.de +Please note, that the website should be re-deployed at least daily to update the "announcement" section on the front page even if there were no changed to the content. -### Previewing Changes Locally +### Add Pages To run a local version, just install HUGO by following the [instructions](https://gohugo.io/installation/) for your operating system. To build the website and run a development webserver, execute: ```shell -hugo server --buildFuture --buildDrafts +hugo server ``` -Note: the flags `--buildFuture --buildDrafts` makes Hugo process all content, even if the `publishDate` is still in the future, or the content is marked as `draft: true` in the frontmatter. -You usually want these flags, especially if you are preparing content that should only be shown after a certain date. - -Also see [Submitting Your Content](#submitting-your-content) below. - -### Adding Content - -There are two basic types of posts: Events and blog posts. -Hugo and the template set distinguish between these two types based on frontmatter information. -When manually creating content, you need to take extra care to use the correct frontmatter data. -See the link to the Hugo archetypes below for details. - -**If at all possible, use `hugo new content` with the appropriate parameters to create the new content file correctly.** - -You should always set these frontmatter fields: -* `categories`: must be either `article` or `event`; see below. -* `date`: the date displayed for this content. - For events, that should be when the event takes place; for blog posts, it is when the post was written. -* `publishDate`: the date and time the content should be published. - Note that if you do not specify a `publishDate`, the value of `date` will be used. -* `title`: the headline of your content. - -#### Add a Blog Entry - -Blog posts (the archetype is called `article`) should be used for information that will be relevant for a longer period, for example explanations about technical, political or cultural topics. -Articles will be shown for a few days on the home page. -The [blog page](https://hamburg.ccc.de/blog/) shows all posts, newest first. -In addition, the `tags:` can be used to find blog posts about certain topics. - -To create a new general blog post, run a command like this: +To also build posts in the future or in draft state, run this instead: ```shell -hugo new content --kind article blog/yyyy/yyyy-mm-dd-your-article-title/index.md +hugo server -D ``` -If you want to create a blog post from scratch, or convert an event into a blog post, see the frontmatter data in [themes/ccchh/archetypes/article.md](themes/ccchh/archetypes/article.md). -In particular, you need to set `categories: article`. -You do not need to specify an explicit `publishDate`, as the value of `date` will be used as a fallback. - #### Add an Event Announcement -Events will be shown on the home page from the frontmatter `publishDate:` until the `date:` (plus a few hours grace period). -Use them for information that is relevant for a specific event, like a talk or a meeting. - +There are two basic types of posts: Events and articles. +Events will be shown on the home page from their publishing date until they have happened and shall be used for things which happen at a certain date. This is not limited to events organized by the CCCHH, but can also be a hint to other events which we think are related to our activities. To create a new event blog post, run a command like this: @@ -90,48 +55,29 @@ To create a new event blog post, run a command like this: hugo new content --kind event blog/yyyy/yyyy-mm-dd-your-event-title/index.md ``` -If you want to create an event from scratch, or convert a blog post into an event, see the frontmatter data in [themes/ccchh/archetypes/event.md](themes/ccchh/archetypes/event.md). -In particular, you need to set `categories: event`, `date:` for the date of the event, `publishDate:` for the date the content should be published, and `location:` to whereever your event takes place. +#### Add a Blog Entry + +As mentioned before, you can also create blog posts for things which aren't events. +They will only be shown in the "blog" section and posted to the RSS feeds and shall be used for things which are relevant for a longer time. + +As we have much more event announcements than articles, finding articles in all blog posts can be quite a challenge. +But using these two categories enables filtering, so that the history of articles is in one list. + +To create a new general blog post, run a command like this: +```shell +hugo new content --kind article blog/yyyy/yyyy-mm-dd-your-article-title/index.md +``` #### Additional Notes on Events and Articles By default the first 70 words are shown as a summary on list pages. -Please use `` (white space matters) to manually separate the summary from other post content. +Please use `` to manually separate the summary from other post content. Please prefix your folder name with a date to make browsing the content in the source code easier. The date in the URL will be taken from the `date` field in the front matter. Blog posts from before 2024-01-22 were imported from the previous website and have additional front matter data which is not usually needed (e.g. the lastmod value). - -#### Submitting Your Content - -After creating the new content, or making changes to existing content please commit your changes with a meaningful commit message to a fresh branch. -Name the branch in a way that makes it easy to understand what the changes are, for example, the title of your new blog post. - -Push the branch to git.hamburg.ccc.de, and create a new pull request. -Invite reviewers, or post the link to the PR to the [#infrastruktur:hamburg.ccc.de](https://matrix.to/#/#infrastruktur:hamburg.ccc.de) Matrix channel. - -The changes you have made will be deployed to the staging website automatically (this might take a minute or two). -See the comments in the PR for the link to your preview. -You and the reviewers can use the link to preview the changes. - -If you have set a `publishDate` to a date and time in the future, the preview will show the content as it would appear then. - -Once at least one reviewer approves the PR, it will be merged and pushed to production. -This usually takes less than five minutes. - -### Automated Deployment - -The website is automatically rebuilt and redeployed every 20 minutes. At each build and deploy: -* The event calendar is fetched. -* Hugo renders all pages. -* All changed files are deployed to the production web server. - -See [.forgejo/workflows/deploy.yaml](.forgejo/workflows/deploy.yaml) for all the details. - -Additionally, for each pull request, a version of the website is deployed to the staging website under a unique URL. -The pull request will be updated with the URL, so you and the reviewers can look at the changes as they will appear after merging. -After the PR is closed, the staging URL will be removed. +When using the commands above, the template shall have evenything you need. #### Populate the Event Calendar diff --git a/content/_index.md b/content/_index.md index 408cf8c..5f69c56 100644 --- a/content/_index.md +++ b/content/_index.md @@ -4,4 +4,7 @@ date: 2022-11-20T09:03:20-08:00 draft: false --- - +## Über uns +Wir sind der Chaos Computer Club der Hansestadt Hamburg. +Bei uns handelt es sich um eine Gruppe von Menschen, die ein Interesse am kreativen Umgang mit Technik teilen. +Unsere Gesprächsthemen und Projekte reichen von Soft- und Hardware zu Datenschutz und Netzpolitik. diff --git a/content/blog/1999/1999-03-27-ein-interessanter-tag-fuer-den-erfakreis-hamburg/cccard.jpg b/content/blog/1999/1999-03-27-ein-interessanter-tag-fuer-den-erfakreis-hamburg/cccard.jpg new file mode 100644 index 0000000..31ddedc Binary files /dev/null and b/content/blog/1999/1999-03-27-ein-interessanter-tag-fuer-den-erfakreis-hamburg/cccard.jpg differ diff --git a/content/blog/1999/1999-03-27-ein-interessanter-tag-fuer-den-erfakreis-hamburg/index.md b/content/blog/1999/1999-03-27-ein-interessanter-tag-fuer-den-erfakreis-hamburg/index.md new file mode 100644 index 0000000..8325ff6 --- /dev/null +++ b/content/blog/1999/1999-03-27-ein-interessanter-tag-fuer-den-erfakreis-hamburg/index.md @@ -0,0 +1,16 @@ +--- +authors: +- ccchh-archiv +categories: article +draft: false +lastmod: '1999-03-27T19:42:00+02:00' +publishDate: '1999-03-27T19:42:00+02:00' +slug: ein-interessanter-tag-fuer-den-erfakreis-hamburg +title: 'ein interessanter Tag für den Erfakreis Hamburg:' +header: + image: cccard.jpg +--- +1. Unsere Einweihungsparty für die seit dem 1. Dezember bestehenden Räumlichkeiten im Lokstedter Weg findet statt. Eingeladen sind alle Hamburger, sowie Aktivisten aus anderen Chaosgebieten. Für Essen und nicht-alkoholische Getränke ist gesorgt. + +2. Unsere Webseite hat eine grundlegende Überarbeitung erfahren und wird mit Beginn der Party um 15.42h ins Netz gestellt. + diff --git a/content/blog/1999/1999-03-30-neu-beschluesse-zum-01-05-1999/index.md b/content/blog/1999/1999-03-30-neu-beschluesse-zum-01-05-1999/index.md new file mode 100644 index 0000000..667cdf9 --- /dev/null +++ b/content/blog/1999/1999-03-30-neu-beschluesse-zum-01-05-1999/index.md @@ -0,0 +1,15 @@ +--- +authors: +- ccchh-archiv +categories: article +draft: false +lastmod: '1999-03-30T19:42:00+02:00' +publishDate: '1999-03-30T19:42:00+02:00' +slug: neue-beschluesse-zum-01-05-1999 +title: 'neue Beschlüsse zum 01.05.1999:' +--- +Einführung von [Workshops, Vorträgen usw.][1] am Donnerstag, in Ausnahmefällen auch übers Wochenende. + +Deklarierung des 1. Dienstags im Monat als "chaos-intern". Wer trotzdem kommt, wird zwar nicht draußen stehen gelassen, wird allerdings auch keine guten Gelegenheiten haben, uns kennenzulernen, da hier debattiert und abgestimmt wird. Die restlichen Dienstage laufen locker ab - ganz wie bisher gewohnt. Wir empfehlen "Neulingen", den 1. Dienstag zu meiden. + +[1]: https://staging.hamburg.ccc.de/Workshops/index.html diff --git a/content/blog/1999/1999-04-07-englishe-webseiten/index.md b/content/blog/1999/1999-04-07-englishe-webseiten/index.md new file mode 100644 index 0000000..42bc607 --- /dev/null +++ b/content/blog/1999/1999-04-07-englishe-webseiten/index.md @@ -0,0 +1,11 @@ +--- +authors: +- ccchh-archiv +categories: article +draft: false +lastmod: '1999-04-07T19:42:00+02:00' +publishDate: '1999-04-07T19:42:00+02:00' +slug: englische-webseiten +title: englische Webseiten +--- +Die englische Version unserer Webseiten ist online. Danke nochmals an Sven (Pesco)! diff --git a/content/blog/1999/1999-09-08-bildungswerk-zurueck/index.md b/content/blog/1999/1999-09-08-bildungswerk-zurueck/index.md new file mode 100644 index 0000000..3d12f54 --- /dev/null +++ b/content/blog/1999/1999-09-08-bildungswerk-zurueck/index.md @@ -0,0 +1,18 @@ +--- +authors: +- ccchh-archiv +categories: article +draft: false +lastmod: '1999-09-08T19:42:00+02:00' +publishDate: '1999-09-08T19:42:00+02:00' +slug: bildungswerk-zurück +title: Bildungswerk zurück! +--- +Nach der Sommerpause ist das [Chaos-Bildungswerk][1] wieder zurück und Ihr könnt Euch gleich die neuen Termine notieren. + +in diesem Zusammenhang: + +Wir suchen noch einen Beamer oder ein Overhead-Panel, um Computerbilder auf unsere Leinwand zu projezieren. Wenn in Eurer Firma also gerade was Passendes aussortiert wird oder wenn Ihr auf eine andere Art und Weise günstig oder sogar kostenlos an so ein Teil kommt, dann meldet Euch bei [uns][2]! Danke! + +[1]: https://staging.hamburg.ccc.de/Workshops/index.html +[2]: https://staging.hamburg.ccc.de/adresse.html diff --git a/content/blog/1999/1999-12-10-die-chaos-cd-blue-ist-fertig/index.md b/content/blog/1999/1999-12-10-die-chaos-cd-blue-ist-fertig/index.md new file mode 100644 index 0000000..3e3b74b --- /dev/null +++ b/content/blog/1999/1999-12-10-die-chaos-cd-blue-ist-fertig/index.md @@ -0,0 +1,14 @@ +--- +authors: +- ccchh-archiv +categories: article +draft: false +lastmod: '1999-12-10T19:42:00+02:00' +publishDate: '1999-12-10T19:42:00+02:00' +slug: die-chaos-cd-blue-ist-fertig +title: Die Chaos-CD Blue ist fertig! +--- +Nachdem noch ein paar Tage und Nächte nahezu rund um die Uhr heldenhaft gearbeitet wurde ist die aktuelle Chaos-CD nun fertig. Im Gegensatz zur Betaversion finden sich alle Texte als HTML-Text, so daß das Durchsuchen der CD nun möglich ist (Suchfunktion in Java ist integriert). Weitere Details gibt es in Kürze, bis dahin aber [das hier][1] + +[1]: https://staging.hamburg.ccc.de/chaoscd/index.html + diff --git a/content/blog/1999/1999-12-12-chaos-cd-demoversion/cover.jpg b/content/blog/1999/1999-12-12-chaos-cd-demoversion/cover.jpg new file mode 100644 index 0000000..a9af113 Binary files /dev/null and b/content/blog/1999/1999-12-12-chaos-cd-demoversion/cover.jpg differ diff --git a/content/blog/1999/1999-12-12-chaos-cd-demoversion/index.md b/content/blog/1999/1999-12-12-chaos-cd-demoversion/index.md new file mode 100644 index 0000000..05e6b51 --- /dev/null +++ b/content/blog/1999/1999-12-12-chaos-cd-demoversion/index.md @@ -0,0 +1,16 @@ +--- +authors: +- ccchh-archiv +categories: article +draft: false +lastmod: '1999-12-12T19:42:00+02:00' +publishDate: '1999-12-12T19:42:00+02:00' +slug: chaos-cd-demoversion +title: 'Chaos-CD "Demoversion"' +header: + caption: ChaosCD-Logo + image: cover.jpg +--- +Hier sind sie nun die "weiteren Details": Das CD-Team hat sich die Mühe gemacht, eine webfähige "Demoversion" der CD zu erstellen. Damit Ihr seht, wie die CD prinzipiell aufgebaut ist, wie sie aussieht und was Euch erwartet. Mehr gibt es [hier][1]. + +[1]: https://staging.hamburg.ccc.de/chaoscd/index.html diff --git a/content/blog/1999/1999-12-22-bildungswerk-goes-congress-entruempelung/index.md b/content/blog/1999/1999-12-22-bildungswerk-goes-congress-entruempelung/index.md new file mode 100644 index 0000000..e9d3131 --- /dev/null +++ b/content/blog/1999/1999-12-22-bildungswerk-goes-congress-entruempelung/index.md @@ -0,0 +1,17 @@ +--- +authors: +- ccchh-archiv +categories: article +draft: false +lastmod: '1999-12-22T19:42:00+02:00' +publishDate: '1999-12-22T19:42:00+02:00' +slug: cildungswerk-goes-congress-entruempelung +title: Bildungswerk goes Congress / Entrümpelung +--- +Nur noch wenige Tage bis zum Congress... da wollten wir uns für Euer Erscheinen bei den Bildungswerkvorträgen bedanken (natürlich auch für die Spenden) und Euch mitteilen, daß Ihr sicherlich den einen oder anderen Referenten auch auf dem Congress sehen werdet. Hier in Hamburg geht es dann ab Ende Januar mit neuen Terminen weiter. Wer Themenvorschläge hat oder selbst im Bildungswerk aktiv werden möchte, der melde sich bitte bei [mir][1]. + +Außerdem haben wir die Webseite ein wenig entstaubt: Hinweise, die nicht mehr aktuell sind, sind rausgeflogen und ein bißchen Inhalt ist auch noch hinzugekommen, aber das schaut Euch am besten selbst an... + +In diesem Sinne: Man sieht sich auf dem Congress (wahrscheinlich an der Kasse ? Da haben wir uns zuständig erklärt) + +[1]: mailto:webmaster@hamburg.ccc.de diff --git a/content/blog/1999/1999-18-06-linux-install-party/index.md b/content/blog/1999/1999-18-06-linux-install-party/index.md new file mode 100644 index 0000000..5886bfc --- /dev/null +++ b/content/blog/1999/1999-18-06-linux-install-party/index.md @@ -0,0 +1,13 @@ +--- +authors: +- ccchh-archiv +categories: article +draft: false +lastmod: '1999-06-18T19:42:00+02:00' +publishDate: '1999-06-18T19:42:00+02:00' +slug: linux-install-party +title: Linux-Install-Party +--- +Linux - die Alternative ? Wer es selbst ausprobieren möchte, sich aber allein nicht an die Installation traut, der bekommt hier Hilfe: Am 10. und 11.7.99 wird im Chaos-Bildungswerk installiert, es wird der erste eigene Kernel compiliert und vieles mehr. Weitere Informationen zu Linux gibt es am folgenden Donnerstag und Infos zu diesen Veranstaltungen [im Chaos-Bildungswerk.][1] Eine 2. Aktion in dieser Art ist in Planung. + +[1]: https://staging.hamburg.ccc.de/Workshops/index.html diff --git a/content/blog/2000/2000-02.09-bildungswerk-zurueck/index.md b/content/blog/2000/2000-02.09-bildungswerk-zurueck/index.md new file mode 100644 index 0000000..79d80b9 --- /dev/null +++ b/content/blog/2000/2000-02.09-bildungswerk-zurueck/index.md @@ -0,0 +1,14 @@ +--- +authors: +- ccchh-archiv +categories: article +draft: false +lastmod: '2000-02-09T19:42:00+02:00' +publishDate: '2000-02-09T19:42:00+02:00' +slug: bildungswerk-zurueck +title: Bildungswerk zurück +--- +Den Jahreswechsel haben wir nun auch überwunden. Deshalb gibt es neues "Futter" im [Bildungswerk][1] + +[1]: https://staging.hamburg.ccc.de/Workshops/index.html + diff --git a/content/blog/2000/2000-03-16-vortrag-tcpip/index.md b/content/blog/2000/2000-03-16-vortrag-tcpip/index.md new file mode 100644 index 0000000..b554b21 --- /dev/null +++ b/content/blog/2000/2000-03-16-vortrag-tcpip/index.md @@ -0,0 +1,14 @@ +--- +authors: +- ccchh-archiv +categories: article +draft: false +lastmod: '2000-03-16T19:42:00+02:00' +publishDate: '2000-03-16T19:42:00+02:00' +slug: vortrag-tcpip +title: Vortrag TCP/IP +--- +Nicht vergessen! Heute im [Bildungswerk][1]: TCP/IP-Vortrag + +[1]: https://staging.hamburg.ccc.de/Workshops/index.html + diff --git a/content/blog/2000/2000-03-27-bildungswerk-funk-lans/index.md b/content/blog/2000/2000-03-27-bildungswerk-funk-lans/index.md new file mode 100644 index 0000000..69db3f1 --- /dev/null +++ b/content/blog/2000/2000-03-27-bildungswerk-funk-lans/index.md @@ -0,0 +1,13 @@ +--- +authors: +- ccchh-archiv +categories: article +draft: false +lastmod: '2000-03-27T19:42:00+02:00' +publishDate: '2000-03-27T19:42:00+02:00' +slug: bildungswerk-funk-lans +title: 'Bildungswerk: Funk-LANs' +--- +Auch am 30.03.2000 gibt es im [Bildungswerk][1] interessantes Futter für Euren Geist. Es geht um Funk-LANs, also drahtlose Netzwerke. + +[1]: https://staging.hamburg.ccc.de/Workshops/index.html diff --git a/content/blog/2000/2000-04-11-bildungswerk-0190-wie-geht-denn-das/index.md b/content/blog/2000/2000-04-11-bildungswerk-0190-wie-geht-denn-das/index.md new file mode 100644 index 0000000..32f7104 --- /dev/null +++ b/content/blog/2000/2000-04-11-bildungswerk-0190-wie-geht-denn-das/index.md @@ -0,0 +1,12 @@ +--- +authors: +- ccchh-archiv +categories: article +draft: false +lastmod: '2000-04-11T19:42:00+02:00' +publishDate: '2000-04-11T19:42:00+02:00' +slug: bildungswerk-0190-wie-geht-denn-das +title: 'Bildungswerk: 0190 - wie geht denn das ?' +--- +Es läuft und läuft und läuft... das Bildungswerk. +Diesmal referiert Steffen über interessante Fakten zum Service 0190 der Telekom, schliesslich muß er es ja wissen ;-) diff --git a/content/blog/2000/2000-04-26-bildungswerk-kryptographie/index.md b/content/blog/2000/2000-04-26-bildungswerk-kryptographie/index.md new file mode 100644 index 0000000..fef9f48 --- /dev/null +++ b/content/blog/2000/2000-04-26-bildungswerk-kryptographie/index.md @@ -0,0 +1,12 @@ +--- +authors: +- ccchh-archiv +categories: article +draft: false +lastmod: '2000-04-26T19:42:00+02:00' +publishDate: '2000-04-26T19:42:00+02:00' +slug: bildungswerk-kryptographie +title: 'Bildungswerk: Kryptographie' +--- +Morgen am 27.04.2000 freuen wir uns wieder ueber ein volles Haus! +Besonders bei einem so wichtigen Thema, wie den Grundlagen der Verschlüsselung. Und das beste: Am 18.05.2000 gibt es noch eine Folgeveranstaltung dazui. diff --git a/content/blog/2000/2000-05-10-bildungswerk-linux-faq/index.md b/content/blog/2000/2000-05-10-bildungswerk-linux-faq/index.md new file mode 100644 index 0000000..02dc0c6 --- /dev/null +++ b/content/blog/2000/2000-05-10-bildungswerk-linux-faq/index.md @@ -0,0 +1,11 @@ +--- +authors: +- ccchh-archiv +categories: article +draft: false +lastmod: '2000-05-10T19:42:00+02:00' +publishDate: '2000-05-10T19:42:00+02:00' +slug: bildungswerk-linux-faq +title: 'Bildungswerk: Linux FAQ' +--- +Morgen ist mal wieder Bildungswerkzeit. Besonders diejenigen, die zu unserer Linuxinstallparty erschienen waren, sind eingeladen. Wir hatten ja alles in allem wieder viel Spaß und stehen nun nachdem Ihr Zeit hattet, alleine mit dem System zu arbeiten, nochmal für Linuxfragen zur Verfügung. Außerdem sind wir für Eure Anregungen bzgl. derartiger Installpartys offen. Genug geschrieben, schaut rein! (auch wer nicht dabei war...) diff --git a/content/blog/2000/2000-05-18-bildungswerk-trustcenter/index.md b/content/blog/2000/2000-05-18-bildungswerk-trustcenter/index.md new file mode 100644 index 0000000..dba3a72 --- /dev/null +++ b/content/blog/2000/2000-05-18-bildungswerk-trustcenter/index.md @@ -0,0 +1,11 @@ +--- +authors: +- ccchh-archiv +categories: article +draft: false +lastmod: '2000-05-18T19:42:00+02:00' +publishDate: '2000-05-18T19:42:00+02:00' +slug: bildungswerk-trustcenter +title: 'Bildungswerk: Trustcenter' +--- +Heute ist nochmal Bildungswerkzeit. Wir haben einen Experten zum Thema Trustcenter, Signaturgesetz und digitale Signaturen im Haus. Wir freuen uns über zahlreiches Erscheinen... diff --git a/content/blog/2000/2000-06-06-party-hackschiff/index.md b/content/blog/2000/2000-06-06-party-hackschiff/index.md new file mode 100644 index 0000000..5cf681d --- /dev/null +++ b/content/blog/2000/2000-06-06-party-hackschiff/index.md @@ -0,0 +1,16 @@ +--- +authors: +- ccchh-archiv +categories: article +draft: false +lastmod: '2000-06-06T19:42:00+02:00' +publishDate: '2000-06-06T19:42:00+02:00' +slug: party-hackschiff +title: 'Party: Hackschiff' +--- +Hacken auf dem Schiff: Am 4. August ist es so weit. Mit einem Ausflugsschiff kurvt der Kölner CCC ab Bonn auf dem Rhein, von 18:00 Uhr bis etwa 3:00 Uhr morgens. Natürlich wird es ein umfangreiches Programm (Vorträge etc.) geben. +[Weitere Info][1] + + +[1]: http://koeln.ccc.de/projekte/hackschiff/ + diff --git a/content/blog/2000/2000-08-13-bildungswerk/index.md b/content/blog/2000/2000-08-13-bildungswerk/index.md new file mode 100644 index 0000000..03dce70 --- /dev/null +++ b/content/blog/2000/2000-08-13-bildungswerk/index.md @@ -0,0 +1,13 @@ +--- +authors: +- ccchh-archiv +categories: article +draft: false +lastmod: '2000-08-13T19:42:00+02:00' +publishDate: '2000-08-13T19:42:00+02:00' +slug: bildungswerk +title: Bildungswerk +--- +Aktuelle Vorträge im Hamburger Bildungswerk: + +Der angekündigte Vortrag des Hamburgischen Datenschutzbeauftragten muß leider **verschoben** werden. Der neue Termin steht noch nicht fest. diff --git a/content/blog/2000/2000-08-16-bildungswerk-linux-cluster-workshop/index.md b/content/blog/2000/2000-08-16-bildungswerk-linux-cluster-workshop/index.md new file mode 100644 index 0000000..f77d6b7 --- /dev/null +++ b/content/blog/2000/2000-08-16-bildungswerk-linux-cluster-workshop/index.md @@ -0,0 +1,14 @@ +--- +authors: +- ccchh-archiv +categories: article +draft: false +lastmod: '2000-08-16T19:42:00+02:00' +publishDate: '2000-08-16T19:42:00+02:00' +slug: bildungswerk-linux-cluster-workshop +title: 'Bildungswerk: Linux Cluster Workshop' +--- +High Availability-Studie + +Am **Samstag, den 9.09.2000** und am **Sonntag, den 10.10.2000** findet ein Experimentier-Workshop zum Thema Hochverfügbarkeit von Linux-Servern statt. Geplant ist ein Aufbau aus mehreren Linux-Rechnern, die jeweils Aufgaben des anderen Rechners übernehmen, wenn ein Rechner ausfällt. Durch simulierte Crashs soll die Funktionsfähigkeit in der Praxis untersucht werden. +Für diesen Workshop ist eine Anmeldung unbedingt erforderlich! **Bereits alle Plätze vergeben.** diff --git a/content/blog/2000/2000-08-17-bildungswerk-datenschutz/index.md b/content/blog/2000/2000-08-17-bildungswerk-datenschutz/index.md new file mode 100644 index 0000000..27af4e3 --- /dev/null +++ b/content/blog/2000/2000-08-17-bildungswerk-datenschutz/index.md @@ -0,0 +1,13 @@ +--- +authors: +- ccchh-archiv +categories: article +draft: false +lastmod: '2000-09-17T19:42:00+02:00' +publishDate: '2000-09-17T19:42:00+02:00' +slug: bildungswerk=datenschutz +title: 'Bildungswerk: Datenschutz' +--- +Der Hamburgische Datenschutzbeauftragte zu Gast im Chaos-Bildungswerk + +Am **Donnerstag, den 7.09.2000** wird Herr Peter Schaar, als Hamburgischer Datenschutzbeauftragter zuständig für Telekommunikation, Medien und Teledienste, einen Gastvortrag im Bildungswerk halten. Thema ist die *Protokollierung des Verhaltens von Internetnutzern*. Achtung: Beginn bereits um **18:30 Uhr**! diff --git a/content/blog/2000/2000-09-17-bildungswerk-datenschutz/index.md b/content/blog/2000/2000-09-17-bildungswerk-datenschutz/index.md new file mode 100644 index 0000000..d6ea94a --- /dev/null +++ b/content/blog/2000/2000-09-17-bildungswerk-datenschutz/index.md @@ -0,0 +1,11 @@ +--- +authors: +- ccchh-archiv +categories: article +draft: false +lastmod: '2000-09-17T19:42:00+02:00' +publishDate: '2000-09-17T19:42:00+02:00' +slug: bildungswerk-neue-datenschutz +title: 'Bildungswerk: Datenschutz' +--- +Die Mitschrift zum Datenschutzvortrag liegt auf der Bildungswerk-Seite zum Abruf bereit. diff --git a/content/blog/2000/2000-10-21-bildungswerk-neue-termine/index.md b/content/blog/2000/2000-10-21-bildungswerk-neue-termine/index.md new file mode 100644 index 0000000..b693634 --- /dev/null +++ b/content/blog/2000/2000-10-21-bildungswerk-neue-termine/index.md @@ -0,0 +1,11 @@ +--- +authors: +- ccchh-archiv +categories: article +draft: false +lastmod: '2000-10-21T19:42:00+02:00' +publishDate: '2000-10-21T19:42:00+02:00' +slug: bildungswerk-neue-termine +title: 'Bildungswerk: neue Termine' +--- +Der Sommer ist vorbei und ab November gibt es wieder regelmäßig Workshops im Chaos-Bildungswerk. Die aktuellen Termine finden sich unter www.hamburg.ccc.de/bildungswerk diff --git a/content/blog/2000/2000-10-21-vorwarnung/index.md b/content/blog/2000/2000-10-21-vorwarnung/index.md new file mode 100644 index 0000000..923d81f --- /dev/null +++ b/content/blog/2000/2000-10-21-vorwarnung/index.md @@ -0,0 +1,11 @@ +--- +authors: +- ccchh-archiv +categories: article +draft: false +lastmod: '2000-10-21T23:42:00+02:00' +publishDate: '2000-10-21T23:42:00+02:00' +slug: vorwarnung +title: Vorwarnung +--- +Da der Vorstand des CCC e.V. sich "teilweise für Handlungsunfähig" hält, plant dieser eine außerordendliche Mitgliederversammlung. Diese wird voraussichtlich am Samstag dem 18.11.2000 in BIELEFELD stattfinden. Sobald der Vorstand die Ladung ofiziell ankündigt, findet Ihr hier Informationen zur preiswerten gemeinsammen Anreise für die Mitglieder des Erfa-Kreises Hamburg. diff --git a/content/blog/2000/2000-10-29-bildungswerk-sql-workshop/index.md b/content/blog/2000/2000-10-29-bildungswerk-sql-workshop/index.md new file mode 100644 index 0000000..773ef13 --- /dev/null +++ b/content/blog/2000/2000-10-29-bildungswerk-sql-workshop/index.md @@ -0,0 +1,11 @@ +--- +authors: +- ccchh-archiv +categories: article +draft: false +lastmod: '2000-10-29T19:42:00+02:00' +publishDate: '2000-10-29T19:42:00+02:00' +slug: bildungswerk-sql-workshop +title: 'Bildungswerk: SQL-Workshop' +--- +Am **2.11.2000** und **9.11.2000** (Doppeltermin) findet im Hamburger Chaos-Bildungswerk ein Workshop zum Thema SQL-Datenbanken statt. Beginn ist um 19:30 Uhr. Weitere Infos unter http://hamburg.ccc.de/bildungswerk/ diff --git a/content/blog/2000/2000-11-14-mitgliederversammlung/index.md b/content/blog/2000/2000-11-14-mitgliederversammlung/index.md new file mode 100644 index 0000000..f28263c --- /dev/null +++ b/content/blog/2000/2000-11-14-mitgliederversammlung/index.md @@ -0,0 +1,21 @@ +--- +authors: +- ccchh-archiv +categories: article +draft: false +lastmod: '2000-11-14T19:42:00+02:00' +publishDate: '2000-11-14T19:42:00+02:00' +slug: mitgliederversammlung +title: Mitgliederversammlung +--- + +Am 18.11.2000 findet in Bielefeld eine außerordentliche Mitgliederversammlung des CCC e.V.'s statt. Der Erfa-Kreis Hamburg fährt mit einem Reisebus hin und zurück. + +
| Abfahrt: | Sonnabend, 18.11. 9:30 Uhr |
| Treffpunkt: | U-Bahnhof Kellinghusenstraße |
| Fahrpreis: | 25 DM / 10 DM ermäßigt (wird im Bus kassiert, wer kein Geld hat kann trotzdem mitfahren) |
| Rückfahrt: | ab 22 Uhr |
Wir pflegen ein Archiv aller Neuigkeiten.