Snippets Collections
#include <iostream>
using namespace std;

int main()
{
    int num[20][20]{ 0 };
    int n, m;

    // Ввод количества строк и столбцов
    cout << "Введите количество строк (не более 20): ";
    cin >> n;
    cout << "Введите количество столбцов (не более 20): ";
    cin >> m;

    cout << "Введите элементы матрицы:" << endl;
    for (int i = 0; i < n; i++) // цикл по строкам
    {
        for (int j = 0; j < m; j++) // цикл по столбцам
        {
            cout << "num[" << i << "," << j << "]= ";
            cin >> num[i][j];
        }
    }

    int max = num[0][0], min;
    for (int i = 0; i < n; i++)
    {
        min = num[i][0];
        for (int j = 1; j < m; j++)
        {
            if (num[i][j] < min)
                min = num[i][j];
        }
        if (max < min)
            max = min;
    }
    cout << max << endl;
}
#include <iostream>
#include <string>
#include <windows.h>
using namespace std;

int main()
{
    SetConsoleCP(1251);
    SetConsoleOutputCP(1251);
    unsigned count{}; // счетчик, указывающий колличество определенного символа в фамилии
    string sname;
    cout << "Введите вашу фамилию: ";
    getline(cin, sname);
    for (const char k : sname)
    {
        if (k == 'б' or k == 'Б')
        {
            count++;
        }
    }
    cout << "Количество вхождений буквы: " << count << endl;
}

CREATE DATABASE act;

CREATE TABLE Department (
    Code int not null,
    Name varchar(20) not null,
    Budget int not null,
    PRIMARY KEY (Code)
);

describe Department;

begin
INSERT INTO Department VALUES (14, 'IT', 65000);
INSERT INTO Department VALUES (37, 'Accounting', 15000);
INSERT INTO Department VALUES (59, 'Human Resources', 240000);
INSERT INTO Department VALUES (77, 'Research', 55000);
end;

SELECT * FROM Department;
CREATE DATABASE act;

CREATE TABLE Products (
    Code int not null,
    Name varchar(20) not null,
    Price int not null,
    Manufacturer int not null,
    PRIMARY KEY (Code)
);

begin
INSERT INTO Products VALUES (1, 'Hard drive', 240, 5);
INSERT INTO Products VALUES (2, 'Memory', 120, 6);
INSERT INTO Products VALUES (3, 'ZIP drive', 150, 4);
INSERT INTO Products VALUES (4, 'Floppy disk', 5, 6);
INSERT INTO Products VALUES (5, 'Monitor', 240, 1);
INSERT INTO Products VALUES (6, 'DVD drive', 180, 2);
INSERT INTO Products VALUES (7, 'CD drive', 90, 2);
INSERT INTO Products VALUES (8, 'Printer', 270, 3);
INSERT INTO Products VALUES (9, 'Toner cartridge', 66, 3);
INSERT INTO Products VALUES (10, 'DVD burner', 180, 2);
end;

SELECT * FROM Products;
From many beneifical reasons for DEX platforms, crypto enthusiasts change their way of crypto trading in a decentralized protocol. Therefore in the crypto space, these segment crypto audiences are increasing. Among many crypto business models launching a DEX platform is the best proven successful business model also a small number of platforms are offering this service. Moreover, it can yield high revenue and users to the platform. Based upon the best DEX platforms pancakeswap stays in the first place from its offering services and its functioning binance smart chain blockchain network.  To launch a DEX platform similar to this, the pancakeswap clone script helps crypto startups. Fill the gap by offering needed features among users that are not available on another DEX platform. 

Creating a Sandbox-style NFT Gaming Platform is an exciting opportunity in the booming world of blockchain gaming. By leveraging a sandbox clone script, you can create a platform that permit users to create, own, and monetize their in-game assets via non-fungible tokens (NFTs).

Key Features of Sandbox-Inspired NFT gaming

User-Generated Content: Empower players to design their own virtual worlds, characters, and items. This flexibility encourages creativity and enhances user engagement.

NFT Integration: Enable players to buy, sell, and trade their creations as NFTs. This not only provides real ownership but also introduces unique economic opportunities within the game.

Multiplayer Experience: Foster a vibrant community by allowing players to interact, collaborate, and compete within shared spaces, enhancing the social aspect of gaming.

In-Game Economy: Create a robust economic system where players can earn rewards and exchange assets, making the gaming experience not only fun but also financially rewarding.

Launching a Sandbox Clone Script permits you to tap into the lucrative gaming market while offering players innovative ways to express their creativity. With the right features and community engagement strategies, you can create a platform that stands out and attracts a passionate user base. Are you ready to transformize the gaming experience? then check out here >> 
CREATE TABLE Manufacturers (
Code int not null,
Name varchar(20) not null,
PRIMARY KEY (Code));

describe Manufacturers;

INSERT INTO Manufacturers VALUES (1, 'Sony');
INSERT INTO Manufacturers VALUES (2, 'Creative labs');
INSERT INTO Manufacturers VALUES (3, 'Hewlett-Packard');
INSERT INTO Manufacturers VALUES (4, 'Iomega');
INSERT INTO Manufacturers VALUES (5, 'Fujitsu');
INSERT INTO Manufacturers VALUES (6, 'Winchester');

SELECT * FROM Manufacturers;
CREATE TABLE Manufacturers (
Code int not null,
Name varchar(20) not null,
PRIMARY KEY (Code));

describe Manufacturers;

INSERT INTO Manufacturers VALUES (1, 'Sony');
INSERT INTO Manufacturers VALUES (2, 'Creative labs');
INSERT INTO Manufacturers VALUES (3, 'Hewlett-Packard');
INSERT INTO Manufacturers VALUES (4, 'Iomega');
INSERT INTO Manufacturers VALUES (5, 'Fujitsu');
INSERT INTO Manufacturers VALUES (6, 'Winchester');

SELECT * FROM Manufacturers;
1.<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Pink Frag Event Organizer</title>
    <style>
        /* External CSS for styling the menu and content */
        body {
            font-family: Arial, sans-serif; /* Set font for the body */
            margin: 20px; /* Add margin around the body */
            background-color: #f9f9f9; /* Light background color */
        }

        /* Link styles */
        a {
            background-color: #00CED1; /* Default background color */
            color: #000000; /* Default text color */
            width: 100px; /* Width of the links */
            border: 1px solid #000000; /* Border styling */
            padding: 15px; /* Padding around text */
            text-align: center; /* Center text */
            text-decoration: none; /* Remove underline */
            display: block; /* Display as block element */
            margin: 5px 0; /* Add margin between links */
        }

        /* Hover effect */
        a:hover {
            background-color: #4CAF50; /* Background color on hover */
            color: #FFFFFF; /* Text color on hover */
        }

        /* Active effect */
        a:active {
            background-color: #F0E68C; /* Background color when active */
            color: #FF8C00; /* Text color when active */
        }
    </style>
