He's a bit creepy.
A Pen by Chris Gannon on CodePen.
He's a bit creepy.
A Pen by Chris Gannon on CodePen.
Inspired by http://www.acnplwgl.com/#!/worm-ribbon
Click and drag to interact
Forked from Georgi Nikoloff's Pen Canvas Ribbon.
A Pen by Alok Rajasukumaran on CodePen.
Forked from Ian Gloude's Pen ByVYZK.
A Pen by Alok Rajasukumaran on CodePen.
Forked from Casey Zumwalt's Pen Animated Robot.
A Pen by Alok Rajasukumaran on CodePen.
simple from / to date picker with styled calendar
Forked from Andrew Pougher's Pen Jquery UI DatePicker Dark Style.
A Pen by Alok Rajasukumaran on CodePen.
If Tony Stark had a Wordpress blog
Forked from Hugo Darby-Brown's Pen Iron Man Login Form.
A Pen by Alok Rajasukumaran on CodePen.
| #!/bin/bash | |
| # Create ftp user, create folders and set permissions | |
| # Shamelessly coppied from http://dev.n0ise.net/2012/09/vsftpd-add-user-automation-bash-script/ | |
| # Usage: ./create_ftp_user.sh [username] "[password]" | |
| # | |
| NAME=$1 | |
| PASS=$2 |
| #!/bin/sh | |
| ####################################### | |
| # Bash script to install an AMP stack and PHPMyAdmin plus tweaks. For Debian based systems. | |
| # Written by @AamnahAkram from http://aamnah.com | |
| # In case of any errors (e.g. MySQL) just re-run the script. Nothing will be re-installed except for the packages with errors. | |
| ####################################### | |
| #COLORS |
| # Install Apache to check from web browser using 0.0.0.0 or localhost, check version, start,stop & restart Apache into Ubuntu | |
| sudo apt update | |
| sudo apt upgrade | |
| sudo apt install apache2 | |
| apache2 -v | |
| sudo service apache2 start | |
| sudo systemctl enable apache2 | |
| sudo service apache2 stop | |
| sudo service apache2 start | |
| sudo service apache2 restart |
| #!/bin/sh | |
| sudo apt-get update | |
| sudo apt-get upgrade | |
| lsb_release -a | |
| #Install NGINX | |
| sudo apt-get install nginx |