create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
| #!/bin/bash | |
| # Call with either enable or disable as first parameter | |
| if [[ "$1" == 'enable' || "$1" == 'disable' ]]; then | |
| sudo systemctl set-default multi-user.target --force | |
| sudo systemctl $1 lightdm.service --force | |
| sudo systemctl $1 graphical.target --force | |
| sudo systemctl $1 plymouth.service --force | |
| else | |
| echo Call with either "enable" or "disable" as first parameter. | |
| fi |
| package com.zanclus.socialshell; | |
| import com.zanclus.socialshell.utils.AbstractLoggingVerticle; | |
| import static io.vertx.ext.auth.shiro.LDAPAuthRealmConstants.*; | |
| import io.vertx.core.AsyncResult; | |
| import io.vertx.core.Future; | |
| import io.vertx.core.Verticle; | |
| import io.vertx.core.http.HttpServerOptions; | |
| import io.vertx.core.json.JsonObject; |
| package net.javainthebox.jfx.animation; | |
| import javafx.animation.FadeTransition; | |
| import javafx.animation.KeyFrame; | |
| import javafx.animation.KeyValue; | |
| import javafx.animation.ScaleTransition; | |
| import javafx.animation.Timeline; | |
| import javafx.animation.TranslateTransition; | |
| import javafx.application.Application; | |
| import javafx.event.ActionEvent; |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"