Snippets Collections
// index.js
const express = require("express");
const bodyParser = require("body-parser");
var mysql = require("mysql");

const app = express();
const port = 3000;

app.use(bodyParser.json());

var con = mysql.createConnection({
  host: "localhost",
  user: "jevin",
  password: "2090",
  // database: "testDB",
});

con.connect(function (err) {
  if (err) {
    console.error("Error connecting to MySQL:", err);
    return;
  } else {
    console.log("Connected!");
    con.query("CREATE DATABASE IF NOT EXISTS todolist", function (err, result) {
      if (err) throw err;
      con.query("USE todolist", function (err, result) {
        if (err) throw err;
      });
      console.log("Database created");
    });
  }
});
// const notes =  getNotes()
// console.log(notes);

app.get('/tasks', (req, res) => {
  // Retrieve tasks from the database
  con.query('SELECT * FROM tasks', (err, results) => {
    if (err) {
      console.error('Error fetching tasks:', err);
      res.status(500).json({ error: 'Internal Server Error' });
    } else {
      res.json(results);
    }
  });
});

app.post('/tasks', (req, res) => {
  const { title, description } = req.body;

  // Insert a new task into the database
  con.query(`INSERT INTO tasks (title, description) VALUES (?, ?)`, [title, description], (err, results) => {
    if (err) {
      console.error('Error adding task:', err);
      res.status(500).json({ error: 'Internal Server Error' });
    } else {
      res.json({ id: results.insertId, title, description });
    }
  });
});

app.put('/tasks/:id', (req, res) => {
  const taskId = req.params.id;
  const { title, description } = req.body;

  // Update the task in the database
  con.query('UPDATE tasks SET title = ?, description = ? WHERE id = ?', [title, description, taskId], (err, results) => {
    if (err) {
      console.error('Error updating task:', err);
      res.status(500).json({ error: 'Internal Server Error' });
    } else if (results.affectedRows === 0) {
      res.status(404).json({ error: 'Task not found' });
    } else {
      res.json({ id: taskId, title, description });
    }
  });
});

// // Start the server
app.listen(port, () => {
  console.log(`Server is running on http://localhost:${port}`);
});
#include <stdio.h>

int main()
{
    int i, j; 
    for(i = 1; i <= 3; i++)
    {
        for(j = 1; j <= i; j++)
        {
            printf("%d", j); 
        }
        printf("\n"); 
    }

    return 0;
}
#include <stdio.h>
#include <conio.h>
#include <dos.h>

int main()
{
    clrscr();
    gotoxy(30, 10);
    
    printf("▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓");
    
    gotoxy(30, 14);
    
    printf("▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓");
    
    gotoxy(35, 12 );
    printf("Hello World");
    
    getch();
    return 0;
}
#include<stdio.h>
void main()
{
    int a[10][10],b[10][10],c[10][10],r1,c1,r2,c2,r3,c3,i,j,k;
    printf("enter no.of row and colums of matrix a\n");
    scanf("%d%d",&r1,&c1);
    printf("enter no.of row and colums of matrix b\n");
    scanf("%d%d",&r2,&c2);
    if(r1==c2&&c1==r2)
    {
    printf("enter elements of 1st matrix\n");
    for(i=0;i<r1;i++)
    {
    for(j=0;j<c1;j++)
    {
    scanf("%d",&a[i][j]);
    }
    }
    printf("enter elements of 2nd matrix\n");
    for(i=0;i<r2;i++)
    {
    for(j=0;j<c2;j++)
    {
    scanf("%d",&b[i][j]);
    }
    }
    r3=r1;
    c3=c2;
    for(i=0;i<r3;i++)
    {
        for(j=0;j<c3;j++)
        {
            c[i][j]=0;
            for (k=0;k<r3;k++)
            {
                c[i][j]=c[i][j]+a[i][k]*b[k][j];
            }
        }
    }
    for(i=0;i<r3;i++)
    {
    for(j=0;j<c3;j++)
    {
    printf("%d ",c[i][j]);
    }
    printf("\n");
    }
    
}
}
let i = 1;

let num = 5;

do {
  console.log(i);
  i++;
  
} while 
  (i <= num);
public static string AsTimeAgo(this DateTime dateTime)
{
  TimeSpan timeSpan = DateTime.Now.Subtract(dateTime);

  return timeSpan.TotalSeconds switch
  {
    <= 60 => $"{timeSpan.Seconds} seconds ago",

    _ => timeSpan.TotalMinutes switch
    {
      <= 1 => "about a minute ago",
      < 60 => $"about {timeSpan.Minutes} minutes ago",
      _ => timeSpan.TotalHours switch
      {
        <= 1 => "about an hour ago",
        < 24 => $"about {timeSpan.Hours} hours ago",
        _ => timeSpan.TotalDays switch
        {
          <= 1 => "yesterday",
          <= 30 => $"about {timeSpan.Days} days ago",

          <= 60 => "about a month ago",
          < 365 => $"about {timeSpan.Days / 30} months ago",

          <= 365 * 2 => "about a year ago",
          _ => $"about {timeSpan.Days / 365} years ago"
        }
      }
    }
  };
}
#include<stdio.h>

int main(){

    int num,i,count,n;
    printf("Enter max range: ");
    scanf("%d",&n);

    for(num = 1;num<=n;num++){

         count = 0;

         for(i=2;i<=num/2;i++){
             if(num%i==0){
                 count++;
                 break;
             }
        }
        
         if(count==0 && num!= 1)
             printf("%d ",num);
    }
  
   return 0;
}
Conveyor.DecisionPoint current = ownerobject(c);
Object item = param(1);
Conveyor conveyor = param(2);
Conveyor.Item conveyorItem = conveyor.itemData[item];
/**send Item*/

// 1. send item by percentage
if(bernoulli(30, 1, 0)){
	Conveyor.sendItem(item, current.outObjects[1]);
}


// 2. send item by item type (label)
Array dpArray = current.outObjects.toArray();
//int itemType = item.Type;
for (int index = 1; index <= dpArray.length; index++){
	if(item.Type == index){
		Conveyor.sendItem(item, current.outObjects[index]);
	}
}

// 3. same as previous but shorter

