Welcome

Welcome

Info
All hints and notes here may not be applicable to Your case.
If you want to use my notes - do it wisely.

KBD usage example

Ctrl+]

Q&A section examples

  1. How can you save your work when using The Go Playground?

  2. How to prepare to work?

    You can’t

  3. How to make live better?

    You can’t too :-)

Highlight example with lines

It is not using generic 3 backtick notation
Instead shortcode is used (not look like shotcode but it is :-))

{{ <*/ highlight java "linenos=table,hl_lines=8 15-17,linenostart=199" */> }}
...
{{ <*/ / highlight */> }}
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
import java.util.Random;

class GenerateRandom {
    public static void main( String args[] ) {
      // Instance of random class
      Random rand = new Random(); 
      // Setting the upper bound to generate the
      // random numbers in specific range
      int upperbound = 25;
      // Generating random values from 0 - 24 
      // using nextInt()
      int int_random = rand.nextInt(upperbound); 
      // Generating random using nextDouble 
      // in 0.0 and 1.0 range
      double double_random = rand.nextDouble();
      // Generating random using nextDouble
      // in 0.0 and 1.0 range
      float float_random = rand.nextFloat();
      
      // Printing the generated random numbers
      System.out.println("Random integer value from 0 to" + (upperbound-1) + " : " + int_random);
      System.out.println("Random float value between 0.0 and 1.0 : " + float_random);
      System.out.println("Random double value between 0.0 and 1.0 : " + double_random);
    }
}
// ... code

Simple graphwiz

Hello → Word
Figure 1. Hello → Word

Simple java code block

dad
dasdsadd
dasddfsvva
das

VegaLite chart example

Diagram