(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.
| import java.io.IOException; | |
| import java.net.URI; | |
| import java.net.http.HttpClient; | |
| import java.net.http.HttpRequest; | |
| import java.net.http.HttpResponse; | |
| public class HealthCheck { | |
| public static void main(String[] args) { | |
| HttpClient client = HttpClient.newHttpClient(); | |
| HttpRequest request = HttpRequest.newBuilder() |
| // More information: https://danielupshaw.com/openscad-rounded-corners/ | |
| // Set to 0.01 for higher definition curves (renders slower) | |
| $fs = 0.15; | |
| module roundedcube(size = [1, 1, 1], center = false, radius = 0.5, apply_to = "all") { | |
| // If single value, convert to [x, y, z] vector | |
| size = (size[0] == undef) ? [size, size, size] : size; | |
| translate_min = radius; |
| // Compiled by Igor Shults | |
| // Last Updated: July 23, 2020 | |
| GRAILS GROOVY SOURCE | |
| 4.1.0 2.5.14 https://github.com/grails/grails-core/blob/v4.1.0/gradle.properties | |
| 4.0.4 2.5.6 | |
| 4.0.3 2.5.6 | |
| 4.0.2 2.5.6 | |
| 4.0.1 2.5.6 | |
| 4.0.0 2.5.6 https://github.com/grails/grails-core/blob/v4.0.0/build.gradle |
(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.
| /* ~/Library/KeyBindings/DefaultKeyBinding.Dict | |
| This file remaps the key bindings of a single user on Mac OS X 10.5 to more closely | |
| match default behavior on Windows systems. | |
| You must log out and back in to see these changes. | |
| Here is a rough cheatsheet for syntax. | |
| Key Modifiers | |
| ^ : Ctrl | |
| $ : Shift |
| apply plugin: 'groovy' | |
| apply plugin: 'idea' | |
| apply plugin: 'maven' | |
| apply plugin: 'eclipse' | |
| apply plugin: 'project-report' | |
| version = '1.0-SNAPSHOT' | |
| group = '' | |
| versions = [ |