</head>
<body>
    <center>
        <h1>Pink Frag Event Organizer</h1><br>
    </center>
    <table width="100%">
        <tr>
            <td width="20%">
                <a id="home1" href="index.html">Home</a><br>
                <a id="events" href="events.html">Events</a><br>
                <a id="aboutus" href="aboutUs.html">About Us</a><br>
                <a id="contactus" href="contactUs.html">Contact Us</a><br>
            </td>
            <td width="80%" style="display: inline-block;margin-top: -20px;">
                <h2>Welcome to Pink Frag Event Organizer</h2>
                <p>We are indulged in offering a Promotional Event Management. 
                These services are provided by our team of professionals as 
                per the requirement of the client. 
                These services are highly praised for their features like 
                sophisticated technology, effective results, and reliability. We offer 
                these services in a definite time frame and at affordable rates.</p>
            </td>
        </tr>
    </table>
</body>
</html>
2.----->
  <!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Wedding Album</title>
    <style>
        /* Styles for the images */
        img {
            max-width: 100%; /* Ensures images are responsive */
            height: auto; /* Maintains aspect ratio */
            margin: 10px; /* Adds some space around images */
        }
    </style>
</head>
<body>
    <h1>Wedding Album</h1>
    <img src="wedding.jpg" alt="Wedding Photo" /> <!-- First image without effects -->
    <img src="wedding.jpg" alt="Wedding Photo in Grayscale" style="filter: grayscale(100%);" /> <!-- Second image with grayscale effect -->
</body>
</html>

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Simple Calculator</title>
    <script>
        function add() {
            const val1 = parseFloat(document.getElementById('value1').value);
            const val2 = parseFloat(document.getElementById('value2').value);
            const result = val1 + val2;
            document.getElementById('result').textContent = `Addition of ${val1} and ${val2} is ${result}`;
        }

        function sub() {
            const val1 = parseFloat(document.getElementById('value1').value);
            const val2 = parseFloat(document.getElementById('value2').value);
            const result = val1 - val2;
            document.getElementById('result').textContent = `Subtraction of ${val1} and ${val2} is ${result}`;
        }

        function mul() {
            const val1 = parseFloat(document.getElementById('value1').value);
            const val2 = parseFloat(document.getElementById('value2').value);
            const result = val1 * val2;
            document.getElementById('result').textContent = `Multiplication of ${val1} and ${val2} is ${result}`;
        }

        function div() {
            const val1 = parseFloat(document.getElementById('value1').value);
            const val2 = parseFloat(document.getElementById('value2').value);
            if (val2 === 0) {
                document.getElementById('result').textContent = "Error: Division by zero";
            } else {
                const result = val1 / val2;
                document.getElementById('result').textContent = `Division of ${val1} and ${val2} is ${result}`;
            }
        }
    </script>
</head>
<body>
    <h1>Simple Calculator</h1>
    <h3>Simple Calculator</h3>
    <label for="value1">Value 1:</label>
    <input type="number" id="value1" placeholder="Enter first number">
    <br>
    <label for="value2">Value 2:</label>
    <input type="number" id="value2" placeholder="Enter second number">
    <br><br>
    <button name="add" onclick="add()">ADDITION</button>
    <button name="sub" onclick="sub()">SUBTRACT</button>
    <button name="mul" onclick="mul()">MULTIPLY</button>
    <button name="div" onclick="div()">DIVISION</button>
    <br><br>
    <div id="result">Result: </div>
</body>
</html>
[DataContractAttribute]
public class NW_POConfirmationContract
{
    str 25            RequestID;
    TransDate         RequestDate;
    PurchIdBase       PurchaseOrder;
    PurchRFQCaseId    RFQId;
    PurchReqId        PurchReqId;
    Email             Email;
    str 200           SubjectOrProjectTitle;
    str               PoReport;
    EcoResProductType ProductType;
    VendAccount       Supplier;
    DlvDate           DeliveryDate;
    NW_Attachement    Attachment;
    List              Lines;
    List              Attachements;
    boolean           confirm, reject;

    [DataMemberAttribute('RequestID')]
    public str ParmRequestID(str _RequestID = RequestID)
    {
        RequestID = _RequestID;
        return RequestID;
    }

    [DataMemberAttribute('RequestDate')]
    public TransDate ParmRequestDate(TransDate _RequestDate = RequestDate)
    {
        RequestDate = _RequestDate;
        return RequestDate;
    }

    [DataMemberAttribute('PurchaseOrder')]
    public PurchIdBase ParmPurchaseOrder(PurchIdBase _PurchaseOrder = PurchaseOrder)
    {
        PurchaseOrder = _PurchaseOrder;
        return PurchaseOrder;
    }

    [DataMemberAttribute('RFQId')]
    public PurchRFQCaseId ParmRFQId(PurchRFQCaseId _RFQId = RFQId)
    {
        RFQId = _RFQId;
        return RFQId;
    }

    [DataMemberAttribute('OfficialContactEmail')]
    public Email ParmOfficialContactEmail(Email _Email = Email)
    {
        Email = _Email;
        return Email;
    }

    [DataMemberAttribute('PurchReqId')]
    public PurchReqId ParmPurchReqId(PurchReqId _PurchReqId = PurchReqId)
    {
        PurchReqId = _PurchReqId;
        return PurchReqId;
    }

    [DataMemberAttribute('SubjectOrProjectTitle')]
    public str ParmSubjectOrProjectTitle(str _SubjectOrProjectTitle = SubjectOrProjectTitle)
    {
        SubjectOrProjectTitle = _SubjectOrProjectTitle;
        return SubjectOrProjectTitle;
    }

    [DataMemberAttribute('ProductType')]
    public EcoResProductType ParmProductType(EcoResProductType _ProductType = ProductType)
    {
        ProductType = _ProductType;
        return ProductType;
    }

    [DataMemberAttribute('Supplier')]
    public VendAccount ParmSupplier(VendAccount _Supplier = Supplier)
    {
        Supplier = _Supplier;
        return Supplier;
    }

    [DataMemberAttribute('DeliveryDate')]
    public DlvDate ParmDeliveryDate(DlvDate _DeliveryDate = DeliveryDate)
    {
        DeliveryDate = _DeliveryDate;
        return DeliveryDate;
    }

    [DataMemberAttribute('IsConfirmedFromPortal')]
    public boolean ParmIsConfirmedFromPortal(boolean _confirm = confirm)
    {
        confirm = _confirm;
        return confirm;
    }

    [DataMemberAttribute('IsRejected')]
    public boolean ParmIsRejected(boolean _reject = reject)
    {
        reject = _reject;
        return reject;
    }

    [DataMemberAttribute('POReport')]
    public str ParmPoReport(str _PoReport = PoReport)
    {
        PoReport = _PoReport;
        return PoReport;
    }

    [DataMemberAttribute('Attachment')]
    public NW_Attachement ParmAttachment(NW_Attachement _Attachment = Attachment)
    {
        Attachment = _Attachment;
        return Attachment;
    }

    [DataMemberAttribute('Lines') , 
        AifCollectionType('Lines',Types::Class , classStr(NW_POConfirmationLinesContract))]
    public List ParmLines(List _Lines = Lines)
    {
        Lines = _Lines;
        return Lines;
    }

