Skip to content

Instantly share code, notes, and snippets.

View mitya-borodin's full-sized avatar
:octocat:
I work remotely.

Borodin Dmitry mitya-borodin

:octocat:
I work remotely.
View GitHub Profile
@mitya-borodin
mitya-borodin / timezones
Created April 28, 2023 08:51 — forked from ykessler/timezones
HTML list of time zones (Based on Olson tz database)
<select name="timezone" >
<option disabled selected style='display:none;'>Time Zone...</option>
<optgroup label="US (Common)">
<option value="America/Puerto_Rico">Puerto Rico (Atlantic)</option>
<option value="America/New_York">New York (Eastern)</option>
<option value="America/Chicago">Chicago (Central)</option>
<option value="America/Denver">Denver (Mountain)</option>
<option value="America/Phoenix">Phoenix (MST)</option>
<option value="America/Los_Angeles">Los Angeles (Pacific)</option>
@mitya-borodin
mitya-borodin / Rename git branch
Last active September 26, 2019 07:09 — forked from stuart11n/gist:9628955
rename git branch locally and remotely
git branch -m old_branch new_branch # Rename branch locally
git push --delete origin old_branch # Delete the old branch
git push --set-upstream origin new_branch # Push the new branch, set local branch to track the new remote
@mitya-borodin
mitya-borodin / multiple_ssh_setting.md
Last active April 15, 2024 13:38 — forked from jexchan/multiple_ssh_setting.md
Multiple SSH keys for different github accounts