I hereby claim:
- I am kimsible on github.
- I am kimsible (https://keybase.io/kimsible) on keybase.
- I have a public key ASDvVEvvvOQaIvbGp2J4W0qt0JOFp4TnB3UShRWYW2JbBAo
To claim this, I am signing this object:
| #!/bin/bash | |
| apt install acpi-support | |
| cp lenovo-mutemic.sh /etc/acpi/lenovo-mutemic.sh | |
| cp lenovo-mutemic /etc/acpi/events/lenovo-mutemic | |
| systemctl restart acpid.service |
| { | |
| "main": "ssl", | |
| "devDependencies": { | |
| "ava": "*" | |
| } | |
| } |
I hereby claim:
To claim this, I am signing this object:
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Muletter</title> | |
| <meta name=robots content=noindex> | |
| <meta charset=utf-8> | |
| <meta name=viewport content="width=device-width, initial-scale=1.0, shrink-to-fit=no"> | |
| </head> | |
| <body> | |
| <form id=form action=https://url-to-server/subscribers method=POST> |
| { | |
| "tab_size": 2 | |
| "translate_tabs_to_spaces": true, | |
| "detect_indentation": false, | |
| "trim_trailing_white_space_on_save": true | |
| } |
| # Clean bash file sessions if exists | |
| /bin/rm -f $HOME/.bashrc | |
| /bin/rm -f $HOME/.bash_history | |
| /bin/rm -f $HOME/.bash_profile | |
| # If the .xsession-errors file is not a symbolic link, delete it and create it as such | |
| if [ ! -h $HOME/.xsession-errors ]; then | |
| /bin/rm $HOME/.xsession-errors | |
| ln -s /dev/null $HOME/.xsession-errors | |
| fi |
| Verifying that +kimcastelli is my blockchain ID. https://onename.com/kimcastelli |
| # auto-crop (someones can be badly cropped, ajust fuzz) | |
| for x in `ls *.JPG`; \ | |
| do `convert -trim +repage -fuzz 40% \ | |
| $x w_$x;`; \ | |
| done | |
| # or | |
| mogrify -trim +repage -fuzz 40% *.JPG output/*.jpg |
| #!/bin/bash | |
| cygpath=`cygpath -ma .` | |
| b2dstatus=`boot2docker status` | |
| b2dpath_shared=${cygpath/C://c} | |
| if [ "$b2dstatus" != "running" ]; then | |
| boot2docker up | |
| eval "$(boot2docker shellinit)" | |
| fi |
| FROM node:latest | |
| RUN apt-get update | |
| RUN apt-get install -y openssh-server vim | |
| RUN mkdir /var/run/sshd | |
| RUN echo 'root:root' | chpasswd | |
| RUN sed -ri 's/^PermitRootLogin\s+.*/PermitRootLogin yes/' /etc/ssh/sshd_config | |
| RUN sed -ri 's/UsePAM yes/#UsePAM yes/g' /etc/ssh/sshd_config |