Skip to content

Instantly share code, notes, and snippets.

View ahmetus's full-sized avatar

Ahmet Usal ahmetus

View GitHub Profile
@ahmetus
ahmetus / Medusa.markdown
Created November 4, 2014 04:32
A Pen by Ahmet Usal.

Medusa

Using skrollr, svg, and some gsap for some fun scrolling halloween stuff with hand drawn elements. Elements change visually with some CSS filters

Forked from Sarah Drasner's Pen Medusa.

A Pen by Ahmet Usal on CodePen.

License.

@ahmetus
ahmetus / GSPreloader.markdown
Created November 4, 2014 04:28
A Pen by Ahmet Usal.
@ahmetus
ahmetus / GSAP-Image-Slider-Test.markdown
Created November 2, 2014 18:39
A Pen by Ahmet Usal.
@ahmetus
ahmetus / .gitignore
Last active August 29, 2015 14:08 — forked from redoPop/.gitignore
# This is a template .gitignore file for git-managed WordPress projects.
#
# Fact: you don't want WordPress core files, or your server-specific
# configuration files etc., in your project's repository. You just don't.
#
# Solution: stick this file up your repository root (which it assumes is
# also the WordPress root directory) and add exceptions for any plugins,
# themes, and other directories that should be under version control.
#
# See the comments below for more info on how to add exceptions for your
@ahmetus
ahmetus / test.clj
Last active August 29, 2015 14:08 — forked from adambard/test.clj
; Comments start with semicolons.
; Clojure is written in "forms", which are just
; lists of things inside parentheses, separated by whitespace.
;
; The clojure reader assumes that the first thing is a
; function or macro to call, and the rest are arguments.
;
; Here's a function that sets the current namespace:
(ns test)
@ahmetus
ahmetus / gctags
Last active August 29, 2015 14:08 — forked from leoliu/gctags
#!/bin/bash
export GTAGSLABEL=ctags
if [ -r $PWD/.globalrc ]; then
GTAGSCONF=$PWD/.globalrc
elif [ -r $HOME/.globalrc ]; then
GTAGSCONF=$HOME/.globalrc
elif [ -r /usr/local/share/gtags/gtags.conf ]; then
GTAGSCONF=/usr/local/share/gtags/gtags.conf