We will install OpenJDK for anything Java 8 and later. Anything prior is probably Oracle JDK.
Prerequisite: Install Homebrew.
Remember to update your formulas.
$ brew updateWe will install OpenJDK for anything Java 8 and later. Anything prior is probably Oracle JDK.
Prerequisite: Install Homebrew.
Remember to update your formulas.
$ brew update| ----- Interested Reads------ | |
| + Interesting Read (Serverless Architecture of Acloud guru) | |
| https://read.acloud.guru/serverless-the-future-of-software-architecture-d4473ffed864 | |
| ----- Getting Started------- | |
| + Requirements | |
| + AWS Free Tier Account | |
| + PC with putty and putty keygen/ Mac | |
| + Optional | |
| + IoS/ Android App $20 |
| /** | |
| * Copyright 2017 Ambud Sharma | |
| * | |
| * Licensed under the Apache License, Version 2.0 (the "License"); | |
| * you may not use this file except in compliance with the License. | |
| * You may obtain a copy of the License at | |
| * | |
| * http://www.apache.org/licenses/LICENSE-2.0 | |
| * | |
| * Unless required by applicable law or agreed to in writing, software |
| import java.io.PrintWriter | |
| import java.util.Properties | |
| import org.apache.spark.SparkContext | |
| import org.apache.spark.scheduler._ | |
| import org.apache.spark.storage.RDDInfo | |
| /** | |
| * Created by petrovg on 22/04/2017. | |
| */ |
Primary differences between SSH and HTTPS. This post is specifically about accessing Git repositories on GitHub.
plain Git, aka git://github.com/
Does not add security beyond what Git itself provides. The server is not verified.
If you clone a repository over git://, you should check if the latest commit's hash is correct.
Code is clean if it can be understood easily – by everyone on the team. Clean code can be read and enhanced by a developer other than its original author. With understandability comes readability, changeability, extensibility and maintainability.