Snippets Collections
switch (expression) {
    case value1:
        // code block 1
        break;
    case value2:
        // code block 2
        break;
    case value3:
        // code block 3
        break;
    default:
        // default code block
}
if (condition1) {
    // code block 1
} elseif (condition2) {
    // code block 2
} elseif (condition3) {
    // code block 3
} else {
    // default code block
}
$day = "Monday";

switch ($day) {
    case "Monday":
        echo "It's the start of the week.";
        break;
    case "Friday":
        echo "It's almost the weekend!";
        break;
    default:
        echo "It's a regular day.";
}
switch (expression) {
    case value1:
        // code to be executed if expression matches value1
        break;
    case value2:
        // code to be executed if expression matches value2
        break;
    // additional cases as needed
    default:
        // code to be executed if none of the cases match
}
// Print numbers from 1 to 5 using a while loop
$i = 1;

while ($i <= 5) {
    echo $i . " ";
    $i++;
}
while (condition) {
    // code to be executed as long as the condition is true
}
// Print numbers from 1 to 5
for ($i = 1; $i <= 5; $i++) {
    echo $i . " ";
}
for (initialization; condition; iteration) {
    // code to be executed during each iteration
}
<?php
$temperature = 25;

if ($temperature > 30) {
    echo "It's hot outside!";
} elseif ($temperature >= 20 && $temperature <= 30) {
    echo "The weather is pleasant.";
} else {
    echo "It's cold outside.";
}
?>
php
if (condition1) {
    // code to be executed if condition1 is true
} elseif (condition2) {
    // code to be executed if condition2 is true
} else {
    // code to be executed if none of the conditions are true
}
if (condition) {
    // code to be executed if the condition is true
} else {
    // code to be executed if the condition is false
}
if (condition) {
    // code to be executed if the condition is true
}
sudo /opt/lampp/lampp start
sudo ./xampp-linux-*-installer.run
chmod +x xampp-linux-*-installer.run
#include <iostream>
using namespace std;
int main()
{
    int n, r, i, t, q, w, a, s, d;
    cin>>r;
    for(i=1;i<=r;i++)
    {
        cin>>n;
        q=w=a=s=d=0;
        t=n%60;
        q+=n/60;
        if(t>35)
        {
            q++;
            if(t%10<5)
            {
                a+=6-t/10;
                s+=t%10;
            }
            else
            {
                a+=(60-t)/10;
                d+=(60-t)%10;
            }
        }
        else
        {
            if(t%10<=5)
            {
                w+=t/10;
                s+=t%10;
            }
            else
            {
                w+=t/10+1;
                d+=10-t%10;
            }
        }
        cout<<q<<" "<<w<<" "<<a<<" "<<s<<" "<<d<<"\n";
    }
    return 0;
}
ocelotapigw:
    container_name: ocelotapigw
    environment:
      - ASPNETCORE_ENVIRONMENT=Development
    depends_on: 
      - catalog.api
      - discount.api
      - basket.api
      - ordering.api
    ports:
      - "8010:80"

ordering.api:
  container_name: ordering.api
  environment:
    - ASPNETCORE_ENVIRONMENT=Development
    - "ConnectionStrings: OrderingConnectionString=Server=orderDB;Database=OrderDb;User Id=sa;Password=SwN12345678; TrustServerCertificate=True"
    - "EventBusSettings:HostAddress=amqp://guest:guest@localhost:5672"
  depends_on: 
    - orderdb
    - rabbitmq
  ports:
    - "8004:80"
Right Click on Project -> Add -> Container Orchestration Support -> Docker Compose -> Linux
<?php
// Konfigurasi koneksi ke database
$servername = "localhost"; // Ganti dengan nama server Anda
$username = "adminmaster"; // Ganti dengan username database Anda
$password = "DTCMtolong313"; // Ganti dengan password database Anda
$dbname = "master"; // Ganti dengan nama database Anda

// Membuat koneksi
$conn = new mysqli($servername, $username, $password, $dbname);

// Memeriksa koneksi
if ($conn->connect_error) {
    die("Koneksi gagal: " . $conn->connect_error);
}

// Ambil term dari input pengguna
//$term = $_POST["term"];
$term = mysqli_real_escape_string($conn, $_POST['term']);

