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
In a world of bytes and lines, I tread, | |
A Staff Infrastructure Engineer, where I've led. | |
Clouds and code, my daily creed, | |
A journey woven with skills, it's my steed. | |
Kubernetes, Terraform, and Docker in my hand, | |
I sculpt infrastructure in a digital land. | |
AWS and GCP, clouds at my command, | |
With Ansible and Puppet, I firmly stand. |
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
apiVersion: extensions/v1beta1 | |
kind: Deployment | |
metadata: | |
name: tetris | |
spec: | |
replicas: 1 | |
template: | |
metadata: | |
labels: | |
app: tetris |
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
{ | |
"name": "ReStream Solutions API", | |
"license": "proprietary", | |
"type": "project", | |
"autoload": { | |
"psr-4": { | |
"": "src/" | |
}, | |
"classmap": [ | |
"app/AppKernel.php", |
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
<?xml version="1.0"?> | |
<catalog> | |
<book id="bk101"> | |
<author>Gambardella, Matthew</author> | |
<title>XML Developer's Guide</title> | |
<genre>Computer</genre> | |
<price>44.95</price> | |
<publish_date>2000-10-01</publish_date> | |
<description>An in-depth look at creating applications | |
with XML.</description> |
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
{ | |
"id": "0001", | |
"type": "donut", | |
"name": "Cake", | |
"ppu": 0.55, | |
"batters": | |
{ | |
"batter": | |
[ | |
{ "id": "1001", "type": "Regular" }, |
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
/** This table cannot include an auto incrementing numeric primary key **/ | |
alter table users partition by range(category_id)(partition p5 values less than (5), partition pn values less than maxvalue); |
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 urllib | |
import urllib2 | |
import json | |
import shelve | |
import random | |
from time import gmtime, strftime | |
from pprint import pprint | |
from datetime import datetime | |
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 | |
namespace Tib\CoreBundle\Job\Scheduler; | |
use \Resque; | |
use \Resque_Worker; | |
use \Resque_Job_Status; | |
use Tib\CoreBundle\Job\Data\Broker as DataBroker; | |
use Symfony\Component\DependencyInjection\ContainerInterface; |
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 | |
namespace Tib\CoreBundle\Service; | |
use Tib\CoreBundle\Db\DBCommon; | |
use Tib\CoreBundle\Model\Mix; | |
use Tib\CoreBundle\Model\User; | |
use Tib\CoreBundle\Model\MixComment; |
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 | |
namespace Tib\CoreBundle\Service; | |
use Aws\S3\S3Client; | |
use Tib\CoreBundle\Model\User; | |
use Aws\S3\Iterator\ListObjectsIterator; | |
use Tib\CoreBundle\Exception\UploadException; | |
use Aws\Common\Credentials\CredentialsInterface; | |
use Tib\CoreBundle\Exception\InvalidDataException; |
NewerOlder