Skip to content

Instantly share code, notes, and snippets.

@peric
peric / memegif_wars.md
Last active November 27, 2020 08:03
MemeGif Wars - a simple game you can play with friends/coworkers

MemeGif Wars

Rules

Split into teams or play individually. For the online events, it is probably better to play individually.

In each game cycle, a gamemaster will announce one question/term and all the participants (gamemaster can also play) will have exactly ONE MINUTE (use online timer or a phone.) to find a proper GIF or Meme. Those who feel capable, are also encouraged to create custom memes. Before the countdown begins, be sure that everyone is ready.

All the GIFs/Memes should be posted to the ________ (Slack channel, meeting channel, whatever you prefer) within ONE MINUTE.

### Keybase proof
I hereby claim:
* I am peric on github.
* I am drazenperic (https://keybase.io/drazenperic) on keybase.
* I have a public key ASBSbaSfMCBBv0jjnW7mDZtmUxgGcp0BcewLhwJjo4NyEgo
To claim this, I am signing this object:
@peric
peric / gist:935b5d8de2162755f8f0
Created January 24, 2015 19:19
css to php array
import cssutils
import urllib2
css_url = 'url_to_css_file.css'
css = urllib2.urlopen(css_url).read()
sheet = cssutils.parseString(css)
f = open("array.php", "w")
f.write('<?php\n')