Snippets Collections
function mergePdf($pdfArr){
    $pdf = new Mpdf();
    foreach($pdfArr as $currentPdf){
      $pagecount = $pdf->SetSourceFile($currentPdf);
      for($i = 1; $i <= $pagecount; $i++){
        $pdf->AddPage();
        $tplId = $pdf->importPage($i);
        $pdf->useTemplate($tplId);
      }
    }
    //direct show on browser
    $pdf->Output();
    
    //spacefic location save file
    $outputpath = 'location/output.pdf';
    $pdf->Output($outputpath, 'F');
}
pipeline {
    agent any
    stages {
        stage('Code') {
            steps {
                git url: 'https://github.com/ishwarshinde041/node-todo-cicd.git', branch: 'master'
            }
        }
        stage('Build') {
            steps {
                sh 'docker build . -t node-todo-app-new'
            }
        }
        stage ('Deploy') {
            steps {
                sh 'docker run -d -p 8000:8000 node-todo-app-new:latest'
            }
        }
    }
}
pipeline {
    agent any
    stages {
        stage('Code') {
            steps {
                git url: 'https://github.com/ishwarshinde041/node-todo-cicd.git', branch: 'master'
            }
        }
        stage('Build') {
            steps {
                sh 'docker build . -t node-todo-app-new'
            }
        }
        stage ('Deploy') {
            steps {
                sh 'docker run -d -p 8000:8000 node-todo-app-new:latest'
            }
        }
    }
}
sudo usermod -aG docker jenkins
sudo reboot
pipeline {
    agent any
    stages {
        stage('Code') {
            steps {
                git url: 'https://github.com/ishwarshinde041/node-todo-cicd.git', branch: 'master'
            }
        }
        stage('Build') {
            steps {
                sh 'docker build . -t node-app-new'
            }
        }
        stage('Deploy') {
            steps {
                sh sh "docker-compose down && docker-compose up -d"
            }
        }
    }
}
pipeline {
    agent any
    stages {
        stage('Build') {
            steps {
                //
            }
        }
        stage('Test') {
            steps {
                //
            }
        }
        stage('Deploy') {
            steps {
                //
            }
        }
    }
}
// Handle Scaffolding icons navigation here (manual navigation)
  // React.useEffect(() => {
  //   if (navigationIndex !== null) {
  //     const view1 = [1, 2, 3];
  //     const view2 = [4, 5, 6];
  //     const view3 = [7, 8, 9];
  //     const view4 = [10, 11, 12];
  //     if (view1.includes(navigationIndex)) {
  //       setIconNum1(0);
  //       setIconNum2(3);
  //     } else if (view2.includes(navigationIndex)) {
  //       setIconNum1(3);
  //       setIconNum2(6);
  //     } else if (view3.includes(navigationIndex)) {
  //       setIconNum1(6);
  //       setIconNum2(9);
  //     } else if (view4.includes(navigationIndex)) {
  //       if (willTypeID === 2) {
  //         // Guardianship Will
  //         setIconNum1(7);
  //         setIconNum2(10);
  //       } else {
  //         // All other wills
  //         setIconNum1(8);
  //         setIconNum2(11);
  //       }
  //     }
  //   }
  // }, [navigationIndex, iconNum2, iconNum1]);
// Check condition for completed steps and navigation handling
  // React.useEffect(() => {
  //   if (willTypeID === 2) {
  //     // Guardianship Will
  //     if (
  //       newCompletedSteps.includes(1)
  //       && newCompletedSteps.includes(2)
  //       && newCompletedSteps.includes(4)
  //       && newCompletedSteps.includes(5)
  //       && newCompletedSteps.includes(6) // upload docs
  //     ) {
  //       setIsShowBookAppointment(true);
  //     } else {
  //       setIsShowBookAppointment(false);
  //     }
  //   } else if (willTypeID === 1) {
  //     // Full Will
  //     if (
  //       newCompletedSteps.includes(1)
  //       && newCompletedSteps.includes(2)
  //       && newCompletedSteps.includes(3)
  //       && newCompletedSteps.includes(4)
  //       && newCompletedSteps.includes(7)
  //       && newCompletedSteps.includes(8) // Upload Docs
  //       // && newCompletedSteps.includes(9) // Will Preview
  //     ) {
  //       setIsShowBookAppointment(true);
  //     } else {
  //       setIsShowBookAppointment(false);
  //     }
  //   } else if (
  //     willTypeID === 3 // Property Will
  //     || willTypeID === 5 // Financial Assets Will
  //     || willTypeID === 4 // Buisness Owners Will
  //     || willTypeID === 6 // Templated Full Will
  //   ) {
  //     if (
  //       newCompletedSteps.includes(1)
  //       && newCompletedSteps.includes(2)
  //       && newCompletedSteps.includes(3)
  //       && newCompletedSteps.includes(4)
  //       && newCompletedSteps.includes(5)
  //       && newCompletedSteps.includes(6)
  //       && newCompletedSteps.includes(7)
  //       && newCompletedSteps.includes(8) // Upload Docs
  //       // && newCompletedSteps.includes(9) // Will Preview
  //     ) {
  //       setIsShowBookAppointment(true);
  //     } else {
  //       setIsShowBookAppointment(false);
  //     }
  //   }
  // }, [newCompletedSteps]);
{
    "error": {
        "message": "You exceeded your current quota, please check your plan and billing details. For more information on this error, read the docs: https://platform.openai.com/docs/guides/error-codes/api-errors.",
        "type": "insufficient_quota",
        "param": null,
        "code": "insufficient_quota"
    }
}
#include <bits/stdc++.h> 
int pairSum(vector<int> &arr, int n, int target)
{
	int count=0;
	unordered_map<int,int>mp;
	for(int i=0 ; i<n ; i++)
	{
       if(mp.find(target-arr[i])!=mp.end())
	   {
		   count+=mp[target-arr[i]];
	   }
	   else
	   {
		   mp[arr[i]]++;
	   }
	}
	if(count==0)
	return -1;
	else
	return count;
}
void insertionSort(int n, vector<int> &arr)
{
    for(int i=0 ; i<n ; i++)
    {
        int j=i;
        while(j>0 and arr[j]<arr[j-1])
        {
            swap(arr[j],arr[j-1]);
            j--;
        }
    }
}
class Solution {
public:
    void moveZeroes(vector<int>& arr) 
    {
        int n=arr.size();
       int pos=0;
       for(int i=0 ; i<n ; i++)
       {
           if(arr[i]!=0)
           {
               swap(arr[i],arr[pos]);
               pos++;
           }
       }    
    }
};
<img src={"//example.com/assets/" + article.image}" alt={article.title} />
example.com/assets/<file-id>
example.com/assets/1ac73658-8b62-4dea-b6da-529fbc9d01a4
import React, { useEffect, useState } from 'react'
import { fetchArticles } from './async/fetchArticels'

const FileUpload = () => {
    const [articles, setArticles] = useState([])
    useEffect(()=>{
        fetchArticles().then(data => setArticles(data))
    }, [])

    return (
        <div>
            {articles.map(article => 
                <div>
                    <h3>{article.title}</h3>
                    <img src={article.image} alt="img" />
                </div>
                
            )}
        </div>
    )
}

export default FileUpload
import axios from "axios"

export const fetchArticles = async () => {
    const {data} = await axios.get('http://localhost:8055/items/articles')
    console.log(data.data)
    return data.data
}
import React, { useEffect, useState } from 'react'
import { fetchArticles } from './async/fetchArticels'

const FileUpload = () => {
    const [articles, setArticles] = useState([])
    useEffect(()=>{
        fetchArticles().then(data => setArticles(data))
    }, [])

    return (
        <div>
            {articles.map(article => 
                <div>
                    <h3>{article.title}</h3>
                    <img src={article.image} alt="img" />
                </div>
                
            )}
        </div>
    )
}

