Search In This Website
Jumat, 25 Juli 2025
AsciiDoctor Block Content
How To Check AsciiDoctor Gem Dependencies
How To Check AsciiDoctor Has Installed Locally
Syntax: gem list <ruby-gem-name> --local
1. Open Command Prompt.
2. Type gem list asciidoctor --local
3. Press Enter on keyboard.
![]() |
Step 2 and Step 3 To Check AsciiDoctor Has Installed Locally |
How To Check AsciiDoctor Ruby Gem Dependencies
Syntax: gem dependency <ruby-gem-name> --reverse-dependencies --local
1. Open Command Prompt.
2. Type gem dependency asciidoctor --reverse-dependencies --local
3. Press Enter on keyboard.
4. Sample Output:
Gem asciidoctor-2.0.23
concurrent-ruby (~> 1.1.0, development)
cucumber (~> 3.1.0, development)
erubi (~> 1.10.0, development)
haml (~> 6.1.0, development)
minitest (~> 5.22.0, development)
nokogiri (~> 1.13.0, development)
rake (~> 12.3.0, development)
slim (~> 4.1.0, development)
tilt (~> 2.0.0, development)
![]() |
Step 2 To Check AsciiDoctor Ruby Gem Dependencies |
![]() |
Step 3 After Press Enter on keyboard |
<< back to Study About AsciiDoctor
<< back to Study About Ruby
<< back to Study About Java 1
Bibliography
https://guides.rubygems.org/ ( manual ebook )
https://rubygems.org/
https://www.ruby-lang.org/ ( manual ebook )
Kamis, 24 Juli 2025
How to Creating A JAR File Using the Command Line
Prerequisites
- Java Development Kit (JDK) installed and configured in your system's PATH. You must download JDK from the official Java website, if you don't have JDK. JDK is required for compiling Java code (javac) and running JAR files (java).
If you want to learn default Java Path For Windows And Linux Environment, click Default Java Path Environment >
You must setup PATH environment, click Set The JAVA_HOME variable >
To check the Java version, click How To Check Your Java Version > - A Text Editor, for example Notepad: To write your Java code and potentially to write a manifest file.
- A Terminal or Command Prompt: To execute compilation and JAR creation commands.
Assumption
- Ensure you have a Java class with a main method ( after You compiled a Java source code File ), which serves as the entry point for your Java simple application (JAR) or Java simple program (JAR). You can use this Java exercise, click Hello World In Java and then you must compile the Java Program, click How To Compile Java 1.
- Ensure you understand to using Text Editor and a Terminal or Command Prompt.
The Steps
![]() |
navigate to the root directory of your Java class files project directory |
![]() |
Notepad program show |
![]() |
Type Manifest.txt example contents |
![]() |
click File > Save As menu |
![]() |
Navigate to D:\demo\java\GettingStarted\HelloWorld\. And then type Manifest.txt in File name box. |
![]() |
click Save button |
![]() |
file Manifest.txt has saved |
![]() |
Create the JAR File |
![]() |
Run the Executable JAR |
![]() |
The Executable JAR has succeed to run |
Notes
- Of course, you can use Java IDE or other Java Build Script Tools to create a JAR.
- To learn about open Command Prompt in step 1,
- To learn about open Notepad in step 2, click How To Launch Notepad In Windows 8
Bibliography
How To Launch Notepad In Windows 8
![]() |
Start Menu |
![]() |
All apps shown |
![]() |
click on the Notepad program |
![]() |
Notepad program show |
Rabu, 23 Juli 2025
Command Prompt Path And Most Common Program
Command Prompt Path / Terminal Path And The Most Common Command Prompt Program
Alternative Command Prompt Path to running Command Prompt:- %windir%\system32\cmd.exe /k
- "C:\Windows\SysWOW64\cmd.exe" /k
- "C:\Windows\System32\cmd.exe" /k
- Running Apache HTTP Server
- C:\Program Files\Apache Software Foundation\Apache<version>\httpd.exe
- Running A 32 bit Java Application Class
- C:\Program Files (x86)\Java\jdk<version>\bin\java -cp . mainClassName
- Running A 64 bit Java Application Class
- C:\Program Files\Java\jdk<version>\bin\java -cp . mainClassName
- Running A PlantUML Java Software (JAR)
- C:\Program Files\Java\jdk<version>\bin\java -jar "C:\Program Files\PlantUML\plantuml.jar"
- Login To 32 bit MySQL Command Prompt
- C:\Program Files (x86)\MySQL\MySQL Server <version>\bin\mysql -u root -p
- Login To 64 bit MySQL Command Prompt
- C:\Program Files\MySQL\MySQL Server <version>\bin\mysql -u root -p
- Running A 32 bit NodeJS Application Main File / NodeJS Application Script
- C:\Program Files (x86)\nodejs\node app.js
- Running A 64 bit NodeJS Application Main File / NodeJS Application Script
- C:\Program Files\nodejs\node app.js
- Running PHP Server
C:\Program Files\PHP\PHP -S localhost:8000
- Executing PHP Files
- C:\Program Files\PHP\PHP -f "php_script_name.php"
- Running Python Script File Using Current User Account ( method 1 )
- %USERPROFILE%\AppData\Local\Microsoft\WindowsApps\python.exe "python_script_name.py"
- Running Python Script File Using Current User Account ( method 2 )
- C:\Users\<username>\AppData\Local\Programs\Python\Python<version>\python.exe "python_script_name.py"
- Running Python Script File Using Current User Account ( method 3 )
- C:\Python<version>\python.exe "python_script_name.py"
- Running Python Script File Using All User Account
- C:\Program Files\Python<version>\python "python_script_name.py"
- Running XAMPP Shell Command Prompt
- C:\xampp\xampp_shell.bat
- Running SumatraPDF with certain page
- C:\Program Files (x86)\SumatraPDF\SumatraPDF.exe -page <pageNo> <file_path\file.pdf>
<< back to Learn Microsoft Windows ( Road Map )
Bibliography
Selasa, 22 Juli 2025
Healthy Food Menu In JList Java
Healthy Food Menu In JList Java Programming
Result
![]() |
JList in Java Swing Component |
Bibliography
Senin, 21 Juli 2025
Restaurant Menu List In Web Page
Output ( similar like this )
![]() |
Restaurant Menu List In Web Page |
Notes
Bibliography
Minggu, 20 Juli 2025
Netbeans IDE Parts With Picture 2
The following list are Netbeans IDE parts list:
- Title Bar;
- Menu Bar;
- Quick Launch Bar And Toolbar;
- Reference Bar / Reference Tab;
- Status Bar;
- The Design Button;
- Assist Icons;
- The Palette Window / The UI (User Interface) Design Palette Panel;
- Selected Component / Selected Control;
- The Inspector Window / The Inspector Panel;
- Design Area / UI (User Interface) Design Board;
- The Component Properties Window;
Bibliography
Latihan FPB Dalam Dokumen Latex Preview
% !TEX TS-program = pdflatex
%% File Description:
%% GCD (Great Common Divisor)
%% using Prime Factorization Division Method Table
\documentclass{article}
%% Loading the package
%------------------------
\usepackage{bookman}
\usepackage{array}
\usepackage{multirow}
\usepackage{makecell}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{bm}
\usepackage{fullpage}
%------------------------
%% custom theorem environment
%---------------------------
%% define theorem style
\newtheoremstyle{definition}
{\topsep} % Space above
{\topsep} % Space below
{} % Body font
{} % Indent amount
{\bfseries} % Theorem head font
{.} % Punctuation after theorem head
{.5em} % Space after theorem head
{} % Theorem head spec ( can be left empty, meaning `normal` )
\theoremstyle{definition}
%\redeclaretheorem[style=normalhead]{theorem}
%% define theorem environment
\newtheorem{theorem}{Langkah}[section]
%---------------------------
%% custom table properties
%---------------------------
%% resize row height
%% use one of this command below:
%\setlength\extrarowheight{2.5pt}
\renewcommand{\arraystretch}{2}
%% resize border width can be more thick or thin
\setlength{\arrayrulewidth}{1.5pt}
%% resize space between columns and border
\setlength{\tabcolsep}{5pt}
%% new centering column type
\newcolumntype{P}[1]{>{\centering\Large{}\arraybackslash}p{#1}}
%---------------------------
%% custom preview package
\usepackage[active,floats,tightpage,multi]{preview}
\setlength\PreviewBorder{0.25pt}
\PreviewEnvironment{minipage}
%---------------------------
\begin{document}
\Large{}
\begin{minipage}{0.5\linewidth}
\section{Menentukan FPB}
Menentukan Faktor Persekutuan Terbesar (FPB) dari dua bilangan.\\[-0.75em]
Marilah kita menentukan FPB dari masalah sebagai berikut:\\
\end{minipage}
\begin{minipage}{0.5\linewidth}
\textbf{Contoh:}\\[-0.5em]
Pak Yudi memiliki 12 apel dan 18 jeruk. Apel dan jeruk tersebut akan dimasukkan ke dalam kantong plastik. Berapa kantong plastik yang dibutuhkan, jika setiap kantong berisi apel dan jeruk dengan jumlah yang sama?\\
\end{minipage}
\begin{minipage}{0.5\linewidth}
\textbf{Jawab:}\\[-0.5em]
\begin{theorem} % Langkah 1
Menentukan faktorisasi prima dari bilangan-bilangan itu:
\end{theorem}
\end{minipage}
\begin{minipage}{0.5\linewidth}
\centering
\hspace{1em}
\begin{minipage}{0.25\linewidth}
$$\begin{array}{|r}
\llap{\textbf{2}~~~~} \textbf{12} \\ \hline
\llap{\textbf{2}~~~~~~} \textbf{6} \\ \hline
\llap{\textbf{3}~~~~~~} \textbf{3} \\ \hline
\textbf{1} \\
\end{array}$$
\end{minipage}
\qquad\qquad
\begin{minipage}{0.25\linewidth}
$$
\begin{array}{|r}
\llap{\textbf{2}~~~~} \textbf{18} \\ \hline
\llap{\textbf{3}~~~~~~} \textbf{9} \\\hline
\llap{\textbf{3}~~~~~~} \textbf{3} \\ \hline
\textbf{1} \\
\end{array}
$$
\end{minipage}\bigskip
\end{minipage}
\begin{minipage}{0.5\linewidth}
\bigskip
Faktorisasi prima dari 12 adalah \\$12 = 2 \times 2 \times 3 = \mathbf{2^{2}} \times \mathbf{3}$\\
Faktorisasi prima dari 18 adalah \\$18 = 2 \times 3 \times 3 = \mathbf{2} \times \mathbf{3^{2}}$\\
\end{minipage}
\begin{minipage}{0.5\linewidth}\smallskip
\begin{theorem} %Langkah 2
Mengambil faktor yang sama dari bilangan-bilangan itu.
\end{theorem}
\hspace{0.75em} Mengambil faktor 2 dari $\textbf{2}^{\textbf{2}}$,\ $\textbf{2}$\\
\indent\hspace{0.75em} Mengambil faktor 3 dari $\textbf{3}$,\ $\textbf{3}^{\textbf{2}}$\\
\end{minipage}
\begin{minipage}{0.5\linewidth}
\indent\hspace{0.75em} FPB dari 12 dan 18 adalah\\
\indent\hspace{0.75em} 2 $\boldsymbol\times$ 3 = 6 \\[-0.5em]
Jadi, kantong plastik yang diperlukan adalah 6 buah. Setiap kantong plastik memuat 2 apel dan 3 jeruk. %, seperti terlihat pada gambar berikut.\hfill\\
\end{minipage}
\end{document}
3. Save Latex code file as mFPB1prvw.tex
Output
Faktor Suatu Bilangan Matematika Dalam Latex Preview
% !TEX TS-program = pdflatex
%% File Description:
%% Number Factor 1 table
\documentclass{article}
%% Loading the package
%------------------------
\usepackage{bookman}
\usepackage{array}
\usepackage{amsmath}
\usepackage{bm}
%------------------------
%% custom table properties
%---------------------------
%% resize row height
%% use one of this command below:
%\setlength\extrarowheight{2.5pt}
\renewcommand{\arraystretch}{2}
%% resize border width, can be thicker or thinner
\setlength{\arrayrulewidth}{1.5pt}
%% new centering column type
%\newcolumntype{P}[1]{>{\centering\Large{}\arraybackslash}p{#1}}
%---------------------------
\usepackage[active,floats,tightpage,multi]{preview}
\setlength\PreviewBorder{0.25pt}
\PreviewEnvironment{page}
\begin{document}\Large{}
\begin{page}
\indent\hspace{0.75em}\vspace{-1em}
\section{ Faktor Suatu Bilangan}
\indent\hspace{0.75em}Faktor suatu bilangan adalah bilangan yang \indent\hspace{0.75em}dapat membagi habis bilangan yang lain.\\
\indent\hspace{0.75em}Cara mencari Faktor dari suatu bilangan sebagai berikut:\\
\indent\hspace{0.75em}\textbf{Contoh:}\\
\indent\hspace{0.75em}Faktor dari 8 = $\ldots$ \\
\end{page}
\begin{page}\hfill\\[0.75em]
\indent\hspace{0.75em}\textbf{Jawab:}\\
\indent\hspace{0.75em}Menentukan faktor 8 diperoleh dengan cara:\\
\end{page}
\begin{page}\hfill\\[-1.75em]
\begin{center}\LARGE{}
$\mathbf{8} \boldsymbol\div \mathbf{1} = \mathbf{8}$ \\
$\mathbf{8} \boldsymbol\div \mathbf{2} = \mathbf{4}$ \\
$\mathbf{8} \boldsymbol\div \mathbf{4} = \mathbf{2}$ \\
$\mathbf{8} \boldsymbol\div \mathbf{8} = \mathbf{1}$ \\\smallskip
\end{center}\Large{}\hfill\\[-2em]
\end{page}
\begin{page}\hfill\\[0.75em]
\indent\hspace{0.75em}atau dibuat kotak perkalian sebagai berikut:\\
%\end{page}
%\begin{table}[!htb]
\centering
\begin{tabular}{|c|c|c|c|}\hline
\LARGE{}\bfseries{Factor} & \LARGE{}\bfseries 8 & \LARGE{}\bfseries{Factor}\\\hline
1 & $\boldsymbol\times$ & 8\\\hline
2 & $\boldsymbol\times$ & 4\\\hline
\end{tabular}
%\caption{}
%\label{}
%\end{table}
%\begin{page}
\hfill\\[0.75em]
\indent\hspace{0.75em}Jadi, faktor dari 8 adalah 1, 2, 4, dan 8.\hfill\\
\end{page}
\end{document}
3. Save Latex code file as mFPB1prvw.tex
Output
Jumat, 18 Juli 2025
Soal Latihan Menentukan FPB Dalam Matematika
Menentukan Faktor Persekutuan Terbesar (FPB) dari dua bilangan.
Contoh Soal Latihan Matematika FPB:
Jawaban Latihan Soal Matematika Dan Pembahasan Soal Matematika:
Langkah 2 Mengambil faktor yang sama dari bilangan-bilangan itu.
Related Post
-
To see the larger Lyx screenshot ( Lyx GUI front end ) and more clear Lyx screenshot ( Lyx GUI front end ), click on the picture. File Menu ...
-
Latex math equation: Latex Math Symbol And Equations 2 fraction frac comand, amsmath package, dfrac command, cfrac command, exponent, square...
-
Most common problem for writer when Build/Compile/Typeset a Latex document is meet a problem message like this following: (./ <your file ...
-
Starting A Turbo C++ Practise this lesson to starting Turbo C++ Preparation Download Turbo C++ from internet. Install it on your compute...
-
Study About Microsoft Office 1 ( Microsoft Office Word, Microsoft Office Excel, Microsoft Office PowerPoint ) Microsoft Windows, Microsoft O...