    [DataMemberAttribute('Attachements'), AifCollectionType('Attachements', Types::Class , classStr(NW_Attachement))]
    public List ParmAttachements(List _Attachements = Attachements)
    {
        Attachements = _Attachements;
        return Attachements;
    }

}
//-------------------------
[DataContractAttribute]
public class NW_POConfirmationLinesContract
{
    ItemIdSmall     ItemId;
    Description     Description;
    str 100         CategoryName;
    PurchOrderedQty Quantity;
    PurchUnit       PurchUnit;
    PurchPrice      Price;
    CurrencyCode    CurrencyCode;
    PurchPrice      TotalPrice;
    str 200         DeliveryLocation;
    TaxAmountCur    Tax;
    Amount          TotalOrderPrice;
    str             AdditionalNotes;
    List            Attachements;

    [DataMemberAttribute('ItemId')]
    public ItemIdSmall ParmItemId(ItemIdSmall _ItemId = ItemId)
    {
        ItemId = _ItemId;
        return ItemId;
    }

    [DataMemberAttribute('Description')]
    public Description ParmDescription(Description _Description = Description)
    {
        Description = _Description;
        return Description;
    }

    [DataMemberAttribute('CategoryName')]
    public str ParmCategoryName(str _CategoryName = CategoryName)
    {
        CategoryName = _CategoryName;
        return CategoryName;
    }

    [DataMemberAttribute('Quantity')]
    public PurchOrderedQty ParmQuantity(PurchOrderedQty _Quantity = Quantity)
    {
        Quantity = _Quantity;
        return Quantity;
    }

    [DataMemberAttribute('PurchUnit')]
    public PurchUnit ParmPurchUnit(PurchUnit _PurchUnit = PurchUnit)
    {
        PurchUnit = _PurchUnit;
        return PurchUnit;
    }

    [DataMemberAttribute('CurrencyCode')]
    public CurrencyCode ParmCurrencyCode(CurrencyCode _CurrencyCode = CurrencyCode)
    {
        CurrencyCode = _CurrencyCode;
        return CurrencyCode;
    }

    [DataMemberAttribute('Price')]
    public PurchPrice ParmPrice(PurchPrice _Price = Price)
    {
        Price = _Price;
        return Price;
    }

    [DataMemberAttribute('TotalPrice')]
    public PurchPrice ParmTotalPrice(PurchPrice _TotalPrice = TotalPrice)
    {
        TotalPrice = _TotalPrice;
        return TotalPrice;
    }

    [DataMemberAttribute('DeliveryLocation')]
    public str ParmDeliveryLocation(str _DeliveryLocation = DeliveryLocation)
    {
        DeliveryLocation = _DeliveryLocation;
        return DeliveryLocation;
    }

    [DataMemberAttribute('Tax')]
    public TaxAmountCur ParmTax(TaxAmountCur _Tax = Tax)
    {
        Tax = _Tax;
        return Tax;
    }

    [DataMemberAttribute('TotalOrderPrice')]
    public Amount ParmTotalOrderPrice(Amount _TotalOrderPrice = TotalOrderPrice)
    {
        TotalOrderPrice = _TotalOrderPrice;
        return TotalOrderPrice;
    }

    [DataMemberAttribute('AdditionalNotes')]
    public str ParmAdditionalNotes(str _AdditionalNotes = AdditionalNotes)
    {
        AdditionalNotes = _AdditionalNotes;
        return AdditionalNotes;
    }

    //[DataMemberAttribute('Attachement')]
    [DataMemberAttribute('Attachements'), AifCollectionType('Attachements', Types::Class , classStr(NW_Attachement))]
    public List ParmAttachements(List _Attachements = Attachements)
    {
        Attachements = _Attachements;
        return Attachements;
    }

}
btn = Button (win, image = img, bd = 0, highlightthickness = 0)
// Mission 1 
const motorL = ev3_motorA(); // A port
const motorR = ev3_motorD(); // D port
display(ev3_connected(motorL) ? "L connected" : "L not connected");
display(ev3_connected(motorR) ? "R connected" : "R not connected");

// Q1
function speak(words) {
    return ev3_speak(words);
}

// speak("I am human");
// ok works

// Q2
//circum of wheel: 6 pi

function move_forward(length) { // length, in cm 
    const speed = 100;
    const pos = length/(6 * math_PI) * 360; // pos (in deg): degree turned by wheel 
    // const time = 1 * 1000; 
    const time = math_abs(pos/speed) * 1000; // time (in ms): pos(deg), speed(degree/second)
                                      //math_abs to keep time always positive 
    // doc: ev3_runToRelativePosition(motor, position, speed);
    ev3_runToRelativePosition(motorL, pos, speed);
    ev3_runToRelativePosition(motorR, pos, speed);
    
    return ev3_pause(time); // do we need a return value?
}

// move_forward(-10); // 10cm



// Q3
function turn(deg) { // clockwise
    const speed = 100;
    const time = math_abs(deg * 2/ speed) * 1000;
    ev3_runToRelativePosition(motorL, deg * 2, speed);
    ev3_runToRelativePosition(motorR, - (deg * 2), speed);
    return ev3_pause(time);
}

const turn_left = () => turn(90); // makes it a function instead of funct call
const turn_right = () => turn(-90);

// Q4
function mission1_q4() {
    move_forward(10);
    turn_left();
    move_forward(5);
    turn_right();
    move_forward(15);
} 

mission1_q4();

/* ATTENDANCE CHECK
PRATEEK
yijie
hazel 
clemen
Hari
jiesheng
zele
James
*/
#include<stdio.h>
// Author- Khadiza Sultana
// Date- 10/8/2024
// Prints the Calendar of a month 
int main()
{
    int n, i, day; // n stores the number of days in the month, i used as a loop counter, day stores the starting day of the week(from 1 to 7, where 1= Sunday, 7= saturday)
    printf("Enter number of days in month:");
    scanf("%d", &n);
    printf("Enter starting day of the week (1=Sun, 7=Sat): ");
    scanf("%d", &day);
    for(i = 1; i < day; ++i) // This loop is responsible for printing spaces before the first day of the month.
    // If day == 1, no spaces are printed before thr month starts on sunday.
    // If day == 4, the loop runs three times and prints three spaces to align the first day under Wednesday
    {
        printf("   "); // three spacesto allign the days even when there's two digit days the days will be aligned 
    }
    for(i = 1; i <= n; i++, day++) // Prints the actual days of the month.
    // the day++ inside the for loop increments the day variable with each iteration, so the program knows when to start a new line after printing Saturday
    {
        printf("%2d ", i);
        if(day == 7)
        {
            day = 0;
            printf("\n");
        }
    }

    return 0;
}
{
	"blocks": [
		{
			"type": "header",
			"text": {
				"type": "plain_text",
				"text": ":star: Xero Boost Days! :star:"
			}
		},
		{
			"type": "section",
			"text": {
				"type": "mrkdwn",
				"text": "Canberra! Please see below for what's on this week! "
			}
		},
		{
			"type": "divider"
		},
		{
			"type": "header",
			"text": {
				"type": "plain_text",
				"text": ":calendar-date-9: Wednesday,9th october",
				"emoji": true
			}
		},
		{
			"type": "section",
			"text": {
				"type": "mrkdwn",
				"text": "\n:Lunch: *Lunch*: Provided in our suite from *12pm*."
			}
		},
		{
			"type": "divider"
		},
		{
			"type": "section",
			"text": {
				"type": "mrkdwn",
				"text": "Stay tuned to this channel for more details, check out the <https://calendar.google.com/calendar/u/0?cid=Y19jYzU3YWJkZTE4ZTE0YzVlYTYxMGU4OThjZjRhYWQ0MTNhYmIzMDBjZjBkMzVlNDg0M2M5NDQ4NDk3NDAyYjkyQGdyb3VwLmNhbGVuZGFyLmdvb2dsZS5jb20|*Canberra Social Calendar*>, and get ready to Boost your workdays!\n\nLove,\nWX Team :party-wx:"
			}
		}
	]
}
#include<stdio.h>
// Author- Khadiza Sultana
// Date- 10/8/2024
// printing all even squares from 1 to n
#include<math.h> // includin math.h library for the pow function. We can simply write i*i instead