export default FileUpload
const handleNext = async (
    step: number,
    stepName?: any,
    completed?: boolean,
  ) => {
    console.log('STEPNUMBER', step);
    window.scrollTo(0, 0);
    setStepCompleted(completed);
    setCurrentSelectedStep(step);
    // Revert Active Service Funtionalities back to initial state on first handleNext Step
    dispatch(setIsChangeService(false));
    // dispatch(setIsCompleteWillInfo(false));
    dispatch(setModifyAppointment(false));
    // dispatch(setIsUpgradeWill(false));

    // Set upgradeWill flag to false if next clicked from Personal Details
    if (stepName === 'personal') {
      dispatch(setIsUpgradeWill(false));
    }

    // Completed Step handling --> remove after testing
    // if (completed === false) {
    //   const completedSteps = [...newCompletedSteps];
    //   const newSteps = completedSteps.filter((s: any) => s !== step);
    //   const unique = newSteps.filter(
    //     (item, index) => newSteps.indexOf(item) === index,
    //   );
    //   setNewCompletedSteps(newSteps);
    // }

    // Show selection option in Real Estate Distribution for Property Will up on next from beneficiary Details
    if (step === 5) {
      dispatch(clearSelectedDistribution());
    }

    // If quick booking is enabled
    if (isQuickBooking && stepName !== 'willTypeSelection') {
      setActiveStep(8);
      if (stepName === 'bookAppointment') {
        setActiveStep((prev) => prev + 1);
      }
    } else if (!isQuickBooking && stepName !== 'willTypeSelection') {
      // setActiveStep(3);
    }

    if (stepName === 'personal' && isQuickBooking) {
      setShowSkipToAppointmentModal(true);
    }

    // If upload documents is active and Book appointment is visible
    if (stepName === 'upload' && !isShowBookAppointment) {
      // Incomplete steps API called here
      try {
        const response = await trackPromise(
          api.validateWillSteps(
            profileGuid,
            spouseGuid,
            isSpouseSelected ? spouseGuid : profileGuid,
            serviceId,
          ),
        );
        // Save incomplete steps list in store (redux)
        dispatch(getIncompleteSteps(response?.data?.Output));
        const incompletedSteps = response?.data?.Output;
        const testatorIncompleteSteps = incompletedSteps.filter((step:any) => step.bookedForProfileGuid === profileGuid);
        const spouseIncompleteSteps = incompletedSteps.filter((step:any) => step.bookedForProfileGuid === spouseGuid);
        console.log('testatorIncompleteSteps', testatorIncompleteSteps);
        console.log('spouseIncompleteSteps', spouseIncompleteSteps);

        // Mirror Will && Testator
        if (mirrorWillCheck && !isSpouseSelected) {
          if (testatorIncompleteSteps.length !== 0) {
            handleShowIncompleteStepsModal();
          } else {
            // alert('go to next step');
            dispatch(setHighlightedSteps(9));
            dispatch(setNavigationIndex(9));
            dispatch(getNewActiveStep(13));
          }
        } else if (mirrorWillCheck && isSpouseSelected) { // Mirror Will && Spouse
          if (spouseIncompleteSteps.length !== 0) {
            handleShowIncompleteStepsModal();
          } else {
            dispatch(setHighlightedSteps(9));
            dispatch(setNavigationIndex(9));
            dispatch(getNewActiveStep(13));
          }
        }

        if (singleWillCheck) {
          // Show incomplete steps Modal only if the response is not empty
          if (incompletedSteps.length !== 0) {
            handleShowIncompleteStepsModal();
          } else {
          // Ask for confirmation on this functionality
            setIsShowBookAppointment(true);
            // Set View component, highlighted step in stepper and icon
            dispatch(setHighlightedSteps(9));
            dispatch(setNavigationIndex(9));
            dispatch(getNewActiveStep(21));
            setNewCompletedSteps((prev: any) => [...prev, 3, 4, 5, 6, 7, 8]);
          // dispatch(storeActiveStep(9));
          }
        }
      } catch (error) {
        console.log(error);
      }
    } else if (stepName === 'beneficiary-details' && willTypeID !== 1) {
      // Not needed for Full Will
      // If property and beneficiray is added then only we can navigate or go next to Real Estate Distribution
      if (propertyAdded && beneficiaryAdded) {
        dispatch(setHighlightedSteps(6));
        dispatch(getNewActiveStep(getStepIDFromBeneficiaryStep(willTypeID)));
        dispatch(setNavigationIndex(null));
        // // Highlighted step handled here
        // dispatch(setHighlightedSteps(step + 1));
        // // Set Current step number
        // dispatch(disableNavigation());
        // setCurrentSelectedStep(step);
        // // getWillStep(step);
        // const nextIndex = (currentIndex + 1) % stepNumber.length;
        // setCurrentIndex(nextIndex);

        // // setActiveStep((prevActiveStep) => prevActiveStep + 1);
        // // Need more testing here
        // setCurrentBtnStep(step + 1);
        // setActiveStep((prevActiveStep) => prevActiveStep + 1);
        // dispatch(storeActiveStep(step));
        // dispatch(getNewActiveStep(0));
        // dispatch(setNavigationIndex(null));
      } else {
        await dispatch<any>(resetErrorState());
        await dispatch<any>(setErrorInfo(`Please complete Beneficiary Details and ${getThirdStepName(willTypeID)}`));
      }
    } else {
      // ----------------------------------------------------------------
      // Highlighted step handled here
      // dispatch(setHighlightedSteps(step + 1));
      // // Test case
      // // getWillStep(step);
      // dispatch(disableNavigation());
      // const nextIndex = (currentIndex + 1) % stepNumber.length;
      // setCurrentIndex(nextIndex);
      // // dispatch(storeActiveStep(activeStep + 1));

      // // Get stepNumber list from the stepList array
      // const stepNumberList: any = results?.map((res) => Number(res?.stepNumber));

      // // // Handling ICONS navigation in handleNext()
      // if (step === 3) {
      //   setIconNum1(3);
      //   setIconNum2(6);
      // } else if (step === 6) {
      //   setIconNum1(6);
      //   setIconNum2(9);
      // } else if (step === 9) {
      //   if (willTypeID === 2) {
      //     // Guardianship Will
      //     setIconNum1(7);
      //     setIconNum2(10);
      //   } else {
      //     setIconNum1(8);
      //     setIconNum2(11);
      //   }
      // } else if (step > stepNumberList[stepNumberList.length - 2]) {
      //   // setIconNum1(8);
      //   // setIconNum2(11);
      //   navigate('/wills');
      // }

      // // Handle distribution of shares/Real estate distribution in ICONS
      // if (step === 7) {
      //   setIconNum1(6);
      //   setIconNum2(9);
      // }

      // // Set current step to pass as a prop to the further components to use
      // //  the handleNext method in those respective components
      // // NB:increment the step number by 1 to get correct list of completed steps
      // setCurrentBtnStep(step + 1);

      // let newSkipped = skipped;
      // if (isStepSkipped(activeStep)) {
      //   newSkipped = new Set(newSkipped.values());
      //   newSkipped.delete(activeStep);
      // }
      // // Increment activestep from state
      // setActiveStep((prevActiveStep) => prevActiveStep + 1);
      // // Increment currentStep from store state
      // dispatch(storeActiveStep(step));
      // dispatch(setStepFlow());
      // setSkipped(newSkipped);
      // dispatch(getNewActiveStep(0));

      // if (navigationEnabled) {
      //   setNewCompletedSteps((prevSteps: any) => [
      //     ...prevSteps,
      //     completed ? navigationIndex : null,
      //   ]);
      //   dispatch(setCompletedStepList(completed ? navigationIndex : null));
      //   dispatch(storeActiveStep(navigationIndex));
      //   setActiveStep(navigationIndex);
      // } else {
      //   setNewCompletedSteps((prevStep: any) => [
      //     ...prevStep,
      //     completed ? step : null,
      //   ]);
      //   dispatch(setCompletedStepList(completed ? step : null));
      //   // setNewCompletedSteps((prevStep: any) => [...prevStep,step]);
      // }

      // ----------------------------------------------------------------

      // Stepper/Next Optimisations
      dispatch(setHighlightedSteps(step + 1));
      dispatch(storeActiveStep(step));
      dispatch(getNewActiveStep(0));
      dispatch(setNavigationIndex(step + 1));
      // dispatch(setNavigationIndex(null));

      setNewCompletedSteps((prev:any) => [...prev,completed ? step : null]);
    }
  };
<!DOCTYPE html>
<html>
<body>
​
<h2>My First Page</h2>
​
<p id="demo"></p>
​
<script>
document.getElementById("demo").innerHTML = "Hello World!";
</script>
​
</body>
</html>
​
"sample6": {
    "prefix": "marie-antoinette",
    "body": "${1:パン}がなければ${2|ケーキ,お寿司,火鍋|}を食べればいいじゃない。"
}
function getNumWords( string ) {

  // Split the string where there is spaces, then count the array length
  return string.split( ' ' ).length
}
Segunda-feira - 9am ás 18pm
Quarta-feira - 9am ás 18pm
Sexta-feira - 9am ás 18pm
<!-- HERO 3 - TEXT OVERLAY : START --><!--[if (gte mso 9)|(IE)]><table role="presentation" align="center" border="0" cellpadding="0" cellspacing="0" width="100%"><tr><td align="center" valign="top" width="100%"><![endif]--><table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background-color: #ffffff;" width="100%">
 
  <tr>
   <td>
    <!--[if (gte mso 9)|(IE)]><table role="presentation" align="center" border="0" cellpadding="0" cellspacing="0" width="600" style="width:600px;"><tr><td align="center" valign="top" width="100%"><![endif]--><table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="max-width:600px; background-color:#ffffff;" width="100%">
     
      <tr>
       <td>
        <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background-color: #ffffff;" width="100%">
         
          <tr>
           <td align="center" style="padding-top: 0px;padding-bottom:0px;padding-left:0px;padding-right:0px;" valign="top">
            <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background-color: #000000;" width="100%">
             
              <tr>
               <!-- Bulletproof Background Images c/o https://backgrounds.cm --><!-- https://litmus.com/community/discussions/6229-windows-10-mail-vml-background-solution --><td align="left" background="https://image.em.cat.com/lib/fe34157075640579701c78/m/1/3ac128e7-4b80-402d-a371-c78cbec7f5e6.jpeg" bgcolor="#000000" height="250" style="height: 250px; text-align: center; background-image:url('https://image.em.cat.com/lib/fe34157075640579701c78/m/1/3ac128e7-4b80-402d-a371-c78cbec7f5e6.jpeg'); background-position: center !important; background-size: cover !important;" valign="top">
                <!-- NOTE: Image needs to be exact dimensions for it to appear correct in 2013/2016/2019 Desktop Outlook --><!--[if gte mso 9]>
