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/sh | |
# | |
# /etc/rc.d/init.d/logstash | |
# | |
# Starts Logstash as a daemon | |
# | |
# chkconfig: 2345 20 80 | |
# description: Starts Logstash as a daemon | |
### BEGIN INIT INFO |
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 | |
# Author: Santiago López Denazis | |
# License: GPL v.3+ | |
# Description: Simple Redis init.d script conceived to work on RH 6.5 | |
source /etc/rc.d/init.d/functions | |
[ -f /etc/sysconfig/redis ] && { | |
source /etc/sysconfig/redis |
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
" Filename: telnet.vim | |
" Language: Telnet command syntax | |
" Maintainer: sldenazis <[email protected]> | |
" Revision: 0.1 | |
if version < 600 | |
syntax clear | |
elseif exists("b:current_syntax") | |
finish | |
endif |
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 python3 | |
# -*- coding: utf-8 -*- | |
import sys | |
import time | |
import telepot | |
import re | |
def handle(msg): | |
content_type, chat_type, chat_id = telepot.glance(msg) |
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
18,19c18,23 | |
< #self.ruleset[option] = {'depends': [], 'conflict': []} | |
< self.ruleset[option] = {'depends': [], 'conflict': [], 'enabled': False} | |
--- | |
> self.ruleset[option] = { | |
> 'depends': [], | |
> 'conflict': [], | |
> 'enabled': False, | |
> 'enabled_by_dependency': False | |
> } |
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/env python | |
class RuleSet(): | |
def __init__(self): | |
self._newRuleSet() | |
self.is_coherent = True | |
def _newRuleSet(self): | |
self.ruleset = {} |
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 | |
export PATH=/bin:/sbin:/usr/bin:/usr/sbin | |
function getFileConfig() | |
{ | |
local file_config="/etc/rundeck/rundeck-config.properties" | |
echo ${file_config} | |
} |
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/python | |
from xml.dom.minidom import parse | |
import argparse | |
import sys | |
import re | |
import os | |
class PomEditor(): |
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
// ==UserScript== | |
// @name stopjumpopr | |
// @namespace stopjumpopr | |
// @include https://opr.ingress.com/* | |
// @version 1 | |
// @grant none | |
// ==/UserScript== | |
document.body.innerHTML= document.body.innerHTML.replace(/answerCtrl\.goToLocation\(\'streetViewHeader\'\)/g,""); |
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
// ==UserScript== | |
// @name selectallstars | |
// @namespace selectallstars | |
// @include https://opr.ingress.com/recon | |
// @version 0.2 | |
// @grant none | |
// ==/UserScript== | |
var newButtons = document.createElement('div'); |
OlderNewer