Title

Published: 2017-01-28 • Updated: 2017-01-29

This page has details of text formatting used in Arabic Blog with examples.

First Word


Word <- This has to be deprecated

H2 Tag

Heading 1 Welcome to code blog. Enjoy the content. This is in the demo Post
Heading 2 Welcome to code blog. Enjoy the content. This is third Post

H3 Tag

Heading 1 Welcome to code blog. Enjoy the content. This is third Post
Heading 2 Welcome to code blog. Enjoy the content. This is third Post


Exception Welcome to code blog. Enjoy the content. This is third Post


Yellow background Welcome to code blog.


Cyan background Welcome to code blog.


Green background Welcome to code blog.


blockquote: Welcome to code blog.


Code: Welcome to code blog. Enjoy the content. This is third Post


عاصياً منادى منصوب وعلامة نصبه الفتحة


زيد منادى مبني على الضم في محل نصب


What is this

  • This is list
  • this is item 2

SingularDualPlural
Third Person (Male)كَتَبَكَتَبَاكَتَبُوا
Third Person (Female)كَتَبَتْكَتَبَتَاكَتَبْنَ
Second Person (Male)كَتَبْتَكَتَبْتُمَاكَتَبْتُمْ
Second Person (Female)كَتَبْتِكَتَبْتُمَاكَتَبْتُنَّ
First Personكَتَبْتُكَتَبْنَا

SingularDualPlural
Third Person (Male)كَتَبَكَتَبَاكَتَبُوا
Third Person (Female)كَتَبَتْكَتَبَتَاكَتَبْنَ
Second Person (Male)كَتَبْتَكَتَبْتُمَاكَتَبْتُمْ
Second Person (Female)كَتَبْتِكَتَبْتُمَاكَتَبْتُنَّ

Code Blocks

Java

@Configuration
@EnableAerospikeRepositories(basePackages = "in.kamranali.aerospike.aerospike.repositories")
@EnableTransactionManagement
public class AerospikeConfig {

    @Bean
    AerospikeTemplate aerospikeTemplate(){
        return new AerospikeTemplate(aerospikeClient(), "test"); // test is namespace
    }

    @Bean
    AerospikeClient aerospikeClient() {

        ClientPolicy clientPolicy = new ClientPolicy();
        clientPolicy.failIfNotConnected = true;
        return new AerospikeClient(clientPolicy, "localhost", 3000);
    }
}
// Spark Session Interface in spark 2.0
val spark = SparkSession.builder
  .appName("SalaryPredictionDF")
  .master("local[*]") // using all cores of CPU
  .getOrCreate()

val inputLines = spark.sparkContext.textFile("./src/main/resources/salary_data.txt")

aTech Guide

Reference

technology

Share Post