<v:image xmlns:v="urn:schemas-microsoft-com:vml" id="theImage" style="behavior: url(#default#VML); display: inline-block; position: absolute; width: 600x; height: 250px; top: 0; left: 0;right: 0; border: 0; z-index: 1;" src="https://image.em.cat.com/lib/fe34157075640579701c78/m/1/3ac128e7-4b80-402d-a371-c78cbec7f5e6.jpeg" />                             
<v:rect xmlns:v="urn:schemas-microsoft-com:vml" fill="true" stroke="false" style="display: inline-block; position: absolute; width: 600px; height: 250px; top: 0; left: 34;right: 0; border: 0; z-index: 2;">
<v:fill opacity="0%" style="z-index: 1;"/> 
<div>                       
<![endif]--><!-- Containing Table --><table align="left" border="0" cellpadding="0" cellspacing="0" role="presentation" style="max-width: 300px;" width="300">
                 
                  <tr>
                   <td align="center" class="darkbg-hero-txt" style="padding-top:52px;padding-right:0px;padding-bottom:0px;padding-left:50px;" valign="middle">
                    <table align="left" border="0" cellpadding="0" cellspacing="0" role="presentation" style="border: 3px solid #ffc506; text-align: center;max-width: 300px;" width="100%">
                     
                      <tr>
                       <td align="center" style="padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;" valign="middle">
                        <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                         
                          <tr>
                           <td class="darkbg-hero-txt" style="font-family:Arial Black, Arial, Helvetica, sans-serif; color:#ffffff; text-align:left; font-weight:700; font-size:16px; mso-line-height-rule:exactly; line-height:18px;">
                            <!--[if (gte mso 9)|(IE)]><table role="presentation" align="center" border="0" cellpadding="0" cellspacing="0" width="600" style="width:100%;"><tr><td align="center" valign="top" width="100%" class="darkbg-hero-txt"><![endif]--><table border="0" cellpadding="0" cellspacing="0" role="presentation" style="margin-top: 0px; margin-right: 10px; margin-bottom: 0px; margin-left: 10px  text-align: center;" width="100%">
                             
                              <tr>
                               <td class="darkbg-hero-txt" style="font-family:Arial Black, Arial, Helvetica, sans-serif; color:#ffffff; text-align:center; font-weight:700; font-size:16px; mso-line-height-rule:exactly; line-height:18px; background-color: #000000;">
                                <span style="font-family:Arial Black, Arial, Helvetica, sans-serif; text-align:center; font-weight:700; font-size:10px; mso-line-height-rule:exactly; line-height:10px;">&nbsp;</span><br>
                                LEARN HOW THE <span style="display: inline-block">CAT<span style="font-size:  80%;display: inline-block;margin-top: -2px;vertical-align: top">&reg;</span></span><br>
                                S62 PRO STOOD UP TO<br>
                                A SPACE JOUREY.<br>
                                <span style="font-family:Arial Black, Arial, Helvetica, sans-serif; text-align:center; font-weight:700; font-size:10px; mso-line-height-rule:exactly; line-height:10px;">&nbsp;</span></td></tr></table><!--[if (gte mso 9)|(IE)]></td></tr></table><![endif]--></td></tr></table></td></tr></table></td></tr></table><!-- Containing Table END--><!--[if gte mso 9]>   
</div></v:fill></v:rect><![endif]--></td></tr></table></td></tr></table></td></tr></table><!--[if (gte mso 9)|(IE)]></td></tr></table><![endif]--></td></tr></table><!--[if (gte mso 9)|(IE)]></td></tr></table><![endif]--><!-- HERO 3 - TEXT OVERLAY : END -->
add_filter( 'get_shortlink', function( $shortlink ) {return $shortlink;} );
int duplicate(vector<int> &arr,int b){
    int n=arr.size();
    unordered_map<int,int> freq;
    for(int i=0;i<n;i++){
        freq[arr[i]]++;
    }
        for(auto c:freq )
        if(c.second==b){
            return c.first;
        }
    
   return -1;
   
}
int duplicate(vector<int> &arr){
    int n=arr.size();
    int res=0;
    for(int i=0;i<n-1;i++)
    res=res^(i+1)^arr[i];
    
    res=res^arr[n-1];
    
    return res;
}
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
​
</body>
</html>
#include<bits/stdc++.h>
using namespace std;
void shift(vector<int> &arr,int element){
    int count=0;
    for(int i=0;i<arr.size();i++){
        if(arr[i]!=element){
            arr[count++]=arr[i];
        }
    }
    int i=0;
    while(count<arr.size()){
        arr[count++]=element;
    }
}
void printSequence(){
    int prev=1;
    int mult=1;
    for(int i=0;i<7;i++){
        mult*=2;
        int nextprev= prev+mult;
        cout<<nextprev<<" ";
        prev=nextprev;
    }
}
int size(int n){
    int count=0;
    while(n%10!=0){
        count++;
        n/=10;
    }
    return count;
}
bool armstrong(int n){
   int size1=size(n);
   int temp=n,rem=0,sum=0;
   while(n!=0){
       rem=n%10;
       sum+=pow(rem,size1);
       n/=10;
   }
   cout<<endl;
   cout<<sum;
   return sum==temp;
   
}
#include<stdio.h>
#include<math.h>

int main(){
    int i,j,average,sum=0,var=0;
    int marks[] = {4, 4, 7, 7, 9, 8, 1, 10, 7, 3};
    int lenght = 10;
    int largest = marks[0];
    int smallest = marks[0];
    //Smallest and Largest Calculation
    for(i=0;i<lenght;i++){
       if(marks[i] > largest){
            largest = marks[i];
       }
       else if(marks[i] < smallest){
            smallest = marks[i];
       }
       sum += marks[i];
    }
    //Average Calculation
    average = sum / lenght;
    //Variance Calculation
    for(i=0;i<lenght;i++){
        var += pow((average-marks[i]),2);
    }
    //Mode Calculation
    int occurance = 0;
    int max_occurance = 0;
    int max_value;
    for(i=0;i<lenght;i++){
        occurance = 0;
        for(j=0;j<lenght;j++){
            if(marks[i]==marks[j]){
                occurance++;
            }
        }
        if(occurance > max_occurance){
            max_occurance = occurance;
            max_value = marks[i];
        }
    }
    //Printing Values
    printf("Largest: %d\n",largest);
    printf("Smallest: %d\n",smallest);
    printf("Average: %d\n",average);
    printf("Variance: %d\n",var);
    printf("Mod: %d\n",max_value);

    return 0;
}
jQuery(document).find('.sptp-modal a').each(function(){
    jQuery(this).attr('href', 'javascript:void(0)');
});
# Download the helper library from https://www.twilio.com/docs/python/install
import os
from twilio.rest import Client


# Find your Account SID and Auth Token at twilio.com/console
# and set the environment variables. See http://twil.io/secure
account_sid = os.environ['TWILIO_ACCOUNT_SID']
auth_token = os.environ['TWILIO_AUTH_TOKEN']
client = Client(account_sid, auth_token)

verification = client.verify \
                     .v2 \
                     .services('VAXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX') \
                     .verifications \
                     .create(to='+15017122661', channel='sms')

print(verification.sid)
# Download the helper library from https://www.twilio.com/docs/python/install
import os
from twilio.rest import Client


# Find your Account SID and Auth Token at twilio.com/console
# and set the environment variables. See http://twil.io/secure
account_sid = os.environ['TWILIO_ACCOUNT_SID']
auth_token = os.environ['TWILIO_AUTH_TOKEN']
client = Client(account_sid, auth_token)

verification = client.verify \
                     .v2 \
                     .services('VAXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX') \
                     .verifications \
                     .create(to='+15017122661', channel='sms')

print(verification.sid)
# Download the helper library from https://www.twilio.com/docs/ruby/install
require 'rubygems'
require 'twilio-ruby'

# Find your Account SID and Auth Token at twilio.com/console
# and set the environment variables. See http://twil.io/secure
account_sid = ENV['TWILIO_ACCOUNT_SID']
auth_token = ENV['TWILIO_AUTH_TOKEN']
@client = Twilio::REST::Client.new(account_sid, auth_token)

verification = @client.verify
                      .v2
                      .services('VAXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX')
                      .verifications
                      .create(to: '+15017122661', channel: 'sms')

puts verification.sid
# Download the helper library from https://www.twilio.com/docs/ruby/install
require 'rubygems'
require 'twilio-ruby'

# Find your Account SID and Auth Token at twilio.com/console
# and set the environment variables. See http://twil.io/secure
account_sid = ENV['TWILIO_ACCOUNT_SID']
auth_token = ENV['TWILIO_AUTH_TOKEN']
@client = Twilio::REST::Client.new(account_sid, auth_token)

verification = @client.verify
                      .v2
                      .services('VAXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX')
                      .verifications
                      .create(to: '+15017122661', channel: 'sms')

puts verification.sid
curl -X POST \
  https://verify.twilio.com/v2/Services/VAxxxxxxxxxxxxxxxxx/Verifications \
  --data-urlencode "To=+19876543210" \
  --data-urlencode "Channel=sms"
function getRandom10CharString() {
    const timestamp = Date.now().toString(36); // Convert timestamp to base 36
    const randomString = Math.random().toString(36).substr(2); // Generate a random base 36 string
    const combinedString = timestamp + randomString; // Combine the two strings
    return combinedString.substr(0, 10); // Return the first 10 characters
}

console.log(getRandom10CharString());
 <ul className='rating'>
    {Array.from({ length: 10 }, (_, i) => (
      <li key={`rating-${i + 1}`}>
        <input
          type='radio'
          id={`num${i + 1}`}
          name='rating'
          value={i + 1}
          onChange={handleChange}
          checked={selected === i + 1}
        />
        <label htmlFor={`num${i + 1}`}>{i + 1}</label>
      </li>
    ))}
  </ul>
body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    box-sizing: border-box;
}

header {
    /* position: sticky;
    box-shadow: ; */
    background-color: rgb(255, 255, 255);
    width: 100%;
    height: 80px;
    position: sticky;
    z-index: 999;

    box-shadow: 0 -6px 10px 5px rgba(0, 0, 0, 0.274);
}

nav {
    display: flex;

}

.logo {
    width: 50px;
    margin-top: 22px;
    padding-left: 55px;
}

.logo img {
    width: 50px;
}


/* @media (min-width:1344px) and (max-width:1440px) {
    .logo {
        padding-left: 0px;
        margin-left: 25px;
        margin-top: 25px;
    }

    .logo img {
        width: 40px;

    }
} */

.nav-ul li {
    list-style: none;
}

.nav-ul li a {
    text-decoration: none;
    font-size: 14px;
    letter-spacing: .3px;
    color: #282c3f;
    font-weight: 700;
    text-transform: uppercase;
}

@media (min-width:1344px) and (max-width:1440px) {
    .nav-ul li a {
        font-size: 13px;
    }


}

@media (min-width:1247px) and (max-width:1343px) {
    .logo img {
        width: 42px;
    }

    .logo {
        margin-top: 25px;
    }
}


