<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Forem: Rendy Setiawan</title>
    <description>The latest articles on Forem by Rendy Setiawan (@rensetiawanren).</description>
    <link>https://forem.com/rensetiawanren</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F987086%2F4465d639-330d-42ce-8a79-1f8095744289.png</url>
      <title>Forem: Rendy Setiawan</title>
      <link>https://forem.com/rensetiawanren</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/rensetiawanren"/>
    <language>en</language>
    <item>
      <title>HTML — cheatsheet</title>
      <dc:creator>Rendy Setiawan</dc:creator>
      <pubDate>Sun, 04 Feb 2024 07:33:03 +0000</pubDate>
      <link>https://forem.com/rensetiawanren/html-cheatsheet-194b</link>
      <guid>https://forem.com/rensetiawanren/html-cheatsheet-194b</guid>
      <description>&lt;p&gt;HTML cheatsheet for Document Outline, Page Information, Document Structure, Links, Text Markup, List, Images, Comments, Forms, Objects, Tables, Common Character and Entities.&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;Document Outline&lt;/strong&gt;&lt;br&gt;
&lt;code&gt;&amp;lt;DOCTYPE&amp;gt;&lt;/code&gt; → Version of (X)HTML&lt;br&gt;
&lt;code&gt;&amp;lt;html&amp;gt;&lt;/code&gt; → HTML Document&lt;br&gt;
&lt;code&gt;&amp;lt;head&amp;gt;&lt;/code&gt; → Page Information&lt;br&gt;
&lt;code&gt;&amp;lt;body&amp;gt;&lt;/code&gt; → Page contents&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Page Information&lt;/strong&gt;&lt;br&gt;
&lt;code&gt;&amp;lt;title&amp;gt;&lt;/code&gt; → Title&lt;br&gt;
&lt;code&gt;&amp;lt;style&amp;gt;&lt;/code&gt; → Style resources&lt;br&gt;
&lt;code&gt;&amp;lt;script&amp;gt;&lt;/code&gt; → Script resources&lt;br&gt;
&lt;code&gt;&amp;lt;link /&amp;gt;&lt;/code&gt; → Relevant resources&lt;br&gt;
&lt;code&gt;&amp;lt;base /&amp;gt;&lt;/code&gt; → Base URL&lt;br&gt;
&lt;code&gt;&amp;lt;meta /&amp;gt;&lt;/code&gt; → Meta data&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Document Structure&lt;/strong&gt;&lt;br&gt;
&lt;code&gt;&amp;lt;h(1-6)&amp;gt;&lt;/code&gt; → Heading (1–6)&lt;br&gt;
&lt;code&gt;&amp;lt;div&amp;gt;&lt;/code&gt; → Page section&lt;br&gt;
&lt;code&gt;&amp;lt;span&amp;gt;&lt;/code&gt; → Inline Section&lt;br&gt;
&lt;code&gt;&amp;lt;p&amp;gt;&lt;/code&gt; → Paragraph&lt;br&gt;
&lt;code&gt;&amp;lt;br /&amp;gt;&lt;/code&gt; → Line break&lt;br&gt;
&lt;code&gt;&amp;lt;hr /&amp;gt;&lt;/code&gt; → Horizontal rule&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Links&lt;/strong&gt;&lt;br&gt;
&lt;code&gt;&amp;lt;a href=""&amp;gt;&lt;/code&gt; → Page link&lt;br&gt;
&lt;code&gt;&amp;lt;a href="mailto:"&amp;gt;&lt;/code&gt; → E-Mail link&lt;br&gt;
&lt;code&gt;&amp;lt;a name="name"&amp;gt;&lt;/code&gt; → Anchor&lt;br&gt;
&lt;code&gt;&amp;lt;a href="#name"&amp;gt;&lt;/code&gt; → Link to anchor&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Text Markup&lt;/strong&gt;&lt;br&gt;
&lt;code&gt;&amp;lt;strong&amp;gt;&lt;/code&gt; → Strong emphasis&lt;br&gt;
&lt;code&gt;&amp;lt;em&amp;gt;&lt;/code&gt; → Emphasis&lt;br&gt;
&lt;code&gt;&amp;lt;blockquote&amp;gt;&lt;/code&gt; → Long quotation&lt;br&gt;
&lt;code&gt;&amp;lt;q&amp;gt;&lt;/code&gt; → Short quotation&lt;br&gt;
&lt;code&gt;&amp;lt;abbr&amp;gt;&lt;/code&gt; → Abbreviation&lt;br&gt;
&lt;code&gt;&amp;lt;acronym&amp;gt;&lt;/code&gt; → Acronym&lt;br&gt;
&lt;code&gt;&amp;lt;address&amp;gt;&lt;/code&gt; → Address&lt;br&gt;
&lt;code&gt;&amp;lt;pre&amp;gt;&lt;/code&gt; → Pre-formated text&lt;br&gt;
&lt;code&gt;&amp;lt;dfn&amp;gt;&lt;/code&gt; → Definition&lt;br&gt;
&lt;code&gt;&amp;lt;code&amp;gt;&lt;/code&gt; → Code&lt;br&gt;
&lt;code&gt;&amp;lt;cite&amp;gt;&lt;/code&gt; → Citation&lt;br&gt;
&lt;code&gt;&amp;lt;del&amp;gt;&lt;/code&gt; → Deleted text&lt;br&gt;
&lt;code&gt;&amp;lt;ins&amp;gt;&lt;/code&gt; → Inserted text&lt;br&gt;
&lt;code&gt;&amp;lt;sub&amp;gt;&lt;/code&gt; → Subscript&lt;br&gt;
&lt;code&gt;&amp;lt;sup&amp;gt;&lt;/code&gt; → Superscript&lt;br&gt;
&lt;code&gt;&amp;lt;bdo&amp;gt;&lt;/code&gt; → Text direction&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;List&lt;/strong&gt;&lt;br&gt;
&lt;code&gt;&amp;lt;ol&amp;gt;&lt;/code&gt; → Ordered list&lt;br&gt;
&lt;code&gt;&amp;lt;ul&amp;gt;&lt;/code&gt; → Unordered list&lt;br&gt;
&lt;code&gt;&amp;lt;li&amp;gt;&lt;/code&gt; → List item&lt;br&gt;
&lt;code&gt;&amp;lt;dl&amp;gt;&lt;/code&gt; → Definition list&lt;br&gt;
&lt;code&gt;&amp;lt;dt&amp;gt;&lt;/code&gt; → Definition term&lt;br&gt;
&lt;code&gt;&amp;lt;dd&amp;gt;&lt;/code&gt; → Term description&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Images&lt;/strong&gt;&lt;br&gt;
&lt;code&gt;&amp;lt;img /&amp;gt;&lt;/code&gt; → Image&lt;br&gt;
&lt;code&gt;&amp;lt;map&amp;gt;&lt;/code&gt; → Image map&lt;br&gt;
&lt;code&gt;&amp;lt;area /&amp;gt;&lt;/code&gt; → Area of image map&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Comments&lt;/strong&gt;&lt;br&gt;
&amp;lt;!--comment text --&amp;gt; Comment text&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Form&lt;/strong&gt;&lt;br&gt;
&lt;code&gt;&amp;lt;form&amp;gt;&lt;/code&gt; → Form&lt;br&gt;
&lt;code&gt;&amp;lt;fieldset&amp;gt;&lt;/code&gt; → Collection of fields&lt;br&gt;
&lt;code&gt;&amp;lt;legend&amp;gt;&lt;/code&gt; → Form legend&lt;br&gt;
&lt;code&gt;&amp;lt;label&amp;gt;&lt;/code&gt; : → Input label&lt;br&gt;
&lt;code&gt;&amp;lt;input /&amp;gt;&lt;/code&gt; → Form input&lt;br&gt;
&lt;code&gt;&amp;lt;select&amp;gt;&lt;/code&gt; → Drop-down box&lt;br&gt;
&lt;code&gt;&amp;lt;optgroup&amp;gt;&lt;/code&gt; → Group of options&lt;br&gt;
&lt;code&gt;&amp;lt;option&amp;gt;&lt;/code&gt; → Drop-down options&lt;br&gt;
&lt;code&gt;&amp;lt;textarea&amp;gt;&lt;/code&gt; → Large text input&lt;br&gt;
&lt;code&gt;&amp;lt;button&amp;gt;&lt;/code&gt; → Button&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Objects&lt;/strong&gt;&lt;br&gt;
&lt;code&gt;&amp;lt;object&amp;gt;&lt;/code&gt; → Object&lt;br&gt;
&lt;code&gt;&amp;lt;param /&amp;gt;&lt;/code&gt; → Parameter&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Tables&lt;/strong&gt;&lt;br&gt;
&lt;code&gt;&amp;lt;table&amp;gt;&lt;/code&gt; → Table&lt;br&gt;
&lt;code&gt;&amp;lt;caption&amp;gt;&lt;/code&gt; → Caption&lt;br&gt;
&lt;code&gt;&amp;lt;thead&amp;gt;&lt;/code&gt; → Table header&lt;br&gt;
&lt;code&gt;&amp;lt;tbody&amp;gt;&lt;/code&gt; → Tabel body&lt;br&gt;
&lt;code&gt;&amp;lt;tfoot&amp;gt;&lt;/code&gt; → Table footer&lt;br&gt;
&lt;code&gt;&amp;lt;colgroup&amp;gt;&lt;/code&gt; → Column group&lt;br&gt;
&lt;code&gt;&amp;lt;col /&amp;gt;&lt;/code&gt; → Column&lt;br&gt;
&lt;code&gt;&amp;lt;tr&amp;gt;&lt;/code&gt; → Table row&lt;br&gt;
&lt;code&gt;&amp;lt;th&amp;gt;&lt;/code&gt; → Header cell&lt;br&gt;
&lt;code&gt;&amp;lt;td&amp;gt;&lt;/code&gt; → Table cell&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Common Character and Entities&lt;/strong&gt;&lt;br&gt;
&lt;code&gt;&amp;amp;#34&lt;/code&gt; → &lt;code&gt;"&lt;/code&gt; Quotational mark&lt;br&gt;
&lt;code&gt;&amp;amp;#38&lt;/code&gt; → &lt;code&gt;&amp;amp;&lt;/code&gt; Ampersand&lt;br&gt;
&lt;code&gt;&amp;amp;#60&lt;/code&gt; → &lt;code&gt;&amp;lt;&lt;/code&gt; Less than&lt;br&gt;
&lt;code&gt;&amp;amp;#62&lt;/code&gt; → &lt;code&gt;&amp;gt;&lt;/code&gt; Greater than&lt;br&gt;
&lt;code&gt;&amp;amp;#64&lt;/code&gt; → &lt;code&gt;@&lt;/code&gt; "At" symbol&lt;br&gt;
&lt;code&gt;&amp;amp;#128&lt;/code&gt; → &lt;code&gt;∙&lt;/code&gt; Small bullet&lt;br&gt;
&lt;code&gt;&amp;amp;#149&lt;/code&gt; → &lt;code&gt;&lt;/code&gt;  Non-breaking space&lt;br&gt;
&lt;code&gt;&amp;amp;#153&lt;/code&gt; → &lt;code&gt;€&lt;/code&gt; Euro&lt;br&gt;
&lt;code&gt;&amp;amp;#160&lt;/code&gt; → &lt;code&gt;™️&lt;/code&gt; Trademark&lt;br&gt;
&lt;code&gt;&amp;amp;#163&lt;/code&gt; → &lt;code&gt;￡&lt;/code&gt; Pound&lt;br&gt;
&lt;code&gt;&amp;amp;#169&lt;/code&gt; → &lt;code&gt;©&lt;/code&gt; Copyright symbol&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;#HTML #Cheatsheet #Tutorial #WebDev&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>html</category>
      <category>cheatsheet</category>
      <category>tutorial</category>
      <category>webdev</category>
    </item>
    <item>
      <title>Part 1 | Fake E-commerce Job Interviews Invitation</title>
      <dc:creator>Rendy Setiawan</dc:creator>
      <pubDate>Sat, 27 Jan 2024 00:51:14 +0000</pubDate>
      <link>https://forem.com/rensetiawanren/beware-of-phishing-website-part-1-cases-499o</link>
      <guid>https://forem.com/rensetiawanren/beware-of-phishing-website-part-1-cases-499o</guid>
      <description>&lt;p&gt;Whoever you are is looking for work, be careful of fake job vacancies that target your credentials data.&lt;/p&gt;

