Skip to content

Instantly share code, notes, and snippets.

View profoundhub's full-sized avatar

Daniel profoundhub

View GitHub Profile
@profoundhub
profoundhub / index.html
Created December 14, 2017 06:54
Leonardo Da Vinci Tribute Page
<head>
<meta charset="utf-8">
<title>Da Vinici's Tribute Page</title>
<link rel="stylesheet" href="css/style.css">
<link href='https://fonts.googleapis.com/css?family=Oleo+Script' rel='stylesheet' type='text/css'>
</head>
<body>
<span id="Welcome"></span>
<div class="container">
<nav class="navbar navbar-inverse navbar-fixed-top">
anonymous
anonymous / index.html
Created January 10, 2017 01:05
Personal Portfolio WebPage
<html lang="en">
<head>
<title>Daniel Lim</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="navbar navbar-default navbar-fixed-top">
@segfly
segfly / .gitconfig
Last active April 26, 2016 15:35
Git aliases and other configurations I like to apply to Cloud 9 workspaces
###### BEGIN Entries from http://git.io/vO5fH
[core]
# Allows the C9 editor to be used for git
# editor = c9 --wait
# Forces output direct to C9 terminal
pager = cat && echo
[alias]
# Visualize log. Thanks to http://stackoverflow.com/a/9074343
lg1 = log --graph --abbrev-commit --decorate --date=relative --format=format:'%w(120)%C(bold blue)%h%C(reset) %C(bold yellow)(%ar)%C(reset) %C(auto)%s%C(reset) %C(dim white)- %an%C(reset)%C(auto)%d%C(reset)' --all