@media (min-width:1247px) and (max-width:1343px) {
    .nav-ul li a {
        font-size: 13px;
    }
}

@media (min-width:1024px) and (max-width:1246px) {
    .logo {
        display: block;
    }
}

@media (min-width:1024px) and (max-width:1246px) {
    .checkbtn {
        display: none;
    }

    /* .logo img{
        display: none;
    } */
}


.checkbtn {
    font-size: 30px;
    color: black;
    float: right;
    line-height: 80px;
    cursor: pointer;
    left: -100%;
    display: none;
    margin-left: 15px;

}

#clicks {
    display: none;
}




.nav-ul {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-top: 28px;
}

@media (max-width:768px) {
    nav {
        justify-content: space-between;

    }

    .last-footer-myntra,
    .secound-last-footer, .pop-searches p, .pop-searches h4, .last-footer-myntra, .shoppp, .social-icon, .option-three-down h5, .customerpolicies h5, .fullinks h5, .fullinks a{

        margin-left: -120px;
    }
    .pop-searches{
        margin-right: 1px;
        margin-left: 0px;
    }

    nav ul {
        position: fixed;
        top: 50px;
        left: -100%;
        background-color: #fff;
        height: 100vh;
        display: block;
        text-align: center;
        transition: all 0.3s ease-in-out;
    }

    .info-section,
    .contact,
    .copyright,
    .flipkartcompany,
    .horizontal-line {
        display: none;
    }

    .iconfirst p,
    .iconsecound p,
    .iconthird p {
        display: none;
    }

    .four-option-footer {
        margin-left: 20px;
    }

    .option-one,
    .option-two,
    .option-three-up,
    .option-four {
        display: none;
    }

    .threeicons {
        margin-right: 25px;
        margin-top: 8px;
    }

    .searchicons {
        margin-left: 250px;
    }

    #clicks:checked~ul {
        left: 0%;
    }

    .checkbtn {
        display: block;
    }

    .logo {
        display: none;
    }

    .nav-ul {
        display: block;
    }

    .nav-ul li {
        margin: 40px 0;
    }

    .nav-ul li a {
        font-size: 20px;
        display: block;
    }

    .searchbar {
        display: none;
    }

    .search {
        display: none;
    }

    .search-icon {
        display: none;
    }
}

@media (min-width:1247px) and (max-width:1343px) {
    .nav-ul {
        gap: 10px;
        padding-left: 10px;

    }
}


.sub {
    top: -0.4rem;
    font-size: 10px;
    line-height: 0;
    position: relative;
    color: #ff3f6c;
    font-weight: 700;
    vertical-align: baseline;
    text-transform: uppercase;
}

.searchbar {
    display: flex;
    margin-top: 12px;
    margin-left: 75px;
}

@media (min-width:1247px) and (max-width:1343px) {
    .searchbar {
        margin-left: 79px;
    }
}


.search {
    width: 267px;
    height: 40px;
    margin-top: 8px;
    background: #f5f5f6;
    border: 1px solid #f5f5f6;
}

@media (min-width:1024px) and (max-width:1246px) {
    .logo {
        padding-left: 25px;
    }

    .nav-ul {
        gap: 15px;
        padding-left: 8px;
    }

    .nav-ul li a {
        font-size: 14px;
    }

    .threeicons {
        gap: 7px;
    }

    .searchbar {
        margin-left: 60px;
    }

    .search {
        width: 107px;
    }




}

/* @media (min-width:1025px) and (max-width:1269px) {
    #search {
        width: 274px;
        height: 34px;
    }
} */

/* @media screen and (max-width:1024px) {
    #search {
        width: 200px;
    }

} */

::placeholder {
    font-size: 15px;
}

.search-icon {
    background: #f5f5f6;
    border: 1px solid #f5f5f6;
    height: 38px;
    margin-top: 8px;
    margin-left: 45px;
    width: 39px;
    color: #7c7c7c;
}

.search-icon i {
    margin-top: 10px;
    padding-left: 12px;
}

.threeicons {
    display: flex;
    gap: 20px;
    margin-left: 45px;
}



.serachicon,
.iconfirst,
.iconsecound,
.iconthird {
    align-items: center;
    text-align: center;
    margin-top: 20px;
}

.iconfirst p,
.iconsecound p,
.iconthird p {
    margin: 0;
    text-transform: capitalize;
    font-weight: 650;
    font-size: 12px;
}

.bannertwo img,
.bannerthree-image li a img,
.bannerfive-image li a img {
    width: 100%;
}

.bannerfour img {
    width: 100%;
    margin-top: -5px;
}

.bannerthree-image,
.bannerfour {
    display: flex;
    padding-left: 50px;
    padding-right: 50px;
}

.bannerfive-image {
    display: flex;
}

.bannerthree-image li,
.bannerfive-image li {
    list-style: none;
}

.crazydeals img {
    width: 100%;
}

.pic-one li a img {
    width: 100%;
}

.pic-one {
    display: flex;
}

.pic-one li {
    list-style: none;
}

.catogories img {
    width: 100%;
}

.bannerlast img {
    width: 100%;
}




/* FOOTER SECTION */
.myntra-footer {
    position: relative;
    z-index: 5;
    padding: 30px 0px 40px 0px;
    background: #FAFBFC;

}

.last-footer-myntra h3 {
    color: #535766 !important;
    font-size: 14px;
    line-height: 5px;
    margin-left: 142Px;
}



.last-footer-myntra p {
    line-height: 18px;
    color: #94969f;
    font-size: 13px;
    padding-bottom: 50px;
    margin-left: 142Px;
    margin-right: 130px;

}




.secound-last-footer h3 {
    color: #535766 !important;
    font-size: 14px;
    line-height: 5px;
    margin-left: 142Px;
}

.secound-last-footer p {
    line-height: 18px;
    color: #94969f;
    font-size: 13px;
    padding-bottom: 5px;
    margin-left: 142Px;
    margin-right: 130px;

}



.secound-last-footer ul li {
    list-style: decimal-leading-zero;
    /* line-height: 18px; */
    padding-bottom: 15px;
    color: #94969f;
    font-size: 13px;
    margin-left: 142Px;
    margin-right: 130px;

}

span.cool {
    font-weight: 700;
    color: #282c3f;
}

.horizontal-line {
    border-top: 1px solid #eaeaec;
    margin-left: 142Px;
    margin-right: 130px;
}

.info-section {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    margin-left: 142Px;
    margin-right: 130px;
    padding-bottom: 15px;
    color: #94969f;

}




.blue-contact {
    color: #526cd0;
    font-weight: 700;
}

.pop-searches {
    font-size: 14px;
    margin-left: 142Px;
    margin-right: 130px;
    padding-bottom: 15px;
    color: #696b79;
}

.pop-searches h4 {
    color: #535766;
    font-size: 12px;
}

.four-option-footer {
    display: flex;
    /* justify-content: center; */
    gap: 65px;
    margin-left: 142px;
    margin-right: 130px;


}

.option-three {
    margin-top: 3px;

}

.option-one li,
.option-two li,
.links li {
    list-style: none;

}

.links li a {
    text-decoration: none;
    padding-bottom: 15px;
    line-height: 25px;
    font-size: 14px;
    color: #696b79;
}


.gplay img {
    width: 140px;
    margin-right: 10px;
}

.istore img {
    width: 122px;
}

.social-icon img {
    width: 25px;
}

.option-four {
    margin-top: 10px;
}

.ori-size img {
    margin-top: 13px;
    margin-right: 5px;
    width: 48px;
    height: 40px;
}

.rep-size img {
    width: 48px;
    height: 49px;
    margin-right: 5px;
    margin-top: 3px;
}

.image-horizontal-div {
    display: flex;
}

.option-one,
.option-two {
    /* margin-left: 142Px;
    margin-right: 130px; */
    padding-bottom: 15px;
    line-height: 25px;
    font-size: 14px;
    color: #696b79;

}

.links {
    /* margin-left: 142Px;
    margin-right: 130px; */
    padding-bottom: 15px;
    line-height: 25px;
    font-size: 14px;
    color: #696b79;
}

.option-one h5,
.option-two h5,
.option-three h5 {
    font-family: "Roboto" sans-serif;
    font-size: 12px;
    color: #282c3f;
    font-weight: 700;

}

.social-icon {
    display: flex;
    gap: 15px;
}

.option-four-img img {
    display: flex;
}

.orig,
.rep {
    display: flex;
}

.orig,
.rep {
    font-size: 14px;
    color: #696b79;
}

.ori-2 {
    font-size: 14px;
    color: black;
    font-weight: 700;
}

.rep-2 {
    font-size: 14px;
    color: black;
    font-weight: 700;
    font-family: "ROBOTO" sans-serif;
}
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Online Shopping for Women, Men, Kids Fashion & Lifestyle - Myntra</title>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
        integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA=="
        crossorigin="anonymous" referrerpolicy="no-referrer" />
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/brands.css">
    <link rel="stylesheet" href="index.css">
</head>