// Query untuk mengambil data nama lengkap dari master_data_staff dengan jantina = 0
$sql = "SELECT DISTINCT nama_lengkap FROM master_data_staff WHERE jantina = 0 AND nama_lengkap LIKE '%$term%' LIMIT 10";
$result = $conn->query($sql);

// Menyimpan hasil query dalam bentuk array
$data = array();
if ($result->num_rows > 0) {
    while ($row = $result->fetch_assoc()) {
        $data[] = $row["nama_lengkap"];
    }
}

// Mengirimkan data dalam format JSON
echo json_encode($data);

// Menutup koneksi database
$conn->close();
?>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
    <script>
        $(document).ready(function() {
            $("#nama_suami").autocomplete({
                source: function(request, response) {
                    $.ajax({
                        url: "fetch_nama_lengkap.php",
                        type: "POST",
                        dataType: "json",
                        data: {
                            term: request.term
                        },
                        success: function(data) {
                            response(data);
                        }
                    });
                },
                minLength: 2 // Jumlah minimum karakter sebelum autocomplete mulai
            });
        });
    </script>
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Edit Staff</title>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
    <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"></script>
    <link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<link rel="stylesheet" href="adminer.css" />

<script>
        $(document).ready(function() {
            $("#nama_suami").autocomplete({
                source: function(request, response) {
                    $.ajax({
                        url: "fetch_nama_lelaki.php",
                        type: "POST",
                        dataType: "json",
                        data: {
                            term: request.term
                        },
                        success: function(data) {
                            response(data);
                        }
                    });
                },
                minLength: 2, // Jumlah minimum karakter sebelum autocomplete mulai
                select: function(event, ui) {
                    $("#nama_suami").val(ui.item.value);
                    $.ajax({
                        url: "fetch_id_number.php",
                        type: "POST",
                        dataType: "json",
                        data: {
                            nama_lengkap: ui.item.value
                        },
                        success: function(data) {
                            $("#id_suami").val(data.id_number);
                        }
                    });
                    return false;
                }
            });
        });
    </script>
// Slick Script
function site_styles() {
	wp_register_style('slick', 'https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css', array(), false, 'all');
    wp_enqueue_style('slick');
	wp_register_style('slick-theme', 'https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick-theme.css', array(), false, 'all');
    wp_enqueue_style('slick-theme');
}
add_action('wp_enqueue_scripts', 'site_styles');

// Slick Script
add_action('wp_body_open', function() { ?>
    <script type="text/javascript" src="https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.min.js"></script>
<?php });

***
  
<script type="text/javascript">    
	jQuery('.history-timeline').slick({
	  dots: true,
	  infinite: false,
	  speed: 300,
	  slidesToShow: 3,
	  slidesToScroll: 3,
	  responsive: [
	    {
	      breakpoint: 1024,
	      settings: {
	        slidesToShow: 2,
	        slidesToScroll: 2
	      }
	    },
	    {
	      breakpoint: 767,
	      settings: {
	        slidesToShow: 1,
	        slidesToScroll: 1
	      }
	    }
	    // You can unslick at a given breakpoint now by adding:
	    // settings: "unslick"
	    // instead of a settings object
	  ]
	});
</script>
// C++ code to find count of largest consectutive subset
#include <iostream>
#include <stdlib.h>
#include <unordered_set>
using namespace std;

int main() {
    int sz, num;
    unordered_set<int> numbers;
    int maxLen = 0;
    cin>>sz;
    for (int i=0;i<sz;i++) {
        cin>>num;
        numbers.insert(num);
    }
    
    for (int i : numbers) {
        if (numbers.find(i-1) == numbers.end()) {
            int temp = i;
            while (numbers.find(temp) != numbers.end()) temp++;
            
            if (maxLen < (temp-i)) maxLen = temp-i;
        }
    }

    cout<< maxLen;
    return 0;
}
<?php
  $greeting = "Hello, ";
  $name = "John";

  $greeting .= $name;

  echo $greeting; // Outputs: Hello, John
?>
<?php
  $firstName = "John";
  $lastName = "Doe";

  $fullName = $firstName . " " . $lastName;

  echo $fullName; // Outputs: John Doe
