Skip to content

Instantly share code, notes, and snippets.

View brunocrt's full-sized avatar
🏠
Working from home

Bruno Tinoco brunocrt

🏠
Working from home
  • New York, NY
View GitHub Profile
@staltz
staltz / introrx.md
Last active July 25, 2024 16:52
The introduction to Reactive Programming you've been missing
@hkhamm
hkhamm / testing_spark_cassandra.md
Last active August 8, 2019 13:29
Testing Spark and Cassandra
global
log 127.0.0.1:514 local0
defaults
mode http
log global
option httplog
option http-server-close
option dontlognull
option redispatch
@efenderbosch
efenderbosch / EncryptablePropertiesPropertySource
Created January 12, 2015 14:39
Encryptable YAML for Spring Boot
public class EncryptablePropertiesPropertySource extends MapPropertySource {
@SuppressWarnings({ "unchecked", "rawtypes" })
public EncryptablePropertiesPropertySource(String name, Properties source) {
super(name, (Map) source);
}
protected EncryptablePropertiesPropertySource(String name, Map<String, Object> source) {
super(name, source);
}
@vicainelli
vicainelli / README.md
Last active October 6, 2023 18:33
10 livros que todo mundo deveria ler - by Murilo Gun

10 livros que todo mundo deveria ler

by Murilo Gun

  1. Abundancia - O futuro é melhor do que você imagina | Steven Kotler e Peter H. Diamandis
  2. VLEF - Vai lá e faz
  3. A Startup Enxuta - Como Os Empreendedores Atuais Utilizam a Inovação
  4. Marketing e Comunicação da Era Pós-Digital - As Regras Mudaram | Walter Longo
  5. De Onde Vem as Boas Ideias | Steven Johnson
  6. Steve Jobs - A Biografia | Walter Isaacson
@trisberg
trisberg / scdf-yarn-spark-task.adoc
Last active March 16, 2018 15:55
Running a Spark application on YARN using Spring Cloud Data Flow

Running a Spark application on YARN using Spring Cloud Data Flow

Deploy Spring Cloud Data Flow on YARN

Download the Spark distribution and copy assembly jar file to HDFS

For Spark 1.6.1 do the following

@amaksoft
amaksoft / Jenkinsfile
Last active December 29, 2021 08:15
My example Jenkins Pipeline setup for Android app project
#!/usr/bin/groovy
/*
* Copyright (c) 2016, Andrey Makeev <amaksoft@gmail.com>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
{ "conferences": [
{
"name": "Sao Paulo Science meetup",
"month": "January",
"city": "Sao Paulo",
"country": "Brazil",
"role": ["Speaker"],
"slides": ["http://slides.com/hannelitavante-hannelita/geometria-analitica#/"],
"video": "https://www.youtube.com/watch?v=a9s2PQavqYk",
"website": ["https://www.meetup.com/SP-Math-Physics-Science-Meetup/events/227582851/"],
@coco98
coco98 / kube-registry.yaml
Created May 2, 2017 16:31
Docker registry on minikube
apiVersion: v1
kind: ReplicationController
metadata:
name: kube-registry-v0
namespace: kube-system
labels:
k8s-app: kube-registry
version: v0
spec:
replicas: 1
@eriadam
eriadam / example-jenkinsfile-pipeline.groovy
Last active March 31, 2024 15:14
example-jenkinsfile-pipeline.groovy
#!groovy
pipeline {
agent any
stages {
stage('Checkout') {
steps {
checkout scm
}