I hereby claim:
- I am lawouach on github.
- I am lawouach (https://keybase.io/lawouach) on keybase.
- I have a public key ASD72Eko0MJWr1ocZK15NISlO1NzreYQjiFxCMa8yCy_EAo
To claim this, I am signing this object:
| { | |
| "version": "1.0.0", | |
| "title": "do stuff", | |
| "description": "n/a", | |
| "secrets": { | |
| "myticketing": { | |
| "token": "12345" | |
| } | |
| }, | |
| "controls": [ |
| """ | |
| Control that starts a thread in a background to perform some sort of bespoke | |
| monitoring that interrupts the execution of the experiment as soon as possible | |
| during the method. | |
| To use in your experiment add the following to your experiment: | |
| ```json | |
| "controls": [ | |
| { |
I hereby claim:
To claim this, I am signing this object:
Until version 8.0.0a1 of the Python client for Kubernetes, we had to rely on creating a service account to allow connection via that client (basically any non-Go client) to a EKS cluster.
With this new release, this is now possible as it implements port-exec authentication.
Here are the instructions to roll:
| import { Microgrammar } from "@atomist/microgrammar/Microgrammar"; | |
| import { Opt } from "@atomist/microgrammar/Ops"; | |
| const csv = `FirstName,LastName,Gender | |
| Patrick, Henry, Male | |
| Grace, 'O''Malley', Female | |
| Fred, "Flintstone, esq.", Male | |
| `; | |
| interface Individual { |
| # -*- coding: utf-8 -*- | |
| from typing import Dict, Any | |
| from .rugpy.stuff import echo | |
| __all__ = ["editor"] | |
| def edit(project: Any, params: Dict[str, str]) -> Dict[str, str]: | |
| """ | |
| Add a new method to a Python module. |
| # -*- coding: utf-8 -*- | |
| from typing import Dict, Any | |
| __all__ = ["editor"] | |
| def edit(project: Any, params: Dict[str, str]) -> Dict[str, str]: | |
| """ | |
| Update each class name of a project with a new suffix. | |
| """ |
| # -*- coding: utf-8 -*- | |
| from typing import Dict, Any | |
| __all__ = ["editor"] | |
| def edit(project: Any, params: Dict[str, str]) -> Dict[str, str]: | |
| """ | |
| Log the project's name | |
| """ |
| # -*- coding: utf-8 -*- | |
| import argparse | |
| import random | |
| import os | |
| import cherrypy | |
| from ws4py.server.cherrypyserver import WebSocketPlugin, WebSocketTool | |
| from ws4py.websocket import WebSocket | |
| from ws4py.messaging import TextMessage |