This post is about using docker-machine to create, use and manage a Docker host inside of a local virtual machine. From here.
IPython, Jupyter & Miniconda
The content of this post is from here.
Groovy Ratpack
Ratpack is a lightweight web framework written in Java and Groovy.
Groovy Grape
Groovy Grape is Groovy’s dependency manager. A big difference between Grape and other language dependency managers like pip, gem and npm is that, it uses language element(annoation, method call) to describe the dependencies inside a Groovy file, rather than a file out of the program itself like “requirements.txt”, “Gemfile” and “package.json”.
Git Branch Commands
git submodule
From here.
Launch VLC Player from Command Line on Mac
From here.
Java Lambda Type Inference
I see code like this:
1 |
|
Here is the code in “Utils.java”:
1 | public static void submit(Request request, Consumer<Request> comsumer) { |
“request -> log(request)” is a lambda expression, but how does it become a “Consumer”?
Git: Syncing a Fork
Sync a fork of a repository to keep it up-to-date with the upstream repository. From here. This is useful when you forked a repository in GitHub and want to get the latest changes made after the fork from the original repository to your repository.
Create Spring Boot Gradle Project
The purpose is to create a Spring Boot project in Gradle flavor. Refer here.