Conveyor.sendItem(item, current.outObjects[item.Type]);
#include<stdio.h>
void main()
{
   int n,i,count=0;
   scanf("%d",&n);
   for(i=2;i<=n/2;i++)
   {
       if (n%i==0)
       {
           count=1;
           break;
           
       }
   }
   if(count==0)
   {
       printf("prime");
   }
   else 
   {
       printf("non prime");
   }
}
jQuery(document).ready(function($) {
  var fieldSelector = '.fn_froala_front textarea';
  var froalaActivationKey = 'vYA6mA5C4C4I4I4B9A8eMRPYf1h1REb1BGQOQIc2CDBREJImA11C8D6E6B1G4H3F2H3A8=='; 

  if (typeof FroalaEditor !== 'undefined') {
    $(fieldSelector).each(function() {
      new FroalaEditor(this, {
        // Add your Froala editor options here
        key: froalaActivationKey,
        zIndex: 99999,
        attribution: false,
        charCounterCount: false,
        toolbarInline: true,
        placeholderText: 'Type something beautiful...',
        toolbarVisibleWithoutSelection: true,
        quickInsertEnabled: false,
        dragInline: false,
        imageUploadURL: 'https://forestnation.com/upload.php',
        imageEditButtons: ['imageReplace', 'imageAlign', 'imageDisplay', 'imageStyle', 'imageRemove'],
        imageInsertButtons: ['imageBack', '|', 'imageUpload', 'imageByURL'],
        imageStyles: {
          fnFrImgShadow: 'Shadow',
          fnFrImgBackBlur: 'Background Blur'
        },
        fontSizeDefaultSelection: '20',
        fontFamily: {
          "Roboto,sans-serif": 'Roboto',
          "Oswald,sans-serif": 'Oswald',
          "Montserrat,sans-serif": 'Montserrat',
          "'Open Sans Condensed',sans-serif": 'Open Sans',
          'Arial,Helvetica,sans-serif': 'Arial',
          'Georgia,serif': 'Georgia', 'Impact,Charcoal,sans-serif': 'Impact',
          'Tahoma,Geneva,sans-serif': 'Tahoma',
          "'Times New Roman',Times,serif": 'Times New Roman',
          'Verdana,Geneva,sans-serif': 'Verdana'
        },
        fontFamilySelection: true,
        linkInsertButtons: ['linkBack'],
        paragraphStyles: {
          fnFrPclasskaraoke1: 'karaoke 1',
          fnFrPclassGreenBack: 'Green Back',
          fnFrPclassWhiteBack: 'White Back',
          fnFrPclassBlackBack: 'Black Back',
          fnFrPclassTransparency: 'Transparent Back'
        },
        toolbarButtons: {
          'moreText': {
            'buttons': ['align', 'fontSize', 'textColor', 'backgroundColor', 'bold', 'italic', 'underline', 'fontFamily'],
            'buttonsVisible': 4
          },
          'moreRich': {
            'buttons': ['insertImage', 'insertLink', 'emoticons', 'paragraphStyle'],
            'buttonsVisible': 0
          },
        }
      });
    });

    if (typeof acf !== 'undefined') {
      acf.addAction('append', function($el) {
        $el.find(fieldSelector).each(function() {
          new FroalaEditor(this, {
            // Add your Froala editor options here
            key: froalaActivationKey,
            zIndex: 99999,
            attribution: false,
            charCounterCount: false,
            toolbarInline: false,
            placeholderText: 'Type something beautiful...',
            toolbarVisibleWithoutSelection: true,
            quickInsertEnabled: false,
            dragInline: false,
            imageUploadURL: 'https://forestnation.com/upload.php',
            imageEditButtons: ['imageReplace', 'imageAlign', 'imageDisplay', 'imageRemove'],
            imageInsertButtons: ['imageBack', '|', 'imageUpload', 'imageByURL'],
            fontSizeDefaultSelection: '20',
            linkInsertButtons: ['linkBack'],
            paragraphStyles: {
              fnFrPclasskaraoke1: 'karaoke 1',
              fnFrPclassGreenBack: 'Green Back',
              fnFrPclassWhiteBack: 'White Back',
              fnFrPclassBlackBack: 'Black Back',
              fnFrPclassTransparency: 'Transparent Back'
            },
            toolbarButtons: {
              'moreText': {
                'buttons': ['align', 'fontSize', 'textColor', 'backgroundColor', 'bold', 'italic', 'underline', 'fontFamily'],
                'buttonsVisible': 4
              },
              'moreRich': {
                'buttons': ['insertImage', 'insertLink', 'emoticons', 'paragraphStyle'],
                'buttonsVisible': 0
              },
            }
          });
        });
      });
    }
  }

  // Add the new code here
  // Function to convert RGB to hex within the editor content
  function rgbToHex(rgbColor) {
    const rgb = rgbColor.match(/\d+/g);
    const hex = rgb.map(x => parseInt(x).toString(16).padStart(2, '0')).join('');
    return `#${hex}`;
  }
  
  // Function to convert RGB to hex within the editor content
function convertRgbToHex(editor) {
  const elements = editor.$el[0].querySelectorAll('[style*="rgb("]');

  elements.forEach((element) => {
      const style = element.getAttribute('style');
      const updatedStyle = style.replace(/rgb\(\d+,\s?\d+,\s?\d+\)/g, (rgbColor) => rgbToHex(rgbColor));
      element.setAttribute('style', updatedStyle);
  });

  // Update the editor's content state
  editor.html.set(editor.$el[0].innerHTML);
}


  // Add the event listener to all submit buttons
  const submitButtons = document.querySelectorAll('.acf-button.froalaconvertRgbToHex');

  submitButtons.forEach((button) => {
    button.addEventListener('click', () => {
      // Loop through all Froala editor instances on the page
      FroalaEditor.INSTANCES.forEach((editorInstance) => {
        // Convert RGB to hex for each instance
        convertRgbToHex(editorInstance);
      });
    });
  });
});
#include <stdio.h>
int binary(int);
int main() {
   int num,bin;
   printf("enter a decimal number:");
   scanf("%d",&num);
   bin=binary(num);
   printf("the binary rquivalent of %d %d",num,bin);
   
}
int binary(int num)
{
    if(num==0)
    {
        return 0;
    
    }
    else 
    {
        return (num%2)+10*binary(num/2);
    }
}
function search() {
  matchingMembers.value = props.story.content.members.filter((member) => {
    return (
      member.tags.some((tag) => {
        return tag.text.toLowerCase().includes(query.value.toLowerCase());
      }) ||
      member.name.toLowerCase().includes(query.value.toLowerCase()) ||
      member.role.toLowerCase().includes(query.value.toLowerCase()) ||
      member.description.toLowerCase().includes(query.value.toLowerCase()) ||
      member.desk.toLowerCase().includes(query.value.toLowerCase())
    );
  });
}
https://filetransfer.io/data-package/7DTAA9aK#link

https://filetransfer.io/data-package/No4U22go#link
https://filetransfer.io/data-package/flYoUGD7#link 

https://community.dynamics.com/forums/thread/details/?threadid=58f9c824-d2d0-4f21-b47b-28550390329c

https://www.dynamicsuser.net/t/how-to-create-purchase-agreement-via-job/60843/2