&lt;p&gt;This content explains the characteristics of phishing websites by taking case examples from the X (Twitter) Workfess account.&lt;/p&gt;

&lt;p&gt;Phishers create a fake website blibli.com and send phishing links to victims to deceive them. It is as if the message was sent by the blibli.com recruitment party to obtain the victim’s credential data in the form of ID/Phone Number and Password.&lt;/p&gt;




&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fn0x5hsahf8m2vaaxzpoh.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fn0x5hsahf8m2vaaxzpoh.jpg" alt="1.1 - The Cases" width="800" height="1422"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;From this message, there are three possibilities:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Steal your credentials then they use your ID and password to log in to the official website&lt;/li&gt;
&lt;li&gt;Trick you into getting benefits from spreading referral codes&lt;/li&gt;
&lt;li&gt;Combination of points 1 and 2.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fzgsxyog2k5vivnob4yec.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fzgsxyog2k5vivnob4yec.gif" alt="1.2 - Instruction 1" width="1152" height="648"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Short link:&lt;/strong&gt; This is to disguise the real URL from the fake website.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fs3p7mshnnf7b3874ykhj.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fs3p7mshnnf7b3874ykhj.gif" alt="1.3 - Instruction 2" width="1152" height="648"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;ID &amp;amp; Password:&lt;/strong&gt; To steal your credentials.&lt;/p&gt;




