Results: 1580
Notes
  • Newest first
  • Oldest first
  • Newest first(All)
  • Oldest first(All)
Sematnical tags
Header: The
<header>
tag defines the header of a document or section. Nav: The
<nav> 
tag defines a navigation bar. Section: The
<section>
tag defines a section of a document. Article: The
<article> 
tag defines an independent piece of content, such as a blog post or news article. ** aside:** The
<aside>
tag defines a sidebar or other secondary content. Footer: The
<footer>
tag defines the footer of a document or section. figure: The
<figure>
tag defines a self-contained piece of content, such as an illustration, diagram, photo, code listing, etc. figcaption: The
<figcaption>
tag defines a caption for a figure. h1-h6: The
<h1>
through
<h6>
tags define headings of different levels. main: The
<main>
tag defines the main content of a document. a: The
 <a> 
tag defines a hyperlink. form: The
<form>
tag defines a form. input: The
<input>
tag defines an input field. img: The
<img>
tag defines an image. blockquote: The
<blockquote>
tag defines a quotation. time: The
<time>
tag defines a date or time. mark: The
<mark>
tag defines a highlighted passage of text. b: The
<b>
tag defines bold text. strong: The
<strong>
tag defines strong text. em: The
<em>
tag defines emphasized text. code: The
<code>
tag defines code snippets. pre: The
<pre>
tag defines preformatted text.
by Luka Tatarishvili
1 year ago
0
HTML
0
Formatting elements were designed to display special types of text: <b> - Bold text
<p>This is a <b>bold</b> text.</p>
<strong> - Important text // Has semantic meaning
<p>This is an <strong>important</strong> point to remember.</p>
<i> - Italic text
<p>This is <i>italic</i> text.</p>
<em> - Emphasized text // Has semantic meaning
<p>This is <em>emphasized</em> text.</p> 
<mark> - Marked text
<p>Please <mark>review</mark> the important points in the document.</p>
<small> - Smaller text
<p>This is some <small>additional information</small> about the topic.</p>
<del> - Deleted text
<p>I changed my mind and <del>don't</del> want to go to the party.</p>
<ins> - Inserted text
<p>I <ins>really</ins> enjoyed the movie.</p>
<sub> - Subscript text
<p>H2O is the chemical formula for water, where 2 is written as H<sub>2</sub>O.</p>
<sup> - Superscript text
<p>The area of a circle is calculated using the formula A = πr<sup>2</sup>.</p>
<s> - Strikethrough
<p>This product is currently <s>out of stock</s>.</p>
<u> - Underline:
<p><u>This text is underlined.</u></p>
<br> - Break
<p>This is the first line.<br>This is the second line.</p>
<pre> - Preformatted:
<pre>
    function sayHello() {
        console.log("Hello, world!");
    }