int main() { 
    int n;
    printf("Enter a number: ");
    scanf("%d", &n);
    
    int i = 1;
    while(pow(i,2)<= n) // checking if i^2 is equal to n or not. If yes then the loop is stoped. If no then continue
    {
        int square = pow(i,2); // storing the squares of the numbers
        if(square % 2 == 0) // checking if the squares are even or not
        {
            printf("%d\n", square);
        }
        i++; // incrementing i
    }
    
    return 0;
}
#include<stdio.h>
// Author- Khadiza Sultana
// 10/8/2024
// Takes a fraction and prints the lowest form of the fraction

int main() {
    int a, b, x, y, gcd; // Take two integers as input
    printf("Enter the fraction (a/b): ");
    scanf("%d/%d", &a, &b);

    x = a;
    y = b;

    // Using Euclidean algorithm to find the GCD of a and b
    while (y != 0) {
        int remainder = x % y;
        x = y;
        y = remainder;
    }

    // x now contains the GCD
    gcd = x;

    // Dividing both numerator and denominator by GCD to get the reduced fraction
    a = a / gcd;
    b = b / gcd;

    printf("In lowest terms: %d/%d\n", a, b);
    
    return 0;
}
#include<stdio.h>
// Author- Khadiza Sultana
// 10/8/2024
// Determing GCD of two integers using loop
int main()
{
    int a, b; // take two integers as input
    printf("Enter the integers:");
    scanf("%d %d", &a, &b);
    while (b!=0)
    {
      int remainder = a % b; //1. Determining the remainder of a/b
      a = b; //2. storing b into a
      b = remainder;//3. storing remainder into b
    }
    printf("The GCD of the two integers is: %d", a); // 'a' holds the GCD after the loop
    return 0;
}
#include<stdio.h>
// Author- Khadiza Sultana
// 10/8/2024
//Finding the largest number with the help of loop
int main()
{
    double number = 0, largest = 0; // initialization is done
    for(;;)
    {
        printf("Enter the number:");
        scanf("%lf", &number);
       
        if(number <= 0)
           break; // when zero or negative number then the infinite loop is broke

        if(number > largest)
           largest = number; // storing the largest number after comparing
    }
    printf("\nThe largest number is %g\n", largest);
   
    return 0;
}
import matplotlib.pyplot as plt
from sklearn.cluster import KMeans

x=[4,5,10,4,3,11,14,6,10,12]
y=[21,19,24,17,16,25,24,22,21,21]

data=list(zip(x,y))
print(data)

inertia=[]
for i in range(1,11):
    kmeans=KMeans(n_clusters=i)
    kmeans.fit(data)
    inertia.append(kmeans.inertia_)
plt.plot(range(1,11),inertia,marker='o')
plt.title("Elbow Method")
plt.xlabel("no of clusters")
plt.ylabel("inertias")
plt.show()

kmean=KMeans(n_clusters=2)
kmean.fit(data)

plt.scatter(x,y,c=kmean.labels_)
plt.show()
import matplotlib.pyplot as plt
from sklearn.cluster import KMeans

x=[4,5,10,4,3,11,14,6,10,12]
y=[21,19,24,17,16,25,24,22,21,21]

data=list(zip(x,y))
print(data)

inertia=[]
for i in range(1,11):
    kmeans=KMeans(n_clusters=i)
    kmeans.fit(data)
    inertia.append(kmeans.inertia_)
plt.plot(range(1,11),inertia,marker='o')
plt.title("Elbow Method")
plt.xlabel("no of clusters")
plt.ylabel("inertias")
plt.show()

kmean=KMeans(n_clusters=2)
kmean.fit(data)

plt.scatter(x,y,c=kmean.labels_)
plt.show()
>>> import jmespath
>>> path = jmespath.search('foo.bar', {'foo': {'bar': 'baz'}})
'baz'
 #include <stdio.h>

int main() {
    int N;
    scanf("%d", &N);
    for (int i = 1; i <= N; i++) {
        int n;
        scanf("%d", &n);
        while (n > 0) {
            int digit = n % 10;
            printf("%d ", digit);
            n = n / 10;
        }
        printf("\n");
    }
    return 0;
}
[HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\WindowsCopilot]
"TurnOffWindowsCopilot"=dword:00000001

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsCopilot]
"TurnOffWindowsCopilot"=dword:00000001

#Add or Remove Copilot Button on Taskbar in Windows 11

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
"ShowCopilotButton"=dword:00000000
function redirect_non_admin_users_to_frontend() {
$current_user = wp_get_current_user();
$allowed_roles = array('administrator', 'editor', 'author', 'contributor', 'shop_manager');

if (!array_intersect($allowed_roles, $current_user->roles)) {
wp_redirect(site_url('/'));
exit;
}
}

add_action('admin_init', 'redirect_non_admin_users_to_frontend');
#include <iostream>
using namespace std;

int main()
{
    int n;
    int m;

    std::cout << "Enter desired max of the array: " << endl;
    cin >> n;
    cin >> m;

    int* arr = new int [n * m]; // создание размерности матрицы из данных с клавиатуры
    
    for (int i = 0; i < n * m; ++i) {
        cin >> arr[i];
    }

    for (int i = 0; i < n * m; i++) {
        for (int j = 0; j < n * m - 1; j++) {
            if (arr[j] > arr[j + 1]) {

                arr[j] += arr[j + 1];
                arr[j + 1] = arr[j] - arr[j + 1];
                arr[j] = arr[j] - arr[j + 1];

            }
        }
    }

    int matrix[20][20];
    bool b_matrix[20][20];
    for (int i = 0; i < 20; ++i)
        for (int j = 0; j < 20; ++j)
            b_matrix[i][j] = false;

    int speed_x = 1;
    int speed_y = 0;
    int x = 0, y = 0;
    int turn_counter = 0;
}
for (int i = 0; i < n * m; ++i) {
        matrix[x][y] = arr[i];
        b_matrix[x][y] = true;

        if (b_matrix[x + speed_x][y + speed_y] or (0 > speed_x + x or speed_x + x > n - 1) or (0 > speed_y + y or speed_y + y > m - 1)) {
            turn_counter += 1;
            switch (turn_counter % 4)
            {
            case 1:
            {
                speed_x = 0;
                speed_y = 1;
                break;
            }
            case 2:
            {
                speed_x = -1;
                speed_y = 0;
                break;
            }
            case 3:
            {
                speed_x = 0;
                speed_y = -1;
                break;
            }
            case 0:
            {
                speed_x = 1;
                speed_y = 0;
                break;
            }
            default:
                break;
            }
        }
        x += speed_x;
        y += speed_y;

    }

    for (int i = 0; i < n; ++i) {
        for (int j = 0; j < m; ++j) {
            cout << matrix[j][i] << " ";
        }
        cout << endl;
    }

    return 0;