&lt;h1&gt;
  
  
  Check The Phishing Website
&lt;/h1&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fui84sr75zx9cwud71gj4.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fui84sr75zx9cwud71gj4.gif" alt="Image description" width="1152" height="648"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Open The Short Link
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3qqf8bzs0nez51i1skqg.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3qqf8bzs0nez51i1skqg.gif" alt="2.1 - Open the short link" width="1152" height="648"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;After the short link opens, you will be redirected to this URL.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F2vbe7w3xxruktm4tqhsn.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F2vbe7w3xxruktm4tqhsn.gif" alt="2.2 - Redirected URL" width="1152" height="648"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Appearances of Fake URL and Website
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Feglrk2kj6ntr1eg3vdpq.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Feglrk2kj6ntr1eg3vdpq.gif" alt="2.3 - Appearances of fake URL and website" width="1152" height="648"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F29cn8umypnn6n8kds13k.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F29cn8umypnn6n8kds13k.gif" alt="2.4 - Appearances fake website" width="1152" height="648"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Phisher wants you to input your ID and password, so they can steal it.&lt;/p&gt;




&lt;h1&gt;
  
  
  Check blibli(dot)com official website
&lt;/h1&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fy4maoittii04hpvvysge.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fy4maoittii04hpvvysge.gif" alt="3.1 - Open the official pages" width="1152" height="648"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Appearances of Official blibli(dot)com Pages
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ffuw2rlv58mp79ufd1w26.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ffuw2rlv58mp79ufd1w26.jpg" alt="3.2 - Appearances of official “login pages” blibli.com " width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fobiq6eqgrq56se9ew5do.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fobiq6eqgrq56se9ew5do.gif" alt="3.3 - Appearances of official “register pages” blibli.com " width="1152" height="648"&gt;&lt;/a&gt;&lt;/p&gt;