https://filetransfer.io/data-package/syh2BNQi#link

"AccountNumber": "PNJ01",
   "D_VALN_AS_OF": "2022-06-30 00:00:00.0",
     "T_DTL_DESC": "EWTP ARABIA TECHONLOGY INNOVATION FUND ILP",
       "N-INV-SUB-CATG": "Partnerships",
         "Asset Super Category Name": "Venture Capital and Partnerships",
           "A_ADJ_BAS_BSE": "47947573",
             "A_UNRL_MKT_GNLS": "50275681",
               "ProprietarySymbol": "993FD3998",
              
              
              86e7ad1e-c84f-438a-a309-cd1216565dab 

"Success": "True",
    "Error": "",
    "results": [
        {
            "ID": 88,
            "LASTNAME": "Duhaish                                                         ",
            "FIRSTNAME": "Hamad                                                           ",
            "MIDNAME": "                                ",
            "SSNO": "27079        ",
            "DAYNAME": "Sunday         ",
            "DAYNUM": 23,
            "MONTHNAME": "June           ",
            "MONTHNUM": 6,
            "QUARTER": 2,
            "YEAR": 2024,
            "DATE": "2024-06-23",
            "ATTENDANCESTATUS": 1,
            "TIMEIN": "09:02:32",
            "DATETIMEIN": "2024-06-23 09:02:32.0",
            "TIMEOUT": "16:48:18",
            "DATETIMEOUT": "2024-06-23 16:48:18.0",
            "NUMBEROFTIMEIN": 2,
            "NUMBEROFTIMEOUT": 1,
            "WEEKEND": 0,
            "EARLYACCESSIN": 0,
            "EARLYACCESSINHOURS": 0.00,
            "LATEACCESSIN": 0,
            "LATEACCESSOUT": 0,
            "LATEACCESSOUTHOURS": 0.00,
            "EARLYACCESSOUT": 0,
            "TOTALHOURS": 7.77,
            "ACTUALTOTALWORKINGHOURS": 7.77,
            "RECID": null
        },
        {
            "ID": 88,
            "LASTNAME": "Duhaish                                                         ",
            "FIRSTNAME": "Hamad    


https://filetransfer.io/data-package/QFOWGJiY#link
[3:31 PM] Ahmed Saadeldin
IBAN = SA0380000000608010167519
 
[3:31 PM] Ahmed Saadeldin
Account Num = 000000608010167519
 
[3:31 PM] Ahmed Saadeldin
SABBSARI 
 
https://filetransfer.io/data-package/e6Y8IQRT#link
https://filetransfer.io/data-package/n9iLVidY#link
https://filetransfer.io/data-package/yzmQNeGK#link
https://filetransfer.io/data-package/NuQIKmYd#link
https://usnconeboxax1aos.cloud.onebox.dynamics.com/api/services/NW_AttachementServiceGroup/NW_AttatchementService/getAttachment
?cmp=shc&mi=sysclassrunner&cls=NW_UpdateVendTrans
public void processReport()
    {
        NW_GeneralContract              contract;
        PurchTable                      PurchTable;
        PurchLine                       PurchLine;
        //LOGISTICSELECTRONICADDRESS      LOGISTICSELECTRONICADDRESS;
        VendTable                       VendTable;
        DirPartyTable                   DirPartyTable;
        PurchTotals                 PurchTotals;
        HcmWorker                   HcmWorker;
        //DLVMODE DLVMODE;
        //PURCHREQTABLE PURCHREQTABLE;
        //DlvTerm                     DlvTerm;
        //VENDPAYMMODETABLE VENDPAYMMODETABLE;
        //PAYMTERM PAYMTERM;
        //PURCHRFQCASETABLE PURCHRFQCASETABLE;
        //PURCHREQLINE PURCHREQLINE,PURCHREQLINESelected;
        //LOGISTICSPOSTALADDRESS LOGISTICSPOSTALADDRESS;
        //VendPurchOrderJour VendPurchOrderJour;
        //LOGISTICSLOCATION LOGISTICSLOCATION;
        //DIRPARTYLOCATION DIRPARTYLOCATION;
        //TaxOnItem TaxOnItem;
        //TAXDATA TAXDATA;
        contract = this.parmDataContract() as NW_GeneralContract;
    
        select PurchTable
           where PurchTable.RecId == contract.parmRecordId();
       
        while select PurchLine where PurchLine.PurchId == PurchTable.PurchId
        {   
            PurchTableTmp.clear();

            PurchTableTmp.PurchId = PurchTable.PurchId;
            PurchTableTmp.DeliveryDate = PurchTable.DeliveryDate;
            PurchTableTmp.PurchName = PurchTable.PurchName;
            PurchTableTmp.Payment = PurchTable.Payment;
            PurchTableTmp.AdditionalNotes = PurchTable.AdditionalNotes;

            PurchTableTmp.PURCHQTY = PurchLine.PURCHQTY;
            PurchTableTmp.PURCHPRICE = PurchLine.PURCHPRICE;
            PurchTableTmp.LINEPERCENT = PurchLine.LINEPERCENT;
            PurchTableTmp.PurchUnit = PurchLine.PurchUnit;
            PurchTableTmp.LineAmount = PurchLine.LineAmount;
            PurchTableTmp.NameDescription = PurchLine.itemName();

            HcmWorker = HcmWorker::find(PurchTable.Requester);
            PurchTableTmp.Requester = HcmWorker.name();
            PurchTableTmp.RequesterAdd = HcmWorker.primaryAddress();
            PurchTableTmp.RequesterPhone = HcmWorker.phone();
            PurchTableTmp.RequesterDep = PurchTable.DepartmentName();

            VendTable = VendTable::find(PurchTable.OrderAccount);
            PurchTableTmp.Phone = VendTable.phone();
            PurchTableTmp.Email = VendTable.email();
            PurchTableTmp.VendName = PurchTable.PurchName;
            PurchTableTmp.Fax = PurchTable.NonPrimaryVendPhone();
            PurchTableTmp.Termnote = PurchTable.ContcatPersonName();
            PurchTableTmp.Warranty = PurchTable.Warranty;

            PurchTotals = PurchTotals::newPurchTable(PurchTable);
            PurchTotals.calc();

            PurchTableTmp.SubTotal = PurchTotals.purchBalance(); // sub
            PurchTableTmp.Total = PurchTotals.purchTotalAmount(); // total
            PurchTableTmp.Currency = PurchTotals.purchCurrency();
            PurchTableTmp.VAT = PurchTotals.taxTotal();
            PurchTableTmp.TotalTxt = numeralsToTxt(PurchTableTmp.Total);
            PurchTableTmp.SubTotalTxt = numeralsToTxt(PurchTableTmp.SubTotal);
            PurchTableTmp.TaxCode = any2Str((PurchTableTmp.VAT / PurchTableTmp.SubTotal)*100);
            //select PURCHREQTABLE where PURCHREQTABLE.PURCHREQID==PURCHLINE.PURCHREQID;
            //Select  DLVMODE where DLVMODE.CODE==PURCHREQTABLE.DLVMODE;
            //Select  DlvTerm where DlvTerm.Code == PurchTable.DlvTerm;

            //Select  VENDPAYMMODETABLE  where VENDPAYMMODETABLE.PAYMMODE==PURCHREQTABLE.PAYMMODE;
            //Select  PAYMTERM where PAYMTERM.PAYMTERMID==PURCHREQTABLE.PAYMENT;

            PurchTableTmp.DlvModeTxt = DlvMode::find(PurchTable.DlvMode).Txt;
            PurchTableTmp.DlvTermTxt = DlvTerm::find(PurchTable.DlvTerm).Txt;
            //PurchTableTmp.PayModeName=VENDPAYMMODETABLE.NAME;
            PurchTableTmp.PAYTERMNAME = PaymTerm::find(PurchTable.Payment).DESCRIPTION;
            //PurchTableTmp.Termnote=PURCHREQTABLE.termsnote;
            PurchTableTmp.Address = CompanyInfo::find().postalAddress().Address;

            //select PURCHREQLINE where PURCHREQLINE.PURCHREQTABLE == PURCHREQTABLE.RECID;
            //select PURCHRFQCASETABLE where PURCHRFQCASETABLE.RFQCASEID == PURCHREQLINE.PURCHRFQCASEID;

            //PurchTableTmp.RFQCASEID=PURCHRFQCASETABLE.RFQCASEID;

            //select PURCHREQLINESelected where PURCHREQLINESelected.LINEREFID==PURCHLINE.PURCHREQLINEREFID;
            //PurchTableTmp.Name=PURCHREQLINESelected.ITEMIDNONCATALOG;
            //PurchTableTmp.NameDescription=PURCHREQLINESelected.ITEMIDNONCATALOG + ' - ' + PURCHREQLINESelected.NAME;
            //PurchTableTmp.Currency=PURCHREQLINESelected.CurrencyCode;



            //Select  firstonly VendPurchOrderJour   where VendPurchOrderJour.purchid==PURCHTABLE.purchid;
            //PurchTableTmp.DateConf=VendPurchOrderJour.PurchOrderDate;

            //Select LOGISTICSPOSTALADDRESS where PURCHTABLE.DELIVERYPOSTALADDRESS==LOGISTICSPOSTALADDRESS.RECID;

            //PurchTableTmp.ShipingAddress=LOGISTICSPOSTALADDRESS.ADDRESS;

            //select DIRPARTYTABLE where VENDTABLE::find(PurchTable.OrderAccount).PARTY==DIRPARTYTABLE.RECID;
            //select DIRPARTYLOCATION  where DIRPARTYTABLE.RECID == DIRPARTYLOCATION.PARTY;
            //select  LOGISTICSLOCATION where DIRPARTYLOCATION.LOCATION == LOGISTICSLOCATION.RECID;
            //select LOGISTICSPOSTALADDRESS where LOGISTICSPOSTALADDRESS.Location==LOGISTICSLOCATION.RECID;

            //PurchTableTmp.VendAdress=LOGISTICSPOSTALADDRESS.Address;

            //select TaxOnItem where TaxOnItem.TAXITEMGROUP==PURCHLINE.TaxItemGroup;

            //select TAXDATA where TAXDATA.TAXCODE==TAXONITEM.TAXCODE
            //    && TAXDATA.TAXFROMDATE<=PURCHTABLE.ACCOUNTINGDATE && TAXDATA.TAXTODATE>=PURCHTABLE.ACCOUNTINGDATE;

           
            PurchTableTmp.insert();

                
        }


        
    }
System.debug('Password: '+InternalPasswordGenerator.generateNewPassword('userId'));
slider.addEventListener('mousedown', (e) => {
      isDown = true;
      startX = e.pageX - slider.offsetLeft;
      scrollLeft = slider.scrollLeft;
    });
    slider.addEventListener('mouseleave', () => {
      isDown = false;
    });
    slider.addEventListener('mouseup', () => {
      isDown = false;
    });
    slider.addEventListener('mousemove', (e) => {
      if(!isDown) return;
      e.preventDefault();
      const x = e.pageX - slider.offsetLeft;
      const walk = (x - startX) * 1;
      slider.scrollLeft = scrollLeft - walk;
    });
// Avia Layout Builder in custom post types

function avf_alb_supported_post_types_mod( array $supported_post_types )
{
  $supported_post_types[] = 'case_studies';
  return $supported_post_types;
}
add_filter('avf_alb_supported_post_types', 'avf_alb_supported_post_types_mod', 10, 1);

function avf_metabox_layout_post_types_mod( array $supported_post_types )
{
 $supported_post_types[] = 'case_studies';
 return $supported_post_types;
}
add_filter('avf_metabox_layout_post_types', 'avf_metabox_layout_post_types_mod', 10, 1);
class Table 
{
    public synchronized void printtable(int n)
    {
        for(int i=1;i<=10;i++)
        {
            System.out.println(n+"X"+i+"="+(n*i));
        }
    }
}
class Thread1 extends Thread
{
    Table t;
    Thread1(Table t)
    {
        this.t=t;
    }
    public void run()
    {
        t.printtable(5);
    }
}
class Thread2 extends Thread
{
    Table t;
    Thread2(Table t)
    {
        this.t=t;
    }
    public void run()
    {
        t.printtable(7);
    }
}

class D
{
    public static void main(String[] args)
    {
        Table r= new Table();
        
        Thread1 t1= new Thread1(r);
        Thread2 t2= new Thread2(r);
        
        t1.start();
        t2.start();
    }
}
// The following code can provide you a generic way to update a table when you only have the tableId.
public Common findRecord(TableId _tableId, RecId _recId, Boolean _forUpdate = false)
{
    Common      common;
    DictTable   dictTable;
    ;
    dictTable = new DictTable(_tableId);
    common = dictTable.makeRecord();
 
    common.selectForUpdate(_forUpdate);
 
    select common
    where common.RecId == _recId;
 
    return common;
}

// If you want, you can even update fields in this common record. You can Access/edit these fields by using their Name or FieldNum. The method below will update a specific field in a table.

public void updateValue(TableId _tableId, RecId _recId, str _field, AnyType _value)
{
    Common      common;
    Int         fieldId;
    ;
    ttsbegin;
    common = findRecord(_tableId, _recId, true);
    fieldId = fieldname2id(_tableId,_field);
 
    if (fieldId &amp;&amp; _value)
    {
        common.(fieldId) = _value;
        common.update();
    }
    ttscommit;
}
public class NW_ContractRenewalServiceEntity extends common
{
    /// <summary>
    ///
    /// </summary>
    public void postLoad()
    {
        DocuRef     DocuRef;
        DocuValue   DocuValue;
        NW_ContractRequest NW_ContractRequest;
        super();
        changecompany('SHC')
        {
            select DocuRef
                where DocuRef.RefRecId == this.ContractRecId
                && DocuRef.RefTableId == tableNum(NW_ContractRenewalRequest);

            //select DocuValue where DocuValue.RecId == DocuRef.ValueRecId;
            if(DocuRef)
            {
                //DocuRef docuref;
                //ITSGetFileFromDocMgmtInVariousFormats runnable = ITSGetFileFromDocMgmtInVariousFormats::construct();
                //runnable.readfromDocuRefAttachments(docuref);
                //BitMap fileContents =  DocumentManagement::getAttachmentAsContainer(DocuRef);
                //str fileBase64Str = con2base64str(fileContents);
                BinData BinData;
                using(System.IO.Stream fileStream = DocumentManagement::getAttachmentStream(DocuRef))
                {
                    using(System.IO.MemoryStream memoryStream = new System.IO.MemoryStream())
                    {
                        fileStream.CopyTo(memoryStream);
                        this.Attach = System.Convert::ToBase64String(memoryStream.ToArray());
                    }
                }
              // or use this.Attach = DocuRef.getFileContentAsBase64String() insted of the above code from "ElectronicReporting" model
                this.FileName = DocuRef.filename();
                this.FileType = DocuRef.fileType();
            }
        }
    }

}
Run alpine docker gradely

docker build -f build/deploy/Dockerfile -t main-api .

docker run -p 8081:8080 main-api

Execute sql script

docker exec -i gradely-db mysql -u gradely -ptoor main < questions.sql
lazy_tbl %>% dplyr::mutate(last_month = my_date + months(-1))

# using lubridate doesn't work
class Bus extends Thread
{
    int available = 1;
    int passenger;

    Bus(int passenger)
    {
        this.passenger=passenger;
    }

    public synchronized void run()
    {
        String n = Thread.currentThread().getName();
        if (available >= passenger)
        {
            System.out.println(n + " seat reserved");
            available = available-passenger;
        }
        else
        {
            System.out.println("Seat not reserved");
        }
    }
}

class D
{
    public static void main(String[] args)
    {
        Bus bus = new Bus(1);

        Thread a = new Thread(bus);
        Thread s = new Thread(bus);
        Thread z = new Thread(bus);

        a.setName("raju");
        z.setName("rahul");
        s.setName("om");

        a.start();
        z.start();
        s.start();
    }
}
RewriteEngine On
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]

ErrorDocument 403     /cgi-sys/403_def.html

ErrorDocument 404     /cgi-sys/404_def.html

ErrorDocument 500     /cgi-sys/500_def.html

ErrorDocument 502     /cgi-sys/502_def.html

ErrorDocument 503     /cgi-sys/503_def.html

ErrorDocument 504     /cgi-sys/504_def.html
pip3 install numpy --pre torch --force-reinstall --index-url https://download.pytorch.org/whl/nightly/cu117
import React from 'react';

const ParentComponent = () => {
  const parentStyle = {
    position: 'relative',
    width: '300px', // Set the width of the parent div
    height: '200px', // Set the height of the parent div
    border: '1px solid #ccc', // Optional: Just for visualization
  };

  const childStyle = {
    position: 'absolute',
    top: '50%',
    left: '50%',
    transform: 'translate(-50%, -50%)',
  };

  return (
    <div style={parentStyle}>
      <div style={childStyle}>
        {/* Your content goes here */}
        <p>This is a centered absolute component</p>
      </div>
    </div>
  );
};

export default ParentComponent;
class S extends Thread
{
    public void run()
    {
        System.out.println(Thread.currentThread().getName());
        System.out.println(Thread.currentThread().getPriority());
    }
     
        
    
}
class F 
{
    public static void main(String[] args)
    {
        S t= new S();
        S r= new S();
        S y= new S();

        t.setName("Thread 1");
        r.setName("Thread 2");
        y.setName("Thread 3");

        t.setPriority(10);
        r.setPriority(6);
        y.setPriority(7);

        t.start();
        r.start();
        y.start();
    }
    
}
import User from "@/models/User";
import connectDb from "@/middleware/connectDb";

const handler = async (req, res) => {
  console.log(req.body);
  if(req.method == 'POST'){
    // Queries
    res.status(200).send({msg:"Success"})
  }
  else{
    res.status(400).send({msg:"Bad Request"})
  }
}
export default connectDb(handler);
TypeScript allows developers to add  to JavaScript.
class A extends Thread
{
    public void run()
    {
        try
        {
            for(int i=1;i<=5;i++)
            {
                System.out.println("okay boss");
                Thread.sleep(1000);
            }
        }
        catch(Exception m)
        {
            System.out.println("some eror");
        }
    }
}
class F 
{
    public static void main(String[] args)
    {
        A r= new A();

        r.start();
        r.interrupt();
    }
}
selector .elementor-heading-title{
    width: 100%;
   white-space: nowrap;
   animation: slideRightToLeft 40s linear infinite;
   
}


@keyframes slideRightToLeft {
   0% {
      transform: translateX(-106%);
   }
   100% {
      transform: translateX(106%);
   }
}
selector .elementor-heading-title{
    width: 100%;
   white-space: nowrap;
   animation: slideRightToLeft 40s linear infinite;
   
}


@keyframes slideRightToLeft {
   0% {
      transform: translateX(106%);
   }
   100% {
      transform: translateX(-106%);
   }
}
import { useLocation } from "react-router-dom";

const ProfileTwo = () => {
  const location = useLocation();
  const data = location.state;

  return (
    <div>
      <p>Name: {data.name}</p>
      <p>Age: {data.age}</p>
      Hello
    </div>
  );
};

export default ProfileTwo;
import { useNavigate } from "react-router-dom";

const ProfileOne = () => {
  const navigate = useNavigate();
  const data = { name: "John", age: 30 };

  const handleClick = () => {
    navigate("/profile-two", { state: data });
  };

  return <button onClick={handleClick}>Go to ProfileTwo</button>;
};

export default ProfileOne;
zip -r myfiles.zip mydir
// importing
import ReactPaginate from 'react-paginate';

// handling the pagination
const [page, setPage] = useState(0);
const handlePageClick = (num) => {
  setPage(num);
};

// fetching all the employee details from the mongoDB database
const [loadedEmployees, setLoadedEmployees] = useState();
useEffect(() => {
  const fetchEmployees = async () => {
    try {
      const responseData = await sendRequest(
        `http://localhost:5000/api/employees/emp?page=${page}`
      );
      setLoadedEmployees(responseData.employees);
    } catch (err) {
      console.log("Error in fetching employees: "+err);
    }
  };
  fetchEmployees();
}, [sendRequest, page]);


// returning this component
<ReactPaginate
  containerClassName="flex gap-2 justify-center mt-4"
  pageClassName="text-gray-500"
  activeClassName="text-gray-900 border-2 border-black px-2"
  previousClassName="text-gray-500"
  nextClassName="text-gray-500"
  breakLabel="..."
  nextLabel="next >"
  onPageChange={(selected) => handlePageClick(selected.selected + 1)}
  pageRangeDisplayed={2}
  marginPagesDisplayed={1}
  pageCount={pageCount}
  previousLabel="< previous"
  renderOnZeroPageCount={null}
/>



// backend - controller methods
const getEmployeeCount = async (req, res, next) => {
  let employeeCount;
  try {
    employeeCount = await Employee.countDocuments();
  } catch (err) {
    const error = new HttpError(
      'Fetching employee count failed, please try again later.',
      500
    );
    return next(error);
  }

  res.json({ employeeCount });
  console.log("DEBUG -- Employee-Controller - Fetching employee count successful!");
};
const getEmployees = async (req, res, next) => {
  const page = req.query.page || 0;
  const employeesPerPage = 2; 

  let allEmployees;
  try {
    allEmployees = await Employee
      .find()
      .skip(page * employeesPerPage)
      .limit(employeesPerPage);
  } catch (err) {
    const error = new HttpError(
      'Fetching Employees failed, please try again later.',
      500
    );
    return next(error);
  }

  if (!allEmployees || allEmployees.length === 0) {
    return next(new HttpError('No employees found.', 404));
  }

  res.json({
    employees: allEmployees.map((emp) => emp.toObject({ getters: true })),
  });
  console.log("DEBUG -- Employee-Controller - Fetching employees successful!");
};
import tkinter as tk
from tkinter import messagebox
import webbrowser

num_assignments = 0
assignment_grades = []  
assignment_totals = []

def ordinal(n):
    return "%d%s" % (n,"tsnrhtdd"[(n//10%10!=1)*(n%10<4)*n%10::4])

html_link = "https://freetutoringcenter.com/"  

def center_window(window):
    window.update_idletasks()
    width = window.winfo_width()
    height = window.winfo_height()
    x = (window.winfo_screenwidth() // 2) - (width // 2)
    y = (window.winfo_screenheight() // 2) - (height // 2)
    window.geometry('{}x{}+{}+{}'.format(width, height, x, y))

def open_link():
    webbrowser.open(html_link)

def calculate_grade():
    global num_assignments
    num_assignments = int(num_assignments_entry.get())
    for i in range(0, num_assignments, 1):
        total_window = tk.Toplevel(root)
        total_window.geometry("450x50")
        center_window(total_window)
        total_text = tk.Entry(total_window, width=50)
        total_text.pack()
        total_text.insert(0, f'Points possible for the {ordinal(i + 1)} assignment')

        def submit_total(event=None):
            total = int(total_text.get())
            if total < 0:
                raise ValueError("Total must be non-negative.")
            assignment_totals.append(total)
            total_window.destroy()

        def clear_text(event):
            total_text.delete(0,'end')

        total_text.bind('<FocusIn>', clear_text)  # Clear text when the widget is clicked
        total_text.bind('<Return>', submit_total)  # Submit total when Enter is pressed

        submit_button = tk.Button(total_window, text="Submit Total", command=submit_total)
        submit_button.pack()
        total_window.wait_window()  

        grade_window = tk.Toplevel(root)
        grade_window.geometry("450x50")
        center_window(grade_window)
        grade_text = tk.Entry(grade_window, width=50)
        grade_text.pack()
        grade_text.insert(0, f'Grade received on the {ordinal(1 + i)} assignment')

        def submit_grade(event=None):
            grade = int(grade_text.get())
            if grade < 0:
                raise ValueError("Grade must be non-negative.")
            if grade > assignment_totals[i]:
                raise ValueError("Grade cannot be greater than total.")
            assignment_grades.append(grade)
            grade_window.destroy()

        def clear_grade_text(event):
            grade_text.delete(0,'end')

        grade_text.bind('<FocusIn>', clear_grade_text)  # Clear text when the widget is clicked
        grade_text.bind('<Return>', submit_grade)  # Submit grade when Enter is pressed

        submit_button = tk.Button(grade_window, text="Submit Grade", command=submit_grade)
        submit_button.pack()
        grade_window.wait_window()

    assignment_totals_received = sum(assignment_grades)
    assignment_totals_possible = sum(assignment_totals)
    if assignment_totals_possible != 0:
        assignment_percent = (assignment_totals_received / assignment_totals_possible) * 100
    else:
        assignment_percent = 0

    result_window = tk.Toplevel(root)
    result_window.geometry("600x300")
    center_window(result_window)
    result_label = tk.Label(result_window, text='You have completed {:.0f} so far in this course.\nThe total points received on the {:.0f} assignments is {:.0f} points, out of the {:.0f} points possible.'.format(num_assignments, num_assignments, assignment_totals_received, assignment_totals_possible))
    result_label.pack(pady=10)

    if assignment_percent > 90 and assignment_percent <= 100:
        result_text = f"The grade you received was a {assignment_percent}% so far. You should be happy with an A; however, if not visit {html_link}."
    elif assignment_percent > 80 and assignment_percent <= 90:
        result_text = f"The grade you received so far in the course was a {assignment_percent}%. You should be happy with a B; however, if not review this website {html_link}."
    elif assignment_percent > 70 and assignment_percent <= 80:
        result_text = f'The grade received so far in the class was a {assignment_percent}%. You should raise your C by visiting {html_link}.'
    elif assignment_percent > 60 and assignment_percent <= 70:
        result_text = f'Your current grade is {assignment_percent}%, which is a D. You can raise your grade by visiting {html_link}.'
    else:
        result_text = f'You got an F with a low grade of {assignment_percent}%. You should immediately visit {html_link} and start to study.'

    result_message = tk.Message(result_window, text=result_text)
    result_message.pack(pady=10)

    open_link_button = tk.Button(result_window, text="Open Link", command=open_link)
    open_link_button.pack(pady=10)

root = tk.Tk()
root.geometry("800x800")
center_window(root)

num_assignments_label = tk.Label(root, text="How many assignments have been completed in the class so far?")
num_assignments_label.pack()

num_assignments_entry = tk.Entry(root)
num_assignments_entry.pack()

calculate_button = tk.Button(root, text="Calculate Grade", command=calculate_grade)
calculate_button.pack()

root.mainloop()
class A extends Thread
{
    public void run()
    {
        System.out.println("is alive moment ");
    }
}
class F 
{
    public static void main(String[] args)
    {
        A r= new A();
        A p= new A();

        r.start();
        System.out.println(r.isAlive());
        p.start();
        System.out.println(p.isAlive());
    }
}
UPDATE tbl_lab_setup_Test_Control 
SET Test_Blank_Result_Flag = 0 
WHERE
	Test_Code IN (
	SELECT
		tbl_lab_setup_Test.Test_Code 
	FROM
		dbo.tbl_lab_setup_Test_Control
		INNER JOIN dbo.tbl_lab_setup_Test ON tbl_lab_setup_Test_Control.Test_Code = tbl_lab_setup_Test.Test_Code 
	WHERE
		tbl_lab_setup_Test_Control.Test_Blank_Result_Flag = '1' 
	AND tbl_lab_setup_Test.Test_Group_Code = 'CH' 
	);
class A extends Thread
{
    public void run()
    {
        String n=Thread.currentThread().getName();
        
            for(int i=1;i<+5;i++)
            {
                System.out.println(n);
                
                
            }
    }
}
class P extends Thread
{
    public void run()
    {
        String n=Thread.currentThread().getName();
        
            for(int i=1;i<+5;i++)
            {
                System.out.println(n);
                
               
                
            }
    }
}

class F
{
    public static void main(String[] args)
    {
        A r = new A();
        P t = new P();

        r.setName("thread n");
        t.setName("thread m");

        r.start();
        r.stop();
        t.start();
    }
}
class A extends Thread
{
    public void run()
    {
        String n=Thread.currentThread().getName();
        
            for(int i=1;i<+5;i++)
            {
                System.out.println(n);
                
                
            }
    }
}
class P extends Thread
{
    public void run()
    {
        String n=Thread.currentThread().getName();
        
            for(int i=1;i<+5;i++)
            {
                System.out.println(n);
                Thread.yield();
               
                
            }
    }
}

class F
{
    public static void main(String[] args)
    {
        A r = new A();
        P t = new P();

        r.start();
        t.start();
    }
}
class A extends Thread
{
    public void run()
    {
        String n=Thread.currentThread().getName();
        try
        {
            for(int i=1;i<+5;i++)
            {
                System.out.println(n);
                
            }
        }
        catch(Exception a)
            {
                
            }
}
}

class F
{
    public static void main(String[] args)
    {
        A r= new A();
        A t= new A();
        A y= new A();

        r.setName("Thread 1");
        t.setName("Thread 2");
        y.setName("Thread 3");

        r.start();
        
        t.start();
        t.suspend();

        y.start();
        t.resume();
       
    }
}
public static str base64FromData(container _data)
    {
        str base64;
 
        Bindata bindata;
        if(_data!=conNull())
        {
            bindata = new bindata();
 
            bindata.setData(_data);
 
            base64 = bindata.base64Encode();
        }
 
        return base64;
 
    }
class A extends Thread
{
    public void run()
    {
        String n=Thread.currentThread().getName();
        try
        {
            for(int i=1;i<+5;i++)
            {
                System.out.println(n);
                
            }
        }
        catch(Exception a)
            {
                
            }
}
}

class F
{
    public static void main(String[] args)
    {
        A r= new A();
        A t= new A();
        A y= new A();

        r.setName("Thread 1");
        t.setName("Thread 2");
        y.setName("Thread 3");

        t.start();
        try
        {
            t.join();
        }
        catch(Exception m)
        {

        }
        r.start();
        y.start();
    }
}
public class NW_AttachmentAPIHelper
{
    public static void AttachFileFromAPI(Filename _fileName , str _attachment , TableId _tableID , Recid _recid)
    {
        System.Byte[]    reportBytes = new System.Byte[0]();
        reportBytes = System.Convert::FromBase64String(_attachment);
        System.IO.Stream      stream = new System.IO.MemoryStream(reportBytes);
        DocumentManagement::attachFile(_tableID, _recid, curExt(),  DocuType::typeFile(),stream,
            System.IO.Path::GetFileName(_fileName),
            System.Web.MimeMapping::GetMimeMapping(_fileName),
            System.IO.Path::GetFileNameWithoutExtension(_fileName));
    }

}
public class NW_AttachFileHelper
{
    public static void UploadFileBase64(str _base64, TableId _refTableId, RecId _refRecId, str _filename,str _TypeId = 'File', str _fileExtension = "pdf")
    {
        DocuRef Ref;
        DocuValue Value;
        //System.Byte[]    reportBytes = new System.Byte[0]();
        //reportBytes = System.Convert::FromBase64String(_base64);
        //System.IO.Stream      stream = new System.IO.MemoryStream(reportBytes);
        //DocumentManagement::attachFile(_refTableId, _refRecId, curExt(),  DocuType::typeFile(),stream,
        //    System.IO.Path::GetFileName(_fileName),
        //    System.Web.MimeMapping::GetMimeMapping(_fileName),
        //    System.IO.Path::GetFileNameWithoutExtension(_fileName));

             //DocumentManagement::attachFile(
             //   _tableId,
             //   _recId,
             //   _dataAreaId,
             //   DocuType::typeFile(),
             //   memoryStream,
             //   System.IO.Path::GetFileName(_fileName),
             //   System.Web.MimeMapping::GetMimeMapping(_fileName),
             //   System.IO.Path::GetFileNameWithoutExtension(_fileName));
        str Path, filePath;
        BinData binData;
        filePath = System.IO.Path::GetTempPath(); //Get temp path
        Path = filePath + _filename + '.' + _fileExtension;

        ttsBegin;
        Value.clear();
        binData = new binData();
        Value.File = BinData::loadFromBase64(_base64);
        Value.Name = _filename;
        Value.FileName = _filename;
        Value.FileType = _fileExtension;
        Value.OriginalFileName = _filename +"." + _fileExtension;
       // Value.Path = Path;
        Value.insert(); // insert into DB
        if (Value.RecId)
        {
            Ref.clear();
            Ref.RefRecId = _refRecid;
            Ref.RefTableId = _refTableId;
            Ref.RefCompanyId = curext();
            Ref.Name = _filename;
            Ref.TypeId = _TypeId;
            Ref.ValueRecId = Value.RecId;

            Ref.insert();
        }
        ttsCommit;
    }

}
star

Wed Jan 24 2024 09:26:19 GMT+0000 (Coordinated Universal Time)

@Jevin2090

star

Wed Jan 24 2024 04:20:38 GMT+0000 (Coordinated Universal Time)

@pvignesh

star

Wed Jan 24 2024 02:46:50 GMT+0000 (Coordinated Universal Time)

@kervinandy123 #c

star

Wed Jan 24 2024 01:09:16 GMT+0000 (Coordinated Universal Time)

@pvignesh

star

Tue Jan 23 2024 22:17:02 GMT+0000 (Coordinated Universal Time)

@Sephjoe

star

Tue Jan 23 2024 21:52:16 GMT+0000 (Coordinated Universal Time)

@Sephjoe

star

Tue Jan 23 2024 18:11:04 GMT+0000 (Coordinated Universal Time)

@abhikash01

star

Tue Jan 23 2024 14:51:23 GMT+0000 (Coordinated Universal Time)

@pvignesh

star

Tue Jan 23 2024 14:34:57 GMT+0000 (Coordinated Universal Time)

@FlexSimGeek #flexscript #dp #conveyor

star

Tue Jan 23 2024 13:52:57 GMT+0000 (Coordinated Universal Time)

@pvignesh

star

Tue Jan 23 2024 13:50:38 GMT+0000 (Coordinated Universal Time)

@FOrestNAtion

star

Tue Jan 23 2024 13:42:53 GMT+0000 (Coordinated Universal Time)

@hardikraja #commandline #git #pdf

star

Tue Jan 23 2024 13:08:33 GMT+0000 (Coordinated Universal Time) undefined

@mdfaizi

star

Tue Jan 23 2024 11:22:58 GMT+0000 (Coordinated Universal Time)

@Paloma #js

star

Tue Jan 23 2024 11:14:10 GMT+0000 (Coordinated Universal Time)

@MinaTimo

star

Tue Jan 23 2024 10:11:55 GMT+0000 (Coordinated Universal Time)

@atsigkas #apex #java

star

Tue Jan 23 2024 10:01:23 GMT+0000 (Coordinated Universal Time)

@Pirizok

star

Tue Jan 23 2024 09:50:46 GMT+0000 (Coordinated Universal Time) https://www.zakmedios.com/

@aman123 ##corporate ##video

star

Tue Jan 23 2024 09:50:08 GMT+0000 (Coordinated Universal Time)

@omnixima #javascript #php

star

Tue Jan 23 2024 09:13:19 GMT+0000 (Coordinated Universal Time)

@E23CSEU1151 #java

star

Tue Jan 23 2024 08:51:31 GMT+0000 (Coordinated Universal Time)

@MinaTimo

star

Tue Jan 23 2024 08:34:39 GMT+0000 (Coordinated Universal Time)

@MinaTimo

star

Tue Jan 23 2024 05:50:15 GMT+0000 (Coordinated Universal Time)

@IfedayoAwe

star

Mon Jan 22 2024 21:11:20 GMT+0000 (Coordinated Universal Time) https://conundrumer.com/facets/

@spekz369

star

Mon Jan 22 2024 20:56:16 GMT+0000 (Coordinated Universal Time)

@vs #r

star

Mon Jan 22 2024 17:39:33 GMT+0000 (Coordinated Universal Time)

@E23CSEU1151 #java

star

Mon Jan 22 2024 12:39:15 GMT+0000 (Coordinated Universal Time) https://www.myhomenishada.co.in:2083/cpsess2736258669/frontend/jupiter/filemanager/showfile.html?file

@sandeepv

star

Mon Jan 22 2024 11:40:27 GMT+0000 (Coordinated Universal Time) https://pytorch.org/get-started/pytorch-2.0/#requirements

@odaat_detailer

star

Mon Jan 22 2024 11:12:16 GMT+0000 (Coordinated Universal Time)

@2018331055

star

Mon Jan 22 2024 10:51:34 GMT+0000 (Coordinated Universal Time)

@E23CSEU1151 #java

star

Mon Jan 22 2024 10:42:02 GMT+0000 (Coordinated Universal Time)

@Hritujeet

star

Mon Jan 22 2024 09:43:30 GMT+0000 (Coordinated Universal Time) https://www.w3schools.com/typescript/exercise.php?filename

@esmeecodes

star

Mon Jan 22 2024 09:34:49 GMT+0000 (Coordinated Universal Time)

@E23CSEU1151 #java

star

Mon Jan 22 2024 06:58:37 GMT+0000 (Coordinated Universal Time) https://dgtool.co.il/אנימציית-גלילה-בטקסט/

@chen

star

Mon Jan 22 2024 06:58:34 GMT+0000 (Coordinated Universal Time) https://dgtool.co.il/אנימציית-גלילה-בטקסט/

@chen

star

Mon Jan 22 2024 05:00:37 GMT+0000 (Coordinated Universal Time) https://dev.to/esedev/how-to-pass-and-access-data-from-one-route-to-another-with-uselocation-usenavigate-usehistory-hooks-1g5m

@KhanhDu #javascript

star

Mon Jan 22 2024 05:00:23 GMT+0000 (Coordinated Universal Time) https://dev.to/esedev/how-to-pass-and-access-data-from-one-route-to-another-with-uselocation-usenavigate-usehistory-hooks-1g5m

@KhanhDu #javascript

star

Mon Jan 22 2024 03:53:21 GMT+0000 (Coordinated Universal Time)

@diptish

star

Sun Jan 21 2024 21:31:29 GMT+0000 (Coordinated Universal Time) https://chat.openai.com/?__cf_chl_tk

@eziokittu #react.js #javascript #nodejs

star

Sun Jan 21 2024 20:27:23 GMT+0000 (Coordinated Universal Time)

@jrray

star

Sun Jan 21 2024 17:02:12 GMT+0000 (Coordinated Universal Time)

@E23CSEU1151 #java

star

Sun Jan 21 2024 16:45:59 GMT+0000 (Coordinated Universal Time)

@HUMRARE7 #ilink

star

Sun Jan 21 2024 12:40:03 GMT+0000 (Coordinated Universal Time)

@E23CSEU1151 #java

star

Sun Jan 21 2024 12:21:40 GMT+0000 (Coordinated Universal Time)

@E23CSEU1151 #java

star

Sun Jan 21 2024 12:09:02 GMT+0000 (Coordinated Universal Time)

@E23CSEU1151 #java

star

Sun Jan 21 2024 11:12:02 GMT+0000 (Coordinated Universal Time)

@MinaTimo

star

Sun Jan 21 2024 11:11:51 GMT+0000 (Coordinated Universal Time)

@E23CSEU1151 #java

star

Sun Jan 21 2024 11:08:23 GMT+0000 (Coordinated Universal Time)

@MinaTimo

star

Sun Jan 21 2024 11:06:54 GMT+0000 (Coordinated Universal Time)

@MinaTimo

Save snippets that work with our extensions

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