UPDATE 2014-12-21: RubyGems 1.8.30, 2.0.15 and 2.2.3 have been released. It requires manual installation, please see instructions below.
Hello,
If you reached this page, means you've hit this SSL error when trying to
UPDATE 2014-12-21: RubyGems 1.8.30, 2.0.15 and 2.2.3 have been released. It requires manual installation, please see instructions below.
Hello,
If you reached this page, means you've hit this SSL error when trying to
| <?php | |
| /** | |
| * This script is for easily deploying updates to Github repos to your local server. It will automatically git clone or | |
| * git pull in your repo directory every time an update is pushed to your $BRANCH (configured below). | |
| * | |
| * Read more about how to use this script at http://behindcompanies.com/2014/01/a-simple-script-for-deploying-code-with-githubs-webhooks/ | |
| * | |
| * INSTRUCTIONS: | |
| * 1. Edit the variables below | |
| * 2. Upload this script to your server somewhere it can be publicly accessed |
| #!/bin/bash | |
| # | |
| # This script configures WordPress file permissions based on recommendations | |
| # from http://codex.wordpress.org/Hardening_WordPress#File_permissions | |
| # | |
| # Author: Michael Conigliaro | |
| # | |
| WP_OWNER=changeme # <-- wordpress owner | |
| WP_GROUP=changeme # <-- wordpress group | |
| WP_ROOT=/home/changeme # <-- wordpress root directory |
This process worked for me. I take no responsibility for any damage or loss incurred as a result of following or not following these steps or, for that matter, anything else you might do or not do.
svn.domain.com.au.http (other protocols should work).git.domain.com.au and:| #!/usr/bin/python | |
| import time | |
| from SimpleCV import Color, Image, np, Camera | |
| cam = Camera() #initialize the camera | |
| quality = 400 | |
| minMatch = 0.3 | |
| try: | |
| password = Image("password.jpg") |
| # Tkinter and GPIO together | |
| from Tkinter import * | |
| import RPi.GPIO as GPIO | |
| GPIO.setmode(GPIO.BCM) | |
| GPIO.setup(24, GPIO.OUT) | |
| GPIO.output(24, GPIO.LOW) | |
| def toggle(): |
| .ipad-only, .iphone-only, .retina-only, .non-retina-only, .retina-iphone-only, .non-retina-iphone-only { display: none; } | |
| /* ---------- iPad Only ---------- */ | |
| @media only screen and (device-width: 768px) { | |
| .ipad-only { display: block; } | |
| } | |
| /* ---------- iPhone/iPod Only ---------- */ | |
| @media only screen and (device-width: 320px) { | |
| .iphone-only { display: block; } |
| #!/bin/bash | |
| # From http://hexxeh.net/?p=328117859 | |
| sudo apt-get install -y --force-yes libnss3 libxrender1 libxss1 libgtk2.0-0 libgconf2-4 | |
| sudo mkdir -p /opt/google/ | |
| cd /opt/google | |
| sudo wget http://distribution-us.hexxeh.net/chromium-rpi/chromium-rpi-r22.tar.gz -O chromium-rpi.tar.gz | |
| sudo tar xvf chromium-rpi.tar.gz | |
| sudo chown root:root chrome/chrome-sandbox | |
| sudo chmod 4755 chrome/chrome-sandbox |
| javascript: (function () { | |
| var linkNode = document.createElement('link'); | |
| linkNode.rel = 'stylesheet'; | |
| linkNode.href = 'http://www.website.com/stylesheets/style.css'; | |
| document.getElementsByTagName('head')[0].appendChild(linkNode); | |
| })(); |