This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// unwatch all repos containg "foobar" | |
$("li.subscription-row").each(function(i, row){ if ($(row).find("a.repo-name").text().indexOf("foobar") >= 0) { $(row).find("form.js-unsubscribe-form button").click() } }); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
IF EXIST c:\windows\temp\ ( | |
forfiles /p "C:\Windows\Temp" /s /m *.* /D -7 /C "cmd /c del /Q @path" | |
) | |
IF EXIST "C:\Users\" ( | |
for /D %%x in ("C:\Users\*") do ( | |
forfiles /p "%%x\AppData\Local\Temp" /s /m *.* /D -7 /C "cmd /c del /Q @path" | |
forfiles /p "%%x\AppData\Local\Microsoft\Windows\Temporary Internet Files" /s /m *.* /D -7 /C "cmd /c del /Q @path" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
wmic computersystem set AutomaticManagedPageFile=FALSE | |
wmic.exe pagefileset create name="E:\pagefile.sys" | |
wmic.exe pagefileset where name="E:\\pagefile.sys" set InitialSize=30720,MaximumSize=102400 | |
wmic.exe pagefileset where name="C:\\pagefile.sys" delete | |
shutdown -r -t 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cat [email protected] | |
=INFO REPORT==== 9-Jan-2014::20:12:28 === | |
Starting RabbitMQ 3.1.5 on Erlang R14B04 | |
Copyright (C) 2007-2013 GoPivotal, Inc. | |
Licensed under the MPL. See http://www.rabbitmq.com/ | |
=INFO REPORT==== 9-Jan-2014::20:12:28 === | |
node : rabbit@host | |
home dir : /var/lib/rabbitmq |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# tomcat This shell script takes care of starting and stopping Tomcat | |
# | |
# chkconfig: - 80 20 | |
# | |
### BEGIN INIT INFO | |
# Provides: tomcat | |
# Required-Start: $network $syslog | |
# Required-Stop: $network $syslog |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def apps = [ "app1": | |
[ "repos": ["foo", "bar"], | |
"name": "app1", | |
"version": 1 | |
], | |
"app2": | |
[ "repos": ["foo"], | |
"name": "app2", | |
"version": 3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
time micron | |
TestCPU -> | |
test_get_load: (passed) 0.16567932400000002 | |
test_num_procs: (passed) 0.305860234 | |
test_usage_stats: (passed) 0.757518385 | |
test_options: (passed) 2.7564220949999996 | |
test_monitor: (passed) 2.871278224 | |
TestDiskUsage -> | |
test_parse_multiline: (passed) 0.15893676399999998 | |
test_parse_linux: (passed) 0.311331634 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Process: ruby [22322] | |
Path: /Users/USER/*/ruby | |
Identifier: ruby | |
Version: 0 | |
Code Type: X86-64 (Native) | |
Parent Process: ruby [22305] | |
User ID: 501 | |
Date/Time: 2013-09-18 13:50:10.133 -0400 | |
OS Version: Mac OS X 10.8.4 (12E55) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl -w | |
# | |
# pfdel - deletes message containing specified address from | |
# Postfix queue. Matches either sender or recipient address. | |
# | |
# Usage: pfdel <email_address> | |
# | |
# http://www.ustrem.org/en/articles/postfix-queue-delete-en/ | |
use strict; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# list_hadoop_codecs.sh | |
# | |
# USAGE: | |
# curl -sL https://gist.github.com/chetan/6524829/raw/list_hadoop_codecs.sh | bash | |
# make sure hadoop is avail | |
if [[ -z `which hadoop 2>/dev/null` ]]; then | |
echo "hadoop command not found!" |