Skip to content

Instantly share code, notes, and snippets.

@avelops
avelops / gist_to_github_repo.md
Created July 30, 2023 20:26 — forked from ishu3101/gist_to_github_repo.md
Transfer a gist to a GitHub repository

Transfer a gist to a GitHub repository

clone the gist

git clone https://gist.github.com/ishu3101/6fb35afd237e42ef25f9

rename the directory

mv 6fb35afd237e42ef25f9 ConvertTo-Markdown

change the working directory to the newly renamed directory

cd ConvertTo-Markdown

@avelops
avelops / index.html
Last active July 30, 2023 20:14
PoxxraX
<body>
<div id="display">
<div id="dices">
<div id="diceOne" class="dice">0</div>
<div id="diceTwo" class="dice">0</div>
</div>
<button id="btnRoll">Roll Dice</button>
@avelops
avelops / index.html
Created July 30, 2023 19:41
jquery events
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>jQuery Tutorial</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.0/jquery.min.js"></script>
</head>
<body>
<h1 class="header">jQuery Tutorial</h1>