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
Homebrew build logs for bigbang/tools-public/bbctl on macOS 15.1 | |
Build date: 2025-01-10 13:15:12 |
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
[5] pry(main)> def fname_matches?(person, match_this) | |
[5] pry(main)* person[:fname] == match_this | |
[5] pry(main)* end | |
=> :fname_matches? | |
[6] pry(main)> people = [{ fname: 'daniel', lname: 'pritchett' }, { fname: 'alice', lname: 'jones' }] | |
=> [{:fname=>"daniel", :lname=>"pritchett"}, {:fname=>"alice", :lname=>"jones"}] | |
[7] pry(main)> people.select { |person| fname_matches?(person, 'daniel') } | |
=> [{:fname=>"daniel", :lname=>"pritchett"}] |
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
title: User | |
type: object | |
properties: | |
uid: | |
type: string | |
description: Possibly received from our auth frontend. | |
diagnoses: | |
type: object | |
required: | |
- timestamp |
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
## Global Docker image parameters | |
## Please, note that this will override the image parameters, including dependencies, configured to use the global value | |
## Current available global Docker image parameters: imageRegistry and imagePullSecrets | |
## | |
# global: | |
# imageRegistry: myRegistryName | |
# imagePullSecrets: | |
# - myRegistryKeySecretName | |
# storageClass: myStorageClass |
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
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC75bkAbHHFRwpWZkaJoSZoka8awsGBmzEJhDBDAa0sYF2M7aBisSWFkp2cIjy9Q3ifHDlT7oEggASlvx42mStiC1pDTHAHVJXNxeAmtgTucGXCoBuaMMQ5eMgDJ5H8/WUkGLeRCWzcPUx627AlosCcK9biNTK1RJakNZKP8hWLTVllDTSjaNyc1OCb+vbV3K1L39hauffreqwoQFnZwH0ZcJa8OD74BtbHA1hbVL62NFdGGdibjg10zjz3bIP50K8HFeJN5lcfzrpuDwRfCYYYL19ujdlKaEjAE/2IpDkRwRx/+RhLeR6r1aTxMRw09R+jlcXjcf4yaZ52LmQP52NF dpritchett@hubertus-bigend |
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
e305b49 Removes freeze branch from client workload | |
9c71bde Merged in DEV-1833 (pull request #127) | |
281ebb0 Merged in djp/add-cam (pull request #126) | |
3baf3d8 Adds cam to reviewers list | |
e3dbcf7 Merged in add-ahmee-infra-pr (pull request #125) | |
0b1f976 Merged in DEV-1793-autogenerate-RC-PR-for-releases-repo (pull request #124) | |
8cf5489 Merged in pag/add-oppslevel-yaml (pull request #123) | |
7578412 Merged in djp/daily-releases (pull request #122) | |
27fcb44 Merged in DEV-1672/disable-freeze-schedule (pull request #121) | |
db4b4f8 Disable autofreeze and autopr schedules |
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
daniel_pritchett: | |
groups: | |
bitbucket: | |
- developers | |
github: | |
- developers | |
docker_hub: | |
- developers | |
logins: | |
bitbucket: dpritchettgremlin |
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 boto3 | |
from botocore.exceptions import ClientError | |
# from boto3 import ValidationException | |
import uuid | |
clt = boto3.client("events") | |
rule_name = f"cronValidationTestRule-{uuid.uuid1()}" |
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 gremlin_python | |
from gremlin_python.rest import ApiException | |
from pprint import pprint | |
import ipdb | |
import webbrowser | |
from time import sleep | |
from colors import * | |
API_KEY = ("0beccc88169060e9dbbd17583e10492dcbb48898de73f1a924481a556ab54419",) | |
WOW_DOT_GIF = "https://media1.tenor.com/images/c2a921072f98952c52042d6e28c72854/tenor.gif?itemid=9987719" |
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 gremlin_python | |
from gremlin_python.rest import ApiException | |
from pprint import pprint | |
import ipdb | |
import webbrowser | |
from time import sleep | |
from colors import * | |
API_KEY = ("0beccc88169060e9dbbd17583e10492dcbb48898de73f1a924481a556ab54419",) | |
WOW_DOT_GIF ='https://media1.tenor.com/images/c2a921072f98952c52042d6e28c72854/tenor.gif?itemid=9987719' |
NewerOlder