Skip to content

Instantly share code, notes, and snippets.

View dhanusir's full-sized avatar

Dhanu Sir dhanusir

View GitHub Profile
@dhanusir
dhanusir / rodhi-artists.json
Created October 16, 2025 08:19
Rodhi Artists Information
[{ Name: "Budh Ram Gurung", Years: 3 },{ Name: "Yuvraj", Years: 2 },{ Name: "Nithya", Years: 5 }]
@dhanusir
dhanusir / sum.rb
Created July 20, 2024 06:23
sum in Ruby
def sum(a, b)
a + b
end
@dhanusir
dhanusir / git-githib-notes.md
Created October 17, 2023 12:45
Git and GitHub notes

Git and GitHub

Introduction to Version Control System(VCS)

What is VCS?

  • Tracks and manages changes to software code, files, documents, or other collections of information over time
  • It helps to recall specific versions later.
  • Helps software development teams to manage the changes happening to source code over time
@dhanusir
dhanusir / using-details-summary-github.md
Created June 1, 2023 05:18 — forked from scmx/using-details-summary-github.md
Using <details> <summary> expandable content on GitHub with Markdown #details #summary #markdown #gfm #html

How to use <details> <summary> expandable content on GitHub with Markdown

Firstly, what is <details> <summary>?

The HTML Details Element (<details>) creates a disclosure widget in which information is visible only when the widget is toggled into an "open" state. A summary or label can be provided using the <summary> element. https://developer.mozilla.org/en-US/docs/Web/HTML/Element/details.

Example