Skip to content

Instantly share code, notes, and snippets.

View miPlodder's full-sized avatar
:bowtie:
Always Learning

Saksham Handu miPlodder

:bowtie:
Always Learning
View GitHub Profile
@miPlodder
miPlodder / Scripting_Batching_HandBook.md
Last active July 15, 2022 14:31
Scripting and Batching Starter Guide
  • Opening and generating a load of 100 Tabs in browser
@echo off
for /l %%x in (1, 1, 100) do (
	start http://localhost:8080/endpoint
)
@miPlodder
miPlodder / JavaLessons.md
Created February 23, 2022 14:34
This gist contains quick notes for newer features/classes/etc in Java 8/11.

Optional class

This class is introduced in Java 8.

Optional.ofNullable(.) - allows passed parameter to be null. Optional.of(.) - throws NullPointerException if passed parameter is null

optional.isPresent(.) - checks the value is present or not optional.orElse(.) - returns the value if present otherwise returns, the default value passed
optional.get() - gets the value, value should be present `optional.map(.).orElse(.);

@miPlodder
miPlodder / CyberSecurity.md
Created February 9, 2022 08:34
This gist consists a list of all the attacks i got a chance to work on.
@miPlodder
miPlodder / JPA.md
Created February 9, 2022 04:29
This gist contains notes of JPA and it's wrapper in java.
@miPlodder
miPlodder / Docker Handbook.md
Last active September 6, 2021 06:03
This gist contains list of useful docker commands.

Windows Sub-system for Linux list

wsl -l -v

Version of installed docker

docker version

Run an image

docker run hello-world

Login to Dockerhub

@miPlodder
miPlodder / stacktrace.md
Created December 3, 2020 12:11
delayed-message-exchange junits failing stacktrace

java.lang.IllegalStateException: Failed to load ApplicationContext

   at org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate.loadContext(DefaultCacheAwareContextLoaderDelegate.java:132)

   at org.springframework.test.context.support.DefaultTestContext.getApplicationContext(DefaultTestContext.java:123)

   at org.springframework.test.context.web.ServletTestExecutionListener.setUpRequestContextIfNecessary(ServletTestExecutionListener.java:190)

   at org.springframework.test.context.web.ServletTestExecutionListener.prepareTestInstance(ServletTestExecutionListener.java:132)
@miPlodder
miPlodder / GSoC'19@Mifos.md
Last active February 12, 2020 18:50
My learning and the work completed during the GSoC period for Mifos Organisation.

About Mifos Organisation

The best thing about Mifos Organisation is that it’s a diverse community with members from all parts of the globe and all of them have been very supportive and helping. Talking of my area of interest, that’s DEVELOPMENT. I loved working with Rajan Maurya , Edward Cable, and other fellow interns and will continue to contribute to work even after the GSoC period.

This is the link to all of my work that I have done.


@miPlodder
miPlodder / GSoC'18@Mifos.md
Last active January 29, 2019 16:56
This is my working experience during the GSoC period for Mifos Organisation.

About Mifos Organisation

The best thing about Mifos Organisation is that it’s a diverse community with members from all parts of the globe and all of them have been very supportive and helping. Talking of my area of interest, that’s DEVELOPMENT. I loved working with Rajan Maurya , Edward Cable, and other fellow interns and will continue to contribute to work even after the GSoC period.


Learning during the GSoC period

@miPlodder
miPlodder / Mifos-Self-Service-App-Wiki.md
Last active August 8, 2018 05:50
This contains the documentation of the newly added features during the GSoC'18 period and also the upcoming features whose work is currently in API Development Phase.

New Features

This Wiki page contains the list of new functionality that were added lately,

1) Support to Add Guarantor (#) [PR] This feature allows the user to add, update, delete, view details of guarantor and list all guarantors associated with a Loan.

List of JSON Files Used - guarantorTemplate.json, guarantorList.json

@miPlodder
miPlodder / Git Cheatsheet.md
Last active July 11, 2022 06:44
Git Commands Cheatsheet

Basic Commands

  • Initialising a Repository
>> git init 
  • Adding changes to ready to commit state