?>
def qo_shish(son1, son2):
    return son1 + son2

# Test qilish
son1 = 5
son2 = 3
natija = qo_shish(son1, son2)
print(f"{son1} + {son2} = {natija}")
 docker-compose -f docker-compose.yml -f docker-compose.override.yml down
docker-compose -f docker-compose.yml -f docker-compose.override.yml up -d
mklink "C:\Users\[your_user_name]\AppData\Roaming\FileZilla\sitemanager.xml" "C:\Users\[your_user_name]\Dropbox\application-sync\Filezilla\sitemanager.xml"
<?php
  $message = "Hello, World!";
  echo $message; // Outputs: Hello, World!

  $message = "Greetings, Universe!";
  echo $message; // Outputs: Greetings, Universe!
?>
<?php
  $message = "Hello, World!"; // This creates a variable named $message and assigns the text "Hello, World!" to it.
  $number = 42; // This creates a variable named $number and assigns the value 42 to it.
?>
<?php
echo "Hello, World!";
// or
print("Welcome to PHP!");
?>
<?php
// PHP code goes here
?>
document.addEventListener("DOMContentLoaded", function () {
  const toggleButton = document.getElementById("fulltoggleButton");
  const myDiv = document.getElementById("fulldetailssection");
  const halfdetailssection = document.getElementById("halfdetailssection");

  if (toggleButton) {
    toggleButton.addEventListener("click", function () {
      toggleSections();
    });
  }

  const halftoggleButton = document.getElementById("halftoggleButton");

  if (halftoggleButton) {
    halftoggleButton.addEventListener("click", function () {
      toggleSections();
    });
  }

  // Attach click event to the document body for specific slick buttons
  document.body.addEventListener("click", function (event) {
    const target = event.target;
    const isSlickButton = target.matches(".wpl-el-property-slider-section .slick-next, .wpl-el-property-slider-section .slick-prev, .wpl-el-testimonial-section .slick-next, .wpl-el-testimonial-section .slick-prev");

    if (isSlickButton) {
      if (myDiv.style.display !== "none") {
        myDiv.style.display = "none";
        halfdetailssection.style.display = "block";
      }
    }
  });

  function toggleSections() {
    if (myDiv.style.display === "none") {
      myDiv.style.display = "block";
      halfdetailssection.style.display = "none";
    } else {
      myDiv.style.display = "none";
      halfdetailssection.style.display = "block";
    }
  }
});
console.log('Hi')

const func = () => {
    return new Promise(resolve => {
        setTimeout(() => {
            console.log('2nd Hi')
            resolve();
        }, 2000)
    })
}

(async () => {
    await func();
    console.log('3rd Hi');
})();
use core {*}

// Using #dyncall dynamically loads the library at runtime.
#foreign #dyncall "libc.so" {
    write :: (fd: i32, data: [&] u8, count: i32) -> i32 ---
}

main :: () {
    msg: [] u8 = "Hello, libc!";

    write(1, msg.data, msg.length);
}
    
Arrays.sort(numsWithIndices, (a,b) -> Integer.compare(a[1],b[1]));
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChkQQuPfHZ6DM1Rd2rZARH4kHS7t+Zf5F7lsfSGxNaVj670Wnjy6QZZY6a2BBLO5PtOBd0Xpc6Y+2d0wEq2YBzgOO1Pujl1SqkU9bIwrbou2Pq1LGHXySxt+R99aFK4CP4ckJGMhvcTBVPtsdxxb9zab4mRquVITt2Mmkop3DSl7zjl3GVxVB/wn/BAuHaROpAKE33kK0bxdSmRVYhqKXnKx5PdGd1rIONP28znFNk5Fz7gA8398/45vJEAFxv+r5Ti8BLhVdXapz95edMS20VMvlN7wBPncLF7gLCSB8yjp7ozV/X9cbn6oxWdeFOwcYRF8JjiC1J37muOw1w/kLL r.spiridonov@astondevs.ru
 docker image prune -a --force --filter "until=2160h"
const cleanSort = function(x,y)

{

    x = x.toLowerCase();

    y = y.toLowerCase();

    return x < y ? -1 : +(x!=y);

};

