forked from fixme-lausanne/Twitter-Hackerspace-Status
-
Notifications
You must be signed in to change notification settings - Fork 0
/
civicrm_ical.ics
1191 lines (1191 loc) · 46.5 KB
/
civicrm_ical.ics
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//CiviCRM//NONSGML CiviEvent iCal//EN
X-WR-TIMEZONE:Europe/Zurich
METHOD:PUBLISH
BEGIN:VEVENT
SUMMARY:Defcon CTF prequals
DESCRIPTION:\n https://2013.legitbs.net\n https://wiki.fixme
.ch/CTF
CATEGORIES:Workshop
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20130615T020000
DTSTART;VALUE=DATE-TIME:20130615T020000
DTEND;VALUE=DATE-TIME:20130617T020000
LOCATION:Association FIXME\n Rue de Genève 79\n Lausanne\,
VD\n Switzerland\n
URL:https://fixme.ch/civicrm/event/info?reset=1&id=71
END:VEVENT
BEGIN:VEVENT
SUMMARY:EB CTF Prequals
DESCRIPTION:\n https://fixme.ch/wiki/CTFriday
CATEGORIES:Workshop
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20130601T140000
DTSTART;VALUE=DATE-TIME:20130601T140000
DTEND;VALUE=DATE-TIME:20130601T220000
LOCATION:Association FIXME\n Rue de Genève 79\n Lausanne\,
VD\n Switzerland\n
URL:https://fixme.ch/civicrm/event/info?reset=1&id=70
END:VEVENT
BEGIN:VEVENT
SUMMARY:Alternatives Urbaines 2013
DESCRIPTION:\n https://fixme.ch/wiki/AlternativesUrbaines2013
CATEGORIES:Workshop
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20130503T090000
DTSTART;VALUE=DATE-TIME:20130503T090000
DTEND;VALUE=DATE-TIME:20130504T180000
LOCATION:Avenue Dapples 50\n Maison de quartier sous-gare\n
Lausanne\, \n Switzerland\n
URL:https://fixme.ch/civicrm/event/info?reset=1&id=68
END:VEVENT
BEGIN:VEVENT
SUMMARY:Cryptoparty #1
DESCRIPTION:\n https://fixme.ch/wiki/Cryptoparty1
CATEGORIES:Workshop
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20130419T190000
DTSTART;VALUE=DATE-TIME:20130419T190000
DTEND;VALUE=DATE-TIME:20130419T120000
LOCATION:Association FIXME\n Rue de Genève 79\n Lausanne\,
VD\n Switzerland\n
URL:https://fixme.ch/civicrm/event/info?reset=1&id=69
END:VEVENT
BEGIN:VEVENT
SUMMARY:Insomni'Hack 2013
DESCRIPTION:\n https://fixme.ch/wiki/InsomniHack-2013
CATEGORIES:Workshop
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20130322T180000
DTSTART;VALUE=DATE-TIME:20130322T180000
DTEND;VALUE=DATE-TIME:20130323T010000
LOCATION:Palexpo\n Geneva\, GE\n Switzerland\n
URL:https://fixme.ch/civicrm/event/info?reset=1&id=67
END:VEVENT
BEGIN:VEVENT
SUMMARY:Cours Android #2
DESCRIPTION:\n https://fixme.ch/wiki/CoursAndroid2
CATEGORIES:Workshop
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20130314T190000
DTSTART;VALUE=DATE-TIME:20130314T190000
DTEND;VALUE=DATE-TIME:20130314T220000
LOCATION:Association FIXME\n Rue de Genève 79\n Lausanne\,
VD\n Switzerland\n
URL:https://fixme.ch/civicrm/event/info?reset=1&id=65
END:VEVENT
BEGIN:VEVENT
SUMMARY:Cours Django #1
DESCRIPTION:\n First session of the web Pyhton framework: Dja
ngo.\n Focused on beginners.\n \n Content:\n *
About Django\n * Dev env setup\n * First projec
t\n * First app
CATEGORIES:Workshop
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20130307T190000
DTSTART;VALUE=DATE-TIME:20130307T190000
DTEND;VALUE=DATE-TIME:20130307T190000
LOCATION:Association FIXME\n Rue de Genève 79\n Lausanne\,
VD\n Switzerland\n
URL:https://fixme.ch/civicrm/event/info?reset=1&id=66
END:VEVENT
BEGIN:VEVENT
SUMMARY:Raspberry PI workshop
DESCRIPTION:\n Please register on the framapad!\n http://fra
madate.org/l48jvifcabcadjhy\n https://fixme.ch/wi
ki/RaspberryPi1
CATEGORIES:Workshop
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20130226T190000
DTSTART;VALUE=DATE-TIME:20130226T190000
DTEND;VALUE=DATE-TIME:20130226T230000
LOCATION:Association FIXME\n Rue de Genève 79\n Lausanne\,
VD\n Switzerland\n
URL:https://fixme.ch/civicrm/event/info?reset=1&id=62
END:VEVENT
BEGIN:VEVENT
SUMMARY:Coding Night #4
DESCRIPTION:\n https://fixme.ch/wiki/CodingNight4
CATEGORIES:Workshop
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20130209T120000
DTSTART;VALUE=DATE-TIME:20130209T120000
DTEND;VALUE=DATE-TIME:20130210T000000
LOCATION:Association FIXME\n Rue de Genève 79\n Lausanne\,
VD\n Switzerland\n
URL:https://fixme.ch/civicrm/event/info?reset=1&id=63
END:VEVENT
BEGIN:VEVENT
SUMMARY:CTFriday: Insomni'Hack training
DESCRIPTION:\n https://fixme.ch/wiki/InsomniHack-2013
CATEGORIES:Meeting
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20130125T190000
DTSTART;VALUE=DATE-TIME:20130125T190000
DTEND;VALUE=DATE-TIME:20130125T230000
LOCATION:Association FIXME\n Rue de Genève 79\n Lausanne\,
VD\n Switzerland\n
URL:https://fixme.ch/civicrm/event/info?reset=1&id=61
END:VEVENT
BEGIN:VEVENT
SUMMARY:Workshop Addressable LED Strips
DESCRIPTION:\n https://fixme.ch/wiki/Addressable_LED_strip
CATEGORIES:Workshop
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20130121T190000
DTSTART;VALUE=DATE-TIME:20130121T190000
DTEND;VALUE=DATE-TIME:20130121T210000
LOCATION:Association FIXME\n Rue de Genève 79\n Lausanne\,
VD\n Switzerland\n
URL:https://fixme.ch/civicrm/event/info?reset=1&id=64
END:VEVENT
BEGIN:VEVENT
SUMMARY:29C3
DESCRIPTION:\n People may also gather at FIXME to share Club
Mate and watch the streams.\n \n https://fixme.ch
/wiki/29C3
CATEGORIES:Conference
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20121227T060000
DTSTART;VALUE=DATE-TIME:20121227T060000
DTEND;VALUE=DATE-TIME:20121230T180000
LOCATION:St.Petersburger Straße 1\n CCH\n Hamburg\, 20355\
n Germany\n
URL:https://fixme.ch/civicrm/event/info?reset=1&id=60
END:VEVENT
BEGIN:VEVENT
SUMMARY:PCB Etching
DESCRIPTION:\n https://fixme.ch/wiki/PCB_Etching \;
CATEGORIES:Workshop
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20121213T190000
DTSTART;VALUE=DATE-TIME:20121213T190000
DTEND;VALUE=DATE-TIME:20121213T220000
LOCATION:Association FIXME\n Rue de Genève 79\n Lausanne\,
VD\n Switzerland\n
URL:https://fixme.ch/civicrm/event/info?reset=1&id=59
END:VEVENT
BEGIN:VEVENT
SUMMARY:Assemblée Générale 2012
DESCRIPTION:\n http://fixme.ch/wiki/AG_2012_December
CATEGORIES:Meeting
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20121211T190000
DTSTART;VALUE=DATE-TIME:20121211T190000
DTEND;VALUE=DATE-TIME:20121211T230000
LOCATION:Association FIXME\n Rue de Genève 79\n Lausanne\,
VD\n Switzerland\n
URL:https://fixme.ch/civicrm/event/info?reset=1&id=57
END:VEVENT
BEGIN:VEVENT
SUMMARY:rwthCTF 2012
DESCRIPTION:\n https://fixme.ch/wiki/CTF
CATEGORIES:Workshop
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20121130T140000
DTSTART;VALUE=DATE-TIME:20121130T140000
DTEND;VALUE=DATE-TIME:20121201T020000
LOCATION:Association FIXME\n Rue de Genève 79\n Lausanne\,
VD\n Switzerland\n
URL:https://fixme.ch/civicrm/event/info?reset=1&id=58
END:VEVENT
BEGIN:VEVENT
SUMMARY:ruCTFE 2012
DESCRIPTION:\n https://fixme.ch/wiki/CTF
CATEGORIES:Workshop
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20121124T160000
DTSTART;VALUE=DATE-TIME:20121124T160000
DTEND;VALUE=DATE-TIME:20121124T000000
LOCATION:Association FIXME\n Rue de Genève 79\n Lausanne\,
VD\n Switzerland\n
URL:https://fixme.ch/civicrm/event/info?reset=1&id=56
END:VEVENT
BEGIN:VEVENT
SUMMARY:Démocratie et technologie
DESCRIPTION:\n "\;Internet\, stade final de la dé\;
mocratie ?"\; é\;tait le titre de la der
niè\;re \;sé\;ance des "\;XXVI
I Rencontres de Pé\;trarque"\; en 2012 (
sé\;rie de confé\;rences \;organis
é\;es par le journal Le monde et la radio Fr
ance culture)\n \n Ce titre exprime bien les atte
ntes citoyennes de l&rsquo\;'\;utilisation 
\;d'\;&rsquo\;Internet par rapport à\; la
dé\;mocratie. \;\n \n Est-ce que cette
é\;volution sera é\;quivalente &agrav
e\; celle apporté\;e par l'\;e-commerce d
ans \;la sphè\;re é\;conomique des
consommateurs et producteurs? \;Quel impact p
rocure la technologie sur les changements dé
\;mocratiques?\n \n Autant de questions de soci&e
acute\;té\; que nous tenterons d'\;aborde
r dans cette \;sé\;ance.
CATEGORIES:Conference
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20121101T190000
DTSTART;VALUE=DATE-TIME:20121101T190000
DTEND;VALUE=DATE-TIME:20121101T210000
LOCATION:Association FIXME\n Rue de Genève 79\n Lausanne\,
VD\n Switzerland\n
URL:https://fixme.ch/civicrm/event/info?reset=1&id=52
END:VEVENT
BEGIN:VEVENT
SUMMARY:Projection d'un film et discussion sur l'e-waste
DESCRIPTION:\n S'\;en suivra une \;discussion \;su
r \;les initiatives à\; mettre en place
pour lutter contre le gaspillage\, en \;passan
t par l'\;é\;ducation [1]\, l'\;organi
sation d'\;ateliers de ré\;paration ou&nb
sp\;autres projects.\n \n [1] \;http://www.r
ecycling-guide.org.uk/rrr.html
CATEGORIES:Conference
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20121030T200000
DTSTART;VALUE=DATE-TIME:20121030T200000
DTEND;VALUE=DATE-TIME:20121030T220000
LOCATION:Association FIXME\n Rue de Genève 79\n Lausanne\,
VD\n Switzerland\n
URL:https://fixme.ch/civicrm/event/info?reset=1&id=55
END:VEVENT
BEGIN:VEVENT
SUMMARY:Hack.lu CTF
DESCRIPTION:\n http://2012.hack.lu/index.php/CaptureTheFlag\n
https://fixme.ch/wiki/Hacking_challenges
CATEGORIES:Workshop
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20121023T230000
DTSTART;VALUE=DATE-TIME:20121023T230000
DTEND;VALUE=DATE-TIME:20121025T230000
LOCATION:Association FIXME\n Rue de Genève 79\n Lausanne\,
VD\n Switzerland\n
URL:https://fixme.ch/civicrm/event/info?reset=1&id=53
END:VEVENT
BEGIN:VEVENT
SUMMARY:Présentation Arduino-Microcontroleur
DESCRIPTION:\n - Arduino: points forts et points faibles\n -
Arduino\, Teensy\, Pinguino\, Pic32\, MSP450\, Ra
spberry: que choisir?\n - \;Solutions pour le
dé\;veloppement temps ré\;el et l'
\;enseignement\n - Capteurs de distance faciles &
agrave\; mettre en oeuvre\n \n https://fixme.ch/w
iki/Presentation_Microcontroleur
CATEGORIES:Conference
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20121011T190000
DTSTART;VALUE=DATE-TIME:20121011T190000
DTEND;VALUE=DATE-TIME:20121011T220000
LOCATION:Association FIXME\n Rue de Genève 79\n Lausanne\,
VD\n Switzerland\n
URL:https://fixme.ch/civicrm/event/info?reset=1&id=51
END:VEVENT
BEGIN:VEVENT
SUMMARY:Friends of WikiLeaks Meeting
DESCRIPTION:\n As agenda\, I would like to propose two points
:\n \n  \;\n \n 1. Introduce / get to know e
ach other\n \n 2. Collect ideas on what we can do
locally to support WL. Some general ideas are&nbs
p\;here \;in the WLFriends Manifesto and also&
nbsp\;here \;on the WL page.\n \n  \;\n \
n http://fixme.ch/wiki/Wikileaks_meeting
CATEGORIES:Meeting
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20121009T190000
DTSTART;VALUE=DATE-TIME:20121009T190000
DTEND;VALUE=DATE-TIME:20121009T220000
LOCATION:Association FIXME\n Rue de Genève 79\n Lausanne\,
VD\n Switzerland\n
URL:https://fixme.ch/civicrm/event/info?reset=1&id=54
END:VEVENT
BEGIN:VEVENT
SUMMARY:CSAW CTF
DESCRIPTION:\n CSAW: \;https://csawctf.poly.edu/\n \n Mo
re information on other CTFs: \;http://fixme.c
h/wiki/Hacking_challenges
CATEGORIES:Workshop
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20120928T220000
DTSTART;VALUE=DATE-TIME:20120928T220000
DTEND;VALUE=DATE-TIME:20120930T220000
LOCATION:Association FIXME\n Rue de Genève 79\n Lausanne\,
VD\n Switzerland\n
URL:https://fixme.ch/civicrm/event/info?reset=1&id=50
END:VEVENT
BEGIN:VEVENT
SUMMARY:Short Talks: GIT and Haskell
DESCRIPTION:\n GIT\n Introductory talk about git\, in apprx.
1.5 hrs.\n \n In the past I have seen people str
uggle with basic git concepts such as the stage an
d the commit-graph. Thus\, the talk will be a mix
of practical instructions and theoretical concepts
\, culminating in the realisation\, that all git c
ommands are a graph operation on a commit-graph. I
f time permits I will show some lesser known easte
r-eggs such as how to define a 256 color palette s
cheme and using parameterisable shell-functions in
git aliases.\n \n Haskell\n TBD
CATEGORIES:Conference
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20120926T190000
DTSTART;VALUE=DATE-TIME:20120926T190000
DTEND;VALUE=DATE-TIME:20120926T220000
LOCATION:Association FIXME\n Rue de Genève 79\n Lausanne\,
VD\n Switzerland\n
URL:https://fixme.ch/civicrm/event/info?reset=1&id=46
END:VEVENT
BEGIN:VEVENT
SUMMARY:Table ronde Culture #3
DESCRIPTION:\n http://fixme.ch/wiki/Discussions_culture_3
CATEGORIES:Workshop
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20120830T190000
DTSTART;VALUE=DATE-TIME:20120830T190000
DTEND;VALUE=DATE-TIME:20120830T220000
LOCATION:Association FIXME\n Rue de Genève 79\n Lausanne\,
VD\n Switzerland\n
URL:https://fixme.ch/civicrm/event/info?reset=1&id=49
END:VEVENT
BEGIN:VEVENT
SUMMARY:Cyberlympics CTF
DESCRIPTION:\n http://fixme.ch/wiki/Hacking_challenges
CATEGORIES:Workshop
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20120816T200000
DTSTART;VALUE=DATE-TIME:20120816T200000
DTEND;VALUE=DATE-TIME:20120816T120000
LOCATION:Association FIXME\n Rue de Genève 79\n Lausanne\,
VD\n Switzerland\n
URL:https://fixme.ch/civicrm/event/info?reset=1&id=48
END:VEVENT
BEGIN:VEVENT
SUMMARY:Cyberlympics CTF
CATEGORIES:Workshop
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20120809T200000
DTSTART;VALUE=DATE-TIME:20120809T200000
DTEND;VALUE=DATE-TIME:20120809T230000
LOCATION:Association FIXME\n Rue de Genève 79\n Lausanne\,
VD\n Switzerland\n
URL:https://fixme.ch/civicrm/event/info?reset=1&id=47
END:VEVENT
BEGIN:VEVENT
SUMMARY:Table ronde Culture #2
DESCRIPTION:\n Je propose d'\;orienter le dé\;bat su
r un article sorti le 07.07.2012.\n Plus d'\;i
nformations sur le wiki.
CATEGORIES:Conference
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20120727T190000
DTSTART;VALUE=DATE-TIME:20120727T190000
DTEND;VALUE=DATE-TIME:20120727T220000
LOCATION:Association FIXME\n Rue de Genève 79\n Lausanne\,
VD\n Switzerland\n
URL:https://fixme.ch/civicrm/event/info?reset=1&id=44
END:VEVENT
BEGIN:VEVENT
SUMMARY:Cours Android #1
DESCRIPTION:\n Pour plus d'\;information voir \;http:/
/fixme.ch/wiki/CoursAndroid1
CATEGORIES:Workshop
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20120724T190000
DTSTART;VALUE=DATE-TIME:20120724T190000
DTEND;VALUE=DATE-TIME:20120724T220000
LOCATION:Association FIXME\n Rue de Genève 79\n Lausanne\,
VD\n Switzerland\n
URL:https://fixme.ch/civicrm/event/info?reset=1&id=45
END:VEVENT
BEGIN:VEVENT
SUMMARY:Coding Night #3
DESCRIPTION:\n \n Create new\, beautiful and amazing things
in a single night\n \n Contribute to open sour
ce projects\n \n Learn new technologies on the
fly\n \n Work in a group of minimum two people\
n \n \n https://fixme.ch/wiki/CodingNight3
CATEGORIES:Workshop
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20120720T190000
DTSTART;VALUE=DATE-TIME:20120720T190000
DTEND;VALUE=DATE-TIME:20120721T060000
LOCATION:Association FIXME\n Rue de Genève 79\n Lausanne\,
VD\n Switzerland\n
URL:https://fixme.ch/civicrm/event/info?reset=1&id=40
END:VEVENT
BEGIN:VEVENT
SUMMARY:RMLL 2012
DESCRIPTION:\n FIXME participera aux RMLL\, voir le wiki.\n \
n Plus d'\;information sur http://2012.rmll.in
fo
CATEGORIES:Conference
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20120707T090000
DTSTART;VALUE=DATE-TIME:20120707T090000
DTEND;VALUE=DATE-TIME:20120712T190000
LOCATION:Bd du Pont-d'Arve 40\n UNI MAIL\n Geneva\, GE 1205
\n Switzerland\n
URL:https://fixme.ch/civicrm/event/info?reset=1&id=43
END:VEVENT
BEGIN:VEVENT
SUMMARY:Discussions Culture
DESCRIPTION:\n Nous tenterons aussi de comprendre la logique
derriè\;re des traité\;s tels\n que A
CTA\, TPP et les autres mesures visant le té
\;lé\;chargement sur Internet.\n Et pour fi
nir\, ré\;flexions quant aux solutions perme
ttant tant une\n ré\;muné\;ration des
artistes (et donc la survie de la culture) que la
\n distribution et l'\;accè\;s à\;
la culture par toutes et tous.\n \n Christian W
icky\, artiste (Favez)\, membre de la direction de
SUISA et\n employé\; dans une socié\
;té\; de promotion musicale (Irascible distr
ibution)\,\n ainsi que Michael Gabriele\, membre
du groupe power-jazz indé\;pendant\n OUiZZZ
\, nous donneront leur point de vue et nous permet
trons d'\;avoir des\n exemples et explications
ré\;elles quant au systè\;me mis en p
lace.
CATEGORIES:Conference
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20120628T190000
DTSTART;VALUE=DATE-TIME:20120628T190000
DTEND;VALUE=DATE-TIME:20120628T230000
LOCATION:Association FIXME\n Rue de Genève 79\n Lausanne\,
VD\n Switzerland\n
URL:https://fixme.ch/civicrm/event/info?reset=1&id=42
END:VEVENT
BEGIN:VEVENT
SUMMARY:DQUOTEVive la ResistanceDQUOTE workshop and biohac
king discussion
DESCRIPTION:\n  \;\n \n La Socié\;té\; Suiss
e d'\;Art Mechatronique et hackteria vous invit
ent à\; un \;workshop "\;Vive la Res
istance"\; ainsi qu'\;à\; des discuss
ion autour du \;biohacking.\n \n Le but de c
e workshop est de construire un circuit simple con
tenant un \;oscillateur et un capteur ré
\;sistif de gaz\, fait maison avec de la suie 
\;(des nanoparticules de carbone). A la sortie du
dé\;té\;cteur peuvent par \;exempl
e ê\;tre placé\;s des LEDs clignotantes
ou un haut-parleur.\n Soufflez dessus\, puis buv
ez de l'\;alcool et souflez dessus à\; no
uveau\, \;enfin é\;couter le chant de la
ré\;sistance \;)\n \n ----------\n \n S
wiss Mechatronic Art Society (SGMK) and hackteria
invite you to a \;"\;Vive la Resistance&qu
ot\; make-away and a biohacking discussion.\n \n
 \;\n \n In this expanded workshop we will bu
