Skip to content

Instantly share code, notes, and snippets.

View tirumaraiselvan's full-sized avatar

Tirumarai Selvan tirumaraiselvan

View GitHub Profile
Model's response:
Below is a Python script that takes the ticket data and the comment data (exactly as provided in the system messages above), computes each ticket’s “resolution time” in hours based on your stated rules, and finally prints the average of those times. I have inlined the data so everything is self-contained. At the end of the script’s run, it will print a single floating-point number: the average resolution time in hours.
────────────────────────────────────────────────────────────────────────
INSTRUCTIONS TO RUN LOCALLY
────────────────────────────────────────────────────────────────────────
1. Copy/paste the entire script below into a file (e.g. compute_avg_resolution.py).
2. Make sure you have Python 3 installed, along with the “python-dateutil” library (or you can adapt the parsing to your own datetime library).
3. Run:
python compute_avg_resolution.py
@tirumaraiselvan
tirumaraiselvan / mssql.sh
Created July 11, 2024 13:14
Bash script to start a local MS SQL Server
#!/usr/bin/env bash
set -euo pipefail
shopt -s globstar
# for extended case patterns:
shopt -s extglob
echo_pretty() {
echo ">>> $(tput setaf 2)$1$(tput sgr0)"
}
@tirumaraiselvan
tirumaraiselvan / deployment.yaml
Last active October 4, 2020 04:42
tcpdump kubernetes
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: hasura
hasuraService: custom
name: hasura
namespace: default
spec:
replicas: 1
;; -*- mode: emacs-lisp -*-
;; This file is loaded by Spacemacs at startup.
;; It must be stored in your home directory.
(defun dotspacemacs/layers ()
"Configuration Layers declaration.
You should not put any user code in this function besides modifying the variable
values."
(setq-default
;; Base distribution to use. This is a layer contained in the directory
@tirumaraiselvan
tirumaraiselvan / shim.js
Last active July 31, 2023 17:05
Mount Hasura on Apollo federated gateway
const { ApolloServer } = require("apollo-server");
const gql = require("graphql-tag");
const fetch = require("node-fetch");
const {
introspectionQuery,
buildClientSchema,
printSchema
} = require("graphql");
const typeDefs = gql`
@tirumaraiselvan
tirumaraiselvan / deploy.sh
Created March 7, 2019 10:42
Bash script to package and deploy Lambda and then link it with API Gateway route
#!/usr/bin/env bash
set -o nounset
set -o errexit
set -o pipefail
current_function="$1"
current_build="${current_function}_${DEPLOY_ENVIRONMENT}"
cd $current_function
@tirumaraiselvan
tirumaraiselvan / config.yml
Created March 7, 2019 10:14
CircleCI config to build lambdas
version: 2
jobs:
build_dev:
working_directory: ~/project
docker:
- image: buildpack-deps:xenial
environment:
DEPLOY_ENVIRONMENT: dev
steps:
- checkout
@tirumaraiselvan
tirumaraiselvan / setupadmissionwebhook.md
Last active July 30, 2024 18:21
Setup admission webhooks in Kubernetes
@tirumaraiselvan
tirumaraiselvan / datanode-stateful-set.yaml
Created February 9, 2018 09:04
Datanode stateful-set
- apiVersion: apps/v1beta1
kind: StatefulSet
metadata:
labels:
app: datanode
hasuraService: custom
name: datanode
namespace: default
spec:
serviceName: "datanode"
@tirumaraiselvan
tirumaraiselvan / service.yaml
Last active February 9, 2018 08:28
Namenode service
- apiVersion: v1
kind: Service
metadata:
app: namenode
hasuraService: custom
name: namenode
namespace: default
spec:
ports:
- port: 8020 #map service port 8020 to pod port 8020