Skip to content

Instantly share code, notes, and snippets.

View chetan's full-sized avatar
🙌
like my work? sponsor me!

Chetan Sarva chetan

🙌
like my work? sponsor me!
View GitHub Profile
@chetan
chetan / unwtach.js
Created January 31, 2014 17:42
github repo unwatch
// 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() } });
@chetan
chetan / cleanup_temp_files.bat
Created January 11, 2014 03:43
Handy script for cleaning up old temporary files on windows. ReportQueue (from error reporting) gets especially large...
@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"
@chetan
chetan / move_pagefile.bat
Created January 10, 2014 22:43
Move the page file to another drive (E), set it to 30GB-100GB, and reboot immediately
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
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
@chetan
chetan / tomcat.initd.sh
Last active January 20, 2022 13:45 — forked from valotas/tomcat.sh
tomcat init.d script
#!/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
def apps = [ "app1":
[ "repos": ["foo", "bar"],
"name": "app1",
"version": 1
],
"app2":
[ "repos": ["foo"],
"name": "app2",
"version": 3
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
@chetan
chetan / crash2.txt
Last active December 23, 2015 09:09
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)
@chetan
chetan / pfdel.pl
Created September 15, 2013 03:54
Script for cleaning up postfix queue
#!/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;
@chetan
chetan / list_hadoop_codecs.sh
Last active August 11, 2023 12:38
List the available hadoop codecs
#!/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!"