This file contains hidden or 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
| # This is the configuration file for Ghostty. | |
| # | |
| # This template file has been automatically created at the following | |
| # path since Ghostty couldn't find any existing config files on your system: | |
| # | |
| # /Users/{USER_NAME}/Library/Application Support/com.mitchellh.ghostty/config | |
| # | |
| # The template does not set any default options, since Ghostty ships | |
| # with sensible defaults for all options. Users should only need to set | |
| # options that they want to change from the default. |
This file contains hidden or 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
| package argoworkflow | |
| #ArgoWorkflow: { | |
| @jsonschema(schema="http://json-schema.org/schema#") | |
| (#["io.argoproj.workflow.v1alpha1.ClusterWorkflowTemplate"] | #["io.argoproj.workflow.v1alpha1.CronWorkflow"] | #["io.argoproj.workflow.v1alpha1.Workflow"] | #["io.argoproj.workflow.v1alpha1.WorkflowEventBinding"] | #["io.argoproj.workflow.v1alpha1.WorkflowTemplate"]) & { | |
| @jsonschema(id="http://workflows.argoproj.io/workflows.json") | |
| ... | |
| } | |
| #: "eventsource.CreateEventSourceRequest": { |
This file contains hidden or 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
| [[source]] | |
| name = "pypi" | |
| url = "https://pypi.org/simple" | |
| verify_ssl = true | |
| [dev-packages] | |
| [packages] | |
| google-api-python-client = "*" | |
| requests = "*" |
This file contains hidden or 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
| [[source]] | |
| url = "https://pypi.org/simple" | |
| verify_ssl = true | |
| name = "pypi" | |
| [packages] | |
| pandas = "*" | |
| pyathena = {git = "https://github.com/laughingman7743/PyAthena.git", ref = "add_pandas_cursor"} | |
| [dev-packages] |
This file contains hidden or 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
| # Unless explicitly stated otherwise all files in this repository are licensed | |
| # under the Apache License Version 2.0. | |
| # This product includes software developed at Datadog (https://www.datadoghq.com/). | |
| # Copyright 2017 Datadog, Inc. | |
| from __future__ import print_function | |
| import base64 | |
| import gzip | |
| import json | |
| import logging |
This file contains hidden or 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
| .idea | |
| *.iml | |
| *.tfstate | |
| *.tfstate.backup | |
| .terraform | |
| */*/*/__*.tf | |
| !*/*/_template/__*.tf | |
| Pipfile.lock |
This file contains hidden or 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
| --- a/usr/local/lib/python2.7/site-packages/airflow/jobs.py | |
| +++ b/usr/local/lib/python2.7/site-packages/airflow/jobs.py | |
| @@ -35,7 +35,7 @@ import time | |
| from time import sleep | |
| import psutil | |
| -from sqlalchemy import Column, Integer, String, DateTime, func, Index, or_ | |
| +from sqlalchemy import Column, Integer, String, DateTime, func, Index, or_, and_ | |
| from sqlalchemy.exc import OperationalError | |
| from sqlalchemy.orm.session import make_transient |
This file contains hidden or 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
| FROM redash/redash:1.0.0.b2521 | |
| COPY ./supervisord.conf /opt/redash/supervisord/supervisord.conf | |
| COPY ./athena.py /opt/redash/current/redash/query_runner/athena.py | |
| RUN sed -i -e "s/'Copy of/u'Copy of/g" /opt/redash/current/redash/models.py \ | |
| && apt-get update \ | |
| && apt-get install -y software-properties-common \ | |
| && add-apt-repository ppa:openjdk-r/ppa \ | |
| && apt-get update \ |
This file contains hidden or 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
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| from __future__ import absolute_import | |
| from __future__ import unicode_literals | |
| import logging | |
| import time | |
| import paramiko | |
NewerOlder