Skip to content

Instantly share code, notes, and snippets.

View ultrasonex's full-sized avatar

Niloy Chakraborty ultrasonex

  • Intuit
  • Philadelphia
View GitHub Profile
{
"accomplishment_courses": [],
"accomplishment_honors_awards": [
{
"description": "Awarded “Gem of the Quarter” in 2013 for for building a custom tool named FASTRACK to observe data movement in Oracle SOA based application",
"issued_on": {
"day": 1,
"month": 10,
"year": 2013
},
@ultrasonex
ultrasonex / data-wrangling.ipynb
Created November 30, 2019 23:32
Created on Cognitive Class Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ultrasonex
ultrasonex / AWSCronValidator.py
Last active January 23, 2024 09:25
AWS Cron Validator : Schedule expression
# Author : Niloy Chakraborty
# AWS Schedule Expression cron expression validator
import re
from voluptuous import Invalid
import datetime
minute_regex = r"^([*]|([0]?[0-5]?[0-9]?)|(([0]?[0-5]?[0-9]?)(\/|\-)([0]?[0-5]?[0-9]?))|" \
"(([0]?[0-5]?[0-9]?)((\,)([0]?[0-5]?[0-9]?))*))$"