└── github.com ├── ztellman └── aleph │ ├── test │ └── file.txt │ ├── .travis.yml │ └── .gitignore ├── runexec └── chp │ ├── resources │ ├── modules │ │ ├── cljs │ │ │ └── notes.txt │ │ ├── bindings │ │ │ └── notes.txt │ │ ├── migrations │ │ │ └── notes.txt │ │ └── schema │ │ │ └── notes.txt │ └── cljs │ │ └── main.cljs │ ├── chp-examples │ └── basic │ │ ├── resources │ │ └── cljs │ │ │ └── main.cljs │ │ └── src │ │ └── chp │ │ └── css.clj │ └── violet-uml-workings.png ├── clojure-cookbook └── clojure-cookbook │ ├── index.asciidoc │ ├── 04_local-io │ └── 4-07_get-files-from-directory │ │ └── next-gen │ │ ├── data.txt │ │ ├── locutus.bmp │ │ └── picard.jpg │ ├── 03_general-computing │ └── 3-05_main │ │ ├── my_clojure_program.clj │ │ └── src │ │ ├── foo │ │ └── util.clj │ │ └── com │ │ └── example │ │ └── my_program.clj │ ├── 02_composite-data │ ├── markov-sample │ │ └── project.clj │ └── 2-22_multiple-values │ │ └── project.clj │ ├── images │ ├── cover.png │ ├── clcb_0401.png │ ├── clcb_0402.png │ ├── clcb_0403.png │ ├── clcb_0404.png │ ├── clcb_0405.png │ ├── clcb_0901.png │ └── clcb_0902.png │ ├── pdf │ └── drafts │ │ └── intake.pdf │ ├── script │ └── asciidoc │ │ └── check.sh │ └── .gitignore ├── ptaoussanis └── sente │ ├── example-project │ └── resources │ │ └── public │ │ └── empty │ └── almost-sente.jpg ├── tailrecursion └── hoplon │ ├── .deploy.time │ ├── contrib │ ├── jquery.selectize │ │ └── .gitignore │ ├── twitter.bootstrap │ │ └── .gitignore │ └── jquery.daterangepicker │ │ └── .gitignore │ ├── vendor │ ├── jquery.selectize │ │ ├── src │ │ │ └── jquery.selectize.ext.js │ │ └── .gitignore │ ├── hammerjs │ │ └── .gitignore │ ├── jquery │ │ └── .gitignore │ ├── momentjs │ │ └── .gitignore │ ├── jquery-ui │ │ └── .gitignore │ ├── jquery.daterangepicker │ │ └── .gitignore │ └── twitter.bootstrap │ │ └── .gitignore │ └── img │ └── Hoplite.jpg ├── puppetlabs └── trapperkeeper │ ├── ext │ └── travisci │ │ └── test.sh │ ├── dev-resources │ ├── config │ │ ├── inidir │ │ │ ├── bam.ini │ │ │ └── baz.ini │ │ ├── conflictdir1 │ │ │ ├── config.ini │ │ │ └── config.conf │ │ ├── conflictdir2 │ │ │ ├── config.properties │ │ │ └── config.json │ │ ├── conflictdir3 │ │ │ ├── config.edn │ │ │ └── config.json │ │ ├── mixeddir │ │ │ ├── foo.properties │ │ │ ├── taco.json │ │ │ └── baz.ini │ │ └── file │ │ │ ├── config.properties │ │ │ └── config.ini │ └── bootstrapping │ │ └── plugin │ │ └── bootstrap.cfg │ ├── .gitignore │ └── examples │ ├── shutdown_app │ └── bootstrap.cfg │ └── java_service │ ├── bootstrap.cfg │ └── config.conf ├── korma └── Korma │ ├── .travis.yml │ └── .gitignore ├── krisajenkins └── yesql │ ├── .travis.yml │ └── test │ └── yesql │ └── sample_files │ ├── tagged_no_comments.sql │ ├── quoting.sql │ ├── tagged_no_name.sql │ ├── current_time.sql │ └── acceptance_test_single.sql ├── functional-koans └── clojure-koans │ └── script │ ├── run.clj │ └── test.clj ├── sgrove └── omchaya │ ├── scripts │ └── run_server.sh │ ├── assets │ ├── audio │ │ ├── ding.wav │ │ └── threetone-alert.wav │ ├── images │ │ ├── logo.png │ │ ├── file_icon.png │ │ ├── img_icon.png │ │ ├── page_bg.png │ │ ├── profile.png │ │ ├── audio_icon.png │ │ ├── kandanlogo.png │ │ ├── media_icon.png │ │ ├── people_icon.png │ │ ├── screenshot.png │ │ ├── search_icon.png │ │ ├── video_icon.png │ │ ├── emoticons │ │ │ ├── gtfo.png │ │ │ ├── okay.jpg │ │ │ ├── sad.png │ │ │ ├── yuno.jpg │ │ │ ├── alone.jpg │ │ │ ├── awwyea.jpg │ │ │ ├── badass.png │ │ │ ├── cereal.jpg │ │ │ ├── happy.png │ │ │ ├── ilied.jpg │ │ │ ├── notbad.jpg │ │ │ ├── tongue.png │ │ │ ├── challenge.jpg │ │ │ ├── emojis │ │ │ │ ├── +1.png │ │ │ │ ├── -1.png │ │ │ │ ├── a.png │ │ │ │ ├── ab.png │ │ │ │ ├── b.png │ │ │ │ ├── cd.png │ │ │ │ ├── cl.png │ │ │ │ ├── cn.png │ │ │ │ ├── de.png │ │ │ │ ├── es.png │ │ │ │ ├── fr.png │ │ │ │ ├── fu.png │ │ │ │ ├── gb.png │ │ │ │ ├── id.png │ │ │ │ ├── it.png │ │ │ │ ├── jp.png │ │ │ │ ├── kr.png │ │ │ │ ├── m.png │ │ │ │ ├── ng.png │ │ │ │ ├── o.png │ │ │ │ ├── o2.png │ │ │ │ ├── ok.png │ │ │ │ ├── on.png │ │ │ │ ├── ox.png │ │ │ │ ├── ru.png │ │ │ │ ├── sa.png │ │ │ │ ├── tm.png │ │ │ │ ├── tv.png │ │ │ │ ├── uk.png │ │ │ │ ├── up.png │ │ │ │ ├── us.png │ │ │ │ ├── v.png │ │ │ │ ├── vs.png │ │ │ │ ├── wc.png │ │ │ │ ├── x.png │ │ │ │ ├── 100.png │ │ │ │ ├── 1234.png │ │ │ │ ├── abc.png │ │ │ │ ├── abcd.png │ │ │ │ ├── ant.png │ │ │ │ ├── art.png │ │ │ │ ├── atm.png │ │ │ │ ├── baby.png │ │ │ │ ├── bank.png │ │ │ │ ├── bath.png │ │ │ │ ├── bear.png │ │ │ │ ├── bee.png │ │ │ │ ├── beer.png │ │ │ │ ├── bell.png │ │ │ │ ├── bike.png │ │ │ │ ├── bird.png │ │ │ │ ├── boar.png │ │ │ │ ├── boat.png │ │ │ │ ├── bomb.png │ │ │ │ ├── book.png │ │ │ │ ├── boom.png │ │ │ │ ├── boot.png │ │ │ │ ├── bow.png │ │ │ │ ├── boy.png │ │ │ │ ├── bug.png │ │ │ │ ├── bulb.png │ │ │ │ ├── bus.png │ │ │ │ ├── cake.png │ │ │ │ ├── car.png │ │ │ │ ├── cat.png │ │ │ │ ├── cat2.png │ │ │ │ ├── clap.png │ │ │ │ ├── cool.png │ │ │ │ ├── cop.png │ │ │ │ ├── corn.png │ │ │ │ ├── cow.png │ │ │ │ ├── cow2.png │ │ │ │ ├── cry.png │ │ │ │ ├── dart.png │ │ │ │ ├── dash.png │ │ │ │ ├── date.png │ │ │ │ ├── dog.png │ │ │ │ ├── dog2.png │ │ │ │ ├── door.png │ │ │ │ ├── dvd.png │ │ │ │ ├── ear.png │ │ │ │ ├── egg.png │ │ │ │ ├── end.png │ │ │ │ ├── euro.png │ │ │ │ ├── eyes.png │ │ │ │ ├── fax.png │ │ │ │ ├── feet.png │ │ │ │ ├── fire.png │ │ │ │ ├── fish.png │ │ │ │ ├── fist.png │ │ │ │ ├── five.png │ │ │ │ ├── four.png │ │ │ │ ├── free.png │ │ │ │ ├── frog.png │ │ │ │ ├── gem.png │ │ │ │ ├── gift.png │ │ │ │ ├── girl.png │ │ │ │ ├── goat.png │ │ │ │ ├── golf.png │ │ │ │ ├── grin.png │ │ │ │ ├── gun.png │ │ │ │ ├── hand.png │ │ │ │ ├── hash.png │ │ │ │ ├── herb.png │ │ │ │ ├── imp.png │ │ │ │ ├── joy.png │ │ │ │ ├── key.png │ │ │ │ ├── kiss.png │ │ │ │ ├── koko.png │ │ │ │ ├── leo.png │ │ │ │ ├── link.png │ │ │ │ ├── lips.png │ │ │ │ ├── lock.png │ │ │ │ ├── loop.png │ │ │ │ ├── mag.png │ │ │ │ ├── man.png │ │ │ │ ├── mask.png │ │ │ │ ├── mega.png │ │ │ │ ├── memo.png │ │ │ │ ├── mens.png │ │ │ │ ├── moon.png │ │ │ │ ├── mute.png │ │ │ │ ├── new.png │ │ │ │ ├── nine.png │ │ │ │ ├── nose.png │ │ │ │ ├── oden.png │ │ │ │ ├── one.png │ │ │ │ ├── pear.png │ │ │ │ ├── pig.png │ │ │ │ ├── pig2.png │ │ │ │ ├── pill.png │ │ │ │ ├── poop.png │ │ │ │ ├── pray.png │ │ │ │ ├── rage.png │ │ │ │ ├── ram.png │ │ │ │ ├── rat.png │ │ │ │ ├── rice.png │ │ │ │ ├── ring.png │ │ │ │ ├── rose.png │ │ │ │ ├── sake.png │ │ │ │ ├── seat.png │ │ │ │ ├── ship.png │ │ │ │ ├── shit.png │ │ │ │ ├── shoe.png │ │ │ │ ├── six.png │ │ │ │ ├── ski.png │ │ │ │ ├── sob.png │ │ │ │ ├── soon.png │ │ │ │ ├── sos.png │ │ │ │ ├── star.png │ │ │ │ ├── stew.png │ │ │ │ ├── tada.png │ │ │ │ ├── taxi.png │ │ │ │ ├── tea.png │ │ │ │ ├── tent.png │ │ │ │ ├── top.png │ │ │ │ ├── tram.png │ │ │ │ ├── two.png │ │ │ │ ├── vhs.png │ │ │ │ ├── wave.png │ │ │ │ ├── wink.png │ │ │ │ ├── wolf.png │ │ │ │ ├── yen.png │ │ │ │ ├── yum.png │ │ │ │ ├── zap.png │ │ │ │ ├── zero.png │ │ │ │ ├── zzz.png │ │ │ │ ├── 8ball.png │ │ │ │ ├── accept.png │ │ │ │ ├── alien.png │ │ │ │ ├── anchor.png │ │ │ │ ├── angel.png │ │ │ │ ├── anger.png │ │ │ │ ├── angry.png │ │ │ │ ├── apple.png │ │ │ │ ├── aries.png │ │ │ │ ├── balloon.png │ │ │ │ ├── bamboo.png │ │ │ │ ├── banana.png │ │ │ │ ├── barber.png │ │ │ │ ├── bathtub.png │ │ │ │ ├── battery.png │ │ │ │ ├── beers.png │ │ │ │ ├── beetle.png │ │ │ │ ├── bento.png │ │ │ │ ├── bikini.png │ │ │ │ ├── blossom.png │ │ │ │ ├── blush.png │ │ │ │ ├── books.png │ │ │ │ ├── bouquet.png │ │ │ │ ├── bowling.png │ │ │ │ ├── bowtie.png │ │ │ │ ├── bread.png │ │ │ │ ├── busstop.png │ │ │ │ ├── cactus.png │ │ │ │ ├── calling.png │ │ │ │ ├── camel.png │ │ │ │ ├── camera.png │ │ │ │ ├── cancer.png │ │ │ │ ├── candy.png │ │ │ │ ├── chart.png │ │ │ │ ├── chicken.png │ │ │ │ ├── church.png │ │ │ │ ├── cinema.png │ │ │ │ ├── clapper.png │ │ │ │ ├── clock1.png │ │ │ │ ├── clock10.png │ │ │ │ ├── clock11.png │ │ │ │ ├── clock12.png │ │ │ │ ├── clock2.png │ │ │ │ ├── clock3.png │ │ │ │ ├── clock4.png │ │ │ │ ├── clock5.png │ │ │ │ ├── clock6.png │ │ │ │ ├── clock7.png │ │ │ │ ├── clock8.png │ │ │ │ ├── clock9.png │ │ │ │ ├── cloud.png │ │ │ │ ├── clubs.png │ │ │ │ ├── coffee.png │ │ │ │ ├── cookie.png │ │ │ │ ├── couple.png │ │ │ │ ├── crown.png │ │ │ │ ├── cupid.png │ │ │ │ ├── curry.png │ │ │ │ ├── custard.png │ │ │ │ ├── customs.png │ │ │ │ ├── cyclone.png │ │ │ │ ├── dancer.png │ │ │ │ ├── dancers.png │ │ │ │ ├── dango.png │ │ │ │ ├── dizzy.png │ │ │ │ ├── dollar.png │ │ │ │ ├── dolls.png │ │ │ │ ├── dolphin.png │ │ │ │ ├── dragon.png │ │ │ │ ├── dress.png │ │ │ │ ├── droplet.png │ │ │ │ ├── e-mail.png │ │ │ │ ├── eight.png │ │ │ │ ├── email.png │ │ │ │ ├── factory.png │ │ │ │ ├── family.png │ │ │ │ ├── fearful.png │ │ │ │ ├── flags.png │ │ │ │ ├── flushed.png │ │ │ │ ├── foggy.png │ │ │ │ ├── fries.png │ │ │ │ ├── gemini.png │ │ │ │ ├── ghost.png │ │ │ │ ├── godmode.png │ │ │ │ ├── grapes.png │ │ │ │ ├── guitar.png │ │ │ │ ├── haircut.png │ │ │ │ ├── hammer.png │ │ │ │ ├── hamster.png │ │ │ │ ├── handbag.png │ │ │ │ ├── hankey.png │ │ │ │ ├── heart.png │ │ │ │ ├── hearts.png │ │ │ │ ├── hocho.png │ │ │ │ ├── horse.png │ │ │ │ ├── hotel.png │ │ │ │ ├── house.png │ │ │ │ ├── hushed.png │ │ │ │ ├── iphone.png │ │ │ │ ├── japan.png │ │ │ │ ├── jeans.png │ │ │ │ ├── joy_cat.png │ │ │ │ ├── kimono.png │ │ │ │ ├── kissing.png │ │ │ │ ├── koala.png │ │ │ │ ├── leaves.png │ │ │ │ ├── ledger.png │ │ │ │ ├── lemon.png │ │ │ │ ├── leopard.png │ │ │ │ ├── libra.png │ │ │ │ ├── mahjong.png │ │ │ │ ├── mailbox.png │ │ │ │ ├── massage.png │ │ │ │ ├── melon.png │ │ │ │ ├── metal.png │ │ │ │ ├── metro.png │ │ │ │ ├── minibus.png │ │ │ │ ├── monkey.png │ │ │ │ ├── mouse.png │ │ │ │ ├── mouse2.png │ │ │ │ ├── moyai.png │ │ │ │ ├── muscle.png │ │ │ │ ├── necktie.png │ │ │ │ ├── no_bell.png │ │ │ │ ├── no_good.png │ │ │ │ ├── notes.png │ │ │ │ ├── ocean.png │ │ │ │ ├── octocat.png │ │ │ │ ├── octopus.png │ │ │ │ ├── office.png │ │ │ │ ├── ok_hand.png │ │ │ │ ├── pager.png │ │ │ │ ├── parking.png │ │ │ │ ├── peach.png │ │ │ │ ├── pencil.png │ │ │ │ ├── pencil2.png │ │ │ │ ├── penguin.png │ │ │ │ ├── pensive.png │ │ │ │ ├── phone.png │ │ │ │ ├── pisces.png │ │ │ │ ├── pizza.png │ │ │ │ ├── plus1.png │ │ │ │ ├── poodle.png │ │ │ │ ├── postbox.png │ │ │ │ ├── pouch.png │ │ │ │ ├── pound.png │ │ │ │ ├── punch.png │ │ │ │ ├── purse.png │ │ │ │ ├── pushpin.png │ │ │ │ ├── rabbit.png │ │ │ │ ├── rabbit2.png │ │ │ │ ├── radio.png │ │ │ │ ├── rage1.png │ │ │ │ ├── rage2.png │ │ │ │ ├── rage3.png │ │ │ │ ├── rage4.png │ │ │ │ ├── rainbow.png │ │ │ │ ├── ramen.png │ │ │ │ ├── recycle.png │ │ │ │ ├── red_car.png │ │ │ │ ├── relaxed.png │ │ │ │ ├── repeat.png │ │ │ │ ├── rewind.png │ │ │ │ ├── ribbon.png │ │ │ │ ├── rocket.png │ │ │ │ ├── rooster.png │ │ │ │ ├── rowboat.png │ │ │ │ ├── runner.png │ │ │ │ ├── running.png │ │ │ │ ├── sandal.png │ │ │ │ ├── santa.png │ │ │ │ ├── school.png │ │ │ │ ├── scream.png │ │ │ │ ├── scroll.png │ │ │ │ ├── secret.png │ │ │ │ ├── seven.png │ │ │ │ ├── sheep.png │ │ │ │ ├── shell.png │ │ │ │ ├── shipit.png │ │ │ │ ├── shirt.png │ │ │ │ ├── shower.png │ │ │ │ ├── skull.png │ │ │ │ ├── sleepy.png │ │ │ │ ├── smile.png │ │ │ │ ├── smiley.png │ │ │ │ ├── smirk.png │ │ │ │ ├── smoking.png │ │ │ │ ├── snail.png │ │ │ │ ├── snake.png │ │ │ │ ├── snowman.png │ │ │ │ ├── soccer.png │ │ │ │ ├── sound.png │ │ │ │ ├── spades.png │ │ │ │ ├── speaker.png │ │ │ │ ├── star2.png │ │ │ │ ├── stars.png │ │ │ │ ├── station.png │ │ │ │ ├── sunny.png │ │ │ │ ├── sunrise.png │ │ │ │ ├── surfer.png │ │ │ │ ├── sushi.png │ │ │ │ ├── suspect.png │ │ │ │ ├── sweat.png │ │ │ │ ├── swimmer.png │ │ │ │ ├── symbols.png │ │ │ │ ├── syringe.png │ │ │ │ ├── taurus.png │ │ │ │ ├── tennis.png │ │ │ │ ├── three.png │ │ │ │ ├── ticket.png │ │ │ │ ├── tiger.png │ │ │ │ ├── tiger2.png │ │ │ │ ├── toilet.png │ │ │ │ ├── tomato.png │ │ │ │ ├── tongue.png │ │ │ │ ├── tophat.png │ │ │ │ ├── tractor.png │ │ │ │ ├── train.png │ │ │ │ ├── train2.png │ │ │ │ ├── trident.png │ │ │ │ ├── triumph.png │ │ │ │ ├── trophy.png │ │ │ │ ├── truck.png │ │ │ │ ├── trumpet.png │ │ │ │ ├── tshirt.png │ │ │ │ ├── tulip.png │ │ │ │ ├── turtle.png │ │ │ │ ├── u5272.png │ │ │ │ ├── u5408.png │ │ │ │ ├── u55b6.png │ │ │ │ ├── u6307.png │ │ │ │ ├── u6708.png │ │ │ │ ├── u6709.png │ │ │ │ ├── u6e80.png │ │ │ │ ├── u7121.png │ │ │ │ ├── u7533.png │ │ │ │ ├── u7981.png │ │ │ │ ├── u7a7a.png │ │ │ │ ├── unlock.png │ │ │ │ ├── violin.png │ │ │ │ ├── virgo.png │ │ │ │ ├── volcano.png │ │ │ │ ├── walking.png │ │ │ │ ├── warning.png │ │ │ │ ├── watch.png │ │ │ │ ├── weary.png │ │ │ │ ├── wedding.png │ │ │ │ ├── whale.png │ │ │ │ ├── whale2.png │ │ │ │ ├── woman.png │ │ │ │ ├── womens.png │ │ │ │ ├── worried.png │ │ │ │ ├── wrench.png │ │ │ │ ├── airplane.png │ │ │ │ ├── ambulance.png │ │ │ │ ├── anguished.png │ │ │ │ ├── aquarius.png │ │ │ │ ├── arrow_up.png │ │ │ │ ├── bangbang.png │ │ │ │ ├── bar_chart.png │ │ │ │ ├── baseball.png │ │ │ │ ├── beginner.png │ │ │ │ ├── bicyclist.png │ │ │ │ ├── birthday.png │ │ │ │ ├── black_nib.png │ │ │ │ ├── blowfish.png │ │ │ │ ├── blue_book.png │ │ │ │ ├── blue_car.png │ │ │ │ ├── bookmark.png │ │ │ │ ├── briefcase.png │ │ │ │ ├── calendar.png │ │ │ │ ├── capricorn.png │ │ │ │ ├── cherries.png │ │ │ │ ├── chestnut.png │ │ │ │ ├── clipboard.png │ │ │ │ ├── clock1030.png │ │ │ │ ├── clock1130.png │ │ │ │ ├── clock1230.png │ │ │ │ ├── clock130.png │ │ │ │ ├── clock230.png │ │ │ │ ├── clock330.png │ │ │ │ ├── clock430.png │ │ │ │ ├── clock530.png │ │ │ │ ├── clock630.png │ │ │ │ ├── clock730.png │ │ │ │ ├── clock830.png │ │ │ │ ├── clock930.png │ │ │ │ ├── cocktail.png │ │ │ │ ├── collision.png │ │ │ │ ├── computer.png │ │ │ │ ├── confused.png │ │ │ │ ├── copyright.png │ │ │ │ ├── crocodile.png │ │ │ │ ├── diamonds.png │ │ │ │ ├── doughnut.png │ │ │ │ ├── eggplant.png │ │ │ │ ├── elephant.png │ │ │ │ ├── envelope.png │ │ │ │ ├── facepunch.png │ │ │ │ ├── feelsgood.png │ │ │ │ ├── finnadie.png │ │ │ │ ├── fireworks.png │ │ │ │ ├── fish_cake.png │ │ │ │ ├── football.png │ │ │ │ ├── fountain.png │ │ │ │ ├── frowning.png │ │ │ │ ├── fuelpump.png │ │ │ │ ├── full_moon.png │ │ │ │ ├── game_die.png │ │ │ │ ├── goberserk.png │ │ │ │ ├── grimacing.png │ │ │ │ ├── grinning.png │ │ │ │ ├── guardsman.png │ │ │ │ ├── hamburger.png │ │ │ │ ├── heartbeat.png │ │ │ │ ├── hibiscus.png │ │ │ │ ├── high_heel.png │ │ │ │ ├── honey_pot.png │ │ │ │ ├── honeybee.png │ │ │ │ ├── hospital.png │ │ │ │ ├── hourglass.png │ │ │ │ ├── ice_cream.png │ │ │ │ ├── icecream.png │ │ │ │ ├── innocent.png │ │ │ │ ├── laughing.png │ │ │ │ ├── lipstick.png │ │ │ │ ├── lollipop.png │ │ │ │ ├── mag_right.png │ │ │ │ ├── mans_shoe.png │ │ │ │ ├── milky_way.png │ │ │ │ ├── minidisc.png │ │ │ │ ├── moneybag.png │ │ │ │ ├── monorail.png │ │ │ │ ├── mushroom.png │ │ │ │ ├── nail_care.png │ │ │ │ ├── neckbeard.png │ │ │ │ ├── new_moon.png │ │ │ │ ├── newspaper.png │ │ │ │ ├── no_entry.png │ │ │ │ ├── no_mouth.png │ │ │ │ ├── notebook.png │ │ │ │ ├── ok_woman.png │ │ │ │ ├── older_man.png │ │ │ │ ├── ophiuchus.png │ │ │ │ ├── palm_tree.png │ │ │ │ ├── paperclip.png │ │ │ │ ├── persevere.png │ │ │ │ ├── pig_nose.png │ │ │ │ ├── pineapple.png │ │ │ │ ├── point_up.png │ │ │ │ ├── princess.png │ │ │ │ ├── question.png │ │ │ │ ├── racehorse.png │ │ │ │ ├── relieved.png │ │ │ │ ├── restroom.png │ │ │ │ ├── rice_ball.png │ │ │ │ ├── sailboat.png │ │ │ │ ├── satellite.png │ │ │ │ ├── satisfied.png │ │ │ │ ├── saxophone.png │ │ │ │ ├── scissors.png │ │ │ │ ├── scorpius.png │ │ │ │ ├── seedling.png │ │ │ │ ├── sleeping.png │ │ │ │ ├── smile_cat.png │ │ │ │ ├── smirk_cat.png │ │ │ │ ├── snowflake.png │ │ │ │ ├── spaghetti.png │ │ │ │ ├── sparkler.png │ │ │ │ ├── sparkles.png │ │ │ │ ├── speedboat.png │ │ │ │ ├── squirrel.png │ │ │ │ ├── sunflower.png │ │ │ │ ├── tangerine.png │ │ │ │ ├── telephone.png │ │ │ │ ├── telescope.png │ │ │ │ ├── thumbsup.png │ │ │ │ ├── trollface.png │ │ │ │ ├── umbrella.png │ │ │ │ ├── unamused.png │ │ │ │ ├── underage.png │ │ │ │ └── wavy_dash.png │ │ │ ├── fuckyeah.jpg │ │ │ ├── megusta.jpg │ │ │ ├── omgface.jpg │ │ │ ├── pokerface.jpg │ │ │ ├── rageguy.jpg │ │ │ ├── sad-meme.png │ │ │ ├── seriously.jpg │ │ │ ├── trollface.jpg │ │ │ ├── truestory.png │ │ │ ├── bitchplease.jpg │ │ │ ├── sweetjesus.jpg │ │ │ └── youdontsay.png │ │ └── tabs │ │ │ ├── tab-new.png │ │ │ ├── tab-active-bg.png │ │ │ ├── tab-active-left.png │ │ │ ├── tab-active-right.png │ │ │ ├── tab-active-middle.png │ │ │ ├── tab-inactive-left.png │ │ │ ├── tab-inactive-middle.png │ │ │ └── tab-inactive-right.png │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.ttf │ │ └── fontawesome-webfont.woff │ └── css │ │ └── vendor │ │ └── fonts │ │ └── FontAwesome.otf │ └── docs │ └── resources │ ├── omchaya_flow.png │ └── facebook_react_devtools.png ├── Prismatic ├── eng-practices │ └── swe │ │ └── migrations │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ └── 7.png └── plumbing │ ├── .gitignore │ └── bin │ └── release.sh └── juxt └── bidi └── .gitignore /github.com/ztellman/aleph/test/file.txt: -------------------------------------------------------------------------------- 1 | this is a file -------------------------------------------------------------------------------- /github.com/runexec/chp/resources/modules/cljs/notes.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /github.com/runexec/chp/resources/modules/bindings/notes.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /github.com/runexec/chp/resources/modules/migrations/notes.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /github.com/clojure-cookbook/clojure-cookbook/index.asciidoc: -------------------------------------------------------------------------------- 1 | = Index 2 | -------------------------------------------------------------------------------- /github.com/ptaoussanis/sente/example-project/resources/public/empty: -------------------------------------------------------------------------------- 1 | empty 2 | -------------------------------------------------------------------------------- /github.com/tailrecursion/hoplon/.deploy.time: -------------------------------------------------------------------------------- 1 | Mon Feb 24 11:49:23 EST 2014 2 | -------------------------------------------------------------------------------- /github.com/puppetlabs/trapperkeeper/ext/travisci/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | lein2 test 4 | -------------------------------------------------------------------------------- /github.com/puppetlabs/trapperkeeper/dev-resources/config/inidir/bam.ini: -------------------------------------------------------------------------------- 1 | [bam] 2 | setting1 = bam1 -------------------------------------------------------------------------------- /github.com/korma/Korma/.travis.yml: -------------------------------------------------------------------------------- 1 | language: clojure 2 | lein: lein2 3 | script: lein2 run-tests 4 | -------------------------------------------------------------------------------- /github.com/runexec/chp/resources/cljs/main.cljs: -------------------------------------------------------------------------------- 1 | (ns main) 2 | (js/alert "Hi from ClojureScript!") 3 | -------------------------------------------------------------------------------- /github.com/clojure-cookbook/clojure-cookbook/04_local-io/4-07_get-files-from-directory/next-gen/data.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /github.com/clojure-cookbook/clojure-cookbook/04_local-io/4-07_get-files-from-directory/next-gen/locutus.bmp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /github.com/clojure-cookbook/clojure-cookbook/04_local-io/4-07_get-files-from-directory/next-gen/picard.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /github.com/krisajenkins/yesql/.travis.yml: -------------------------------------------------------------------------------- 1 | language: clojure 2 | lein: lein2 3 | script: lein2 test-all 4 | -------------------------------------------------------------------------------- /github.com/ztellman/aleph/.travis.yml: -------------------------------------------------------------------------------- 1 | language: clojure 2 | lein: lein2 3 | script: lein2 all do clean, test 4 | -------------------------------------------------------------------------------- /github.com/clojure-cookbook/clojure-cookbook/03_general-computing/3-05_main/my_clojure_program.clj: -------------------------------------------------------------------------------- 1 | (println "Yo.") 2 | -------------------------------------------------------------------------------- /github.com/puppetlabs/trapperkeeper/dev-resources/config/conflictdir1/config.ini: -------------------------------------------------------------------------------- 1 | [foo] 2 | bar = "barbar" 3 | baz = bazbaz -------------------------------------------------------------------------------- /github.com/puppetlabs/trapperkeeper/dev-resources/config/conflictdir2/config.properties: -------------------------------------------------------------------------------- 1 | foo.bar="barbar" 2 | foo.baz=bazbaz -------------------------------------------------------------------------------- /github.com/functional-koans/clojure-koans/script/run.clj: -------------------------------------------------------------------------------- 1 | (require 'koan-engine.runner) 2 | (koan-engine.runner/exec "run") 3 | -------------------------------------------------------------------------------- /github.com/functional-koans/clojure-koans/script/test.clj: -------------------------------------------------------------------------------- 1 | (require 'koan-engine.runner) 2 | (koan-engine.runner/exec "test") 3 | -------------------------------------------------------------------------------- /github.com/puppetlabs/trapperkeeper/.gitignore: -------------------------------------------------------------------------------- 1 | .lein-failures 2 | .lein-repl-history 3 | target/ 4 | checkouts/ 5 | pom.xml 6 | -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/scripts/run_server.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | lein cljsbuild once 4 | python -m SimpleHTTPServer 9000 5 | -------------------------------------------------------------------------------- /github.com/tailrecursion/hoplon/contrib/jquery.selectize/.gitignore: -------------------------------------------------------------------------------- 1 | /.boot/ 2 | /resources/public/ 3 | /target/ 4 | /pom.xml 5 | -------------------------------------------------------------------------------- /github.com/puppetlabs/trapperkeeper/dev-resources/config/conflictdir3/config.edn: -------------------------------------------------------------------------------- 1 | {:foo 2 | {:bar "barbar" 3 | :baz "bazbaz"}} -------------------------------------------------------------------------------- /github.com/puppetlabs/trapperkeeper/examples/shutdown_app/bootstrap.cfg: -------------------------------------------------------------------------------- 1 | examples.shutdown-app.test-external-shutdown/test-service 2 | -------------------------------------------------------------------------------- /github.com/tailrecursion/hoplon/contrib/twitter.bootstrap/.gitignore: -------------------------------------------------------------------------------- 1 | /.boot/ 2 | /resources/public/ 3 | /target/ 4 | /pom.xml 5 | -------------------------------------------------------------------------------- /github.com/tailrecursion/hoplon/vendor/jquery.selectize/src/jquery.selectize.ext.js: -------------------------------------------------------------------------------- 1 | jQuery.prototype.selectize = function() {}; 2 | -------------------------------------------------------------------------------- /github.com/tailrecursion/hoplon/contrib/jquery.daterangepicker/.gitignore: -------------------------------------------------------------------------------- 1 | /.boot/ 2 | /resources/public/ 3 | /target/ 4 | /pom.xml 5 | -------------------------------------------------------------------------------- /github.com/puppetlabs/trapperkeeper/dev-resources/bootstrapping/plugin/bootstrap.cfg: -------------------------------------------------------------------------------- 1 | test-services.plugin-test-services/plugin-test-service 2 | -------------------------------------------------------------------------------- /github.com/puppetlabs/trapperkeeper/dev-resources/config/mixeddir/foo.properties: -------------------------------------------------------------------------------- 1 | foo.bar="barbar" 2 | foo.baz=bazbaz 3 | foo.meaningoflife=42 -------------------------------------------------------------------------------- /github.com/puppetlabs/trapperkeeper/dev-resources/config/mixeddir/taco.json: -------------------------------------------------------------------------------- 1 | {"taco": 2 | {"burrito": [1, 2], 3 | "nacho": "cheese"}} -------------------------------------------------------------------------------- /github.com/krisajenkins/yesql/test/yesql/sample_files/tagged_no_comments.sql: -------------------------------------------------------------------------------- 1 | -- name: the-time 2 | SELECT CURRENT_TIMESTAMP 3 | FROM SYSIBM.SYSDUMMY1 4 | -------------------------------------------------------------------------------- /github.com/ptaoussanis/sente/almost-sente.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/ptaoussanis/sente/almost-sente.jpg -------------------------------------------------------------------------------- /github.com/puppetlabs/trapperkeeper/dev-resources/config/conflictdir2/config.json: -------------------------------------------------------------------------------- 1 | {"foo": 2 | {"something": "something", 3 | "baz": "jsonbaz"}} -------------------------------------------------------------------------------- /github.com/puppetlabs/trapperkeeper/dev-resources/config/conflictdir3/config.json: -------------------------------------------------------------------------------- 1 | {"foo": 2 | {"something": "something", 3 | "baz": "jsonbaz"}} -------------------------------------------------------------------------------- /github.com/puppetlabs/trapperkeeper/dev-resources/config/inidir/baz.ini: -------------------------------------------------------------------------------- 1 | [baz] 2 | 3 | # these are some settings 4 | setting1 = baz1 5 | setting2=baz2 6 | -------------------------------------------------------------------------------- /github.com/puppetlabs/trapperkeeper/dev-resources/config/mixeddir/baz.ini: -------------------------------------------------------------------------------- 1 | [baz] 2 | 3 | # these are some settings 4 | setting1 = baz1 5 | setting2=baz2 6 | -------------------------------------------------------------------------------- /github.com/runexec/chp/chp-examples/basic/resources/cljs/main.cljs: -------------------------------------------------------------------------------- 1 | (ns main) 2 | 3 | (defn clojurescript [] 4 | (js/alert "Hi from ClojureScript!")) 5 | -------------------------------------------------------------------------------- /github.com/runexec/chp/violet-uml-workings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/runexec/chp/violet-uml-workings.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/audio/ding.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/audio/ding.wav -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/logo.png -------------------------------------------------------------------------------- /github.com/tailrecursion/hoplon/img/Hoplite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/tailrecursion/hoplon/img/Hoplite.jpg -------------------------------------------------------------------------------- /github.com/krisajenkins/yesql/test/yesql/sample_files/quoting.sql: -------------------------------------------------------------------------------- 1 | -- SQL's quoting rules. 2 | SELECT ''''||'can''t'||'''' AS word 3 | FROM SYSIBM.SYSDUMMY1 4 | -------------------------------------------------------------------------------- /github.com/krisajenkins/yesql/test/yesql/sample_files/tagged_no_name.sql: -------------------------------------------------------------------------------- 1 | -- Error - This query has no name. 2 | SELECT CURRENT_TIMESTAMP FROM SYSIBM.SYSDUMMY1 3 | -------------------------------------------------------------------------------- /github.com/puppetlabs/trapperkeeper/dev-resources/config/file/config.properties: -------------------------------------------------------------------------------- 1 | foo.bar="barbar" 2 | foo.baz=bazbaz 3 | foo.bam=42 4 | foo.bap.boozle="boozleboozle" -------------------------------------------------------------------------------- /github.com/runexec/chp/chp-examples/basic/src/chp/css.clj: -------------------------------------------------------------------------------- 1 | (ns chp.css 2 | (:require garden.core)) 3 | 4 | (defn css [css-coll] 5 | (garden.core/css css-coll)) 6 | -------------------------------------------------------------------------------- /github.com/runexec/chp/resources/modules/schema/notes.txt: -------------------------------------------------------------------------------- 1 | user.clj : the default chp login schema 2 | blog-post.clj : a model ported from the mezzanine django cms 3 | -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/file_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/file_icon.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/img_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/img_icon.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/page_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/page_bg.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/profile.png -------------------------------------------------------------------------------- /github.com/Prismatic/eng-practices/swe/migrations/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/Prismatic/eng-practices/swe/migrations/1.png -------------------------------------------------------------------------------- /github.com/Prismatic/eng-practices/swe/migrations/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/Prismatic/eng-practices/swe/migrations/2.png -------------------------------------------------------------------------------- /github.com/Prismatic/eng-practices/swe/migrations/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/Prismatic/eng-practices/swe/migrations/3.png -------------------------------------------------------------------------------- /github.com/Prismatic/eng-practices/swe/migrations/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/Prismatic/eng-practices/swe/migrations/4.png -------------------------------------------------------------------------------- /github.com/Prismatic/eng-practices/swe/migrations/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/Prismatic/eng-practices/swe/migrations/5.png -------------------------------------------------------------------------------- /github.com/Prismatic/eng-practices/swe/migrations/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/Prismatic/eng-practices/swe/migrations/6.png -------------------------------------------------------------------------------- /github.com/Prismatic/eng-practices/swe/migrations/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/Prismatic/eng-practices/swe/migrations/7.png -------------------------------------------------------------------------------- /github.com/puppetlabs/trapperkeeper/dev-resources/config/conflictdir1/config.conf: -------------------------------------------------------------------------------- 1 | foo { 2 | // comment 3 | somesetting : 12 4 | # comment 5 | baz = "hi" 6 | } -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/audio_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/audio_icon.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/kandanlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/kandanlogo.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/media_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/media_icon.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/people_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/people_icon.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/screenshot.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/search_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/search_icon.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/video_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/video_icon.png -------------------------------------------------------------------------------- /github.com/clojure-cookbook/clojure-cookbook/03_general-computing/3-05_main/src/foo/util.clj: -------------------------------------------------------------------------------- 1 | (ns foo.util) 2 | 3 | (defn greet 4 | [name] 5 | (str "Hello, " name "!")) 6 | -------------------------------------------------------------------------------- /github.com/korma/Korma/.gitignore: -------------------------------------------------------------------------------- 1 | pom.xml 2 | *jar 3 | /lib/ 4 | /classes/ 5 | .lein-failures 6 | .lein-deps-sum 7 | /target/ 8 | *.iml 9 | /.idea 10 | .DS_Store 11 | -------------------------------------------------------------------------------- /github.com/puppetlabs/trapperkeeper/examples/java_service/bootstrap.cfg: -------------------------------------------------------------------------------- 1 | java-service-example.java-service/java-service 2 | java-service-example.java-service/java-service-consumer -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/audio/threetone-alert.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/audio/threetone-alert.wav -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/gtfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/gtfo.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/okay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/okay.jpg -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/sad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/sad.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/yuno.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/yuno.jpg -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/tabs/tab-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/tabs/tab-new.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/docs/resources/omchaya_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/docs/resources/omchaya_flow.png -------------------------------------------------------------------------------- /github.com/ztellman/aleph/.gitignore: -------------------------------------------------------------------------------- 1 | pom.xml 2 | *jar 3 | lib 4 | classes 5 | .DS_Store 6 | push 7 | autodoc 8 | doc 9 | .lein* 10 | dump.rdb 11 | target/** 12 | .nrepl* -------------------------------------------------------------------------------- /github.com/clojure-cookbook/clojure-cookbook/02_composite-data/markov-sample/project.clj: -------------------------------------------------------------------------------- 1 | (defproject markov-sample "0.0.1" 2 | :dependencies [[org.clojure/clojure "1.5.0"]]) 3 | -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/alone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/alone.jpg -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/awwyea.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/awwyea.jpg -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/badass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/badass.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/cereal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/cereal.jpg -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/happy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/happy.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/ilied.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/ilied.jpg -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/notbad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/notbad.jpg -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/tongue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/tongue.png -------------------------------------------------------------------------------- /github.com/clojure-cookbook/clojure-cookbook/02_composite-data/2-22_multiple-values/project.clj: -------------------------------------------------------------------------------- 1 | (defproject multiple-values "0.0.1" 2 | :dependencies [[org.clojure/clojure "1.5.0"]]) 3 | -------------------------------------------------------------------------------- /github.com/clojure-cookbook/clojure-cookbook/images/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/clojure-cookbook/clojure-cookbook/images/cover.png -------------------------------------------------------------------------------- /github.com/puppetlabs/trapperkeeper/dev-resources/config/file/config.ini: -------------------------------------------------------------------------------- 1 | [foo] 2 | 3 | # these are some settings 4 | setting1 = foo1 5 | setting2=foo2 6 | 7 | [bar] 8 | setting1 = bar1 -------------------------------------------------------------------------------- /github.com/puppetlabs/trapperkeeper/examples/java_service/config.conf: -------------------------------------------------------------------------------- 1 | global { 2 | # Points to a logback config file 3 | logging-config = examples/java_service/logback.xml 4 | } -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/challenge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/challenge.jpg -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/+1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/+1.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/-1.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/a.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/ab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/ab.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/b.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/cd.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/cl.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/cn.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/de.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/es.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/fr.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/fu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/fu.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/gb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/gb.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/id.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/it.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/it.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/jp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/jp.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/kr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/kr.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/m.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/ng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/ng.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/o.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/o2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/o2.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/ok.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/on.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/ox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/ox.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/ru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/ru.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/sa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/sa.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/tm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/tm.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/tv.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/uk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/uk.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/up.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/us.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/v.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/vs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/vs.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/wc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/wc.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/x.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/fuckyeah.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/fuckyeah.jpg -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/megusta.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/megusta.jpg -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/omgface.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/omgface.jpg -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/pokerface.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/pokerface.jpg -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/rageguy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/rageguy.jpg -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/sad-meme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/sad-meme.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/seriously.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/seriously.jpg -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/trollface.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/trollface.jpg -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/truestory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/truestory.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/tabs/tab-active-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/tabs/tab-active-bg.png -------------------------------------------------------------------------------- /github.com/tailrecursion/hoplon/vendor/hammerjs/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /classes 3 | /checkouts 4 | pom.xml 5 | pom.xml.asc 6 | *.jar 7 | *.class 8 | /.lein-* 9 | /.nrepl-port 10 | -------------------------------------------------------------------------------- /github.com/tailrecursion/hoplon/vendor/jquery/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /classes 3 | /checkouts 4 | pom.xml 5 | pom.xml.asc 6 | *.jar 7 | *.class 8 | /.lein-* 9 | /.nrepl-port 10 | -------------------------------------------------------------------------------- /github.com/tailrecursion/hoplon/vendor/momentjs/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /classes 3 | /checkouts 4 | pom.xml 5 | pom.xml.asc 6 | *.jar 7 | *.class 8 | /.lein-* 9 | /.nrepl-port 10 | -------------------------------------------------------------------------------- /github.com/Prismatic/plumbing/.gitignore: -------------------------------------------------------------------------------- 1 | .lein-failures 2 | *~ 3 | pom.xml 4 | pom.xml.asc 5 | target/** 6 | .*.swp 7 | .nrepl-port 8 | .repl 9 | out 10 | .lein-repl-history 11 | /doc/ -------------------------------------------------------------------------------- /github.com/clojure-cookbook/clojure-cookbook/images/clcb_0401.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/clojure-cookbook/clojure-cookbook/images/clcb_0401.png -------------------------------------------------------------------------------- /github.com/clojure-cookbook/clojure-cookbook/images/clcb_0402.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/clojure-cookbook/clojure-cookbook/images/clcb_0402.png -------------------------------------------------------------------------------- /github.com/clojure-cookbook/clojure-cookbook/images/clcb_0403.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/clojure-cookbook/clojure-cookbook/images/clcb_0403.png -------------------------------------------------------------------------------- /github.com/clojure-cookbook/clojure-cookbook/images/clcb_0404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/clojure-cookbook/clojure-cookbook/images/clcb_0404.png -------------------------------------------------------------------------------- /github.com/clojure-cookbook/clojure-cookbook/images/clcb_0405.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/clojure-cookbook/clojure-cookbook/images/clcb_0405.png -------------------------------------------------------------------------------- /github.com/clojure-cookbook/clojure-cookbook/images/clcb_0901.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/clojure-cookbook/clojure-cookbook/images/clcb_0901.png -------------------------------------------------------------------------------- /github.com/clojure-cookbook/clojure-cookbook/images/clcb_0902.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/clojure-cookbook/clojure-cookbook/images/clcb_0902.png -------------------------------------------------------------------------------- /github.com/juxt/bidi/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /classes 3 | /checkouts 4 | pom.xml 5 | pom.xml.asc 6 | *.jar 7 | *.class 8 | /.lein-* 9 | /.nrepl-port 10 | /todo.org 11 | .repl/ 12 | out/ -------------------------------------------------------------------------------- /github.com/krisajenkins/yesql/test/yesql/sample_files/current_time.sql: -------------------------------------------------------------------------------- 1 | -- Just selects the current time. 2 | -- Nothing fancy. 3 | SELECT CURRENT_TIMESTAMP AS time 4 | FROM SYSIBM.SYSDUMMY1 5 | -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/css/vendor/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/css/vendor/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/bitchplease.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/bitchplease.jpg -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/100.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/1234.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/1234.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/abc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/abc.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/abcd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/abcd.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/ant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/ant.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/art.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/art.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/atm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/atm.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/baby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/baby.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/bank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/bank.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/bath.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/bath.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/bear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/bear.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/bee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/bee.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/beer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/beer.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/bell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/bell.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/bike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/bike.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/bird.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/boar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/boar.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/boat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/boat.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/bomb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/bomb.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/book.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/boom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/boom.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/boot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/boot.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/bow.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/boy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/boy.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/bug.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/bulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/bulb.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/bus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/bus.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/cake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/cake.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/car.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/cat.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/cat2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/cat2.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/clap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/clap.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/cool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/cool.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/cop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/cop.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/corn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/corn.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/cow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/cow.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/cow2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/cow2.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/cry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/cry.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/dart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/dart.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/dash.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/date.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/dog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/dog.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/dog2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/dog2.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/door.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/dvd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/dvd.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/ear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/ear.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/egg.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/end.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/euro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/euro.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/eyes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/eyes.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/fax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/fax.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/feet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/feet.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/fire.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/fish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/fish.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/fist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/fist.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/five.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/five.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/four.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/four.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/free.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/free.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/frog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/frog.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/gem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/gem.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/gift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/gift.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/girl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/girl.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/goat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/goat.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/golf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/golf.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/grin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/grin.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/gun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/gun.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/hand.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/hash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/hash.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/herb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/herb.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/imp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/imp.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/joy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/joy.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/key.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/kiss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/kiss.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/koko.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/koko.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/leo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/leo.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/link.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/lips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/lips.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/lock.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/loop.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/mag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/mag.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/man.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/mask.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/mega.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/mega.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/memo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/memo.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/mens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/mens.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/moon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/moon.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/mute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/mute.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/new.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/nine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/nine.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/nose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/nose.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/oden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/oden.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/one.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/pear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/pear.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/pig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/pig.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/pig2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/pig2.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/pill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/pill.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/poop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/poop.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/pray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/pray.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/rage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/rage.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/ram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/ram.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/rat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/rat.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/rice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/rice.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/ring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/ring.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/rose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/rose.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/sake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/sake.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/seat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/seat.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/ship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/ship.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/shit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/shit.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/shoe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/shoe.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/six.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/six.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/ski.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/ski.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/sob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/sob.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/soon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/soon.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/sos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/sos.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/star.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/stew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/stew.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/tada.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/tada.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/taxi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/taxi.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/tea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/tea.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/tent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/tent.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/top.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/tram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/tram.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/two.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/vhs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/vhs.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/wave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/wave.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/wink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/wink.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/wolf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/wolf.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/yen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/yen.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/yum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/yum.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/zap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/zap.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/zero.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/zzz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/zzz.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/sweetjesus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/sweetjesus.jpg -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/youdontsay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/youdontsay.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/tabs/tab-active-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/tabs/tab-active-left.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/tabs/tab-active-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/tabs/tab-active-right.png -------------------------------------------------------------------------------- /github.com/clojure-cookbook/clojure-cookbook/03_general-computing/3-05_main/src/com/example/my_program.clj: -------------------------------------------------------------------------------- 1 | (ns com.example.my-program) 2 | 3 | (defn -main [& args] 4 | (println "Hey!")) 5 | -------------------------------------------------------------------------------- /github.com/clojure-cookbook/clojure-cookbook/pdf/drafts/intake.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/clojure-cookbook/clojure-cookbook/pdf/drafts/intake.pdf -------------------------------------------------------------------------------- /github.com/clojure-cookbook/clojure-cookbook/script/asciidoc/check.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | find . -name \*.asciidoc -ls -exec asciidoc -b html5 {} \; 2>&1 |grep -v "section title out of seq" 4 | 5 | -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/8ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/8ball.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/accept.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/alien.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/alien.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/anchor.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/angel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/angel.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/anger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/anger.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/angry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/angry.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/apple.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/aries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/aries.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/balloon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/balloon.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/bamboo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/bamboo.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/banana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/banana.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/barber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/barber.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/bathtub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/bathtub.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/battery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/battery.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/beers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/beers.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/beetle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/beetle.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/bento.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/bento.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/bikini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/bikini.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/blossom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/blossom.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/blush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/blush.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/books.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/books.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/bouquet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/bouquet.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/bowling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/bowling.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/bowtie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/bowtie.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/bread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/bread.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/busstop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/busstop.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/cactus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/cactus.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/calling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/calling.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/camel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/camel.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/camera.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/cancer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/cancer.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/candy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/candy.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/chart.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/chicken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/chicken.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/church.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/church.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/cinema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/cinema.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/clapper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/clapper.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/clock1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/clock1.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/clock10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/clock10.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/clock11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/clock11.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/clock12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/clock12.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/clock2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/clock2.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/clock3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/clock3.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/clock4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/clock4.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/clock5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/clock5.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/clock6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/clock6.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/clock7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/clock7.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/clock8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/clock8.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/clock9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/clock9.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/cloud.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/clubs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/clubs.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/coffee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/coffee.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/cookie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/cookie.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/couple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/couple.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/crown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/crown.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/cupid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/cupid.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/curry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/curry.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/custard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/custard.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/customs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/customs.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/cyclone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/cyclone.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/dancer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/dancer.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/dancers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/dancers.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/dango.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/dango.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/dizzy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/dizzy.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/dollar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/dollar.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/dolls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/dolls.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/dolphin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/dolphin.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/dragon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/dragon.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/dress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/dress.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/droplet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/droplet.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/e-mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/e-mail.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/eight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/eight.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/email.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/factory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/factory.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/family.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/family.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/fearful.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/fearful.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/flags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/flags.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/flushed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/flushed.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/foggy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/foggy.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/fries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/fries.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/gemini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/gemini.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/ghost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/ghost.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/godmode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/godmode.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/grapes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/grapes.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/guitar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/guitar.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/haircut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/haircut.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/hammer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/hammer.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/hamster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/hamster.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/handbag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/handbag.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/hankey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/hankey.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/heart.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/hearts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/hearts.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/hocho.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/hocho.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/horse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/horse.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/hotel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/hotel.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/house.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/hushed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/hushed.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/iphone.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/japan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/japan.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/jeans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/jeans.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/joy_cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/joy_cat.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/kimono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/kimono.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/kissing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/kissing.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/koala.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/koala.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/leaves.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/ledger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/ledger.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/lemon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/lemon.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/leopard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/leopard.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/libra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/libra.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/mahjong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/mahjong.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/mailbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/mailbox.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/massage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/massage.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/melon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/melon.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/metal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/metal.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/metro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/metro.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/minibus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/minibus.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/monkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/monkey.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/mouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/mouse.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/mouse2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/mouse2.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/moyai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/moyai.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/muscle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/muscle.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/necktie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/necktie.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/no_bell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/no_bell.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/no_good.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/no_good.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/notes.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/ocean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/ocean.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/octocat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/octocat.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/octopus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/octopus.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/office.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/office.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/ok_hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/ok_hand.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/pager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/pager.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/parking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/parking.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/peach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/peach.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/pencil.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/pencil2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/pencil2.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/penguin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/penguin.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/pensive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/pensive.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/phone.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/pisces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/pisces.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/pizza.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/pizza.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/plus1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/plus1.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/poodle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/poodle.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/postbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/postbox.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/pouch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/pouch.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/pound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/pound.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/punch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/punch.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/purse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/purse.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/pushpin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/pushpin.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/rabbit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/rabbit.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/rabbit2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/rabbit2.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/radio.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/rage1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/rage1.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/rage2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/rage2.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/rage3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/rage3.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/rage4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/rage4.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/rainbow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/rainbow.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/ramen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/ramen.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/recycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/recycle.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/red_car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/red_car.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/relaxed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/relaxed.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/repeat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/repeat.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/rewind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/rewind.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/ribbon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/ribbon.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/rocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/rocket.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/rooster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/rooster.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/rowboat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/rowboat.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/runner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/runner.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/running.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/running.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/sandal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/sandal.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/santa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/santa.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/school.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/school.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/scream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/scream.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/scroll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/scroll.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/secret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/secret.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/seven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/seven.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/sheep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/sheep.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/shell.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/shipit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/shipit.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/shirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/shirt.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/shower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/shower.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/skull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/skull.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/sleepy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/sleepy.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/smile.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/smiley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/smiley.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/smirk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/smirk.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/smoking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/smoking.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/snail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/snail.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/snake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/snake.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/snowman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/snowman.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/soccer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/soccer.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/sound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/sound.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/spades.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/spades.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/speaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/speaker.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/star2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/star2.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/stars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/stars.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/station.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/station.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/sunny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/sunny.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/sunrise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/sunrise.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/surfer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/surfer.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/sushi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/sushi.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/suspect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/suspect.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/sweat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/sweat.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/swimmer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/swimmer.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/symbols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/symbols.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/syringe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/syringe.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/taurus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/taurus.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/tennis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/tennis.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/three.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/ticket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/ticket.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/tiger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/tiger.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/tiger2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/tiger2.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/toilet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/toilet.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/tomato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/tomato.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/tongue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/tongue.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/tophat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/tophat.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/tractor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/tractor.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/train.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/train.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/train2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/train2.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/trident.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/trident.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/triumph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/triumph.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/trophy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/trophy.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/truck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/truck.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/trumpet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/trumpet.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/tshirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/tshirt.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/tulip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/tulip.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/turtle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/turtle.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/u5272.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/u5272.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/u5408.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/u5408.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/u55b6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/u55b6.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/u6307.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/u6307.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/u6708.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/u6708.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/u6709.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/u6709.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/u6e80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/u6e80.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/u7121.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/u7121.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/u7533.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/u7533.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/u7981.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/u7981.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/u7a7a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/u7a7a.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/unlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/unlock.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/violin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/violin.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/virgo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/virgo.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/volcano.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/volcano.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/walking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/walking.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/warning.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/watch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/watch.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/weary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/weary.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/wedding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/wedding.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/whale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/whale.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/whale2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/whale2.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/woman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/woman.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/womens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/womens.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/worried.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/worried.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/wrench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/wrench.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/tabs/tab-active-middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/tabs/tab-active-middle.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/tabs/tab-inactive-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/tabs/tab-inactive-left.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/tabs/tab-inactive-middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/tabs/tab-inactive-middle.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/tabs/tab-inactive-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/tabs/tab-inactive-right.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/docs/resources/facebook_react_devtools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/docs/resources/facebook_react_devtools.png -------------------------------------------------------------------------------- /github.com/tailrecursion/hoplon/vendor/jquery-ui/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /classes 3 | /checkouts 4 | pom.xml 5 | pom.xml.asc 6 | *.jar 7 | *.class 8 | /.lein-* 9 | /.nrepl-port 10 | 11 | -------------------------------------------------------------------------------- /github.com/tailrecursion/hoplon/vendor/jquery.selectize/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /classes 3 | /checkouts 4 | pom.xml 5 | pom.xml.asc 6 | *.jar 7 | *.class 8 | /.lein-* 9 | /.nrepl-port 10 | -------------------------------------------------------------------------------- /github.com/Prismatic/plumbing/bin/release.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | 4 | # Script to push a release with lein-release and then push docs. 5 | cd `dirname $0` 6 | lein release 7 | ./push_docs.sh 8 | -------------------------------------------------------------------------------- /github.com/krisajenkins/yesql/test/yesql/sample_files/acceptance_test_single.sql: -------------------------------------------------------------------------------- 1 | -- Just selects the current time. 2 | -- Nothing fancy. 3 | SELECT CURRENT_TIMESTAMP AS time 4 | FROM SYSIBM.SYSDUMMY1 5 | -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/airplane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/airplane.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/ambulance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/ambulance.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/anguished.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/anguished.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/aquarius.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/aquarius.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/arrow_up.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/bangbang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/bangbang.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/bar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/bar_chart.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/baseball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/baseball.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/beginner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/beginner.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/bicyclist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/bicyclist.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/birthday.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/birthday.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/black_nib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/black_nib.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/blowfish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/blowfish.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/blue_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/blue_book.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/blue_car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/blue_car.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/bookmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/bookmark.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/briefcase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/briefcase.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/calendar.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/capricorn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/capricorn.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/cherries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/cherries.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/chestnut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/chestnut.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/clipboard.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/clock1030.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/clock1030.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/clock1130.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/clock1130.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/clock1230.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/clock1230.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/clock130.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/clock130.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/clock230.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/clock230.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/clock330.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/clock330.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/clock430.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/clock430.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/clock530.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/clock530.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/clock630.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/clock630.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/clock730.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/clock730.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/clock830.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/clock830.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/clock930.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/clock930.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/cocktail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/cocktail.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/collision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/collision.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/computer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/computer.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/confused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/confused.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/copyright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/copyright.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/crocodile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/crocodile.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/diamonds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/diamonds.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/doughnut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/doughnut.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/eggplant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/eggplant.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/elephant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/elephant.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/envelope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/envelope.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/facepunch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/facepunch.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/feelsgood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/feelsgood.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/finnadie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/finnadie.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/fireworks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/fireworks.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/fish_cake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/fish_cake.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/football.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/football.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/fountain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/fountain.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/frowning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/frowning.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/fuelpump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/fuelpump.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/full_moon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/full_moon.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/game_die.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/game_die.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/goberserk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/goberserk.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/grimacing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/grimacing.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/grinning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/grinning.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/guardsman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/guardsman.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/hamburger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/hamburger.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/heartbeat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/heartbeat.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/hibiscus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/hibiscus.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/high_heel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/high_heel.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/honey_pot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/honey_pot.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/honeybee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/honeybee.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/hospital.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/hospital.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/hourglass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/hourglass.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/ice_cream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/ice_cream.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/icecream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/icecream.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/innocent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/innocent.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/laughing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/laughing.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/lipstick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/lipstick.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/lollipop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/lollipop.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/mag_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/mag_right.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/mans_shoe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/mans_shoe.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/milky_way.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/milky_way.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/minidisc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/minidisc.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/moneybag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/moneybag.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/monorail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/monorail.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/mushroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/mushroom.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/nail_care.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/nail_care.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/neckbeard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/neckbeard.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/new_moon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/new_moon.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/newspaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/newspaper.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/no_entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/no_entry.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/no_mouth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/no_mouth.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/notebook.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/ok_woman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/ok_woman.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/older_man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/older_man.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/ophiuchus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/ophiuchus.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/palm_tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/palm_tree.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/paperclip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/paperclip.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/persevere.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/persevere.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/pig_nose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/pig_nose.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/pineapple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/pineapple.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/point_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/point_up.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/princess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/princess.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/question.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/racehorse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/racehorse.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/relieved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/relieved.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/restroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/restroom.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/rice_ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/rice_ball.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/sailboat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/sailboat.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/satellite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/satellite.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/satisfied.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/satisfied.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/saxophone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/saxophone.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/scissors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/scissors.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/scorpius.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/scorpius.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/seedling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/seedling.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/sleeping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/sleeping.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/smile_cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/smile_cat.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/smirk_cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/smirk_cat.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/snowflake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/snowflake.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/spaghetti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/spaghetti.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/sparkler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/sparkler.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/sparkles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/sparkles.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/speedboat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/speedboat.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/squirrel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/squirrel.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/sunflower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/sunflower.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/tangerine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/tangerine.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/telephone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/telephone.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/telescope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/telescope.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/thumbsup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/thumbsup.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/trollface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/trollface.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/umbrella.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/umbrella.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/unamused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/unamused.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/underage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/underage.png -------------------------------------------------------------------------------- /github.com/sgrove/omchaya/assets/images/emoticons/emojis/wavy_dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/clojure-stuff/HEAD/github.com/sgrove/omchaya/assets/images/emoticons/emojis/wavy_dash.png -------------------------------------------------------------------------------- /github.com/tailrecursion/hoplon/vendor/jquery.daterangepicker/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /classes 3 | /checkouts 4 | pom.xml 5 | pom.xml.asc 6 | *.jar 7 | *.class 8 | /.lein-* 9 | /.nrepl-port 10 | -------------------------------------------------------------------------------- /github.com/tailrecursion/hoplon/vendor/twitter.bootstrap/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /classes 3 | /checkouts 4 | pom.xml 5 | pom.xml.asc 6 | *.jar 7 | *.class 8 | /.lein-* 9 | /.nrepl-port 10 | 11 | -------------------------------------------------------------------------------- /github.com/clojure-cookbook/clojure-cookbook/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | .build 3 | *~ 4 | Gemfile* 5 | Guardfile 6 | bin 7 | .bundle 8 | *.html 9 | *.css 10 | browser-testing 11 | cascalog-samples 12 | --------------------------------------------------------------------------------