Skip to content

Instantly share code, notes, and snippets.

View shaan360's full-sized avatar
🙂
Coding in peace

Shaan M Khan shaan360

🙂
Coding in peace
View GitHub Profile
anonymous
anonymous / index.html
Created October 4, 2012 09:50
A tribute to the best fucking series in the world. Just some CSS and SVG. I created the SVG from the original Logo with Photoshop (path) and Illustrator (SVG). The making of: http://timpietrusky.com/breaking-bad-logo The original Logo is © by Ameri
<!--
Breaking Bad
A tribute to the best fucking series in the world.
Just some CSS and SVG. I created the SVG from the original Logo with
Photoshop (path) and Illustrator (SVG).
The original Logo is © by American Movie Classics Company LLC.
@thomaspark
thomaspark / subnav.css
Last active April 27, 2025 16:39
Subnav for Bootstrap 2
section {
padding-top: 60px;
}
.subnav {
margin-bottom: 60px;
width: 100%;
height: 36px;
background-color: #eeeeee; /* Old browsers */
background-repeat: repeat-x; /* Repeat the gradient */
anonymous
anonymous / index.html
Created July 29, 2013 12:53
A CodePen by Cameron Baney. Twitter Widget - Dribbble rebound of Edwin Delgado's original shot Fonts are a little different because I did not have webfont access to Segoe
<div class="twitter-widget">
<div class="header cf">
<a href="http://twitter.com/kayrel" target="_blank" class="avatar"><img src="http://cameronbaney.com/codepen/twitter-widget/avatar.jpg" alt="Edwin Delgado"></a>
<h2>Edwin Delgado @kayrel</h2>
<p>I do not recall how I came into existence.<br>Something to do with my dad and mom.</p>
</div>
<div class="stats cf">
<a href="#" class="stat">
<strong>1,250</strong>
tweets
@asugai
asugai / Install composer on Amazon AMI running on EC2
Last active May 14, 2024 15:14
Install composer on Amazon AMI running on EC2
$ cd ~
$ sudo curl -sS https://getcomposer.org/installer | sudo php
$ sudo mv composer.phar /usr/local/bin/composer
$ sudo ln -s /usr/local/bin/composer /usr/bin/composer
then you can run
$ sudo composer install
@suvozy
suvozy / Setup.md
Last active December 28, 2022 07:43
Setup AWS EC2 and RDS (php5.5, apache2.4, mysql5.5, phpmyadmin)
@jonkwheeler
jonkwheeler / RevealText.js
Last active May 2, 2024 05:46
React: Animation component using GSAP's SplitText plugin to reveal text on a page
// @flow
import { PureComponent, type Node, Fragment } from 'react';
import { TimelineLite } from 'gsap';
import SplitText from 'Lib/gsap-bonus/umd/SplitText';
import Waypoint from 'react-waypoint';
type RevealTextProps = {
children: Node,
waypointTopOffset: string,
waypointBottomOffset: string,