Skip to content

Instantly share code, notes, and snippets.

View MrBW's full-sized avatar
👨‍💻
Working

Benjamin Wilms MrBW

👨‍💻
Working
View GitHub Profile
@MrBW
MrBW / HelloController.java
Last active November 4, 2018 03:09
Chaos Monkey for Spring Boot - Spring Boot 2.1.0-RC1
package com.chaos.monkey.hystrix.bug.demo;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* @author Benjamin Wilms
*/
@RestController
public class HelloController {
@MrBW
MrBW / DemoApplication.java
Created August 2, 2018 19:50
chaos-monkey-pivotal-test
package com.issue.chaos.monkey.demo;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class DemoApplication {
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
@MrBW
MrBW / designer.html
Last active August 29, 2015 14:25
designer
<link rel="import" href="../polymer/polymer.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
@MrBW
MrBW / designer.html
Last active August 29, 2015 14:25
designer
<link rel="import" href="../google-map/google-map.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;