Intellij Shortcuts:
Shift + Command + A -> Show Shortcuts
Command + O -> Navigate Class
Shift + Command + O -> Navigate Files
Font ligatures for ->, !=
| Topics | |
| kafka-topics.sh --zookeeper localhost:2181 --list | |
| Topics | |
| kafka-topics.sh --zookeeper localhost:2181 --list | |
| Delete topics | |
| kafka-topics.sh — zookeeper localhost:2181 — delete — topic |
Intellij Shortcuts:
Shift + Command + A -> Show Shortcuts
Command + O -> Navigate Class
Shift + Command + O -> Navigate Files
Font ligatures for ->, !=
| import java.io.FileWriter; | |
| import java.util.*; | |
| import java.util.concurrent.ForkJoinPool; | |
| import java.util.concurrent.TimeUnit; | |
| import java.util.stream.Stream; | |
| class CSVWriter { | |
| public static void main(String[] args) throws Exception { | |
| String[] names = {"beam", "maa", "saket", "alli", "jakid"}; |
| package com.prashanth; | |
| public class StringMatching { | |
| public static void main(String[] args) { | |
| String pattern = "eeccd"; | |
| String word = "cceeccd"; | |
| int k = 0; |
| Java SE Major version | |
| 1.0.2 45 | |
| 1.1 45 | |
| 1.2 46 | |
| 1.3 47 | |
| 1.4 48 | |
| 5.0 49 | |
| 6 50 | |
| 7 51 | |
| 8 52 |