Skip to content

Instantly share code, notes, and snippets.

View pketh's full-sized avatar
🐢
https://kinopio.club

Pirijan pketh

🐢
https://kinopio.club
View GitHub Profile
@pketh
pketh / guitar.txt
Created February 23, 2017 01:55
brang brang
         ♬♫♪♩♫♬♪ ♬♫♪♩♫♪
        ♬♫♪♩♫♪♫♫♬♫♪♩♫♫♬♪
╭━━━╮    ♬♫♪♩ ♬♫♪♩♫♪
 ☰⚫☰☰☰☰☰☰☰☰☰✥
        ♭♭♭
@pketh
pketh / km2.txt
Created February 22, 2017 21:27
wake up
<⌒/ヽ-、__
/<_/____/
 ̄ ̄ ̄ ̄ ̄ ̄ ̄
∧_∧
(・o・)"2017?”
_| ⊃/(___
/ └-(____/
 ̄ ̄ ̄ ̄ ̄ ̄ ̄
@pketh
pketh / whimsy2.md
Created January 20, 2017 23:53
whimsy.space vol2 story

Around the World in 20 Years and a Weekend

The history of human progress is rife with us entering things. Tombs, dragons, voids, even gungeons.

But have you ever stopped to think about what fuels this endless urge to ingress? Rather fearlessly, I decided to find out.

sensuous nights

It's now 20 years later. I've waded through the jungles of the Amazon, skied the slopes of Norway, swam the Ganges, and braved long lines. I've lost a lot too. The years have aged me dramatically - I'm a hot mess. And I lost my phone a month ago, so my friends and family are dead to me now.

@pketh
pketh / code-of-conduct.md
Created December 12, 2016 19:20
1st draft of community code of conduct for gomix

(this'll be public probably in a pinned forum post)

———————————

Community Code of Conduct

One day, we'll want to tell our grandkids that once upon a time we made Gomix and that it helped make the internet a more interesting, entertaining, helpful and humane place. Of course, we can only do this through you, the community we're working to empower.

To that end, we want to be proactive about ensuring that the Gomix community stays inclusive, friendly and creative.

<pre>
,-.
, ,-. ,-.
/ \ ( )-( )
\ | ,.>-( )-<
\|,' ( )-( )
Y ___`-' `-'
|/__/ `-'
|
|
@pketh
pketh / success-confetti.coffee
Last active September 1, 2016 19:23
canvas success confetti
confetti: ->
# ported from http://codepen.io/iprodev/pen/azpWBr
PI = Math.PI
sqrt = Math.sqrt
round = Math.round
random = Math.random
cos = Math.cos
sin = Math.sin
rAF = window.requestAnimationFrame
cAF = window.cancelAnimationFrame or window.cancelRequestAnimationFrame
@pketh
pketh / hyperdev presentation.md
Last active August 9, 2016 12:37
HyperDev: Web Development Without the Trash Parts 🌈

slides: https://midnight-surf.hyperdev.space

1

my name is pirijan and i'll be talking about..

HyperDev

Web Development Without the Trash Parts 🌈

(not the offical slogan)

1 year

@pketh
pketh / project-avatar.coffee
Last active July 21, 2016 19:42
hyperdev project avatar generator
_ = require 'underscore'
randomColor = require 'randomcolor'
AVATAR_SIZE = 200
module.exports = (application) ->
self =
sharedPanelAttributes: (context) ->
@pketh
pketh / pricing-sketch.md
Last active July 14, 2016 14:22
fogbugz pricing logic sketch

Here's some jade html

section.packages
  ul
    li.package.tracker.active(data-package="tracker" data-cost="12")
      // fb tracker is ...
    li.package.helpdesk(data-package="helpdesk" data-cost="13")
      // ...
    li.package.agile(data-package="agile" data-cost="14")
@pketh
pketh / 1-promises.coffee
Last active April 5, 2023 02:12
Promises in Coffeescript
# Create a promise:
myCoolPromise = new Promise (resolve, reject) ->
# do a thing
success = true
if success
resolve 'stuff worked'
else
reject Error 'it broke'