Skip to content

Instantly share code, notes, and snippets.

View rshan1515's full-sized avatar

Shan181818 rshan1515

View GitHub Profile
@rshan1515
rshan1515 / .gitignore
Created December 25, 2025 08:46 — forked from octocat/.gitignore
Some common .gitignore configurations
# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so
# Packages #
<button type="button", id="click">Click for a Name</button>
<div id="response"></div>
<script src="nameme.js"></script>
<script>
var button = document.getElementById('click');
var div = document.getElementById('response');
button.addEventListener('click', function () {
nameMe().then(function (r) {
div.innerText = r;
});