</pre>
Summary of semantical meaning tags: Tags with Semantic Meaning:
<strong>
<em>
Tags without Semantic Meaning:
<b>
<I>
<mark>
<small>
<del>
<ins>
<sub>
<sup>
<s>
<u>
<be>
<pre>
by Luka Tatarishvili
1 year ago
0
HTML
0
ფაილების დაქომითება
git add (ფაილის სახელი)
მოცემული ბრძანება მოამზადებს ჩვენს მიერ მოდიფიცირებულ/დამატებულ/წაშლილ ფაილებს კომიტისთვის.
git add -A
და
git add .
მოამზადებს ყველა ფაილს დასაკომიტებლად
by ვაჟა ტყემალაძე
1 year ago
0
Git
git
0
ფაილის დამატება
ფაილის შესაქმნელად ვიყენებთ ამ ბრძანებას:Touch touch .gitignore შეიქმნება ფაილი gitignore, რომელშიც შეგვიძლია მივუთითოთ რა ტიპის ფაილები უნდა დააიგნოროს გიტმა. მაგალითად, ჩავწერთ gitignore ფაილში *.html -ს და ყველა ფაილი რომელიც დაბოლოვდება html-ით გიტი არ გამოაჩენს.
by ვაჟა ტყემალაძე
1 year ago
0
Git
git
0
ინიციალიზაცია
იმისათვის რომ გიტმა დაიწყოს მუშაობა კონკრეტულ დირექტორიაში საჭიროა მისი ინიციალიზაცია შემდეგი ბრძანებით:
git init
დირექტორიაში გადასასვლელად ვიყენებთ
cd (ფაილის დასახელებას ვწერთ)
იმისათვის რომ ვნახოთ ფაილების ჩამონათვალი გარკვეულ დირექტორიაში ვიყენებთ ამ ბრძანებას:
ls
და
ls -la
by ვაჟა ტყემალაძე
1 year ago
0
Git
git
0
გით კონფიგურაცია
მას შემდეგ რაც git-ს დავაყენებთ ლოკალურ მანქანაზე საჭიროა მისი კონფიგურაცია ჩვენი მონაცემებით, რომელიც გითის კომიტში მოახდენს ჩვენს იდენტიფიკაციას გავხსნათ ტერმინალი და ჩავწეროთ შემდეგი ბრძენებები
git config --global user.name "სახელი გვარი"
მოცემული ბრძანებით მივუთითებთ ჩვენს სახელს და გვარს
git config --global user.email "MY_NAME@example.com"
მოცემული ბრძანებით მივუთითებთ ჩვენს ელფოსტას
git config --list
მოცემული ბრძანებით გვიჩვენებს კონფიგურაციის ყველა პარამეტრს
by ვაჟა ტყემალაძე
1 year ago
0
Git
git
0
<?php

$alpha = range('A', 'Z');  
for( $i = 0; $i < 26; $i++ ) {   
  for( $k = 26; $k > $i ; $k-- ){  
    echo $alpha[$i];  
    }  
    echo "\n";  
}  
result AAAAAAAAAAAAAAAAAAAAAAAAAA BBBBBBBBBBBBBBBBBBBBBBBBB CCCCCCCCCCCCCCCCCCCCCCCC DDDDDDDDDDDDDDDDDDDDDDD EEEEEEEEEEEEEEEEEEEEEE FFFFFFFFFFFFFFFFFFFFF GGGGGGGGGGGGGGGGGGGG HHHHHHHHHHHHHHHHHHH IIIIIIIIIIIIIIIIII JJJJJJJJJJJJJJJJJ KKKKKKKKKKKKKKKK LLLLLLLLLLLLLLL MMMMMMMMMMMMMM NNNNNNNNNNNNN OOOOOOOOOOOO PPPPPPPPPPP QQQQQQQQQQ RRRRRRRRR SSSSSSSS TTTTTTT UUUUUU VVVVV WWWW XXX YY Z
by ვაჟა ტყემალაძე
1 year ago
0
PHP
Problem Solving
Note
php
Problem
PHP Object Oriented Programming (OOP)
0
Cache credentials
Sets the cache timeout for 3600 seconds
git config --global credential.helper 'cache --timeout=3600'
by Valeri Tandilashvili
1 year ago
0
Git
0
control how a webpage is displayed on different devices by adjusting the width and initial zoom level of the viewport to match the device's screen size
<meta name="viewport" content="width=device-width, initial-scale=1">
width=device-width
- sets the width of the viewport to be equal to the width of the device's screen. This ensures that the webpage adapts and fills the entire width of the device, regardless of its specific screen size or resolution.
CSS media query
works properly with any device by setting device width to viewport
initial-scale=1
- sets the initial zoom level when the webpage is first loaded. A value of 1 means that the webpage will be displayed at a 1:1 ratio, without any zooming or scaling applied
by Valeri Tandilashvili
1 year ago
0
HTML
meta tags
0
Difference between route:clear and route:cache
php artisan route:cache
This command will generate a cached version of our routes. Once the routes are cached,
Laravel
will use the cached version instead of parsing and compiling the routes on each request, which helps to improve the overall performance of your application When we make changes to our routes, we need to regenerate it to reflect the updated routes
php artisan route:clear
This command will remove the cached routes, and the application will revert to parsing and compiling the routes dynamically
by Valeri Tandilashvili
1 year ago
0
Laravel
0
Results: 1580