- Related tutorial: http://raspberrypiguide.de/
- Command Line Cheatsheet: https://gist.github.com/hofmannsven/8392477
Find all available devices arp -a
Locate Raspberry (b8:27:eb) in Network: Pi Finder
| # https://gist.github.com/jhedstrom/5708233 | |
| Feature: Editor Tests | |
| As a Conference Manager | |
| I should be able to create a Node of type Session | |
| @javascript @api | |
| Scenario: Make sure Conference Manager can create Session | |
| Given I am logged in as a user with the "Conference Manager" role | |
| When I visit "node/add/session" |
| #!/bin/bash | |
| # Put all the domain names in domains.txt, one per line | |
| # then run in the terminal: bash domains.sh | |
| # this will print each domain in the terminal as it looks it up | |
| # The result csv will contains the domain, IP & Nameservers in each column | |
| # Give each column the relevant header titles | |
| echo "Domain Name,IP Address,Nameserver,Nameserver,Nameserver,Nameserver,Nameserver" > domains.csv | |
| while read domain |
| require ['jquery'], ($) -> | |
| $(".js-colours .js-select").on "change", (e) -> | |
| sortBy(@value) | |
| $(".js-colours .styleguide-proximity__input").on "keyup", (event) -> | |
| return resetProximity() if (!event.target.value) | |
| event.keyCode is 13 and matchProximity() | |
| sortBy = (comparator) -> | |
| sections = document.querySelectorAll(".styleguide-block") |
| 1. replace @ with $ | |
| Find: @ | |
| Replace: $ | |
| 2. replace mixins | |
| Find: \.([\w\-]*)\s*\((.*)\)\s*\{ | |
| Replace: @mixin \1\(\2\)\n{ | |
| 3. replace includes | |
| Find: \.([\w\-]*\(.*\)\s*;) |
| <?php | |
| /** | |
| * Implements hook_preprocess_HOOK(). | |
| * | |
| */ | |
| function MYTHEME_preprocess_html(&$vars) { | |
| // Fixes page titles for login, register & password. | |
| switch (current_path()) { | |
| case 'user': | |
| $vars['head_title_array']['title'] = t('Login'); |
Find all available devices arp -a
Locate Raspberry (b8:27:eb) in Network: Pi Finder
| name = Theme it Once Example | |
| description = Example of sharing markup with a front-end and back-end template engine in Drupal. | |
| core = 7.x |
| // http://codepen.io/erskine/pen/wLclB | |
| // config | |
| $_color-base-grey: rgb(229,231,234); | |
| $palettes: ( | |
| purple: ( | |
| base: rgb(42,40,80), | |
| light: rgb(51,46,140), | |
| dark: rgb(40,38,65) | |
| ), | |
| grey: ( |