#Try from admin cmd
#Code:
rd /s /q \\?\C:\.cache

#Will not work if files are currently in use
#include <bits/stdc++.h>
using namespace std;

void dfs(int node, int start, int& timeCounter, vector<vector<int>>& Dsachke, vector<int>& Found, vector<int>& Lowest, vector<pair<int, int>>& BRIDGES) {
    Found[node] = Lowest[node] = timeCounter++;

    cout << "Đang thăm node: " << node << ", timeCounter: " << timeCounter << ", Found[" << node << "]: " << Found[node] << ", Lowest[" << node << "]: " << Lowest[node] << endl;

    for (int neighbor : Dsachke[node]) {
        if (neighbor == start) {
            continue;  // Bỏ qua đỉnh cha
        }
        
        if (Found[neighbor] != -1) {  // Đỉnh đã được thăm
            Lowest[node] = min(Lowest[node], Found[neighbor]);
            cout << "Thăm lại neighbor: " << neighbor << ", Found[" << neighbor << "]: " << Found[neighbor] << ", cập nhật Lowest[" << node << "]: " << Lowest[node] << endl;
        } 
        else {  // Đỉnh chưa được thăm
            dfs(neighbor, node, timeCounter, Dsachke, Found, Lowest, BRIDGES);
            Lowest[node] = min(Lowest[node], Lowest[neighbor]);

            cout << "Quay lại từ neighbor: " << neighbor << ", cập nhật Lowest[" << node << "]: " << Lowest[node] << endl;

            if (Lowest[neighbor] > Found[node]) {
                // Cạnh (node, neighbor) là cầu
                BRIDGES.push_back({node, neighbor});
                cout << "Cầu tìm thấy: " << node << " - " << neighbor << endl;
            }
        }
    }
}

int main() {
    int numberOfNodes, numberOfEdges, timeCounter = 0; // Số đỉnh, số cạnh và bộ đếm thời gian

    cin >> numberOfNodes >> numberOfEdges;
    // số node, số cạnh 
    vector<vector<int>> Dsachke(numberOfNodes + 1); // Danh sách kề của đồ thị
    vector<int> Found(numberOfNodes + 1, -1); // Thời gian khám phá
    vector<int> Lowest(numberOfNodes + 1, -1); // Thời gian thấp nhất
    vector<pair<int, int>> BRIDGES; // Danh sách cầu

    for (int i = 0; i < numberOfEdges; i++) {
        int a, b; // Thay nodeA, nodeB bằng a, b cho dễ hiểu
        cin >> a >> b;
        Dsachke[a].push_back(b);
        Dsachke[b].push_back(a);
    }
    // phần này dùng để nhập danh sách kề từ input

    for (int node = 1; node <= numberOfNodes; node++) {
        if (Found[node] == -1) {
            dfs(node, -1, timeCounter, Dsachke, Found, Lowest, BRIDGES);
        }
    }
    // cái này đơn giản là để nếu đồ thị bị phân ra thành n thành phần liên thông thì lệnh có thể kiểm tra từng thành phần liên thông đó

    cout << "Số cầu: " << BRIDGES.size() << endl;
    
    for (auto bridge : BRIDGES) {
        cout << bridge.first << " - " << bridge.second << endl;
    }

    // In ra các biến quan trọng
    cout << "\nKết quả biến Found: ";
    for (int i = 1; i <= numberOfNodes; i++) {
        cout << Found[i] << " ";
    }
    cout << "\nKết quả biến Lowest: ";
    for (int i = 1; i <= numberOfNodes; i++) {
        cout << Lowest[i] << " ";
    }
    cout << "\nGiá trị cuối cùng của timeCounter: " << timeCounter << endl;

    return 0;
}
SOQL
Author: Steven Trumble
Have a useful SOQL query you want to add? Leave a comment with the query!
Salesforce Developers
Salesforce Developer Website

https://developer.salesforce.com/docs/atlas.en-us.soql_sosl.meta/soql_sosl/sforce_api_calls_soql.htm
Useful links
Useful Tools for SOQL
MidAtlantic Dreamin’ 2024 Presentation
Object fields and data types
Flows and PBs
Validation Rules
User info
Reports and Dashboards
Approval Process
Logs
Scheduled Jobs
Field Info
Things to clean up
import { LightningElement } from 'lwc';

export default class ScrollToElement extends LightningElement {
    handleScrollClick() {
        console.log('Button clicked');
        const topDiv = this.template.querySelector('[data-id="redDiv"]');
        if (topDiv) {
            topDiv.scrollIntoView({ behavior: 'smooth', block: 'start', inline: 'nearest' });
        }
    }
}
function lengthOfLIS(nums: number[]): number {
    const dp = new Array(nums.length).fill(1);
     for (let i = 1; i < nums.length; i++) {
        for (let j = 0; j < i; j++) {
            if(nums[j] < nums[i]) {
                dp[i] = Math.max(dp[i],dp[j]+1,);
            }
        }
     }
    return Math.max(...dp);
};
id = record.get(columnOrder.indexOf("ID"));
info id;
image_list = List();
///////////////////////// link1 //////////////////////////
link1 = record.get(columnOrder.indexOf("link1"));
if(!isNull(link1))
{
  image_file = invokeurl
  [
    url: link1
    type: GET
  ];
  image_file.setParamName("image");
  image_list.add(image_file);
}
///////////////////////// link2 //////////////////////////
link2 = record.get(columnOrder.indexOf("link2"));
if(!isNull(link2))
{
  image_file = invokeurl
  [
    url: link2
    type: GET
  ];
  image_file.setParamName("image");
  image_list.add(image_file);
  info image_list;
  response = invokeurl
  [
    url : "https://inventory.zoho.com/api/v1/items/" + id + "/images?organization_id=" + organizationID
    type: POST
    files:image_list
    connection:"zohoinventory"
  ];
  info response;
}
image_file = invokeurl
[
  url: link1
  type: GET
];
info image_file;
image_file.setParamName("image");
response = invokeurl
[
  url : "https://inventory.zoho.com/api/v1/items/" + id + "/image?organization_id=" + organizationID
  type: POST
  files:image_file
  connection:"zohoinventory"
];
info response;
#include <iostream>
using namespace std;