<body>
    <header class="header">
        <nav>

            <input type="checkbox" id="clicks">
            <label for="clicks" class="checkbtn">
                <i class="fa fa-bars"></i>
            </label>
            <div class="logo">
                <a href="#"><img src="img/myntra-Logo-PNG_zqavvs.png" alt=""></a>
            </div>
            <div class="navbar">
                <ul class="nav-ul">
                    <li>
                        <a href="D:\01-NOV-2023-Projects\Myntra-project-2\index.html">Men</a>
                    </li>
                    <li>
                        <a href="D:\01-NOV-2023-Projects\Myntra-project-2\wo.html">Women</a>
                    </li>
                    <li>
                        <a href="D:\01-NOV-2023-Projects\Myntra-project-2\kid.html">Kids</a>
                    </li>
                    <li>
                        <a href="D:\01-NOV-2023-Projects\Myntra-project-2\hom.html">Home & Living</a>
                    </li>
                    <li>
                        <a href="">Beauty</a>
                    </li>
                    <li>
                        <a href="">Studio <sub class="sub">new</sub></a>
                    </li>
                </ul>
            </div>
            <div class="searchbar">
                <div class="search-icon">
                    <i class="fa fa-search"></i>
                </div>
                <div class="search-box">
                    <input type="search" name="search" class="search"
                        placeholder="Search for products, brands and more">
                </div>
            </div>
            <div class="threeicons">
                <div class="serachicon">
                    <i class="fa-solid fa-magnifying-glass" style="color: #000000;"></i>
                </div>
                <div class="iconfirst">
                    <i class="fa-solid fa-user" style="color: #000000;"></i>
                    <p>profile</p>
                </div>
                <div class="iconsecound">
                    <i class="fa-solid fa-heart" style="color: #000000;"></i>
                    <p>whislist</p>
                </div>
                <div class="iconthird">
                    <i class="fa-solid fa-bag-shopping"></i>
                    <p>cart</p>
                </div>
            </div>
        </nav>
    </header>
    <section>
        <div class="content-container">
            <div class="bannertwo">
                <img src="https://assets.myntassets.com/f_webp,w_980,c_limit,fl_progressive,dpr_2.0/assets/images/2023/12/7/0f3abf3d-d305-41fe-a491-759abf1122011701953843355-FLAT-500-Off-on-1st-Purchase-Strip.jpg"
                    alt="">
            </div>
            <div class="bannerthree">
                <div class="bannerthree-image">
                    <li>
                        <a href="#">
                            <img src="https://assets.myntassets.com/f_webp,w_490,c_limit,fl_progressive,dpr_2.0/assets/images/2023/12/10/36e1ab79-afa9-463b-8b74-81e716039fd51702187450219-desktop-main-slices_01.gif"
                                alt=""></a>
                    </li>
                    <li>
                        <a href="#">
                            <img src="https://assets.myntassets.com/f_webp,w_490,c_limit,fl_progressive,dpr_2.0/assets/images/2023/12/10/89c1c013-ca48-4880-9923-d4764d35dafe1702187450211-desktop-main-slices_02.gif"
                                alt=""></a>
                    </li>
                </div>
            </div>
            <div class="bannerfour">
                <img src="https://assets.myntassets.com/f_webp,w_980,c_limit,fl_progressive,dpr_2.0/assets/images/2023/12/7/387761bd-69df-47db-8fbf-7e2b149708291701954034425-Sponsor-Strip.jpg"
                    alt="">
            </div>
            <div class="bannerfive">
                <div class="bannerfive-image">
                    <li><a href="#"><img
                                src="https://assets.myntassets.com/f_webp,w_490,c_limit,fl_progressive,dpr_2.0/assets/images/2023/12/7/735575c2-03ab-49aa-888e-c625bc3ab8a51701954347074-MYNTRA200.jpg"
                                alt=""></a></li>
                    <li><a href="#"><img
                                src="https://assets.myntassets.com/f_webp,w_490,c_limit,fl_progressive,dpr_2.0/assets/images/2023/12/7/05c93476-a96e-4d98-9ecf-ce3c6229631b1701954347094-MYNTRA100.jpg"
                                alt=""></a></li>
                </div>
            </div>
        </div>
    </section>
    <section class="webcontent">
        <div class="crazydeals">
            <img src="https://assets.myntassets.com/f_webp,w_980,c_limit,fl_progressive,dpr_2.0/assets/images/2023/12/7/eb1f8f53-6288-4cb1-a7e9-e1f4a140766a1701954621249-Crazy-Deals.jpg"
                alt="">
        </div>
        <div class="containerone">
            <div class="pic-one">
                <li><a href="#"><img
                            src="https://assets.myntassets.com/f_webp,w_89,c_limit,fl_progressive,dpr_2.0/assets/images/2023/12/6/0e221124-1811-43e1-b8b1-0811f5496d071701844927530-image_png1050553154.png"
                            alt=""></a></li>
                <li><a href="#"><img
                            src="https://assets.myntassets.com/f_webp,w_89,c_limit,fl_progressive,dpr_2.0/assets/images/2023/12/2/2f3f5039-747c-4d77-8bca-a210a926803b1701496083671-Adidas_min._50_off.png"
                            alt=""></a></li>
                <li><a href="#"><img
                            src="https://assets.myntassets.com/f_webp,w_89,c_limit,fl_progressive,dpr_2.0/assets/images/2023/12/2/ace0cb60-33a0-4309-8f52-39897f9064d01701496083365-Anouk_HOP_-_More_Min_65.png"
                            alt=""></a></li>
                <li><a href="#"><img
                            src="https://assets.myntassets.com/f_webp,w_89,c_limit,fl_progressive,dpr_2.0/assets/images/2023/12/2/bcfa3725-3d9b-4953-a500-19196e52e3771701496083280-Aurelia-_GD_.png"
                            alt=""></a></li>
                <li><a href="#"><img
                            src="https://assets.myntassets.com/f_webp,w_89,c_limit,fl_progressive,dpr_2.0/assets/images/2023/12/2/a5559538-1264-419d-ae90-6dbfdd6ac8f11701496083479-Biba-_W.png"
                            alt=""></a></li>
                <li><a href="#"><img
                            src="https://assets.myntassets.com/f_webp,w_89,c_limit,fl_progressive,dpr_2.0/assets/images/2023/12/6/63f9cf8e-ab6e-4eff-95b1-c032777675491701848153374-image_png93945355.png"
                            alt=""></a></li>
                <li><a href="#"><img
                            src="https://assets.myntassets.com/f_webp,w_89,c_limit,fl_progressive,dpr_2.0/assets/images/2023/12/2/e2eb2ffe-1942-46c7-b07f-4a34a76039ca1701502190296-Philips-_Braun_Min_25.png"
                            alt=""></a></li>
                <li><a href="#"><img
                            src="https://assets.myntassets.com/f_webp,w_89,c_limit,fl_progressive,dpr_2.0/assets/images/2023/12/6/1be164ff-d46c-4a3e-9379-33de5ba65cbd1701842418214-image_png442697016.png"
                            alt=""></a></li>
                <li><a href="#"><img
                            src="https://assets.myntassets.com/f_webp,w_89,c_limit,fl_progressive,dpr_2.0/assets/images/2023/12/2/4182305b-e94f-4ebf-ab8d-0460de2b55b61701502190284-Olay-_Kaya_-_min_30_off.png"
                            alt=""></a></li>
                <li><a href="#"><img
                            src="https://assets.myntassets.com/f_webp,w_89,c_limit,fl_progressive,dpr_2.0/assets/images/2023/12/6/167abc3b-a343-4fd3-973d-ab25780b92f41701842433891-image_jpeg1727247391.jpg"
                            alt=""></a></li>
                <li><a href="#"><img
                            src="https://assets.myntassets.com/f_webp,w_89,c_limit,fl_progressive,dpr_2.0/assets/images/2023/12/2/506a66ef-6ff6-482c-bae3-b70e61e19eaf1701502190255-Lakme.png"
                            alt=""></a></li>
            </div>
        </div>
        <div class="containertwo">
            <div class="catogories">
                <img src="https://assets.myntassets.com/f_webp,w_980,c_limit,fl_progressive,dpr_2.0/assets/images/2023/12/7/a1e6f8cf-f614-4e3f-9ef7-9f2d42854c8d1701954621266-Shop-By-Category.jpg"
                    alt="">
            </div>
            <div class="pic-one">
                <li><a href="#"><img
                            src="https://assets.myntassets.com/f_webp,w_163,c_limit,fl_progressive,dpr_2.0/assets/images/2023/11/23/440784b9-87a9-4062-9dff-9297e5d1cbb61700724828383-Shop-By-Category_HP--1-_01.jpg"
                            alt=""></a></li>
                <li><a href="#"><img
                            src="https://assets.myntassets.com/f_webp,w_163,c_limit,fl_progressive,dpr_2.0/assets/images/2023/11/23/f4adce2b-d535-4375-babe-d9ace76d189c1700724828389-Shop-By-Category_HP--1-_02.jpg"
                            alt=""></a></li>
                <li><a href="#"><img
                            src="https://assets.myntassets.com/f_webp,w_163,c_limit,fl_progressive,dpr_2.0/assets/images/2023/11/23/938dca15-a1e9-44bb-8587-4a558910e4411700724828394-Shop-By-Category_HP--1-_03.jpg"
                            alt=""></a></li>
                <li><a href="#"><img
                            src="https://assets.myntassets.com/f_webp,w_163,c_limit,fl_progressive,dpr_2.0/assets/images/2023/11/23/2c8f2de6-8a56-4f65-ac89-a3f70ce4a0191700724828399-Shop-By-Category_HP--1-_04.jpg"
                            alt=""></a></li>
                <li><a href="#"><img
                            src="https://assets.myntassets.com/f_webp,w_163,c_limit,fl_progressive,dpr_2.0/assets/images/2023/11/23/1c816444-25f9-45e7-b477-d0516457f6aa1700724828404-Shop-By-Category_HP--1-_05.jpg"
                            alt=""></a></li>
                <li><a href="#"><img
                            src="https://assets.myntassets.com/f_webp,w_163,c_limit,fl_progressive,dpr_2.0/assets/images/2023/11/23/18501a22-e63e-4673-8870-66ad9bf8fa171700724828408-Shop-By-Category_HP--1-_06.jpg"
                            alt=""></a></li>
            </div>
            <div class="pic-one">
                <li><a href="#"><img
                            src="https://assets.myntassets.com/w_163,c_limit,fl_progressive,dpr_2.0/assets/images/2023/11/23/6ec91573-e469-41b4-9fce-3c8e703ba5811700724828413-Shop-By-Category_HP--1-_07.jpg"
                            alt=""></a></li>
                <li><a href="#"><img
                            src="https://assets.myntassets.com/w_163,c_limit,fl_progressive,dpr_2.0/assets/images/2023/11/23/2b6f7b84-ffc9-4daf-9d5e-05a36038f1c71700724828418-Shop-By-Category_HP--1-_08.jpg"
                            alt=""></a></li>
                <li><a href="#"><img
                            src="https://assets.myntassets.com/w_163,c_limit,fl_progressive,dpr_2.0/assets/images/2023/11/23/95b224e0-7d30-4e7c-b2d6-26f7d8d24a7f1700724828423-Shop-By-Category_HP--1-_09.jpg"
                            alt=""></a></li>
                <li><a href="#"><img
                            src="https://assets.myntassets.com/w_163,c_limit,fl_progressive,dpr_2.0/assets/images/2023/11/23/0a04f91e-cbdf-4661-9d5e-2a2979b3a11d1700724828428-Shop-By-Category_HP--1-_10.jpg"
                            alt=""></a></li>
                <li><a href="#"><img
                            src="https://assets.myntassets.com/w_163,c_limit,fl_progressive,dpr_2.0/assets/images/2023/11/23/f2416304-0d29-4afe-94a2-3fa0c7e8d7bd1700724828433-Shop-By-Category_HP--1-_11.jpg"
                            alt=""></a></li>
                <li><a href="#"><img
                            src="https://assets.myntassets.com/w_163,c_limit,fl_progressive,dpr_2.0/assets/images/2023/11/23/f63bdfec-0123-4657-8a7b-87877ae46ec01700724828438-Shop-By-Category_HP--1-_12.jpg"
                            alt=""></a></li>
            </div>
            <div class="pic-one">
                <li><a href="#"><img
                            src="https://assets.myntassets.com/w_163,c_limit,fl_progressive,dpr_2.0/assets/images/2023/11/23/a70ce50d-da04-4dba-8b6f-a5aff55c97371700724828443-Shop-By-Category_HP--1-_13.jpg"
                            alt=""></a></li>
                <li><a href="#"><img
                            src="https://assets.myntassets.com/w_163,c_limit,fl_progressive,dpr_2.0/assets/images/2023/11/23/5b5af732-3334-4b75-bc71-82d9008e58b81700724828448-Shop-By-Category_HP--1-_14.jpg"
                            alt=""></a></li>
                <li><a href="#"><img
                            src="https://assets.myntassets.com/w_163,c_limit,fl_progressive,dpr_2.0/assets/images/2023/11/23/400800b9-c35f-4f17-8b49-e62ff3a4b7c31700724828454-Shop-By-Category_HP--1-_15.jpg"
                            alt=""></a></li>
                <li><a href="#"><img
                            src="https://assets.myntassets.com/w_163,c_limit,fl_progressive,dpr_2.0/assets/images/2023/11/23/3b14a0b3-5b33-4f81-b37c-42246ad0ee971700724828459-Shop-By-Category_HP--1-_16.jpg"
                            alt=""></a></li>
                <li><a href="#"><img
                            src="https://assets.myntassets.com/w_163,c_limit,fl_progressive,dpr_2.0/assets/images/2023/11/23/da4629ca-c2ea-4bed-aef3-090d8d5c89b11700724828464-Shop-By-Category_HP--1-_17.jpg"
                            alt=""></a></li>
                <li><a href="#"><img
                            src="https://assets.myntassets.com/w_163,c_limit,fl_progressive,dpr_2.0/assets/images/2023/11/23/3e460c64-852e-469f-927e-802e0d332d0f1700724828469-Shop-By-Category_HP--1-_18.jpg"
                            alt=""></a></li>
            </div>
            <div class="pic-one">
                <li><a href="#"><img
                            src="https://assets.myntassets.com/w_163,c_limit,fl_progressive,dpr_2.0/assets/images/2023/11/23/8ae58ee3-5f49-4ac4-8d4e-dd3fc2c80c241700724828474-Shop-By-Category_HP--1-_19.jpg"
                            alt=""></a></li>
                <li><a href="#"><img
                            src="https://assets.myntassets.com/w_163,c_limit,fl_progressive,dpr_2.0/assets/images/2023/11/23/1a869f0d-ea0a-47cc-aa87-0135660f73db1700724828480-Shop-By-Category_HP--1-_20.jpg"
                            alt=""></a></li>
                <li><a href="#"><img
                            src="https://assets.myntassets.com/w_163,c_limit,fl_progressive,dpr_2.0/assets/images/2023/11/23/fe176c3c-b9c2-4320-a1a5-2a472d6f7c9c1700724828485-Shop-By-Category_HP--1-_21.jpg"
                            alt=""></a></li>
                <li><a href="#"><img
                            src="https://assets.myntassets.com/w_163,c_limit,fl_progressive,dpr_2.0/assets/images/2023/11/23/4b02d260-bc59-43b1-a82d-b7e3b266cfd81700724828490-Shop-By-Category_HP--1-_22.jpg"
                            alt=""></a></li>
                <li><a href="#"><img
                            src="https://assets.myntassets.com/w_163,c_limit,fl_progressive,dpr_2.0/assets/images/2023/11/23/5ac8afbb-f3ef-41db-9c0d-ee43f2fda60e1700724828495-Shop-By-Category_HP--1-_23.jpg"
                            alt=""></a></li>
                <li><a href="#"><img
                            src="https://assets.myntassets.com/w_163,c_limit,fl_progressive,dpr_2.0/assets/images/2023/11/23/22608310-fb3d-448c-9be1-5175a673c8251700724828501-Shop-By-Category_HP--1-_24.jpg"
                            alt=""></a></li>
            </div>
            <div class="pic-one">
                <li><a href="#"><img
                            src="https://assets.myntassets.com/w_163,c_limit,fl_progressive,dpr_2.0/assets/images/2023/11/23/972646b3-c10c-4833-bca9-ab164094692b1700724828506-Shop-By-Category_HP--1-_25.jpg"
                            alt=""></a></li>
                <li><a href="#"><img
                            src="https://assets.myntassets.com/w_163,c_limit,fl_progressive,dpr_2.0/assets/images/2023/11/23/227e9aaa-e4cd-4fa7-bd4f-39b621a468641700724828512-Shop-By-Category_HP--1-_26.jpg"
                            alt=""></a></li>
                <li><a href="#"><img
                            src="https://assets.myntassets.com/f_webp,w_163,c_limit,fl_progressive,dpr_2.0/assets/images/2023/11/23/b614198b-9f72-4cd6-adcb-1f444750987a1700724828517-Shop-By-Category_HP--1-_27.jpg"
                            alt=""></a></li>
                <li><a href="#"><img
                            src="https://assets.myntassets.com/f_webp,w_163,c_limit,fl_progressive,dpr_2.0/assets/images/2023/11/23/32381343-ca7c-47c6-8cf3-ca2885c2db201700724828523-Shop-By-Category_HP--1-_28.jpg"
                            alt=""></a></li>
                <li><a href="#"><img
                            src="https://assets.myntassets.com/w_163,c_limit,fl_progressive,dpr_2.0/assets/images/2023/11/23/aae56ec0-6266-4e11-9ec4-21f73b3ee7a61700724828529-Shop-By-Category_HP--1-_29.jpg"
                            alt=""></a></li>
                <li><a href="#"><img
                            src="https://assets.myntassets.com/f_webp,w_163,c_limit,fl_progressive,dpr_2.0/assets/images/2023/11/23/ae18e9b3-6ee8-4796-a55a-afc573af278b1700724828534-Shop-By-Category_HP--1-_30.jpg"
                            alt=""></a></li>
            </div>
            <div class="pic-one">
                <li><a href="#"><img
                            src="https://assets.myntassets.com/w_196,c_limit,fl_progressive,dpr_2.0/assets/images/2023/11/23/23e46f2c-a7ab-4cde-b3d4-d9a194ab23511700724828540-Shop-By-Category_HP--1-_31.jpg"
                            alt=""></a></li>
                <li><a href="#"><img
                            src="https://assets.myntassets.com/w_196,c_limit,fl_progressive,dpr_2.0/assets/images/2023/11/23/019aa46e-3b51-4312-a615-8ee88afa95471700724828546-Shop-By-Category_HP--1-_32.jpg"
                            alt=""></a></li>
                <li><a href="#"><img
                            src="https://assets.myntassets.com/w_196,c_limit,fl_progressive,dpr_2.0/assets/images/2023/11/23/7b5514bc-9830-4f98-b7e6-1838aec65f1a1700724828552-Shop-By-Category_HP--1-_33.jpg"
                            alt=""></a></li>
                <li><a href="#"><img
                            src="https://assets.myntassets.com/f_webp,w_196,c_limit,fl_progressive,dpr_2.0/assets/images/2023/11/23/46744d51-efff-4b99-9330-d6dfef2eb0db1700724828558-Shop-By-Category_HP--1-_34.jpg"
                            alt=""></a></li>
                <li><a href="#"><img
                            src="https://assets.myntassets.com/w_196,c_limit,fl_progressive,dpr_2.0/assets/images/2023/11/23/3410387d-096b-4dc7-b12f-de5b364966ff1700724828563-Shop-By-Category_HP--1-_35.jpg"
                            alt=""></a></li>
            </div>
            <div class="bannerlast">
                <img src="https://assets.myntassets.com/w_980,c_limit,fl_progressive,dpr_2.0/assets/images/2023/12/7/85320b1d-9e96-4a04-958a-dcbb866d55a41701971522578-App-Install-Banner.jpg"
                    alt="">
            </div>
        </div>
    </section>
    <!-- FOOTER START -->
    <footer class="myntra-footer">
        <div class="four-option-footer">
            <div class="option-one">
                <h5><strong>ONLINE SHOPPING</strong></h5>
                <li><a href=""></a>Home</li>
                <li><a href=""></a>Kids</li>
                <li><a href=""></a>Home & Living</li>
                <li><a href=""></a>Beauty</li>
                <li><a href=""></a>Gift Cards</li>
                <li><a href=""></a>Myntra Insider</li>
                <div class="links">
                    <h5><strong>USEFUL LINKS</strong></h5>
                    <li><a href="">Blog</a></li>
                    <li><a href="">Careers</a></li>
                    <li><a href="">Site Map</a></li>
                    <li><a href="">Corporate Information</a></li>
                    <li><a href="">Whitehat</a></li>
                    <li><a href="">Cleartrip</a></li>
                </div>
            </div>

            <div class="option-two">
                <h5><strong>CUSTOMER POLICIES</strong></h5>
                <li><a href=""></a>Copntact Us</li>
                <li><a href=""></a>FAQ</li>
                <li><a href=""></a>T&C</li>
                <li><a href=""></a>Terms Of Use</li>
                <li><a href=""></a>Track Orders</li>
                <li><a href=""></a>Shipping</li>
                <li><a href=""></a>Cancellation</li>
                <li><a href=""></a>Returns</li>
                <li><a href=""></a>Privacy Policy</li>
                <li><a href=""></a>Grivence Officer</li>
            </div>
            <div class="option-three">
                <div class="option-three-up">
                    <h5><strong>EXPERIENCE MYNTRA APP ON MOBILE</strong></h5>
                    <div class="image-horizontal-div">
                        <div class="gplay">
                            <img src="https://constant.myntassets.com/web/assets/img/80cc455a-92d2-4b5c-a038-7da0d92af33f1539674178924-google_play.png"
                                alt="">
                        </div>
                        <div class="istore">
                            <img src="https://constant.myntassets.com/web/assets/img/bc5e11ad-0250-420a-ac71-115a57ca35d51539674178941-apple_store.png"
                                alt="">
                        </div>
                    </div>
                </div>
                <div class="shoppp">
                    <h5>SHOP FOR</h5>
                    <a href="#">Explore | Men | Women | Home & living</a>
                </div>
                <div class="option-three-down">
                    <h5><strong>KEEP IN TOUCH</strong></h5>
                    <div class="social-icon">
                        <div class="fb">
                            <img src="https://constant.myntassets.com/web/assets/img/d2bec182-bef5-4fab-ade0-034d21ec82e31574604275433-fb.png"
                                alt="">
                        </div>
                        <div class="x">
                            <img src="https://constant.myntassets.com/web/assets/img/f10bc513-c5a4-490c-9a9c-eb7a3cc8252b1574604275383-twitter.png"
                                alt="">
                        </div>
                        <div class="yt">
                            <img src="https://constant.myntassets.com/web/assets/img/a7e3c86e-566a-44a6-a733-179389dd87111574604275355-yt.png"
                                alt="">
                        </div>
                        <div class="insta">
                            <img src="https://constant.myntassets.com/web/assets/img/b4fcca19-5fc1-4199-93ca-4cae3210ef7f1574604275408-insta.png"
                                alt="">
                        </div>
                    </div>
                </div>
                <div class="customerpolicies">
                    <h5>CUSTOMER POLICY</h5>
                    <a href="#">Contact us | FAQ |T&C |Terms of Use | Track Orders | Shipping | Cancellation | Returns |
                        Privacy Policy</a>
                    <style>
                        .customerpolicies h5,
                        .shoppp h5,
                        .fullinks h5 {
                            text-decoration: none;
                            color: #3e4152;
                            font-size: 13px;
                            text-align: left;
                            line-height: 1.7;
                            display: none;
                        }

                        .customerpolicies,
                        .shoppp,
                        .fullinks {
                            font-weight: 500;
                        }

                        .customerpolicies a {
                            margin-left: -120px;
                            text-decoration: none;
                            color: #3e4152;
                            font-size: 13px;
                            display: none;
                            text-align: left;
                            line-height: 1.7;
                        }

                        .shoppp a,
                        .fullinks a {
                            text-decoration: none;
                            display: none;
                            color: #3e4152;
                            font-size: 13px;
                            text-align: left;
                            line-height: 1.7;
                        }
                    </style>
                </div>
                <div class="fullinks">
                    <h5>USEFUL LINKS</h5>
                    <a href="#">BLOG | Careers | Site Map | Corporate Information | Whitehat</a>
                </div>
            </div>
            <div class="option-four">
                <div class="option-four-logo">
                    <div class="orig">
                        <div class="ori-size">
                            <img src="https://constant.myntassets.com/web/assets/img/6c3306ca-1efa-4a27-8769-3b69d16948741574602902452-original.png"
                                alt="">
                        </div>
                        <p><span class="ori-2">100% ORIGINAL</span> guarantee for <br> all products at myntra.com
                        </p>
                    </div>
                    <div class="rep">
                        <div class="rep-size">
                            <img src="https://assets.myntassets.com/assets/images/retaillabs/2023/5/22/becb1b16-86cc-4e78-bdc7-7801c17947831684737106127-Return-Window-image.png"
                                alt="">
                        </div>
                        <p><span class="rep-2">Return within 14days </span>of receiving your order</p>
                    </div>
                </div>
            </div>

        </div>
        <div class="pop-searches">
            <h4><strong>POPULAR SEARCHES</strong></h4>
            <p>Sherwani | Track Pants | Blazers | Sweaters For Men | Men Wedding Dresses | Kurta Pajama | Raincoats
                |
                Shorts Trousers | Waistcoat | Inner Wear | Nightwear | Jeans | Shirts | Jogger Jeans | Men Suits | T
                Shirts Sweatshirts | Jackets For Men | Tracksuits | Ripped Jeans | Ethnic Wear | Hoodies | Raksha
                Bandhan Gifts | Watches | Shoes | Belts Swimwear | Dhotis | Boxers | Vests | Thermals Socks | Shrugs
                |
                Bracelets | Rings Sunglasses | Headphones Wallets Helmets | Caps | Mufflers | Gloves | Ties |
                Cufflinks
                | Men Sandals | Floaters | Flip Flops | Trunks | Bags </p>
        </div>
        <div class="info-section">
            <div class="contact">
                In case of any concern,<span class="blue-contact"> Contact Us</span>
            </div>
            <div class="copyright">
                © 2023 www.myntra.com. All rights reserved.
            </div>
            <div class="flipkartcompany">
                A Flipkart Company
            </div>
        </div>
        <div class="horizontal-line"></div>
        <div class="margin-container">
            <div class="secound-last-footer">
                <h3><strong>MEN’S SHOPPING AT MYNTRA: A SUPERIOR EXPERIENCE</strong></h3>
                <p>Myntra is one of the best sites when it comes to online shopping for men. The finest of material,
                    superior design and unbeatable style go into the making of our men’s shopping collection. Our
                    range
                    of
                    online shopping men’s wear, accessories, footwear and personal care products are second to none.
                    Compared with other men’s shopping sites, Myntra brings you the best price products which won’t
                    hurt
                    your pocket. With seasonal discounts on trendy casual wear, suits, blazers, sneakers and more,
                    online
                    shopping for men at Myntra just gets even more irresistible!</p> <br>
                <h3><strong>ONLINE SHOPPING FOR MEN: OPTIONS UNLIMITED</strong></h3>
                <p>At Myntra, our online shopping fashion for men collection features plenty of options to create
                    multiple
                    outfits. At our men’s online shop we have brought together an exhaustive range of products from
                    the
                    best
                    men’s brands. Here is a list of must-haves from the wide variety of awesome products at Myntra:
                </p>
                <ul>
                    <li>
                        Opt for a charming yet laid-back look with cool <span class="cool">T-shirts</span> and
                        casual
                        shirts
                        worn with stylish jeans,
                        casual trousers or shorts. Stay sharp and sophisticated with our smart options in formal
                        shirts
                        and
                        trousers. Look dapper when meeting your clients in our smooth suits. Put on trendy blazers
                        for
                        formal occasions. On your online men’s clothes’ shopping journey, make sure you include
                        kurtas,
                        jackets and sherwanis from our festive wear collection. Stay warm and comfortable in
                        sweaters
                        and
                        sweatshirts. Get fit and ready for adventure, with our sports and active wear collection.
                    </li>
                    <li>
                        Once you are done with your online men’s clothes’ shopping, make sure you pick up the right
                        accessories to complement your look. Whether you are travelling to work or outside the city
                        our
                        wide
                        variety of bags, backpacks and luggage collection will ensure you are well-packed. Our
                        beautiful
                        watches and smart watches work well to enhance your overall style quotient. Reach out for
                        our
                        sunglasses during the summers – let your eyes stay protected while you opt for maximum swag.
                    </li>
                    <li>Bring impeccable style to your shoe closet with our incredible collection of footwear for
                        men.
                        Look
                        classy during formal and semi-formal occasions with derbies, loafers and oxfords. Stay hip
                        and
                        happening in parties with boat shoes, monks and brogues from our casual men’s footwear
                        range.
                        Lead
                        an active lifestyle with sneakers and running shoes from our sports footwear selection. Pick
                        up
                        sandals, floaters and flip-flops for a trip to the beach. We also host socks in our men’s
                        online
                        shopping collection. That’s basically everything under one roof!</li>
                </ul>
                <p>Make sure you check out fun printed men’s T-shirts featuring your favourite characters from DC
                    Comics
                    and
                    Marvel studios. Relive the magic of your favourite superhero from Justice League. Fly high with
                    Superman, battle the bad guys with Batman, or get trendy in lightning-speed with a Flash
                    T-shirt.
                    Grab
                    our cool Marvel Avengers T-shirts. Stay powered up with the Iron Man, or walk with the warriors
                    in a
                    Thor T-shirt.</p>
                <p>
                    Our online shopping fashion for mens collection includes even more amazing merchandise such as
                    innerwear, sleepwear, track pants, personal care, wallets, belts and other fashion accessories.
                </p>
            </div>
            <div class="last-footer-myntra">
                <h3><strong>MEN’S SHOPPING MADE EASY AT MYNTRA</strong></h3>
                <p>
                    Myntra is the most convenient men’s online store, what with our simplified shopping and payment
                    procedures. With just a few clicks of the mouse or taps on your smartphone, you can buy your
                    favorites
                    from the best men’s brands right away.
                </p>
            </div>
        </div>
    </footer>
