I hereby claim:
- I am rdefreitas on github.
- I am rondefreitas (https://keybase.io/rondefreitas) on keybase.
- I have a public key ASDSqOsxWXTIzriENV5zDmfhY8JIKtzAZnf9ToDiItep4go
To claim this, I am signing this object:
| # cadence_delta_test.py | |
| from datetime import timedelta, datetime | |
| from pydantic import BaseModel | |
| from pydantic_core import core_schema | |
| from pydantic import GetCoreSchemaHandler | |
| import re | |
| # Duration parsing | |
| _TIME_UNITS = { |
| // ==UserScript== | |
| // @name Databricks Environment Banner | |
| // @source https://gist.githubusercontent.com/rondefreitas/05ae8c35bac3e429ec9624255fd88a2f | |
| // @namespace https://gist.githubusercontent.com/rondefreitas/05ae8c35bac3e429ec9624255fd88a2f | |
| // @updateURL https://gist.githubusercontent.com/rondefreitas/05ae8c35bac3e429ec9624255fd88a2f/raw/DBENV.user.js | |
| // @downloadURL https://gist.githubusercontent.com/rondefreitas/05ae8c35bac3e429ec9624255fd88a2f/raw/DBENV.user.js | |
| // @supportURL https://gist.githubusercontent.com/rondefreitas/05ae8c35bac3e429ec9624255fd88a2f#new_comment_field | |
| // @version 0.50 | |
| // @description Display Colored Banners for Databricks AWS Workspaces based on Subdomain | |
| // @author Ron DeFreitas |
I hereby claim:
To claim this, I am signing this object:
| #! /bin/bash | |
| USER=$1 | |
| PASS=$2 | |
| usermod --password $(echo $PASS | openssl passwd -1 -stdin) $USER |
| public interface IGoogleApiRequest | |
| { | |
| string ShowMyKey(); | |
| } | |
| public class GoogleApiRequest : IGoogleApiRequest | |
| { | |
| private readonly IGoogleApiSettings _settings; | |
| public GoogleApiRequest(IGoogleApiSettings settings) { |