This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.column-container { | |
padding-top: 100px!important; | |
display: flex; | |
flex-wrap: wrap; | |
justify-content: space-between; | |
padding: 10px; | |
} | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl -fsSL https://pkg.jenkins.io/debian-stable/jenkins.io-2023.key | sudo tee \/usr/share/keyrings/jenkins-keyring.asc > /dev/null | |
Then add a Jenkins apt repository entry: second command:- | |
echo deb [signed-by=/usr/share/keyrings/jenkins-keyring.asc] \ | |
https://pkg.jenkins.io/debian-stable binary/ | sudo tee \ | |
/etc/apt/sources.list.d/jenkins.list > /dev/null | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Dictionary App</title> | |
<!-- Include Tailwind CSS --> | |
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet"> | |
</head> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { useState, useEffect } from 'react'; | |
import { ethers } from 'ethers'; | |
import { QRCodeCanvas } from "qrcode.react"; | |
import { randomBytes } from 'ethers/lib/utils'; | |
function App() { | |
const [haveMetamask, sethaveMetamask] = useState(true); | |
const [accountAddress, setAccountAddress] = useState(''); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//using third variable | |
#include<stdio.h> | |
#include<conio.h> | |
void main () | |
{ | |
int a,b,c; | |
printf("\n\nEnter two numbers : \n"); | |
scanf("%d%d",&a,&b); | |
printf("Before swapping......\n"); | |
printf("a= %d\n",a); |