Skip to content

Instantly share code, notes, and snippets.

View cesarcneto's full-sized avatar

Cesar Caetano Neto cesarcneto

  • Brazil
  • 04:45 (UTC -03:00)
View GitHub Profile
@cesarcneto
cesarcneto / specification-challenge.md
Last active May 24, 2022 09:41
Interview Challenge

Objective

Implement a function that authorizes a transaction for a specific account, following some predefined rules.

Input

You'll receive as input:

  • The account data
@cesarcneto
cesarcneto / README.md
Last active March 31, 2022 07:41
Babashka script created to help hiring managers to reach out to OpenSource contributors. It simply fetches contributors from a give repo, fetches their user profile plus most recent git commit of each one.

fetch-gh-contributors

This is a babashka script created to help hiring managers to reach out to OpenSource contributors. It fetches contributors from a given Github repo, fetches their user profile plus most recent git commit of each user.

Requirements

To make use of this script you're expected to have installed the following softwares:

@cesarcneto
cesarcneto / flink-quickstart-scala.sh
Created September 1, 2021 19:46
Create an apache-flink scala project using the provided quickstart archetype
@cesarcneto
cesarcneto / java11-junit5-quickstart.sh
Last active September 1, 2021 20:18
Creates a java 11 + junit 5 maven project
mvn archetype:generate \
-DarchetypeGroupId=uk.co.markg.archetypes \
-DarchetypeArtifactId=java11-junit5 \
-DarchetypeVersion=1.0 \
-DgroupId=io.dev \
-DartifactId=java-project \
-DinteractiveMode=false