&lt;h1&gt;
  
  
  Comparison Between Fake and Official Website
&lt;/h1&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F87c8yflhodzdf31jxjdx.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F87c8yflhodzdf31jxjdx.gif" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  URL Comparison Between Fake vs Official Websites
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fmy0xql705icyriwgzn8j.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fmy0xql705icyriwgzn8j.gif" alt="4.1 - URL of fake vs official pages" width="1152" height="648"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Appearances Comparison Between Fake vs Official Websites
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fw71zu3lwsh04mhzwbp0s.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fw71zu3lwsh04mhzwbp0s.gif" alt="4.2 - Appearances of fake vs official pages" width="1152" height="648"&gt;&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Foldtwvadfagwk9xbuwuf.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Foldtwvadfagwk9xbuwuf.gif" alt="5.1 - Remember" width="1152" height="648"&gt;&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;Steps by Steps to Avoid Phishing&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Protect Personal Data: Avoid sharing personal information carelessly.&lt;/li&gt;
&lt;li&gt;Don’t Click on Random Links: Verify before clicking on links received via email or message.&lt;/li&gt;
&lt;li&gt;Use Official Software: Make sure you use official and trusted software.&lt;/li&gt;
&lt;li&gt;Improve Device Security: Always update your device and enable security features.&lt;/li&gt;
&lt;li&gt;Pay Attention to The Email Sender: Carefully check who the email sender is before responding or clicking on the link it contains.&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;&lt;strong&gt;Glossary&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Phishing&lt;/strong&gt;: Online fraud is carried out through fake emails, links, websites or telephone calls that are made to be as similar as possible to the original. The goal is to obtain sensitive data and information, such as bank accounts or usernames and passwords.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Phishers&lt;/strong&gt;: Cybercriminals who carry out phishing are called phishers.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;URL (Uniform Resource Locator)&lt;/strong&gt;: URL functions to take you to a specific website that you want to go to. To do this, you will be asked to type this web address in the address bar of your browser&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Credentials&lt;/strong&gt;: Guarantee trust or confidentiality. It can also be called proof of identity. (The context in this content is an ID and password).&lt;/p&gt;




