Skip to content

Instantly share code, notes, and snippets.

View StephenBrown2's full-sized avatar

Stephen Brown II StephenBrown2

  • JumpCloud
  • San Antonio, TX
View GitHub Profile
@StephenBrown2
StephenBrown2 / filebot-node.json
Last active June 14, 2017 09:10
FileBot Node Client Rockon
{
"FileBot-Node": {
"description": "FileBot Node is a client-server application that'll allow you to run filebot commands.",
"version": "0.0.1",
"website": "http://www.filebot.net/",
"icon": "http://www.filebot.net/images/filebot.logo.svg",
"more_info": "FileBot Node is a server-side Node.js application that allows you to make filebot calls via a straight-forward ExtJS web application. Please refer to the <a href='https://www.filebot.net/forums/viewtopic.php?f=13&t=2733'>How To</a> manual if you need help getting started.",
"volume_add_support": true,
"ui": {
"slug": "filebot/"
@StephenBrown2
StephenBrown2 / stoken
Last active October 27, 2015 15:21
Arch Linux PKGBUILD files for stoken, using both the released version and git master
# Maintainer: Stephen Brown II <Stephen [dot] Brown2 [at] gmail.com>
pkgname=stoken
pkgver="0.90"
pkgrel=1
pkgdesc="RSA SecurID-compatible software token for Linux/UNIX systems"
arch=('i686' 'x86_64')
url="https://github.com/cernekee/${pkgname}"
license=('LGPL2.1')
depends=('nettle' 'libxml2')
optdepends=('gtk3: required for stoken-gui')
@StephenBrown2
StephenBrown2 / keybase.md
Last active August 29, 2015 14:23
Keybase proof

Keybase proof

I hereby claim:

  • I am stephenbrown2 on github.
  • I am stephenbrown2 (https://keybase.io/stephenbrown2) on keybase.
  • I have a public key whose fingerprint is 0C47 C049 1939 4493 D801 9FD7 DE8B CBE9 6ABC B48B

To claim this, I am signing this object:

@StephenBrown2
StephenBrown2 / install-solr4-and-create-instances.md
Last active December 31, 2015 18:59
This allows one to download and configure solr 4 (4.6 at the time of this writing) on a CentOS machine and create multiple cores via a scripted, repeatable manner. Supported module configurations are from apachesolr and search_api_solr

Source

How to automatically install apache solr multicore locally for drupal

This article will give you the tools to setup fully automated an apache solr multicore locally for drupal.

The advantages: When you have new projects you will only have to create a new apache solr core based on previous configuration. This will save you valuable time.

How does it work? Whatever we have done manually we can script using bash. This is exactly what we have done to install the apache solr multicore locally.

@StephenBrown2
StephenBrown2 / maria-params.pp
Last active December 20, 2015 09:09
mariadb::params
class maria::params {
$version = '5.5'
$os = $::operatingsystem ? {
'RedHat' => 'rhel',
'LinuxMint' => 'ubuntu',
default => inline_template('<%= @::operatingsystem.downcase %>'),
}