Durability: the biggest problem with front-end dev tools

In the past decade, front end development has changed a lot. In the old days, you would hand-roll, hack, test. It was a labor-intensive coding project. Lately, a suite of tools has emerged that promise many benefits to the developer workflow including grunt, foundation, sass, pre-processors, emmet, docker, composer, bower…

The tools are fine in their own right, but the problem with them is that they aren’t really durable.  Using woodworking as an analogy, the tools last longer than the products that you build.

I was recently visiting a site for a foundation outline theme that seemed promising and found its discontinuation sidenote.

http://themes.required.ch/news/required-foundation-project-discontinued/

And I quote:

We switched to _s and a custom grid system and therefore don’t use Zurb Foundation anymore. The docs will stay available until 2015, feel free to fork the project on Github.

It’s been quite the journey and we learned a lot maintaining the required+ Foundation theme and it’s assets. We are grateful for all the people helping and using required+ Foundation as their WordPress base theme. Instead of releasing a version that we don’t use internally, we finally decided to discontinue required+ Foundation. This decision wasn’t easy and we tried to free some time for the project, but had to realise that it’s best to discontinue the project instead of letting you wait in limbo any longer.

Thanks again for the support and understanding
– Silvan & the required+ team



My Headless Raspberry Pi with Apache, PHP and Samba NAS

According to WikiPedia, “The Raspberry Pi is a credit card-sized single-board computer developed in the UK by the Raspberry Pi Foundation with the intention of promoting the teaching of basic computer science in schools.”

Having three school-aged children of my own, I purchased a pi with the intention of doing some home-based experimentation in computer science. My goals are to start the education by teaching the kids web publishing and development skills and to create a Network Attached Storage (NAS) for our mp3 collection to make storing and sharing music easier.

Since my goals involve using the Pi by accessing it from the network, once the initial setup is done, I don’t need a monitor, keyboard and mouse to use the pi. This configuration is called “headless”.

I selected the Raspbian image from the downloads page because it seems the best for headless server. I bought some 1″ standoffs at radioshack and screwed them into an old cd-rom case cover and screwed that into the ceiling of my basement, near the network switch.

2014-11-23 10.33.17

Initial Setup Steps

I downloaded the OS image to the home folder on my mac as raspbian.img. From there, I opened a terminal to copy the image to the SD card. The commands are below.  My comments to the commands are preceded by “#”.

# Identify the disk (not partition) of your SD card e.g. disk4 (not disk4s1):
diskutil list
# mine is disk1, so I do this:
diskutil unmountDisk /dev/disk1
# go to the home folder:
cd
# copy the image to the SD card. This command takes around 20 minutes to complete:
sudo dd bs=1m if=raspbian.img of=/dev/disk1

My next step was to test the router and make sure that its firewall was enabled. This system will only be accessible from the home network.

Now that I have an SD card with the Raspbian image on it, it is time to do the first boot of the Pi. I found this part pretty easy, so I’ll be brief. I connected a keyboard, mouse and monitor to the Pi and inserted the SD card and plugged in the power supply (an old cell phone charger). The setup is interactive. I just made my choices and rebooted. Everything worked fine and I shut down the pi, removed the peripherals and started it up again in headless mode.

Install a Bunch of Applications

The next step is to log into the pi from a remote machine. That is done with ssh. Once you have SSH’d in, you can run a few commands to update the system and install a bunch of applications. Since the system installed is Debian, we will use the apt package manager. I prefer the newer version of apt-get, aptitude.

#become super-user
sudo su
aptitude update
aptitude safe-upgrade
aptitude install apache2 php5 samba samba-common-bin
#I like to do this in two steps
aptitude install php5-gd php5-imagick php5-cli members git php5-curl curl libcurl3 libcurl4-openssl-dev chkrootkit fail2ban exfat-utils exfat-fuse

Mount Some Storage

The next step is to install the thumbdrive and mount it. I like to to use exfat for the thumbdrive format. As you can see in the prior installation commands, I installed some tools for that. Now I need to program the Pi to mount the thumbdrive to a folder on bootup.

sudo su
mkdir /media
sudo blkid
//read output and find drive: /dev/sda1: LABEL="SANMICRO" UUID="53FE-724F" TYPE="exfat"
//get tthorp uid 
egrep -i "tthorp" /etc/passwd
//get thorps gid
egrep -i "thorps" /etc/group
//set mounting options
sudo nano /etc/fstab
//add this:
/dev/sda1 /media exfat auto,users,rw,conv=binary,uid=1001,gid=1007,dmask=002,fmask=113 0 0

More Configuration

From this point, I did configured Apache, SSH and Samba, but those steps have less to do with the Raspberry Pi and more to do with standard server configs, so I am not listing them here. Perhaps another post…



XML Quadratic Blowup Attack

Yesterday, a vulnerability in WordPress and Drupal was announced. Both open source communities responded with patched versions of their software that should be updated immediately.

According to Mashable, “The vulnerability uses a well-known XML Quadratic Blowup Attack — and when executed, it can take down an entire website or server almost instantly.”

This issue underscores the importance of having a strategy for keeping your site’s systems patched and updated.