Skip to content

Instantly share code, notes, and snippets.

View Roshan13046's full-sized avatar

Roshan Prakash Raut Roshan13046

View GitHub Profile
@Roshan13046
Roshan13046 / GSoC'2020@Mifos.md
Created December 3, 2020 15:31 — forked from jawidMuhammadi/GSoC'2020@Mifos.md
This gist file has been created to show case my work done in Google Summer of Code 2020


My Journey in GSoC 2020

In this Gist file, I will share what I learned and completed in Google Summer of Code 2020 with Mifos Organization. One of the best things about the Mifos Organisation is that it’s a diverse community with members from all around the world and all of them have been very supportive and helping. I loved working with Edward Cable, Rajan Maurya, Saksham Handu, Saransh Sharma, and I would like to thank all of them especially my mentor and Edward for their guidance, help, and motivation throughout the program. I learned a lot of things from this program and working with this incredible community has been an amazing experience for me.

GSoC Project:

@Roshan13046
Roshan13046 / GSoC_2020_Dart_Prerak_Mann.md
Created December 3, 2020 15:10 — forked from mannprerak2/GSoC_2020_Dart_Prerak_Mann.md
Google summer of code 2020 - Dart (google) - Prerak Mann

GSoC 2020: Programmatic YAML Modification Package (Dart)

Official Link

Description of Work Done

  1. Created a Dart package for YAML Modification - package:yaml_edit
    • Preserves comments and whitespace where possible.
    • Allows users to define their expected styles in the final output.
  • 3 testing strategies: unit tests, testing against golden files, and generating 40 sets of 1000 random modifications to check for edge cases.
@Roshan13046
Roshan13046 / faq.html
Created October 13, 2020 09:51 — forked from neilgee/faq.html
FAQ Page with Show and Hide Questions and Answers
<script type="text/javascript" src="//code.jquery.com/jquery-1.11.0.min.js"></script>
<script>
$(document).ready(function() {
$('.faq_question').click(function() {
if ($(this).parent().is('.open')){
$(this).closest('.faq').find('.faq_answer_container').animate({'height':'0'},500);
$(this).closest('.faq').removeClass('open');