Skip to content

Instantly share code, notes, and snippets.

View Grandolf49's full-sized avatar
🎯
Focusing

Chinmay Kulkarni Grandolf49

🎯
Focusing
  • MindTickle
  • Pune
View GitHub Profile
@Grandolf49
Grandolf49 / circleci-android-config.yml
Created September 25, 2020 17:48
CircleCI Configuration file for building Android Projects
version: 2.1
orbs:
android: circleci/android@0.2.1
jobs:
build:
executor: android/android
steps:
@Grandolf49
Grandolf49 / fineract-valid-spec.yaml
Created August 22, 2020 21:12
This is an example of a valid spec file generated by swagger. Test it using https://validator.swagger.io/
This file has been truncated, but you can view the full file.
openapi: 3.0.3
info:
title: Apache Fineract
description: "Apache Fineract is a secure, multi-tenanted microfinance platform\n\
\nThe goal of the Apache Fineract API is to empower developers to build apps on\
\ top of the Apache Fineract Platform<br>The [reference app](https://cui.fineract.dev)\
\ (username: mifos, password: password) works on the same demo tenant as the interactive\
\ links in this documentation\n\n- The API is organized around [REST](https://en.wikipedia.org/wiki/Representational_state_transfer)\n\
- Find out more about Apache Fineract [here](/fineract-provider/api-docs/apiLive.htm#top)\n\
- You can [Try The API From Your Browser](/fineract-provider/api-docs/apiLive.htm#interact)\n\
@Grandolf49
Grandolf49 / fineract.yaml
Created August 4, 2020 16:44
Apache Fineract - Swagger Codegen generated Open API 3.0.3 Spec File
This file has been truncated, but you can view the full file.
openapi: 3.0.3
info:
title: Apache Fineract
description: "Apache Fineract is a secure, multi-tenanted microfinance platform\n\
\nThe goal of the Apache Fineract API is to empower developers to build apps on\
\ top of the Apache Fineract Platform<br>The [reference app](https://cui.fineract.dev)\
\ (username: mifos, password: password) works on the same demo tenant as the interactive\
\ links in this documentation\n\n- The API is organized around [REST](https://en.wikipedia.org/wiki/Representational_state_transfer)\n\
- Find out more about Apache Fineract [here](/fineract-provider/api-docs/apiLive.htm#top)\n\
- You can [Try The API From Your Browser](/fineract-provider/api-docs/apiLive.htm#interact)\n\
@Grandolf49
Grandolf49 / response.json
Last active August 25, 2020 12:32
Apache Fineract spec file for swagger codegen
{
"swagger": "2.0",
"info": {
"description": "Apache Fineract is a secure, multi-tenanted microfinance platform. <br /> The goal of the Apache Fineract API is to empower developers to build apps on top of the Apache Fineract Platform. The reference app [ https://demo.openmf.org ] (username: mifos, password: password) works on the same demo tenant as the interactive links in this documentation. <br/>The API is organized around REST [ https://en.wikipedia.org/wiki/Representational_state_transfer ] <br/> Find out more about Apache Fineract on [ https://demo.openmf.org/api-docs/apiLive.htm#top ] <br/> You can Try The API From Your Browser itself at [ https://demo.openmf.org/api-docs/apiLive.htm#interact ] <br/> The Generic Options are available at [ https://demo.openmf.org/api-docs/apiLive.htm#genopts ] <br/> Find out more about Updating Dates and Numbers at [ https://demo.openmf.org/api-docs/apiLive.h
@Grandolf49
Grandolf49 / config-json-options.md
Last active July 7, 2020 08:30
Options available for config.js used to configure SDK Client generation using Swagger CodeGen.

CONFIG OPTIONS

    sortParamsByRequiredFlag
        Sort method arguments to place required parameters before optional parameters. (Default: true)

    ensureUniqueParams
        Whether to ensure parameter names are unique in an operation (rename parameters that are not). (Default: true)

    allowUnicodeIdentifiers

boolean, toggles whether unicode identifiers are allowed in names or not, default is false (Default: false)

@Grandolf49
Grandolf49 / gsoc_20_mifos_android_sdk.md
Last active February 23, 2023 09:31
GSoC '20 Report | The Mifos Initiative | Mifos Android SDK

gsoc_logo mifos_logo






@Grandolf49
Grandolf49 / settings.json
Created April 30, 2020 16:55
C++ Configuration for settings.json
"code-runner.executorMap": {
"cpp": "cd $dir && g++ -std=c++14 $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt"
}
@Grandolf49
Grandolf49 / main.cpp
Last active April 30, 2020 16:48
Vector initialization example
vector<vector<int>> temp;
temp.push_back({1, 2, 3});