Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
No results found
Show changes
Commits on Source (179)
Showing
with 609 additions and 25 deletions
......@@ -58,6 +58,7 @@ flycheck_*.el
website/public/
website/resources/_gen/
hugo_stats.json
website/.hugo_build.lock
# Executable may be added to repository
hugo.exe
......
File moved
GNU LESSER GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
This version of the GNU Lesser General Public License incorporates
the terms and conditions of version 3 of the GNU General Public
License, supplemented by the additional permissions listed below.
0. Additional Definitions.
As used herein, "this License" refers to version 3 of the GNU Lesser
General Public License, and the "GNU GPL" refers to version 3 of the GNU
General Public License.
"The Library" refers to a covered work governed by this License,
other than an Application or a Combined Work as defined below.
An "Application" is any work that makes use of an interface provided
by the Library, but which is not otherwise based on the Library.
Defining a subclass of a class defined by the Library is deemed a mode
of using an interface provided by the Library.
A "Combined Work" is a work produced by combining or linking an
Application with the Library. The particular version of the Library
with which the Combined Work was made is also called the "Linked
Version".
The "Minimal Corresponding Source" for a Combined Work means the
Corresponding Source for the Combined Work, excluding any source code
for portions of the Combined Work that, considered in isolation, are
based on the Application, and not on the Linked Version.
The "Corresponding Application Code" for a Combined Work means the
object code and/or source code for the Application, including any data
and utility programs needed for reproducing the Combined Work from the
Application, but excluding the System Libraries of the Combined Work.
1. Exception to Section 3 of the GNU GPL.
You may convey a covered work under sections 3 and 4 of this License
without being bound by section 3 of the GNU GPL.
2. Conveying Modified Versions.
If you modify a copy of the Library, and, in your modifications, a
facility refers to a function or data to be supplied by an Application
that uses the facility (other than as an argument passed when the
facility is invoked), then you may convey a copy of the modified
version:
a) under this License, provided that you make a good faith effort to
ensure that, in the event an Application does not supply the
function or data, the facility still operates, and performs
whatever part of its purpose remains meaningful, or
b) under the GNU GPL, with none of the additional permissions of
this License applicable to that copy.
3. Object Code Incorporating Material from Library Header Files.
The object code form of an Application may incorporate material from
a header file that is part of the Library. You may convey such object
code under terms of your choice, provided that, if the incorporated
material is not limited to numerical parameters, data structure
layouts and accessors, or small macros, inline functions and templates
(ten or fewer lines in length), you do both of the following:
a) Give prominent notice with each copy of the object code that the
Library is used in it and that the Library and its use are
covered by this License.
b) Accompany the object code with a copy of the GNU GPL and this license
document.
4. Combined Works.
You may convey a Combined Work under terms of your choice that,
taken together, effectively do not restrict modification of the
portions of the Library contained in the Combined Work and reverse
engineering for debugging such modifications, if you also do each of
the following:
a) Give prominent notice with each copy of the Combined Work that
the Library is used in it and that the Library and its use are
covered by this License.
b) Accompany the Combined Work with a copy of the GNU GPL and this license
document.
c) For a Combined Work that displays copyright notices during
execution, include the copyright notice for the Library among
these notices, as well as a reference directing the user to the
copies of the GNU GPL and this license document.
d) Do one of the following:
0) Convey the Minimal Corresponding Source under the terms of this
License, and the Corresponding Application Code in a form
suitable for, and under terms that permit, the user to
recombine or relink the Application with a modified version of
the Linked Version to produce a modified Combined Work, in the
manner specified by section 6 of the GNU GPL for conveying
Corresponding Source.
1) Use a suitable shared library mechanism for linking with the
Library. A suitable mechanism is one that (a) uses at run time
a copy of the Library already present on the user's computer
system, and (b) will operate properly with a modified version
of the Library that is interface-compatible with the Linked
Version.
e) Provide Installation Information, but only if you would otherwise
be required to provide such information under section 6 of the
GNU GPL, and only to the extent that such information is
necessary to install and execute a modified version of the
Combined Work produced by recombining or relinking the
Application with a modified version of the Linked Version. (If
you use option 4d0, the Installation Information must accompany
the Minimal Corresponding Source and Corresponding Application
Code. If you use option 4d1, you must provide the Installation
Information in the manner specified by section 6 of the GNU GPL
for conveying Corresponding Source.)
5. Combined Libraries.
You may place library facilities that are a work based on the
Library side by side in a single library together with other library
facilities that are not Applications and are not covered by this
License, and convey such a combined library under terms of your
choice, if you do both of the following:
a) Accompany the combined library with a copy of the same work based
on the Library, uncombined with any other library facilities,
conveyed under the terms of this License.
b) Give prominent notice with the combined library that part of it
is a work based on the Library, and explaining where to find the
accompanying uncombined form of the same work.
6. Revised Versions of the GNU Lesser General Public License.
The Free Software Foundation may publish revised and/or new versions
of the GNU Lesser General Public License from time to time. Such new
versions will be similar in spirit to the present version, but may
differ in detail to address new problems or concerns.
Each version is given a distinguishing version number. If the
Library as you received it specifies that a certain numbered version
of the GNU Lesser General Public License "or any later version"
applies to it, you have the option of following the terms and
conditions either of that published version or of any later version
published by the Free Software Foundation. If the Library as you
received it does not specify a version number of the GNU Lesser
General Public License, you may choose any version of the GNU Lesser
General Public License ever published by the Free Software Foundation.
If the Library as you received it specifies that a proxy can decide
whether future versions of the GNU Lesser General Public License shall
apply, that proxy's public statement of acceptance of any version is
permanent authorization for you to choose that version for the
Library.
# Software Freedom Camp Website
This website is build using [Hugo](https://gohugo.io/ "Hugo website"), a static site generator built with Go.
### Installing Hugo
Hugo is available on most modern operating systems. If you're using a GNU/Linux distribution that uses the `apt` package manager (Debian, Ubuntu or any of their derivatives) you can install it with the following command:
``` sh
sudo apt install hugo
```
If you're using a GNU/Linux distribution that uses the `pacman` package manager (Archlinux or any of it's derivatives) you can use the following command:
``` sh
sudo pacman -S hugo
```
If you're using a Distro that uses the dnf package manger (Fedora) you can use the following command:
``` sh
sudo dnf install hugo
```
### Running a development server
To run a development server run the following command:
``` sh
hugo server -D
```
If you want your server to show your draft posts to run:
``` sh
hugo server -D --buildDrafts
```
### Generating Static Sites
To generate static websites, just run the command `hugo` from the command line from the project's root folder where the config.toml file is present.
This will generate the files in a directory called `public`. These files can now be deployed using a web server of your choice.
### To add a news/announcement:
1. Run `hugo new news/title-of-the-news-item.md`.
1. A new markdown file will be created under `content/news/` directory. Use your favourite text editor to edit it.
1. To see website preview, run `hugo server -D` and open `localhost:1313` in your browser.
1. When you finish drafting the news item, to make it live, change `draft: true` to `draft: false` in the above created markdown file.
### Workflow for camp.fsci.in
- Make necessary changes and commit the changes to git.
- Push to git.fosscommunity.in
- Raise merge request
### How to update website in production
- First you need ssh access to the server ([contact](https://camp.fsci.in/#contact) the camp team for the same).
- Run the `update-camp-website` script in the home folder of the server to get the latest changes in master deployed to production. (You can run this in a single command with `ssh $CONNECTIONSTRING -t "./update-camp-website"` where $CONNECTIONSTRING is the parameters for the ssh connection.)
\ No newline at end of file
---
title: "{{ replace .Name "-" " " | title }}"
date: {{ .Date }}
draft: true
---
baseURL = "https://camp.fsci.in/2021/"
defaultContentLanguage = "en"
[params.main]
lang = "en"
keywords = "Software Freedom Camp Diveristy Edition, Diversity, Free Software"
description= "Software Freedom Camp is a mentorship programme for bringing more people to Free Software with strong focus on philosophy. We connect learners with experienced Free Software community members to work on some tasks together - this could be either technical or non technical. Diversity edition is aiming to reach out to people subject to systemic bias and impacted by under-representation in the technical industry in India."
img = "img/landing-image.png"
[markup]
defaultMarkdownHandler = "goldmark"
[markup.blackFriday]
angledQuotes = false
footnoteAnchorPrefix = ""
footnoteReturnLinkContents = ""
fractions = true
hrefTargetBlank = false
latexDashes = true
nofollowLinks = false
noreferrerLinks = false
plainIDAnchors = true
skipHTML = false
smartDashes = true
smartypants = true
smartypantsQuotesNBSP = false
taskLists = true
[markup.goldmark]
[markup.goldmark.extensions]
definitionList = true
footnote = true
linkify = true
strikethrough = true
table = true
taskList = true
typographer = true
[markup.goldmark.parser]
attribute = true
autoHeadingID = true
autoHeadingIDType = "github"
[markup.goldmark.renderer]
hardWraps = false
unsafe = true
xhtml = false
[markup.highlight]
codeFences = true
guessSyntax = false
hl_Lines = ""
lineNoStart = 1
lineNos = false
lineNumbersInTable = true
noClasses = true
style = "monokai"
tabWidth = 4
[markup.tableOfContents]
endLevel = 3
ordered = false
startLevel = 2
[languages]
[languages.en]
languageName = "English"
contentDir = "content/english"
title = "Software Freedom Camp (Diversity Edition)"
[languages.hi]
languageName = "हिन्दी"
contentDir= "content/hindi"
[languages.kn]
languageName = "ಕನ್ನಡ"
contentDir = "content/kananda"
[languages.ml]
languageName = "മലയാളം"
contentDir= "content/malayalam"
[languages.mr]
languageName = "मराठी"
contentDir= "content/marathi"
[languages.ta]
languageName = "தமிழ்"
contentDir = "content/tamil"
[languages.te]
languageName = "తెలుగు"
contentDir= "content/telugu"
......@@ -5,11 +5,11 @@ slug: code-of-conduct
aliases:
- /coc
---
# Free Software Camp Code of Conduct
# Software Freedom Camp Code of Conduct
Free Software Camp, as part of the greater Free Software Community, assumes good faith on all those who wish to improve Free Software Projects. However, other experiences at other programs have shown us the need to adopt a Code of Conduct in which we state our expectations of all participants and organizers during the Free Software Camp.
Software Freedom Camp, as part of the greater Free Software Community, assumes good faith on all those who wish to improve Free Software Projects. However, other experiences at other programs have shown us the need to adopt a Code of Conduct in which we state our expectations of all participants and organizers during the Software Freedom Camp.
This code of conduct applies to all participants of Free Software Camp, in addition to the [FSCI Code of Conduct](https://fsci.in/code-of-conduct/) that applies to the FSCI community as a whole.
This code of conduct applies to all participants of Software Freedom Camp, in addition to the [FSCI Code of Conduct](https://fsci.in/code-of-conduct/) that applies to the FSCI community as a whole.
## FSCI Diversity Statement
......@@ -21,9 +21,9 @@ While much of the work for our project is technical in nature, we value and enco
## Be excellent to each other
Free Software Camp is committed to providing a safe environment for all participants. All participants are expected to treat all people and infrastructure with respect and help create a welcoming environment. If you notice behavior that fails to meet this standard, please speak up and help to keep Free Software Camp as respectful as we expect it to be.
Software Freedom Camp is committed to providing a safe environment for all participants. All participants are expected to treat all people and infrastructure with respect and help create a welcoming environment. If you notice behavior that fails to meet this standard, please speak up and help to keep Software Freedom Camp as respectful as we expect it to be.
Free Software Camp is committed to the ideals expressed in our Diversity Statement (above) and the FSCI Code of Conduct. We ask all our members, mentors, volunteers, participants and guests to adopt these principles. We are a diverse community. Sometimes this means we need to work harder to ensure we're creating an environment of trust and respect where all who come to participate feel comfortable and included.
Software Freedom Camp is committed to the ideals expressed in our Diversity Statement (above) and the FSCI Code of Conduct. We ask all our members, mentors, volunteers, participants and guests to adopt these principles. We are a diverse community. Sometimes this means we need to work harder to ensure we're creating an environment of trust and respect where all who come to participate feel comfortable and included.
We value your participation and appreciate your help in realizing this goal.
......@@ -35,13 +35,13 @@ Respect yourself, and respect others. Be courteous to those around you. If someo
By default, all material presented in the camp should be suitable for people aged 12 and above.
If you could reasonably assume that some people may be offended by your talk or presentation, please state so explicitly to the Editorial Team. In case you are unsure if this applies to you, please contact the Editorial Team at camp at mm.gnu.org.in. Please note that you are solely responsible if anything is deemed inappropriate and you did not contact the Editorial Team beforehand.
If you could reasonably assume that some people may be offended by your talk or presentation, please state so explicitly to the Editorial Team. In case you are unsure if this applies to you, please contact the Editorial Team at camp at fsci.in. Please note that you are solely responsible if anything is deemed inappropriate and you did not contact the Editorial Team beforehand.
## Be aware
We ask everyone to be aware that we will not tolerate intimidation, harassment, or any abusive, discriminatory or derogatory behavior by anyone at any FSCI program or in related media.
Complaints can be made to the organizers by emailing camp-coc at mm.gnu.org.in. All complaints made to camp organizers will remain confidential and be taken seriously. The complaint will be treated appropriately and with discretion. Should camp organizers or moderators consider it appropriate, measures they may take can include:
Complaints can be made to the organizers by emailing camp-coc at fsci.in. All complaints made to camp organizers will remain confidential and be taken seriously. The complaint will be treated appropriately and with discretion. Should camp organizers or moderators consider it appropriate, measures they may take can include:
* The individuals may be told to apologize
* The individuals may be told to stop/modify their behavior appropriately
......@@ -53,7 +53,7 @@ Complaints can be made to the organizers by emailing camp-coc at mm.gnu.org.in.
All participants, including learners and mentors must not engage in any intimidation, harassment, or abusive or discriminatory behavior.
The following is a list of examples of behavior that is deemed highly inappropriate and will not be tolerated at Free Software Camp:
The following is a list of examples of behavior that is deemed highly inappropriate and will not be tolerated at Software Freedom Camp:
* Offensive verbal or written remarks related to any dimension(s) of diversity as listed in the FSCI code of conduct
* Sexual or violent images in public spaces (including presentation slides)
......@@ -70,13 +70,13 @@ We want everyone to have a good time in our program.
## Questions?
If you’re not sure about anything in this camp Code of Conduct, please contact the Free Software Camp organizers at camp at mm.gnu.org.in
If you’re not sure about anything in this camp Code of Conduct, please contact the Software Freedom Camp organizers at camp at fsci.in
If you wish to report a violation of this Code of Conduct, please contact camp-coc at mm.gnu.org.in
If you wish to report a violation of this Code of Conduct, please contact camp-coc at fsci.in
## Our Promise to You
* We will read every complaint and have several people on that alias that can help investigate and resolve the complaint.
* We will reply, in writing, as soon as possible to acknowledge the concern and assure that the matter is being investigated.
* Depending on the situation, we will talk to the reporter, the reported, or both to determine what mediation and/or action is necessary.
* Depending on the outcome of the investigation and mediation, we reserve the right to expel people not in compliance with our Code of Conduct from the camp. FSCI, the Free Software Camp Organizing Committee and the venue in which Free Software Camp is being held will not be held responsible for further costs incurred by the dismissal from the camp.
* Depending on the outcome of the investigation and mediation, we reserve the right to expel people not in compliance with our Code of Conduct from the camp. FSCI, the Software Freedom Camp Organizing Committee and the venue in which Software Freedom Camp is being held will not be held responsible for further costs incurred by the dismissal from the camp.
......@@ -3,7 +3,8 @@ title: "Learners"
date: 2020-09-28T23:16:23+05:30
slug: learners
---
**Anyone subject to systemic bias and impacted by under-representation in the technical industry in India can register as a learner.**
# Learner Expectations
- Anyone who can commit 15-20 hours per week
......@@ -11,15 +12,7 @@ slug: learners
- Willingness to contribute to society
- Willingness to use GNU/Linux
- Communicate with mentors using Free Software tools
<div class="deco-box">
<p>Do you want to apply as Mentor instead?</p>
<button><a href='../mentors'>Apply As Mentor</a></button>
</div>
<h2 class="medium-heading" style="text-align:center;margin-bottom:20px">Please fill out the form below to join as a learner</h2>
<h2 class="medium-heading" style="text-align:center;margin:20px 0">Learner application closed on Nov 7, 2021</h2>
<div style="height: 100vh">
<iframe frameborder="2" src="https://ee.kobotoolbox.org/single/FMPfxisV?returnUrl=https://camp.fsf.org.in/welcome" width="100%" height="100%" style="margin: auto;"></iframe>
</div>
If you have already registered for the camp, [click here](https://camp.fsci.in/onboarding/) to learn about your next steps.
---
title: "Mentors"
date: 2020-09-25T12:46:41+05:30
slug: mentors
---
# Mentor expectations
- Free software contributions
- Identify projects in which they can mentor learners
- Commit 5 hours per week of mentoring during the 3 months of the mentorship - including answering questions, reviewing contributions, and meeting with learners
- Real-time meeting with learner(s) preferably once a week - either through real-time chat, video conference, or phone
- Timely review of contributions - if a mentor is unable to provide contribution review, they are responsible for finding community members who can
- Guidance to learners about how to work in a free software community
- Guidance to learners about time management
- Connect learners to the larger free software community
- Communicate with learners using Free Software tools
Registrations are open for mentors and the last date to register is 15th Oct 2021.
Please fill the form below to register as a mentor.
<div id="kobo-form" style="height: 100vh">
<iframe frameborder="2" src="https://ee.kobotoolbox.org/single/VMLKcf1c" width="100%" height="100%" style="margin: auto;" ?returnUrl=""></iframe>
</div>
Looking forward to see you at the camp.
---
title: Registrations are now open for Software Freedom Camp Diversity Edition 2021
date: 2021-09-18T00:00:00+05:30
---
Update: Last date of registration for learners extended to 5th November 2021.
The world celebrates Software Freedom Day today with the aim of increasing awareness of Free Software and its virtues, and it is in the same spirit and excitement that we announce today the Software Freedom Camp Diversity Edition. Diversity edition is aiming to reach out to people subject to systemic bias and impacted by under-representation in the technical industry in India.
The Software Freedom Camp is an online mentorship camp on free software organized by Free Software Community of India in association with Ambedkar Periyar Phule Study Circle-IIT Bombay and Egalitarians. It will start in October and run till end of February.
The Software Freedom Camp will be a valuable opportunity for anyone who wishes to become a contributor to free software projects but feels like they need structured mentorship and a learning environment to get started. It will also be an opportunity for existing free software contributors to get new contributors to their project and facilitate their entry into the free software community.
Application links for learners and mentors are open now on the camp website and will close for learners on November 5 2021 (initial date of October 15 was extended).
The camp promises to be a safe space for learners to acquaint themselves with the philosophy of free software while also getting equipped to become free software contributors. In the first phase of the camp, learners will go through a series of assignments, interactions, movie screenings, and other activities that introduces them to the social benefits of free software and exposes them to the free software culture. They will get help in using free software on their own devices. At the end of this phase, they will get a chance to explore various free software projects and working with mentors they will be asked to create working proposals for contributing to these projects. The camp will match each learner to a mentor based on their proposal. In the second phase, each learner starts their free software contribution as per their accepted proposal, closely working with their mentor. There will be periodic review meetings to address the needs of the learners and help them stay on track.
Any free software contributor who can meet mentor expectations listed on the camp site can apply to become a mentor. They can also add their ideas to the list of ideas from which the learners can find starting points for writing their proposals. The mentors will work closely with the camp organizers in evaluation and selection of proposals, and with learners to facilitate the success of the selected proposals.
The camp encourages all kinds of contributions and contribution pathways - programming, system administration, packaging, UI/UX, forensics, localization, artworks, documentation, publicity, event organizing, etc. - as long as there is alignment with the free software philosophy. The camp is conducted online using free software communication tools like BigBlueButton, Matrix, etc. There is no fee for participation.
For more details and to apply, visit the [camp website](https://camp.fsci.in).
Camp Code of Conduct [is here](https://camp.fsci.in/code-of-conduct).
---
title: "Software Freedom Camp Diversity Edition 2021 Announcement"
date: 2021-07-30T19:14:28+05:30
draft: false
---
Software Freedom Camp (Diversity Edition) 2021 is an online mentorship programme focusing on diversity organized by [Free Software Community of India](https://fsci.in) and inspired by [Free Software Camp 2020](https://camp.fsf.org.in) and [Outreachy](https://www.outreachy.org/). You can learn more about the camp by visiting the [camp website](https://camp.fsci.in).
We have now opened our mailing list for announcements, Matrix/XMPP/IRC powered chat room and Mastodon/Pleroma/Fediverse accounts to receive updates about this year's Software Freedom Camp Diversity edition. Feel free to [join/follow us](https://camp.fsci.in/#contact) on any of these mediums for announcement regarding opening of registration and other updates regarding the camp.
If you want to join as a learner or a mentor, please check [this link](https://camp.fsci.in/#subscribe).
We are also looking for more people to join our organizing team. If you are interested, write an email to **camp** at **fsci.in** with a short introduction about yourself.
Looking forward to your participation in the camp.
---
title: "I've registered for the camp, now what?"
date: 2021-09-22T22:23:44+05:30
draft: false
slug: onboarding
---
### Welcome to Software Freedom Camp Diversity Edition 2021!
Congrats on completing the registration process.
## Make sure you've completed the following:
- [x] You have submitted the registration form.
- [x] You have subscribed to camp-announce list, that you have received your secret code via the welcome email (You will get a welcome mail after you reply to the confirmation mail). If you did not receive a secret code and if you have mentioned this in the registration form, someone from the organizing team will contact you via email.
## Next Steps
- [ ] Attend to the registrations confirmation meeting, on 10th or 17th October or 9th November 2021. Details [here](https://lists.fsci.in/hyperkitty/list/camp-announce@lists.fsci.in/thread/UBG6QA7Y2YJMAHJSSRK7BTC7JXJCUM25/).
- [ ] Look at the camp schedule available at https://camp.fsci.in/sched/ and subscribe to [this calendar](https://shared03.opsone-cloud.ch/index.php/apps/calendar/p/t35NZa6aeWCEXPjZ) using any calendar app like [Thunderbird](https://support.mozilla.org/en-US/kb/creating-new-calendars#w_icalendar-ics) on laptop/desktop or [ICSx⁵](https://icsx5.bitfire.at/) on Android. This will give you date, time and meeting link for all the sessions.
- [ ] We use free/libre software for our communication. Please install one of three applications mentioned below to join the camp chat room. We recommend you install [Quicksy](https://quicksy.im/) and joining via the following link: [xmpp:sfcamp2021-dived@groups.poddery.com?join](xmpp:sfcamp2021-dived@groups.poddery.com?join) (this link should work for other XMPP clients as well.).
Quicksy requires a phone number to create an account. In case you do not have access to a phone number or prefer not to use your phone number to create an XMPP account, you can follow this [guide](https://ravidwivedi.in/posts/xmpp-guide/) to create an XMPP account without a phone number on Android.
If you prefer Matrix or IRC, you can use the links given below:
- **Matrix**: https://matrix.to/#/#sfcamp:poddery.com
- **IRC** https://kiwiirc.com/nextclient/irc.pirateirc.net:+6697/#sfcamp
Joining any one of the above mentioned room via the respective application is sufficient as all three rooms are inter-connected.
In case you're facing difficulties to install an application or joining the room and need help, please do not hesitate to [ask](https://camp.fsci.in/#contact).
......@@ -4,9 +4,9 @@ date: 2020-09-29T00:23:05+05:30
slug: privacy
---
# Free Software Camp Privacy Policy <small>v1.0</small>
# Software Freedom Camp Privacy Policy <small>v1.0</small>
In Free Software camp we take individual privacy seriously, this document will act as the privacy policy for the Free Software Camp.
In Software Freedom Camp we take individual privacy seriously, this document will act as the privacy policy for the Software Freedom Camp.
## Data we collect from:
......
---
title: "List of Projects selected by Learners"
date: 2020-12-20T22:48:59+05:30
slug: projects
---
<div id="projects" style="text-align: center">
To Be Announced
</div>
---
title: "Schedule"
date: 2020-09-29T00:11:16+05:30
slug: sched
aliases:
- /schedule
---
<table style="width: 100%;">
<tbody>
<tr>
<th scope="row">Start date</th><th scope="row">Camp Phase</th>
</tr>
{{< schedule >}}
</tbody>
</table>
<br>
<br>
<br>
<center><h1> Public Sessions </h1></center>
<table style="width: 100%;">
<tbody>
<tr>
<th scope="row">Date</th><th scope="row">Session</th>
</tr>
{{< talks >}}
</tbody>
</table>
<br>
<br>
You can subscribe to learner's calendar [here](https://shared03.opsone-cloud.ch/index.php/apps/calendar/p/t35NZa6aeWCEXPjZ) which will have details of each session as soon as we finalize.
......@@ -7,19 +7,19 @@ aliases:
---
Dear Mentor,
<br><br>
We have received your application to join Free Software Camp 2020 organized by Free Software Foundation of India and Free Software Community of India. Please read this email and take necessary steps to complete your application.
We have received your application to join Software Freedom Camp 2020 organized by Free Software Foundation of India and Free Software Community of India. Please read this email and take necessary steps to complete your application.
1. Make sure you have read the [code of conduct](https://camp.fsf.org.in/coc)
1. Add your project ideas to this [wiki page](https://git.fosscommunity.in/fsfi/camp/-/wikis/ideas-list) (contact us with your git.fosscommunity.in username for getting access to edit the wiki page)
1. Subscribe to our low volume announcement [mailing list](https://lists.fsci.in/postorius/lists/camp-announce.mm.gnu.org.in/). All public announcements will be posted on this list.
1. Subscribe to our low volume announcement [mailing list](https://lists.fsci.in/postorius/lists/camp-announce.fsci.in/). All public announcements will be posted on this list.
1. Consider following us on [mastodon/fediverse](https://social.masto.host/@fscamp) for updates regarding the camp and join in the conversation on [matrix](https://matrix.to/#/#fscamp:poddery.com) using any of the matrix powered apps like Element. If new to using matrix, you can sign up for accounts by following instructions at [chat.feneas.org](https://chat.feneas.org), [chat.tchncs.de](https://chat.tchncs.de) or [chat.privacytools.io](https://chat.privacytools.io), instead of using matrix.org which will help to reduce their server load.
<div style="margin:30px auto">
<a class="button" href="../sched">View Camp Schedule</a>
</div>
You can reach out to us on camp at mm.gnu.org.in for any queries or concerns.
You can reach out to us on camp at fsci.in for any queries or concerns.
<br><br>
Regards,
Free Software Camp Organizing Team
Software Freedom Camp Organizing Team
......@@ -5,13 +5,13 @@ slug: welcome
---
Dear Learner,
<br><br>
We have received your application to join Free Software Camp 2020 organized by Free Software Foundation of India and Free Software Community of India. Please read this email and take necessary steps to complete your application.
We have received your application to join Software Freedom Camp 2020 organized by Free Software Foundation of India and Free Software Community of India. Please read this email and take necessary steps to complete your application.
1. Make sure you have read the [code of conduct](https://camp.fsf.org.in/coc).
1. Make sure you take the [learners' survey](https://ee.kobotoolbox.org/single/nxw4UE3B) that indicates to us your preferred language for sessions.
1. Subscribe to our low volume announcement [mailing list](https://lists.fsci.in/postorius/lists/camp-announce.mm.gnu.org.in/). All public announcements will be posted on this list.
1. Subscribe to our low volume announcement [mailing list](https://lists.fsci.in/postorius/lists/camp-announce.fsci.in/). All public announcements will be posted on this list.
1. Consider following us on [mastodon/fediverse](https://social.masto.host/@fscamp) for updates regarding the camp and join in the conversation on [matrix](https://matrix.to/#/#fscamp:poddery.com) using any of the matrix powered apps like Element.
1. If your age is below 15, please contact us at camp at mm.gnu.org.in.
1. If your age is below 15, please contact us at camp at fsci.in.
<div style="margin:30px auto">
<a class="button" href="../sched">View Camp Schedule</a>
......@@ -27,7 +27,7 @@ We have sent you an invitation to join the camp-announce mailing list, but Gmail
Akshay has created a [video](https://videos.fsci.in/videos/watch/76f79bb3-b5ca-4929-8ceb-74bb18783803) to explain how to join the mailing list:
<iframe width="560" height="315" sandbox="allow-same-origin allow-scripts allow-popups" src="https://videos.fsci.in/videos/embed/76f79bb3-b5ca-4929-8ceb-74bb18783803" frameborder="0" allowfullscreen style="padding:10px"></iframe>
<iframe src="https://videos.fsci.in/videos/embed/76f79bb3-b5ca-4929-8ceb-74bb18783803" style="min-height: 400px; width: 100%; margin: 10px;" frameborder="0" sandbox="allow-same-origin allow-scripts" allowfullscreen="allowfullscreen"></iframe>
## Mastodon/Fediverse:
......@@ -37,12 +37,20 @@ Mastodon is a Free Software to create a social media service similar to Twitter
Matrix is a communication protocol for sharing instant messages, photos, files and audio/video calls. Element is most feature-complete app for Matrix protocol and is available on smart phones and laptop/desktop. Matrix has a similar decentralized architecture to mastodon, where different people and organizations provide an interoperable network of home servers (similar to an instance of mastodon). If you are new to using matrix, you can sign up for accounts by following instructions at [https://chat.feneas.org](https://chat.feneas.org), [https://chat.tchncs.de](https://chat.tchncs.de) or [https://chat.privacytools.io](https://chat.privacytools.io), instead of using matrix.org which will help to reduce their server load.
Akhil has created a [video](https://videos.fsci.in/videos/watch/5fbd125f-d309-4eda-a4af-4009ced56f71) to explain how to use Matrix with Element.
Akhil has created a [video](https://videos.fsci.in/videos/watch/5fbd125f-d309-4eda-a4af-4009ced56f71) to explain how to use Matrix with Element:
<iframe width="560" height="315" sandbox="allow-same-origin allow-scripts allow-popups" src="https://videos.fsci.in/videos/embed/5fbd125f-d309-4eda-a4af-4009ced56f71" frameborder="0" allowfullscreen style="padding:10px"></iframe>
<iframe src="https://videos.fsci.in/videos/embed/5fbd125f-d309-4eda-a4af-4009ced56f71" style="min-height: 400px; width: 100%; margin: 10px;" frameborder="0" sandbox="allow-same-origin allow-scripts" allowfullscreen="allowfullscreen"></iframe>
You can reach out to us by mailing to camp at mm.gnu.org.in for any queries or concerns.
## BigBlueButton:
BigBlueButton is a browser-based free software video conferencing platform which we will use for camp presentations, sessions, and other interactive sessions.
Bady has created a [video](https://videos.fsci.in/videos/watch/b3f34489-ad2b-4cfb-956b-7a8bad799d89) to explain how to use BigBlueButton:
<iframe src="https://videos.fsci.in/videos/embed/b3f34489-ad2b-4cfb-956b-7a8bad799d89" style="min-height: 400px; width: 100%; margin: 10px;" frameborder="0" sandbox="allow-same-origin allow-scripts" allowfullscreen="allowfullscreen"></iframe>
You can reach out to us by mailing to camp at fsci.in for any queries or concerns.
<br><br>
Regards,
Free Software Camp Organizing Team
Software Freedom Camp Organizing Team
---
title: "Code Of Conduct"
date: 2020-09-28T23:25:31+05:30
slug: code-of-conduct
aliases:
- /coc
---
# Software Freedom Camp Code of Conduct
Software Freedom Camp, as part of the greater Free Software Community, assumes good faith on all those who wish to improve Free Software Projects. However, other experiences at other programs have shown us the need to adopt a Code of Conduct in which we state our expectations of all participants and organizers during the Software Freedom Camp.
This code of conduct applies to all participants of Software Freedom Camp, in addition to the [FSCI Code of Conduct](https://fsci.in/code-of-conduct/) that applies to the FSCI community as a whole.
## FSCI Diversity Statement
FSCI welcomes and encourages participation by everyone.
No matter how you identify yourself or how others perceive you: we welcome you. We welcome contributions from everyone as long as they interact constructively with our community.
While much of the work for our project is technical in nature, we value and encourage contributions from those with expertise in other areas, and welcome them into our community.
## Be excellent to each other
Software Freedom Camp is committed to providing a safe environment for all participants. All participants are expected to treat all people and infrastructure with respect and help create a welcoming environment. If you notice behavior that fails to meet this standard, please speak up and help to keep Software Freedom Camp as respectful as we expect it to be.
Software Freedom Camp is committed to the ideals expressed in our Diversity Statement (above) and the FSCI Code of Conduct. We ask all our members, mentors, volunteers, participants and guests to adopt these principles. We are a diverse community. Sometimes this means we need to work harder to ensure we're creating an environment of trust and respect where all who come to participate feel comfortable and included.
We value your participation and appreciate your help in realizing this goal.
## Be respectful
Respect yourself, and respect others. Be courteous to those around you. If someone indicates they don't wish to be photographed or recorded, respect that wish. If someone indicates they would like to be left alone, let them be. Our online spaces may be shared with members of the public; please be considerate to all patrons of these locations, even if they are not involved in the camp.
## Be inclusive
By default, all material presented in the camp should be suitable for people aged 12 and above.
If you could reasonably assume that some people may be offended by your talk or presentation, please state so explicitly to the Editorial Team. In case you are unsure if this applies to you, please contact the Editorial Team at camp at fsci.in. Please note that you are solely responsible if anything is deemed inappropriate and you did not contact the Editorial Team beforehand.
## Be aware
We ask everyone to be aware that we will not tolerate intimidation, harassment, or any abusive, discriminatory or derogatory behavior by anyone at any FSCI program or in related media.
Complaints can be made to the organizers by emailing camp-coc at fsci.in. All complaints made to camp organizers will remain confidential and be taken seriously. The complaint will be treated appropriately and with discretion. Should camp organizers or moderators consider it appropriate, measures they may take can include:
* The individuals may be told to apologize
* The individuals may be told to stop/modify their behavior appropriately
* The individuals may be warned that enforcement action may be taken if the behavior continues
* The individuals may be asked to immediately leave the program and/or will be prohibited from continuing to participate in any part of the program
* The incident may be reported to the appropriate authorities
## What does that mean for me?
All participants, including learners and mentors must not engage in any intimidation, harassment, or abusive or discriminatory behavior.
The following is a list of examples of behavior that is deemed highly inappropriate and will not be tolerated at Software Freedom Camp:
* Offensive verbal or written remarks related to any dimension(s) of diversity as listed in the FSCI code of conduct
* Sexual or violent images in public spaces (including presentation slides)
* Deliberate intimidation
* Stalking or following
* Unwanted photography or recording
* Sustained disruption of talks or other events
* Unwelcome physical contact or other forms of assault
* Unwelcome sexual attention
* Sexist, racist, or other exclusionary jokes
* unwarranted exclusion from camp or related events based on any dimension(s) of diversity as listed in the FSCI code of conduct
We want everyone to have a good time in our program.
## Questions?
If you’re not sure about anything in this camp Code of Conduct, please contact the Software Freedom Camp organizers at camp at fsci.in
If you wish to report a violation of this Code of Conduct, please contact camp-coc at fsci.in
## Our Promise to You
* We will read every complaint and have several people on that alias that can help investigate and resolve the complaint.
* We will reply, in writing, as soon as possible to acknowledge the concern and assure that the matter is being investigated.
* Depending on the situation, we will talk to the reporter, the reported, or both to determine what mediation and/or action is necessary.
* Depending on the outcome of the investigation and mediation, we reserve the right to expel people not in compliance with our Code of Conduct from the camp. FSCI, the Software Freedom Camp Organizing Committee and the venue in which Software Freedom Camp is being held will not be held responsible for further costs incurred by the dismissal from the camp.
---
title: "Learners"
date: 2020-09-28T23:16:23+05:30
slug: learners
---
# शिक्षार्थी से अपेक्षाएँ <!-- Learner Expectations //-->
- कोई भी जो प्रति सप्ताह 15-20 घंटे प्रतिबद्ध कर सकता हो <!-- Anyone who can commit 15-20 hours per week//-->
- सीखने की उत्सुकता <!-- Eagerness to learn //-->
- समाज में योगदान देने की इच्छा <!-- Willingness to contribute to society //-->
- GNU/Linux का उपयोग करने की इच्छा <!-- Willingness to use GNU/Linux //-->
- मुफ्त सॉफ्टवेयर उपकरण का उपयोग कर सलाहकारों के साथ संवाद करना <!-- Communicate with mentors using Free Software tools //-->
पंजीकरण शिक्षार्थियों के लिए खुले हैं और पंजीकरण करने की आखिरी तारीख 15 अक्टूबर 2021 है। कोई भी जो भारत में प्रौद्योगिकी उद्योग में कम प्रतिनिधित्व, प्रणालीगत पूर्वाग्रह, या भेदभाव का सामना कर रहा है वह आवेदन करने के लिए आमंत्रित है ।
कृपया एक शिक्षार्थी के रूप में रजिस्टर करने के लिए नीचे दिए गए फॉर्म को भरें।
<!-- Registrations are open for learners and the last date to register is 15th Oct 2021. Anyone subject to systemic bias and impacted by under-representation in the technical industry in India can register as a learner.
Please fill the form below to register as a learner. //-->
<div id="kobo-form" style="height: 100vh">
<iframe frameborder="2" src="https://ee.kobotoolbox.org/single/n581ztxO" width="100%" height="100%" style="margin: auto;" ?returnUrl=""></iframe>
</div>
<!--Looking forward for your participation in the camp.//-->