|
| 1 | +--- |
| 2 | +layout: post |
| 3 | +title: 2016 A year dedicated to Python Workshops |
| 4 | +tag: pythonworkshop |
| 5 | +--- |
| 6 | + |
| 7 | +Beautiful 2017 has already started. While everybody is busy with preparing |
| 8 | +resolutions for their new year I decided to look back and share my journey |
| 9 | +here. |
| 10 | + |
| 11 | +After attending [PyCon India 2015](https://in.pycon.org/2015/) India 2015 I |
| 12 | +took an oath to spread the word of Python. It was looking simple at first |
| 13 | +glance with a guess of getting less invitations. But the estimate went wrong. |
| 14 | +Below is the summary of yearly progress highlight with word of experience. |
| 15 | + |
| 16 | + |
| 17 | +<link rel="stylesheet" type="text/css" href="{{site.url}}/assets/css/nv.d3.min.css"> |
| 18 | + |
| 19 | +<style> |
| 20 | + #chart svg { |
| 21 | + height: 400px; |
| 22 | + } |
| 23 | + |
| 24 | + svg: { |
| 25 | + display: block; |
| 26 | + } |
| 27 | + |
| 28 | + svg text { |
| 29 | + font: normal 8px Impact; |
| 30 | + } |
| 31 | + |
| 32 | + .center { |
| 33 | + text-align: center |
| 34 | + } |
| 35 | + |
| 36 | +</style> |
| 37 | + |
| 38 | +<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.2/d3.min.js" charset="utf-8"></script> |
| 39 | + |
| 40 | +<script src="{{ site.url }}/assets/js/nv.d3.min.js"></script> |
| 41 | + |
| 42 | +<script> |
| 43 | + |
| 44 | +function GetData() { |
| 45 | + return [ |
| 46 | + { |
| 47 | + "label": "Introduction to Django", |
| 48 | + "value" : 1 |
| 49 | + }, |
| 50 | + { |
| 51 | + "label": "My name is Python and I am not terrorist", |
| 52 | + "value" : 1 |
| 53 | + }, |
| 54 | + { |
| 55 | + "label": "Beginning with Python", |
| 56 | + "value" : 2 |
| 57 | + }, |
| 58 | + { |
| 59 | + "label": "Let's learn Python", |
| 60 | + "value" : 5 |
| 61 | + }, |
| 62 | + { |
| 63 | + "label": "Token based authentication system using JWT", |
| 64 | + "value" : 4 |
| 65 | + }, |
| 66 | + ]; |
| 67 | +} |
| 68 | + |
| 69 | +nv.addGraph(function() { |
| 70 | + var chart = nv.models.pieChart() |
| 71 | + .x(function(d) { return d.label }) |
| 72 | + .y(function(d) { return d.value }) |
| 73 | + .showLabels(true) |
| 74 | + .labelType("value"); |
| 75 | + |
| 76 | + d3.select("#chart svg") |
| 77 | + .datum(GetData()) |
| 78 | + .transition().duration(350) |
| 79 | + .call(chart); |
| 80 | + |
| 81 | + return chart; |
| 82 | +}); |
| 83 | + |
| 84 | +</script> |
| 85 | + |
| 86 | +<div id="chart"> |
| 87 | + <svg></svg> |
| 88 | +</div> |
| 89 | + |
| 90 | + |
| 91 | +During my last year I conducted 13 workshops at various colleges of |
| 92 | +state Gujarat and Rajasthan. 10 workshops were conducted targeting college |
| 93 | +students and 3 were presented for professionals. Gandhinagar and Ahmedabad |
| 94 | +received 4 number of workshops individually. Did single workshop at Bhuj, |
| 95 | +Ajmer, Vadodara and New delhi. One over Google Hangouts on Air. |
| 96 | + |
| 97 | + |
| 98 | +Facilities I received while conducting workshops |
| 99 | +------------------------------------------------ |
| 100 | + |
| 101 | +The colleges which were settled far from my town provided travelling allowance |
| 102 | +for me. I accepted because I felt there is nothing wrong in taking such help. |
| 103 | +Some colleges arranged an afternoon meal for me. I happily accepted that |
| 104 | +because finding another option during short breaks at unknown place is quite |
| 105 | +time consuming. There were few colleges which gave cash covers as a good will. |
| 106 | +I have decided to not accept such cash because sometimes it comes from the |
| 107 | +pocket of students and I don’t feel good to take money from the pocket of any |
| 108 | +student. Still some colleges claimed that the money belongs to their grants and |
| 109 | +not raised from students. I took that money at that time and donated each to |
| 110 | +[Krishna Vrudhashram](http://www.krishnavriddhashram.org/) located at |
| 111 | +Gandhinagar, Gujarat. |
| 112 | + |
| 113 | + |
| 114 | +Python Express |
| 115 | +-------------- |
| 116 | + |
| 117 | +Such contributions would have not possible without [Python |
| 118 | +Express][python_express]. Python Express is a platform to collaborate colleges, |
| 119 | +students with Python tutors across India. It is supervised and funded by the |
| 120 | +[Python Software Society of India](https://pssi.org.in/). |
| 121 | + |
| 122 | + |
| 123 | +### Python Express Ahmedabad |
| 124 | + |
| 125 | +At present, we have a Python Express Ahmedabad group whose motive is to teach |
| 126 | +Python to nearby colleges. We are linked up with |
| 127 | +[Telegram Messenger](https://telegram.org/). During this PyCon, I got a large |
| 128 | +bunch of Python Express stickers from Vijay sir. The stickers will be a lot to |
| 129 | +motivate pupils. We also received Python Express volunteer T-shirts. If you are |
| 130 | +living nearby Ahmedabad and want to contribute to this movement, please get in |
| 131 | +touch over email. |
| 132 | + |
| 133 | + |
| 134 | + |
| 135 | + |
| 136 | + |
| 137 | +**"Teaching is the best way to learn."** |
| 138 | +---------------------------------------- |
| 139 | + |
| 140 | +I am inspired from curious questions raised by scholars. They forced me to |
| 141 | +plunge deep into the subject. It was little difficult to afford such a huge |
| 142 | +hours with having a full time job, but after observing my personal |
| 143 | +improvements I consider this as a good investment. |
| 144 | + |
| 145 | +In summary, I took 1 workshop every month during the year 2016 which is nearly |
| 146 | +90% more than what I did in the year 2015. |
| 147 | + |
| 148 | +You can download [Slides here](https://goo.gl/vTBhTh) and |
| 149 | +[Python Kit here](https://drive.google.com/file/d/0B_TmiicGbqjHb2ZGcE5QYmtXRHc/view?usp=sharing). |
| 150 | + |
| 151 | + |
| 152 | +Photos |
| 153 | +----------------- |
| 154 | + |
| 155 | + |
| 156 | + |
| 157 | +<p class="center"> |
| 158 | + At <a href="http://pgschool.gtu.ac.in/moodle/">PG GTU Gandhinagar</a> |
| 159 | +</p> |
| 160 | + |
| 161 | +**- - -** |
| 162 | + |
| 163 | + |
| 164 | + |
| 165 | +<p class="center"> |
| 166 | + At <a href="http://cs.kutchuni.edu.in/">K.S.K.V. Kachchh University</a> |
| 167 | +</p> |
| 168 | + |
| 169 | +**- - -** |
| 170 | + |
| 171 | + |
| 172 | + |
| 173 | +<p class="center"> |
| 174 | + At <a href="http://www.gpgandhinagar.edu.in/">Gujarat Polytechnic College, Gandhinagar</a> |
| 175 | +</p> |
| 176 | + |
| 177 | +**- - -** |
| 178 | + |
| 179 | + |
| 180 | + |
| 181 | +<p class="center"> |
| 182 | + At <a href="http://paruluniversity.ac.in/home/">Parul University, Waghodia, Vadodara</a> |
| 183 | +</p> |
| 184 | + |
| 185 | +**- - -** |
| 186 | + |
| 187 | + |
| 188 | + |
| 189 | +<p class="center"> |
| 190 | + At <a href="http://www.nirmauni.ac.in/">Nirma Technology University, Ahmedabad</a> |
| 191 | +</p> |
| 192 | + |
| 193 | +**- - -** |
| 194 | + |
| 195 | + |
| 196 | + |
| 197 | +<p class="center"> |
| 198 | + At <a href="http://the1947.com/">Startup Gujarat, Gandhinagar</a> |
| 199 | +</p> |
| 200 | + |
| 201 | +**- - -** |
| 202 | + |
| 203 | + |
| 204 | + |
| 205 | +<p class="center"> |
| 206 | + At |
| 207 | + <a href="https://www.meetup.com/Ahmedabad-Web-and-Mobile-Developers-Meetup/events/232699917/"> |
| 208 | + Ahmedabad Web and Mobile developers meetup |
| 209 | + </a> |
| 210 | +</p> |
| 211 | + |
| 212 | +**- - -** |
| 213 | + |
| 214 | + |
| 215 | + |
| 216 | +<p class="center"> |
| 217 | + At <a href="http://www.daiict.ac.in/">Dhirubhai Ambani Institute of Information and Communication Technology |
| 218 | + GandhinagarStartup Gujarat, Gandhinagar</a> |
| 219 | +</p> |
| 220 | + |
| 221 | +**- - -** |
| 222 | + |
| 223 | + |
| 224 | + |
| 225 | +<p class="center"> |
| 226 | + At <a href="http://www.gweca.ac.in/web/">Government Women Engineering College Ajmer</a> |
| 227 | +</p> |
| 228 | + |
| 229 | +**- - -** |
| 230 | + |
| 231 | + |
| 232 | + |
| 233 | +<p class="center"> |
| 234 | + At <a href="https://www.ahduni.edu.in/">Ahmedabad University</a> |
| 235 | +</p> |
| 236 | + |
| 237 | +**- - -** |
| 238 | + |
| 239 | + |
| 240 | + |
| 241 | +<p class="center"> |
| 242 | + At <a href="http://in.pycon.org/2016/">PyCon India, New Delhi</a> |
| 243 | +</p> |
| 244 | + |
| 245 | +**- - -** |
| 246 | + |
| 247 | + |
| 248 | + |
| 249 | +<p class="center"> |
| 250 | + At <a href="https://reps.mozilla.org/e/maker-party-gujarat/">Mozilla Maker Party Ahmedabad</a> |
| 251 | +</p> |
| 252 | + |
| 253 | + |
| 254 | +### Do you want to invite me for your college? |
| 255 | + |
| 256 | +First step is to brief your college administration with Python Express to get |
| 257 | +the permission. Once they agree register your college at [Python |
| 258 | +Express][python_express] and create the workshop request that’s it! |
| 259 | + |
| 260 | +I will advice to schedule workshop on weekends. Saturday is usually the best |
| 261 | +day for me. Facilities like Projector, Microphone and speakers if number of |
| 262 | +attendees are more than 60. College Computer Labs, the auditorium is the best |
| 263 | +place for such events. |
| 264 | + |
| 265 | +Waiting for nice invitations :) |
| 266 | + |
| 267 | +[python_express]: https://pythonexpress.in/ |
| 268 | +[pydelhi_conf]: https://conference.pydelhi.org/ |
0 commit comments