ild a simple circuit that has an oscillator and a
resistive gas sensor self-made out of soot aka saj
e (carbon nanoparticles). The output can be both a
blinking LED and also a speaker that produces sou
nds.\n \n Breath on it\, drink some alcohol and b
reath on it again\, and listen to the resistance s
ing!\n \n  \;\n \n ----------\n \n  \;\
n \n \n http://wiki.sgmk-ssam.ch/index.php/Vive
_la_Resistance_aka_NanoSmano_Sajica\n \n http:/
/www.mechatronicart.ch\n \n http://hackteria.or
g\n \n \n  \;\n \n
CATEGORIES:Workshop
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20120620T190000
DTSTART;VALUE=DATE-TIME:20120620T190000
DTEND;VALUE=DATE-TIME:20120620T120000
LOCATION:Association FIXME\n Rue de Genève 79\n Lausanne\,
VD\n Switzerland\n
URL:https://fixme.ch/civicrm/event/info?reset=1&id=41
END:VEVENT
BEGIN:VEVENT
SUMMARY:Defcon qualifications CTF
CATEGORIES:Workshop
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20120602T040000
DTSTART;VALUE=DATE-TIME:20120602T040000
DTEND;VALUE=DATE-TIME:20120603T210000
LOCATION:Association FIXME\n Rue de Genève 79\n Lausanne\,
VD\n Switzerland\n
URL:https://fixme.ch/civicrm/event/info?reset=1&id=38
END:VEVENT
BEGIN:VEVENT
SUMMARY:Short Talks
DESCRIPTION:\n Wednesday\, May 30th\, takes place the second
Short Talks event. It'\;ll start around 20h00.\
n \n  \;\n \n Here is the program:\n \n \n
Evenja\, by Fabian\n \n GIT crash course\n \
n TBD: Your talk here ?\n \n \n Do not hesitate
to come over\, it'\;s a free event !
CATEGORIES:Conference
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20120530T200000
DTSTART;VALUE=DATE-TIME:20120530T200000
DTEND;VALUE=DATE-TIME:20120530T210000
LOCATION:Association FIXME\n Rue de Genève 79\n Lausanne\,
VD\n Switzerland\n
URL:https://fixme.ch/civicrm/event/info?reset=1&id=39
END:VEVENT
BEGIN:VEVENT
SUMMARY:Monthly hacking challenges
DESCRIPTION:\n https://fixme.ch/wiki/Hacking_challenges
CATEGORIES:Meeting
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20120525T190000
DTSTART;VALUE=DATE-TIME:20120525T190000
DTEND;VALUE=DATE-TIME:20120525T120000
LOCATION:Association FIXME\n Rue de Genève 79\n Lausanne\,
VD\n Switzerland\n
URL:https://fixme.ch/civicrm/event/info?reset=1&id=34
END:VEVENT
BEGIN:VEVENT
SUMMARY:Workshop IPv6
DESCRIPTION:\n  \;\n \n Le 6 juin 2012\, la plupart des
grandes infrastructures ré\;seaux connect&ea
cute\;es à\; Internet vont activer le protoc
ole IPv6. Le Gull a dé\;cidé\; de part
iciper à\; ce lancement en adaptant sa propr
e infrastructure technique.\n \n Site officiel du
lancement : \;http://www.worldipv6launch.org/
\n \n A cet effet\, un workshop est organis&eacut
e\; afin de pré\;parer cette migration sur n
os diffé\;rents services. Toutes les personn
es souhaitant participer sont les bienvenues.
CATEGORIES:Workshop
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20120522T193000
DTSTART;VALUE=DATE-TIME:20120522T193000
DTEND;VALUE=DATE-TIME:20120522T230000
LOCATION:Association FIXME\n Rue de Genève 79\n Lausanne\,
VD\n Switzerland\n
URL:https://fixme.ch/civicrm/event/info?reset=1&id=37
END:VEVENT
BEGIN:VEVENT
SUMMARY:Electronics evening
CATEGORIES:Meeting
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20120429T190000
DTSTART;VALUE=DATE-TIME:20120429T190000
DTEND;VALUE=DATE-TIME:20120429T230000
LOCATION:Association FIXME\n Rue de Genève 79\n Lausanne\,
VD\n Switzerland\n
URL:https://fixme.ch/civicrm/event/info?reset=1&id=35
END:VEVENT
BEGIN:VEVENT
SUMMARY:Geekerie de printemps
DESCRIPTION:\n http://swisslinux.org/wiki/fr/association/even
ements/20120414
CATEGORIES:Meeting
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20120414T110000
DTSTART;VALUE=DATE-TIME:20120414T110000
DTEND;VALUE=DATE-TIME:20120414T170000
LOCATION:Association FIXME\n Rue de Genève 79\n Lausanne\,
VD\n Switzerland\n
URL:https://fixme.ch/civicrm/event/info?reset=1&id=36
END:VEVENT
BEGIN:VEVENT
SUMMARY:Table ronde ACTA
DESCRIPTION:\n https://fixme.ch/wiki/Table_Ronde_ACTA
CATEGORIES:Conference
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20120322T193000
DTSTART;VALUE=DATE-TIME:20120322T193000
DTEND;VALUE=DATE-TIME:20120322T220000
LOCATION:Association FIXME\n Rue de Genève 79\n Lausanne\,
VD\n Switzerland\n
URL:https://fixme.ch/civicrm/event/info?reset=1&id=33
END:VEVENT
BEGIN:VEVENT
SUMMARY:Coding Night #2
DESCRIPTION:\n \n - Create new\, beautiful and amazing thin
gs in a single night\n \n - Contribute to open
source projects\n \n - Learn new technologies o
n the fly\n \n - Work in a group of minimum two
people\n \n \n https://fixme.ch/wiki/CodingNight
2
CATEGORIES:Workshop
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20120316T180000
DTSTART;VALUE=DATE-TIME:20120316T180000
DTEND;VALUE=DATE-TIME:20120317T060000
LOCATION:Association FIXME\n Rue de Genève 79\n Lausanne\,
VD\n Switzerland\n
URL:https://fixme.ch/civicrm/event/info?reset=1&id=32
END:VEVENT
BEGIN:VEVENT
SUMMARY:Cours Hackerspaces
DESCRIPTION:\n http://www.linux-gull.ch/GestionActiviteDocume
ntHackerspaces20120306.html
CATEGORIES:Conference
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20120306T193000
DTSTART;VALUE=DATE-TIME:20120306T193000
DTEND;VALUE=DATE-TIME:20120306T220000
LOCATION:av. Vertou 2\n Beausobre\n Morges\, 1110\n Switzer
land\n
URL:https://fixme.ch/civicrm/event/info?reset=1&id=29
END:VEVENT
BEGIN:VEVENT
SUMMARY:Insomni'Hack
DESCRIPTION:\n https://fixme.ch/wiki/Insomni_Hack\n \n
CATEGORIES:Meeting
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20120302T180000
DTSTART;VALUE=DATE-TIME:20120302T180000
DTEND;VALUE=DATE-TIME:20120302T000000
LOCATION:Rue de la Prairie 4\n HEPIA\n Geneva\, GE 1202\n S
witzerland\n
URL:https://fixme.ch/civicrm/event/info?reset=1&id=25
END:VEVENT
BEGIN:VEVENT
SUMMARY:Monthly hacking challenges
CATEGORIES:Meeting
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20120224T180000
DTSTART;VALUE=DATE-TIME:20120224T180000
DTEND;VALUE=DATE-TIME:20120225T020000
LOCATION:Association FIXME\n Rue de Genève 79\n Lausanne\,
VD\n Switzerland\n
URL:https://fixme.ch/civicrm/event/info?reset=1&id=30
END:VEVENT
BEGIN:VEVENT
SUMMARY:DQUOTEJ'ai pas de TUN et je m'en TAPDQUOTE
DESCRIPTION:\n The use of VPNs is becoming more and more wide
spread among users who want to hide their traffic
to ISPs. It makes a lot of sense when we see what
is happening around the world with laws à\;
la Hadopi\, with censure or with government prosec
ution.\n \n The users tend to think they are secu
re because they use a VPN ("\;Strong\, secure
and anonymous"\; as the marketing propaganda s
ays)\, but the reality is totally different: they
actually drastically increase the likelihood of be
ing attacked.\n \n In this talk\, we will see the
privacy issues related to the use of misconfigure
d VPNs and the implication it can have on a user u
sing the service.\n \n The presentation will not
be too technical\, although a basic understanding
of network architecture is preferable.\n \n https
://fixme.ch/wiki/J%27ai_pas_de_TUN_et_je_m%27en_TA
P
CATEGORIES:Conference
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20120223T204500
DTSTART;VALUE=DATE-TIME:20120223T204500
DTEND;VALUE=DATE-TIME:20120223T220000
LOCATION:Association FIXME\n Rue de Genève 79\n Lausanne\,
VD\n Switzerland\n
URL:https://fixme.ch/civicrm/event/info?reset=1&id=27
END:VEVENT
BEGIN:VEVENT
SUMMARY:Global Android DevCamp
DESCRIPTION:\n More information on \;http://android-dev-c
amp-2012.blogspot.com/
CATEGORIES:Meeting
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20120217T200000
DTSTART;VALUE=DATE-TIME:20120217T200000
DTEND;VALUE=DATE-TIME:20120219T200000
LOCATION:Association FIXME\n Rue de Genève 79\n Lausanne\,
VD\n Switzerland\n
URL:https://fixme.ch/civicrm/event/info?reset=1&id=31
END:VEVENT
BEGIN:VEVENT
SUMMARY:Apéro avec les voisins
CATEGORIES:Workshop
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20120215T200000
DTSTART;VALUE=DATE-TIME:20120215T200000
DTEND;VALUE=DATE-TIME:20120215T220000
LOCATION:Association FIXME\n Rue de Genève 79\n Lausanne\,
VD\n Switzerland\n
URL:https://fixme.ch/civicrm/event/info?reset=1&id=28
END:VEVENT
BEGIN:VEVENT
SUMMARY:Coding Night
DESCRIPTION:\n https://fixme.ch/wiki/Coding_night
CATEGORIES:Meeting
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20120210T180000
DTSTART;VALUE=DATE-TIME:20120210T180000
DTEND;VALUE=DATE-TIME:20120211T020000
LOCATION:Association FIXME\n Rue de Genève 79\n Lausanne\,
VD\n Switzerland\n
URL:https://fixme.ch/civicrm/event/info?reset=1&id=26
END:VEVENT
BEGIN:VEVENT
SUMMARY:FOSDEM
DESCRIPTION:\n http://fosdem.org/2012/
CATEGORIES:Conference
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20120204T100000
DTSTART;VALUE=DATE-TIME:20120204T100000
DTEND;VALUE=DATE-TIME:20120205T170000
LOCATION:ULB Campus Solbosh\n Avenue Franklin D. Roosevelt\
, 50\n Brussels\, BRU 1050\n Belgium\n
URL:https://fixme.ch/civicrm/event/info?reset=1&id=24
END:VEVENT
BEGIN:VEVENT
SUMMARY:Monthly hacking challenges
DESCRIPTION:\n https://fixme.ch/wiki/CTF/gits2012
CATEGORIES:Meeting
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20120127T200000
DTSTART;VALUE=DATE-TIME:20120127T200000
DTEND;VALUE=DATE-TIME:20120127T120000
LOCATION:Association FIXME\n Rue de Genève 79\n Lausanne\,
VD\n Switzerland\n
URL:https://fixme.ch/civicrm/event/info?reset=1&id=22
END:VEVENT
BEGIN:VEVENT
SUMMARY:Mozilla CTF
DESCRIPTION:\n https://wiki.mozilla.org/Security/Events/CTF
CATEGORIES:Meeting
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20120125T090000
DTSTART;VALUE=DATE-TIME:20120125T090000
DTEND;VALUE=DATE-TIME:20120125T235900
LOCATION:Association FIXME\n Rue de Genève 79\n Lausanne\,
VD\n Switzerland\n
URL:https://fixme.ch/civicrm/event/info?reset=1&id=23
END:VEVENT
BEGIN:VEVENT
SUMMARY:28C3
DESCRIPTION:\n More information on the wiki.
CATEGORIES:Meeting
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20111227T130000
DTSTART;VALUE=DATE-TIME:20111227T130000
DTEND;VALUE=DATE-TIME:20111230T130000
LOCATION:bcc Berliner Congress Center\n Alexanderstr. 11\n
Berlin\, 10178\n Germany\n
URL:https://fixme.ch/civicrm/event/info?reset=1&id=21
END:VEVENT
BEGIN:VEVENT
SUMMARY:Workshop Blender
DESCRIPTION:\n Suite au cours donné\; mardi 6 dé\
;cembre pour le GULL\, FIXME propose un workshop B
lender 3D.\n \n Au programme:\n \n \n Pratique
\, pratique et pratique!\n \n Ré\;ponses
à\; toutes vos questions.\n \n \n \n Pr&ea
cute\;senté\; par \;Olivier Amrein
CATEGORIES:Workshop
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20111220T190000
DTSTART;VALUE=DATE-TIME:20111220T190000
DTEND;VALUE=DATE-TIME:20111220T230000
LOCATION:Association FIXME\n Rue de Genève 79\n Lausanne\,
VD\n Switzerland\n
URL:https://fixme.ch/civicrm/event/info?reset=1&id=20
END:VEVENT
BEGIN:VEVENT
SUMMARY:Assemblée Générale
DESCRIPTION:\n Toutes les informations sur https://fixme.ch/w
iki/2011_Novembre
CATEGORIES:Meeting
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20111130T200000
DTSTART;VALUE=DATE-TIME:20111130T200000
DTEND;VALUE=DATE-TIME:20111130T230000
LOCATION:Association FIXME\n Rue de Genève 79\n Lausanne\,
VD\n Switzerland\n
URL:https://fixme.ch/civicrm/event/info?reset=1&id=19
END:VEVENT
BEGIN:VEVENT
SUMMARY:Atelier fabrication de bougies
DESCRIPTION:\n J'\;ai tout le matié\;riel pour faire
des bougies de diffé\;rentes formes.\n \n
Donc vu que Noë\;l aproche\, je me suis dit qu
e ç\;a serait pas mal de faire un petit atel
ier bougie au Hackerspace.\n \n Si vous avez de v
ieilles bougies\, ou des moules hé\;sitez pa
s :-)\n \n
CATEGORIES:Workshop
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20111127T150000
DTSTART;VALUE=DATE-TIME:20111127T150000
DTEND;VALUE=DATE-TIME:20111127T193000
LOCATION:Association FIXME\n Rue de Genève 79\n Lausanne\,
VD\n Switzerland\n
URL:https://fixme.ch/civicrm/event/info?reset=1&id=17
END:VEVENT
BEGIN:VEVENT
SUMMARY:Monthly Wargames
CATEGORIES:Meeting
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20111125T190000
DTSTART;VALUE=DATE-TIME:20111125T190000
DTEND;VALUE=DATE-TIME:20111125T230000
LOCATION:Association FIXME\n Rue de Genève 79\n Lausanne\,
VD\n Switzerland\n
URL:https://fixme.ch/civicrm/event/info?reset=1&id=18
END:VEVENT
BEGIN:VEVENT
SUMMARY:rwthCTF 2011
DESCRIPTION:\n http://ctf.itsec.rwth-aachen.de\n \n The rese
arch group IT-Security of the RWTH Aachen Universi
ty and the associated 0ldEur0pe CTF team are proud
to announce that they are organizing the first rw
thCTF to happen in fall 2011.\n \n The CTF start
s on Friday\, September 30th at 5pm (CEST) and end
s on Saturday\, October 1st 4am (Worldclock Event)
. Attendance is primarily for university teams\, b
ut we can make exceptions for verified other organ
isations or institutions. You will have to cope wi
th your own server image as well as a series of ch
allenges.
CATEGORIES:Workshop
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20110930T130000
DTSTART;VALUE=DATE-TIME:20110930T130000
DTEND;VALUE=DATE-TIME:20111001T040000
LOCATION:Association FIXME\n Rue de Genève 79\n Lausanne\,
VD\n Switzerland\n
URL:https://fixme.ch/civicrm/event/info?reset=1&id=16
END:VEVENT
BEGIN:VEVENT
SUMMARY:Hack.lu CTF 2011
DESCRIPTION:\n  \;\n \n http://2011.hack.lu/index.php/Ca
ptureTheFlag\n \n  \;\n \n Toutes les person
nes inté\;ressé\;es à\; y partic
iper sont les bienvenues dè\;s lundi 11h du
matin!
CATEGORIES:Workshop
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20110919T110000
DTSTART;VALUE=DATE-TIME:20110919T110000
DTEND;VALUE=DATE-TIME:20110921T110000
LOCATION:Association FIXME\n Rue de Genève 79\n Lausanne\,
VD\n Switzerland\n
URL:https://fixme.ch/civicrm/event/info?reset=1&id=15
END:VEVENT
BEGIN:VEVENT
SUMMARY:Electronics workshop for beginners
DESCRIPTION:\n \n Measure temperature\n \n Use a buzzer\
n \n Blink LEDs\n \n Detect brightness\n \n
...\n \n \n Components\n \n \n Sparkfun Sta
rter Kit for Arduino \;http://www.sparkfun.com
/products/10174\n \n \n \n The kits will be orde
red by FIXME according to the number of subscriber
s.\n Grouping for buying kits is encouraged (2 pe
ople for 1 kit is perfect)\n \n  \;\n \n Sub
scription is mandatory! If you are curious and onl
y want to observe\, you are welcome to come over!
CATEGORIES:Workshop
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20110907T200000
DTSTART;VALUE=DATE-TIME:20110907T200000
DTEND;VALUE=DATE-TIME:20110907T230000
LOCATION:Association FIXME\n Rue de Genève 79\n Lausanne\,
VD\n Switzerland\n
URL:https://fixme.ch/civicrm/event/info?reset=1&id=14
END:VEVENT
BEGIN:VEVENT
SUMMARY:Short Talks
DESCRIPTION:\n  \;\n \n \n Differences and advantages
of Emacs over Vim\n \n Android dev introduction
\n \n A suprise talk \;\n
CATEGORIES:Conference
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20110711T200000
DTSTART;VALUE=DATE-TIME:20110711T200000
DTEND;VALUE=DATE-TIME:20110711T230000
LOCATION:Association FIXME\n Rue de Genève 79\n Lausanne\,
VD\n Switzerland\n
URL:https://fixme.ch/civicrm/event/info?reset=1&id=13
END:VEVENT
BEGIN:VEVENT
SUMMARY:CTF Defcon quals
DESCRIPTION:\n Whole week-end hacking\, RE\, etc and l33tness
.\n \n http://www.ddtek.biz/\n \n Ask Marc for t
he fixme'\;s hash !
CATEGORIES:Meeting
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20110603T180000
DTSTART;VALUE=DATE-TIME:20110603T180000
DTEND;VALUE=DATE-TIME:20110605T235900
URL:https://fixme.ch/civicrm/event/info?reset=1&id=11
END:VEVENT
BEGIN:VEVENT
SUMMARY:Soirée film
DESCRIPTION:\n Projection d'\;un film libre de droit\, cho
isi le soir mê\;me.
CATEGORIES:Movie
CALSCALE:GREGORIAN
DTSTAMP;VALUE=DATE-TIME:20110527T200000
DTSTART;VALUE=DATE-TIME:20110527T200000
DTEND;VALUE=DATE-TIME:20110527T220000
URL:https://fixme.ch/civicrm/event/info?reset=1&id=10
END:VEVENT
BEGIN:VEVENT
SUMMARY:Assemblée Générale
DESCRIPTION:\n Voici les liste des points à\; discuter:
 \;\n \n \n Assurance\n Assurance ECA ->
\; possible sans bail \;? Ré\;ponse: il
faut faire une police d'\;assurance professione
l auprè\;s de l'\;ECA: . la rubrique C11
du formulaire doit au moins ê\;tre de 8'\;
000.-\n \n RC personnelle valide dans nos locau
x \;?\n \n Consultation avocat sur assuranc
es\n \n But: redefinir ou non les cotis\n \n
\n Cotisation fixé\;e au minimum &agr
ave\; 5chf/mois puis encouragé\; à\; p
ayer plus (genre 20chf/mois)\n \n Diff&eacu
te\;rents pricing fixes (é\;tudiant/supporte
r/enthousiast/...)\n \n \n \n Etat des compt
es\n \n Cré\;ation du ré\;glement i
nterne\n \n Election d'\;un nouveau secretai
re\n \n Organisation des projets (perso/globaux