</body>

</html>
Crypto Arbitrage Bot are software programs that automate the method of profiting from price discrepancies across crypto exchanges. As the Crypto market get evolves, these trading bots are becoming an increasingly more popular tool for investors seeking to capitalize on short-term inefficiencies in the crypto arena. 

In the economical markets, Arbitrage refers to buy and sell an asset simultaneously in various markets to profit from a price difference. Crypto Arbitrage Bots are programs that execute arbitrage trades automatically across crypto exchanges when profit opportunities arise.

To get detailed version then read the curated guide via >> https://maticz.com/how-to-build-a-crypto-arbitrage-bot
//// Validate if Email field is spam
add_action( 'elementor_pro/forms/validation/email', function( $field, $record, $ajax_handler ) {
    // Looking if email found in spam array, you can add to the array
  $spamemails = array("ericjonesonline@outlook.com", "eric@talkwithwebvisitor.com");
    if ( in_array( $field['value'] , $spamemails) ) {
        $ajax_handler->add_error( $field['id'], 'אנחנו לא אוהבים ספאם, נסו מייל אחר' );
    }
}, 10, 3 );
import java.io.*;

public class FileInputStreamDemo
{
	public static void main(String[] args)
	{   FileInputStream fis = null;
	    try{
			fis = new FileInputStream("FileInputStreamDemo.java");
			System.out.println("Available data: "+fis.available()+
                                   " bytes.");
			int c = fis.read();
			while(c != -1)
			{   System.out.print((char)c);
				c = fis.read();
			}
		}
		catch(IOException ie)
		{ ie.printStackTrace(); }
		finally{
			try
			{   if(fis != null)
					fis.close();
			}
			catch(IOException ie)
			{ ie.printStackTrace(); }
		}		
	}
}