&lt;h1&gt;
  
  
  Jobseekers #Ecommerce #Phishing #PhishingAwareness #Cybersecurity #EducationAgainstFraud
&lt;/h1&gt;

</description>
      <category>phishing</category>
      <category>jobseekers</category>
      <category>ecommerce</category>
      <category>educationagainstfraud</category>
    </item>
    <item>
      <title>Creating GitHub Template Repository</title>
      <dc:creator>Rendy Setiawan</dc:creator>
      <pubDate>Mon, 23 Jan 2023 11:14:27 +0000</pubDate>
      <link>https://forem.com/rensetiawanren/creating-github-template-repository-3m5l</link>
      <guid>https://forem.com/rensetiawanren/creating-github-template-repository-3m5l</guid>
      <description>&lt;h2&gt;
  
  
  Table of Content:
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;STEP 1 (Create a New Repository)&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;STEP 2 (Create a Template Repository)&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;STEP 3 (Creating Repository from a Template)&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;You can create a new repository on your GitHub account or any organization where you have sufficient permission.&lt;/p&gt;

&lt;p&gt;If you want to create a template from the existing repository go through &lt;strong&gt;STEP 2&lt;/strong&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  STEP 1 (Create a New Repository) &lt;a&gt;&lt;/a&gt;
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;In the upper right corner, use the + drop-down menu and select &lt;strong&gt;New Repository&lt;/strong&gt;.
&lt;p&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmiro.medium.com%2Fmax%2F352%2F1%2AbD_JH2UR3zLtgKEUX5ZCpA.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmiro.medium.com%2Fmax%2F352%2F1%2AbD_JH2UR3zLtgKEUX5ZCpA.webp" alt="1.1.1 — create a new repository" width="176" height="225"&gt;&lt;/a&gt;1.1.1 — create a new repository
&lt;/p&gt;
Or click the tab &lt;strong&gt;Repositories&lt;/strong&gt; → &lt;strong&gt;New&lt;/strong&gt;.
&lt;p&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmiro.medium.com%2Fmax%2F720%2F1%2AbK0PsX0r397c_GChLNOFVA.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmiro.medium.com%2Fmax%2F720%2F1%2AbK0PsX0r397c_GChLNOFVA.webp" alt="1.1.2 — create a new repository" width="720" height="101"&gt;&lt;/a&gt;1.1.2 — create a new repository&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;In the &lt;strong&gt;Owner&lt;/strong&gt; drop-down, select the account on which you wish to create the repository.
&lt;p&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmiro.medium.com%2Fmax%2F720%2F1%2AhrOPtap7aYljEiqdVw7MWg.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmiro.medium.com%2Fmax%2F720%2F1%2AhrOPtap7aYljEiqdVw7MWg.webp" alt="1.2 — choose repository owner" width="720" height="211"&gt;&lt;/a&gt;1.2 — choose repository owner&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;Type a Name for your repository, and fill in an optional Description box.
&lt;p&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmiro.medium.com%2Fmax%2F720%2F1%2AAY8yCpOHrF0wBAn_pD3RyA.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmiro.medium.com%2Fmax%2F720%2F1%2AAY8yCpOHrF0wBAn_pD3RyA.webp" alt="1.3 - fill repository name and description" width="720" height="221"&gt;&lt;/a&gt;1.3 - fill repository name and description&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;Choose repository visibility.

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Public&lt;/strong&gt; repositories = are accessible to everyone on the internet.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Private&lt;/strong&gt; repositories = are only accessible to you, and people who you share access with, and for organization repositories, specific organization members.
&lt;p&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmiro.medium.com%2Fmax%2F720%2F1%2A0KE3p0NKkRt675k_EO-1ZQ.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmiro.medium.com%2Fmax%2F720%2F1%2A0KE3p0NKkRt675k_EO-1ZQ.webp" alt="1.4 - repository visibility" width="720" height="140"&gt;&lt;/a&gt;1.4 - repository visibility&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;Check the Add a &lt;strong&gt;README&lt;/strong&gt; file box.