int main()
{
    int mxr;
    int mxc;


    std::cout << "Enter desired max of the array: " << endl;

    cin >> mxr;
    cin >> mxc;

    int** arr = new int* [mxc]; // создание размерности матрицы из данных с клавиатуры
    for (int i = 0; i < mxc; ++i)
    {
        arr[i] = new int[mxr];
    }

    cout << "Введите элементы матрицы: " << endl;


    int mx_x = 0, mx_y = 0;
    int mn = 0;

    for (int i = 0; i < mxr; i++) //ввод матрицы
    {
        for (int j = 0; j < mxc; j++)
        {
            cin >> arr[i][j];

            if (arr[i][j] < arr[i][mn])
                mn = j;
        }

        if (arr[i][mn] > arr[mx_y][mx_x]) {
            mx_x = mn;
            mx_y = i;
        }
    }


    for (int i = 0; i < mxr; i++) //вывод матрицы
    {
        for (int j = 0; j < mxc; j++)
        {
            std::cout << arr[i][j] << "\t";
        }
        cout << endl;
    }

    cout << arr[mx_y][mx_x] << endl;
    cout << endl;
}
#include <iostream>
using namespace std;
int main()
{
    int mxr;
    int mxc;
    int mx;
    int t{}; //счетчики
    int t1{};
    std::cout <<"Enter desired max of the array: " << endl;
    
    cin >> mxr;
    cin >> mxc;
    
    int mnmx_ary1[mxc]; //создание массива для минимаксов
    int mnmx_ary2[mxc];
    
    int **ary = new int*[mxc]; // создание размерности матрицы из данных с клавиатуры
    for(int i = 0; i < mxc; ++i)
    {
        ary[i] = new int[mxr];
    }
    
    cout << "Введите элементы матрицы: " << endl;
    
    for(int i=0; i < mxr; i++) //ввод матрицы
    {
        t++;
        for(int j=0; j < mxc; j++)
        {
            cin >> ary[i][j];
            mnmx_ary1[t-1] = ary[i][j];
            
        }
    }
 
 
    for(int i=0; i < mxr; i++) // поиск минимумов в минимаксе
    {
        t1++;
        for(int j=0; j < mxc; j++)
        {
            if(mnmx_ary1[t1-1] > ary[i][j])
            {
                mnmx_ary2[t1-1] = ary[i][j];     
            }
        }
    }
    
    mx = mnmx_ary2[0]; 
    
    for(int i=0; i < mxr; i++) // определение максимума в минимаксе
    {
        if(mx < mnmx_ary2[i])
        {
            mx = mnmx_ary2[i];    
        }
    }
 
 
 
 
    for(int i=0; i < mxr; i++) //вывод матрицы
    {
        for(int j=0; j < mxc; j++)
        {
            std::cout << ary[i][j] << "\t";
        }
        cout << endl;    
    }

    cout << mx << endl;
    cout << endl;
}
#include <iostream>
using namespace std;
int main() {
    int mx;
    int mx_num;
    int t{};
    std::cout <<"Enter desired max of the array: ";
    std::cin >> mx;
    int *array = new int[mx];
    cout << "Enter your numbers: " << endl;
    
    int i{};
    while (i < mx)
    {
        cin >> array[i];
        
        if(t < 1)
        {
            mx_num = array[i];    
            t++;   
        }
    
        i++;
    }

    for(i = 0; i < mx; i++)
    {
        cout << array[i] << "\t";
    }
    
    for(i = 0; i < mx; i++)
    {
        if(array[i] > mx_num)  
        {
            mx_num = array[i];    
        }
    }
    
    cout << endl;
    cout << "Максимальное число последовательности: " << mx_num << endl;
    cout <<  endl;
}
// Require Express
const express = require("express");

//require path for pathname in the folder 
// __dirname is the directory name
// path.join(__dirname, *path in folder*)
const path = require('path');

//get method
//get (*url path*, ())
app.get('*url path*', (req, res) => {
  //for sendingFile (rendering the file)
  res.sendFile(path.join(_dirname, 'sample.html'))
})

//get with json
app.get ('*url path*', (req, res) => {
  //with status
  res.status(404).json({msg: 'Page not found 404l;'})
  res.status(200).json({*json object to response*})
})
function getCookie(name) {
  const cookieArr = document.cookie.split(";");
  for (let cookie of cookieArr) {
    cookie = cookie.trim();
    if (cookie.startsWith(name + "=")) {
      return cookie.substring(name.length + 1);
    }
  }
  return null;
}
const myCookie = getCookie("cookieName");
$folder = (New-Object -ComObject Shell.Application).NameSpace("$pwd")
# Note: Assumes that no indices higher than 1000 exist.
0..1000 | % { 
  if ($n = $folder.GetDetailsOf($null, $_)) { 
    [pscustomobject] @{ Index = $_; Name = $n } 
  } 
}
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Scanner;

// Base Passenger class
abstract class Passenger {
    private String name;
    private int seatRow;
    private int seatCol;
    private int age;
    protected double ticketPrice;

    public Passenger(String name, int age) {
        this.name = name;
        this.age = age;
    }

    // Getters and Setters
    public String getName() {
        return name;
    }

    public int getSeatRow() {
        return seatRow;
    }

    public void setSeatRow(int seatRow) {
        this.seatRow = seatRow;
    }

    public int getSeatCol() {
        return seatCol;
    }

    public void setSeatCol(int seatCol) {
        this.seatCol = seatCol;
    }

    public int getAge() {
        return age;
    }

    public double getTicketPrice() {
        return ticketPrice;
    }

    public abstract void calculateFinalPrice(double basePrice);  // Abstract method to calculate price

    public void getPassengerDetails() {
        System.out.println("Passenger Name: " + name);
        System.out.println("Age: " + age);
        System.out.println("Seat: " + seatRow + "," + seatCol);
        System.out.println("Ticket Price: $" + ticketPrice);
    }
}

// RegularPassenger class (inherits from Passenger)
class RegularPassenger extends Passenger {
    public RegularPassenger(String name, int age) {
        super(name, age);
    }

    @Override
    public void calculateFinalPrice(double basePrice) {
        super.ticketPrice = basePrice;  // Regular passengers pay the base price
    }
}

// VIPPassenger class (inherits from Passenger)
class VIPPassenger extends Passenger {
    private double vipSurcharge = 100;  // VIP passengers have a surcharge

    public VIPPassenger(String name, int age) {
        super(name, age);
    }

    @Override
    public void calculateFinalPrice(double basePrice) {
        super.ticketPrice = basePrice + vipSurcharge;  // Add VIP surcharge to the base price
    }

    @Override
    public void getPassengerDetails() {
        super.getPassengerDetails();
        System.out.println("VIP Surcharge: $" + vipSurcharge);
    }
}

// Seat Availability Class (Encapsulated for seat handling)
class SeatAvailability {
    private char[][] seats;

    public SeatAvailability(int rows, int cols) {
        seats = new char[rows][cols];
        initializeSeats();
    }

