Skip to content

Instantly share code, notes, and snippets.

<?xml version="1.0" encoding="UTF-8"?>
<Response>
<Play>https://m360vt.zygote.cc/m360/m360-intro.ogg</Play>
</Response>
<?xml version="1.0" encoding="UTF-8"?>
<Response>
<Gather input="dtmf" timeout="5" numDigits="1" finishOnKey="5" action="https://gist.githubusercontent.com/dexterbt1/a9c63b79c1e697c52d417b4b8d3c71ac/raw/da9e63a70079e6d9868c2dca24ca4e6e6322776a/m360-intro-playback.xml">
<Play>https://m360vt.zygote.cc/m360/hi.ogg</Play>
</Gather>
<Play>https://m360vt.zygote.cc/m360/thankyoucall.ogg</Play>
</Response>
@dexterbt1
dexterbt1 / management-leadership.md
Created April 12, 2023 05:33
tuckerconnelly.com/management-leadership.md

Personal Principles and Process

On Culture and Environment

  • Some good values to promulgate: truth, caring for one another, radical candor, working hard, shipping.
  • A corporate culture is indispensable. “Someone adhering to the values of of the corporate culture—an intelligent corporate citizen—will behave consistently under similar conditions, which means that managers don’t have to suffer inefficiencies engendered by formal rules, procedures, and regulations that are sometimes used to get the same result.” ~ High Output Management
  • "Be wary of making too many rules. Rules can simplify life for managers, but they can be demeaning to the 95 percent who behave well. Don’t create rules to rein in the other 5 percent—address abuses of common sense individually. This is more work but ultimately healthier." ~ Creativity, Inc.
  • Set a clear vision for the team. (From Google's Project Oxygen)
  • Building a culture of continuous shipping can create a flywheel effect (from Good to Great). You can promote this b
@dexterbt1
dexterbt1 / tailfts.pl
Last active August 10, 2022 15:15
tail -f file with strftime filename path pattern + watch for new files
#!/usr/bin/perl -T
use strict;
use POSIX qw/strftime/;
my $DEBUG = defined($ENV{TAILFTS_DEBUG}) ? $ENV{TAILFTS_DEBUG} : 1;
my $LOGGER = sub { $DEBUG && print STDERR strftime("%Y-%m-%dT%H:%M:%S ", localtime(time())), @_; };
my $parent = $$;
my $USAGE = "USAGE: $0 <path/to/filename_pattern>\n";
@dexterbt1
dexterbt1 / worker.py
Created May 23, 2018 10:16
stomp worker pattern
import sys
import uuid
import threading
import stomp
class BcastMTWorkerListener(stomp.ConnectionListener):
def __init__(self, conn, receipt_waiting):
@dexterbt1
dexterbt1 / machine.py
Created June 13, 2017 04:12 — forked from nathanleclaire/machine.py
Ansible dynamic inventory plugin for Docker Machine
#!/usr/bin/env python
"""
Example Usage:
$ ansible -i machine.py machinename -m ping
"""
import argparse
import subprocess
#!/usr/bin/env perl
use strict;
use Date::Parse::Lite;
## See this module: http://search.cpan.org/~gbarr/TimeDate-2.30/lib/Date/Parse.pm
my @user_inputs = (
'9-14-2016',
'9 14 2016',
'9.14.2016',
Job Title:
Developer
Overall Description:
Develop, maintain, extend, and operate Platform and Services for Mobile, Voice and Web.
Background:
We are IG Group of Companies, a specialist technology group focused in helping our clients make
a difference in the Mobile / Telco / Internet space. We have always been pioneering innovators
and have consistently maintained leadership in the industry; seen as top-of-mind, go-to partners
@dexterbt1
dexterbt1 / maven.m2eclipse.gitignore
Created March 24, 2016 05:04
Maven and m2eclipse .gitignore template
.classpath
.project
.settings/
target/
pom.xml.tag
pom.xml.releaseBackup
pom.xml.versionsBackup
pom.xml.next
release.properties
dependency-reduced-pom.xml
@dexterbt1
dexterbt1 / start-up-names.sh
Last active August 29, 2015 14:10
Configure EC2 instances on boot to update their CNAMEs in Route53
#!/bin/bash
# start-up-names.sh
# http://blog.domenech.org
logger start-up-name.sh Started
#More environment variables than we need but... we always do that
export AWS_CREDENTIAL_FILE=/opt/aws/apitools/mon/credential-file-path.template
export AWS_CLOUDWATCH_HOME=/opt/aws/apitools/mon
export AWS_IAM_HOME=/opt/aws/apitools/iam