Skip to content

Instantly share code, notes, and snippets.

View siliconmeadow's full-sized avatar

Richard Sheppard siliconmeadow

  • Nomensa Ltd
  • New York / Paris / Peckham
View GitHub Profile
@siliconmeadow
siliconmeadow / drupalvm transcript.txt
Created October 27, 2020 15:49
For drupalvm issue
vagrant up ─╯
Bringing machine 'secretsite' up with 'virtualbox' provider...
==> secretsite: Cloning VM...
==> secretsite: Matching MAC address for NAT networking...
==> secretsite: Checking if box 'geerlingguy/ubuntu1604' version '1.3.5' is up to date...
==> secretsite: Setting the name of the VM: local.secretsite.org
==> secretsite: Fixed port collision for 22 => 2222. Now on port 2200.
==> secretsite: Clearing any previously set network interfaces...
==> secretsite: Preparing network interfaces based on configuration...
secretsite: Adapter 1: nat
The import failed due to the following reasons:
Configuration <em class="placeholder">block.block.bluemarine_user_login</em> depends on the <em class="placeholder">bluemarine</em> theme that will not be installed after import.
Configuration <em class="placeholder">block.block.chameleon_node_syndicate</em> depends on the <em class="placeholder">chameleon</em> theme that will not be installed after import.
Configuration <em class="placeholder">block.block.chameleon_user_login</em> depends on the <em class="placeholder">chameleon</em> theme that will not be installed after import.
Configuration <em class="placeholder">block.block.chameleon_user_online</em> depends on the <em class="placeholder">chameleon</em> theme that will not be installed after import.
Configuration <em class="placeholder">block.block.connections_search_form</em> depends
# Drush Docker Container
FROM drush/drush:7-alpine
# Set the Drush version.
ENV DRUSH_VERSION 7.3.0
# Install Drush using Composer.
RUN composer global require drush/drush:"$DRUSH_VERSION" --prefer-dist
# Display which version of Drush was installed

Keybase proof

I hereby claim:

  • I am siliconmeadow on github.
  • I am siliconmeadow (https://keybase.io/siliconmeadow) on keybase.
  • I have a public key ASAUw5ztBUbC0mDikds3k4qTFgzITxbhJtM-sCt9z-5UqAo

To claim this, I am signing this object:

GEM
remote: https://rubygems.org/
specs:
activesupport (4.2.8)
i18n (~> 0.7)
minitest (~> 5.1)
thread_safe (~> 0.3, >= 0.3.4)
tzinfo (~> 1.1)
addressable (2.5.2)
public_suffix (>= 2.0.2, < 4.0)
<?xml version='1.0' encoding='UTF-8'?>
<!--
Transform the term frequency reports to html tables.
-->
<xsl:stylesheet version='1.0'
xmlns:xsl='http://www.w3.org/1999/XSL/Transform'
>
@siliconmeadow
siliconmeadow / terms.xml
Created August 9, 2016 15:25
Term frequency
<?xml version="1.0" encoding="UTF-8"?>
<response>
<lst name="responseHeader"><int name="status">0</int><int name="QTime">14</int></lst><lst name="terms"><lst name="tm_title"><int name="manager">5810</int><int name="manger">3301</int><int name="mananger">3293</int><int name="senior">2077</int><int name="snr">1898</int><int name="sr">1898</int><int name="sr.">1898</int><int name="finance">1350</int><int name="accountant">1306</int><int name="accounting">1295</int><int name="business">1128</int><int name="financial">1093</int><int name="account">1087</int><int name="officer">999</int><int name="director">971</int><int name="sale">861</int><int name="executive">803</int><int name="head">782</int><int name="marketing">768</int><int name="analyst">746</int><int name="management">740</int><int name="tax">737</int><int name="audit">722</int><int name="development">633</int><int name="&amp;">611</int><int name="assistant">544</int><int name="commercial">514</int><int name="consultant">507</int><int name="project">415<
#!/bin/bash
vbox_interfaces=($(/sbin/ifconfig | grep -o 'vboxnet[0-9]\+'))
for interface in ${vbox_interfaces[@]}
do
echo "Restarting ${interface}"
sudo ifconfig $interface down
sudo ifconfig $interface up
done
<html>
<head>
<link href="/css/c3.css" rel="stylesheet" type="text/css">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
<div id="chart"></div>
<div id="chart1"></div>
<div id="chart2"></div>
<div id="chart3"></div>
#!/bin/sh
if [[ -z "$1" ]]; then
echo "Usage: proxy_switch.sh en 1.1.1.1:8080.
proxy_switch.sh dis"
exit 2;
fi
if [[ "$1" == "en" ]]; then
export http_proxy=http://$2