Search In This Website

Selasa, 18 Februari 2025

Places In The City


airport
bakery
bank
bookstore
bus station
butcher
café
craft market

Related Post

AsciiDoctor BlackBox Testing Result Sample

1. Open the Asciidoctor editor.

2. type this following Asciidoctor code in the Asciidoctor editor

.Black Box Testing

[options="header"]

|===

|Page|Testing Button|Status


.6+|Home|About|✓ Success

|Academics|✓ Success

|Register|✓ Success

|News & Events|✓ Success

|Research|✓ Success

|Campuses|✓ Success


.5+|Learning|Students|✓ Success

|Social|✓ Success

|Parents|✓ Success

|Faculty & Staff|

|Alumni|✓ Success

|===

3. Save As blackBoxTestingResult-sample.asciidoc

4. Result, similar like this:

Table 1. Black Box Testing
Page Testing Button Status

Home

About

✓ Success

Academics

✓ Success

Register

✓ Success

News & Events

✓ Success

Research

✓ Success

Campuses

✓ Success

Learning

Students

✓ Success

Social

✓ Success

Parents

✓ Success

Faculty & Staff

Alumni

✓ Success


Notes

  • AsciiDoctor syntax code .Black Box Testing is for table caption.
  • AsciiDoctor syntax code .5+|Darwin is for merge 5 row cells.

< to learn Category Table Design in AsciiDoctor, click on Category Table Design In AsciiDoctor

to learn Data Table in AsciiDoctor, click on AsciiDoctor Decision Table >

Bibliography

https://docs.asciidoctor.org/
https://www.unistra.fr/ ( university )

Senin, 17 Februari 2025

Study About Visual Basic Classic

Working In The Visual Studio 6 / Visual Basic 6 Programming Environment

Variable And Data Type

Function

Graphical User Interface ( GUI )

Debugging Your Visual Basic Applications

Database Programming Using Visual Basic


Markdown Horizontal Rules

Horizontal rule is created using three or more dashes ( --- ) on a line by itself.

---

Example:

Try to put a blank line before...

---

...and after a horizontal rule.

Output

Try to put a blank line before...


...and after a horizontal rule.




lightweight markup syntax, lightweight markup document, lightweight markup language


Bibliography

http://daringfireball.net/projects/markdown/

https://docs.github.com/

https://gist.github.com/stevenyap


Related Post

Markdown Link 1

Syntax Highlight In Markdown Code Block

Code Block In Markdown

Comment In Markdown

Study About Markdown 1

Markdown, AsciiDoctor, reStructuredText File Extension


Sabtu, 15 Februari 2025

AsciiDoctor Unordered List

1. Open the AsciiDoctor editor.
2. Type this following Asciidoctor code sample in Asciidoctor editor:
= Learning Unordered List In AsciiDoctor
:author: AsciiDoctor
:co-author: Tutor Course and After School Course
:revnumber: 1.0
:revdate: June 6th, 2007
:doctype: article
:toc:
:icons:
:lang: en
* Popular Names For Male
** Christopher
** David
** James
** John
** Joseph
** Michael
** Richard
** Robert
** Thomas
** William
* Popular Names For Female
** Barbara
** Elizabeth
** Jennifer
** Jessica
** Karen
** Linda
** Mary
** Patricia
** Sarah
** Susan

3. Result, similar like this:

Learning Unordered List In AsciiDoctor

  • Popular Names For Male
    • Christopher
    • David
    • James
    • John
    • Joseph
    • Michael
    • Richard
    • Robert
    • Thomas
    • William
  • Popular Names For Female
    • Barbara
    • Elizabeth
    • Jennifer
    • Jessica
    • Karen
    • Linda
    • Mary
    • Patricia
    • Sarah
    • Susan
Notes you can change doctype from article to book or manpage




asciidoc, bullet list, ul, lightweight markup syntax, lightweight markup document, lightweight markup language

Bibliography

https://docs.asciidoctor.org/ ( manual book )
https://www.grammarly.com/
https://learningenglishfree.co.uk/
https://matthewsetter.com/
https://www.ssa.gov/

Related Post

Jumat, 14 Februari 2025

AsciiDoctor In Notepad3

  1. Start the Notepad3.
  2. Click File -> Open Menu
  3. After a "Unknown file name extension (your File name.asciidoc)! Loading data anyway?" dialog box is available, click Yes button to Open the file. If you want to cancel, click No button. 


Notes 

  • To see the more clear picture, click on the picture.

Bibliography

https://rizonesoft.com/
https://github.com/zufuliu/notepad4
https://notepad-plus-plus.org/
https://www.scintilla.org/
https://www.sublimetext.com/

Related Post


Kamis, 13 Februari 2025

Java Swing Components List 1

The following Java snippet code are for writing Java Swing components:
// Import the Java Swing Components package
import javax.swing.JButton;
import javax.swing.JLabel;
import javax.swing.JScrollPane;
import javax.swing.JSeparator;
import javax.swing.JTable;
import javax.swing.JTextField;

// Variables declaration for Java Swing
private javax.swing.JButton jButton1;
private javax.swing.JLabel jLabel1;
private javax.swing.JLabel jLabel2;
private javax.swing.JScrollPane jScrollPane1;
private javax.swing.JSeparator jSeparator1;
private javax.swing.JTable jTable1;
private javax.swing.JTextField jTextField1;

// Define Java Swing Component
jButton1 = new javax.swing.JButton();
jLabel1 = new javax.swing.JLabel();
jLabel2 = new javax.swing.JLabel();
jScrollPane1 = new javax.swing.JScrollPane();
jSeparator1 = new javax.swing.JSeparator();
jTable1 = new javax.swing.JTable();
jTextField1 = new javax.swing.JTextField();


to learn Import Java Packages for handle Inputs and Outputs and GUI, click Java Packages Notes 2 >

<< back to Study About Java 1

Related Post