Skip to content

Instantly share code, notes, and snippets.

That's why the correct version for Squeak 4.5/5.0 is
====
(Installer repository: 'http://www.smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main')
install: 'ConfigurationOfSeaside3'.
((Smalltalk at: #ConfigurationOfSeaside3) project version: #stable) load.
"Or
((Smalltalk at: #ConfigurationOfSeaside3) project version: #stable) load: 'OneClick'
for the jumpstart experience
"
RFBServer setFullPassword. "This causes a UI prompt for the password. How can this be done in a noninteractive way?"
RFBServer start. "Starts the RFBServe process on the defualt display and port: 5900."
Installer ss
project: 'RFB';
install: ' RFB-ikp.8.mcz'.
Installer ss3
project: 'FileTree';
install: 'MonticelloFileTree-Core.squeak43'.
Installer ss3
project: 'FileTree';
install: 'MonticelloFileTree-FileDirectory-Utilities.squeak43'.
@pshouse
pshouse / CSS-Responsive-animated-Accordion.markdown
Created December 29, 2014 17:36
CSS Responsive animated Accordion

CSS Responsive animated Accordion

I wanted to make a nice animated accordion that didn't rely on jQuery and used a definition list. This relies on javascript for the interactions (using the classie helpers) but uses CSS for all of the animations.

There are some magic numbers in here - as I was animating max height to achieve the accordion effect.

This is best viewed in full mode - seems to flicker a little in codepen's editor mode. Technically, it's responsive - but on a small device this toggle could be potentially horrible if there is a lot of content in there.

Issues: Magic number on max-height anim, noticed the + rotation on safari needs a set origin or else its motion wonky and not circular.

-----BEGIN PUBLIC KEY-----
MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAgkwK6qUff87HbG4DxN+6
Nv0xGezlDoJnl9zN/YWAZHqrwGcKzZlvvpszYBTSumPNVUz9NdbQzTSxNIyAWd71
fnbOgJrkBFPVv4XvhHy38Tu8qlL1SXe4jcdw5xeJ0y3xDuC0FoJKa0gMLnzBYCRa
s5YR5rk3lLmNqh5f4BywnTj7bMmU68Pkk3sXzbBjI14J23O7DwyXMoenWX6fS89k
kme98x5CuYDpjs3cO6Akzg5Qmac1dwDXktD4LNGGPd4FMFLU5fyySvROVnn0P+TR
M/7+q7VdciF7aXsci0fL+8HOH4WC12XbXLF8XqC47bV/WpZ59Q68+dZZcIpVgekr
PQIDAQAB
-----END PUBLIC KEY-----
-----BEGIN PUBLIC KEY-----
MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAgkwK6qUff87HbG4DxN+6
Nv0xGezlDoJnl9zN/YWAZHqrwGcKzZlvvpszYBTSumPNVUz9NdbQzTSxNIyAWd71
fnbOgJrkBFPVv4XvhHy38Tu8qlL1SXe4jcdw5xeJ0y3xDuC0FoJKa0gMLnzBYCRa
s5YR5rk3lLmNqh5f4BywnTj7bMmU68Pkk3sXzbBjI14J23O7DwyXMoenWX6fS89k
kme98x5CuYDpjs3cO6Akzg5Qmac1dwDXktD4LNGGPd4FMFLU5fyySvROVnn0P+TR
M/7+q7VdciF7aXsci0fL+8HOH4WC12XbXLF8XqC47bV/WpZ59Q68+dZZcIpVgekr
PQIDAQAB
-----END PUBLIC KEY-----
#!/bin/bash
apt-get update
apt-get install -y linux-image-extra-`uname -r`
apt-get install -y software-properties-common
add-apt-repository ppa:dotcloud/lxc-docker
apt-get update
apt-get install -y lxc-docker
FROM toorop/daemontools-sshd
RUN apt-get install -y wget unzip
RUN apt-get install -y software-properties-common
RUN add-apt-repository -y ppa:pharo/stable
RUN dpkg --add-architecture i386
RUN apt-get update
RUN apt-get install -y pharo-vm-core
RUN wget -O - http://get.pharo.org | bash
EXPOSE 22
CMD ["/usr/bin/svscanboot", "-"]
#!/bin/bash
apt-get install -y wget unzip
apt-get install -y software-properties-common
add-apt-repository -y ppa:pharo/stable
dpkg --add-architecture i386
apt-get update
apt-get install -y pharo-vm-core
wget -O - http://get.pharo.org | bash