forked from CodingGirlsClub/girlscodingday
-
Notifications
You must be signed in to change notification settings - Fork 0
/
volunteers.html
1160 lines (1095 loc) · 69.3 KB
/
volunteers.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<link rel="icon" type="image/png" sizes="96x96" href="images/gcd-favicon-96x96.png">
<title>Girls Coding Day Volunteers</title>
<!-- Plugins style -->
<link href="plugins/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="plugins/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<link href="plugins/owl-carousel/owl.carousel.css" rel="stylesheet">
<link href="plugins/owl-carousel/owl.theme.css" rel="stylesheet">
<link href="plugins/owl-carousel/owl.transitions.css" rel="stylesheet">
<link href="plugins/pe-icon-7-stroke/css/pe-icon-7-stroke.css" rel="stylesheet">
<link href="plugins/lightbox2/dist/css/lightbox.min.css" rel="stylesheet">
<!--template style-->
<link href="css/style.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<section id="speakers" class="padded-top-70 padded-bottom-40">
<div class="container">
<div class="row">
<div class="col-sm-8 col-sm-offset-2 text-center">
<div class="center-title">
<h1>We <b>Volunteers</b> do <strike>every</strike>nothing for you</h1>
<a href="https://github.com/CodingGirlsClub/girlscodingday"><button type="button" class="btn btn-warning">添加志愿者信息</button></a>
</div>
</div>
</div>
<h2 class="text-center text-success">Global Supporters</h2>
<hr>
<!-- 请大家按照姓氏/城市拼音循序添加个人信息 -->
<div class="row">
<div class="col-sm-3">
<div class="person-box">
<img src="http://ocuwjo7n4.bkt.clouddn.com/blog/2017-06-04-qianbingqin.jpeg" alt="" class=" img-circle" width="150" height="150">
<div class="person-desc">
<h4>钱冰沁</h4>
<span class="text-primary">Designer</span><small class="label label-warning">icon设计者@北京</small>
<p>
现任ThoughtWorks用户体验设计师,兼有产品设计与交互设计背景,曾在英国知名设计研究所工作,为多个海外客户提供过设计实施及咨询服务。游历世界多国,熟悉在不同文化环境差异中找寻机会与突破点。
</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="person-box">
<img src="http://ocuwjo7n4.bkt.clouddn.com/blog/2017-06-04-ruoshui.jpeg" alt="" class=" img-circle" width="150" height="150">
<div class="person-desc">
<h4>若水</h4>
<span class="text-primary">Developer</span><small class="label label-warning">开发开源项目CGC网站@北京</small>
<p>
Ruby开发工程师。由RailsGirls转化为Ruby开发工程师,并多次以教练身份参加RailsGirls活动。
</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="person-box">
<img src="http://ocuwjo7n4.bkt.clouddn.com/blog/2017-06-04-sunqiu.jpeg" alt="" class=" img-circle" width="150" height="150">
<div class="person-desc">
<h4>孙秋</h4>
<span class="text-primary">Freelancer</span><small class="label label-warning">负责宣传推广/媒体合作@杭州&上海</small>
<p>
传播工作,正在养病,<br> 编程学习获益者。
</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="person-box">
<img src="http://ocuwjo7n4.bkt.clouddn.com/blog/2017-06-04-wenyang.jpg" alt="" class=" img-circle" width="150" height="150">
<div class="person-desc">
<h4>文洋</h4>
<span class="text-primary">ThoughtWorker</span><small class="label label-warning">发起人@四海为家</small>
<p>
Coding Girls Club创始人,Girls Coding Day/Rails Girls中国发起人。上份职业是核电工程师,目前以帮助女性学习编程、为女性数字赋能而平权为使命。
<a href="http://www.sundevilyang.com">个人网站</a>
</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-3">
<div class="person-box">
<img src="http://ocuwjo7n4.bkt.clouddn.com/blog/2017-06-04-zhangdan.jpeg" alt="" class=" img-circle" width="150" height="150">
<div class="person-desc">
<h4>张丹</h4>
<span class="text-primary">Connector</span><small class="label label-warning">合作伙伴/赞助商猎头@上海</small>
<p>
Coding 是通往新世界的一扇大门,愿你我一起坚定有耐心充满好奇地推开它。一个还没脱离低级趣味的乐观的悲观主义者。take easy ,enjoy life .
</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="person-box">
<img src="http://ocuwjo7n4.bkt.clouddn.com/blog/2017-06-04-kiwi.jpeg" alt="" class=" img-circle" width="150" height="150">
<div class="person-desc">
<h4>张韫杰</h4>
<span class="text-primary">Connector</span><small class="label label-warning">合作伙伴/赞助商猎头@北京</small>
<p>
在旅游出行类互联网里摸爬滚打,喜欢各种新奇有趣的事情,相信兴趣是学习的第一核动力。
</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="person-box">
<img src="http://ocuwjo7n4.bkt.clouddn.com/blog/2017-06-04-zhangxian.jpeg" alt="" class=" img-circle" width="150" height="150">
<div class="person-desc">
<h4>张弦</h4>
<span class="text-primary">Developer</span><small class="label label-warning">开发开源项目CGC网站@北京</small>
<p>
非典型性程序员,TEDxBJUT创始人。热爱折腾热爱养梦。
</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="person-box">
<img src="http://ocuwjo7n4.bkt.clouddn.com/blog/2017-06-04-zhangzhe.jpg" alt="" class="img-responsive img-circle" width="150" height="150">
<div class="person-desc">
<h4>章哲</h4>
<span class="text-primary">Product Manager</span> <small class="label label-warning">wxpy作者@深圳</small>
<p>
热爱音乐、喜欢写代码的产品经理,瓶子科技联合创始人。
</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-3">
<div class="person-box">
<img src="https://ws3.sinaimg.cn/large/006tKfTcgy1fhked7ga1fj30qo0qpjte.jpg" alt="" class=" img-circle" width="150" height="150">
<div class="person-desc">
<h4>赵一苇</h4>
<span class="text-primary">律师</span><small class="label label-warning">法律顾问</small>
<p>
CGC第一期学员,关心女性话题和编程学习。在律师事务所和投资机构从事跨境并购和股权投资等工作超过5年。
</p>
</div>
</div>
</div>
</div>
<h2 class="text-center text-primary">Wuhan Team</h2>
<hr>
<div class="row">
<div class="col-sm-3">
<div class="person-box">
<img src="http://ocuwjo7n4.bkt.clouddn.com/blog/2017-06-04-gaojie.png" alt="" class="img-responsive img-circle" width="150" height="150">
<div class="person-desc">
<h4>高洁</h4>
<span class="text-primary">Connector & Operator</span> <small class="label label-warning">武汉企业合作/媒体支持@武汉</small>
<p>
光谷社区创始人,倡导互联网的自由和平等。资深武汉IT 界活动组织者,武汉Hackathon 发起者,Open Party 合办者。
</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="person-box">
<img src="images/wuhan/team-1.jpg" alt="" class="img-responsive img-circle" width="150" height="150">
<div class="person-desc">
<h4>Lisa</h4>
<span class="text-primary">FrontEnd Developer</span> <small class="label label-warning">助教@武汉</small>
<p>
前端入门新人一枚,很能理解初学者会踩哪些坑,希望能够能对姐妹们有所帮助。
</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="person-box">
<img src="images/volunteers/wuhan/liyijia.jpg" alt="" class="img-responsive img-circle" width="150" height="150">
<div class="person-desc">
<h4>李艺嘉</h4>
<span class="text-primary">Developer</span><small class="label label-warning">助教@武汉</small>
<p>
IT界的Baymax,fix bug的小能手,励志于成为一名高深的Web & Mobile全能工程师,热爱学习新技术并且乐于分享交流。
</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="person-box">
<img src="http://ocuwjo7n4.bkt.clouddn.com/blog/2017-06-04-liuchenyang.png" alt="" class="img-responsive img-circle" width="150" height="150">
<div class="person-desc">
<h4>刘晨阳</h4>
<span class="text-primary">Developer</span> <small class="label label-warning">负责GCD网站开发&运营@武汉</small>
<p>
全栈工程师,喜欢编程、运动,同时也喜欢参加「软件匠艺小组」,「Open Party」...... 等技术社区活动。
</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-3">
<div class="person-box">
<img src="images/volunteers/wuhan/liushuang.png" alt="" class="img-responsive img-circle" width="150" height="150">
<div class="person-desc">
<h4>刘双</h4>
<span class="text-primary">FrontEnd Developer</span> <small class="label label-warning">助教@武汉</small>
<p>科班出身,三年项目经验。踩坑、填坑、挖坑是日常的乐趣。</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="person-box">
<img src="images/bg4.jpg" alt="" class="img-responsive img-circle" width="150" height="150">
<div class="person-desc">
<h4>王莹</h4>
<span class="text-primary">Java Developer</span> <small class="label label-warning">助教@武汉</small>
<p>
一名Java软件开发者,主要侧重于后台开发,偶尔拾起Web前端,总会想起当时学习的美好,希望借助这次活动,把Coding的乐趣传递给大家。
</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="person-box">
<img src="http://ocuwjo7n4.bkt.clouddn.com/blog/2017-06-04-yangbo.png" alt="" class="img-responsive img-circle" width="150" height="150">
<div class="person-desc">
<h4>杨波</h4>
<span class="text-primary">Developer</span> <small class="label label-warning">武汉教练团总@武汉</small>
<p>
全栈工程师,资深老程序员,写的了代码,做得了运营,当得了销售,也热爱技术社区,并参与组织各种技术社区交流分享活动。
</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="person-box">
<img src="http://ocuwjo7n4.bkt.clouddn.com/blog/2017-06-04-yangxiaomei.png" alt="" class="img-responsive img-circle" width="150" height="150">
<div class="person-desc">
<h4>杨小媚</h4>
<span class="text-primary">Developer</span><small class="label label-warning">武汉分舵主@武汉</small>
<p>
高级软件工程师,熟练Web & Mobile 开发,也组织武汉地区的Open Party 和Rails Girls 等技术活动。
</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-3">
<div class="person-box">
<img src="http://wx.qlogo.cn/mmopen/XQSlPoj7MjvZGqV88vkX5XRBjcc7FqQgkKmcdogrfJrYkfroR5tXlZH6n8DLCsWiaHT8NzsUSdClI8YhRvSHMhUFOVMxqliaM5/0" alt="赵一鹏" class="img-responsive img-circle" width="150" height="150">
<div class="person-desc">
<h4>赵一鹏</h4>
<span class="text-primary">Developer</span> <small class="label label-warning">助教@武汉</small>
<p>
全栈工程师,前端偏科生。行业发展太快,每天都是新知识,边学边分享,大家一同成长。
</p>
</div>
</div>
</div>
</div>
<h2 class="text-center text-primary">Shanghai Team</h2>
<hr>
<div class="row">
<div class="col-sm-3">
<div class="person-box">
<img src="images/volunteers/shanghai/dingshenghao.jpg" alt="" class="img-responsive img-circle" width="150" height="150">
<div class="person-desc">
<h4>丁盛豪</h4>
<span class="text-primary">Developer</span> <small class="label label-warning">助教@上海</small>
<p>
全栈工程师,主攻高性能,主力填后端。Ruby 开源高并发后端框架 midori 开发者。享受通过技术解决问题的过程。
</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="person-box">
<img src="http://osvlzj5nm.bkt.clouddn.com/17-7-10/5638989.jpg" alt="" class="img-responsive img-circle" width="150" height="150">
<div class="person-desc">
<h4>黄河</h4>
<span class="text-primary">Developer</span> <small class="label label-warning">助教@上海</small>
<p>
在读大学生,喜欢编程,也喜欢数学和统计。主攻大数据方向。
</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="person-box">
<img src="images/volunteers/shanghai/jiahaiqiang.jpeg" alt="" class="img-responsive img-circle" width="150" height="150">
<div class="person-desc">
<h4>贾海强</h4>
<span class="text-primary">Developer</span> <small class="label label-warning">助教@上海</small>
<p>
Java/Javascript工程师,偏重于后台,也接触过前端,希望能为社区做出自己的贡献来,让世界更美好~
</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="person-box">
<img src="images/volunteers/shanghai/lizhaoxuan.jpeg" alt="" class="img-responsive img-circle" width="150" height="150">
<div class="person-desc">
<h4>李兆轩</h4>
<span class="text-primary">Developer</span> <small class="label label-warning">助教@上海</small>
<p>
高级 Android 工程师,享受架构设计的过程,热衷于组件开发;哦对~还有一颗天天搬砖也没磨灭的产品心 ^_^ !
</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-3">
<div class="person-box">
<img src="images/volunteers/shanghai/liqiaoling.jpeg" alt="" class="img-responsive img-circle" width="150" height="150">
<div class="person-desc">
<h4>李巧伶</h4>
<span class="text-primary">Marketing Manager</span> <small class="label label-warning">志愿者@上海</small>
<p>
现任 NEO 区块链社区高级市场运营。 爱好广泛,慢热型狮子女,喜欢关注科技领域最新信息。加入 Girls Coding Day 希望可以认识更多有梦想的女孩子,同时为国内女性技术社区贡献自己的一份绵薄之力。希望团队的力量可以让更多女孩从 “Hello World” 走向 “Wonderful World”。
</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="person-box">
<img src="images/volunteers/shanghai/liqian.jpg" alt="" class="img-responsive img-circle" width="150" height="150">
<div class="person-desc">
<h4>李倩</h4>
<span class="text-primary">Developer Manager</span><small class="label label-warning">志愿者@上海</small>
<p>
七牛工程效率部负责人,主导质量保证体系建设与工程效率提升,混迹于程序员世界多年的小姐姐。爱好编程。加入 Girls Coding Day 希望可以认识更多有梦想的女孩子,一起享受编程乐趣😄。
</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="person-box">
<img src="images/volunteers/shanghai/daitoue.jpeg" alt="" class="img-responsive img-circle" width="150" height="150">
<div class="person-desc">
<h4>呆头鹅</h4>
<span class="text-primary">Product & Operating Manager</span> <small class="label label-warning">志愿者@上海</small>
<p>
从事产品和运营的工作,曾在饿了么送出 20 单外卖。喜欢音乐(prefer 摇滚乐),乐于向大家分享有趣的事物。最近练习吉他和做皮具,虽然废手,但孜孜不倦。
</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="person-box">
<img src="images/volunteers/shanghai/wuxiaolan.jpeg" alt="" class="img-responsive img-circle" width="150" height="150">
<div class="person-desc">
<h4>伍小兰</h4>
<span class="text-primary">Product Manager</span> <small class="label label-warning">志愿者@上海</small>
<p>
Coding is nothing. Girls can do anything!
</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-3">
<div class="person-box">
<img src="images/volunteers/shanghai/xiaosi.jpeg" alt="" class="img-responsive img-circle" width="150" height="150">
<div class="person-desc">
<h4>小思</h4>
<span class="text-primary">Data Analyst</span> <small class="label label-warning">志愿者@上海</small>
<p>
现任某金融上市公司数据分析师。 主要做金融社区相关数据分析, 热爱统计学和 coding,擅长 R 和 Python,参加过许多女性编程活动。第一次此类活动的志愿者,加入 Girls' Coding Day 志愿者是希望通过自己以往的活动经验,能为国内女性技术社区贡献自己的一份绵薄之力。希望找到更多志同道合的朋友,也希望帮助更多对编程感兴趣的女生更快地上手,找到自己喜爱的方向,并共同走的更远!
</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="person-box">
<img src="images/volunteers/shanghai/helishi.jpg" alt="" class="img-responsive img-circle" width="150" height="150">
<div class="person-desc">
<h4>何李石</h4>
<span class="text-primary">Developer</span> <small class="label label-warning">助教@上海</small>
<p>
《Go 语言程序设计》译者,七牛云早期工程师、技术布道师。
</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="person-box">
<img src="images/volunteers/shanghai/jichunyi.jpg" alt="" class="img-responsive img-circle" width="150" height="150">
<div class="person-desc">
<h4>季纯一</h4>
<span class="text-primary">Developer</span> <small class="label label-warning">助教@上海</small>
<p>
现为 Web 开发工程师,目标成为全栈工程师。热爱编程,喜欢 Coding 带来的充实惊喜的感觉,希望认识更多小伙伴~共同学习成长!
</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="person-box">
<img src="images/volunteers/shanghai/junyin.jpg" alt="" class="img-responsive img-circle" width="150" height="150">
<div class="person-desc">
<h4>殷骏</h4>
<span class="text-primary">Front End Developer</span> <small class="label label-warning">助教@上海</small>
<p>
网页前端攻城狮,微信公众号“一笔记”作者,热爱创造分享与交流。
</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-3">
<div class="person-box">
<img src="https://avatars3.githubusercontent.com/u/440320?v=3&s=150" alt="" class="img-responsive img-circle" width="150" height="150">
<div class="person-desc">
<h4>Ray</h4>
<span class="text-primary">Developer</span> <small class="label label-warning">助教@上海</small>
<p>
后台工程师; 喜欢种地,读书,旅行。
</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="person-box">
<img src="images/volunteers/shanghai/lijianying.png" alt="" class="img-responsive img-circle" width="150" height="150">
<div class="person-desc">
<h4>李剑英</h4>
<span class="text-primary">Developer</span> <small class="label label-warning">助教@上海</small>
<p>
独立程序员,NEO核心开发者,希望在编程的领域性别比例达到一个健康的程度。
</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="person-box">
<img src="images/volunteers/shanghai/wangqiong.png" alt="" class="img-responsive img-circle" width="150" height="150">
<div class="person-desc">
<h4>王琼</h4>
<span class="text-primary">Developer</span> <small class="label label-warning">助教@上海</small>
<p>
测试工程师,喜欢编程。希望能让更多的妹纸爱上Coding~
</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="person-box">
<img src="images/volunteers/shanghai/chenzhitong.jpg" alt="" class="img-responsive img-circle" width="150" height="150">
<div class="person-desc">
<h4>陈志同</h4>
<span class="text-primary">Developer</span> <small class="label label-warning">助教@上海</small>
<p>
.NET程序员,全栈工程师,微软铁轩粉丝,国内知名 Windows Insider(微博wp志同),同时也是NEO区块链的开发者之一。希望通过 GCD 让更多女性了解编程,热爱编程。
</p>
</div>
</div>
</div>
</div>
<!-- 广州站志愿者列表 -->
<h2 class="text-center text-primary">Guangzhou Team</h2>
<hr>
<div class="row">
<div class="col-sm-3">
<div class="person-box">
<img src="images/volunteers/guangzhou/yuky.jpeg" alt="" class="img-responsive img-circle" width="150" height="150">
<div class="person-desc">
<h4>Yuky</h4>
<span class="text-primary">文案策划</span><small class="label label-warning">Owner@广州</small>
<p>
曾Rails Girls志愿者。编程小白,在自学coding的道路上受到许多程序员的热心帮助,希望延续这种精神,帮助更多想成为程序媛的妹子们~
</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="person-box">
<img src="images/volunteers/guangzhou/little.jpg" alt="" class="img-responsive img-circle" width="150" height="150">
<div class="person-desc">
<h4>Little</h4>
<span class="text-primary">Rails Developer</span><small class="label label-warning">志愿者@广州</small>
<p>
曾经RailsGirls活动广州站的组织者,希望有更多的妹子走上程序媛道路,这样身边就有可以有更多的妹子可以一起聊八卦了!
</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="person-box">
<img src="images/volunteers/guangzhou/cathy.jpeg" alt="" class="img-responsive img-circle" width="150" height="150">
<div class="person-desc">
<h4>Cathy</h4>
<span class="text-primary">行政助理</span><small class="label label-warning">志愿者@广州</small>
<p>
一直对编程感兴趣但苦于没有机会。希望可以通过这次活动认识更多对编程感兴趣的女孩,一起交流一起学习!
</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="person-box">
<img src="images/volunteers/guangzhou/yining.jpeg" alt="" class="img-responsive img-circle" width="150" height="150">
<div class="person-desc">
<h4>Zoey</h4>
<span class="text-primary">学生</span><small class="label label-warning">志愿者@广州</small>
<p>
在校大学生,主修金融工程,辅助计算机。渴望了解更多的编程知识,希望通过这个活动能认识编程大神跟很多可爱的妹子。
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-3">
<div class="person-box">
<img src="images/volunteers/guangzhou/tutor/windson.jpeg" alt="" class="img-responsive img-circle" width="150" height="150">
<div class="person-desc">
<h4>Windson</h4>
<span class="text-primary">Developer</span><small class="label label-warning">助教@广州</small>
<p>
喜欢编程与教学,热爱开源项目,关注社会平权以及个人隐私保护。EngineGirls的组织者,channelshunt和thankyouopensource的合伙人。
</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="person-box">
<img src="images/volunteers/guangzhou/tutor/neco.jpeg" alt="" class="img-responsive img-circle" width="150" height="150">
<div class="person-desc">
<h4>Neco</h4>
<span class="text-primary">Developer</span><small class="label label-warning">助教@广州</small>
<p>
Self-tought software developer. Strong background with front-end development. Currently hacking into deep learning and AI. Currently works at Kiwiinc as JS developer; Creating smart packages for UAV and lead developer for desktop app & Instructor
at Code Up Girl.
</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="person-box">
<img src="images/volunteers/guangzhou/tutor/lifen.jpeg" alt="" class="img-responsive img-circle" width="150" height="150">
<div class="person-desc">
<h4>Freedom</h4>
<span class="text-primary">Frontend Developer</span><small class="label label-warning">助教@广州</small>
<p>
前端开发工程师,因为喜欢coding而coding
</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="person-box">
<img src="images/volunteers/guangzhou/tutor/heyan.jpeg" alt="" class="img-responsive img-circle" width="150" height="150">
<div class="person-desc">
<h4>何琰</h4>
<span class="text-primary">Developer</span><small class="label label-warning">助教@广州</small>
<p>
产品经理
</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-3">
<div class="person-box">
<img src="images/volunteers/guangzhou/tutor/liangzhen.jpeg" alt="" class="img-responsive img-circle" width="150" height="150">
<div class="person-desc">
<h4>梁珍</h4>
<span class="text-primary">Java Developer</span><small class="label label-warning">助教@广州</small>
<p>
Java工程师
</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="person-box">
<img src="images/volunteers/guangzhou/tutor/chunlea.jpeg" alt="" class="img-responsive img-circle" width="150" height="150">
<div class="person-desc">
<h4>春丽</h4>
<span class="text-primary">Developer</span><small class="label label-warning">助教@广州</small>
<p>
彩程设计 Rails 工程师,Ruby 爱好者
</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="person-box">
<img src="images/volunteers/guangzhou/tutor/liangzhanhui.jpeg" alt="" class="img-responsive img-circle" width="150" height="150">
<div class="person-desc">
<h4>梁展晖</h4>
<span class="text-primary">Developer</span><small class="label label-warning">助教@广州</small>
<p>
Ruby/rails工程师,vim党
</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="person-box">
<img src="images/volunteers/guangzhou/tutor/vitor.jpeg" alt="" class="img-responsive img-circle" width="150" height="150">
<div class="person-desc">
<h4>Vitor</h4>
<span class="text-primary">Frontend Developer</span><small class="label label-warning">助教@广州</small>
<p>
零基础自学转行,现任初级前端工程师
</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-3">
<div class="person-box">
<img src="images/volunteers/guangzhou/tutor/aris.jpeg" alt="" class="img-responsive img-circle" width="150" height="150">
<div class="person-desc">
<h4>Aris</h4>
<span class="text-primary">Python Web Developer</span><small class="label label-warning">助教@广州</small>
<p>
后端工程师,也会写页面。Always a junior developer.
</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="person-box">
<img src="images/volunteers/guangzhou/tutor/obed.jpeg" alt="" class="img-responsive img-circle" width="150" height="150">
<div class="person-desc">
<h4>Obed Osei Frimpong</h4>
<span class="text-primary">Rails Developer</span><small class="label label-warning">助教@广州</small>
<p>
Self-taught Rails Developer, currently working on an Ionic 2 and Angular 2 project. Interested in JS Frameworks and general Tech news.
</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="person-box">
<img src="images/volunteers/guangzhou/tutor/thomas.jpg" alt="" class="img-responsive img-circle" width="150" height="150">
<div class="person-desc">
<h4>Thomas</h4>
<span class="text-primary">Developer</span><small class="label label-warning">助教@广州</small>
<p>
我即使是死了,钉在在棺材里了,也要在墓里,用这腐朽的声带喊出:“ Python 是最吼的,但是 Rust 更吼。”
</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="person-box">
<img src="images/volunteers/guangzhou/tutor/ruiming.png" alt="" class="img-responsive img-circle" width="150" height="150">
<div class="person-desc">
<h4>瑞铭</h4>
<span class="text-primary">Web Developer</span><small class="label label-warning">助教@广州</small>
<p>
手持两把锟斤拷, 口中疾呼烫烫烫。
<br/> 脚踏千朵屯屯屯, 笑看万物锘锘锘。
</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-3">
<div class="person-box">
<img src="images/volunteers/guangzhou/tutor/heibai.jpeg" alt="" class="img-responsive img-circle" width="150" height="150">
<div class="person-desc">
<h4>黑白</h4>
<span class="text-primary">Frontend Developer</span><small class="label label-warning">助教@广州</small>
<p>
前乌云白帽,现前端工程师,唯代码与猫不可不撸。
</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="person-box">
<img src="images/volunteers/guangzhou/tutor/zeqiu.jpeg" alt="" class="img-responsive img-circle" width="150" height="150">
<div class="person-desc">
<h4>泽秋</h4>
<span class="text-primary">Web Developer</span><small class="label label-warning">助教@广州</small>
<p>
Web 页面仔 / 略懂后端,猫奴,黑带三段, 已经很久没有写 Ruby 的前 RG 教练
</p>
</div>
</div>
</div>
</div>
<h2 class="text-center text-primary">Hangzhou Team</h2>
<hr>
<div class="row">
<div class="col-sm-3">
<div class="person-box">
<!-- 请把你的照片放在你所支援的城市文件夹,如果没有文件夹请创建一个 -->
<img src="images/volunteers/hangzhou/zhangwen.jpeg" alt="" class="img-responsive img-circle" style="object-fit:cover" width="150" height="150">
<div class="person-desc">
<h4>张雯</h4>
<span class="text-primary">全职妈妈</span> <small class="label label-warning">志愿者@杭州</small>
<p>
希望成为前端工程师的全职妈妈,喜欢这个世界所有最美好的事物。
</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="person-box">
<!-- 请把你的照片放在你所支援的城市文件夹,如果没有文件夹请创建一个 -->
<img src="images/volunteers/hangzhou/caoli.jpeg" alt="" class="img-responsive img-circle" width="150" height="150" style="object-fit:cover">
<div class="person-desc">
<h4>曹力</h4>
<span class="text-primary">Developer</span> <small class="label label-warning">教练@杭州</small>
<p>
淘宝高级技术专家 <a href="http://weibo.com/shiningray" target="_blank">@ShiningRay</a>
</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="person-box">
<img src="images/volunteers/lauraliu.jpg" alt="" class=" img-circle" width="150" height="150">
<div class="person-desc">
<h4>Laura Liu</h4>
<span class="text-primary">Frontend Developer</span><small class="label label-warning">助教@杭州</small>
<p>
前端开发工程师,喜欢编程,热衷学习新技术,喜欢并乐于分享一切美好的东西,希望与大家一起快乐编程、快乐成长。
</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="person-box">
<img src="images/volunteers/hangzhou/xuxiaomeng.jpg" alt="" class=" img-circle" width="150" height="150">
<div class="person-desc">
<h4>徐晓孟</h4>
<span class="text-primary">Developer</span><small class="label label-warning">助教@杭州</small>
<p>
热爱旅游和绘画。<br />做过后端,做过数据,现在是个前端。<br /><a href="http://isekai.me" target="_blank">个人网站</a> / <a href="https://github.com/sekaiamber" target="_blank">Github</a>
</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-3">
<div class="person-box">
<img src="images/volunteers/xadillax.gif" alt="" class=" img-circle" width="150" height="150">
<div class="person-desc">
<h4>死月</h4>
<span class="text-primary">Node.js Collaborator</span><small class="label label-warning">志愿者@杭州</small>
<p>
Node.js 核心贡献者之一,副手武器 C++;OS X 以及 VIM 重度用户,前端渣;伪宅码畜一枚,社区中常以 <a href="https://github.com/XadillaX" target="_blank">XadillaX</a> 出现。
</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="person-box">
<!-- 请把你的照片放在你所支援的城市文件夹,如果没有文件夹请创建一个 -->
<img src="images/volunteers/hangzhou/wangchen.jpeg" alt="" class="img-responsive img-circle" width="150" height="150" style="object-fit:cover">
<div class="person-desc">
<h4>王琛</h4>
<span class="text-primary">Designer</span> <small class="label label-warning">志愿者@杭州</small>
<p>
对代码很好奇,又因为下一代的教育将编程列为刚需的设计师妈妈。
</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="person-box">
<!-- 请把你的照片放在你所支援的城市文件夹,如果没有文件夹请创建一个 -->
<img src="images/volunteers/hangzhou/chennaiying.jpeg" alt="" class="img-responsive img-circle" width="150" height="150" style="object-fit:cover">
<div class="person-desc">
<h4>陈乃颖</h4>
<span class="text-primary">幼儿教师</span> <small class="label label-warning">志愿者@杭州</small>
<p>
现为幼儿教师,文艺软妹纸一枚,自从高中接触编程做了之后就埋下了种子,遇到GCD终于萌发,希望在学习编程的同时,能为女性编程学习做一些小事,同时也让更多的人知道有人在做这样一件有意义的事~
</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="person-box">
<!-- 请把你的照片放在你所支援的城市文件夹,如果没有文件夹请创建一个 -->
<img src="images/volunteers/hangzhou/lenghan.jpeg" alt="" class=" img-circle" width="150" height="150" style="object-fit:cover">
<div class="person-desc">
<h4>冷涵</h4>
<span class="text-primary">Developer</span> <small class="label label-warning">助教@杭州</small>
<p>
有赞前端,Rails 和 Node 粉。
</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-3">
<div class="person-box">
<img src="images/volunteers/hangzhou/guofeng.jpeg" alt="" class=" img-circle" width="150" height="150" style="object-fit:cover">
<div class="person-desc">
<h4>郭枫</h4>
<span class="text-primary">Developer</span><small class="label label-warning">助教@杭州</small>
<p>
iOS开发工程师,技术控,目标成为全栈工程师,热衷于在网站写技术博客分享,也喜欢写散文和诗词陶冶情操,妥妥的一只文艺的程序猿。
</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="person-box">
<img src="images/volunteers/hangzhou/tangliqi.jpg" alt="" class=" img-circle" width="150" height="150" style="object-fit:cover">
<div class="person-desc">
<h4>唐立奇</h4>
<span class="text-primary">Developer</span><small class="label label-warning">助教@杭州</small>
<p>
唐立奇Terry,Sparkle创始人,在此之前创办了京沪最好的名校单身俱乐部The Lonely Club,擅长举办单身聚会、商务拓展及在线产品运营。曾任职于Groupon、Oak Investment Partners,本科毕业于香港科技大学计算机系并于MIT Sloan取得MBA。<a href="http://leandreamer.com" target="_blank">个人博客</a>
</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="person-box">
<img src="images/volunteers/hangzhou/qingyuan.jpeg" alt="" class="img-responsive img-circle" width="150" height="150" style="object-fit:cover">
<div class="person-desc">
<h4>李洁</h4>
<span class="text-primary">Developer</span> <small class="label label-warning">助教@杭州</small>
<p>
热爱前端中二技术程序媛,曾在京东成都研究院实习,毕业后加入淘宝前端团队,目前就职于51信用卡前端团队。座右铭:努力不一定成功,不努力一定不成功。
</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="person-box">
<img src="images/volunteers/hangzhou/xiayun.png" alt="" class=" img-circle" width="150" height="150" style="object-fit:cover">
<div class="person-desc">
<h4>夏云</h4>
<span class="text-primary">Developer</span><small class="label label-warning">助教@杭州</small>
<p>
从业经历比较曲折,现主职 iOS,兼安卓及后端开发。相比于全栈,更关注解决在特定领域中所遇到的问题。对金融、信贷业很感兴趣,有一定研究。
</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-3">
<div class="person-box">
<img src="images/volunteers/hangzhou/rccoder.png" alt="" class="img-responsive img-circle" width="150" height="150">
<div class="person-desc">
<h4>rccoder</h4>
<span class="text-primary">Developer</span> <small class="label label-warning">教练@杭州</small>
<p>
飞猪前端开发工程师。现写点 React、Weex(DSL 为 Vue),曾经写点简单的 Node、ReactNative。
</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="person-box">
<!-- 请把你的照片放在你所支援的城市文件夹,如果没有文件夹请创建一个 -->
<img src="images/volunteers/hangzhou/baiji.jpg" alt="" class="img-responsive img-circle" width="150" height="150">
<div class="person-desc">
<h4>白霁</h4>
<span class="text-primary">学生</span> <small class="label label-warning">助教@杭州</small>
<p>
前端开发工程师,喜欢编程,热衷学习新技术,喜欢并乐于分享。刚刚大四,也在找工作的路上。<a href="https://baixiaoji.github.io/" target="_blank">个人博客</a> <a href="http://www.500d.me/resume/1575028769/" target="_blank">在线简历</a>
</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="person-box">
<img src="images/volunteers/hangzhou/lvwei.jpg" alt="" class="img-responsive img-circle" width="150" height="150">
<div class="person-desc">
<h4>吕玮</h4>
<span class="text-primary">Developer</span><small class="label label-warning">助教@杭州</small>
<p>
热爱技术,乐于分享和思考,经历比较杂,现在主要写点JS相关
</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="person-box">
<img src="images/volunteers/hangzhou/hym.jpeg" alt="" class="img-responsive img-circle" width="150" height="150">
<div class="person-desc">
<h4>侯延明</h4>
<span class="text-primary">Developer</span><small class="label label-warning">助教@杭州</small>
<p>
前端胖纸,热爱技术并情有独钟JS,现在主要用Vue写一些东东
</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-3">
<div class="person-box">
<img src="images/volunteers/hangzhou/zhangweilin.jpg" alt="" class="img-responsive img-circle" width="150" height="150">
<div class="person-desc">
<h4>张伟林</h4>
<span class="text-primary">Developer</span><small class="label label-warning">助教@杭州</small>
<p>
耐撕爸爸联合创始人&CTO,前淘宝技术专家,前CC视频高级技术经理;全栈工程师,偏后端,擅长处理高并发;有一对儿女的全栈奶爸。
</p>
</div>
</div>
</div>
</div>
<h2 class="text-center text-primary">Beijing Team</h2>
<hr>
<div class="row">
<div class="col-sm-3">
<div class="person-box">
<img src="images/volunteers/boris.jpg" alt="" class=" img-circle" width="150" height="150">
<div class="person-desc">
<h4>Boris</h4>
<span class="text-primary">Developer</span><small class="label label-warning">教练@北京</small>
<p>
红杉资本中国基金数据分析负责人,前华兴资本逐鹿X CTO,全栈工程师&交互设计师&伪文青。同熵增做斗争,思考设计、编码与诗意人生。<a href="https://boris.tech/">个人网站</a>
</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="person-box">
<img src="images/volunteers/liuhui.jpeg" alt="" class=" img-circle" width="150" height="150">
<div class="person-desc">
<h4>刘慧</h4>