Skip to content

Instantly share code, notes, and snippets.

View fr33z3's full-sized avatar

Sergei Gribovskii fr33z3

  • Freelance
  • Berlin, Germany
View GitHub Profile
@fr33z3
fr33z3 / qemu_osx_rpi_raspbian_jessie.sh
Created December 20, 2017 00:11 — forked from hfreire/qemu_osx_rpi_raspbian_jessie.sh
How to emulate a Raspberry Pi (Raspbian Jessie) on Mac OSX (El Capitan)
# Install QEMU OSX port with ARM support
sudo port install qemu +target_arm
export QEMU=$(which qemu-system-arm)
# Dowload kernel and export location
curl -OL \
https://github.com/dhruvvyas90/qemu-rpi-kernel/blob/master/kernel-qemu-4.1.7-jessie
export RPI_KERNEL=./kernel-qemu-4.1.7-jessie
# Download filesystem and export location
@fr33z3
fr33z3 / setup_selenium.sh
Created October 12, 2016 00:21 — forked from curtismcmullan/setup_selenium.sh
Setup Selenium Server on Ubuntu 14.04
#!/bin/bash
# Following the guide found at this page
# http://programmingarehard.com/2014/03/17/behat-and-selenium-in-vagrant.html
echo "\r\nUpdating system ...\r\n"
sudo apt-get update
# Create folder to place selenium in