(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| global | |
| log 127.0.0.1:514 local0 | |
| defaults | |
| mode http | |
| log global | |
| option httplog | |
| option http-server-close | |
| option dontlognull | |
| option redispatch |
| 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); | |
| } |
by Murilo Gun
Follow instructions in Spring Cloud Data Flow Runtime - Deploying on YARN
| #!/usr/bin/groovy | |
| /* | |
| * Copyright (c) 2016, Andrey Makeev <[email protected]> | |
| * 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/"], |
| apiVersion: v1 | |
| kind: ReplicationController | |
| metadata: | |
| name: kube-registry-v0 | |
| namespace: kube-system | |
| labels: | |
| k8s-app: kube-registry | |
| version: v0 | |
| spec: | |
| replicas: 1 |
| #!groovy | |
| pipeline { | |
| agent any | |
| stages { | |
| stage('Checkout') { | |
| steps { | |
| checkout scm | |
| } |