let arr = ["apple", "mango",
          "apple", "orange", "mango", "mango"];
 
function removeDuplicates(arr) {
    let unique = [];
    for (i = 0; i < arr.length; i++) {
        if (unique.indexOf(arr[i]) === -1) {
            unique.push(arr[i]);
        }
    }
    return unique;
}
console.log(removeDuplicates(arr));
int length(Node *head)
{
	//Write your code here
    int c = 0;
    Node *temp = head;
    while(temp != NULL)
    {
        temp = temp->next;
        c++;
    }
    return c;
}
star

Thu Dec 14 2023 11:42:09 GMT+0000 (Coordinated Universal Time) https://stackoverflow.com/questions/69294670/how-to-merge-2-pdf-in-mpdf-using-php-laravel

@zaryabmalik #php

star

Thu Dec 14 2023 10:58:25 GMT+0000 (Coordinated Universal Time) https://www.geeksforgeeks.org/javascript-array-reduce-method/

@mdfaizi

star

Thu Dec 14 2023 10:01:37 GMT+0000 (Coordinated Universal Time)

@ishwarshinde041 #html

star

Thu Dec 14 2023 09:45:52 GMT+0000 (Coordinated Universal Time)

@ishwarshinde041 #html

star

Thu Dec 14 2023 09:18:04 GMT+0000 (Coordinated Universal Time)

