Skip to content

Instantly share code, notes, and snippets.

View Andrew-devcoder's full-sized avatar
💭
Open to job opportunities

Andrew Kovpak Andrew-devcoder

💭
Open to job opportunities
View GitHub Profile
@Eyakub
Eyakub / REAMDE.md
Last active May 11, 2024 20:05
A complete cheatsheet of README.md

Markdown Cheatsheet


Heading 1

Markup :  # Heading 1 #

-OR-

@adhithyan15
adhithyan15 / countdown.js
Last active May 10, 2024 09:35
A simple countdown timer in Javascript
/********************************************************************************************************************
Countdown.js is a simple script to add a countdown timer
for your website. Currently it can only do full minutes
and partial minutes aren't supported. This script is a fork of http://jsfiddle.net/HRrYG/ with some
added extensions. Since the original code that I forked was released under Creative Commons by SA license,
I have to release this code under the same license. You can view a live demo of this code at http://jsfiddle.net/JmrQE/2/.
********************************************************************************************************************/
function countdown(minutes) {
var seconds = 60;
var mins = minutes