Skip to content

Instantly share code, notes, and snippets.

View pabo3000's full-sized avatar

Pavel Bogdanovic pabo3000

View GitHub Profile
Verifying that "pabo.id" is my Blockstack ID. https://explorer.blockstack.org/name/pabo.id
### Keybase proof
I hereby claim:
* I am pabo3000 on github.
* I am pabo (https://keybase.io/pabo) on keybase.
* I have a public key whose fingerprint is 7679 CB32 5E56 20BD A777 497D 731E EA23 AAFB C0A5
To claim this, I am signing this object:
@pabo3000
pabo3000 / designer.html
Last active August 29, 2015 14:18
designer
<link rel="import" href="../cool-clock/cool-clock.html">
<link rel="import" href="../google-map/google-map.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
echo 'export PATH=$HOME/local/bin:$PATH' >> ~/.bashrc
. ~/.bashrc
mkdir ~/local
mkdir ~/node-latest-install
cd ~/node-latest-install
curl http://nodejs.org/dist/node-latest.tar.gz | tar xz --strip-components=1
./configure --prefix=~/local
make install # ok, fine, this step probably takes more than 30 seconds...
curl https://npmjs.org/install.sh | sh
from Products.Five import BrowserView
from zope.interface import implementer
from zope.publisher.interfaces.browser import IPublishTraverse
@implementer(IPublishTraverse)
class AuthorView(BrowserView):
user_id = None
def publishTraverse(self, request, name):
echo 'export PATH=$HOME/local/bin:$PATH' >> ~/.bashrc
. ~/.bashrc
mkdir ~/local
mkdir ~/node-latest-install
cd ~/node-latest-install
curl http://nodejs.org/dist/node-latest.tar.gz | tar xz --strip-components=1
./configure --prefix=~/local
make install # ok, fine, this step probably takes more than 30 seconds...
curl https://npmjs.org/install.sh | sh