    private void initializeSeats() {
        for (int i = 0; i < seats.length; i++) {
            Arrays.fill(seats[i], 'O');  // 'O' for available
        }
    }

    public boolean isSeatAvailable(int row, int col) {
        return seats[row][col] == 'O';
    }

    public boolean bookSeat(int row, int col) {
        if (isSeatAvailable(row, col)) {
            seats[row][col] = 'X';  // Mark seat as booked
            return true;
        }
        return false;
    }

    public boolean cancelSeat(int row, int col) {
        if (seats[row][col] == 'X') {
            seats[row][col] = 'O';  // Mark seat as available
            return true;
        }
        return false;
    }

    public void displaySeats() {
        System.out.println("Seat Map:");
        for (char[] row : seats) {
            System.out.println(Arrays.toString(row));
        }
    }
}

// Pricing Class (Encapsulated for pricing)
class Pricing {
    private double basePrice;

    public Pricing(double basePrice) {
        this.basePrice = basePrice;
    }

    public double getBasePrice() {
        return basePrice;
    }

    public void setBasePrice(double basePrice) {
        this.basePrice = basePrice;
    }
}

// Reservation System Class
class ReservationSystem {
    private SeatAvailability seatAvailability;
    private Pricing pricing;
    private Scanner scanner;
    private List<Passenger> passengers;

    public ReservationSystem(SeatAvailability seatAvailability, Pricing pricing) {
        this.seatAvailability = seatAvailability;
        this.pricing = pricing;
        this.scanner = new Scanner(System.in);
        this.passengers = new ArrayList<>();
    }

    public void displaySeatMap() {
        seatAvailability.displaySeats();
    }

    public void handleBooking() {
        System.out.print("Enter passenger name: ");
        String name = scanner.nextLine();
        System.out.print("Enter passenger age: ");
        int age = scanner.nextInt();

        System.out.print("Choose passenger type (1: Regular, 2: VIP): ");
        int typeChoice = scanner.nextInt();
        Passenger passenger;
        if (typeChoice == 2) {
            passenger = new VIPPassenger(name, age);
        } else {
            passenger = new RegularPassenger(name, age);
        }

        boolean bookingSuccessful = false;
        while (!bookingSuccessful) {
            // Display seat map before booking
            displaySeatMap();

            System.out.print("Enter seat row (0-3): ");
            int row = scanner.nextInt();
            System.out.print("Enter seat column (0-3): ");
            int col = scanner.nextInt();

            // Check for valid seat input
            if (row < 0 || row >= 4 || col < 0 || col >= 4) {
                System.out.println("Seat number is invalid. Please enter a seat number between 0 and 3.");
                continue;  // Ask for input again
            }

            // Check if seat is available
            if (seatAvailability.bookSeat(row, col)) {
                passenger.setSeatRow(row);
                passenger.setSeatCol(col);
                passenger.calculateFinalPrice(pricing.getBasePrice());
                passengers.add(passenger);
                System.out.println("Seat booked successfully!");
                bookingSuccessful = true;  // Exit loop on successful booking
                // Display the seat map after the booking
                displaySeatMap();
                passenger.getPassengerDetails();
            } else {
                System.out.println("Seat is already booked. Please choose another seat.");
            }
        }
        scanner.nextLine();  // Clear buffer
    }

    public void handleCancellation() {
        System.out.print("Enter passenger name to cancel: ");
        String name = scanner.nextLine();
        boolean found = false;

        for (Passenger p : passengers) {
            if (p.getName().equalsIgnoreCase(name)) {
                int row = p.getSeatRow();
                int col = p.getSeatCol();
                seatAvailability.cancelSeat(row, col);
                passengers.remove(p);
                found = true;
                System.out.println("Booking canceled for " + name);
                break;
            }
        }

        if (!found) {
            System.out.println("No booking found for passenger: " + name);
        }
    }

    public void handleSearch() {
        System.out.print("Enter passenger name to search: ");
        String name = scanner.nextLine();
        boolean found = false;

        for (Passenger p : passengers) {
            if (p.getName().equalsIgnoreCase(name)) {
                p.getPassengerDetails();
                found = true;
                break;
            }
        }

        if (!found) {
            System.out.println("No passenger found with name: " + name);
        }
    }

    public void showMenu() {
        while (true) {
            System.out.println("\nMenu:");
            System.out.println("1. Book a seat");
            System.out.println("2. Cancel a booking");
            System.out.println("3. Search for a passenger");
            System.out.println("4. Display seat map");
            System.out.println("5. Exit");
            System.out.print("Choose an option: ");
            int choice = scanner.nextInt();
            scanner.nextLine();  // Clear buffer

            switch (choice) {
                case 1:
                    handleBooking();
                    break;
                case 2:
                    handleCancellation();
                    break;
                case 3:
                    handleSearch();
                    break;
                case 4:
                    displaySeatMap();
                    break;
                case 5:
                    System.out.println("Exiting the system. Thank you!");
                    return;
                default:
                    System.out.println("Invalid choice. Please try again.");
            }
        }
    }
}

// Main Class
public class AirlineReservationSystem {
    public static void main(String[] args) {
        SeatAvailability seatAvailability = new SeatAvailability(4, 4); // 4x4 seats
        Pricing pricing = new Pricing(500); // Base price $500

        ReservationSystem reservationSystem = new ReservationSystem(seatAvailability, pricing);
        reservationSystem.showMenu();
    }
}
function subarraySum(nums, k) {
    let dict = {0:1};
    let counter = 0;
    let summ = 0;
    for(let i = 0; i < nums.length; i++) {
        summ += nums[i];
        if (dict[summ - k])
            counter += dict[summ - k];
        if (dict[summ])
            dict[summ]++;
        else
            dict[summ] = 1;
    }
    return counter;
};
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Word Search</title>
    <script>
        function searchWord() {
            const paragraph = document.getElementById('paragraph').value;
            const searchWord = document.getElementById('search').value.trim();
            const wordsArray = paragraph.split(/\s+/);
            let count = 0;

            for (let word of wordsArray) {
                if (word.localeCompare(searchWord, undefined, { sensitivity: 'base' }) === 0) {
                    count++;
                }
            }

            const resultDiv = document.getElementById('result');

            // Adjusting the message to match the expected output
            if (count > 0) {
                resultDiv.innerHTML = `Searched text ${searchWord} is present ${count} times in the paragraph.`;
            } else {
                resultDiv.innerHTML = 'Searched text not found';  // Ensured no extra formatting
            }
        }
    </script>
</head>
<body>
    <h2>Search Word</h2>
    <textarea id="paragraph" rows="10" cols="50" placeholder="Enter your paragraph here..."></textarea><br><br>
    <input type="text" id="search" placeholder="Enter word to search...">
    <button id="searchWord" onclick="searchWord()">Search</button>
    <div id="result" style="margin-top: 20px; font-weight: bold;"></div>
</body>
</html>
star

Tue Oct 08 2024 19:27:12 GMT+0000 (Coordinated Universal Time)

@Yakostoch

star

Tue Oct 08 2024 19:01:49 GMT+0000 (Coordinated Universal Time)

