Results: 1578
Notes
  • Newest first
  • Oldest first
  • Newest first(All)
  • Oldest first(All)
Late static binding with attribute CODE
class a {
	const OPERATOR_ID = 0;
	public function test(){
		echo self::OPERATOR_ID;
		echo static::OPERATOR_ID;
	}
}
class b extends a {
	const OPERATOR_ID = 1;
}
(new b())->test();
by Valeri Tandilashvili
10 months ago
0
PHP
0
Third party cookie example
Create third party cookie (
setcookie.php
):
$result = setcookie('cooname', 'V37', [
    'expires' => time() + 3600,
    'path' => '/',
    'domain' => '.sibrdzne.ge',
    'httpOnly' => true,
    'secure' => true,
    'SameSite' => 'None'
]);
Receive cookie from another domain (
getcookie.php
):
header('Access-Control-Allow-Origin:'.$_SERVER['HTTP_ORIGIN'] ?? '*');
header('Access-Control-Allow-Credentials:true');
echo $_COOKIE['cooname'] ?? 'no-cookie';
Pass cookie and fetch content from another domain (from console):
fetch('https://sibrdzne.ge/getcookie.php', {
    credentials:'include'
}).then(e=>e.text()).then(e=>console.log(e));
by Valeri Tandilashvili
1 year ago
0
HTTP
0
migrate only one migration
./vendor/bin/sail php artisan migrate --path=/database/migrations/2023_11_19_200822_add_unit_id_to_multiple_tables.php
by Luka Tatarishvili
1 year ago
0
MySQL
0
1
by otar datuadze
1 year ago
10
Postman
sadsdsdsds
0
:has pseudo selector in CSS for Navbar
HTML
`
<div class="container">
          <div class="item">Home</div>
          <div class="item">Shop</div>
          <div class="item">About</div>
          <div class="item">Contact</div>
CSS
.container {
           display: flex;
           padding: 2rem 3rem;
           gap: 2rem;
           border-radius: 1 rem;
CSS
Select any .item that is not hovered, but is inside a .container which has an .item that is hovered
.item {
color: #ffffff;
transition: color 300ms;
}
.container: has(.item:hover)
   .item:not(:hover)  {
    color: #888888;
}
by Tinatin Kvinikadze
2 years ago
0
CSS
HTML
Pseudo selector
0
Array KEY outside of LOOP
$key
is useful outside of the
foreach
loop
$array = ['key1'=>1234, 'key2'=>2345, 'key3'=>3457];
foreach ($array as $key => $item) {
	
}
echo $key; // key3
by Valeri Tandilashvili
2 years ago
0
PHP
0
Calendar CODE

// Example usage:
$year = 2023;
$month = 1; // May

function generateMonthArray($year, $month) {
    $numDays = cal_days_in_month(CAL_GREGORIAN, $month, $year);
    $firstDay = date("N", strtotime("$year-$month-01")); // 1 = Monday, 7 = Sunday

    $weekdays = ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'];

    $monthArray = array_fill_keys($weekdays, []);

    for ($day = 1; $day <= $numDays; $day++) {
        $weekday = ($firstDay + $day - 2) % 7; // Adjust to start from Monday
        $monthArray[$weekdays[$weekday]][] = $day;
    }
    
    foreach ($monthArray as &$weekDays) {
    	if ($weekDays[0]!=1) {
    		array_unshift($weekDays, '');
    	} else {
    		break;
    	}
    }

    return $monthArray;
}

$result = generateMonthArray($year, $month);

// Print the result
foreach ($result as $weekday => $days) {
    echo $weekday . "\t" . implode("\t", $days) . "\n";
}
by Valeri Tandilashvili
2 years ago
0
PHP
0
git pull with and without rebase
If you prefer to rebase your local changes on top of the remote branch, you can use the rebase strategy. This essentially replays your local commits on top of the incoming remote changes. To use this strategy, you can run the following command before pulling:
git config pull.rebase true
If you want to pull without rebase then
git config pull.rebase false
by Luka Tatarishvili
2 years ago
0
Git
commands
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
2 years ago
0
HTML
0
CSS Variables
Global Scope
: Variables defined at the
:root
level are considered to be in the
global 
scope and can be
accessed
throughout your
entire stylesheet.
Example1: CSS:
:root {
  --primary-color: #007bff; /* Define the CSS variable */
}

.button {
  background-color: var(--primary-color); /* Use the CSS variable */
}
HTML:
<button class="button">Button 1</button>
  <button class="button">Button 2</button>
  <button class="button">Button 3</button>
Example2:
:root {
	--card-bg-color: #232323;
    --text-color: #7FFFD4;
    --text-font-family: 'Arial', sans-serif;
    --text-font-size: 17px;
    --text-line-height: 1.5;
}

.card {
  border: 1px solid #ddd;
  padding: 20px;
  margin: 10px;
  background-color: var(--card-bg-color);
}

.card p {
  color: var(--text-color);
  font-family: var(--text-font-family);
  font-size: var(--text-font-size);
  line-height: var(--text-line-height);
  
}
HTML:
<div class="card">
    <p>This is the first card. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
  </div>

  <div class="card">
    <p>This is the second card. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris.</p>
  </div>

  <div class="card">
    <p>This is the third card. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>
  </div>
Example 3: CSS:
:root {
  --color-white: #ffffff;
  --color-blue: #007bff;
  --color-red: #ff0000;
  --color-green: #00ff00;
  --color-yellow: #fcba03;
}

.card {
	background-color: #f8f8f8;
  border: 5px solid var(--color-yellow);
  padding: 20px;
  margin: 10px;
}

.card h2 {
  color: var(--color-blue);
}

.card p {
  color: var(--color-black);
}

.button {
  background-color: var(--color-red);
  color: var(--color-white);
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  margin: 5px;
}
HTML:
<div class="card">
    <h2>Card 1</h2>
    <p>This is some text within Card 1.</p>
    <button class="button">Button 1</button>
  </div>

  <div class="card">
    <h2>Card 2</h2>
    <p>This is some text within Card 2.</p>
    <button class="button">Button 2</button>
  </div>
  
  <div class="card">
    <h2>Card 3</h2>
    <p>This is some text within Card 3.</p>
    <button class="button">Button 3</button>
  </div>
by Luka Tatarishvili
2 years ago
0
CSS
CSS VARIABLES
0
Results: 1578