doc_id stringlengths 36 36 | metadata dict | input stringlengths 28 4.3k | output stringlengths 11 5.45k |
|---|---|---|---|
807d48cf-4701-4335-833e-b8b7f2b3f97a | {
"language": "YAML"
} | ```yaml
- type: replace
path: /instance_groups/name=bosh/properties/postgres/additional_databases?/-
value: powerdns
- type: replace
path: /instance_groups/name=bosh/jobs/-
value:
name: powerdns
release: bosh
properties:
dns:
address: 127.0.0.1
db:
database: powerdns... | ```yaml
- type: replace
path: /instance_groups/name=bosh/properties/postgres/additional_databases?/-
value: powerdns
- type: replace
path: /instance_groups/name=bosh/jobs/-
value:
name: powerdns
release: bosh
- type: replace
path: /instance_groups/name=bosh/properties/dns?
value:
address: 127.... |
18bdcdbe-921b-4f9c-97b2-a594e93762a8 | {
"language": "YAML"
} | ```yaml
imports:
- { resource: config_dev.yml }
parameters:
site.multilanguage: true
framework:
test: ~
session:
storage_id: session.storage.mock_file
profiler:
collect: false
router:
resource: "%kernel.project_dir%/app/config/routing_install.yml"
web_profiler:
too... | ```yaml
imports:
- { resource: config_dev.yml }
parameters:
site.multilanguage: true
framework:
test: ~
session:
storage_id: session.storage.mock_file
profiler:
collect: false
router:
resource: "%kernel.project_dir%/app/config/routing_install.yml"
web_profiler:
too... |
0b12011b-13c6-45cd-89ef-fd91e4e9e888 | {
"language": "YAML"
} | ```yaml
declared-services:
conversation-service:
label: conversation
plan: free
cloudantNoSQLDB-service:
label: cloudantNoSQLDB
plan: Lite
Discovery-service:
label: discovery
plan: free
applications:
- services:
- conversation-service
- cloudantNoSQLDB-service
- Discovery-service
... | ```yaml
declared-services:
wos-conversation-service:
label: conversation
plan: free
wos-cloudantNoSQLDB-service:
label: cloudantNoSQLDB
plan: Lite
wos-discovery-service:
label: discovery
plan: free
applications:
- services:
- wos-conversation-service
- wos-cloudantNoSQLDB-service
... |
8f8847d7-80fe-4c09-a3fc-c0bfb6dc42a1 | {
"language": "YAML"
} | ```yaml
applications:
- name: clumsy-bird-docker
docker_image: stackatoapps/clumsy-bird:latest
memory: 64M
```
Increase memory to 128 to prevent clumsy flapping | ```yaml
applications:
- name: clumsy-bird-docker
docker_image: stackatoapps/clumsy-bird:latest
memory: 128M
``` |
95ca1c8c-5ca1-486a-b59d-3c18def0b650 | {
"language": "YAML"
} | ```yaml
name: intl
version: 0.16.0-dev
author: Dart Team <misc@dartlang.org>
homepage: https://github.com/dart-lang/intl
description: >-
Contains code to deal with internationalized/localized messages, date and
number formatting and parsing, bi-directional text, and other
internationalization issues.
environment... | ```yaml
name: intl
version: 0.16.0
author: Dart Team <misc@dartlang.org>
homepage: https://github.com/dart-lang/intl
description: >-
Contains code to deal with internationalized/localized messages, date and
number formatting and parsing, bi-directional text, and other
internationalization issues.
environment:
... |
4a6c83af-4e05-4237-8d4c-748a363ee7d4 | {
"language": "YAML"
} | ```yaml
- defaults:
link:
relink: true
- clean: ['~']
- link:
~/.gitconfig: gitconfig_local
~/.zshrc: zshrc
~/.oh-my-zsh: oh-my-zsh
~/.fzf: fzf
~/.fzf.bash: fzf.bash
~/.fzf.zsh: fzf.zsh
~/.vimrc: vimconf/.vimrc
~/.vim: vim
~/.vimrc.first: vimrc/vimrc.first
~/.vimrc.la... | ```yaml
- defaults:
link:
relink: true
- clean: ['~']
- link:
~/.gitconfig: gitconfig_local
~/.zshrc: zshrc
~/.oh-my-zsh: oh-my-zsh
~/.fzf: fzf
~/.fzf.bash: fzf.bash
~/.fzf.zsh: fzf.zsh
~/.vimrc: vimconf/.vimrc
~/.vim: vim
~/.vimrc.first: vimrc/vimrc.first
~/.vimrc.la... |
6c57ca3f-0791-4550-9358-5385b15384e6 | {
"language": "YAML"
} | ```yaml
defaults: &defaults
site_url: focal.yourdomain.com
development:
<<: *defaults
site_url: focal.dev
test:
<<: *defaults
site_url: focal.test
production:
<<: *defaults```
Use env FOCAL_SITE_URL for correct notifications | ```yaml
defaults: &defaults
site_url: focal.yourdomain.com
development:
<<: *defaults
site_url: focal.dev
test:
<<: *defaults
site_url: focal.test
production:
<<: *defaults
site_url: <%= ENV['FOCAL_SITE_URL'] %>``` |
6c752b9e-4501-416c-ad77-6a371388f6b9 | {
"language": "YAML"
} | ```yaml
# PostgreSQL. Versions 9.1 and up are supported.
#
# Install the pg driver:
# gem install pg
# On OS X with Homebrew:
# gem install pg -- --with-pg-config=/usr/local/bin/pg_config
# On OS X with MacPorts:
# gem install pg -- --with-pg-config=/opt/local/lib/postgresql84/bin/pg_config
# On Windows:
# gem ... | ```yaml
# PostgreSQL. Versions 9.1 and up are supported.
#
# Install the pg driver:
# gem install pg
# On OS X with Homebrew:
# gem install pg -- --with-pg-config=/usr/local/bin/pg_config
# On OS X with MacPorts:
# gem install pg -- --with-pg-config=/opt/local/lib/postgresql84/bin/pg_config
# On Windows:
# gem ... |
adc4c3e8-5ef8-4a52-a3d2-16ebd0cbd2df | {
"language": "YAML"
} | ```yaml
imports:
- { resource: '../../../../vendor/symplify/easy-coding-standard/config/set/psr12.yaml' }
- { resource: '../../../../vendor/symplify/easy-coding-standard/config/set/clean-code.yaml' }
- { resource: '../../../../vendor/symplify/easy-coding-standard/config/set/symfony.yaml' }
parameters:
... | ```yaml
imports:
- { resource: '../../../../vendor/symplify/easy-coding-standard/config/set/psr12.yaml' }
- { resource: '../../../../vendor/symplify/easy-coding-standard/config/set/clean-code.yaml' }
- { resource: '../../../../vendor/symplify/easy-coding-standard/config/set/symfony.yaml' }
parameters:
... |
b33b005e-86cb-4c0a-b77b-ff24eb305220 | {
"language": "YAML"
} | ```yaml
homepage: https://github.com/tonymorris/diet
changelog-type: ''
hash: a8744806178b5c854eebdcc8c4c3ef3b75e3e7752366d9fd8289dd5cb5bf4ead
test-bench-deps: {}
maintainer: Tony Morris
synopsis: Discrete Interval Encoding Tree
changelog: ''
basic-deps:
base: <5 && >=3
all-versions:
- '0.0.1'
author: Tony Morris <ʇǝ... | ```yaml
homepage: https://github.com/andrewthad/primitive-containers/
changelog-type: ''
hash: 552feee9a0147154e174f10cb56491aa42937876019f59ecd970e7cbd7a86715
test-bench-deps:
base: -any
quickcheck-classes: ! '>=0.4.11.1'
containers: -any
diet: -any
tasty-quickcheck: -any
tasty: -any
QuickCheck: -any
p... |
01bdc39c-2507-4fe0-a7c6-9a77e3a6d26e | {
"language": "YAML"
} | ```yaml
homepage: ''
changelog-type: ''
hash: 242f77aa05765079ffd60f49648ebb85234f45e538b77dc1ccc0e9155d7b2945
test-bench-deps: {}
maintainer: chessai1996@gmail.com
synopsis: TBA
changelog: ''
basic-deps: {}
all-versions:
- '0.0.0'
author: chessai
latest: '0.0.0'
description-type: markdown
description: ! '# freq
Cu... | ```yaml
homepage: https://github.com/chessai/freq
changelog-type: ''
hash: 6f50016c0c72a167c4702d5308d68611b23b437c5edd6996bd0058ff094e4b7c
test-bench-deps:
bytestring: -any
base: ! '>=4.7 && <5'
hedgehog: -any
gauge: -any
containers: -any
freq: -any
maintainer: dcartwright@layer3com.com
synopsis: Are you r... |
d25a9bcb-448c-4e7e-9c8d-69586f37b2fc | {
"language": "YAML"
} | ```yaml
homepage: ''
changelog-type: markdown
hash: 2e5c1008a8f6a2d369300bc50d892a32c38afb296a179861bc5cbfa5c26cfba2
test-bench-deps: {}
maintainer: ghc-devs@haskell.org
synopsis: The library supporting GHC's interactive interpreter
changelog: ! "## 8.0.1 *Feb 2016*\n\n * Bundled with GHC 8.0.1\n\n * Initial version... | ```yaml
homepage: ''
changelog-type: markdown
hash: 992fdd7e5ad599e452c33515f1d24bcdf47c8d007a383d1fe9381370aab807af
test-bench-deps: {}
maintainer: ghc-devs@haskell.org
synopsis: The library supporting GHC's interactive interpreter
changelog: ! "## 8.0.2 *Jan 2017*\n\n * Bundled with GHC 8.0.2\n\n * Tag pointers
... |
8dfefb55-38c5-44d2-a592-f2bfafa9704d | {
"language": "YAML"
} | ```yaml
homepage: ''
changelog-type: markdown
hash: d985ebbceda2032428656e066ac2caf9c25fd3efb12bc3f7c5164e42494e7675
test-bench-deps: {}
maintainer: dan.firth@homotopic.tech
synopsis: Polysemy versions of Path functions.
changelog: |
# Changelog for polysemy-path
## v0.0.1.0
* Add polysemy versions of parsing f... | ```yaml
homepage: ''
changelog-type: markdown
hash: aebad3d8a49af1d8b1191a8f02b93c936c2f639b8491edaf33d6368dbb3477fe
test-bench-deps: {}
maintainer: dan.firth@homotopic.tech
synopsis: Polysemy versions of Path functions.
changelog: |
# Changelog for polysemy-path
## v0.1.0.0
* Make functions sign `PathException... |
7610ce80-6e5a-4cff-8670-66e1c561f974 | {
"language": "YAML"
} | ```yaml
---
lv:
data:
pv: '/dev/sdb1'
vg: 'rabbitmq'
mount:
/mnt/apt:
disk: '/dev/mapper/rabbitmq-data'
govuk_lvm: 'data'
mountoptions: 'defaults'
rabbitmq::config_kernel_variables:
'inet_dist_listen_min': '9100'
'inet_dist_listen_max': '9105'
rabbitmq::config_mirrored_queues: true
rabbit... | ```yaml
---
lv:
data:
pv: '/dev/sdb1'
vg: 'rabbitmq'
mount:
/mnt/apt:
disk: '/dev/mapper/rabbitmq-data'
govuk_lvm: 'data'
mountoptions: 'defaults'
rabbitmq::config_cluster: true
rabbitmq::config_kernel_variables:
'inet_dist_listen_min': '9100'
'inet_dist_listen_max': '9105'
rabbitmq::conf... |
f092fab9-f045-4c75-bb2d-b92b55c83777 | {
"language": "YAML"
} | ```yaml
# Configuration schema version 1.
version: 1
functions:
test-0.1:
runtime: python3.6
build:
source: src/hello_world
requirements:
- file: requirements.txt
use_docker: false
compile_dependencies: false
package: build/hello_world.zip
deploy:
description... | ```yaml
# Configuration schema version 1.
version: 1
functions:
test-0.1:
runtime: python3.6
build:
source: src/hello_world
requirements:
- file: requirements.txt
use_docker: false
compile_dependencies: false
package: build/hello_world.zip
ignore:
- "*.py[... |
13e31b81-7ab5-4e8a-9d8f-731234fa2158 | {
"language": "YAML"
} | ```yaml
# whether to install directly from pypi or from git
# if installed from git, the pip install will be editable
girder_worker_install_source: "pypi" # must be one of pypi, git
# versions to install, pypi will default to latest
girder_worker_pypi_version: null
girder_worker_git_version: "master"
# path to virtua... | ```yaml
# whether to install directly from pypi or from git
# if installed from git, the pip install will be editable
girder_worker_install_source: "pypi" # must be one of pypi, git
# versions to install, pypi will default to latest
girder_worker_git_version: "master"
# path to virtualenv to install into, will be cre... |
6fbe69b8-4ef5-47d2-8d31-0fe37d0e9c12 | {
"language": "YAML"
} | ```yaml
formats:
- pdf
requirements_file: requirements_rtfd.txt
python:
version: 3
setup_py_install: true
```
Add RTD Python 3.6 support. | ```yaml
build:
image: latest
formats:
- pdf
requirements_file: requirements_rtfd.txt
python:
version: 3.6
setup_py_install: true
``` |
8f07d7d6-62ff-41c0-8b59-35fa5bf94c6d | {
"language": "YAML"
} | ```yaml
{% set version = "0.2" %}
package:
name: isstools
version: {{ version }}
source:
git_url: https://github.com/NSLS-II-ISS/isstools
git_rev: v{{ version }}
build:
number: 0
script: python setup.py install --single-version-externally-managed --record=record.txt
skip: True # [py2k]
requirements:
... | ```yaml
{% set version = "0.3" %}
package:
name: isstools
version: {{ version }}
source:
git_url: https://github.com/NSLS-II-ISS/isstools
git_rev: v{{ version }}
build:
number: 0
script: python setup.py install --single-version-externally-managed --record=record.txt
skip: True # [py2k]
requirements:
... |
fab9903e-3f0d-4489-a9d7-b5d85590d7cd | {
"language": "YAML"
} | ```yaml
skip-godeps: true
rules:
- destination: kubernetes
branches:
- name: origin-4.0-kubernetes-1.11.1
source:
branch: master
dir: vendor/k8s.io/kubernetes
- name: origin-3.10-kubernetes-1.10.2
source:
branch: release-3.10
dir: vendor/k8s.io/kubernetes
- name: release-1.9.1
... | ```yaml
skip-godeps: true
rules:
- destination: kubernetes
branches:
- name: origin-4.0-kubernetes-1.12.4
source:
branch: master
dir: vendor/k8s.io/kubernetes
- name: origin-3.10-kubernetes-1.10.2
source:
branch: release-3.10
dir: vendor/k8s.io/kubernetes
- name: release-1.9.1
... |
733f89df-09a4-43c3-ad14-6e9b5428bec1 | {
"language": "YAML"
} | ```yaml
version: 0.1
phases:
build:
commands:
- echo "Build started"
- ./bin/build
```
Add compiled output to artifacts | ```yaml
version: 0.1
phases:
build:
commands:
- echo "Build started"
- ./bin/build
artifacts:
files:
- hhttpserver
``` |
f09a527a-05f6-419e-a4ec-d7b9bc3ceac4 | {
"language": "YAML"
} | ```yaml
id: mimekit
name: MimeKit
version: 1.0.13.0
publisher: Jeffrey Stedfast
publisher-url: http://github.com/jstedfast/MimeKit
getting-started: GettingStarted.md
details: Details.md
license: ../License.md
summary: A complete MIME library with support for S/MIME and PGP.
icons:
- mimekit_512x512.png
- mimekit_12... | ```yaml
id: mimekit
name: MimeKit
version: 1.0.13.0
publisher: Jeffrey Stedfast
publisher-url: http://github.com/jstedfast/MimeKit
getting-started: GettingStarted.md
details: Details.md
license: ../License.md
summary: A complete MIME library with support for S/MIME and PGP.
icons:
- mimekit_512x512.png
- mimekit_12... |
7557c3e6-ce1d-4a8d-bc85-4f5ae17b6b9b | {
"language": "YAML"
} | ```yaml
{% set name = "ele" %}
{% set version = "0.1.0" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://github.com/rsdefever/ele/archive/v{{ version }}.tar.gz
sha256: 72ca474140b147d501df11c046d09978c7f4f8473e9c927b11ce854e69054d2c
build:
noarch: python
number: 0
script: ... | ```yaml
{% set name = "ele" %}
{% set version = "0.1.0" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://github.com/rsdefever/ele/archive/v{{ version }}.tar.gz
sha256: 72ca474140b147d501df11c046d09978c7f4f8473e9c927b11ce854e69054d2c
build:
noarch: python
number: 0
script: ... |
9b9c53ac-5657-4152-bd55-9d3d70764e83 | {
"language": "YAML"
} | ```yaml
Categories:
- Time
License: MIT
AuthorWebSite: https://minar.ml/
SourceCode: https://github.com/m-i-n-a-r/birday
IssueTracker: https://github.com/m-i-n-a-r/birday/issues
Changelog: https://github.com/m-i-n-a-r/birday/releases
AutoName: Birday
RepoType: git
Repo: https://github.com/m-i-n-a-r/birday
Builds:
... | ```yaml
Categories:
- Time
License: MIT
AuthorWebSite: https://minar.ml/
SourceCode: https://github.com/m-i-n-a-r/birday
IssueTracker: https://github.com/m-i-n-a-r/birday/issues
Changelog: https://github.com/m-i-n-a-r/birday/releases
AutoName: Birday
RepoType: git
Repo: https://github.com/m-i-n-a-r/birday
Builds:
... |
4db87835-77b8-4ab0-a18f-61c8865a0b5f | {
"language": "YAML"
} | ```yaml
version: "3.2"
services:
lapi:
build:
context: .
dockerfile: lapi.dockerfile
restart: unless-stopped
enviroment:
- BROKER_HOST: mqtt.lambdaspace.gr
- BROKER_PORT: 1883
- MQTT_TOPIC_HACKERS: "lambdaspace/spacestatus/hackers"
- MQTT_TOPIC_STATS: "lambdaspace/spac... | ```yaml
version: "3.2"
services:
lapi:
build:
context: .
dockerfile: lapi.dockerfile
restart: unless-stopped
enviroment:
- BROKER_HOST: mqtt.lambdaspace.gr
- BROKER_PORT: 1883
- MQTT_TOPIC_HACKERS: "lambdaspace/spacestatus/hackers"
- MQTT_TOPIC_STATS: "lambdaspace/spac... |
70646e05-69dc-44dc-933c-493830179245 | {
"language": "YAML"
} | ```yaml
init:
- git config --global core.autocrlf true
branches:
only:
- master
- release
- dev
- /^(.*\/)?ci-.*$/
- /^rel\/.*/
build_script:
- ps: .\run.ps1 default-build
clone_depth: 1
environment:
global:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
DOTNET_CLI_TELEMETRY_OPTOUT: 1
test:... | ```yaml
init:
- git config --global core.autocrlf true
branches:
only:
- master
- release
- dev
- /^(.*\/)?ci-.*$/
- /^rel\/.*/
build_script:
- ps: .\run.ps1 default-build
clone_depth: 1
environment:
global:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
DOTNET_CLI_TELEMETRY_OPTOUT: 1
test:... |
19edcc99-713f-4ca2-9ae1-bd2d804300b7 | {
"language": "YAML"
} | ```yaml
root: true
extends: semistandard
rules:
indent:
- error
- 4
camelcase: off
padded-blocks: off
operator-linebreak: off
no-throw-literal: off
linebreak-style:
- error
- unix
```
Add ESLint rule against unhandled promises | ```yaml
root: true
extends: semistandard
rules:
indent:
- error
- 4
camelcase: off
padded-blocks: off
operator-linebreak: off
no-throw-literal: off
linebreak-style:
- error
- unix
promise/catch-or-return: error
``` |
8720de40-7c3b-4daf-b61b-c094ba63bcd0 | {
"language": "YAML"
} | ```yaml
env:
browser: true
es6: false
extends: "eslint:recommended"
globals:
$: readonly
App: readonly
annotator: readonly
c3: readonly
CKEDITOR: readonly
L: readonly
Turbolinks: readonly
parserOptions:
ecmaVersion: 5
rules:
array-bracket-spacing: error
block-spacing: error
brace-style: error
... | ```yaml
env:
browser: true
es6: false
extends: "eslint:recommended"
globals:
$: readonly
App: readonly
annotator: readonly
c3: readonly
CKEDITOR: readonly
L: readonly
Turbolinks: readonly
parserOptions:
ecmaVersion: 5
rules:
array-bracket-spacing: error
block-spacing: error
brace-style: error
... |
0efa10cc-86ac-4b01-8fd2-f5a44320aa4a | {
"language": "YAML"
} | ```yaml
bigtop::bigtop_repo_gpg_check: true
bigtop::bigtop_repo_apt_key: "01621A73025BDCA30F4159C62922A48261524827"
bigtop::bigtop_repo_yum_key_url: "https://dlcdn.apache.org/bigtop/KEYS"
bigtop::bigtop_repo_default_version: "3.1.0"
```
Update default values in hieradata for release 3.1.1 | ```yaml
bigtop::bigtop_repo_gpg_check: true
bigtop::bigtop_repo_apt_key: "01621A73025BDCA30F4159C62922A48261524827"
bigtop::bigtop_repo_yum_key_url: "https://dlcdn.apache.org/bigtop/KEYS"
bigtop::bigtop_repo_default_version: "3.1.1"
``` |
2a222401-e0f8-4bb7-be22-e7abb9aeac8e | {
"language": "YAML"
} | ```yaml
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/PyCQA/bandit
rev: 'master'
hooks:
- id: bandit
```
Install a few more pre-commit hooks | ```yaml
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/asottile/pyupgrade
rev: v2.3.0
hooks:
- id: pyupgrade
args: [--py3-plus]
- repo: https://github.com/psf/black
rev: 19.10b0
hooks:
- i... |
830e4fb0-a409-49e2-b7f5-7fd55b93aacf | {
"language": "YAML"
} | ```yaml
# force 32bit compile on 64bit platform.
---
fetch: wget https://leveldb.googlecode.com/files/leveldb-1.15.0.tar.gz -O leveldb-1.15.0.tar.gz
configure: bash configure --prefix=/usr/local/stow/leveldb-1.15.0
make: make CC="gcc -m32" CXX="g++ -m32"
#make: make
install: /bin/rm -rf /usr/local/stow/leveldb-1.15.0 ;... | ```yaml
# force 32bit compile on 64bit platform.
---
fetch: wget https://leveldb.googlecode.com/files/leveldb-1.15.0.tar.gz -O leveldb-1.15.0.tar.gz
configure: bash configure --prefix=/usr/local/stow/leveldb-1.15.0
#make: make CC="gcc -m32" CXX="g++ -m32"
make: make
install: /bin/rm -rf /usr/local/stow/leveldb-1.15.0 ;... |
400a54c7-d178-4c1a-b520-d5bfce7e2f18 | {
"language": "YAML"
} | ```yaml
# See https://cloud.google.com/cloud-build/docs/build-config
timeout: 1200s
options:
substitution_option: ALLOW_LOOSE
steps:
- name: 'gcr.io/k8s-staging-test-infra/gcb-docker-gcloud:v20211118-2f2d816b90'
entrypoint: make
env:
- TAG=$_PULL_BASE_REF
- GIT_COMMIT=$_PULL_BASE_SHA
args:
-... | ```yaml
# See https://cloud.google.com/cloud-build/docs/build-config
timeout: 1800s
options:
substitution_option: ALLOW_LOOSE
steps:
- name: 'gcr.io/k8s-staging-test-infra/gcb-docker-gcloud:v20211118-2f2d816b90'
entrypoint: make
env:
- TAG=$_PULL_BASE_REF
- GIT_COMMIT=$_PULL_BASE_SHA
args:
-... |
50e0cea4-44d9-4610-8ea3-0d0475956bf4 | {
"language": "YAML"
} | ```yaml
theme: jekyll-theme-cayman
title: "Carbon Free Footprint Project"
tagline: "An analysis designed to establish a Carbon Free Footprint when operating a BC Northern Lights Bloombox 'Full Blast' 24/7"
description: "An analysis designed to establish a Carbon Free Footprint when operating a BC Northern Lights Bloomb... | ```yaml
theme: jekyll-theme-cayman
title: "Carbon Free Footprint Project"
tagline: "An analysis designed to establish a Carbon Free Footprint when operating a BC Northern Lights Bloombox 'Full Blast' 24/7"
description: "An analysis designed to establish a Carbon Free Footprint when operating a BC Northern Lights Bloomb... |
91d7cf1f-2eb0-468b-b587-d03c4d61dc9b | {
"language": "YAML"
} | ```yaml
server:
port: ${services.igor.port:8088}
address: ${services.igor.host:localhost}
jenkins:
enabled: ${services.jenkins.enabled:false}
masters:
- name: ${services.jenkins.defaultMaster.name}
address: ${services.jenkins.defaultMaster.baseUrl}
username: ${services.jenkins.defaultMaster.use... | ```yaml
server:
port: ${services.igor.port:8088}
address: ${services.igor.host:localhost}
jenkins:
enabled: ${services.jenkins.enabled:false}
masters:
- name: ${services.jenkins.defaultMaster.name}
address: ${services.jenkins.defaultMaster.baseUrl}
username: ${services.jenkins.defaultMaster.use... |
1c3ae4b2-b552-45f0-9e30-3863fbf9a037 | {
"language": "YAML"
} | ```yaml
# List the variants for your AB or multivariate test here.
# Please leave the 'Example' test config in place.
---
- Example:
- A
- B
- TaskListBrowse:
- A
- B
- TaskListHeader:
- A
- B
- TaskListSidebar:
- A
- B
```
Add Self Assessment Sign In test | ```yaml
# List the variants for your AB or multivariate test here.
# Please leave the 'Example' test config in place.
---
- Example:
- A
- B
- SelfAssessmentSigninTest:
- A
- B
- TaskListBrowse:
- A
- B
- TaskListHeader:
- A
- B
- TaskListSidebar:
- A
- B
``` |
30495d83-c52a-42e2-93d1-dfda31b42af2 | {
"language": "YAML"
} | ```yaml
applications:
- memory: 512M
services:
- weatherinsights
name: datapalooza-node-starter
declared-services:
weatherinsights:
label: weatherinsights
plan: Free
```
Update weatherinsights plan to Free-v2 | ```yaml
applications:
- memory: 512M
services:
- weatherinsights
name: datapalooza-node-starter
declared-services:
weatherinsights:
label: weatherinsights
plan: Free-v2
``` |
8e8a5586-6e72-47f7-b8e7-edba783c2e98 | {
"language": "YAML"
} | ```yaml
---
applications:
- name: token-run
path: target/token-run-0.0.1-SNAPSHOT.jar
memory: 1024M
buildpack: java_buildpack```
Revert "BPT-162: Changed back to h2 while flyway is not working correctly" | ```yaml
---
applications:
- name: token-run
path: target/token-run-0.0.1-SNAPSHOT.jar
memory: 1024M
buildpack: java_buildpack
services:
- postgresql
``` |
414be614-6d22-49b1-a2d7-7997aa89f775 | {
"language": "YAML"
} | ```yaml
greeting:
path: "/{name}"
defaults: { _controller: \App\Controller\GreeterController::greetAction, _format: json }
requirements: { _format: json }
methods: [ GET ]
```
Add a default value for the name | ```yaml
greeting:
path: "/{name}"
defaults: { _controller: \App\Controller\GreeterController::greetAction, _format: json, name: "world" }
requirements: { _format: json }
methods: [ GET ]
``` |
c5485b48-1229-41a1-8945-5dd91f943d6e | {
"language": "YAML"
} | ```yaml
# Presentation
- id: 001
title: "To be announced"
description: ""
speakers: [0, 1, 2, 3]
language: "English"
complexity: "Community Presentation"
video: null
register: null
presentation: null
# Services
- id: 500
title: "TBA"
place: ""
service: true
description: ""
- id: 501
title: "... | ```yaml
# Presentation
- id: 001
title: "To be announced"
description: ""
speakers: [0, 1, 2, 3]
language: "English"
complexity: "Community Presentation"
video: null
register: null
presentation: null
- id: 002
title: "Python mocking - When and How to do it"
description: >
We will be taking a loo... |
8b586f46-ea40-4dd5-8fdb-f7fbd31a395b | {
"language": "YAML"
} | ```yaml
---
expeditor:
cached_folders:
- vendor
defaults:
buildkite:
timeout_in_minutes: 30
steps:
- label: run-lint-and-specs-ruby-2.4
command:
- .expeditor/run_linux_tests.sh rake
expeditor:
executor:
docker:
image: ruby:2.4-buster
- label: run-lint-and-specs-ruby-2.5
... | ```yaml
---
expeditor:
cached_folders:
- vendor
defaults:
buildkite:
timeout_in_minutes: 30
steps:
- label: run-lint-and-specs-ruby-2.4
command:
- .expeditor/run_linux_tests.sh rake
expeditor:
executor:
docker:
image: ruby:2.4-buster
- label: run-lint-and-specs-ruby-2.5
... |
03a23038-6151-4bc2-a822-7b0cf518b808 | {
"language": "YAML"
} | ```yaml
name: bfd
dependencies:
# Testing Dependencies
- flake8
- pytest=2.8
# Run dependencies
- matplotlib=1.4
- notebook=4.0
- numpy=1.10
- pandas=0.17
- python=2.7
- scipy=0.16
- pip:
- concord-py==0.3
- yahoo-finance>=1.2
```
Remove matplotlib and ipython dependencies | ```yaml
name: bfd
dependencies:
# Testing Dependencies
- flake8
- pytest=2.8
# Run dependencies
- numpy=1.10
- pandas=0.17
- python=2.7
- scipy=0.16
- pip:
- concord-py==0.3
- yahoo-finance>=1.2
``` |
95a80038-29e0-4e1f-8b14-6051b7cfc586 | {
"language": "YAML"
} | ```yaml
defaults: &defaults
max_unread_count: 10
default_favicon: <%= "#{Rails.root}/public/img/icon/default.png" %>
subscribe_limit: 5000
save_pin_limit: 100
crawl_interval: 30
allow_tags: <%= %w(a i u b em strong table tr td th tbody font center div pre code blockquote ins del img br p hr ul li ol dl dt d... | ```yaml
defaults: &defaults
max_unread_count: 200
default_favicon: <%= "#{Rails.root}/public/img/icon/default.png" %>
subscribe_limit: 5000
save_pin_limit: 100
crawl_interval: 30
allow_tags: <%= %w(a i u b em strong table tr td th tbody font center div pre code blockquote ins del img br p hr ul li ol dl dt ... |
f2502376-40b2-4e6f-9ea0-94371afbbea7 | {
"language": "YAML"
} | ```yaml
name: Merge me test dependencies!
on:
workflow_run:
types:
- completed
workflows:
# List all required workflow names here.
- 'Run tests'
- 'Test build package'
- 'Run linters'
jobs:
merge-me:
name: Merge me!
runs-on: ubuntu-latest
steps:
- # It is of... | ```yaml
name: Merge me test dependencies!
on:
workflow_run:
types:
- completed
workflows:
# List all required workflow names here.
- 'Run tests'
- 'Test build package'
- 'Run linters'
jobs:
merge-me:
name: Merge me!
runs-on: ubuntu-latest
steps:
- # It is of... |
fdb06009-ebb6-4d57-ada8-acd93eaeeaf6 | {
"language": "YAML"
} | ```yaml
---
:concurrency: 20
:queues:
- default
- scraper
- low
:limits:
scraper: 10
```
Drop number of scraper watchers down to 5 | ```yaml
---
:concurrency: 20
:queues:
- default
- scraper
:limits:
scraper: 5
``` |
71f2f5ef-2ebf-42af-b0ea-e886468f18e6 | {
"language": "YAML"
} | ```yaml
# Copyright (c) 2018, Linaro Limited
# SPDX-License-Identifier: Apache-2.0
description: NXP Kinetis Ethernet
compatible: "nxp,kinetis-ethernet"
include: ethernet.yaml
properties:
reg:
required: true
interrupts:
required: true
```
Support 'fixed-link' property in nxp,kinetics-ethernet.ya... | ```yaml
# Copyright (c) 2018, Linaro Limited
# SPDX-License-Identifier: Apache-2.0
description: NXP Kinetis Ethernet
compatible: "nxp,kinetis-ethernet"
include: ["ethernet.yaml", "ethernet,fixed-link.yaml"]
properties:
reg:
required: true
interrupts:
required: true
``` |
b5ebcabd-94e0-49b8-b496-f2880f4ce361 | {
"language": "YAML"
} | ```yaml
---
.defaults: &defaults
before_script:
- apk add --update ragel build-base
- if [ "$INSTALL_OPENJDK" == "true" ]; then apk add openjdk8; fi
- gem install bundler --no-document
- ruby --version
- gem --version
- bundle --version
- bundle install --path vendor --retry=3
script:
... | ```yaml
---
.defaults: &defaults
before_script:
- apk add --update ragel build-base
- if [ "$INSTALL_OPENJDK" == "true" ]; then apk add openjdk8; fi
- gem install bundler --no-document
- ruby --version
- gem --version
- bundle --version
- bundle install --path vendor --retry=3
script:
... |
cdeda69b-23ae-4310-8290-1cef5705229e | {
"language": "YAML"
} | ```yaml
stages:
- test
image: 'nbulai/ruby-chromedriver:latest'
services:
- postgres:9.4
cache:
paths:
- vendor/ruby
variables:
RAILS_ENV: test
POSTGRES_DB: denteo_test
DATABASE_URL: "postgresql://postgres:postgres@localhost:5432/$POSTGRES_DB"
before_script:
- apt-get update -yq
- gem install b... | ```yaml
stages:
- test
services:
- postgres:9.4
cache:
paths:
- vendor/ruby
variables:
RAILS_ENV: test
POSTGRES_DB: aoz_test
DATABASE_URL: "postgresql://postgres:postgres@localhost:5432/$POSTGRES_DB"
before_script:
- apt-get update -yq
- gem install bundler --no-ri --no-rdoc
- bundle install ... |
7a8578bd-6585-4126-8990-b4ee88e1799f | {
"language": "YAML"
} | ```yaml
# Composer stores all downloaded packages in the vendor/ directory.
# Do not use the following if the vendor/ directory is commited to
# your git repository.
cache:
paths:
- vendor/
services:
- redis:latest
test:7:
before_script:
- bash build/docker_install.sh > /dev/null
- curl -sS ht... | ```yaml
# Composer stores all downloaded packages in the vendor/ directory.
# Do not use the following if the vendor/ directory is commited to
# your git repository.
cache:
paths:
- vendor/
services:
- redis:latest
test:7:
before_script:
- bash build/docker_install.sh > /dev/null
- curl -sS ht... |
3aabc13e-40b2-4f18-b874-0433e7b0caee | {
"language": "YAML"
} | ```yaml
homepage: http://hashids.org/
changelog-type: ''
hash: 36db938f70a6b8ee9d59a863534fbc18523c511ff65fff634f91feffc2f9b13c
test-bench-deps: {}
maintainer: hildenjohannes@gmail.com
synopsis: Hashids generates short, unique, non-sequential ids from numbers.
changelog: ''
basic-deps:
bytestring: -any
split: -any
... | ```yaml
homepage: http://hashids.org/
changelog-type: ''
hash: 22f988ff2c0d7112d6ca0979c463a2a9ca8e81086a256f9bd09fb76b9a650e1e
test-bench-deps:
bytestring: -any
split: -any
base: -any
containers: -any
maintainer: hildenjohannes@gmail.com
synopsis: Hashids generates short, unique, non-sequential ids from number... |
1ab2d610-7d24-4feb-97d3-1eebbbce8360 | {
"language": "YAML"
} | ```yaml
{% set name = "pyudev" %}
{% set version = "0.23.2" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/pyudev-{{ version }}.tar.gz
sha256: 32ae3585b320a51bc283e0a04000fd8a25599edb44541e2f5034f6afee5d15cc
build:
noarch: pyt... | ```yaml
{% set name = "pyudev" %}
{% set version = "0.23.2" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/pyudev-{{ version }}.tar.gz
sha256: 32ae3585b320a51bc283e0a04000fd8a25599edb44541e2f5034f6afee5d15cc
build:
noarch: pyt... |
1fee52fc-46a4-45f8-a516-92b8fd8cbc1b | {
"language": "YAML"
} | ```yaml
- name: Ensure ppas are installed
apt_repository:
repo: "{{ item }}"
state: "present"
codename: "xenial"
with_items: "{{ ppas }}"
become: True
- name: Update cache
apt:
update_cache: True
become: True
- name: Install fun packages
package:
name: "{{ item }}"
state: present... | ```yaml
- name: Ensure ppas are installed
apt_repository:
repo: "{{ item }}"
state: "present"
codename: "xenial"
update_cache: True
with_items: "{{ ppas }}"
become: True
- name: Install fun packages
package:
name: "{{ item }}"
state: present
with_items: "{{ packages }}"
become: Tr... |
35eb800c-cdca-494b-82d5-8c001ed7a914 | {
"language": "YAML"
} | ```yaml
web:
build: .
ports:
- "8080:80"
links:
- mysql
env_file:
- env
volumes:
- .:/var/chippin
- ./src/var/connect:/var/www/htdocs/var/connect
mysql:
image: mysql:5.6.23
env_file:
- env
#selenium:
#image: selenium/standalone-chrome
#ports:
#- "4444:4444"
```
Correct t... | ```yaml
web:
build: .
ports:
- "80:80"
links:
- mysql
env_file:
- env
volumes:
- .:/var/chippin
- ./src/var/connect:/var/www/htdocs/var/connect
mysql:
image: mysql:5.6.23
env_file:
- env
#selenium:
#image: selenium/standalone-chrome
#ports:
#- "4444:4444"
``` |
13455588-ee0f-4f60-be2e-ca5afec661fc | {
"language": "YAML"
} | ```yaml
version: '3'
services:
rosie:
build:
context: rosie
volumes:
- /tmp/serenata-data:/tmp/serenata-data
- ./rosie:/code
django:
image: serenata/django
depends_on:
- elm
- postgres
- tasks
environment:
- NEW_RELIC_APP_NAME=Jarbas (Django); Jarbas (... | ```yaml
version: '3'
services:
rosie:
build:
context: rosie
volumes:
- /tmp/serenata-data:/tmp/serenata-data
- ./rosie:/code
django:
image: serenata/django
depends_on:
- elm
- postgres
- tasks
environment:
- NEW_RELIC_APP_NAME=Jarbas (Django); Jarbas (... |
dca51057-1c0a-4469-ae6c-37ef0e26167e | {
"language": "YAML"
} | ```yaml
kind: Pod
apiVersion: v1beta1
id: &name client
labels:
name: *name
desiredState:
manifest:
version: v1beta1
containers:
- name: *name
registry: %docker_registry%
image: %docker_image_prefix%/openstack-client
env:
- key: OS_USERNAME
value: demo
... | ```yaml
kind: Pod
apiVersion: v1beta1
id: &name client
labels:
name: *name
desiredState:
manifest:
version: v1beta1
containers:
- name: *name
registry: %docker_registry%
image: %docker_image_prefix%/openstack-client
env:
- key: OS_USERNAME
value: demo
... |
7fc929ab-342d-4d79-9e0a-14f025dd839a | {
"language": "YAML"
} | ```yaml
---
blurb: "For want of a horseshoe nail, a kingdom was lost, or so the saying goes. Write a program that outputs the full text of this proverbial rhyme."
source: "Wikipedia"
source_url: "http://en.wikipedia.org/wiki/For_Want_of_a_Nail"
```
Remove "write a program" from proverb exercise | ```yaml
---
blurb: "For want of a horseshoe nail, a kingdom was lost, or so the saying goes. Output the full text of this proverbial rhyme."
source: "Wikipedia"
source_url: "http://en.wikipedia.org/wiki/For_Want_of_a_Nail"
``` |
678d42c1-1fd5-4b97-ac3c-e3d04e30975f | {
"language": "YAML"
} | ```yaml
---
x_defaults:
# YAML has a feature for "repeated nodes", BazelCI is fine with extra nodes
# it doesn't know about; so that is used to avoid repeating common subparts.
common: &common
platform: macos
build_targets:
- "tools/..."
- "test/..."
test_targets:
- "tools/..."
- "test... | ```yaml
---
x_defaults:
# YAML has a feature for "repeated nodes", BazelCI is fine with extra nodes
# it doesn't know about; so that is used to avoid repeating common subparts.
common: &common
platform: macos
build_targets:
- "tools/..."
- "test/..."
test_targets:
- "tools/..."
- "test... |
18752e42-0533-4927-9706-f55f1f05620a | {
"language": "YAML"
} | ```yaml
Categories:
- Multimedia
License: GPL-3.0-only
AuthorName: Ashutosh Patoa
SourceCode: https://github.com/HardcodeCoder/PulseMusic
IssueTracker: https://github.com/HardcodeCoder/PulseMusic/issues
Changelog: https://github.com/HardcodeCoder/PulseMusic/releases
AutoName: Pulse Music
RepoType: git
Repo: https:/... | ```yaml
Categories:
- Multimedia
License: GPL-3.0-only
AuthorName: Ashutosh Patoa
SourceCode: https://github.com/HardcodeCoder/PulseMusic
IssueTracker: https://github.com/HardcodeCoder/PulseMusic/issues
Changelog: https://github.com/HardcodeCoder/PulseMusic/releases
AutoName: Pulse Music
RepoType: git
Repo: https:/... |
58e6dd24-d850-4e7b-bede-144f027f4915 | {
"language": "YAML"
} | ```yaml
Categories:
- Navigation
License: GPL-2.0-only
AuthorName: Mike Rieker
WebSite: https://www.outerworldapps.com
SourceCode: https://github.com/mrieker/WairToNow
IssueTracker: https://github.com/mrieker/WairToNow/issues
Changelog: https://github.com/mrieker/WairToNow/releases
AutoName: WairToNow
RepoType: git... | ```yaml
Categories:
- Navigation
License: GPL-2.0-only
AuthorName: Mike Rieker
WebSite: https://www.outerworldapps.com
SourceCode: https://github.com/mrieker/WairToNow
IssueTracker: https://github.com/mrieker/WairToNow/issues
Changelog: https://github.com/mrieker/WairToNow/releases
AutoName: WairToNow
RepoType: git... |
82578d14-f0a6-403d-b793-f762f9444d7e | {
"language": "YAML"
} | ```yaml
---
new_page_extension: md
auto_deploy: false
admin_path: "/static/admin"
webhook_url:
sections:
- type: directory
path: projects
label: Projects
create: documents
match: "**/*.md"
templates:
- project
- type: directory
path: journal
label: Journal
create: documents
match: "**/*.md"
templ... | ```yaml
---
new_page_extension: md
auto_deploy: false
admin_path: "/static/admin"
webhook_url:
sections:
- type: directory
path: projects
label: Projects
create: documents
match: "**/*.md"
templates:
- project
- type: directory
path: journal
label: Journal
create: documents
match: "**/*.md"
templ... |
8eeb78d2-6376-4956-a226-1781d0389874 | {
"language": "YAML"
} | ```yaml
---
new_page_extension: md
auto_deploy: false
admin_path: ''
webhook_url: ''
sections:
- type: directory
path: content/post
label: Articles
create: all
match: "**/*"
templates:
- post
- type: document
path: config.yaml
label: Configuration
upload_dir: ''
public_path: ''
front_matter_path: https:... | ```yaml
---
new_page_extension: md
auto_deploy: false
admin_path: ''
webhook_url: ''
sections:
- type: directory
path: content/post
label: Articles
create: all
match: "**/*"
templates:
- post
- type: document
path: config.yaml
label: Configuration
upload_dir: ''
public_path: ''
front_matter_path: https:... |
0a083596-2fa8-4532-8abb-f623b22a502c | {
"language": "YAML"
} | ```yaml
---
new_page_extension: md
auto_deploy: false
admin_path: "/static/admin"
webhook_url:
sections:
- type: directory
path: projects
label: Projects
create: documents
match: "**/*.md"
templates:
- project
- type: directory
path: journal
label: Journal
create: documents
match: "**/*.md"
templ... | ```yaml
---
new_page_extension: md
auto_deploy: false
admin_path: "/static/admin"
webhook_url:
sections:
- type: directory
path: projects
label: Projects
create: documents
match: "**/*.md"
templates:
- project
- type: directory
path: journal
label: Journal
create: documents
match: "**/*.md"
templ... |
a9bc88ec-f354-4e4b-be8f-404f95aba469 | {
"language": "YAML"
} | ```yaml
homepage: https://github.com/deviant-logic/aeson-filthy
changelog-type: ''
hash: a860bae39af53741e006baf2fcb2672be8a6d33326aba500772fa8c4bcfd03d0
test-bench-deps:
bytestring: -any
base: -any
time: -any
unordered-containers: -any
text: -any
doctest: ! '>=0.8'
aeson: -any
maintainer: alec@deviant-lo... | ```yaml
homepage: https://github.com/deviant-logic/aeson-filthy
changelog-type: ''
hash: 9105da4cc27c38bc269e300536627c3dbc0e5dddad6ceb19e01fc7cac3774a93
test-bench-deps:
bytestring: -any
base: -any
time: -any
unordered-containers: -any
text: -any
doctest: ! '>=0.8'
aeson: -any
maintainer: alec@deviant-lo... |
b237e005-d60c-46be-b0ca-bd890a38f8e3 | {
"language": "YAML"
} | ```yaml
homepage: ''
changelog-type: ''
hash: 7ba1be7f9be38c97726b204d482280466d3c223ae9c680ae0829eec71ec3cce2
test-bench-deps:
base: -any
hspec: -any
cdeps: -any
maintainer: vamchale@gmail.com
synopsis: Extract dependencies from C code.
changelog: ''
basic-deps:
bytestring: -any
base: ! '>=4.9 && <5'
text:... | ```yaml
homepage: ''
changelog-type: ''
hash: 9c101712135eb41c896c1c5a5932f7c875d2f06db064d2b6f1b9e626b7be4750
test-bench-deps:
base: -any
hspec: -any
cdeps: -any
maintainer: vamchale@gmail.com
synopsis: Extract dependencies from C code.
changelog: ''
basic-deps:
bytestring: -any
base: ! '>=4.9 && <5'
text:... |
299c044c-d629-4bbe-824b-bdc7b98b06ab | {
"language": "YAML"
} | ```yaml
homepage: https://github.com/spinda/liquidhaskell-cabal-demo#readme
changelog-type: ''
hash: 0a3a66fc1eb11bdec090fa153a515e73befe9292ba19a7a25f90fb698ff4fd14
test-bench-deps: {}
maintainer: Michael Smith <michael@spinda.net>
synopsis: Demo of Liquid Haskell integration for Cabal and stack
changelog: ''
basic-de... | ```yaml
homepage: https://github.com/spinda/liquidhaskell-cabal-demo#readme
changelog-type: ''
hash: cd6cfc54e1eb79c01bcb2b4db39e24cd9c6a7b742c03d5004dda9abcf9157d76
test-bench-deps: {}
maintainer: Michael Smith <michael@spinda.net>
synopsis: Demo of Liquid Haskell integration for Cabal and stack
changelog: ''
basic-de... |
f87dbb77-f0fd-498a-aa3b-20edbe9ba2b0 | {
"language": "YAML"
} | ```yaml
homepage: http://github.com/GregorySchwartz/differential#readme
changelog-type: ''
hash: 6e00d999b0c90a0d1a4d819d94fafd8248a4e841723b0f86518bb3128b28482f
test-bench-deps: {}
maintainer: gsch@mail.med.upenn.edu
synopsis: Finds out whether an entity comes from different distributions (statuses).
changelog: ''
bas... | ```yaml
homepage: http://github.com/GregorySchwartz/differential#readme
changelog-type: ''
hash: 69aeebecc18d969096569d672590cb73a98520b27066935171d80fac33b080de
test-bench-deps: {}
maintainer: gsch@pennmedicine.upenn.edu
synopsis: Finds out whether an entity comes from different distributions (statuses).
changelog: ''... |
baa09564-12f5-431e-9525-9d8a18a0496c | {
"language": "YAML"
} | ```yaml
AntiFeatures:
- NonFreeNet
Categories:
- Internet
License: MIT
AuthorName: Holger Cremer
AuthorEmail: HolgerCremer@gmail.com
AuthorWebSite: https://mainframe.io/
SourceCode: https://github.com/ktt-ol/hacs
IssueTracker: https://github.com/ktt-ol/hacs/issues
Changelog: https://github.com/ktt-ol/hacs/blob/HEAD... | ```yaml
AntiFeatures:
- NonFreeNet
Categories:
- Internet
License: MIT
AuthorName: Holger Cremer
AuthorEmail: HolgerCremer@gmail.com
AuthorWebSite: https://mainframe.io/
SourceCode: https://github.com/ktt-ol/hacs
IssueTracker: https://github.com/ktt-ol/hacs/issues
Changelog: https://github.com/ktt-ol/hacs/blob/HEAD... |
fc71dc4a-4876-498b-b4b6-2fc54d00fe4a | {
"language": "YAML"
} | ```yaml
about:
home: 'http://huttenhower.sph.harvard.edu/humann2'
summary: "HUMAnN is a pipeline for efficiently and accurately profiling the presence/absence and abundance of microbial pathways in a community from metagenomic or metatranscriptomic sequencing data"
package:
name: humann2
version: '0.6.1'
bu... | ```yaml
about:
home: 'http://huttenhower.sph.harvard.edu/humann2'
summary: "HUMAnN is a pipeline for efficiently and accurately profiling the presence/absence and abundance of microbial pathways in a community from metagenomic or metatranscriptomic sequencing data"
package:
name: humann2
version: '0.6.1'
bu... |
d88fecea-0acd-4ae8-8c00-5da7f2def166 | {
"language": "YAML"
} | ```yaml
{% set name = "libavif" %}
{% set version = "0.9.0" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://github.com/AOMediaCodec/libavif/archive/refs/tags/v{{ version }}.tar.gz
sha256: ea1603fc18e7dd20cf01f0b405156576886ecb5df84db8c0e87187cd2f8a00f4
patches:
- install-t... | ```yaml
{% set name = "libavif" %}
{% set version = "0.9.0" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://github.com/AOMediaCodec/libavif/archive/refs/tags/v{{ version }}.tar.gz
sha256: ea1603fc18e7dd20cf01f0b405156576886ecb5df84db8c0e87187cd2f8a00f4
patches:
- install-t... |
7f2d3d2d-f0f2-4d9c-8ecf-ba158477cb6e | {
"language": "YAML"
} | ```yaml
# stakx configuration file for building the site in development mode
import:
- _config.yml
debug: true
```
Build Sass with sourcemap + expanded in dev mode | ```yaml
# stakx configuration file for building the site in development mode
import:
- _config.yml
debug: true
scss:
style: expanded
sourcemap: true
``` |
f834d9e7-c8d4-4805-b579-516f4127ce17 | {
"language": "YAML"
} | ```yaml
{% set name = "ghc-bootstrap" %}
{% set version = "8.2.2" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
- url: https://downloads.haskell.org/~ghc/{{ version }}/ghc-{{ version }}-x86_64-deb7-linux.tar.xz
sha256: "cd7afbca54edf9890da9f432c63366556246c85c1198e40c99df5af01c555834"
b... | ```yaml
{% set name = "ghc-bootstrap" %}
{% set version = "8.2.2" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
- url: https://downloads.haskell.org/~ghc/{{ version }}/ghc-{{ version }}-x86_64-deb7-linux.tar.xz
sha256: "cd7afbca54edf9890da9f432c63366556246c85c1198e40c99df5af01c555834"
b... |
8e3450de-3d2e-44f7-9751-ec3bff5151f6 | {
"language": "YAML"
} | ```yaml
name: travis-meta-yaml
version: 0.0.1.0
synopsis: .travis.yml preprocessor
description: .travis.yml preprocessor
author: Oleg Grenrus <oleg.grenrus@iki.fi>
maintainer: Oleg Grenrus <oleg.grenrus@iki.fi>
license: BSD3
github: phadej/travis-meta-yaml
category: Development
extra-source-files:
- README.md
- fix... | ```yaml
name: travis-meta-yaml
version: 0.0.1.0
synopsis: .travis.yml preprocessor
description: .travis.yml preprocessor
author: Oleg Grenrus <oleg.grenrus@iki.fi>
maintainer: Oleg Grenrus <oleg.grenrus@iki.fi>
license: BSD3
github: phadej/travis-meta-yaml
category: Development
extra-source-files:
- README.md
- fix... |
69e62478-5eab-45e9-b6bb-979859cc8aae | {
"language": "YAML"
} | ```yaml
homepage: ''
changelog-type: ''
hash: f4ae3695480b34de7383ae931e180876e0170bf58ce3122d6c52c423d0df818f
test-bench-deps: {}
maintainer: Alexey Karakulov <ankarakulov@gmail.com>
synopsis: Hashable instances for Data.Time
changelog: ''
basic-deps:
base: ! '>=4.7 && <4.13'
time: ! '>=1.5'
hashable: ! '>=1.2.3... | ```yaml
homepage: ''
changelog-type: ''
hash: 7a90ab319f1b5261fc4f649830ad4c6526f99141f766387c8740cbd6c52bfe0c
test-bench-deps: {}
maintainer: Alexey Karakulov <ankarakulov@gmail.com>
synopsis: Hashable instances for Data.Time
changelog: ''
basic-deps:
base: ! '>=4.7 && <4.13'
time: ! '>=1.5'
hashable: ! '>=1.2.3... |
bd2c55c1-7a72-446b-aa32-cf9c379d3c55 | {
"language": "YAML"
} | ```yaml
input: _docs/pages/**/*.{pug,md}
output: docs
theme:
- _docs/theme
- spacedoc-theme-default
themeOptions:
title: Spacedoc
nav:
docs: Docs
plugins.html: Plugins
'https://github.com/spacedoc/spacedoc': GitHub
```
Update configuration of Spacedoc documentation to enable adapters and debugging | ```yaml
input: _docs/pages/**/*.{pug,md}
output: docs
adapters:
- ../spacedoc-js
- ../spacedoc-json
- ../spacedoc-sass
theme:
- _docs/theme
- spacedoc-theme-default
debug: true
themeOptions:
title: Spacedoc
nav:
docs: Docs
plugins.html: Plugins
'https://github.com/spacedoc/spacedoc': GitHub
``... |
1903a95c-1b77-4d1e-9bd9-dacaf93ca465 | {
"language": "YAML"
} | ```yaml
homepage: https://github.com/haskell-foundation/foundation-edge
changelog-type: ''
hash: dced4e5c9dd77f07fd41a9f0a135adad30e987ad95e7c27a0031d4fd788ddb9f
test-bench-deps: {}
maintainer: vincent@snarc.org
synopsis: foundation's edge with the conventional set of packages
changelog: ''
basic-deps:
bytestring: -a... | ```yaml
homepage: https://github.com/haskell-foundation/foundation-edge
changelog-type: ''
hash: 278ede6bb8fb241eeae0871a187fb65e2009a956dc70dc261a9b59c03318f92a
test-bench-deps: {}
maintainer: vincent@snarc.org
synopsis: foundation's edge with the conventional set of packages
changelog: ''
basic-deps:
bytestring: -a... |
2780d83c-231c-40e5-9f51-a74dbb85cc9b | {
"language": "YAML"
} | ```yaml
{% set name = "git-history" %}
{% set version = "0.6.1" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/git-history-{{ version }}.tar.gz
sha256: e423a96916ef8b7d5504efc9e378e54aa86ccbb0136dc7846ac9c04593f0caca
build:
n... | ```yaml
{% set name = "git-history" %}
{% set version = "0.6.1" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/git-history-{{ version }}.tar.gz
sha256: e423a96916ef8b7d5504efc9e378e54aa86ccbb0136dc7846ac9c04593f0caca
build:
n... |
58ed4b7a-7ce2-4d96-9f11-30be9bd5e8d0 | {
"language": "YAML"
} | ```yaml
fuel-plugin-detach-swift:
# Role name
name: "Set here the name for the role. This name will be displayed in the Fuel web UI"
# Role description
description: "Write description for your role"
# If primaty then during orchestration this role will be
# splitted into primary-role and role
has_primary:... | ```yaml
fuel-plugin-detach-swift-proxy:
name: "Swift-Proxy"
description: "Proxy swift node"
has_primary: false
public_ip_required: false
weight: 1000
fuel-plugin-detach-swift-object:
name: "Swift-Object"
description: "Object swift node"
has_primary: false
public_ip_required: false
weight: 1000
``` |
b0fbe14e-714d-41a9-b3f2-79bbb815f96d | {
"language": "YAML"
} | ```yaml
name: crc32
version: 0.1.0
description: A cyclic redundancy check calculator for Dart written in pure Dart.
author: Kai Sellgren <kaisellgren@gmail.com>
homepage: http://github.com/kaisellgren/CRC32
dependencies:
unittest:
sdk: unittest```
Use unittest from pub.dartlang.org . | ```yaml
name: crc32
version: 0.1.0
description: A cyclic redundancy check calculator for Dart written in pure Dart.
author: Kai Sellgren <kaisellgren@gmail.com>
homepage: http://github.com/kaisellgren/CRC32
dependencies:
unittest: any
``` |
c783ef0c-031f-400e-86a8-ccf74f599771 | {
"language": "YAML"
} | ```yaml
name: bagl
description: Basic Graphics Library for Dart.
version: 0.4.0
author: R.S. Schermer <roland0507@gmail.com>
homepage: https://github.com/RSSchermer/bagl.dart
documentation:
environment:
sdk: '>=1.0.0 <2.0.0'
dependencies:
rl_matrix: '>= 0.6.2 <0.7.0'
collection: '>= 1.9.0 <1.10.0'
quiver: '>=0.... | ```yaml
name: bagl
description: Basic Graphics Library for Dart.
version: 0.5.0
author: R.S. Schermer <roland0507@gmail.com>
homepage: https://github.com/RSSchermer/bagl.dart
documentation:
environment:
sdk: '>=1.0.0 <2.0.0'
dependencies:
rl_matrix: '>= 0.6.2 <0.7.0'
collection: '>= 1.9.0 <1.10.0'
quiver: '>=0.... |
b98bcaf4-feab-4a31-821a-f6271ec788ff | {
"language": "YAML"
} | ```yaml
# This is a sample build configuration for Javascript.
# Check our guides at https://confluence.atlassian.com/x/VYk8Lw for more examples.
# Only use spaces to indent your .yml configuration.
# -----
# You can specify a custom docker image from Docker Hub as your build environment.
image: node:4.6.0
pipelines:
... | ```yaml
# This is a sample build configuration for Javascript.
# Check our guides at https://confluence.atlassian.com/x/VYk8Lw for more examples.
# Only use spaces to indent your .yml configuration.
# -----
# You can specify a custom docker image from Docker Hub as your build environment.
image: node-jdk-chrome-firefox... |
49ec8d68-63c6-4e9b-b7d1-3894767766da | {
"language": "YAML"
} | ```yaml
Categories:
- Writing
- Internet
License: GPL-3.0-only
AuthorName: Ideotec
AuthorEmail: guille@ideotec.es
AuthorWebSite: https://blog.ideotec.es/
SourceCode: https://gitlab.com/ideotec/wdnotes
IssueTracker: https://gitlab.com/ideotec/wdnotes/issues
AutoName: WD Notes
RepoType: git
Repo: https://gitlab.com... | ```yaml
Categories:
- Writing
- Internet
License: GPL-3.0-only
AuthorName: Ideotec
AuthorEmail: guille@ideotec.es
AuthorWebSite: https://blog.ideotec.es/
SourceCode: https://gitlab.com/ideotec/wdnotes
IssueTracker: https://gitlab.com/ideotec/wdnotes/issues
AutoName: WD Notes
RepoType: git
Repo: https://gitlab.com... |
9754920f-ad6d-43fb-9246-1fd6f67ab748 | {
"language": "YAML"
} | ```yaml
spark:
version: 2.1.1
hadoop_version: 2.7
working_dir: /tmp/spark/data
master_port: 7077
worker_work_port: 65000
master_ui_port: 8080
worker_ui_port: 8085
download_location: https://archive.apache.org/dist/spark/
user: "spark" # the name of the (OS)user created for spark
user_g... | ```yaml
spark:
version: 2.2.0
hadoop_version: 2.7
working_dir: /tmp/spark/data
master_port: 7077
worker_work_port: 65000
master_ui_port: 8080
worker_ui_port: 8085
download_location: https://archive.apache.org/dist/spark/
user: "spark" # the name of the (OS)user created for spark
user_g... |
e0ae44e0-1045-4e82-b0f6-662e2370f7c8 | {
"language": "YAML"
} | ```yaml
teams:
sig-instrumentation-leads:
description: ""
members:
- dashpole
- dgrisonnet
- ehashman
- logicalhan
privacy: closed
sig-instrumentation-approvers:
description: ""
members:
- brancz
- dashpole
- dgrisonnet
- ehashman
- logicalhan
- RainbowMan... | ```yaml
teams:
sig-instrumentation-leads:
description: ""
members:
- dashpole
- dgrisonnet
- ehashman
- logicalhan
privacy: closed
sig-instrumentation-approvers:
description: ""
members:
- brancz
- dashpole
- dgrisonnet
- ehashman
- logicalhan
- RainbowMan... |
8428dc4b-92a5-4969-9723-5c27858742dd | {
"language": "YAML"
} | ```yaml
version: '2.1'
services:
agent:
image: golang:1.10
working_dir: /go/src/github.com/buildkite/agent
volumes:
- ./:/go/src/github.com/buildkite/agent:cached
environment:
- BUILDKITE_BUILD_NUMBER
- BUILDKITE_JOB_ID
- "BUILDKITE_AGENT_TAGS=queue=default"
- "BUILDKITE... | ```yaml
version: '2.1'
services:
agent:
image: golang:1.10
working_dir: /go/src/github.com/buildkite/agent
volumes:
- ../:/go/src/github.com/buildkite/agent:cached
environment:
- BUILDKITE_BUILD_NUMBER
- BUILDKITE_JOB_ID
- "BUILDKITE_AGENT_TAGS=queue=default"
- "BUILDKIT... |
101e0752-894a-4fa3-9b7b-0f4e5e3f8441 | {
"language": "YAML"
} | ```yaml
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
... | ```yaml
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Tests
on:
push:
br... |
3b290ee6-1148-499b-90fe-a39d2ea6460e | {
"language": "YAML"
} | ```yaml
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches: [ master ]
... | ```yaml
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches: [ master ]
... |
8f4a1d1d-13dd-40bc-8004-8d2076c56929 | {
"language": "YAML"
} | ```yaml
name: No Assertions
on:
workflow_dispatch:
inputs:
extra_resolve_options:
description: "Extra Resolve Options"
required: false
schedule:
- cron: "0 1 * * *" # 3 AM CET
push:
pull_request:
jobs:
ndebug:
name: No Assertions
uses: steinwurf/nodebug-action/.github/wor... | ```yaml
name: No Assertions
on:
workflow_dispatch:
inputs:
extra_resolve_options:
description: "Extra Resolve Options"
required: false
schedule:
- cron: "0 1 * * *" # 3 AM CET
push:
pull_request:
jobs:
ndebug:
name: No Assertions
uses: steinwurf/nodebug-action/.github/wor... |
eeea911e-a257-4964-9519-cb22316a7c8d | {
"language": "YAML"
} | ```yaml
name: Build, Test, and Publish on release
on:
release:
types: [published]
branches: [main]
jobs:
build:
name: Build, test and publish
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-node@v1
with:
node-version: 12
registry-... | ```yaml
name: Build, Test, and Publish on release
on:
release:
types: [published]
branches: [main]
jobs:
build:
name: Build, test and publish
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-node@v2
with:
node-version: 12
registry-... |
8ac5e54f-cd6a-4c4b-8055-0efd522182d1 | {
"language": "YAML"
} | ```yaml
homepage: https://github.com/paulrzcz/takusen-oracle.git
changelog-type: ''
hash: 190dd0c67192544e37dca66aafb2cf452c5d23c29b6e54f2deaca40dec901225
test-bench-deps: {}
maintainer: paul@paulrz.cz
synopsis: Database library with left-fold interface for Oracle.
changelog: ''
basic-deps:
base: ! '>=4.5 && <5'
ti... | ```yaml
homepage: https://github.com/paulrzcz/takusen-oracle.git
changelog-type: ''
hash: 32c09ed374b11cbff2b678782dd4074ac884cc2ae6e180a206023e33a4232d4f
test-bench-deps: {}
maintainer: paul@paulrz.cz
synopsis: Database library with left-fold interface for Oracle.
changelog: ''
basic-deps:
base: ! '>=4.5 && <5'
ti... |
4476acd2-de31-4804-ba42-943f08a645b1 | {
"language": "YAML"
} | ```yaml
---
- name: Install etcd for etcdctl
package: name=etcd{{ '-' + etcd_version if etcd_version is defined else '' }} state=present
when: not openshift_is_atomic | bool
register: result
until: result is succeeded
- name: Configure etcd profile.d aliases
template:
dest: "/etc/profile.d/etcdctl.sh"
... | ```yaml
---
- name: Install etcd for etcdctl
package: name=etcd{{ '-' + etcd_version if etcd_version is defined else '' }} state=present
when: not openshift_is_containerized | bool
register: result
until: result is succeeded
- name: Configure etcd profile.d aliases
template:
dest: "/etc/profile.d/etcdctl... |
d4f3a3c6-570f-45bb-87a4-5b1491c43921 | {
"language": "YAML"
} | ```yaml
image_server_url: https://tunnel1.cmlteam.com
resources_server_url: https://tunnel1.cmlteam.com
```
Fix img and resources URLs for test | ```yaml
image_server_url: https://next.cmlteam.com
resources_server_url: https://next.cmlteam.com
``` |
6801d5a9-533c-4d7f-a71a-9604d9a63f55 | {
"language": "YAML"
} | ```yaml
homepage: https://github.com/chris-martin/haskell-libraries
changelog-type: ''
hash: af0b12f29566365f8ac735e942198965dc62dc667fff5ca3ec8e6d3a6f6a2880
test-bench-deps:
base: ! '>=4.9 && <4.10'
doctest: -any
forest: -any
maintainer: Chris Martin <ch.martin@gmail.com>
synopsis: A simple multi-way tree data s... | ```yaml
homepage: https://github.com/chris-martin/haskell-libraries
changelog-type: ''
hash: 65ac44d5c7b6bd0ad091f1d3d8e9839cbfef62e9e865c6620f3c67c4923da8d8
test-bench-deps:
data-forest: -any
base: ! '>=4.9 && <4.10'
doctest: -any
maintainer: Chris Martin <ch.martin@gmail.com>
synopsis: A simple multi-way tree d... |
0f896866-6357-4139-9e0e-c176deb58f59 | {
"language": "YAML"
} | ```yaml
homepage: https://github.com/jwiegley/parsec-free
changelog-type: ''
hash: 25574a4c785345571644a4fb502d453b98e6023f9d9b6a3812a9d3874d0035ea
test-bench-deps: {}
maintainer: johnw@newartisans.com
synopsis: Parsec API encoded as a deeply-embedded DSL, for debugging and analysis
changelog: ''
basic-deps:
free: -a... | ```yaml
homepage: https://github.com/jwiegley/parsec-free
changelog-type: ''
hash: 8a48a4dba31c9b375f82bce517b4f81decfaf0f8bce0fa5b923c8e7a19a3327f
test-bench-deps: {}
maintainer: johnw@newartisans.com
synopsis: Parsec API encoded as a deeply-embedded DSL, for debugging and analysis
changelog: ''
basic-deps:
free: -a... |
402d493d-fd6b-4ab4-ab2b-a17cbdad4ef9 | {
"language": "YAML"
} | ```yaml
{% set name = "jupyter_conda" %}
{% set version = "2.3.2" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: f536d9290443c8a978aeca87847a05682da0caab79d09e1cf6d797a7d6f48f6c
build:
... | ```yaml
{% set name = "jupyter_conda" %}
{% set version = "2.3.2" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: f536d9290443c8a978aeca87847a05682da0caab79d09e1cf6d797a7d6f48f6c
build:
... |
f748638b-9803-4f5f-8d24-137914065c7b | {
"language": "YAML"
} | ```yaml
{% set name = "radio_beam" %}
{% set version = "0.2" %}
{% set hash_type = "sha256" %}
{% set hash_value = "3b3b3cfcc17d61df469c9e45d7f7fc993b902f3f2c076279071fd984a6e5763d" %}
package:
name: radio-beam
version: '{{ version }}'
source:
fn: '{{ name }}-{{ version }}.tar.gz'
url: https://pypi.io/package... | ```yaml
{% set name = "radio_beam" %}
{% set version = "0.2" %}
{% set hash_type = "sha256" %}
{% set hash_value = "3b3b3cfcc17d61df469c9e45d7f7fc993b902f3f2c076279071fd984a6e5763d" %}
package:
name: radio-beam
version: '{{ version }}'
source:
fn: '{{ name }}-{{ version }}.tar.gz'
url: https://pypi.io/package... |
46acaa5d-ac5c-4667-a5d9-00c6f2962a20 | {
"language": "YAML"
} | ```yaml
{% set name = "removestar" %}
{% set version = "1.1" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: ece95f52afa7fb293767b39bba2fc1f0ffa12a711dea7676128f2b6f31668af9
build:
noarch... | ```yaml
{% set name = "removestar" %}
{% set version = "1.1" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: ece95f52afa7fb293767b39bba2fc1f0ffa12a711dea7676128f2b6f31668af9
build:
noarch... |
b8e52f35-89ea-440c-8a5b-d68c85067437 | {
"language": "YAML"
} | ```yaml
---
- name: Install Node.js packages
action: npm name={{ item }} state=latest global=yes
with_items:
- gulp
- ember-cli
- name: Create app directories
action: file path={{ item }} state=directory
with_items:
- /u/apps/knowhow/frontend
- /u/apps/knowhow/backend
```
Check out repositorie... | ```yaml
---
- name: Install Node.js packages
action: npm name={{ item }} state=latest global=yes
with_items:
- gulp
- ember-cli
- name: Create app directories
action: file path={{ item }} state=directory
with_items:
- /u/apps/knowhow/frontend
- /u/apps/knowhow/backend
- name: Check out app rep... |
59e5b347-474a-413d-a1d6-e734d1d16151 | {
"language": "YAML"
} | ```yaml
test:
override:
- mvn verify
deployment:
staging:
branch: master
commands:
- curl -X POST https://circleci.com/api/v1/project/osiam/connector4java-integration-tests/tree/master?circle-token=$CIRCLE_TOKEN
- >
curl -H "Content-Type: application/json" --data '{"source_type": "Branch",... | ```yaml
test:
override:
- mvn verify
deployment:
staging:
branch: master
commands:
# de-activated as we don't build the artifacts on CircleCI, yet. Re-activate this when we do.
#- curl -X POST https://circleci.com/api/v1/project/osiam/connector4java-integration-tests/tree/master?circle-token=$CIRC... |
35b23461-61f2-4f95-ab2b-d8f9591f2919 | {
"language": "YAML"
} | ```yaml
name: starkit
channels:
- conda-forge
dependencies:
- python=2.7.15
- numpy=1.12
- scipy=1.0
- pandas
- pytables
- h5py=2.6
- matplotlib
- astropy=2
- numexpr=2.6
- pytest=3.0
- pyyaml=3.12
- tqdm=4
- jupyter
# RTD requirements
- nbformat
- nbsphinx
- nbconvert
- sphinx==1.5.6
#Coverage requirements
- c... | ```yaml
name: starkit
channels:
- conda-forge
dependencies:
- python=2.7.15
- numpy=1.12
- scipy=1.0
- pandas
- pytables
- h5py=2.6
- matplotlib
- astropy=2
- numexpr=2.6
- pytest=3.0
- pyyaml=3.12
- tqdm=4
- jupyter
# RTD requirements
- nbformat
- nbsphinx==0.3.5
- nbconvert
- sphinx==1.5.6
#Coverage requireme... |
51600b97-23a3-475f-99b3-b18b8b6c8995 | {
"language": "YAML"
} | ```yaml
homepage: https://github.com/vmchale/command-line-tweeter#readme
changelog-type: ''
hash: 2d7d1bff40eb1457f3a00b70c9458fccdb0d41d52ac74798721ead7fdc150099
test-bench-deps: {}
maintainer: tmchale@wisc.edu
synopsis: Post tweets from stdin
changelog: ''
basic-deps:
http-client: -any
bytestring: -any
split: -... | ```yaml
homepage: https://github.com/vmchale/command-line-tweeter#readme
changelog-type: ''
hash: f09c7ef7d3c60f67faa057b959d92da50d8a039f6b19be3474279d766a2940d0
test-bench-deps: {}
maintainer: tmchale@wisc.edu
synopsis: Post tweets from stdin
changelog: ''
basic-deps:
http-client: -any
bytestring: -any
split: -... |
4b6e702f-3d51-43a8-886f-03830ea40044 | {
"language": "YAML"
} | ```yaml
{% set name = "tabula-java" %}
{% set version = "1.0.2" %}
{% set sha256 = "b410500479e329cb5847003f2101f1293a5e2050ee4b0095fc4cf072e9e4bae2" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://github.com/tabulapdf/{{ name }}/archive/v{{ v... | ```yaml
{% set name = "tabula-java" %}
{% set version = "1.0.2" %}
{% set sha256 = "b410500479e329cb5847003f2101f1293a5e2050ee4b0095fc4cf072e9e4bae2" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://github.com/tabulapdf/{{ name }}/archive/v{{ v... |
c46a8896-2f08-4996-abc0-5809e9722b5e | {
"language": "YAML"
} | ```yaml
name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: run lint
run: |
make lint
- name: run solutions
run: |
make run
```
Rollback ubuntu version for CI | ```yaml
name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-18.04
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: run lint
run: |
make lint
- name: run solutions
run: |
make run
``` |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.