@Yakostoch

star

Tue Oct 08 2024 12:43:35 GMT+0000 (Coordinated Universal Time)

@JC

star

Tue Oct 08 2024 12:34:51 GMT+0000 (Coordinated Universal Time)

@JC

star

Tue Oct 08 2024 12:12:46 GMT+0000 (Coordinated Universal Time) https://www.cryptocurrencyscript.com/pancakeswap-clone-script

@joepaully

star

Tue Oct 08 2024 11:30:16 GMT+0000 (Coordinated Universal Time) https://maticz.com/sandbox-clone-script

@jamielucas #drupal

star

Tue Oct 08 2024 11:23:54 GMT+0000 (Coordinated Universal Time) https://764390.mobirisesite.com/

@Unknown

star

Tue Oct 08 2024 11:03:32 GMT+0000 (Coordinated Universal Time)

@JC

star

Tue Oct 08 2024 11:03:09 GMT+0000 (Coordinated Universal Time)

@JC

star

Tue Oct 08 2024 09:41:13 GMT+0000 (Coordinated Universal Time)

@signup #html #javascript

star

Tue Oct 08 2024 09:27:47 GMT+0000 (Coordinated Universal Time)

@signup #html #javascript

star

Tue Oct 08 2024 08:56:08 GMT+0000 (Coordinated Universal Time)

@MinaTimo

star

Tue Oct 08 2024 08:24:10 GMT+0000 (Coordinated Universal Time) https://studywithowl.tistory.com/entry/PythonTkinter-Tkinter에서-버튼-테두리-없애는-방법

@hajinjang0714

star

Tue Oct 08 2024 06:07:39 GMT+0000 (Coordinated Universal Time)

@hkrishn4a

star

Tue Oct 08 2024 00:54:21 GMT+0000 (Coordinated Universal Time)

@FOHWellington

star

Mon Oct 07 2024 18:32:28 GMT+0000 (Coordinated Universal Time) https://www.youtube.com/watch?v=jZiZs8cZAKU&t=1568s

@rstringa #view-transitions

star

Mon Oct 07 2024 17:58:59 GMT+0000 (Coordinated Universal Time)

@bvc

star

Mon Oct 07 2024 17:58:35 GMT+0000 (Coordinated Universal Time)

@bvc

star

Mon Oct 07 2024 17:31:23 GMT+0000 (Coordinated Universal Time) https://github.com/jmespath/jmespath.py

@mathewmerlin72 #python

star

Mon Oct 07 2024 17:08:34 GMT+0000 (Coordinated Universal Time) https://www.programiz.com/c-programming/online-compiler/

@tasfiqe

star

Mon Oct 07 2024 11:54:57 GMT+0000 (Coordinated Universal Time) https://www.ntlite.com/community/index.php?threads/windows-11.2235/page-46#:~:text=%5BHKEY_CURRENT_USER%5CSoftware%5CPolicies%5CMicrosoft%5CWindows%5CWindowsCopilot%5D%0A%22TurnOffWindowsCopilot%22%3Ddword%3A00000001%0A%0A%5BHKEY_LOCAL_MACHINE%5CSOFTWARE%5CPolicies%5CMicrosoft%5CWindows%5CWindowsCopilot%5D%0A%22TurnOffWindowsCopilot%22%3Ddword%3A00000001

@Curable1600 #windows

star

Mon Oct 07 2024 10:43:37 GMT+0000 (Coordinated Universal Time)

@webisko #php

star

Mon Oct 07 2024 09:33:33 GMT+0000 (Coordinated Universal Time)

@Yakostoch

star

Mon Oct 07 2024 09:09:15 GMT+0000 (Coordinated Universal Time) https://comptiaexamhelp.com/

@comptiaexamhelp

star

Mon Oct 07 2024 08:29:04 GMT+0000 (Coordinated Universal Time) https://www.programiz.com/c-programming/online-compiler/

@tasfiqe

star

Mon Oct 07 2024 08:28:51 GMT+0000 (Coordinated Universal Time) https://www.programiz.com/c-programming/online-compiler/

@tasfiqe #c

star

Mon Oct 07 2024 07:41:14 GMT+0000 (Coordinated Universal Time) https://forums.mydigitallife.net/threads/windows-11-tweaks-fixes-and-modifications-overview.83744/page-89#:~:text=permissions%20at%20all-,Try%20from%20admin%20cmd,Code%3A,-rd%20/s%20/q

@Curable1600

star

Mon Oct 07 2024 04:35:18 GMT+0000 (Coordinated Universal Time) https://www.programiz.com/cpp-programming/online-compiler/

@LizzyTheCatto

star

Mon Oct 07 2024 02:28:16 GMT+0000 (Coordinated Universal Time) https://twilight-fibula-700.notion.site/SOQL-11cb0f056fc4445c962d6b3715206fc2?pvs

@WayneChung

star

Mon Oct 07 2024 02:22:52 GMT+0000 (Coordinated Universal Time) https://techdicer.com/mastering-element-scrolling-in-lightning-web-components/

@WayneChung

star

Sun Oct 06 2024 23:38:03 GMT+0000 (Coordinated Universal Time)

@kanatov

star

Sun Oct 06 2024 20:32:58 GMT+0000 (Coordinated Universal Time)

@RehmatAli2024 #deluge

star

Sun Oct 06 2024 19:48:57 GMT+0000 (Coordinated Universal Time)

@RehmatAli2024 #deluge

star

Sun Oct 06 2024 19:34:41 GMT+0000 (Coordinated Universal Time)

@Yakostoch

star

Sun Oct 06 2024 18:43:39 GMT+0000 (Coordinated Universal Time)

@Yakostoch

star

Sun Oct 06 2024 16:59:58 GMT+0000 (Coordinated Universal Time)

@Yakostoch

star

Sun Oct 06 2024 13:02:51 GMT+0000 (Coordinated Universal Time) https://www.roblox.com/users/6092259348/profile?friendshipSourceType

@sotousMHDPoruba

star

Sun Oct 06 2024 13:02:08 GMT+0000 (Coordinated Universal Time) https://www.roblox.com/users/5513365552/profile?friendshipSourceType

@sotousMHDPoruba

star

Sun Oct 06 2024 06:28:59 GMT+0000 (Coordinated Universal Time)

@maclaw

star

Sun Oct 06 2024 03:18:57 GMT+0000 (Coordinated Universal Time)

@kanatov

star

Sat Oct 05 2024 17:35:33 GMT+0000 (Coordinated Universal Time) https://stackoverflow.com/questions/64597009/use-powershell-to-edit-a-files-metadata-details-tab-of-a-file-in-windows-file

@baamn #powershell #metadata #file #properties

star

Sat Oct 05 2024 16:56:38 GMT+0000 (Coordinated Universal Time)

@cjadl24

star

Sat Oct 05 2024 12:17:44 GMT+0000 (Coordinated Universal Time)

@kanatov

star

Sat Oct 05 2024 05:51:40 GMT+0000 (Coordinated Universal Time)

@signup #html #javascript

Save snippets that work with our extensions

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