Skip to content

Instantly share code, notes, and snippets.

View evopix's full-sized avatar

Brandon Summers evopix

View GitHub Profile
@evopix
evopix / reclaimWindows10.ps1
Created January 9, 2017 04:46 — forked from alirobe/reclaimWindows10.ps1
"Reclaim Windows 10" turns off a bunch of unnecessary Windows 10 telemetery, removes bloatware, and privacy invasions. Review and tweak before running. Scripts for reversing are included and commented. Fork via https://github.com/Disassembler0 (different defaults)
##########
# Win10 Initial Setup Script
# Author: Disassembler <disassembler@dasm.cz>
# Version: 1.7, 2016-08-15
# dasm's script: https://github.com/Disassembler0/Win10-Initial-Setup-Script/
# THIS IS A PERSONALIZED VERSION
# This script leaves more MS defaults on, including MS security features.
# Tweaked based on personal preferences for @alirobe 2016-11-16 - v1.7.1
@evopix
evopix / monitor_php_resque
Created October 26, 2012 02:00
A script to monitor Kohana Resque
#!/bin/bash
ENV="development"
ROOT="/vagrant"
QUEUES="*"
COUNT=2
VERBOSE=1
MINION="$ROOT/minion"
TASK="resque"
@evopix
evopix / redis-server
Created October 25, 2012 21:46 — forked from tessro/redis-server
A CentOS initscript for Redis
#!/bin/sh
#
# redis - this script starts and stops the redis-server daemon
#
# chkconfig: - 85 15
# description: Redis is a persistent key-value database
# processname: redis-server
# config: /etc/redis/redis.conf
# config: /etc/sysconfig/redis
# pidfile: /var/run/redis.pid
@evopix
evopix / php-resque
Created October 20, 2012 01:38
Kohana Resque Init Script
#!/bin/sh -e
### BEGIN INIT INFO
# Provides: php-resque
# Required-Start: $local_fs $remote_fs
# Required-Stop: $local_fs $remote_fs
# Should-Start: $local_fs
# Should-Stop: $local_fs
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: resque - a Redis-backed PHP library for creating background jobs
@evopix
evopix / KohanaForumHideRussian.user.js
Last active September 24, 2015 17:47
Removing jQuery dependency and updating to work with Scriptish.
// ==UserScript==
// @id forum.kohanaframework.org-d0515b72-1b32-4b30-a2e6-ab4f0f3fbb13@evopix
// @name KohanaForumHideRussian
// @version 2.0
// @namespace evopix
// @author Brandon Summers
// @description Hide Russian threads from Kohana forum.
// @include *forum.kohanaframework.*
// @run-at document-end
// ==/UserScript==
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("forum.kohanaframework.org") {
body { background: #f1f8db !important; }
#Body {
margin: 15px 0 0 !important;
overflow: visible !important;
padding: 0 15px !important;