&lt;ul&gt;
&lt;li&gt;
You can edit the &lt;strong&gt;README&lt;/strong&gt; file later.
&lt;p&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmiro.medium.com%2Fmax%2F720%2F1%2A-dUGq-FJLh2vlvMaDIqnvA.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmiro.medium.com%2Fmax%2F720%2F1%2A-dUGq-FJLh2vlvMaDIqnvA.webp" alt="1.5 - add a readme file." width="720" height="365"&gt;&lt;/a&gt;1.5 - add a readme file.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;Click &lt;strong&gt;Create Repository&lt;/strong&gt;.
&lt;p&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmiro.medium.com%2Fmax%2F640%2F1%2ASAx_pwPzb4o40f2G2vF0lw.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmiro.medium.com%2Fmax%2F640%2F1%2ASAx_pwPzb4o40f2G2vF0lw.webp" alt="1.6 - create a repository button" width="443" height="129"&gt;&lt;/a&gt;1.6 - create a repository button&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;Your new repository is ready.
&lt;p&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmiro.medium.com%2Fmax%2F720%2F1%2AQwryjSTAjmJQsziqtHCJmA.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmiro.medium.com%2Fmax%2F720%2F1%2AQwryjSTAjmJQsziqtHCJmA.webp" alt="1.7 - repository ready to use" width="720" height="282"&gt;&lt;/a&gt;1.7 - repository ready to use&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  STEP 2 (Create a Template Repository) &lt;a&gt;&lt;/a&gt;
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;Under your repository name, click ⚙️ &lt;strong&gt;Setting&lt;/strong&gt;.
&lt;p&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmiro.medium.com%2Fmax%2F720%2F1%2Ac_sbkoRaNGpB8GiPY-dfnQ.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmiro.medium.com%2Fmax%2F720%2F1%2Ac_sbkoRaNGpB8GiPY-dfnQ.webp" alt="2.1 - setting repository" width="720" height="179"&gt;&lt;/a&gt;2.1 - setting repository&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;Fill in the checkbox &lt;strong&gt;Template Repository&lt;/strong&gt;.
&lt;p&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmiro.medium.com%2Fmax%2F720%2F1%2AaLMPT2UEaJxsHIhyvB4QOQ.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmiro.medium.com%2Fmax%2F720%2F1%2AaLMPT2UEaJxsHIhyvB4QOQ.webp" alt="2.2 - setting activate template repository" width="679" height="197"&gt;&lt;/a&gt;2.2 - setting activate template repository&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;Go back and refresh your browser.&lt;/li&gt;
&lt;li&gt;If successful, &lt;strong&gt;Use this template&lt;/strong&gt; button just added. 
&lt;p&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmiro.medium.com%2Fmax%2F720%2F1%2A197DiSfi6H7jtNwHoVxigA.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmiro.medium.com%2Fmax%2F720%2F1%2A197DiSfi6H7jtNwHoVxigA.webp" alt="2.4 - before and after setup of a template repository" width="720" height="452"&gt;&lt;/a&gt;2.4 - before and after setup of a template repository&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;Now, your template is ready for editing before you use it.&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  STEP 3 (Creating Repository from a Template) &lt;a&gt;&lt;/a&gt;
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;On the GitHub page, navigate to the main page of the repository.
You can use templates from your repository, organization repository, or another repository.
Click &lt;strong&gt;Use this template&lt;/strong&gt; and select &lt;strong&gt;Create a new repository&lt;/strong&gt;.
&lt;p&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmiro.medium.com%2Fmax%2F720%2F1%2AmS2sqXQDZm165wc_tukeSA.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmiro.medium.com%2Fmax%2F720%2F1%2AmS2sqXQDZm165wc_tukeSA.webp" alt="3.1.1 - create a new repository from the template" width="720" height="179"&gt;&lt;/a&gt;3.1.1 - create a new repository from the template
Another step to &lt;strong&gt;Create New Repository&lt;/strong&gt; is In the upper right corner, use the &lt;strong&gt;+&lt;/strong&gt; drop-down menu and select &lt;strong&gt;New Repository&lt;/strong&gt;.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmiro.medium.com%2Fmax%2F352%2F1%2AbD_JH2UR3zLtgKEUX5ZCpA.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmiro.medium.com%2Fmax%2F352%2F1%2AbD_JH2UR3zLtgKEUX5ZCpA.webp" alt="3.1.2 - create a new repository from the template" width="176" height="225"&gt;&lt;/a&gt;3.1.2 - create a new repository from the template
Or click the tab &lt;strong&gt;Repositories&lt;/strong&gt; → &lt;strong&gt;New&lt;/strong&gt;.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmiro.medium.com%2Fmax%2F720%2F1%2AbK0PsX0r397c_GChLNOFVA.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmiro.medium.com%2Fmax%2F720%2F1%2AbK0PsX0r397c_GChLNOFVA.webp" alt="3.1.3 - create a new repository from the template" width="720" height="101"&gt;&lt;/a&gt;3.1.3 - create a new repository from the template&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;To create a repository with your template of the directory structure and files of an existing repository, use the &lt;strong&gt;Choose a template&lt;/strong&gt; drop-down and select a template repository.
&lt;p&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmiro.medium.com%2Fmax%2F640%2F1%2AdyHdSKIPzL0KAKqjHG-tmw.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmiro.medium.com%2Fmax%2F640%2F1%2AdyHdSKIPzL0KAKqjHG-tmw.webp" alt="3.2 - create a new repository from the template" width="367" height="341"&gt;&lt;/a&gt;3.2 - create a new repository from the template
After this step, the next step is the same as &lt;strong&gt;STEP 1 (Create New Repository)&lt;/strong&gt; starting from &lt;strong&gt;no.2 - 7&lt;/strong&gt;.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;In the &lt;strong&gt;Owner&lt;/strong&gt; drop-down,  select the account on which you wish to create the repository.
&lt;p&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmiro.medium.com%2Fmax%2F720%2F1%2AhrOPtap7aYljEiqdVw7MWg.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmiro.medium.com%2Fmax%2F720%2F1%2AhrOPtap7aYljEiqdVw7MWg.webp" alt="3.3 - repository owner" width="720" height="211"&gt;&lt;/a&gt;3.3 - repository owner&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;Type a Name for your repository, and fill in an optional Description box.
&lt;p&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmiro.medium.com%2Fmax%2F720%2F1%2AAY8yCpOHrF0wBAn_pD3RyA.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmiro.medium.com%2Fmax%2F720%2F1%2AAY8yCpOHrF0wBAn_pD3RyA.webp" alt="3.4 - fill repository name and description" width="720" height="221"&gt;&lt;/a&gt;3.4 - fill repository name and description&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;Choose repository visibility.

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Public&lt;/strong&gt; repositories = accessible to everyone on the internet&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Private&lt;/strong&gt; repositories = are only accessible to you, and people who you share access with, and for organization repositories, specific organization members.
&lt;p&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmiro.medium.com%2Fmax%2F720%2F1%2A0KE3p0NKkRt675k_EO-1ZQ.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmiro.medium.com%2Fmax%2F720%2F1%2A0KE3p0NKkRt675k_EO-1ZQ.webp" alt="3.5 - repository visibility" width="720" height="140"&gt;&lt;/a&gt;3.5 - repository visibility&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;Check the Add a &lt;strong&gt;README&lt;/strong&gt; file box.

