User Tools

Site Tools


event:2k6

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
event:2k6 [2014/12/05 16:18] – [2k6_dates_for_dokuwiki.sh] ruzaevent:2k6 [2026/01/18 15:59] (current) – miesto abyssal
Line 1: Line 1:
 +====== 2k6 meetings ======
  
 +{{template>~infobox|
 +name=2k6|
 +image=2600.png|
 +organizer=[[user:ruza]]\\ [[user:johny]]|
 +datetime=first Friday of each month, 19:00|
 +place=Zapomenutý čas, Anglická 658/23|
 +stream=N/A
 +}}
 +
 +
 +===== About meetings =====
 +
 +2600 meetings (or shortly "2k6") are regular meetings on the **first Friday of each month, 6pm** organized worldwide where everybody who is interested in computer security and the impact of technology on society is welcome, from both sides of the fence, no matter what your age or level of skill and experience. 
 +
 +**When:** Next 2k6 meeting is at **~~NEXTDAY:first fri~~, 18:00** 
 +
 +**Where:** Prague 2k6 meetings takes place since 2003 in [[https://www.zapomenutycas.cz/kontakt | Zapomenutý čas]] in the centre of Prague. Place has multiple sections, during summer also back garden, there is only one way from entrance to back (there's front gardgen on street during summer as well, but having small tables and next to main road).
 +
 +Expect that about 10-15 people attend each meeting.
 +
 +===== Links =====
 +
 +<note> [[http://meetings.2600.cz/|2k6 meeting, Prague - oficial site]] </note>
 +  * [[http://meetings.2600.cz/board.php|2k6 meeting, Prague - forum]]
 +  * [[http://www.2600.com/meetings/|2k6 meetings worldwide]] (2600.com, EN)
 +  * [[http://eldar.cz/kangaroo/clanecky/hackeri/|2k6 meeting report by klokanek]] (eldar.cz, CZ)
 +
 +===== Questions? =====
 +If you still have questions you can try to ask on brmlab [[https://web.libera.chat/?nick=brm2k6#brmlab|IRC]] chat.
 +
 +===== 2k6_dates_for_dokuwiki_calendar.sh =====
 +<file 2k6_dates_for_dokuwiki_calendar.sh>
 +#!/bin/ksh93
 +
 +year=2015
 +for month in jan feb mar apr may jun jul aug sep oct nov dec
 +do
 +   #printf "%(%D)T\n" "first friday in ${month} ${year}"
 +   printf "  * %(%d.%m.%Y)T 18:00 [[http://meetings.2600.cz/|2k6]]\n" "first friday in ${month} ${year}"
 +done
 +
 +exit 0
 +</file>
 +
 +===== 2k6_dates_for_dokuwiki_calendar_bash.sh =====
 +<file 2k6_dates_for_dokuwiki_calendar_bash.sh>
 +#!/bin/bash
 +y=2022
 +for m in $(seq 1 12); do 
 +   echo "  * $(date +"%Y-%m-%d" -d "$y-$m-$(cal -v -m $m $y|sed -n 's/^Fr[ ]*\([0-9]*\).*/\1/p')") 18:00 [[http://meetings.2600.cz/|2k6]]"
 +done
 +exit 0
 +</file>