Skip to content

Instantly share code, notes, and snippets.

View Ajinkgupta's full-sized avatar
:octocat:
Learning

Ajink Gupta Ajinkgupta

:octocat:
Learning
View GitHub Profile
@Ajinkgupta
Ajinkgupta / Card.css
Created April 5, 2024 12:09
React Card with glasmorphism
.column-container {
padding-top: 100px!important;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding: 10px;
}
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
<!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/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
</head>
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('');
@Ajinkgupta
Ajinkgupta / 01swapusingthirdvariable.c
Created April 23, 2022 05:37
Swapping of two numbers c code
//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);