guvenaltunsoyy / yazilim-tasarim-kaliplari

Yazılım tasarım kalıpları kullanımı

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

bu readme dosyası asciidoc formatının kullanımını öğrenmek amaçlı oluşturulmuştur.

Kaynak

  • Buradan kaynak alınarak plantuml ile zenginleştirilmiştir.

Asciidoc format usage test readme

Lorem Ipsum, dizgi ve baskı endüstrisinde kullanılan mıgır metinlerdir.

Lorem 2

Lorem Ipsum pasajlarının birçok çeşitlemesi vardır.

  • Linux, Internet üzerinden haberleşen çok sayıda gönüllü programcının desteğiyle Linus Torvalds tarafından baştan başlanarak geliştirilmiş GNU/Linux işletim sisteminin çekirdeğidir.

  • Linux, diğer birçok özgür yazılım ürünü gibi ücretsiz olarak edinilebilmektedir. Çeşitli Linux dağıtımlarının yansılarını Dosya Alanı bölümünü oluşturan FTP sunucumuzda bulabilirsiniz.

    1. LKD’nin katıldığı çeşitli fuarlarda, standımızda Linux CD’leri bulabilirsiniz.

    2. Bunun yanı sıra CD satan yerlere de başvurabilirsiniz.

Note
An admonition paragraph draws the reader’s attention to auxiliary information. Its purpose is determined by the label at the beginning of the paragraph.
Tip
Pro tip…​
Warning
Watch out for…​
Caution
Ensure that…​

Lorem Ipsum, dizgi ve baskı endüstrisinde kullanılan mıgır metinlerdir. Lorem Ipsum, adı bilinmeyen bir matbaacının bir hurufat numune kitabı oluşturmak üzere bir yazı galerisini alarak karıştırdığı 1500’lerden beri endüstri standardı sahte metinler olarak kullanılmıştır

irc://irc.freenode.org/#fedora

See Asciidoc format usage test readme to learn how to write paragraphs.

We could also write the link as README.

Reference code like types or methods inline.

Do not pass arbitrary Objects to methods that accept Strings!

Output literal monospace text such as {backtick} by enclosing the text in pluses, then in backticks.

Indent the line one space to insert a code snippet
error: The requested operation returned error: 1954 Forbidden search for defensive operations manual
absolutely fatal: operation initiation lost in the dodecahedron of doom
would you like to die again? y/n
Gemfile.lock
GEM
  remote: https://rubygems.org/
  specs:
    asciidoctor (1.5.6.1)

PLATFORMS
  ruby

DEPENDENCIES
  asciidoctor (~> 1.5.6.1)
app.rb
require 'sinatra'

get '/hi' do
  "Hello World!"
end
#!/bin/bash
addition(){
   sum=$(($1+$2))
   return $sum
}
read -p "Bir rakam girin: " int1
read -p "Bir rakam girin: " int2
add $int1 $int2
echo "Sonuc : " $?
#include <iostream>
#include <cmath>

using namespace std;

int main()
{
    double number, squareRoot;
    cout << "Enter a number: ";
    cin >> number;

    // sqrt() is a library function to calculate square root
    squareRoot = sqrt(number);
    cout << "Square root of " << number << " = " << squareRoot;
    return 0;
}
require 'sinatra' // (1)

get '/hi' do // (2)
  "Hello World!" // (3)
end
  1. Library import

  2. URL mapping

  3. HTTP response body

line of code  // (1)
line of code  # (2)
line of code  ;; (3)
line of code  <!--(4)-->
  1. A callout behind a line comment for C-style languages.

  2. A callout behind a line comment for Ruby, Python, Perl, etc.

  3. A callout behind a line comment for Clojure.

  4. A callout behind a line comment for XML or SGML languages like HTML.

<section>
  <title>Section Title</title> <!--(1)-->
</section>
  1. The section title is required.

Table 1. Table Title
Name of Column 1 Name of Column 2 Name of Column 3

Cell in column 1, row 1

Cell in column 2, row 1

Cell in column 3, row 1

Cell in column 1, row 2

Cell in column 2, row 2

Cell in column 3, row 2

Name of Column 1 Name of Column 2

Cell in column 1, row 1

Cell in column 2, row 1

Cell in column 1, row 2

Cell in column 2, row 2

Table 2. Applications
Name Category Description

Firefox

Browser

Mozilla Firefox is an open-source web browser. It’s designed for standards compliance, performance, portability.

Arquillian

Testing

An innovative and highly extensible testing platform. Empowers developers to easily create real, automated tests.

Firefox

Browser

Mozilla Firefox is an open-source web browser.

It’s designed for:

  • standards compliance

  • performance

  • portability

Artist Track Genre

Baauer

Harlem Shake

Hip Hop

The Lumineers

Ho Hey

Folk Rock

Artist Track Genre

Baauer

Harlem Shake

Hip Hop

1

2

3

4

5

6

7

8

9

10

Document Title

US
Nigeria
Nigeria
Figure 1: A Nigeria Flag
Random Images

Click Play to get the party started.

Click apollo1@3x when you need a break.

class BlockProcessor
class DiagramBlock
class DitaaBlock
class PlantUmlBlock

BlockProcessor <|-- DiagramBlock
DiagramBlock <|-- DitaaBlock
DiagramBlock <|-- PlantUmlBlock