create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
| package main | |
| import ( | |
| "bytes" | |
| "fmt" | |
| "io" | |
| "log" | |
| "mime/multipart" | |
| "net/http" | |
| "os" |
| (a) http://www.example.com/ | |
| (b) http://www.example.com | |
| (c) https://www.example.com/ | |
| (d) https://www.example.com | |
| (e) https://example.com/ | |
| (f) https://example.com/fish | |
| (g) https://example.com/fish/ | |
| Trailing slash on hostnames don't matter: | |
| (a) = (b), (c) = (d) |
| b |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
Kafka 0.11.0.0 (Confluent 3.3.0) added support to manipulate offsets for a consumer group via cli kafka-consumer-groups command.
kafka-consumer-groups --bootstrap-server <kafkahost:port> --group <group_id> --describeNote the values under "CURRENT-OFFSET" and "LOG-END-OFFSET". "CURRENT-OFFSET" is the offset where this consumer group is currently at in each of the partitions.
| using System.Threading.Tasks; | |
| using Newtonsoft.Json; | |
| using Refit; | |
| using System.Net.Http; | |
| using System; | |
| namespace wms_xamarin | |
| { | |
| public class LoginApi | |
| { |
If you're using Ubuntu Linux on your daily basis work, you've probably Java installed on your machine. Personally I prefer using Wepupd8 PPA to manage JAVA installation, it makes my life a lot more easier especially for updates. The Wepupd8 team didn’t add any binary for Oracle JAVA installation and they made a script to download the Oracle JAVA from Oracle website and install it straight away. So whenever Oracle will release the update, I can simple upgrade via package manager.
Working with multiple Java versions in your machine is a normal thing, especially if you're a Java developer, and because I'm a (very) lazy person, I'm always looking for a quicker/easier way to make the switch.
Today, I'll share with you my tip on this subject. First, let's run the following command:
(note: replace ORGANIZATION and PROJECT)
git clone git clone [email protected]:ORGANIZATION/PROJECT.git my-repository