Skip to content

Instantly share code, notes, and snippets.

View Klemart3D's full-sized avatar

Klemart3D Klemart3D

View GitHub Profile
@Klemart3D
Klemart3D / index.php
Created February 28, 2019 16:46
Renamable separator bookmark for Firefox
<!doctype html>
<?php
$isHorz = (@$_GET['t'] == 'horz');
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Firefox Renamable Bookmarks Separator</title>
<link rel="icon" href="<?php echo $isHorz ? 'horz' : 'vert'; ?>-favicon.ico" type="image/x-icon">
@Klemart3D
Klemart3D / FromGithubToBitbucket.txt
Last active July 13, 2017 03:16
Transfer repo from Github to Bitbucket
# Invert ref from : https://gist.github.com/mandiwise/5954bbb2e95c011885ff
cd $HOME/code/repo-directory
git remote rename origin github
git remote add origin https://Klemart3D@bitbucket.org/Klemart3D/awesome-new-repo.git
git push -u origin master
...
git remote rm github