&lt;ul&gt;
&lt;li&gt;
You can edit the &lt;strong&gt;README&lt;/strong&gt; file later.
&lt;p&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmiro.medium.com%2Fmax%2F720%2F1%2A-dUGq-FJLh2vlvMaDIqnvA.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmiro.medium.com%2Fmax%2F720%2F1%2A-dUGq-FJLh2vlvMaDIqnvA.webp" alt="3.6 - add a readme file" width="720" height="365"&gt;&lt;/a&gt;3.6 - add a readme file&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;Click &lt;strong&gt;Create Repository&lt;/strong&gt;.
&lt;p&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmiro.medium.com%2Fmax%2F640%2F1%2ASAx_pwPzb4o40f2G2vF0lw.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmiro.medium.com%2Fmax%2F640%2F1%2ASAx_pwPzb4o40f2G2vF0lw.webp" alt="3.7 - create a repository button" width="443" height="129"&gt;&lt;/a&gt;3.7 - create a repository button&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;Your newly generate template repository is ready.
&lt;p&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmiro.medium.com%2Fmax%2F640%2F1%2AmTAcB9exDINklJZIQzFDsg.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmiro.medium.com%2Fmax%2F640%2F1%2AmTAcB9exDINklJZIQzFDsg.webp" alt="3.8 - newly generate template repository" width="437" height="79"&gt;&lt;/a&gt;3.8 - newly generate template repository
Finish.&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;

