Skip to content

Instantly share code, notes, and snippets.

View aleksblago's full-sized avatar

Aleks Blagojevich aleksblago

View GitHub Profile

Hexadecimal Clock

A simple clock written in JavaScript where the numerical value for the hours, minutes, and seconds represent the hexadecimal value of the background.

A Pen by Aleks Blagojevich on CodePen.

License.

@aleksblago
aleksblago / Date-Select-Markup.html
Last active September 3, 2023 04:04
Markup: Select options for Month, Day, and Year.
<span>
<select name="month">
<option value="01">January</option>
<option value="02">February</option>
<option value="03">March</option>
<option value="04">April</option>
<option value="05">May</option>
<option value="06">June</option>
<option value="07">July</option>
<option value="08">August</option>
@aleksblago
aleksblago / .gitconfig
Last active January 7, 2023 08:57
Git config settings
[user]
name = Aleks Blagojevich
[alias]
# Lists all local branches
b = branch
# Lists all remote and local branchces
ba = branch -a
c = commit
# Commit with a message
cm = commit -m