const sortInLayer = function(/*str*/name,  o,a,s)

{

    o = app.properties.activeDocument;

    if( !o ){ alert( "No document." ); return; }

    o = o.layers.itemByName(String(name));

    if( !o || !o.isValid ){ alert("No layer with that name."); return; }

    for

    (

        (a=(o=o.pageItems).everyItem().na
{
  "name": "{086f665e-6a55-4107-9147-f9a14e72b137}",
  "description": "managed storage for Open-in-Chrome extension",
  "type": "storage",
  "data":
  {
    "hosts": ["www.bing.com"],
    "urls": []
  }
}
[
    {
      "$lookup": {
        "from": "Assessment",
        "localField": "assessmentId",
        "foreignField": "_id",
        "as": "assessment"
      }
    },
    {
      "$unwind": {
        "path": "$assessment",
        "preserveNullAndEmptyArrays": true
      }
    },
    {
      "$match": {
        "$and": [
          {
            "assessmentId": {
              "$oid": "622072b1aaeb4e5955319304"
            },
            "endCode": {
              "$ne": ""
            }
          }
        ]
      }
    },
   {
  "$project": {
    "_id": 1,
    "name": {
      "$cond": {
        "if": { "$ifNull": ["$assessmentType", false] },
        "then": "$assessmentType",
        "else": "IDRS"
      }
    },
    "assessmentId": "$_id",
    "ok": "$assessment.type",
    "createdAt": 1
  }
}
,
   {
      "$sort": {
        "createdAt": -1
      }
    }

  ]
add_filter( 'eapro_field_typography_customwebfonts', 'eapro_field_typography_customwebfonts_modified' );
if( ! function_exists('eapro_field_typography_customwebfonts_modified')) {
    function eapro_field_typography_customwebfonts_modified() {
        // your custom fonts 
	$custom_fonts = array(
            'Spartan Light',
            'Spartan Regular',
        );
        return $custom_fonts;
    }
}
SELECT 
  content.title,
  content.body,
  content.published,
  author.url,
FROM 
  `3000_forum_boards___updated_daily___english.socialgist_boards_english_public`
  -- Make sure these parameters match the names you set for the dataset and tables
WHERE 
  content.published BETWEEN '2023-01-01' AND '2024-02-29'
  AND (content.body LIKE '%Super Bowl%' OR content.title LIKE '%Super Bowl%')
LIMIT 10;
star

Mon Mar 04 2024 01:08:02 GMT+0000 (Coordinated Universal Time)

@codewarrior

star

Mon Mar 04 2024 01:06:03 GMT+0000 (Coordinated Universal Time)

@codewarrior

star

Mon Mar 04 2024 01:01:56 GMT+0000 (Coordinated Universal Time)

@codewarrior

star

Mon Mar 04 2024 01:00:56 GMT+0000 (Coordinated Universal Time)

@codewarrior

star

Mon Mar 04 2024 00:52:48 GMT+0000 (Coordinated Universal Time)

@codewarrior

star

Mon Mar 04 2024 00:51:42 GMT+0000 (Coordinated Universal Time)

@codewarrior

star

Mon Mar 04 2024 00:48:57 GMT+0000 (Coordinated Universal Time)

@codewarrior

star

Mon Mar 04 2024 00:47:40 GMT+0000 (Coordinated Universal Time)

@codewarrior

star

Mon Mar 04 2024 00:46:10 GMT+0000 (Coordinated Universal Time)

@codewarrior

star

Mon Mar 04 2024 00:34:17 GMT+0000 (Coordinated Universal Time)

@codewarrior

star

Mon Mar 04 2024 00:32:51 GMT+0000 (Coordinated Universal Time)

@codewarrior

star

Mon Mar 04 2024 00:28:23 GMT+0000 (Coordinated Universal Time)

@codewarrior

star

Mon Mar 04 2024 00:27:12 GMT+0000 (Coordinated Universal Time)

@codewarrior

star

Mon Mar 04 2024 00:12:42 GMT+0000 (Coordinated Universal Time)

@codewarrior

star

Mon Mar 04 2024 00:07:55 GMT+0000 (Coordinated Universal Time)

@codewarrior

star

Mon Mar 04 2024 00:04:14 GMT+0000 (Coordinated Universal Time)

@codewarrior

star

Sun Mar 03 2024 22:56:06 GMT+0000 (Coordinated Universal Time) https://www.acmicpc.net/submit/19940/74359993

@hajinjang0714

star

Sun Mar 03 2024 13:33:57 GMT+0000 (Coordinated Universal Time)

@abhikash01

star

Sun Mar 03 2024 13:32:45 GMT+0000 (Coordinated Universal Time)

@abhikash01

star

Sun Mar 03 2024 13:21:49 GMT+0000 (Coordinated Universal Time)

@adnanbasalamah #php

star

Sun Mar 03 2024 13:20:52 GMT+0000 (Coordinated Universal Time)

@adnanbasalamah #javascript

star

Sun Mar 03 2024 13:19:22 GMT+0000 (Coordinated Universal Time)

@adnanbasalamah #javascript

star

Sun Mar 03 2024 11:14:02 GMT+0000 (Coordinated Universal Time)

@omnixima #jquery

star

Sun Mar 03 2024 07:45:26 GMT+0000 (Coordinated Universal Time)

@VS_codes #c++

star

Sat Mar 02 2024 16:48:11 GMT+0000 (Coordinated Universal Time)

@codewarrior

star

Sat Mar 02 2024 16:43:17 GMT+0000 (Coordinated Universal Time)

@codewarrior

star

Sat Mar 02 2024 10:21:14 GMT+0000 (Coordinated Universal Time) https://p5play.org/lang/ja/learn/index.html

@mirainoschool

star

Sat Mar 02 2024 07:12:03 GMT+0000 (Coordinated Universal Time)

@khanwins

star

Sat Mar 02 2024 05:32:24 GMT+0000 (Coordinated Universal Time)

@abhikash01

star

Sat Mar 02 2024 05:32:06 GMT+0000 (Coordinated Universal Time)

@abhikash01

star

Sat Mar 02 2024 05:32:06 GMT+0000 (Coordinated Universal Time)

@abhikash01

star

Sat Mar 02 2024 05:31:23 GMT+0000 (Coordinated Universal Time)

@abhikash01

star

Sat Mar 02 2024 05:30:43 GMT+0000 (Coordinated Universal Time)

@abhikash01

star

Sat Mar 02 2024 03:51:37 GMT+0000 (Coordinated Universal Time) https://fjorge.com/insights/blog/how-do-i-sync-filezilla-site-manager-settings-with-dropbox-on-windows-7/

@Kiwifruit

star

Fri Mar 01 2024 22:33:40 GMT+0000 (Coordinated Universal Time)

@codewarrior

star

Fri Mar 01 2024 22:27:02 GMT+0000 (Coordinated Universal Time)

@codewarrior

star

Fri Mar 01 2024 22:07:59 GMT+0000 (Coordinated Universal Time)

@codewarrior

star

Fri Mar 01 2024 22:01:20 GMT+0000 (Coordinated Universal Time)

@codewarrior

star

Fri Mar 01 2024 18:24:04 GMT+0000 (Coordinated Universal Time)

@Harsh #javascript #promises

star

Fri Mar 01 2024 15:06:16 GMT+0000 (Coordinated Universal Time) https://uonetplus-uczen.vulcan.net.pl/cieszyn/006225/App

@gashgvahgas

star

Fri Mar 01 2024 15:05:02 GMT+0000 (Coordinated Universal Time) https://onyxlang.io/

@@Bicky0

star

Fri Mar 01 2024 14:30:59 GMT+0000 (Coordinated Universal Time)

@nahot

star

Fri Mar 01 2024 14:06:20 GMT+0000 (Coordinated Universal Time) https://git.restream.ru/-/profile/keys/693

@speccy

star

Fri Mar 01 2024 13:30:46 GMT+0000 (Coordinated Universal Time)

@Shuhab #bash

star

Fri Mar 01 2024 10:25:42 GMT+0000 (Coordinated Universal Time) https://community.adobe.com/t5/indesign-discussions/layer-item-order/m-p/9545456

@snarklife

star

Fri Mar 01 2024 10:09:52 GMT+0000 (Coordinated Universal Time) https://webextension.org/listing/open-in.html?from

@blind_wanderer #json

star

Fri Mar 01 2024 04:29:49 GMT+0000 (Coordinated Universal Time) http://34.74.16.180:3000/question#eyJkYXRhc2V0X3F1ZXJ5Ijp7InR5cGUiOiJuYXRpdmUiLCJuYXRpdmUiOnsiY29sbGVjdGlvbiI6InVzZXJBc3Nlc3NtZW50TWFwcGluZyIsInF1ZXJ5IjoiW1xuICAgIHtcbiAgICAgIFwiJGxvb2t1cFwiOiB7XG4gICAgICAgIFwiZnJvbVwiOiBcIkFzc2Vzc21lbnRcIixcbiAgICAgICAgXCJsb2NhbEZpZWxkXCI6IFwiYXNzZXNzbWVudElkXCIsXG4gICAgICAgIFwiZm9yZWlnbkZpZWxkXCI6IFwiX2lkXCIsXG4gICAgICAgIFwiYXNcIjogXCJhc3Nlc3NtZW50XCJcbiAgICAgIH1cbiAgICB9LFxuICAgIHtcbiAgICAgIFwiJHVud2luZFwiOiB7XG4gICAgICAgIFwicGF0aFwiOiBcIiRhc3Nlc3NtZW50XCIsXG4gICAgICAgIFwicHJlc2VydmVOdWxsQW5kRW1wdHlBcnJheXNcIjogdHJ1ZVxuICAgICAgfVxuICAgIH0sXG4gICAge1xuICAgICAgXCIkbWF0Y2hcIjoge1xuICAgICAgICBcIiRhbmRcIjogW1xuICAgICAgICAgIHtcbiAgICAgICAgICAgIFwiYXNzZXNzbWVudElkXCI6IHtcbiAgICAgICAgICAgICAgXCIkb2lkXCI6IFwiNjIyMDcyYjFhYWViNGU1OTU1MzE5MzA0XCJcbiAgICAgICAgICAgIH0sXG4gICAgICAgICAgICBcImVuZENvZGVcIjoge1xuICAgICAgICAgICAgICBcIiRuZVwiOiBcIlwiXG4gICAgICAgICAgICB9XG4gICAgICAgICAgfVxuICAgICAgICBdXG4gICAgICB9XG4gICAgfSxcbiAgIHtcbiAgXCIkcHJvamVjdFwiOiB7XG4gICAgXCJfaWRcIjogMSxcbiAgICBcIm5hbWVcIjoge1xuICAgICAgXCIkY29uZFwiOiB7XG4gICAgICAgIFwiaWZcIjogeyBcIiRpZk51bGxcIjogW1wiJGFzc2Vzc21lbnRUeXBlXCIsIGZhbHNlXSB9LFxuICAgICAgICBcInRoZW5cIjogXCIkYXNzZXNzbWVudFR5cGVcIixcbiAgICAgICAgXCJlbHNlXCI6IFwiSURSU1wiXG4gICAgICB9XG4gICAgfSxcbiAgICBcImFzc2Vzc21lbnRJZFwiOiBcIiRfaWRcIixcbiAgICBcIm9rXCI6IFwiJGFzc2Vzc21lbnQudHlwZVwiLFxuICAgIFwiY3JlYXRlZEF0XCI6IDFcbiAgfVxufVxuLFxuICAge1xuICAgICAgXCIkc29ydFwiOiB7XG4gICAgICAgIFwiY3JlYXRlZEF0XCI6IC0xXG4gICAgICB9XG4gICAgfVxuXG4gIF0iLCJ0ZW1wbGF0ZS10YWdzIjp7fX0sImRhdGFiYXNlIjoyfSwiZGlzcGxheSI6InRhYmxlIiwidmlzdWFsaXphdGlvbl9zZXR0aW5ncyI6e319

@CodeWithSachin ##jupyter #aggregation #mongodb

star

Fri Mar 01 2024 03:46:07 GMT+0000 (Coordinated Universal Time)

@Ria

star

Thu Feb 29 2024 22:30:27 GMT+0000 (Coordinated Universal Time)

@juanc99 #sql

Save snippets that work with our extensions

Available in the Chrome Web Store Get Firefox Add-on Get VS Code extension