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
<?php | |
/* | |
This script can be used by a server to make fire and forget requests to any given url. | |
This script assumes you have access to $_COOKIE and $_SERVER variable passed along via the server. | |
GET and POST requests are supported. | |
POST can have an attached file to it. | |
Author: Mahesh Gattani ([email protected]) |
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 python | |
import rabbitpy | |
import time | |
import random | |
# | |
# This script uses the DLX and TTL concepts in RabbitMQ to create | |
# a back off and retry logic for queue consumer. | |
# | |
# This script nack's every message it gets without requeue and |
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
import sys | |
import subprocess | |
import getpass | |
from optparse import OptionParser | |
import requests | |
import json | |
''' | |
This script is useful for maintaining an easy SDLC process. | |
Using this script, the build master and quickly find all the Jira tickets |