</description>
      <category>community</category>
      <category>watercooler</category>
      <category>welcome</category>
    </item>
    <item>
      <title>How to Install Java on Manjaro Linux</title>
      <dc:creator>Rendy Setiawan</dc:creator>
      <pubDate>Fri, 04 Feb 2022 18:01:00 +0000</pubDate>
      <link>https://forem.com/rensetiawanren/how-to-install-java-on-manjaro-linux-19e5</link>
      <guid>https://forem.com/rensetiawanren/how-to-install-java-on-manjaro-linux-19e5</guid>
      <description>&lt;h2&gt;
  
  
  Table Of Contents
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Install OpenJDK with "Terminal"&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Install OpenJDK with “Software Manager”&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Check Java Version&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Check Javac Version&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Install OpenJDK with "Terminal" &lt;a&gt;&lt;/a&gt;
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Open your &lt;strong&gt;Terminal&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Type &lt;code&gt;pamac install openjdk&lt;/code&gt; on your terminal and then press &lt;strong&gt;[ENTER]&lt;/strong&gt; &lt;/li&gt;
&lt;li&gt;Wait for the downloading and installation progress.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--3kLyU0NH--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://miro.medium.com/max/720/1%2AR2k3pT05EblDTZMIa1NkLg.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--3kLyU0NH--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://miro.medium.com/max/720/1%2AR2k3pT05EblDTZMIa1NkLg.webp" alt="Installing Java using Terminal" width="720" height="245"&gt;&lt;/a&gt;&lt;/p&gt;
Installing Java using Terminal



&lt;h2&gt;
  
  
  Install OpenJDK with “Software Manager” &lt;a&gt;&lt;/a&gt;
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Open &lt;strong&gt;Add/Remove Software&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;On the &lt;strong&gt;Search Box&lt;/strong&gt;, type &lt;code&gt;openjdk&lt;/code&gt; and then press &lt;strong&gt;[ENTER]&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Use the appropriate one for whichever Java version you wish to install.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--mvX9-QMb--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://miro.medium.com/max/720/1%2Ah-3U_aJWUnc8sUXws1d-Sw.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--mvX9-QMb--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://miro.medium.com/max/720/1%2Ah-3U_aJWUnc8sUXws1d-Sw.webp" alt="Installing Java from Add/Remove Software" width="720" height="432"&gt;&lt;/a&gt;&lt;/p&gt;
Installing Java from Add/Remove Software



&lt;h2&gt;
  
  
  Check Java Version &lt;a&gt;&lt;/a&gt;
&lt;/h2&gt;

&lt;p&gt;You can check if Java is installed and see what version you’re running by executing this command:&lt;br&gt;
&lt;code&gt;java -version&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--1Q_1hn_f--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://miro.medium.com/max/720/1%2Avg4XEsRzN9E-_iy1voUlLA.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--1Q_1hn_f--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://miro.medium.com/max/720/1%2Avg4XEsRzN9E-_iy1voUlLA.webp" alt="Check java version command" width="720" height="245"&gt;&lt;/a&gt;&lt;/p&gt;
Check "java version" command



&lt;h2&gt;
  
  
  Check Javac Version &lt;a&gt;&lt;/a&gt;
&lt;/h2&gt;

&lt;p&gt;You can check if Javac is installed and see what version you’re running by executing this command:&lt;br&gt;
&lt;code&gt;javac -version&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--as5fjVMU--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://miro.medium.com/max/720/1%2AppA6JCYPrfj5YcYhtJ5lTQ.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--as5fjVMU--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://miro.medium.com/max/720/1%2AppA6JCYPrfj5YcYhtJ5lTQ.webp" alt="Check javac version command" width="720" height="245"&gt;&lt;/a&gt;&lt;/p&gt;
Check "javac version" command



&lt;p&gt;Finish.&lt;/p&gt;

</description>
      <category>linux</category>
      <category>java</category>
      <category>tutorial</category>
      <category>installation</category>
    </item>
  </channel>
</rss>