@ishwarshinde041 #html

star

Thu Dec 14 2023 09:00:45 GMT+0000 (Coordinated Universal Time)

@ishwarshinde041 #html

star

Thu Dec 14 2023 08:02:25 GMT+0000 (Coordinated Universal Time)

@ishwarshinde041 #html

star

Thu Dec 14 2023 07:34:11 GMT+0000 (Coordinated Universal Time)

@alfred555 #react.js

star

Thu Dec 14 2023 07:33:05 GMT+0000 (Coordinated Universal Time)

@alfred555 #react.js

star

Thu Dec 14 2023 07:26:20 GMT+0000 (Coordinated Universal Time)

@manhmd

star

Thu Dec 14 2023 06:46:00 GMT+0000 (Coordinated Universal Time)

@nistha_jnn #c++

star

Thu Dec 14 2023 06:32:45 GMT+0000 (Coordinated Universal Time)

@nistha_jnn #c++

star

Thu Dec 14 2023 06:23:05 GMT+0000 (Coordinated Universal Time)

@nistha_jnn #c++

star

Thu Dec 14 2023 05:38:37 GMT+0000 (Coordinated Universal Time) https://stackoverflow.com/questions/69838068/how-to-get-an-image-from-directus

@Vexel_CM

star

Thu Dec 14 2023 05:38:32 GMT+0000 (Coordinated Universal Time) https://stackoverflow.com/questions/69838068/how-to-get-an-image-from-directus

@Vexel_CM

star

Thu Dec 14 2023 05:38:18 GMT+0000 (Coordinated Universal Time) https://stackoverflow.com/questions/69838068/how-to-get-an-image-from-directus

@Vexel_CM

star

Thu Dec 14 2023 05:38:13 GMT+0000 (Coordinated Universal Time) https://stackoverflow.com/questions/69838068/how-to-get-an-image-from-directus

@Vexel_CM

star

Thu Dec 14 2023 05:38:05 GMT+0000 (Coordinated Universal Time) https://stackoverflow.com/questions/69838068/how-to-get-an-image-from-directus

@Vexel_CM

star

Thu Dec 14 2023 05:37:37 GMT+0000 (Coordinated Universal Time) undefined

@Vexel_CM

star

Thu Dec 14 2023 04:57:51 GMT+0000 (Coordinated Universal Time) https://www.programiz.com/c-programming/online-compiler/

@jatin

star

Thu Dec 14 2023 04:57:39 GMT+0000 (Coordinated Universal Time) https://www.programiz.com/c-programming/online-compiler/

@jatin

star

Thu Dec 14 2023 04:53:40 GMT+0000 (Coordinated Universal Time) https://www.w3schools.com/js/tryit.asp?filename

@iamdpace #undefined

star

Wed Dec 13 2023 23:47:17 GMT+0000 (Coordinated Universal Time) https://qiita.com/12345/items/97ba616d530b4f692c97

@isopet

star

Wed Dec 13 2023 22:58:39 GMT+0000 (Coordinated Universal Time)

@vjg #javascript

star

Wed Dec 13 2023 22:31:41 GMT+0000 (Coordinated Universal Time) https://github.com/vitejs/vite/discussions/3396

@bcjacob

star

Wed Dec 13 2023 19:39:36 GMT+0000 (Coordinated Universal Time)

@chicovirabrikin #nodejs

star

Wed Dec 13 2023 19:04:47 GMT+0000 (Coordinated Universal Time)

@shirnunn

star

Wed Dec 13 2023 19:01:32 GMT+0000 (Coordinated Universal Time) https://www.wpbeginner.com/wp-tutorials/how-to-restore-the-get-shortlink-button-in-wordpress/#create-shortlink-button-with-code

@i10anniavanti

star

Wed Dec 13 2023 13:49:26 GMT+0000 (Coordinated Universal Time)

@rahulkhandelwal

star

Wed Dec 13 2023 13:40:24 GMT+0000 (Coordinated Universal Time)

@rahulkhandelwal

star

Wed Dec 13 2023 13:04:46 GMT+0000 (Coordinated Universal Time) https://jsbin.com/heqeqejila/edit?html,output

@MissRedwine #undefined

star

Wed Dec 13 2023 12:56:28 GMT+0000 (Coordinated Universal Time)

@rahulkhandelwal

star

Wed Dec 13 2023 10:34:32 GMT+0000 (Coordinated Universal Time)

@abdul_rehman #c

star

Wed Dec 13 2023 10:13:49 GMT+0000 (Coordinated Universal Time) https://fairoaksrecoverycenter.com/wp-admin/edit.php?post_type

@Pulak

star

Wed Dec 13 2023 09:39:20 GMT+0000 (Coordinated Universal Time) https://www.twilio.com/docs/verify

@Spsypg #python

star

Wed Dec 13 2023 09:39:10 GMT+0000 (Coordinated Universal Time) https://www.twilio.com/docs/verify

@Spsypg #python

star

Wed Dec 13 2023 09:37:46 GMT+0000 (Coordinated Universal Time) https://www.twilio.com/docs/verify

@Spsypg #rb

star

Wed Dec 13 2023 09:37:27 GMT+0000 (Coordinated Universal Time) https://www.twilio.com/docs/verify

@Spsypg #rb

star

Wed Dec 13 2023 09:35:38 GMT+0000 (Coordinated Universal Time) https://www.twilio.com/docs/verify

@Spsypg

star

Wed Dec 13 2023 09:07:37 GMT+0000 (Coordinated Universal Time)

@davidmchale #javascript #dummy

star

Wed Dec 13 2023 08:39:36 GMT+0000 (Coordinated Universal Time)

@davidmchale #javascript #array #dummy

star

Wed Dec 13 2023 07:55:11 GMT+0000 (Coordinated Universal Time)

@saa_adit

star

Wed Dec 13 2023 07:54:39 GMT+0000 (Coordinated Universal Time)

@saa_adit

star

Wed Dec 13 2023 07:18:39 GMT+0000 (Coordinated Universal Time) https://maticz.com/how-to-build-a-crypto-arbitrage-bot

@jamielucas #drupal

star

Wed Dec 13 2023 07:13:24 GMT+0000 (Coordinated Universal Time) https://codepen.io/snorkltv/pen/XWOwmJR??editors=0010

@passoul

star

Wed Dec 13 2023 06:57:25 GMT+0000 (Coordinated Universal Time)

@vikas

star

Wed Dec 13 2023 06:33:53 GMT+0000 (Coordinated Universal Time)

@dsce

star

Wed Dec 13 2023 05:44:47 GMT+0000 (Coordinated Universal Time)

@sooraz3871

star

Wed Dec 13 2023 04:29:22 GMT+0000 (Coordinated Universal Time)

@abhitan #c++

Save snippets that work with our extensions

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