-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnovember-2015.html
903 lines (830 loc) · 47.6 KB
/
november-2015.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
<!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">
<meta name="description" content="entrepreneurship 101 is a course + workshop designed and run by shachar oz voluntarily as part of a collaboration between intel, jerusalem youth center and Made in JLM startup hub.">
<meta name="author" content="shachar oz">
<title>Entrepreneurship 101 Workshop</title>
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="css/agency.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href='https://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700' rel='stylesheet' type='text/css'>
<!-- HTML5 Shim and Respond.js 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/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
<!-- slideshow cycle CSS -->
<link href="slideshow/css/extend-cycle2-slideshow.css" rel="stylesheet" type="text/css">
</head>
<body id="page-top" class="index">
<!-- Navigation -->
<nav class="navbar navbar-default navbar-fixed-top navbar-shrink">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header page-scroll">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand page-scroll" style='font-family: "Roboto Slab"' href="index.html">Entrepreneurship 101</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li class="hidden">
<a href="#page-top"></a>
</li>
<li>
<a class="page-scroll" href="#concept">concept</a>
</li>
<li>
<a class="page-scroll" href="#services">program</a>
</li>
<li>
<a class="page-scroll" href="#portfolio">startups</a>
</li>
<li>
<a class="page-scroll" href="#about">story</a>
</li>
<li>
<a class="page-scroll" href="#team">people</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container-fluid -->
</nav>
<!-- Header -->
<header class="gershom">
<!--
<div class='cycle-slideshow' data-cycle-fx='scrollHorz' data-cycle-loader='true' data-cycle-auto-height='16:9' data-cycle-timeout='5000' data-cycle-pause-on-hover='false' data-cycle-overlay-template='<h4>{{title}}</h4><span>{{desc}}</span>' data-cycle-slides='li' style="min-height:250px;">
<div class='cycle-overlay custom'></div>
<li data-cycle-title='Entrepreneurship Crash Course' data-cycle-desc='Nov 2015 final exhibit'> <a href='#' target='_blank'> <img src='img/events/nov12-2015-1.jpg'> </a></li>
<li data-cycle-title='Entrepreneurship Crash Course' data-cycle-desc='Gershom Kutliroff during his talk'> <a href='#' target='_blank'> <img src='img/lectures/gershom.jpg'> </a></li>
</div>
-->
<div class="intro-text">
<div class="container">
<div class="intro-heading">Entrepreneurship <br>101 Workshop</div>
<div class="intro-lead-in">Collaboration of:</div>
<div class="row">
<div class="col-xs-2 col-xs-offset-3">
<a href="http://www.intel.co.il/content/www/il/he/homepage.html" target="_blank">
<img src="img/logos/intel-logo.jpg" class="img-responsive" alt="">
</a>
<h3 class="service-heading text-left">intel israel</h3>
</div>
<div class="col-xs-2">
<a href="http://madeinjlm.org/" target="_blank">
<img src="img/logos/made-in-jlm-logo.png" class="img-responsive" alt="">
</a>
<h3 class="service-heading text-left">Made in JLM</h3>
</div>
<div class="col-xs-2">
<a href="http://jcya.org.il/" target="_blank">
<img src="img/logos/youth-center-logo.jpg" class="img-responsive" alt="">
</a>
<h3 class="service-heading text-left">Youth center</h3>
</div>
</div>
</div>
</div>
</header>
<!-- Services Section -->
<section id="concept">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">concept</h2>
<h3 class="section-subheading text-muted">the idea behind the course and its design</h3>
</div>
</div>
<div class="row">
<div class="col-md-4">
<h4 class="service-heading text-center">Mentoring the next generation of entrepreneurs</h4>
<p class="text-muted">Experienced entrepreneurs and hi-tech engineers share their experience with those who make their first steps into the realms of startups.</p>
</div>
<div class="col-md-4">
<h4 class="service-heading text-center">Lecture + workshop</h4>
<p class="text-muted">Each lesson starts with an intimate talk and a long Q&A session. The remaining of the time is invested in working with the students on building their ideas into products.</p>
</div>
<div class="col-md-4">
<h4 class="service-heading text-center">Ideation-> Design-> Prototype</h4>
<p class="text-muted">The three chapters encapsulate core stages in product life-cycle. From a napkin to a business plan; Designing the user scenario and product wireframe; Prototyping and user testing.</p>
</div>
</div>
<div class="row">
<div class="col-md-4">
<h4 class="service-heading text-center">Project based learning</h4>
<p class="text-muted">Students asked to show results in front of the class for each of the core chapters. At the end we have a startup exhibit to external visitors.</p>
</div>
<div class="col-md-4">
<h4 class="service-heading text-center">Soft skills</h4>
<p class="text-muted">Project management, time management, presentation and finding the right team memebers are a significant part of the course.</p>
</div>
<div class="col-md-4">
<h4 class="service-heading text-center">Values and community</h4>
<p class="text-muted">One cannot succeed alone. Students learn ways to interact with the local thriving community of startups and hi-tech. We do our best to discover a win-win situation products with an emotional touch.</p>
</div>
</div>
<div class="row">
<div class="col-lg-12 text-center">
<h4 class="section-subheading text-muted">a little bird whispered</h4>
</div>
</div>
<div class="row text-center">
<div class="col-md-6">
<blockquote>"You are exactly the type of people we want to grow up in this town! We promise our help in any way we can!</blockquote>
<h4 class="quote-heading">Ofer Berkowitz, Deputy Mayor Jerusalem municipality</h4>
</div>
<div class="col-md-6">
<blockquote>"the next generation of tech entrepreneurs are a strategic pillar of intel. intel jerusalem is thrilled to take part in pushing the tech innvoation of the city. intel works in jerusalem for over 30 years, and we want to see more companies start, grow and maintain themselves in jerusalem on the long run.</blockquote>
<h4 class="quote-heading">Shahaf Kizelshtein, intel Jerusalem General R&D Manager</h4>
</div>
<div class="col-md-6">
<blockquote>"every time i encounter intel, i am awed by the ability of a company to be so big and influencial, and yet such socially oriented...
<!--starting from decisions like where to setup another factory, to encorporating religious jews and muslims in the working class, projects in school and entrepreneurship classes. the latter had its first projects exhibit last week. intel realized that jerusalem has a rising community of out-of-the-box innovators, and together with the JLM Youth Center (Shlomo Levi and Daniel Bareket) the course was initiated. 30 wonderful students received a life time opportunity to fulfill dreams. what could be better? -->
<br>our future lies in the ability of the business, public and civil sectors to effectively collaborate.</blockquote>
<h4 class="quote-heading">Hanan Rubin, Jerusalem municipality Youth manager</h4>
</div>
<div class="col-md-6">
<blockquote>"one of the best courses we had lately. see you on the next one!</blockquote>
<h4 class="quote-heading">Daniel Bareket, JLM Tech Hub Manager</h4>
</div>
<div class="col-md-6">
<blockquote>"The invention alone is not enough to succeed. You must have a business plan... Combine empathy, focused management, a great idea and business potential - and you have a winning team!</blockquote>
<h4 class="quote-heading">Idan Zu-Aretz, intel Jerusalem General Production Manager</h4>
</div>
</div>
</div>
</section>
<!-- Services Section -->
<section id="services">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">course content</h2>
</div>
</div>
<div class="row bg-green">
<div class="col-lg-12 text-center">
<h3 class="section-heading">Chapter 1: Ideation, from napkin to a business</h3>
</div>
</div>
<div class="row bg-green">
<div class="col-md-4">
<img src="img/lectures/ofer-VP-jer-council.jpg" class="img-responsive" alt="">
<h4 class="service-heading text-center">How Do You Know When You Have a Good Idea?</h4>
<p>Shachar Oz investigates successful startups to find a common ground, explains the basic elements of a potential for a great idea and methods to find one.</p>
<p class="text-center">
<a href="http://www.slideshare.net/shachar_oz/ss-52474372">slides</a>
</p>
</div>
<div class="col-md-4">
<img src="img/lectures/gershom.jpg" class="img-responsive" alt="">
<h4 class="service-heading text-center">Funding and Founding a New Startup</h4>
<p>Dr Gershom Kutliroff shares his experiences from founding his startup, Omek Interactive, and answers critical questions such as: what are the most important building blocks of a startup, how do you start, where and how you get funds.</p>
<p class="text-center">
<a href="https://www.youtube.com/watch?v=b8ZtnNj1fP8">video</a> |
<a href="course-content/fundingBusiness.pdf">slides</a>
</p>
</div>
</div>
<div class="row bg-red">
<div class="col-lg-12 text-center">
<h3 class="section-heading">Chapter 2: Design, from idea to product</h3>
</div>
</div>
<div class="row bg-red">
<div class="col-md-4">
<img src="img/lectures/yaron.jpg" class="img-responsive" alt="">
<h4 class="service-heading text-center">From Concept to Design</h4>
<p>Yaron Yanai explains what are the needed steps to go from a general idea to a full design document that developers can work with. Answers questions like: how to best describe your idea, what is application flow and how to create a wireframe.</p>
<p class="text-center">
<a href="https://www.youtube.com/watch?v=Z4TIdSCd1Hw">video</a> |
<a href="course-content/conceptToPractice.pptx">slides</a>
</p>
</div>
<div class="col-md-4">
<img src="img/lectures/doron.jpg" class="img-responsive" alt="">
<h4 class="service-heading text-center">What is Product Management?</h4>
<p>Doron Houminer shares his experiences from over 20 years of product management in companies and startups all around the world. He answers questions such as: why is product management so important, what does it means, what roles and tasks you have.</p>
<p class="text-center">
<a href="https://www.youtube.com/watch?v=cmbwvbpSMes">video</a> |
<a href="course-content/ProductManagement.pdf">slides</a>
</p>
</div>
</div>
<div class="row bg-purple">
<div class="col-lg-12 text-center">
<h3 class="section-heading">Chapter 3: Prototyping, and user research</h3>
</div>
</div>
<div class="row bg-purple">
<div class="col-md-4">
<img src="img/lectures/omer.jpg" class="img-responsive" alt="">
<h4 class="service-heading text-center">Prototyping</h4>
<p>Omer Goshen explains about the steps and preparations entrepreneurs can make before talking to developers. Answers questions like: what are flow charts, server side and client side, planning databases.</p>
<p class="text-center">
<a href="https://www.youtube.com/watch?v=jk_YNQhrdLY">video</a> |
<a href="course-content/ProtoDev.pptx">slides</a>
</p>
</div>
<div class="col-md-4">
<img src="http://placehold.it/577x324?text=coming soon" class="img-responsive" alt="">
<h4 class="service-heading">Planning a Software Project</h4>
<p>Dor Levy explains how to effectively plan a software project, and estimate its development time and effort.</p>
</div>
<div class="col-md-4">
<img src="img/lectures/shachar-testing.jpg" class="img-responsive" alt="">
<h4 class="service-heading text-center">Performing an Effective User Testing</h4>
<p>Shachar Oz shares best practices of performing low cost and effective user testing sessions for startups. Answers questions such as: how to plan, when to test, how to ask questions without revealing the product features.</p>
<p class="text-center">
<a href="https://www.youtube.com/watch?v=2X-7bFnCLzM">video</a> |
<a href="http://www.slideshare.net/shachar_oz/user-testing-plan-and-perform-effective-user-testing">slides</a>
</p>
</div>
</div>
<div class="row bg-dark-gray">
<div class="col-lg-12 text-center">
<h3 class="section-heading text-center">Extra: Soft skills of the entrepreneur</h3>
</div>
</div>
<div class="row bg-dark-gray">
<div class="col-md-4">
<img src="img/lectures/eli.jpg" class="img-responsive" alt="">
<h4 class="service-heading text-center">Leading a Development Team</h4>
<p>Eli Elhadad shares his experiences from leading dev teams, and answers questions such as: rules to establish an A Team, how to be an A Player, how do you run several projects in parallel, the difference between a leader and a manager.</p>
<p class="text-center">
<a href="https://www.youtube.com/watch?v=f8HSMXCq47c">video</a> |
<a href="course-content/leadingDevTeam.pptx">slides</a>
</p>
</div>
<div class="col-md-4">
<img src="img/lectures/ziv.jpg" class="img-responsive" alt="">
<h4 class="service-heading text-center">Makers Revolution</h4>
<p>Ziv Barcesat shares his work as a Maker-for-Hire and as the manager of the JerusaLab, a jerusalem based makers space. Answers questions like: what are the makers, where can you find them, the tools of the maker, and does all that using exciting examples.</p>
<p class="text-center">
<a href="https://www.youtube.com/watch?v=sjVC2dv_qrI">video</a>
<!--|
<a href="course-content/MakersRevolution.pdf">slides</a-->
</p>
</div>
<div class="col-md-4">
<img src="img/lectures/shachar-continue.jpg" class="img-responsive" alt="">
<h4 class="service-heading text-center">How to Continue After the Entrepreneurship Course?</h4>
<p>Shachar Oz wraps up the course and explain what are the next steps needed to be done for the new business.</p>
<p class="text-center">
<a href="https://www.youtube.com/watch?v=zyYsMRUTrHU">video</a> |
<a href="http://www.slideshare.net/shachar_oz/the-day-after-the-course">slides</a>
</p>
</div>
</div>
</div>
</section>
<!-- Portfolio Grid Section -->
<section id="portfolio" class="bg-light-gray">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">startups</h2>
<h3 class="section-subheading text-muted">Selection of innovations from our graduates</h3>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="thumbnail">
<img src="img/startups/joey2016.jpg">
<div class="caption">
<h2>Joey by Koala Gear (Yonatan Aldouby)</h2>
<p>1,345 backers pledged $233,656 on Kickstarter</p>
<p>collected $305,919 on Indigogo</p>
<p><a href="https://www.kickstarter.com/projects/koalajoey/joey-the-everyday-backpack-that-gives-your-body-a" class="btn btn-primary" role="button">Kickstarter</a> <a href="https://www.indiegogo.com/projects/joey-the-backpack-that-gives-your-body-a-break-design-travel#/" class="btn btn-default" role="button">INDIGOGO</a></p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="thumbnail">
<img src="img/startups/escapebus2017-2.jpg">
<div class="caption">
<h2>EscapeBus by A-Maze (Ofir Peled)</h2>
<p>The first escape room inside a bus!</p>
<p><a href="http://a-maze.org.il/" class="btn btn-primary" role="button">Site</a> <a href="https://bookescaperoom.co.il/חדר_בריחה/המשימה-אוטובוס/" class="btn btn-default" role="button">book escape room</a></p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="thumbnail">
<img src="http://flux-experiences.com/people/media/shachar/portfolio/plugiz2.jpg">
<div class="caption">
<h2>Plugiz by Shragai-Kreisberg</h2>
<p>Toy teaching code</p>
<p><a href="https://www.facebook.com/Plugiz-1316538261707902" class="btn btn-primary" role="button">Site</a> <a href="https://www.behance.net/gallery/45420603/PlugiZ" class="btn btn-default" role="button">read more</a></p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="thumbnail">
<p>finished the course and want to publish here? let me know</p>
</div>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Story</h2>
</div>
</div>
<div class="row">
<div class="col-md-8">
<div class="col-sm-3 hidden-xs">
<img class="img-responsive" src="img/events/innovation-crash-course.png" alt="">
</div>
<div class="col-sm-9">
<h4 class="subheading">Course planning | June-July 2015</h4>
<p class="text-muted">Amit, Shachar, Daniel and Shlomo meet to design the course.</p>
</div>
<div class="col-sm-9">
<h4 class="subheading">Screening students | August 2015</h4>
<p class="text-muted">Youth center interviews and selects suitable students.</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-8">
<div class="col-sm-3 hidden-xs">
<img class="img-responsive" src="img/events/nov12-2015/exhibit-invite.png" alt="">
</div>
<div class="col-sm-9">
<h4 class="subheading">1st course cycle | September-November 2015</h4>
<p class="text-muted">Running the course for the first time. On November 12th students exhibited their ideas at intel israel.</p>
<p class="text-muted">Students were really thankful for that experience and it was mind openning for them.</p>
<div class='cycle-slideshow' data-cycle-fx='scrollHorz' data-cycle-loader='true' data-cycle-auto-height='16:9' data-cycle-timeout='5000' data-cycle-pause-on-hover='false' data-cycle-overlay-template='<h4>{{title}}</h4><span>{{desc}}</span>' data-cycle-slides='li' style="min-height:250px;">
<div class='cycle-overlay custom'></div>
<li data-cycle-title='Nov 2015 final exhibit' data-cycle-desc='Shachar opens the event'> <a href='#' target='_blank'> <img src='img/events/nov12-2015/good/DSC00770.JPG'> </a></li>
<li data-cycle-title='Nov 2015 final exhibit' data-cycle-desc='Shachar opens the event'> <a href='#' target='_blank'> <img src='img/events/nov12-2015/good/DSC00763.JPG'> </a></li>
<li data-cycle-title='Nov 2015 final exhibit' data-cycle-desc='Shachar Oz, Daniel Bareket and Hanan Rubin'> <a href='#' target='_blank'> <img src='img/events/nov12-2015/good/DSC00798.JPG'> </a></li>
<li data-cycle-title='Nov 2015 final exhibit' data-cycle-desc='Hanan Rubin blesses the new entrepreneurs'> <a href='#' target='_blank'> <img src='img/events/nov12-2015/good/DSC00777.JPG'> </a></li>
<li data-cycle-title='Nov 2015 final exhibit' data-cycle-desc='Shlomo Levi sums up the course'> <a href='#' target='_blank'> <img src='img/events/nov12-2015/good/DSC00779.JPG'> </a></li>
<li data-cycle-title='Nov 2015 final exhibit' data-cycle-desc='the new entrepreneurs showing off their ideas'> <a href='#' target='_blank'> <img src='img/events/nov12-2015/good/DSC00748.JPG'> </a></li>
<li data-cycle-title='Nov 2015 final exhibit' data-cycle-desc='the new entrepreneurs showing off their ideas'> <a href='#' target='_blank'> <img src='img/events/nov12-2015/good/DSC00749.JPG'> </a></li>
<li data-cycle-title='Nov 2015 final exhibit' data-cycle-desc='the new entrepreneurs showing off their ideas'> <a href='#' target='_blank'> <img src='img/events/nov12-2015/good/DSC00761.JPG'> </a></li>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-8">
<div class="col-sm-3 hidden-xs">
</div>
<div class="col-sm-9">
<h4 class="subheading">Course impact on students | December 2015</h4>
<p class="text-muted">Four students of the first cycle already started working on a new innovation as a result of the course. More of them continue to push ideas they had before the course. One tries to duplicate the course plan into the academic environment he works at.</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-8">
<div class="col-sm-3 hidden-xs">
<a href="img/papers/jlm_kol_hair_nov16.jpg" target="_blank"> <img class="img-responsive" src="img/papers/jlm_kol_hair_nov16.jpg" alt=""> </a>
</div>
<div class="col-sm-9">
<h4 class="subheading">Course is in the local newspaper | November 2016</h4>
<p class="text-muted">Our course is reminded a year after its finish date as a sign for a shift in the hi-tech community in Jerusalem.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Team Section -->
<section id="team" class="bg-light-gray">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">People</h2>
<h4 class="section-subheading text-muted">course lead</h4>
</div>
</div>
<div class="row">
<div class="col-sm-2 col-sm-offset-3">
<div class="team-member">
<img src="img/team/shacharoz.jpg" class="img-responsive img-circle" alt="">
<h4>Shachar Oz</h4>
<p class="text-muted">Course leader, intel</p>
</div>
</div>
<div class="col-sm-2">
<div class="team-member">
<img src="img/team/amitputerkovsky.jpg" class="img-responsive img-circle" alt="">
<h4>Amit Puterkovsky</h4>
<p class="text-muted">Course manager, intel</p>
</div>
</div>
<div class="col-sm-2">
<div class="team-member">
<img src="img/team/danielbareket.jpg" class="img-responsive img-circle" alt="">
<h4>Daniel Bareket</h4>
<p class="text-muted">Course coordinator, Youth center</p>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12 text-center">
<h4 class="section-subheading text-muted">lecturers</h4>
</div>
</div>
<div class="row">
<div class="col-sm-2 col-sm-offset-2">
<div class="team-member">
<img src="img/team/businessperson.png" class="img-responsive img-circle" alt="">
<h4>Gershom Kutliroff</h4>
<p class="text-muted">Vision research general manager, intel</p>
</div>
</div>
<div class="col-sm-2">
<div class="team-member">
<img src="img/team/businessperson.png" class="img-responsive img-circle" alt="">
<h4>Eli Elhadad</h4>
<p class="text-muted">Omek studio general manager, intel</p>
</div>
</div>
<div class="col-sm-2">
<div class="team-member">
<img src="img/team/yaronyanai.jpg" class="img-responsive img-circle" alt="">
<h4>Yaron Yanai</h4>
<p class="text-muted">Omek studio creative director, intel</p>
</div>
</div>
<div class="col-sm-2">
<div class="team-member">
<img src="img/team/omergoshen.jpg" class="img-responsive img-circle" alt="">
<h4>Omer Goshen</h4>
<p class="text-muted">Omek studio software engineer, intel</p>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-2 col-sm-offset-2">
<div class="team-member">
<img src="img/team/shacharoz.jpg" class="img-responsive img-circle" alt="">
<h4>Shachar Oz</h4>
<p class="text-muted">Omek studio UX Designer, intel</p>
</div>
</div>
<div class="col-sm-2">
<div class="team-member">
<img src="img/team/dorlevy.jpg" class="img-responsive img-circle" alt="">
<h4>Dor Levy</h4>
<p class="text-muted">Flex software engineer, intel</p>
</div>
</div>
<div class="col-sm-2">
<div class="team-member">
<img src="img/team/doronhouminer.jpg" class="img-responsive img-circle" alt="">
<h4>Doron Houminer</h4>
<p class="text-muted">Product manager, intel</p>
</div>
</div>
<div class="col-sm-2">
<div class="team-member">
<img src="img/team/zivbarcesat.jpg" class="img-responsive img-circle" alt="">
<h4>Ziv Barcesat</h4>
<p class="text-muted">co-founder & operator, JerusaLab Makers space</p>
<!--a href="https://www.linkedin.com/pub/ziv-barcesat/59/969/899">linkedin</a-->
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12 text-center">
<h4 class="section-subheading text-muted">supporters</h4>
</div>
</div>
<div class="row">
<div class="col-sm-2">
<div class="team-member">
<img src="img/team/oferberkowitz.png" class="img-responsive img-circle" alt="">
<h4>Ofer Berkowitz</h4>
<p class="text-muted">Deputy mayor, Jerusalem municipality</p>
</div>
</div>
<div class="col-sm-2">
<div class="team-member">
<img src="img/team/businessperson.png" class="img-responsive img-circle" alt="">
<h4>Shlomo Levi</h4>
<p class="text-muted">General manager, JLM Youth center</p>
</div>
</div>
<div class="col-sm-2">
<div class="team-member">
<img src="img/team/businessperson.png" class="img-responsive img-circle" alt="">
<h4>Shahaf Kizelshtein</h4>
<p class="text-muted">Jerusalem R&D general manager, intel</p>
</div>
</div>
<div class="col-sm-2">
<div class="team-member">
<img src="img/team/zvikamarkfeld.jpg" class="img-responsive img-circle" alt="">
<h4>Zvika Markfeld</h4>
<p class="text-muted">co-founder, JerusaLab Makers space</p>
</div>
</div>
<div class="col-sm-2">
<div class="team-member">
<img src="img/team/roymunin.jpg" class="img-responsive img-circle" alt="">
<h4>Roy Munin</h4>
<p class="text-muted">co-founder, Made In JLM</p>
</div>
</div>
<div class="col-sm-2">
<div class="team-member">
<img src="img/team/hananbrand.jpg" class="img-responsive img-circle" alt="">
<h4>Hanan Brand</h4>
<p class="text-muted">co-founder, Made in JLM</p>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-2">
<div class="team-member">
<img src="img/team/hananrubin.jpg" class="img-responsive img-circle" alt="">
<h4>Hanan Rubin</h4>
<p class="text-muted">Youth manager, Jerusalem municipality</p>
</div>
</div>
<div class="col-sm-2">
<div class="team-member">
<img src="img/team/businessperson.png" class="img-responsive img-circle" alt="">
<h4>Revital Bitan</h4>
<p class="text-muted">Community relations general manager, intel</p>
</div>
</div>
<div class="col-sm-2">
<div class="team-member">
<img src="img/team/businessperson.png" class="img-responsive img-circle" alt="">
<h4>Idan Zu-Aretz</h4>
<p class="text-muted">Jerusalem production general manager, intel</p>
</div>
</div>
<div class="col-sm-2">
<div class="team-member">
<img src="img/team/saronpaz.jpg" class="img-responsive img-circle" alt="">
<h4>Saron Paz</h4>
<p class="text-muted">co-founder, JerusaLab Makers space</p>
</div>
</div>
<div class="col-sm-2">
<div class="team-member">
<img src="img/team/michalyosfan.jpg" class="img-responsive img-circle" alt="">
<h4>Michal Yosfan</h4>
<p class="text-muted">Community relations Jerusalem, intel</p>
</div>
</div>
<div class="col-sm-2">
<div class="team-member">
<img src="img/team/urielshuraki.jpg" class="img-responsive img-circle" alt="">
<h4>Uriel Shuraki</h4>
<p class="text-muted">co-founder, Made in JLM</p>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-2">
<div class="team-member">
<img src="img/team/avisalmon.jpg" class="img-responsive img-circle" alt="">
<h4>Avi Salmon</h4>
<p class="text-muted">Makers community manager, intel</p>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12 text-center">
<h4 class="section-subheading text-muted">students</h4>
</div>
</div>
<div class="row">
<div class="col-sm-2">
<div class="team-member">
<h4>Ofer Rashti</h4>
<p class="text-muted">Nov 15'</p>
</div>
</div>
<div class="col-sm-2">
<div class="team-member">
<h4>Shawn Eni</h4>
<p class="text-muted">Nov 15'</p>
</div>
</div>
<div class="col-sm-2">
<div class="team-member">
<h4>Vadim Epstein</h4>
<p class="text-muted">Nov 15'</p>
</div>
</div>
<div class="col-sm-2">
<div class="team-member">
<h4>Nina Shpigel</h4>
<p class="text-muted">Nov 15'</p>
</div>
</div>
<div class="col-sm-2">
<div class="team-member">
<h4>Josef van Wijk</h4>
<p class="text-muted">Nov 15'</p>
</div>
</div>
<div class="col-sm-2">
<div class="team-member">
<h4>Elad Edri</h4>
<p class="text-muted">Nov 15'</p>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-2">
<div class="team-member">
<h4>Ofir Peled</h4>
<p class="text-muted">Nov 15'</p>
</div>
</div>
<div class="col-sm-2">
<div class="team-member">
<h4>Danit Houli</h4>
<p class="text-muted">Nov 15'</p>
</div>
</div>
<div class="col-sm-2">
<div class="team-member">
<h4>Max Voloshin</h4>
<p class="text-muted">Nov 15'</p>
</div>
</div>
<div class="col-sm-2">
<div class="team-member">
<h4>Coby Levy</h4>
<p class="text-muted">Nov 15'</p>
</div>
</div>
<div class="col-sm-2">
<div class="team-member">
<h4>Chen Bareket</h4>
<p class="text-muted">Nov 15'</p>
</div>
</div>
<div class="col-sm-2">
<div class="team-member">
<h4>Yativ Tal</h4>
<p class="text-muted">Nov 15'</p>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-2">
<div class="team-member">
<h4>Hamodi 'Jimmy' Massalha</h4>
<p class="text-muted">Nov 15'</p>
</div>
</div>
<div class="col-sm-2">
<div class="team-member">
<h4>Yonatan Aldouby</h4>
<p class="text-muted">Nov 15'</p>
</div>
</div>
<div class="col-sm-2">
<div class="team-member">
<h4>Gadi Keren</h4>
<p class="text-muted">Nov 15'</p>
</div>
</div>
<div class="col-sm-2">
<div class="team-member">
<h4>Adiva Beigel</h4>
<p class="text-muted">Nov 15'</p>
</div>
</div>
<div class="col-sm-2">
<div class="team-member">
<h4>Barak Landau</h4>
<p class="text-muted">Nov 15'</p>
</div>
</div>
<div class="col-sm-2">
<div class="team-member">
<h4>Kobi Alkotser</h4>
<p class="text-muted">Nov 15'</p>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-2">
<div class="team-member">
<h4>Amos Sidelnik</h4>
<p class="text-muted">Nov 15'</p>
</div>
</div>
<div class="col-sm-2">
<div class="team-member">
<h4>Avishay Auday</h4>
<p class="text-muted">Nov 15'</p>
</div>
</div>
<div class="col-sm-2">
<div class="team-member">
<h4>Erez Assor</h4>
<p class="text-muted">Nov 15'</p>
</div>
</div>
<div class="col-sm-2">
<div class="team-member">
<h4>Roee Zamir</h4>
<p class="text-muted">Nov 15'</p>
</div>
</div>
<div class="col-sm-2">
<div class="team-member">
<h4>Eliyahu Kahanovsky</h4>
<p class="text-muted">Nov 15'</p>
</div>
</div>
<div class="col-sm-2">
<div class="team-member">
<h4>Moshe </h4>
<p class="text-muted">Nov 15'</p>
</div>
</div>
</div>
</div>
</section>
<footer>
<div class="container">
<div class="row text-left">
<div class="col-md-6">
<span class="copyright">course designed and run by shachar oz, 2015</span>
</div>
<div class="col-md-6">
<span class="copyright">site template by <a href="http://ironsummitmedia.github.io/startbootstrap-agency/" target="_blank">bootstrap agency</a></span>
</div>
</div>
</div>
</footer>
<!-- Portfolio Modals -->
<!-- Use the modals below to showcase details about your portfolio projects! -->
<!-- Portfolio Modal 1 -->
<div class="portfolio-modal modal fade" id="portfolioModal1" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<!-- Project Details Go Here -->
<h2>Project Name</h2>
<p class="item-intro text-muted">Lorem ipsum dolor sit amet consectetur.</p>
<img class="img-responsive img-centered" src="img/portfolio/roundicons-free.png" alt="">
<p>Use this area to describe your project. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Est blanditiis dolorem culpa incidunt minus dignissimos deserunt repellat aperiam quasi sunt officia expedita beatae cupiditate, maiores repudiandae, nostrum, reiciendis facere nemo!</p>
<p>
<strong>Want these icons in this portfolio item sample?</strong>You can download 60 of them for free, courtesy of <a href="https://getdpd.com/cart/hoplink/18076?referrer=bvbo4kax5k8ogc">RoundIcons.com</a>, or you can purchase the 1500 icon set <a href="https://getdpd.com/cart/hoplink/18076?referrer=bvbo4kax5k8ogc">here</a>.</p>
<ul class="list-inline">
<li>Date: July 2014</li>
<li>Client: Round Icons</li>
<li>Category: Graphic Design</li>
</ul>
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close Project</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- jQuery -->
<script src="js/jquery.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="js/bootstrap.min.js"></script>
<!-- Plugin JavaScript -->
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js"></script>
<script src="js/classie.js"></script>
<!-- Custom Theme JavaScript -->
<script src="js/agency.js"></script>
<!-- slideshow from http://jquery.malsup.com/cycle2/demo/basic.php -->
<script src="http://malsup.github.com/jquery.cycle2.js"></script>
</body>
</html>