├── .gitignore
├── LICENSE
├── README-es.md
├── README-hi.md
├── README-pt.md
├── README-zh.md
├── README.md
├── _config.yml
├── _data
├── en.yml
├── members.yml
└── pt.yml
├── _includes
├── about.html
├── clients.html
├── contact.html
├── css
│ ├── agency.css
│ ├── bootstrap.min.css
│ └── custom.css
├── footer.html
├── head.html
├── header.html
├── js.html
├── modals.html
├── portfolio_grid.html
├── services.html
└── team.html
├── _layouts
├── default.html
└── style.css
├── _plugins
└── hex_to_rgb.rb
├── _posts
├── 1977-01-01-myEvent.markdown
└── 2077-01-01-myEvent.markdown
├── bn.yml
├── codeOfConduct-pt.md
├── codeOfConduct.md
├── css
└── font-awesome
│ ├── css
│ ├── font-awesome.css
│ └── font-awesome.min.css
│ └── fonts
│ ├── FontAwesome.otf
│ ├── fontawesome-webfont.eot
│ ├── fontawesome-webfont.svg
│ ├── fontawesome-webfont.ttf
│ └── fontawesome-webfont.woff
├── feed.xml
├── img
├── ScienceLabSticker.ai.png
├── about
│ ├── 1.jpg
│ ├── 2.jpg
│ ├── 3.jpg
│ └── 4.jpg
├── header-bg.jpg
├── logos
│ ├── aetuts.jpg
│ ├── creative-market.jpg
│ ├── designmodo.jpg
│ ├── envato.jpg
│ ├── microlancer.jpg
│ ├── themeforest.jpg
│ └── wordpress.jpg
├── map-image.png
├── portfolio
│ ├── dreams-thumbnail.png
│ ├── dreams.png
│ ├── escape-thumbnail.png
│ ├── escape.png
│ ├── golden-thumbnail.png
│ ├── golden.png
│ ├── roundicons-thumbnail.png
│ ├── roundicons.png
│ ├── startup-framework-thumbnail.png
│ ├── startup-framework.png
│ ├── treehouse-thumbnail.png
│ └── treehouse.png
└── team
│ ├── 1.jpg
│ ├── 2.jpg
│ └── 3.jpg
├── index.html
├── js
├── agency.js
├── bootstrap.js
├── bootstrap.min.js
├── cbpAnimatedHeader.js
├── cbpAnimatedHeader.min.js
├── classie.js
├── contact_me.js
├── jqBootstrapValidation.js
├── jquery-1.11.0.js
└── jquery.easing.min.js
├── lesson-template-id.md
├── lesson-template-pt.md
├── lesson-template.md
├── lessons
└── template
│ └── lesson.md
├── mail
└── contact_me.php
├── scripts
└── updateCalendar.py
├── style.css
└── tips
├── co-working-help-tips-pt.md
├── co-working-help-tips.md
├── hacky-hour-tips-pt.md
├── hacky-hour-tips.md
├── work-along-tips-pt.md
└── work-along-tips.md
/.gitignore:
--------------------------------------------------------------------------------
1 | client_secret.json
2 | _site/
3 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | All repository content except the Jekyll theme:
2 |
3 | Creative Commons Attribution 4.0 License, http://creativecommons.org/licenses/by/4.0/
4 |
5 | Jekyll theme by Rick Kim, https://github.com/y7kim/agency-jekyll-theme
6 |
7 | Apache License
8 | Version 2.0, January 2004
9 | https://www.apache.org/licenses/
10 |
11 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
12 |
13 | 1. Definitions.
14 |
15 | "License" shall mean the terms and conditions for use, reproduction,
16 | and distribution as defined by Sections 1 through 9 of this document.
17 |
18 | "Licensor" shall mean the copyright owner or entity authorized by
19 | the copyright owner that is granting the License.
20 |
21 | "Legal Entity" shall mean the union of the acting entity and all
22 | other entities that control, are controlled by, or are under common
23 | control with that entity. For the purposes of this definition,
24 | "control" means (i) the power, direct or indirect, to cause the
25 | direction or management of such entity, whether by contract or
26 | otherwise, or (ii) ownership of fifty percent (50%) or more of the
27 | outstanding shares, or (iii) beneficial ownership of such entity.
28 |
29 | "You" (or "Your") shall mean an individual or Legal Entity
30 | exercising permissions granted by this License.
31 |
32 | "Source" form shall mean the preferred form for making modifications,
33 | including but not limited to software source code, documentation
34 | source, and configuration files.
35 |
36 | "Object" form shall mean any form resulting from mechanical
37 | transformation or translation of a Source form, including but
38 | not limited to compiled object code, generated documentation,
39 | and conversions to other media types.
40 |
41 | "Work" shall mean the work of authorship, whether in Source or
42 | Object form, made available under the License, as indicated by a
43 | copyright notice that is included in or attached to the work
44 | (an example is provided in the Appendix below).
45 |
46 | "Derivative Works" shall mean any work, whether in Source or Object
47 | form, that is based on (or derived from) the Work and for which the
48 | editorial revisions, annotations, elaborations, or other modifications
49 | represent, as a whole, an original work of authorship. For the purposes
50 | of this License, Derivative Works shall not include works that remain
51 | separable from, or merely link (or bind by name) to the interfaces of,
52 | the Work and Derivative Works thereof.
53 |
54 | "Contribution" shall mean any work of authorship, including
55 | the original version of the Work and any modifications or additions
56 | to that Work or Derivative Works thereof, that is intentionally
57 | submitted to Licensor for inclusion in the Work by the copyright owner
58 | or by an individual or Legal Entity authorized to submit on behalf of
59 | the copyright owner. For the purposes of this definition, "submitted"
60 | means any form of electronic, verbal, or written communication sent
61 | to the Licensor or its representatives, including but not limited to
62 | communication on electronic mailing lists, source code control systems,
63 | and issue tracking systems that are managed by, or on behalf of, the
64 | Licensor for the purpose of discussing and improving the Work, but
65 | excluding communication that is conspicuously marked or otherwise
66 | designated in writing by the copyright owner as "Not a Contribution."
67 |
68 | "Contributor" shall mean Licensor and any individual or Legal Entity
69 | on behalf of whom a Contribution has been received by Licensor and
70 | subsequently incorporated within the Work.
71 |
72 | 2. Grant of Copyright License. Subject to the terms and conditions of
73 | this License, each Contributor hereby grants to You a perpetual,
74 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
75 | copyright license to reproduce, prepare Derivative Works of,
76 | publicly display, publicly perform, sublicense, and distribute the
77 | Work and such Derivative Works in Source or Object form.
78 |
79 | 3. Grant of Patent License. Subject to the terms and conditions of
80 | this License, each Contributor hereby grants to You a perpetual,
81 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
82 | (except as stated in this section) patent license to make, have made,
83 | use, offer to sell, sell, import, and otherwise transfer the Work,
84 | where such license applies only to those patent claims licensable
85 | by such Contributor that are necessarily infringed by their
86 | Contribution(s) alone or by combination of their Contribution(s)
87 | with the Work to which such Contribution(s) was submitted. If You
88 | institute patent litigation against any entity (including a
89 | cross-claim or counterclaim in a lawsuit) alleging that the Work
90 | or a Contribution incorporated within the Work constitutes direct
91 | or contributory patent infringement, then any patent licenses
92 | granted to You under this License for that Work shall terminate
93 | as of the date such litigation is filed.
94 |
95 | 4. Redistribution. You may reproduce and distribute copies of the
96 | Work or Derivative Works thereof in any medium, with or without
97 | modifications, and in Source or Object form, provided that You
98 | meet the following conditions:
99 |
100 | (a) You must give any other recipients of the Work or
101 | Derivative Works a copy of this License; and
102 |
103 | (b) You must cause any modified files to carry prominent notices
104 | stating that You changed the files; and
105 |
106 | (c) You must retain, in the Source form of any Derivative Works
107 | that You distribute, all copyright, patent, trademark, and
108 | attribution notices from the Source form of the Work,
109 | excluding those notices that do not pertain to any part of
110 | the Derivative Works; and
111 |
112 | (d) If the Work includes a "NOTICE" text file as part of its
113 | distribution, then any Derivative Works that You distribute must
114 | include a readable copy of the attribution notices contained
115 | within such NOTICE file, excluding those notices that do not
116 | pertain to any part of the Derivative Works, in at least one
117 | of the following places: within a NOTICE text file distributed
118 | as part of the Derivative Works; within the Source form or
119 | documentation, if provided along with the Derivative Works; or,
120 | within a display generated by the Derivative Works, if and
121 | wherever such third-party notices normally appear. The contents
122 | of the NOTICE file are for informational purposes only and
123 | do not modify the License. You may add Your own attribution
124 | notices within Derivative Works that You distribute, alongside
125 | or as an addendum to the NOTICE text from the Work, provided
126 | that such additional attribution notices cannot be construed
127 | as modifying the License.
128 |
129 | You may add Your own copyright statement to Your modifications and
130 | may provide additional or different license terms and conditions
131 | for use, reproduction, or distribution of Your modifications, or
132 | for any such Derivative Works as a whole, provided Your use,
133 | reproduction, and distribution of the Work otherwise complies with
134 | the conditions stated in this License.
135 |
136 | 5. Submission of Contributions. Unless You explicitly state otherwise,
137 | any Contribution intentionally submitted for inclusion in the Work
138 | by You to the Licensor shall be under the terms and conditions of
139 | this License, without any additional terms or conditions.
140 | Notwithstanding the above, nothing herein shall supersede or modify
141 | the terms of any separate license agreement you may have executed
142 | with Licensor regarding such Contributions.
143 |
144 | 6. Trademarks. This License does not grant permission to use the trade
145 | names, trademarks, service marks, or product names of the Licensor,
146 | except as required for reasonable and customary use in describing the
147 | origin of the Work and reproducing the content of the NOTICE file.
148 |
149 | 7. Disclaimer of Warranty. Unless required by applicable law or
150 | agreed to in writing, Licensor provides the Work (and each
151 | Contributor provides its Contributions) on an "AS IS" BASIS,
152 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
153 | implied, including, without limitation, any warranties or conditions
154 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
155 | PARTICULAR PURPOSE. You are solely responsible for determining the
156 | appropriateness of using or redistributing the Work and assume any
157 | risks associated with Your exercise of permissions under this License.
158 |
159 | 8. Limitation of Liability. In no event and under no legal theory,
160 | whether in tort (including negligence), contract, or otherwise,
161 | unless required by applicable law (such as deliberate and grossly
162 | negligent acts) or agreed to in writing, shall any Contributor be
163 | liable to You for damages, including any direct, indirect, special,
164 | incidental, or consequential damages of any character arising as a
165 | result of this License or out of the use or inability to use the
166 | Work (including but not limited to damages for loss of goodwill,
167 | work stoppage, computer failure or malfunction, or any and all
168 | other commercial damages or losses), even if such Contributor
169 | has been advised of the possibility of such damages.
170 |
171 | 9. Accepting Warranty or Additional Liability. While redistributing
172 | the Work or Derivative Works thereof, You may choose to offer,
173 | and charge a fee for, acceptance of support, warranty, indemnity,
174 | or other liability obligations and/or rights consistent with this
175 | License. However, in accepting such obligations, You may act only
176 | on Your own behalf and on Your sole responsibility, not on behalf
177 | of any other Contributor, and only if You agree to indemnify,
178 | defend, and hold each Contributor harmless for any liability
179 | incurred by, or claims asserted against, such Contributor by reason
180 | of your accepting any such warranty or additional liability.
181 |
182 | END OF TERMS AND CONDITIONS
183 |
184 | APPENDIX: How to apply the Apache License to your work.
185 |
186 | To apply the Apache License to your work, attach the following
187 | boilerplate notice, with the fields enclosed by brackets "{}"
188 | replaced with your own identifying information. (Don't include
189 | the brackets!) The text should be enclosed in the appropriate
190 | comment syntax for the file format. We also recommend that a
191 | file or class name and description of purpose be included on the
192 | same "printed page" as the copyright notice for easier
193 | identification within third-party archives.
194 |
195 | Copyright {yyyy} {name of copyright owner}
196 |
197 | Licensed under the Apache License, Version 2.0 (the "License");
198 | you may not use this file except in compliance with the License.
199 | You may obtain a copy of the License at
200 |
201 | https://www.apache.org/licenses/LICENSE-2.0
202 |
203 | Unless required by applicable law or agreed to in writing, software
204 | distributed under the License is distributed on an "AS IS" BASIS,
205 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
206 | See the License for the specific language governing permissions and
207 | limitations under the License.
208 |
--------------------------------------------------------------------------------
/README-es.md:
--------------------------------------------------------------------------------
1 | ### [इसे हिंदी में पढ़ें](https://github.com/mozillascience/studyGroup/blob/gh-pages/README-hi.md)
2 |
3 | ### [Leia isto em Português](https://github.com/mozillascience/studyGroup/blob/gh-pages/README-pt.md)
4 |
5 | ### [中文版请点这里](https://github.com/mozillascience/studyGroup/blob/gh-pages/README-zh.md)
6 |
7 | ### [Read in english](https://github.com/mozillascience/studyGroup/blob/gh-pages/README.md)
8 |
9 | # Grupos de estudio de Mozilla
10 |
11 | ¡Bienvenidos al proyecto Grupo de Estudio de [Mozilla Science Lab](https://www.mozillascience.org/)! Aquí te proporcionamos las herramientas que necesitas para crear tu propio grupo de estudio.
12 |
13 | ### Espera, pero ¿Qué es un 'Grupo de Estudio de Mozilla'?
14 |
15 | Los Grupos de estudio de Mozilla son encuentros divertidos e informales entre amigos y colegas de tu institución local o ciudad donde se comparten habilidades, historia e ideas sobre cómo utilizar el código para la investigación. El objetivo de estos grupos es crear un entorno acogedor y sin presión donde los participantes pueden compartir su trabajo, pedir ayuda con un problema de código, y aprender a colaborar con otros. **Cualquier persona puede iniciar un Grupo de Estudio-- ¡No tienes que ser un experto en código para hacerlo!**
16 |
17 | ¿Cómo son los Study Groups en la vida real? Echa un vistazo al sitio del [Grupo de Estudio de Boston University](http://study.bu.edu/), y el sitio [University of Toronto Coders](https://uoftcoders.github.io/studyGroup/). También puede ver algunos [vídeos de Grupo de Estudio de Líderes en nuestra guía de orientación](https://mozillascience.github.io/study-group-orientation/1-about-study-groups.html). Todos en inglés.
18 |
19 | ## Para nuevos organizadores
20 | * **Únete a nuestro chat en Gitter:** Hay Grupos de Estudio en todo el mundo. Utilizamos un chat en linea en [Chat de Gitter](https://gitter.im/mozillascience/studyGroup) para conectarnos y compartir recursos e ideas (puedes iniciar sesión con Github, o usar un ID de Twitter sino está configurado en Github todavía). Si deseas saludar, por favor preséntate en el chat, dinos de donde estas, y que estas pensando o planificando para su nuevo Grupo de Estudio. Estamos esperando para conocerte.
21 | * **Ve la Guía de Orientación del Grupo de Estudio:** Si crees que tal vez desees iniciar su propio grupo, [La Guía de Orientación de Grupo de Estudio](https://mozillascience.github.io/study-group-orientation/index.html) Cubre la realización de reuniones de grupo, la configuración super fácil de tu sitio web del Grupo de Estudio, colaboración en línea con GitHub, una introducción a la práctica de investigación abierta, y mucho más. Echa un vistazo a la [Sección Sobre Aquí](https://mozillascience.github.io/study-group-orientation/1-about-study-groups.html) y la sección sobre [Papel de un Líder de Grupo de Estudio](https://mozillascience.github.io/study-group-orientation/1.1-lead-role.html)-- Estos le ayudarán a averiguar si desea iniciar un grupo.
22 | * **Ven a una reunión de orientación en línea:** Estaremos llevando a cabo una Orientación en línea - una serie de 4 reuniones, -- para nuevos líderes de grupo a partir del próximo mes (!Noviembre de 2016!) y también en Enero de 2017. Es una gran oportunidad para conocer, conectar y compartir ideas con otros grupos. Si estás interesado en unirse a nosotros, [Háganoslo saber rellenando este formulario.](https://docs.google.com/a/mozillafoundation.org/forms/d/e/1FAIpQLSdtKqAMQnKri-0xLx4hD_fpb000n9czsQd4oo9B2JUgtuIVlg/viewform?c=0&w=1)
23 | * **Lee el código de conducta::** Este Programa de Grupo de Estudio es para todos - cumplimos con un [conjunto de reglas](https://www.mozillascience.org/code-of-conduct/) que requieren que todos sean tratados con respeto. ¡Ayúdanos a crear un espacio donde todos se sientan bienvenidos, y todos pasemos un rato increíble!
24 | * **Mira este repo:** arriba en la parte superior derecha, hay un botón que dice 'Watch'; da click, y cambialo tú mismo a 'Watching'. Esto le enviará notificaciones por correo electrónico de nuevas discusiones; si no quieres emails, pero quieres una alerta sólo en GitHub, cambia la configuración en Settings -> Notification Center (Configuraciones forma parte de las opciones de su perfil en la parte superior derecha).
25 |
26 | ## Cómo configurar su propio sitio web de Grupo de Estudio de Mozilla
27 |
28 | Todo lo que necesitas para configurar un bellisimo sitio web de Grupo de Estudio de Mozilla(¡que se parece a esto!) para organizar eventos es [aquí mismo en la Guía de Orientación.](https://mozillascience.github.io/study-group-orientation/3.3-get-online.html) Si eres nuevo en GitHub, no te preocupes, [hay una introducción de el aquí](https://mozillascience.github.io/study-group-orientation/3.1-collab-vers-github.html). Echa un vistazo, y si necesitas ayuda, puedes hacer una pregunta en el [chat de Gitter](https://gitter.im/mozillascience/studyGroup) o email sciencelab@mozillafoundation.org.
29 |
30 | ## Cómo configurar el sitio Web del Grupo de Estudio de Mozilla localmente
31 |
32 | * Fork al repositorio [Grupo de Estudio de Mozilla.](https://github.com/mozillascience/studyGroup)
33 | * Abrir una terminal (en una Mac) o el equivalente en tu computadora personal y digita:
34 | 1. git clone [SSH OR HTTPS CODE FOR studyGroup]
35 | 2. cd studyGroup/
36 | 3. jekyll build
37 | 4. jekyll serve
38 | * Muestra "Server address". Ábrelo en el navegador. Si, Grupo de Estudio de Mozilla está configurado localmente!!
39 |
40 | ### ¡No funciona, necesito ayuda!!!
41 |
42 | Si algo en estas instrucciones no funciona o no tiene sentido, haga una pregunta en el [chat de Gitter](https://gitter.im/mozillascience/studyGroup), abre un issue [aquí](https://github.com/mozillascience/studyGroup/issues) o email sciencelab@mozillafoundation.org.
--------------------------------------------------------------------------------
/README-hi.md:
--------------------------------------------------------------------------------
1 | ### [Leia isto em Português](https://github.com/mozillascience/studyGroup/blob/gh-pages/README-pt.md)
2 |
3 | ### [Read in english](https://github.com/mozillascience/studyGroup/blob/gh-pages/README.md)
4 |
5 | ### [中文版请点这里](https://github.com/mozillascience/studyGroup/blob/gh-pages/README-zh.md)
6 |
7 | ### [Lee esto en Español](https://github.com/mozillascience/studyGroup/blob/gh-pages/README-es.md)
8 |
9 | # मोज़िला अध्ययन समूह
10 |
11 | [मोज़िला साइंस लैब](https://www.mozillascience.org/) के अध्ययन समूह परियोजना में आपका स्वागत है! यहां से, हम आपको अपने स्वयं के अध्ययन समूह को शुरू करने के लिए जिस चीज की ज़रूरत है उसके साथ हम आपको तैयार करेंगे।
12 |
13 | ### रुको, 'मोज़िला अध्ययन समूह' क्या है?
14 |
15 | मोज़िला स्टडी ग्रुप अनुसंधान के लिए कोड का उपयोग करने के बारे में कौशल, कहानियां और विचार साझा करने के लिए अपने स्थानीय संस्थान या शहर के आस-पास के अपने दोस्तों और सहयोगियों के मज़ेदार, अनौपचारिक मुलाक़ात हैं और खुले अनुसंधान प्रथाओं का अन्वेषण करते हैं। इसका लक्ष्य एक मैत्रीपूर्ण, नो-प्रेशर पर्यावरण बनाना है, जहां लोग अपना काम साझा कर सकते हैं, कोडिंग की समस्या पर सहायता मांग सकते हैं और अपने साथियों के साथ मिलकर काम कर सकते हैं। ** कोई भी अध्ययन समूह शुरू कर सकता है - ऐसा करने के लिए आपको एक विशेषज्ञ सांकेतिक शब्दों में बदलने की ज़रूरत नहीं है! **
16 |
17 | अध्ययन समूह वास्तविक जीवन में कैसा दिखता है? [बोस्टन विश्वविद्यालय अध्ययन समूह की वेबसाइट](http://study.bu.edu/), और [टोरंटो कोडर्स वेबसाइट के विश्वविद्यालय](https://uoftcoders.github.io/studyGroup/) देखें। आप कुछ संक्षिप्त अध्ययन समूह की ओर से वीडियो देख सकते हैं [हमारी ओरिएंटेशन गाइड में लीड्स](https://mozillascience.github.io/study-group-orientation/1-about-study-groups.html)।
18 |
19 |
20 | ## नए आयोजकों के लिए
21 | * **हमारे जिटर चैट में शामिल हों:** पूरे विश्व में अध्ययन समूह हैं। हम संसाधनों और विचारों को जोड़ने और साझा करने के लिए एक ऑनलाइन [गिटार चैट](https://gitter.im/mozillascience/studyGroup) का उपयोग करते हैं (यदि आप GitHub पर सेट नहीं हैं, तो आप GitHub के साथ प्रवेश कर सकते हैं, या ट्विटर आईडी का उपयोग कर सकते हैं बस अभी तक)। अगर आप नमस्ते कहना चाहते हैं, तो कृपया अपने आप को चैट में शामिल करें, हमें बताएं कि आप कहां हैं, और आप अपने नए अध्ययन समूह के बारे में क्या सोच रहे हैं या योजना बना रहे हैं हम आपको मिलाने के लिए उत्सुक हैं
22 | * **अध्ययन समूह की ओरिएंटेशन गाइड देखें:** अगर आपको लगता है कि आप अपना स्वयं का समूह शुरू कर सकते हैं, [स्टडी ग्रुप ओरिएन्टेशन गाइड](https://mozillascience.github.io/study-group-orientation/index.html) समूह की बैठकों को चलाने, आपकी स्टडी ग्रुप की वेबसाइट का सुपर आसान सेटअप, गिटहब का उपयोग करके ऑनलाइन सहयोग कर रहा है, अनुसंधान अभ्यास को खोलने के लिए एक परिचय, और अधिक। [यहां अनुभाग के बारे में](https://mozillascience.github.io/study-group-orientation/1-about-study-groups.html) पर एक नज़र डालें और [स्टडी ग्रुप लीड रोल](https://mozillascience.github.io/study-group-orientation/1.1-lead-role.html) पर अनुभाग - इन्हें आपको यह पता लगाने में सहायता करनी चाहिए कि क्या आप समूह शुरू करना चाहते हैं।
23 | * **एक ऑनलाइन ओरिएंटेशन मीटिंग में आओ:** हम एक ऑनलाइन ओरिएंटेशन चल रहे होंगे - 4 मीटिंग्स की एक श्रृंखला, - अगले महीने (नवंबर 2016!) और 2017 के जनवरी में नए समूह की बिक्री के लिए लीड्स। दूसरे समूह के साथ मिलकर, नेटवर्क, और विचार साझा करने का एक बड़ा अवसर। यदि आप हमसे जुड़ने में रुचि रखते हैं, [हमें यह फ़ॉर्म भरकर बताएँ।](https://docs.google.com/forms/d/e/1FAIpQLSdtKqAMQnKri-0xLx4hD_fpb000n9czsQd4oo9B2JUgtuIVlg/viewform?c=0&w=1)
24 | * **आचार संहिता पढ़ें:** यह अध्ययन समूह कार्यक्रम सभी के लिए है - हम [नियमों के सेट](https://www.mozillascience.org/code-of-conduct/) का पालन करते हैं| जो सभी को आवश्यकता होती है सम्मान के साथ इलाज किया हमें ऐसा स्थान बनाने में मदद करें जहां हर कोई स्वागत करता है, और हम सभी को बेहतर समय मिलेगा!
25 | * **इस रेपो को देखें:** शीर्ष दाईं ओर, एक बटन है जो 'वॉच' कहता है; इसे क्लिक करें, और खुद को 'देखना' पर सेट करें इससे आपको नई चर्चाओं की ईमेल सूचनाएं भेजी जाएंगी; अगर आप ईमेल नहीं चाहते हैं, लेकिन केवल GitHub पर एक चेतावनी चाहें, तो सेटिंग्स सेटिंग अधिसूचना केंद्र में सेटिंग्स को बदलें (सेटिंग्स शीर्ष दाहिनी ओर छोटी सी कॉग है)
26 |
27 | ## अपनी खुद की मोज़िला अध्ययन समूह वेबसाइट कैसे सेट करें
28 |
29 | घटनाओं के आयोजन के लिए अपनी खुद की सुंदर मोज़िला अध्ययन समूह की वेबसाइट (यह इस तरह दिखती है!) को स्थापित करने की आवश्यकता है [ठीक यहां ओरिएंटेशन गाइड में है।](https://mozillascience.github.io/study-group-orientation/3.3-get-online.html) यदि आप गिटहब के लिए नए हैं, चिंता न करें, [यहां इसकी एक परिचय है](https://mozillascience.github.io/study-group-orientation/3.1-collab-vers-github.html) एक नज़र डालें, और अगर आपको किसी भी मदद की आवश्यकता है, तो आप [गिटार चैट](https://gitter.im/mozillascience/studyGroup) में एक प्रश्न पूछ सकते हैं या ईमेल sciencelab@mozillafoundation.org।
30 |
31 | ## मोज़िला अध्ययन समूह की वेबसाइट स्थानीय रूप से कैसे स्थापित करें
32 |
33 | * फोक रिपॉजिटरी [मोज़िला अध्ययन समूह](https://github.com/mozillascience/studyGroup)
34 | * ओपन टर्मिनल (मैक पर) या आपके मशीन के बराबर और प्रकार:
35 | 1. git clone [SSH OR HTTPS CODE FOR studyGroup]
36 | 2. cd studyGroup/
37 | 3. jekyll build
38 | 4. jekyll serve
39 | * यह "सर्वर पता" दिखाता है| ब्राउज़र में इसे खोलें| हाँ, मोज़िला अध्ययन समूह स्थानीय रूप से सेट है !!
40 |
41 | ### यह टूटी हुई है, मुझे सहायता चाहिए !!!
42 |
43 | यदि इन निर्देशों में कुछ भी काम नहीं करता है या समझ नहीं पा रहा है, तो [गिटार चैट](https://gitter.im/mozillascience/studyGroup) में एक प्रश्न पूछें, एक मुद्दा खोलें [यहां](https://Github.com/mozillascience/studyGroup/issues) या ईमेल sciencelab@mozillafoundation.org।
44 |
--------------------------------------------------------------------------------
/README-pt.md:
--------------------------------------------------------------------------------
1 | ### [इसे हिंदी में पढ़ें](https://github.com/mozillascience/studyGroup/blob/gh-pages/README-hi.md)
2 |
3 | ### [Read in english](https://github.com/mozillascience/studyGroup/blob/gh-pages/README.md)
4 |
5 | ### [中文版请点这里](https://github.com/mozillascience/studyGroup/blob/gh-pages/README-zh.md)
6 |
7 | ### [Lee esto en Español](https://github.com/mozillascience/studyGroup/blob/gh-pages/README-es.md)
8 |
9 | # Grupo de Estudo Mozilla
10 |
11 | Bem vindo ao projeto Grupo de Estudos do [Mozilla Science Lab](https://www.mozillascience.org/)! A partir daqui, iremos disponibilizar tudo que você precisa para começar o seu próprio grupo de estudo.
12 |
13 | ### Espera ai, mas o que é um 'Grupo de Estudo Mozilla'?
14 |
15 | Grupos de estudo Mozilla são encontros informais e divertidos com seus amigos e colegas em instituições locais e cidades para compartilhar habilidades, histórias, e ideias sobre o uso de programação em pesquisa. O objetivo é criar um ambiente amigável e sem pressão onde as pessoas possam compartilhar seus trabalhos, pedir ajuda para resolver problemas de programação, e aprender a trabalhar junto com seus parceiros. **Qualquer pessoa pode começar um Grupo de Estudos -- você não precisa ser um programador experiente para isso!**
16 |
17 | Na vida real, com o que um Grupo de Estudos se parece? Dê uma olhada no site do [Grupo de Estudos da Boston University](http://study.bu.edu/), e na página [University of Toronto Coders](https://uoftcoders.github.io/studyGroup/). Você também pode assistir alguns [vídeos do Grupo de Estudo de Líderes em nosso Guia de Orientação](https://mozillascience.github.io/study-group-orientation/1-about-study-groups.html). Todos em inglês.
18 |
19 | ## Para Novos Organizadores
20 | * **Entre no nosso chat no Gitter:** Existem Grupos de Estudos ao redor de todo o mundo. Nós usamos um bate-papo online no [Gitter Chat](https://gitter.im/mozillascience/studyGroup) Para conectar e compartilhar recursos e ideias (você pode entrar usando sua conta do GitHub, ou do Twitter se você não criou sua conta no GitHub ainda). Se quiser dizer um olá, por favor, se apresente no chat, nos diga de onde você é, e sobre o que você está pensando ou planejando para o seu novo Grupo de Estudos. Estaremos lá esperando para te conhecer.
21 | * **Confira o Guia de Orientação do Grupo de Estudos:** Se você acha que pode querer iniciar seu próprio Grupo de Estudos, [o Guia de Orientação de Grupos de Estudos](https://mozillascience.github.io/study-group-orientation/index.html) explica como realizar encontros do Grupo, a configuração super fácil do site de seu Grupo de Estudos, sobre colaboração online usando GitHub, uma introdução à prática de pesquisa aberta (open research), e mais. Dê uma olhada na [seção Sobre aqui](https://mozillascience.github.io/study-group-orientation/1-about-study-groups.html) e a seção sobre [o Papel do Líder do Grupo de Estudos](https://mozillascience.github.io/study-group-orientation/1.1-lead-role.html) -- isso pode lhe ajudar a entender o mínimo necessário para começar um Grupo.
22 | * **Venha a uma Reunião Online de Orientação:** Estaremos realizando uma Orientação Online -- uma série de quatro reuniões, -- para novos Líderes de Grupos que começará no mês de novembro de 2016 e outro em janeiro de 2017. É uma excelente oportunidade para se encontrar, fazer network, e compartilhar ideias com outros Grupos. Se tiver interesse em se juntar a nós, [nos informe preenchendo esse formulário online.](https://docs.google.com/a/mozillafoundation.org/forms/d/e/1FAIpQLSdtKqAMQnKri-0xLx4hD_fpb000n9czsQd4oo9B2JUgtuIVlg/viewform?c=0&w=1)
23 | * **Leia o código de conduta:** este Programa de Grupos de Estudos é para todos - nós elaboramos um [conjunto de regras](https://www.mozillascience.org/code-of-conduct/) que requer que todos sejam tratados com respeito. Ajude-nos a criar um espaço onde todos se sintam bem-vindos, e todos teremos um momento especial!
24 | * **Acompanhe este repositório:** Lá em cima, no topo à direita, existe um botão que diz 'Watch'; clique nele, e mude para 'Watching'. Isto irá lhe enviar e-mails notificando sobre novas discussões; se você não quiser e-mails, mas apenas ser notificado no GitHub, mude as configurações em Settings -> Notification Center (Configurações faz parte das opções a partir do seu perfil no topo à direita).
25 |
26 | ## Como criar o site do seu próprio Grupo de Estudo Mozilla?
27 |
28 | Tudo que você precisa para configurar o belíssimo site do seu Grupo de Estudos Mozilla (ele se parece com este aqui) para organizar eventos temos um [Guia de Orientação bem aqui.](https://mozillascience.github.io/study-group-orientation/3.3-get-online.html) Se você é novo no GitHub, não se preocupe, [temos um guia de introdução bem aqui também](https://mozillascience.github.io/study-group-orientation/3.1-collab-vers-github.html). Dê uma olhada e caso precise de ajuda, você pode nos perguntar no [chat do Gitter](https://gitter.im/mozillascience/studyGroup) ou mande um email para sciencelab@mozillafoundation.org.
29 |
30 | ## Como criar o site do seu próprio Grupo de Estudo Mozilla localmente
31 |
32 | * Fork o repositório [Grupo de Estudos Mozilla.](https://github.com/mozillascience/studyGroup)
33 | * Abra o Terminal (em um Mac) ou o equivalente no sistema operacional de seu computador e digite:
34 | 1. git clone [CÓDIGO SSH OU HTTPS PARA studyGroup]
35 | 2. cd studyGroup/
36 | 3. jekyll build
37 | 4. jekyll serve
38 | * Isso irá lhe mostrar um "Server address" (endereço de servidor). Digite esse endereço no navegador de internet. Yes, o Grupo de Estudos Mozilla está configurado localmente!!
39 |
40 | ### Algo não está funcionando, preciso de ajuda!!!
41 |
42 | Se quaisquer coisas nessas instruções não funcionar ou não faz sentido, pergunte lá no [chat do Gitter](https://gitter.im/mozillascience/studyGroup), abra uma `issue` [aqui](https://github.com/mozillascience/studyGroup/issues) ou escreva um e-mail para sciencelab@mozillafoundation.org.
43 |
--------------------------------------------------------------------------------
/README-zh.md:
--------------------------------------------------------------------------------
1 | ### [इसे हिंदी में पढ़ें](https://github.com/mozillascience/studyGroup/blob/gh-pages/README-hi.md)
2 |
3 | ### [Leia isto em Português](https://github.com/mozillascience/studyGroup/blob/gh-pages/README-pt.md)
4 |
5 | ### [Read in English](https://github.com/mozillascience/studyGroup/blob/gh-pages/README.md)
6 |
7 | ### [Lee esto en Español](https://github.com/mozillascience/studyGroup/blob/gh-pages/README-es.md)
8 |
9 | # Mozilla 学习小组
10 |
11 | 欢迎使用 [Mozilla Science Lab](https://www.mozillascience.org/) 旗下的 “Mozilla 学习小组”! 下面, 我们将为您介绍如何开始您的Mozilla学习小组之旅。
12 |
13 | ### 等等,什么是 Mozilla 学习小组?
14 |
15 | Mozilla 学习小组是个有趣的社区和工具,人们可以通过这个和当地的朋友或同事(组织/城市)分享技术、故事的地方,共同探讨如何使用代码进行科研,并探索开放科研项目。我们想要建造一个有趣、轻松、人们可以自由分享、互相帮助、共同工作的环境。 :) **这是个任何人都可以开始一个学习小组 -- 不需要熟练的编程技术哦!**
16 |
17 | 学习小组在现实中的应用? 请看:[波士顿大学学习小组网站]
18 | [波士顿大学学习小组网站](http://study.bu.edu/), 和 [多伦多大学程序员学习网站](https://uoftcoders.github.io/studyGroup/). 您还可以在我们的使用指南中观看["学习小组负责人"的几个短片。](https://mozillascience.github.io/study-group-orientation/1-about-study-groups.html).
19 |
20 |
21 | ## 对于新的组织者:
22 | * **加入 Gitter Chat:** 对于世界各地的学习小组,我们使用在线聊天工具[Gitter Chat](https://gitter.im/mozillascience/studyGroup) 分享资源和想法。(可以使用 GitHub 或 Twitter 账号登陆). 我们非常期待您来我们的频道介绍自己,交流自己的想法和计划。
23 | * **查看学习小组的使用指南:** 如果你想要创建自己的小组了, [学习小组使用指南](https://mozillascience.github.io/study-group-orientation/index.html) 介绍了如何运行小组会议、如何快速初始化学习小组网站、如何和GitHub联动、还有如何开始研究实践,等等。请查看 [关于我们](https://mozillascience.github.io/study-group-orientation/1-about-study-groups.html) 和 [学习小组负责人](https://mozillascience.github.io/study-group-orientation/1.1-lead-role.html)-- 这些资源会帮助你成立自己想要的学习小组。
24 | * **欢迎参加在线教程:** 为了那些2016年十一月和2017年一月的新小组,我们即将推出一个在线教程(包括四个系列),这将是个非常好的机会让我们互相认识、分享想法。 [请有意者填写这个表格.](https://docs.google.com/a/mozillafoundation.org/forms/d/e/1FAIpQLSdtKqAMQnKri-0xLx4hD_fpb000n9czsQd4oo9B2JUgtuIVlg/viewform?c=0&w=1)
25 | * **阅读行为准则:** 作为大家的学习小组,需要我们每个人尊重和遵守[行为准则](https://www.mozillascience.org/code-of-conduct/) 。请帮助我们维护这个友好友善的环境!!!谢谢!!!
26 | * **"Watch"这个资源库:** 在这个页面右上角,您可以看到有个“Watch”按钮。 一旦点击后,您就开始"Watching"这个资源库了。之后我们会通过邮件向您推送组里的讨论,此外如果您并不想收到邮件而只是想在GitHub看到提醒,请在设置页面->通知中心里面设置。
27 |
28 | ## 如何设置您的学习小组网站
29 |
30 | 如果您想要建立您自己美丽的Mozilla学习小组网站并组织活动,[可以在这个使用指南.](https://mozillascience.github.io/study-group-orientation/3.3-get-online.html) 中看到。如果您刚刚开始使用GitHub, 别着急 :), [介绍在这儿!](https://mozillascience.github.io/study-group-orientation/3.1-collab-vers-github.html). 如果您还有什么其他问题,请在这里提问:[Gitter chat](https://gitter.im/mozillascience/studyGroup) 或者写邮件: sciencelab@mozillafoundation.org.
31 |
32 | ## 如何在本地环境设置您的学习小组项目
33 |
34 | * "Fork" 这个资源库(Repository) [Mozilla 学习小组](https://github.com/mozillascience/studyGroup)
35 | * 打开您本机的终端(Terminal):
36 | 1. git clone [您的学习小组资源库的SSH 或者 HTTPS 代码]
37 | 2. cd studyGroup/
38 | 3. jekyll build
39 | 4. jekyll serve
40 | * 终端显示 "Server address". 然后打开浏览器,您的本地Mozilla学习小组便设置完成了
41 |
42 | ### 有任何问题?需要帮助?!
43 |
44 | 如果有什么意外或者其他疑问,欢迎在这里提问: [Gitter chat](https://gitter.im/mozillascience/studyGroup), open an issue [here](https://github.com/mozillascience/studyGroup/issues) 或者写邮件: sciencelab@mozillafoundation.org.
45 |
46 |
47 |
48 |
49 |
50 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # UPDATE November 2019
2 |
3 | The Mozilla Science Lab was sunsetted in September of 2018. While we had hoped to find a partnership with another organization to take the Study Group work forward, it did not take place. Please feel free to use the materials hosted here to build your own Study Groups, though keep in mind that Mozilla is no longer actively supporting this program.
4 |
5 | Our heartfelt :sparkling_heart: and appreciation to all the Study Group Leads and participants who made this program the success that it was.
6 |
7 | Much of the work done by the Science Lab has moved on in some way under the Open Leadership & Events Team. If you're interested in that work, you can see how that work is being continued on [their website](https://foundation.mozilla.org/en/initiatives/open-leadership-events/).
8 |
9 | ---
10 |
11 | ### [इसे हिंदी में पढ़ें](https://github.com/mozillascience/studyGroup/blob/gh-pages/README-hi.md)
12 |
13 | ### [Leia isto em Português](https://github.com/mozillascience/studyGroup/blob/gh-pages/README-pt.md)
14 |
15 | ### [中文版请点这里](https://github.com/mozillascience/studyGroup/blob/gh-pages/README-zh.md)
16 |
17 | ### [Lee esto en Español](https://github.com/mozillascience/studyGroup/blob/gh-pages/README-es.md)
18 |
19 | # Mozilla Study Groups
20 |
21 | Welcome to [Mozilla Science Lab](https://www.mozillascience.org/)'s Study Group project! From here, we'll set you up with everything you need to start your own study group.
22 |
23 | ### Wait, What's a 'Mozilla Study Group'?
24 |
25 | Mozilla Study Groups are fun, informal meetups of your friends and colleagues from around your local institution or town to share skills, stories and ideas on using code for research, and explore open research practices. The goal is to create a friendly, no-pressure environment where people can share their work, ask for help on a coding problem, and learn and work together with their peers. **Anyone can start a Study Group-- you don't have to be an expert coder to do so!**
26 |
27 | What do Study Groups look like in Real Life? Check out the [Boston University Study Group's website](http://study.bu.edu/), and the [University of Toronto Coders website](https://uoftcoders.github.io/studyGroup/). You can also watch a few short [videos from Study Group Leads in our Orientation Guide](https://mozillascience.github.io/study-group-orientation/1-about-study-groups.html).
28 |
29 |
30 | ## For New Organizers
31 | * **Join our Gitter Chat:** There are Study Groups all around the world. We use an online [Gitter Chat](https://gitter.im/mozillascience/studyGroup) to connect and share resources and ideas (you can sign in with GitHub, or using a Twitter ID if you're not set up on GitHub just yet). If you'd like to say hello, please introduce yourself in the chat, tell us where you are, and what you're thinking about or planning for your new Study Group. We're looking forward to meeting you.
32 | * **Check out the Study Group Orientation Guide:** If you think you might want to start your own group, [The Study Group Orientation Guide](https://mozillascience.github.io/study-group-orientation/index.html) covers running Group meetings, the super easy setup of your Study Group website, collaborating online using GitHub, an introduction to open research practice, and more. Take a look at the [About section here](https://mozillascience.github.io/study-group-orientation/1-about-study-groups.html) and the section on the [Study Group Lead role](https://mozillascience.github.io/study-group-orientation/1.1-lead-role.html)-- these should help you figure out if you'd like to start a Group.
33 | * **Come to an Online Orientation Meeting:** We’ll be running an online Orientation-- a series of 4 meetings, -- for new Group Leads starting next month (November 2016!) and also in January of 2017. It’s a great opportunity to meet, network, and share ideas with other Groups. If you’re interested in joining us, [let us know by filling out this form.](https://docs.google.com/a/mozillafoundation.org/forms/d/e/1FAIpQLSdtKqAMQnKri-0xLx4hD_fpb000n9czsQd4oo9B2JUgtuIVlg/viewform?c=0&w=1)
34 | * **Read the code of conduct:** this Study Group Program is for everyone - we abide by a [set of rules](https://www.mozillascience.org/code-of-conduct/) that require everyone be treated with respect. Help us make a space where everyone feels welcome, and we'll all have a better time!
35 | * **Watch this repo:** up in the top right, there's a button that says 'Watch'; click it, and set yourself to 'Watching'. This will send you email notifications of new discussions; if you don't want email, but would like an alert just on GitHub, change the setting in Settings -> Notification Center (Settings is the little cog in the top right).
36 |
37 | ## How to Set Up Your Own Mozilla Study Group Website
38 |
39 | Everything you need to set up your own beautiful Mozilla Study Group website (it looks like this!) for organizing events is [right here in the Orientation Guide.](https://mozillascience.github.io/study-group-orientation/3.3-get-online.html) If you are new to GitHub, don't worry, [there's an introduction to it here](https://mozillascience.github.io/study-group-orientation/3.1-collab-vers-github.html). Take a look, and if you need any help, you can ask a question in the [Gitter chat](https://gitter.im/mozillascience/studyGroup) or email sciencelab@mozillafoundation.org.
40 |
41 | ## How to Set Up Mozilla Study Group Website locally
42 |
43 | * Fork the Repository [Mozilla Study Group.](https://github.com/mozillascience/studyGroup)
44 | * Open Terminal (on a Mac) or the equivalent on your machine and type:
45 | 1. git clone [SSH OR HTTPS CODE FOR studyGroup]
46 | 2. cd studyGroup/
47 | 3. jekyll build
48 | 4. jekyll serve
49 | * It shows "Server address". Open it in browser. Yes, Mozilla Study Group is set locally!!
50 |
51 | ### It's Broken, I Need Help!!!
52 |
53 | If anything in these instructions doesn't work or doesn't make sense, ask a question in the [Gitter chat](https://gitter.im/mozillascience/studyGroup), open an issue [here](https://github.com/mozillascience/studyGroup/issues) or email sciencelab@mozillafoundation.org.
54 |
55 |
56 |
57 |
58 |
--------------------------------------------------------------------------------
/_config.yml:
--------------------------------------------------------------------------------
1 | #Setup ~~~
2 | #Follow these 2 steps to set up your site.
3 |
4 | #Step 1: give your study group a name and a short description,
5 | #and choose a language from the options in the _data directory:
6 | title: Our Study Group
7 | description: "A study group."
8 | language: en
9 |
10 | #Step 2: press the green 'Commit Changes' button at the bottom of this page.
11 |
12 | # That's it, your website is all set up!
13 | # You can see it at https://YourUserName.github.io/studyGroup/
14 | # No need to change anything below this line.
15 | # To make your first event, check out the instructions at https://github.com/mozillascience/studyGroup#how-to-launch-a-new-event
16 | # Having trouble? Open a new issue at https://github.com/mozillascience/studyGroup/issues and we'll help you out ASAP!
17 |
18 | # Optional Configuration
19 | # None of these things need to be changed - but feel free!
20 |
21 | titleBackground: "https://s3-us-west-2.amazonaws.com/webmaker-kits/learning%402x.jpg"
22 | headlineSmall: "Welcome To Our Study Group!"
23 | headlineMain: "Let's Work Together"
24 |
25 | # Setup Google Calendar
26 | # Usage:
27 | # 1. create a new google account; set the calendar to 'public' (see https://support.google.com/calendar/answer/37083?hl=en on how to do this)
28 | # 2. change 'USER' in the example urls below to the username of the google account you made for your calendar
29 | # 3. set calendar_on: True.
30 |
31 | calendar_on: False
32 | calendar_embed_url: "https://www.google.com/calendar/embed?src=USER@gmail.com"
33 | calendar_ical_url: "https://www.google.com/calendar/ical/USER@gmail.com/public/basic.ics"
34 |
35 |
36 | #========================================
37 | # No touching anything below this line :)
38 | #========================================
39 | # Color settings (hex-codes without the leading hash-tag)
40 | color:
41 | primary: fed136
42 | secondary: fec503
43 | secondary-dark: 333
44 |
45 | # Build settings
46 | markdown: kramdown
47 | permalink: pretty
48 | future: true
49 |
--------------------------------------------------------------------------------
/_data/en.yml:
--------------------------------------------------------------------------------
1 | ---
2 | whatWeDo: What We Do
3 | events: Events
4 | contact: Contact
5 | tellMeMore: Tell Me More
6 |
7 | activitiesSubheading: 'And you can, too!'
8 | activities:
9 | - title: Skill Sharing
10 | description: 'Share your favorite coding skills and tools with your friends and colleagues in friendly, no-pressure work-alongs.
'
11 | icon: fa-comment
12 | - title: Co-Working
13 | description: 'Get together to work on your coding projects, help each other out and share your work.'
14 | icon: fa-laptop
15 | - title: Community Building
16 | description: 'Meet new people in your field, organization or community - and find out what we can do when we work together.'
17 | icon: fa-group
18 |
19 | events: Events
20 | eventsSubheading: Our upcoming and recent events
21 | eventPlaceholder: Nothing yet! Propose an event here.
22 | suggestEvent: Suggest an Event
23 | leadership: How to lead a Study Group session
24 | pastEvents: See Our Past Events
25 |
26 | notification: Want to be notified of our upcoming events?
27 | watching: 'Head over to GitHub and watch our repository, like this:'
28 | watchingCaption: 'Look in the top right-hand corner of our repo, and click "Watching." You can undo this at any time in the same place.'
29 |
30 | calendar: Subscribe to our events calendar!
31 | calendarSubheading: 'We also invite you to follow our calendar, where events will be posted.'
32 | googleCalendar: 'If you use Google calendar, you can add our calendar by pressing the "Google Calendar" button at the bottom-right of this page.'
33 | iCal: 'If you use another calendar app, you can copy and paste this address into any calendar product that supports the iCal format.'
34 |
35 | sayHi: Come Say Hi
36 | contactSubheading: 'We use GitHub to get coding help, talk about events and share files. Join us there!'
37 | contact: Talk To Us
38 |
39 | teamHeadline: Who We Are
40 | teamSubheading: "We're scientists, students and researchers who want to work with you!"
41 | interests: Interests
42 |
43 | codeOfConduct: Study Group Code of Conduct
44 |
--------------------------------------------------------------------------------
/_data/members.yml:
--------------------------------------------------------------------------------
1 | - name: Bill Mills
2 | affiliation: TRIUMF
3 | github: BillMills
4 | interests:
5 | - Programming
6 | - Open Science
7 |
--------------------------------------------------------------------------------
/_data/pt.yml:
--------------------------------------------------------------------------------
1 | ---
2 | whatWeDo: O que fazemos
3 | events: Eventos
4 | contact: Contato
5 | tellMeMore: Saiba mais
6 |
7 | activitiesSubheading: 'E que você também pode fazer'
8 | activities:
9 | - title: Compartilhando habilidades
10 | description: 'Compartilhe suas habilidades favoritas e ferramentas com amigos e colegas em reuniões, em ambiente amigável e sem pressão.'
11 | icon: fa-comment
12 | - title: Trabalhando junto
13 | description: 'Junte-se para trabalhar em seus projetos de programação, ajudem uns aos outros e compartilhe seu trabalho.'
14 | icon: fa-laptop
15 | - title: Criando uma comunidade
16 | description: 'Conheça novas pessoas da sua área, organização ou comunidade - e descubra o que podemos fazer quando trabalhamos juntos.'
17 | icon: fa-group
18 |
19 | events: Eventos
20 | eventsSubheading: Nossos próximos eventos
21 | eventPlaceholder: Nada ainda! Proponha um evento aqui.
22 | suggestEvent: Sugira um evento
23 | leadership: Como mediar um Grupo de Estudos
24 | pastEvents: See Our Past Events
25 |
26 | notification: Quer ser notificado dos eventos?
27 | watching: 'Vá até GitHub e acompanhe nosso respositório, assim:'
28 | watchingCaption: 'Olhe para o canto esquerdo superior do nosso repositório, e clique em "Watching." Você pode desfazer isso a qualquer momento, no mesmo lugar.'
29 |
30 | calendar: Inscreva-se em nosso Calendário de Eventos!
31 | calendarSubheading: 'Também o convidamos a se inscrever em nosso calendário, no qual os eventos serão postados.'
32 | googleCalendar: 'Se você usa o Google Calendar, pode adicionar nosso calendário ao clicar no botão "Google Calendar" na parte direita inferior desta página.'
33 | iCal: 'Se você utiliza outro aplicativo de calendário, você pode copiar e colar este endereço em qualquer aplicativo de calendário que suporte o formato iCal.'
34 |
35 | sayHi: Diga Olá!
36 | contactSubheading: 'Usamos o GitHub para obter ajuda com código, falar sobre eventos e compartilhar arquivos. Junte-se a nós!'
37 | contact: Fale conosco
38 |
39 | teamHeadline: Quem somos?
40 | teamSubheading: "Somos cientistas, estudantes e pesquisadores que querem trabalhar com você! "
41 | interests: Interesses
42 |
43 | codeOfConduct: Código de Conduta do Grupo de Estudos
44 |
--------------------------------------------------------------------------------
/_includes/about.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
About
7 |
Lorem ipsum dolor sit amet consectetur.
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
2009-2011
20 |
Our Humble Beginnings
21 |
22 |
23 |
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Sunt ut voluptatum eius sapiente, totam reiciendis temporibus qui quibusdam, recusandae sit vero unde, sed, incidunt et ea quo dolore laudantium consectetur!
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
March 2011
34 |
An Agency is Born
35 |
36 |
37 |
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Sunt ut voluptatum eius sapiente, totam reiciendis temporibus qui quibusdam, recusandae sit vero unde, sed, incidunt et ea quo dolore laudantium consectetur!
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
December 2012
48 |
Transition to Full Service
49 |
50 |
51 |
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Sunt ut voluptatum eius sapiente, totam reiciendis temporibus qui quibusdam, recusandae sit vero unde, sed, incidunt et ea quo dolore laudantium consectetur!
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
July 2014
62 |
Phase Two Expansion
63 |
64 |
65 |
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Sunt ut voluptatum eius sapiente, totam reiciendis temporibus qui quibusdam, recusandae sit vero unde, sed, incidunt et ea quo dolore laudantium consectetur!
44 |
45 |
--------------------------------------------------------------------------------
/_layouts/default.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | {% include head.html %}
5 |
6 |
7 |
8 |
9 | {% include header.html %}
10 | {% include services.html %}
11 | {% include portfolio_grid.html %}
12 | {% include contact.html %}
13 | {% include team.html %}
14 | {% include footer.html %}
15 | {% include js.html %}
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/_layouts/style.css:
--------------------------------------------------------------------------------
1 | {% include css/bootstrap.min.css %}
2 | {% include css/agency.css %}
3 | {% include css/custom.css %}
4 |
--------------------------------------------------------------------------------
/_plugins/hex_to_rgb.rb:
--------------------------------------------------------------------------------
1 | # Simple hex conversion Liquid filter plugin
2 | #
3 | # Convert a string of hex values into an array of decimal values.
4 | #
5 | # Examples:
6 | # {{ "aabbcc" | hex_to_rgb }}
7 | # # => [170, 187, 204]
8 | #
9 | # {{ "abc" | hex_to_rgb }}
10 | # # => [170, 187, 204]
11 | #
12 | # {{ "0a0b0c" | hex_to_rgb }}
13 | # # => [10, 11, 12]
14 | #
15 | # hexval - string of valid hexidecimal characters
16 | #
17 | # Returns an array of decimal values for the parse hex characters
18 | #
19 |
20 | module Jekyll
21 | module HexToRGB
22 | def hex_to_rgb(hexval)
23 | if hexval.length.even?
24 | hexval.scan(/../).map {|color| color.to_i(16)}
25 | else
26 | hexval.scan(/./).map {|color| (color+color).to_i(16)}
27 | end
28 | end
29 | end
30 | end
31 |
32 | Liquid::Template.register_filter(Jekyll::HexToRGB)
33 |
--------------------------------------------------------------------------------
/_posts/1977-01-01-myEvent.markdown:
--------------------------------------------------------------------------------
1 | ---
2 | title: Make Your First Event
3 | text: In order to make your first event, follow the instructions here.
4 | location: Your Location
5 | link: https://github.com/mozillascience/studyGroup#how-to-set-up-your-own-mozilla-study-group-website
6 | date: 1977-01-01
7 | startTime: '20:00'
8 | endTime: '21:00'
9 |
10 | ---
11 |
--------------------------------------------------------------------------------
/_posts/2077-01-01-myEvent.markdown:
--------------------------------------------------------------------------------
1 | ---
2 | title: Make Your First Event
3 | text: In order to make your first event, follow the instructions here.
4 | location: Your Location
5 | link: https://github.com/mozillascience/studyGroup#how-to-launch-a-new-event
6 | date: 2077-01-01
7 | startTime: '20:00'
8 | endTime: '21:00'
9 |
10 | ---
11 |
--------------------------------------------------------------------------------
/bn.yml:
--------------------------------------------------------------------------------
1 | ---
2 | whatWeDo: আমরা কি করি
3 | events: ইভেন্টগুলো
4 | contact: যোগাযোগ
5 | tellMeMore: আমাকে আরও বলুন
6 |
7 | activitiesSubheading: 'এবং,তুমিও করতে পার !'
8 | activities:
9 | - title: যোগ্যতা ভাগ করা
10 | description: 'তোমার কোডিং যোগ্যতা ও দক্ষতা তোমার বন্ধু এবং সহকর্মীদের সাথে ভাগ কর , একসাথে কাজ কর এতে চাপ কম। '
11 | icon: fa-comment
12 | - title: একসাথে কাজ করা
13 | description: ' একসাথে কোডিং প্রজেক্টে কাজ করুন , একে অপরকে সাহায্য করুন ও কাজগুলো ভাগ করুন।'
14 | icon: fa-laptop
15 | - title: সম্প্রদায় গঠন
16 | description: 'তোমার কাজের ক্ষেত্রে,প্রতিষ্ঠানে বা সম্প্রদায়ে নতুন মানুষদের সাথে যোগাযোগ কর , এবং খুঁজে বের কর আমরা নতুন কি করতে পারি যখন আমারা একসাথে কাজ করি।'
17 | icon: fa-group
18 |
19 | events: ইভেন্টগুলো
20 | eventsSubheading: আমাদের বর্তমান ও আগত ইভেন্টগুলো
21 | eventPlaceholder: একটিও নেই! একটি প্রস্তাব করুন
22 | suggestEvent: একটি ইভেন্ট প্রস্তাব করুন
23 | leadership: কিভাবে একটি স্টাডিগ্রুপ সেশনে নেতৃত্ব দিতে হয়
24 | pastEvents: আমাদের আগের ইভেন্ট গুলো দেখুন
25 |
26 | notification: আমাদের আগত ইভেন্টগুলো সম্পর্কে বার্তা পেতেচান?
27 | watching: 'GitHub এর উপরের দিকে যান এবং আমাদের রিপোজিটরি দেখুন । এরকম ভাবে:'watchingCaption:'উপরের ডান দিকের কিনারায় আমাদের রিপো, এবং ক্লিক করুন "Watching" তুমি এটি যেকোন সময় মুছে ফেলতে পার ।'
28 |
29 | calendar: আমাদের ইভেন্ট ক্যালেন্ডারে সাবস্ক্রাইব করুন!
30 | calendarSubheading: 'আমরা তোমাকে আমাদের ক্যালেন্ডারও, অনুসরন করতে আমন্ত্রণ জানাই যেখানে ইভেন্টগুলো পোস্ট করা হবে'
31 | googleCalendar: 'যদি তুমি গুগল ক্যালেন্ডার ব্যবহার কর , তাহলে "গুগল ক্যালেন্ডার" বাটন প্রেস করে অনুসরন কর ।'
32 | iCal: 'যদি তুমি অন্য ক্যালেন্ডার অ্যাপ ব্যবহার কর তাহলে এই অ্যাড্রেস কপি করে যেকোনো ক্যালেন্ডার প্রোডাক্টে পেস্ট কর এটি iCal ফরম্যাট সমর্থন করে। '
33 |
34 | sayHi: এখানে আস এবং 'Hi' বল
35 | contactSubheading: 'আমরা Github ব্যবহার করি যাতে আমরা কোডিং সাহায্য পেতে পারি, ইভেন্ট নিয়ে কথা বলতে পারি এবং ফাইলগুলো ভাগ করতে পারি। আমাদের সাথে যোগ দিন! '
36 | contact: আমাদের সাথে কথা বলুন
37 |
38 | teamHeadline: আমরা কারা ?
39 | teamSubheading: " আমরা বিজ্ঞানী,ছাত্র এবং গবেষক যারা তোমার সাথে কাজ করতে চাই!"
40 | interests: তোমার আগ্রহগুলো
41 | codeOfConduct: স্টাডিগ্রুপের আচরণবিধি
42 |
--------------------------------------------------------------------------------
/codeOfConduct-pt.md:
--------------------------------------------------------------------------------
1 | # Código de Conduta
2 |
3 | Eventos do Grupo de Estudo são atividades comunitárias e tem por objetivo promover interação, aprendizado e estabelecer colaborações entre os participantes. Nós valorizamos a participação de todo e qualquer membro da comunidade científica e queremos que todos os participantes tenham uma experiência agradável e enriquecedora. Assim, esperamos que todos os participantes demonstrem respeito e cortesia uns com os outros ao longo do evento, assim como em interações virtuais com os associados do Grupo de Estudo.
4 |
5 | Para deixar claro, espera-se que todos os envolvidos nos eventos do Grupo de Estudos e discussões — instrutores, ajudantes, organizadores, e aprendizes — sigam o seguinte Código de Conduta. Organizadores devem fazer valer este código ao longo do evento, mas você também pode contactar-nos de maneira privada; todas as comunicações serão tratadas como confidenciais.
6 |
7 | ### A Versão Curta
8 |
9 | - Espera-se que o Grupo de Estudos promova uma experiência de aprendizagem que seja livre de assédio para todos, sem importar gênero, orientação sexual, deficiência, aparência física, tamanho corporal, etnia, religião, ou escolha do editor de texto. Não toleramos nenhum tipo de assédio aos participantes.
10 | - Toda a comunicação deve ser apropriada para um ambiente profissional, incluindo pessoas de diferentes origens e formações. Linguagem e imagens com conteúdo ou conotação sexual são inapropriadas em qualquer evento.
11 | - Seja gentil com os outros. Não insulte ou rebaixe os participantes.
12 | - Comporte-se de maneira profissional. Lembre-se que assédio e piadas com conotação sexista, racista, ou preconceituosas são inapropriadas.
13 | - Os participantes que violarem essas regras serão convidados a se retirarem dos eventos de acordo com o julgamento dos organizadores do mesmo, sem ressarcimento de nenhuma taxa cobrada.
14 |
15 | Obrigado por tornar este evento amigável e receptivo para todos.
16 |
17 | ### A Versão Longa
18 |
19 | Assédio inclui comentários verbais ofensivos relacionados a gênero, orientação sexual, deficiência, aparência física, tamanho corporal, etnia, religião, imagens sexuais em espaços públicos, intimidação deliberada, perseguição, fotografia ou filmagem embaraçosa, interrupção constante de palestras ou outros eventos, contato físico inapropriado, e atenção sexual não bem-vinda.
20 |
21 | Participantes aos quais forem pedidos que interrompam comportamento inapropriado devem fazê-lo imediatamente.
22 |
23 | Seja cuidadoso com a escolha de palavras. Lembre-se que piadas sexistas, racistas, ou outro tipo de preconceito podem ser ofensivas para pessoas à sua volta.
24 |
25 | Se um participante comportar-se de maneira que viole este código conduta, os organizadores podem agir de qualquer forma que acharem apropriada, incluindo alertar ou expulsar o ofensor do evento sem direito a ressarcimento de qualquer taxa que tenha sido paga.
26 |
27 | Espelhado em: https://www.mozillascience.org/code-of-conduct
28 | Licença: CC BY 4.0 (http://creativecommons.org/licenses/by/4.0/)
29 |
--------------------------------------------------------------------------------
/codeOfConduct.md:
--------------------------------------------------------------------------------
1 | ###[Leia isto em Português](https://github.com/mozillascience/studyGroup/blob/gh-pages/codeOfConduct-pt.md)
2 |
3 | # Code of Conduct
4 |
5 | Study Group events are community events intended for networking and collaboration as well as learning. We value the participation of every member of the scientific community and want all attendees to have an enjoyable and fulfilling experience. Accordingly, all attendees are expected to show respect and courtesy to other attendees throughout the event and in interactions online associated with Study Group.
6 |
7 | To make clear what is expected, everyone taking part in Study Group events and discussions—instructors, helpers, organizers, and learners—is required to conform to the following Code of Conduct. Organizers will enforce this code throughout events, but you may also contact us privately; all communication will be treated as confidential.
8 |
9 | ### The Short Version
10 |
11 | - Study Group is dedicated to providing a harassment-free learning experience for everyone, regardless of gender, sexual orientation, disability, physical appearance, body size, race, religion, or choice of text editor. We do not tolerate harassment of participants in any form.
12 | - All communication should be appropriate for a professional audience including people of many different backgrounds. Sexual language and imagery is not appropriate for any event.
13 | - Be kind to others. Do not insult or put down other attendees.
14 | - Behave professionally. Remember that harassment and sexist, racist, or exclusionary jokes are not appropriate.
15 | - Attendees violating these rules may be asked to leave the event at the sole discretion of the event organizers without a refund of any charge that may have been levied.
16 |
17 | Thank you for helping make this a welcoming, friendly event for all.
18 |
19 | ### The Longer Version
20 |
21 | Harassment includes offensive verbal comments related to gender, sexual orientation, disability, physical appearance, body size, race, religion, sexual images in public spaces, deliberate intimidation, stalking, following, harassing photography or recording, sustained disruption of talks or other events, inappropriate physical contact, and unwelcome sexual attention.
22 |
23 | Participants asked to stop any harassing behavior are expected to comply immediately.
24 |
25 | Be careful in the words that you choose. Remember that sexist, racist, and other exclusionary jokes can be offensive to those around you.
26 |
27 | If a participant engages in behavior that violates this code of conduct, the organizers may take any action they deem appropriate, including warning the offender or expulsion from the event with no refund of any fee that may have been levied.
28 |
29 | Mirrored at: https://www.mozillascience.org/code-of-conduct
30 | License: CC BY 4.0 (http://creativecommons.org/licenses/by/4.0/)
31 |
--------------------------------------------------------------------------------
/css/font-awesome/css/font-awesome.min.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * Font Awesome 4.1.0 by @davegandy - http://fontawesome.io - @fontawesome
3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
4 | */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.1.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.1.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff?v=4.1.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.1.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.1.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font-family:FontAwesome;font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:spin 2s infinite linear;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;animation:spin 2s infinite linear}@-moz-keyframes spin{0%{-moz-transform:rotate(0deg)}100%{-moz-transform:rotate(359deg)}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg)}}@-o-keyframes spin{0%{-o-transform:rotate(0deg)}100%{-o-transform:rotate(359deg)}}@keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);-webkit-transform:scale(-1, 1);-moz-transform:scale(-1, 1);-ms-transform:scale(-1, 1);-o-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);-webkit-transform:scale(1, -1);-moz-transform:scale(1, -1);-ms-transform:scale(1, -1);-o-transform:scale(1, -1);transform:scale(1, -1)}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-square:before,.fa-pied-piper:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}
--------------------------------------------------------------------------------
/css/font-awesome/fonts/FontAwesome.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mozillascience/studyGroup/5d13d761bc4c17f44bab409a5d8dabe431cb5e3d/css/font-awesome/fonts/FontAwesome.otf
--------------------------------------------------------------------------------
/css/font-awesome/fonts/fontawesome-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mozillascience/studyGroup/5d13d761bc4c17f44bab409a5d8dabe431cb5e3d/css/font-awesome/fonts/fontawesome-webfont.eot
--------------------------------------------------------------------------------
/css/font-awesome/fonts/fontawesome-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mozillascience/studyGroup/5d13d761bc4c17f44bab409a5d8dabe431cb5e3d/css/font-awesome/fonts/fontawesome-webfont.ttf
--------------------------------------------------------------------------------
/css/font-awesome/fonts/fontawesome-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mozillascience/studyGroup/5d13d761bc4c17f44bab409a5d8dabe431cb5e3d/css/font-awesome/fonts/fontawesome-webfont.woff
--------------------------------------------------------------------------------
/feed.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | {{ site.title | xml_escape }}
5 | {{ site.description | xml_escape }}
6 | {{ site.github.url | replace:'http:','https:' }}
7 |
8 | {{ site.time | date_to_rfc822 }}
9 | {{ site.time | date_to_rfc822 }}
10 | Jekyll v{{ jekyll.version }}
11 | {% for post in site.posts limit:10 %}
12 |
13 | {{ post.title | xml_escape }}
14 | {{ post.content | xml_escape }}
15 | {{ post.date | date_to_rfc822 }}
16 | {{ site.github.url | replace:'http:','https:' }}/{{ post.url }}
17 | {{ site.github.url | replace:'http:','https:' }}/{{ post.url }}
18 | {% for tag in post.tags %}
19 | {{ tag | xml_escape }}
20 | {% endfor %}
21 | {% for cat in post.categories %}
22 | {{ cat | xml_escape }}
23 | {% endfor %}
24 |
25 | {% endfor %}
26 |
27 |
28 |
--------------------------------------------------------------------------------
/img/ScienceLabSticker.ai.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mozillascience/studyGroup/5d13d761bc4c17f44bab409a5d8dabe431cb5e3d/img/ScienceLabSticker.ai.png
--------------------------------------------------------------------------------
/img/about/1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mozillascience/studyGroup/5d13d761bc4c17f44bab409a5d8dabe431cb5e3d/img/about/1.jpg
--------------------------------------------------------------------------------
/img/about/2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mozillascience/studyGroup/5d13d761bc4c17f44bab409a5d8dabe431cb5e3d/img/about/2.jpg
--------------------------------------------------------------------------------
/img/about/3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mozillascience/studyGroup/5d13d761bc4c17f44bab409a5d8dabe431cb5e3d/img/about/3.jpg
--------------------------------------------------------------------------------
/img/about/4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mozillascience/studyGroup/5d13d761bc4c17f44bab409a5d8dabe431cb5e3d/img/about/4.jpg
--------------------------------------------------------------------------------
/img/header-bg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mozillascience/studyGroup/5d13d761bc4c17f44bab409a5d8dabe431cb5e3d/img/header-bg.jpg
--------------------------------------------------------------------------------
/img/logos/aetuts.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mozillascience/studyGroup/5d13d761bc4c17f44bab409a5d8dabe431cb5e3d/img/logos/aetuts.jpg
--------------------------------------------------------------------------------
/img/logos/creative-market.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mozillascience/studyGroup/5d13d761bc4c17f44bab409a5d8dabe431cb5e3d/img/logos/creative-market.jpg
--------------------------------------------------------------------------------
/img/logos/designmodo.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mozillascience/studyGroup/5d13d761bc4c17f44bab409a5d8dabe431cb5e3d/img/logos/designmodo.jpg
--------------------------------------------------------------------------------
/img/logos/envato.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mozillascience/studyGroup/5d13d761bc4c17f44bab409a5d8dabe431cb5e3d/img/logos/envato.jpg
--------------------------------------------------------------------------------
/img/logos/microlancer.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mozillascience/studyGroup/5d13d761bc4c17f44bab409a5d8dabe431cb5e3d/img/logos/microlancer.jpg
--------------------------------------------------------------------------------
/img/logos/themeforest.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mozillascience/studyGroup/5d13d761bc4c17f44bab409a5d8dabe431cb5e3d/img/logos/themeforest.jpg
--------------------------------------------------------------------------------
/img/logos/wordpress.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mozillascience/studyGroup/5d13d761bc4c17f44bab409a5d8dabe431cb5e3d/img/logos/wordpress.jpg
--------------------------------------------------------------------------------
/img/map-image.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mozillascience/studyGroup/5d13d761bc4c17f44bab409a5d8dabe431cb5e3d/img/map-image.png
--------------------------------------------------------------------------------
/img/portfolio/dreams-thumbnail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mozillascience/studyGroup/5d13d761bc4c17f44bab409a5d8dabe431cb5e3d/img/portfolio/dreams-thumbnail.png
--------------------------------------------------------------------------------
/img/portfolio/dreams.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mozillascience/studyGroup/5d13d761bc4c17f44bab409a5d8dabe431cb5e3d/img/portfolio/dreams.png
--------------------------------------------------------------------------------
/img/portfolio/escape-thumbnail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mozillascience/studyGroup/5d13d761bc4c17f44bab409a5d8dabe431cb5e3d/img/portfolio/escape-thumbnail.png
--------------------------------------------------------------------------------
/img/portfolio/escape.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mozillascience/studyGroup/5d13d761bc4c17f44bab409a5d8dabe431cb5e3d/img/portfolio/escape.png
--------------------------------------------------------------------------------
/img/portfolio/golden-thumbnail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mozillascience/studyGroup/5d13d761bc4c17f44bab409a5d8dabe431cb5e3d/img/portfolio/golden-thumbnail.png
--------------------------------------------------------------------------------
/img/portfolio/golden.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mozillascience/studyGroup/5d13d761bc4c17f44bab409a5d8dabe431cb5e3d/img/portfolio/golden.png
--------------------------------------------------------------------------------
/img/portfolio/roundicons-thumbnail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mozillascience/studyGroup/5d13d761bc4c17f44bab409a5d8dabe431cb5e3d/img/portfolio/roundicons-thumbnail.png
--------------------------------------------------------------------------------
/img/portfolio/roundicons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mozillascience/studyGroup/5d13d761bc4c17f44bab409a5d8dabe431cb5e3d/img/portfolio/roundicons.png
--------------------------------------------------------------------------------
/img/portfolio/startup-framework-thumbnail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mozillascience/studyGroup/5d13d761bc4c17f44bab409a5d8dabe431cb5e3d/img/portfolio/startup-framework-thumbnail.png
--------------------------------------------------------------------------------
/img/portfolio/startup-framework.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mozillascience/studyGroup/5d13d761bc4c17f44bab409a5d8dabe431cb5e3d/img/portfolio/startup-framework.png
--------------------------------------------------------------------------------
/img/portfolio/treehouse-thumbnail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mozillascience/studyGroup/5d13d761bc4c17f44bab409a5d8dabe431cb5e3d/img/portfolio/treehouse-thumbnail.png
--------------------------------------------------------------------------------
/img/portfolio/treehouse.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mozillascience/studyGroup/5d13d761bc4c17f44bab409a5d8dabe431cb5e3d/img/portfolio/treehouse.png
--------------------------------------------------------------------------------
/img/team/1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mozillascience/studyGroup/5d13d761bc4c17f44bab409a5d8dabe431cb5e3d/img/team/1.jpg
--------------------------------------------------------------------------------
/img/team/2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mozillascience/studyGroup/5d13d761bc4c17f44bab409a5d8dabe431cb5e3d/img/team/2.jpg
--------------------------------------------------------------------------------
/img/team/3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mozillascience/studyGroup/5d13d761bc4c17f44bab409a5d8dabe431cb5e3d/img/team/3.jpg
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | ---
4 |
5 |
");
46 | $('#success > .alert-danger').html("");
48 | $('#success > .alert-danger').append("Sorry " + firstName + ", it seems that my mail server is not responding. Please try again later!");
49 | $('#success > .alert-danger').append('