Skip to content

Instantly share code, notes, and snippets.

View Zowie's full-sized avatar
🎯
Trying to grow by shrinking complexity, using technology and thoughts

Zowie Zowie

🎯
Trying to grow by shrinking complexity, using technology and thoughts
View GitHub Profile
@Zowie
Zowie / keybase.md
Created March 14, 2020 07:06
Keybase

Keybase proof

I hereby claim:

  • I am zowie on github.
  • I am z_man (https://keybase.io/z_man) on keybase.
  • I have a public key ASA2fo3fA5V8z_XFSxdq4YfcvJnE5NVZqRwOTAuOdIAkkwo

To claim this, I am signing this object:

@Zowie
Zowie / howto.md
Created August 14, 2016 17:12 — forked from leomelzer/howto.md
Installing ImageMagick & Ghostscript on Ubuntu
  1. You have Ghostscript installed, right? Otherwise sudo apt-get install ghostscript
  2. This is important and installs the headers (iapi.h etc) which are required but don't come with the default Ghostscript package: sudo apt-get install libgs-dev
  3. I also needed sudo apt-get install gs-esp
  4. For me the pre compiled version of ImageMagick never accepted Ghostscript, so let's remove it: sudo apt-get --purge remove imagemagick
  5. Get the source of ImageMagick, untar it, cd ImageMagick-xx
  6. ./configure --with-gslib=yes [and what else you need]
  7. Confirm in the output near the bottom gslib yes yes and not gslib yes no
  8. make
  9. make install
  10. Run convert -list configure | grep DELEGATES => DELEGATES bzlib djvu freetype gs jpeg jng jp2 lcms png tiff x11 xml zlib
@Zowie
Zowie / particle-luminum.json
Created July 3, 2016 12:58
Particle JSON config for Luminum landing page
{
"particles": {
"number": {
"value": 80,
"density": {
"enable": true,
"value_area": 800
}
},
"color": {
@Zowie
Zowie / pyvenv-hack
Created December 15, 2014 14:30
Bash Pyvenv 3.4 Debian workaround
#!/bin/bash
if [ -z $1 ]; then
echo "Enter env name as first argument please"
exit 1
fi
pyvenv-3.4 --without-pip $1
source $1/bin/activate
curl https://bootstrap.pypa.io/get-pip.py | python