I hereby claim:
- I am tomoconnor on github.
- I am tomoconnor (https://keybase.io/tomoconnor) on keybase.
- I have a public key ASASatiZo2250rRQoB7rQwC75XxMXmmOKKDHBC0G331oKAo
To claim this, I am signing this object:
| ### Ingredients: | |
| - 350g pasta (penne, fusilli, or rigatoni work well) | |
| - 2 tablespoons olive oil | |
| - 1 large red bell pepper, diced | |
| - 1 large green bell pepper, diced | |
| - 1 large onion, finely chopped | |
| - 4 cloves garlic, minced | |
| - Salt and freshly ground black pepper, to taste | |
| - 1 teaspoon Italian seasoning |
| #!/usr/bin/env python | |
| import MySQLdb | |
| import os, sys | |
| import pprint | |
| pp = pprint.PrettyPrinter() | |
| mysql_host = "localhost" | |
| mysql_user = "dbusername" | |
| mysql_pass = "dbpassword" |
I hereby claim:
To claim this, I am signing this object:
| <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
| <modelVersion>4.0.0</modelVersion> | |
| <groupId>org.example</groupId> | |
| <artifactId>jpademo</artifactId> | |
| <version>1.0</version> | |
| <packaging>jar</packaging> | |
| <scm> |
| #!/usr/bin/env python | |
| import os | |
| from munin import MuninPlugin | |
| class TmpFileCount(MuninPlugin): | |
| title = "Number of Files in /tmp" | |
| args = "--base 1000 -l 0" | |
| vlabel = "files" | |
| scaled = False |
| For a number of years now, work has been proceeding in order to bring perfection to the crudely concieved idea of a container | |
| orchestration platform that would not only supply inverse reactive containerisation | |
| for use in multicameral storage consolidation, but would also be capable of sharding cardinal load balancers. | |
| Such an instrument is the kubernetes turboencabulator operator. | |
| Now basically the only new principle involved is that instead of storage being created via the | |
| relative motion of bits and nibbles, it is produced by the modial interaction of multicameral storage instances. | |
| The original instance had a base image with cross-compiled kernels surmounted | |
| with logarithmic metadata integration in such a way that the two processing sidecars |
| #### Requires #### | |
| # goslate==1.3.0 | |
| # polib==1.0.5 | |
| #### / #### | |
| import os, sys | |
| import goslate | |
| import argparse | |
| import polib |
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| # vim:fileencoding=utf-8 | |
| # vim:tabstop=2 | |
| from random import Random | |
| from optparse import OptionParser | |
| from pydhcplib.dhcp_packet import DhcpPacket | |
| from pydhcplib.dhcp_network import DhcpClient | |
| from pydhcplib.type_hw_addr import hwmac |
| """ | |
| Backend for Gov.Notify | |
| """ | |
| from django.core import mail | |
| from django.core.mail.backends.base import BaseEmailBackend | |
| from notifications_python_client.notifications import NotificationsAPIClient | |
| from django.conf import settings |
| #!/usr/bin/enr python | |
| import time | |
| import MySQLdb | |
| import pprint | |
| from optparse import OptionParser | |
| mysql_user = "<USER>" | |
| mysql_host = "localhost" | |
| mysql_pass = "<PASSWORD>" | |
| mysql_db = "<DATABASE>" |