doc_id stringlengths 36 36 | metadata dict | input stringlengths 28 4.3k | output stringlengths 11 5.45k |
|---|---|---|---|
f2d3ced1-088a-4742-9216-55bf07addab0 | {
"language": "YAML"
} | ```yaml
language: php
php:
- '5.4'
- '5.5'
- '5.6'
- '7.0'
- hhvm
- nightly```
Test Travis against just 1 file | ```yaml
language: php
php:
- '5.4'
- '5.5'
- '5.6'
- '7.0'
- hhvm
- nightly
script: phpunit route.php
``` |
76a8588d-0f6b-4d5a-8534-c2ecb032ba01 | {
"language": "YAML"
} | ```yaml
sudo: false
language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- kalakris-cmake
packages:
- gcc-4.7
- g++-4.7
- cmake
install:
# Make sure the proper C and C++ compilers are used
- export CC=gcc-4.7
- export CX... | ```yaml
sudo: false
language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- kalakris-cmake
packages:
- gcc-4.7
- g++-4.7
- cmake
install:
# Make sure the proper C and C++ compilers are used
- export CC=gcc-4.7
- export CX... |
cc8a221d-e237-4a45-a5ff-5901cd305bd9 | {
"language": "YAML"
} | ```yaml
language: go
os:
- linux
- osx
sudo: false
install:
- echo $PATH
- echo $GOPATH
- ls
- go version
- go env
- go get golang.org/x/crypto/ssh
- go get github.com/codegangsta/cli
# Build help
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
wget http://repo.continuum.io/miniconda/Minico... | ```yaml
language: go
os:
- linux
- osx
sudo: false
install:
- echo $PATH
- echo $GOPATH
- ls
- go version
- go env
- go get golang.org/x/crypto/ssh
- go get github.com/codegangsta/cli
# Build help
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
wget http://repo.continuum.io/miniconda/Minico... |
36c77eba-71fe-41bc-89fc-9dbff6199717 | {
"language": "YAML"
} | ```yaml
sudo: false
language: ruby
rvm:
- 2.4.1
- 2.3.4
- 2.2.7
- 2.1.10
- 2.0.0
notifications:
email:
- travisci@dennmart.com
```
Use latest Rubies for testing | ```yaml
sudo: false
language: ruby
rvm:
- 2.4.3
- 2.3.6
- 2.2.9
- 2.1.10
- 2.0.0
notifications:
email:
- travisci@dennmart.com
``` |
6e847df3-43b8-49a2-9300-53bed5772f95 | {
"language": "YAML"
} | ```yaml
language: scala
scala:
- 2.11.8
jdk:
- oraclejdk8
cache:
directories:
- $HOME/.ivy2/cache
- $HOME/.sbt/boot/
services:
- docker
before_script:
- docker run -d -p 127.0.0.1:6119:5432 flowcommerce/delta-postgresql:latest
script:
- sbt ++$TRAVIS_SCALA_VERSION clean compile test
# Tricks to av... | ```yaml
language: scala
scala:
- 2.11.8
jdk:
- oraclejdk8
cache:
directories:
- $HOME/.ivy2/cache
- $HOME/.sbt/boot/
services:
- docker
before_script:
- docker run -d -p 127.0.0.1:6119:5432 flowcommerce/dependency-postgresql:latest
script:
- sbt ++$TRAVIS_SCALA_VERSION clean compile test
# Tricks ... |
97295fa0-03e1-4962-a9c4-2925752af7d8 | {
"language": "YAML"
} | ```yaml
os: osx
osx_image: beta-xcode6.2
install:
- brew update
- brew install --build-from-source gdk-pixbuf --disable-gio-sniffing --without-libtiff --without-gdiplus --disable-modules --with-included-loaders=png,jpeg
- brew install --build-from-source homebrew/science/vips --with-webp --without-fftw --without-... | ```yaml
os: osx
osx_image: beta-xcode6.2
env:
- COLUMNS=240
install:
- brew update
- brew install gdk-pixbuf --disable-gio-sniffing --without-libtiff --without-gdiplus --disable-modules --with-included-loaders="png,jpeg"
- brew install homebrew/science/vips --with-webp --without-fftw --without-poppler
- brew ... |
78c5c4ae-b563-4208-a811-25e05a2e8629 | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- ruby-head
- 1.9.3
- 2.0.0
- jruby-18mode # JRuby in 1.8 mode
- jruby-19mode # JRuby in 1.9 mode
- rbx-18mode
- rbx-19mode
- 1.8.7
gemfile:
- gemfiles/3.0.gemfile
- gemfiles/3.1.gemfile
- gemfiles/3.2.gemfile
- gemfiles/4.0.gemfile
- gemfiles/4.1.beta.gemfile
bra... | ```yaml
language: ruby
rvm:
- ruby-head
- 2.1.0
- 2.0.0
- rbx-2.1.1
- 1.9.3
- jruby-19mode # JRuby in 1.9 mode
- rbx-19mode
gemfile:
- gemfiles/3.0.gemfile
- gemfiles/3.1.gemfile
- gemfiles/3.2.gemfile
- gemfiles/4.0.gemfile
- gemfiles/4.1.beta.gemfile
branches:
only:
- master
matrix:
... |
319aab9c-8784-4ffd-8c81-e9c021de4852 | {
"language": "YAML"
} | ```yaml
language: ruby
dist: xenial
cache:
bundler: true
rvm:
- 2.4
- 2.5
- 2.6
branches:
only:
- master
```
Add Ruby 2.7 to the Travis CI build matrix | ```yaml
language: ruby
dist: xenial
cache:
bundler: true
rvm:
- 2.4
- 2.5
- 2.6
- 2.7
branches:
only:
- master
``` |
961ea351-e0d3-43fc-9e73-41341be4385c | {
"language": "YAML"
} | ```yaml
sudo: false
language: java
env:
global:
- LDFLAGS=-L/tmp/proto3-a2/lib
- CXXFLAGS=-I/tmp/proto3-a2/include
- LD_LIBRARY_PATH=/tmp/proto3-a2/lib
- PATH=/tmp/proto3-a2/bin:$PATH
before_install:
- buildscripts/make_dependencies.sh # build protoc into /tmp/proto3-a2
- mkdir -p $HOME/.gradle... | ```yaml
sudo: false
language: java
env:
global:
- LDFLAGS=-L/tmp/proto3-a2/lib
- CXXFLAGS=-I/tmp/proto3-a2/include
- LD_LIBRARY_PATH=/tmp/proto3-a2/lib
- PATH=/tmp/proto3-a2/bin:$PATH
before_install:
- buildscripts/make_dependencies.sh # build protoc into /tmp/proto3-a2
- mkdir -p $HOME/.gradle... |
db0a5a1f-e50a-4b60-bfc8-2a0db56c7337 | {
"language": "YAML"
} | ```yaml
language: python
dist: trusty
virtualenv:
system_site_packages: true
sudo: required
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y python-m2crypto python-dateutil python-openssl
- sudo apt-get install -y libxmlsec1 xmlsec1 libxmlsec1-openssl libxmlsec1-dev
- sudo apt-get install -... | ```yaml
language: python
# Force use of trusty until it is the default build
# platform in late 2017
dist: trusty
virtualenv:
system_site_packages: true
sudo: required
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y python-m2crypto python-dateutil python-openssl
- sudo apt-get install -y lib... |
0b455bb5-b053-48f4-b278-16f4ea1c34af | {
"language": "YAML"
} | ```yaml
before_script: cp config/database.yml.example config/database.yml && bundle exec rake db:create && bundle exec rake db:migrate && bundle exec rake db:test:prepare
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- ree
```
Revert "Apparently, Ruby 1.9.3 doesn't like chained rake tasks" | ```yaml
before_script: cp config/database.yml.example config/database.yml && bundle exec rake db:create db:migrate db:test:prepare
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- ree
``` |
d337a29a-3b47-42a2-b6f3-b8d24876e309 | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- jruby-19mode
- rbx-19mode
- ruby-head
before_install:
- sudo apt-get install libpcre3 libpcre3-dev
notifications:
irc: "irc.freenode.org#adhearsion"
```
Allow JRuby build to fail on CI | ```yaml
language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- jruby-19mode
- rbx-19mode
- ruby-head
matrix:
allow_failures:
- rvm: jruby-19mode
before_install:
- sudo apt-get install libpcre3 libpcre3-dev
notifications:
irc: "irc.freenode.org#adhearsion"
``` |
a0041b75-4c7f-49f8-add3-6501c637f3de | {
"language": "YAML"
} | ```yaml
language: objective-c
xcode_workspace: Example/HLSpriteKit.xcworkspace
xcode_scheme: HLSpriteKit
podfile: Example/Podfile
```
Configure Travis CI for iphonesimulator. | ```yaml
language: objective-c
xcode_workspace: Example/HLSpriteKit.xcworkspace
xcode_scheme: HLSpriteKit
xcode_sdk: iphonesimulator
podfile: Example/Podfile
branches:
only:
- master
``` |
847c4618-773b-4f1c-bc18-1b65136f8cdd | {
"language": "YAML"
} | ```yaml
language: go
go:
- 1.6
env: PATH=/home/travis/gopath/bin:$PATH
script:
- make test
after_script:
- make cover
notifications:
slack:
secure: cPeJRg+ouTlemEV5UM4muhDwtIM0dktcs3mnfB73oZ2MGOimv/DFpL+VTRLlkWau8l0dT4ngLlGPcveLrXQXwps2LsJMr+gS6Az/CAQCIl21oj4bnjs5uGYTG8hM8ymVzGINPNnj5Fnn5DUMunA2sow30qxfuCnSUM... | ```yaml
language: go
go:
- 1.6
- 1.9
env: PATH=/home/travis/gopath/bin:$PATH
script:
- make test
after_script:
- make cover
notifications:
slack:
secure: cPeJRg+ouTlemEV5UM4muhDwtIM0dktcs3mnfB73oZ2MGOimv/DFpL+VTRLlkWau8l0dT4ngLlGPcveLrXQXwps2LsJMr+gS6Az/CAQCIl21oj4bnjs5uGYTG8hM8ymVzGINPNnj5Fnn5DUMunA2sow30qxf... |
3627d8b2-624a-434d-957d-e55d733aa631 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- iojs
- "0.12"
env:
- NODE_ENV=development
script: "npm test"
```
Drop old node <= 0.12 versions. | ```yaml
language: node_js
node_js:
- 6
- 5
- 4.6
``` |
ce59a412-bafa-416e-80b4-d5857cbabdfc | {
"language": "YAML"
} | ```yaml
language: scala
cache:
directories:
- $HOME/.m2/repository/
- $HOME/.ivy2/cache/
- $HOME/.sbt/boot/
sudo: false
jdk:
- openjdk7
- oraclejdk8
branches:
only:
- develop
script:
- ./sbt jcheckStyle
- ./sbt test
- ./sbt test -J-Dmsgpack.universal-buffer=true
matrix:
include:
... | ```yaml
language: scala
cache:
directories:
- $HOME/.m2/repository/
- $HOME/.ivy2/cache/
- $HOME/.sbt/boot/
- $HOME/.coursier
sudo: false
jdk:
- openjdk7
- oraclejdk8
branches:
only:
- develop
script:
- ./sbt jcheckStyle
- ./sbt test
- ./sbt test -J-Dmsgpack.universal-buffer=true
... |
9b7e98ea-8705-410b-917f-bf72eb92ad18 | {
"language": "YAML"
} | ```yaml
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.5-dev" # 3.5 development branch
- "3.6"
- "3.6-dev" # 3.6 development branch
install:
- pip install --upgrade pip setuptools wheel pytest
- pip install --only-binary=numpy numpy
- pip install --only-binary=scipy scipy
- pip install --only... | ```yaml
language: python
python:
- "2.5"
- "2.6"
- "2.7"
- "2.7-dev"
- "3.4"
- "3.5"
- "3.5-dev" # 3.5 development branch
- "3.6"
- "3.6-dev" # 3.6 development branch
install:
- pip install --upgrade pip setuptools wheel pytest
- pip install --only-binary=numpy numpy
- pip install --only-binary=... |
32f8a9c0-12fa-4f23-a804-00f8f5a9cad5 | {
"language": "YAML"
} | ```yaml
language: erlang
notifications:
email: false
otp_release:
- 17.4
- 17.3
- 17.1
install: true
script: "make && make ct"
```
Remove otp 17.1 and add 18.0 | ```yaml
language: erlang
notifications:
email: false
otp_release:
- 18.0
- 17.4
- 17.3
install: true
script: "make && make ct"
``` |
ef7f14c0-6581-4a93-a410-4a41ef7071ee | {
"language": "YAML"
} | ```yaml
name: Publish
on:
release:
types: [created]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12
registry-url: https://registry.npmjs.org/
- name: version
run: |
... | ```yaml
name: Publish
on:
release:
types: [created]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12
registry-url: https://registry.npmjs.org/
- name: version
run: |
... |
ac596e8b-9e1c-44bb-b6f1-ecbd508b19d2 | {
"language": "YAML"
} | ```yaml
Categories:
- System
License: Apache-2.0
SourceCode: https://github.com/KeikaiLauncher/KeikaiLauncher
IssueTracker: https://github.com/KeikaiLauncher/KeikaiLauncher/issues
Changelog: https://github.com/KeikaiLauncher/KeikaiLauncher/releases
Summary: Fast, minimalistic launcher
Description: |
Fast, minima... | ```yaml
Categories:
- System
License: Apache-2.0
SourceCode: https://github.com/KeikaiLauncher/KeikaiLauncher
IssueTracker: https://github.com/KeikaiLauncher/KeikaiLauncher/issues
Changelog: https://github.com/KeikaiLauncher/KeikaiLauncher/releases
AutoName: Keikai Launcher
Summary: Fast, minimalistic launcher
Descr... |
35c59b40-a4fa-4e30-b298-9f10926aa460 | {
"language": "YAML"
} | ```yaml
name: Release Processing
on:
release:
types:
- published
- updated
jobs:
publish-docs:
runs-on: macos-latest
steps:
- run: sudo xcode-select -s /Applications/Xcode_12.1.app/Contents/Developer
- uses: dawidd6/action-get-tag@v1
id: get-tag
- uses: actions/ch... | ```yaml
name: Release Processing
on:
release:
types:
- published
- updated
jobs:
publish-docs:
runs-on: macos-latest
steps:
- run: sudo xcode-select -s /Applications/Xcode_12.1.app/Contents/Developer
- uses: dawidd6/action-get-tag@v1
id: get-tag
- uses: actions/ch... |
028fb312-904e-4cbe-b9b0-20d674a91060 | {
"language": "YAML"
} | ```yaml
language: python
python:
- "3.6"
env:
global:
- NEWEST_PYTHON=3.6
install:
- pip install -e .'[dev]'
script:
- pytest
after_success:
- |
if [[ $TRAVIS_PYTHON_VERSION == $NEWEST_PYTHON ]]; then
pip install python-coveralls && coveralls
fi
```
Disable annoying Travis CI emails | ```yaml
language: python
python:
- "3.6"
env:
global:
- NEWEST_PYTHON=3.6
install:
- pip install -e .'[dev]'
script:
- pytest
after_success:
- |
if [[ $TRAVIS_PYTHON_VERSION == $NEWEST_PYTHON ]]; then
pip install python-coveralls && coveralls
fi
notifications:
email: false
``` |
f3d2fe4d-49e3-4b88-856b-a02a6dea6abc | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "0.11"
- "0.10"
- "0.8"
services:
- mongodb```
Revert "removed unsupported node versions" | ```yaml
language: node_js
node_js:
- "0.11"
- "0.10"
- "0.8"
- "0.6"
- iojs
- iojs-v1.0.2
services:
- mongodb``` |
7c080b33-a0aa-418c-8fd6-5323756c7691 | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 2.2.6
- 2.3.3
- 2.4.0
script: bundle exec rspec && bundle exec codeclimate-test-reporter
addons:
code_climate:
repo_token: 2dfc2d0c4c4bbca83f32cf965e83214d656168982cabf40e5f55855037815157
```
Test on Ruby 2.5 as well | ```yaml
language: ruby
rvm:
- 2.2.2
- 2.3.0
- 2.4.0
- 2.5.0
script: bundle exec rspec && bundle exec codeclimate-test-reporter
addons:
code_climate:
repo_token: 2dfc2d0c4c4bbca83f32cf965e83214d656168982cabf40e5f55855037815157
``` |
68974e14-01e2-452e-8f2e-47f8370c8f51 | {
"language": "YAML"
} | ```yaml
language: python
python:
- "2.7"
# command to install dependencies
install:
- "pip install pip==1.5.4"
- "pip install -r requirements/ci.txt"
- "pip install -r requirements/unittests.txt"
# command to run tests
script: python manage.py jenkins --settings=tsune.settings.ci --verbosity 2
after_success:
... | ```yaml
language: python
python:
- "2.7"
# command to install dependencies
install:
- "pip install pip==1.5.4"
- "pip install coveralls"
- "pip install -r requirements/ci.txt"
- "pip install -r requirements/unittests.txt"
# command to run tests
script: python manage.py jenkins --settings=tsune.settings.ci --v... |
911f6d45-039d-4876-b8fc-34dd4d448282 | {
"language": "YAML"
} | ```yaml
version: "2"
services:
database:
image: db:v1
environment:
- DATA=100
ports:
- 5432:5432
website:
build: ../website
ports:
- 3000:3000
environment:
- PORT=3000
- APP_DB_HOST=database
- APP_DB_PORT=5432
- APP_DB... | ```yaml
version: "2"
services:
database:
image: db:master
environment:
- DATA=1
ports:
- 5432:5432
website:
build: ../website_master
volumes:
- ../website_master:/src
ports:
- 3000:3000
environment:
- PORT=3000
- APP_DB_... |
c5299456-e9e9-4e47-9410-abc9cef2d1bd | {
"language": "YAML"
} | ```yaml
name: biorxiv-licenses
channels:
- defaults
- conda-forge
dependencies:
- ipykernel=4.5.2
- pandas=0.19.2
- python=3.6.0
- altair=1.2.0
- requests=2.13.0
- statsmodels=0.8.0
- pip:
- nameparser==0.5.1
```
Add notebook and nbconvert to environemnt | ```yaml
name: biorxiv-licenses
channels:
- defaults
- conda-forge
dependencies:
- ipykernel=4.5.2
- pandas=0.19.2
- python=3.6.0
- nbconvert=5.1.1
- notebook=4.4.1
- altair=1.2.0
- requests=2.13.0
- statsmodels=0.8.0
- pip:
- nameparser==0.5.1
``` |
488d90f9-d13d-420f-8d9d-79d7b1a7ff46 | {
"language": "YAML"
} | ```yaml
name: IOOS
channels:
- conda-forge
- ioos
dependencies:
- python=3.5
- anaconda-navigator
- beautifulsoup4
- cartopy
#- cc-plugin-glider # Python 2.7
- cmocean
- compliance-checker
- ctd
- cython
- descartes
- fiona
- folium
- gdal
- geojson
-... | ```yaml
name: IOOS
channels:
- conda-forge
dependencies:
- python=3.5
- anaconda-navigator
- beautifulsoup4
- cartopy
#- cc-plugin-glider # Python 2.7
- cmocean
- compliance-checker
- ctd
- cython
- descartes
- fiona
- folium
- gdal
- geojson
- geojsonio
... |
6ba2f741-91e1-4f88-8275-c3d0d667388e | {
"language": "YAML"
} | ```yaml
name: pyneqsys
channels:
- bjodah
- conda-forge
- defaults
dependencies:
- python >=3.5
- numpy >1.7
- scipy >=0.19.1
- sym >=0.3.1
- sympy >=1.1.1
- matplotlib >=1.5.3
- notebook
- nbconvert
- pykinsol
- levmar
- cyipopt
```
Use python 2 on binder for now (waiting for new upstream ... | ```yaml
name: pyneqsys
channels:
- bjodah
- conda-forge
- defaults
dependencies:
- python ==2.7
- numpy >1.7
- scipy >=0.19.1
- sym >=0.3.1
- sympy >=1.1.1
- matplotlib >=1.5.3
- notebook
- nbconvert
- pykinsol
- levmar
- cyipopt
``` |
ff92f6de-1e8d-4c64-bdbf-ca37875b3299 | {
"language": "YAML"
} | ```yaml
---
pages:
- tool/test.md
hide_body: false
fields:
- type: text
name: title
label: Title
- type: textarea
name: description
label: Description
- type: datetime
name: date
label: Date
description: Date added to the database
- type: list
label: Tools
name: tools
config:
use_select: true
... | ```yaml
---
pages:
- tool/test.md
hide_body: false
fields:
- type: text
name: title
label: Title
- type: textarea
name: description
label: Description
- type: datetime
name: date
label: Date
description: Date added to the database
- type: list
label: Tools
name: tools
config:
use_select: true
... |
59c83a40-fe12-4913-a119-fda2e9c79842 | {
"language": "YAML"
} | ```yaml
---
extensions:
exclusions:
- name: sodium
- name: libz
- name: yaf
- name: amqp
- name: cassandra
- name: interbase
- name: recode
- name: wddx
- name: phalcon
```
Exclude 4.1.7 tideways in favor of 5.0.2 for php 7.4 | ```yaml
---
extensions:
exclusions:
- name: sodium
- name: libz
- name: yaf
- name: amqp
- name: cassandra
- name: interbase
- name: recode
- name: wddx
- name: phalcon
- name: tideways
``` |
a9f0b48a-2768-459b-b3ad-d6c0a26084cb | {
"language": "YAML"
} | ```yaml
version: 2
updates:
- package-ecosystem: bundler
directory: /
schedule:
interval: daily
allow:
# Security updates
- dependency-name: brakeman
dependency-type: direct
# Internal gems
- dependency-name: "govuk*"
dependency-type: direct
- dependency... | ```yaml
version: 2
updates:
- package-ecosystem: bundler
directory: /
schedule:
interval: daily
- package-ecosystem: npm
directory: /
schedule:
interval: daily
# Ruby needs to be upgraded manually in multiple places, so cannot
# be upgraded by Dependabot. That effectively makes the... |
80bf4d64-c3d9-4ade-87ff-a9a445d95609 | {
"language": "YAML"
} | ```yaml
- id: isort
name: isort
entry: isort
require_serial: true
language: python
language_version: python3
types_or: [cython, pyi, python]
args: ['--filter-files']
```
Put minimum pre-commit version in hook | ```yaml
- id: isort
name: isort
entry: isort
require_serial: true
language: python
language_version: python3
types_or: [cython, pyi, python]
args: ['--filter-files']
minimum_pre_commit_version: '2.9.0'
``` |
5f3afd25-3bbf-412c-b186-3af8642fdf34 | {
"language": "YAML"
} | ```yaml
homepage: https://github.com/lmj/cayley-dickson
changelog-type: ''
hash: 46bad8d45ed672b4129fa529a1d6b7a85542bfcb8692b3cee7f7b62c7fc729c2
test-bench-deps:
base: ! '>=4.8 && <5'
random: ! '>=1'
maintainer: James M. Lawrence <llmjjmll@gmail.com>
synopsis: Complex numbers, quaternions, octonions, sedenions, et... | ```yaml
homepage: https://github.com/lmj/cayley-dickson
changelog-type: ''
hash: 325ce470e8c4f045796d5b7afca342ef03d7a01214a66307c1346bec6234be9d
test-bench-deps:
base: ! '>=4.8 && <5'
random: ! '>=1'
maintainer: James M. Lawrence <llmjjmll@gmail.com>
synopsis: Complex numbers, quaternions, octonions, sedenions, et... |
598a624a-ff61-4e84-a6ad-b83f078101db | {
"language": "YAML"
} | ```yaml
Categories:
- Navigation
- Sports & Health
License: CECILL-2.1
AuthorName: Codefish
AuthorEmail: codefish@online.fr
SourceCode: https://gitlab.com/codefish42/covidat
IssueTracker: https://gitlab.com/codefish42/covidat/issues
AutoName: CovidAt
RepoType: git
Repo: https://gitlab.com/codefish42/covidat.git
... | ```yaml
Categories:
- Navigation
- Sports & Health
License: CECILL-2.1
AuthorName: Codefish
AuthorEmail: codefish@online.fr
SourceCode: https://gitlab.com/codefish42/covidat
IssueTracker: https://gitlab.com/codefish42/covidat/issues
AutoName: CovidAt
RepoType: git
Repo: https://gitlab.com/codefish42/covidat.git
... |
0afbec6d-1cda-4c20-a488-677cf9e26f17 | {
"language": "YAML"
} | ```yaml
homepage: ''
changelog-type: ''
hash: dec6d7031c7fc95046187a1744646d4b40de48c6b591b08cd20a73257cc9a67f
test-bench-deps:
logging-facade: -any
base: ==4.*
hspec: ==2.*
maintainer: Simon Hengel <sol@typeful.net>
synopsis: Simple logging abstraction that allows multiple back-ends
changelog: ''
basic-deps:
b... | ```yaml
homepage: ''
changelog-type: ''
hash: fc89005336a9b64c524183154716ebf8a26c27f8fa5730225f818f0128c2a2b2
test-bench-deps:
logging-facade: -any
base: ==4.*
hspec: ==2.*
maintainer: Simon Hengel <sol@typeful.net>
synopsis: Simple logging abstraction that allows multiple back-ends
changelog: ''
basic-deps:
b... |
07f63102-c92a-442f-b3dc-22292ef121d0 | {
"language": "YAML"
} | ```yaml
name: Tests
on: [push]
jobs:
run:
runs-on: ubuntu-latest
strategy:
matrix:
php: ['7.4', '8.0', '8.1']
name: Testing on PHP ${{ matrix.php }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
... | ```yaml
name: Tests
on: [push]
jobs:
run:
runs-on: ubuntu-latest
strategy:
matrix:
php: ['8.0', '8.1']
name: Testing on PHP ${{ matrix.php }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
... |
82cc4520-9141-4620-a698-2cf3da964a52 | {
"language": "YAML"
} | ```yaml
name: package
on: [push]
jobs:
ui:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Build development image
run: |
docker build -t alephdata/aleph-ui:${GITHUB_SHA} .
docker tag alephdata/aleph-ui:${GITHUB_SHA} alephdata/aleph-ui:latest
- name: Build... | ```yaml
name: package
on: [push]
jobs:
docker-ui:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Build development image
run: |
docker build -t alephdata/aleph-ui:${GITHUB_SHA} ui
docker tag alephdata/aleph-ui:${GITHUB_SHA} alephdata/aleph-ui:latest
- nam... |
d8199795-b458-4dfa-9a56-5a3a4b938927 | {
"language": "YAML"
} | ```yaml
name: Build
on: [ push, pull_request, workflow_dispatch ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: "Maven Cache"
uses: actions/cache@v2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/p... | ```yaml
name: Build
on: [ push, pull_request, workflow_dispatch ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: "Maven Cache"
uses: actions/cache@v2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/p... |
89a5861b-8703-4fca-bb47-dca34cdde92a | {
"language": "YAML"
} | ```yaml
name: C/C++ CI
on: [push, pull_request]
jobs:
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.x'
- run: |
sudo apt-get update
sudo apt-get install -qy libgtkmm-3.0-dev libconfig++-dev... | ```yaml
name: C/C++ CI
on: [push, pull_request]
jobs:
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.x'
- run: |
sudo apt-get update
sudo apt-get install -qy libgtkmm-3.0-dev libconfig++-dev... |
c8b27ecc-ca42-4a56-8d6c-5cfbbaa7f533 | {
"language": "YAML"
} | ```yaml
name: Swift
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: swift build -v
- name: Run tests
run: swift test -v
```
Add Linux tests on workflow | ```yaml
name: Swift
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
macOS:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: macOS
run: swift build -v
- name: Run macOS tests
run: swift test -v
linux:
runs-on: ubu... |
12b54853-b6fa-4b8c-8f4e-bc9ecd2a04da | {
"language": "YAML"
} | ```yaml
name: Tests
on:
push:
paths-ignore:
- 'readme.md'
- 'assets/**'
pull_request:
paths-ignore:
- 'readme.md'
- 'assets/**'
release:
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
laravel: [6.*]
php: [7.2, 7.3]
fail-fast: false
... | ```yaml
name: Tests
on:
push:
paths-ignore:
- 'readme.md'
- 'assets/**'
pull_request:
paths-ignore:
- 'readme.md'
- 'assets/**'
release:
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
laravel: [6.*]
php: [7.2, 7.3]
fail-fast: false
... |
a192876f-08a1-4d68-a3cb-90ebb4d42c9e | {
"language": "YAML"
} | ```yaml
name: Test
on:
push:
branches:
- master
pull_request:
branches:
- master
paths:
- '.github/workflows/**'
- '*.js'
- 'package.json'
jobs:
tests:
env:
NPM_CONFIG_PROGRESS: "false"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
... | ```yaml
name: Test
on:
push:
branches:
- master
pull_request:
branches:
- master
paths:
- '.github/workflows/**'
- '*.js'
- 'package.json'
jobs:
tests:
env:
NPM_CONFIG_PROGRESS: "false"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
... |
fc838ef7-ddb8-4981-adcf-a4fe2db0c925 | {
"language": "YAML"
} | ```yaml
name: Tests
on:
- push
- pull_request
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
php: ['7.1', '7.2', '7.3', '7.4', '8.0']
fail-fast: false
name: PHP ${{ matrix.php }} tests on ${{ matrix.os }}
s... | ```yaml
name: Tests
on:
- push
- pull_request
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
php: ['7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2']
fail-fast: false
name: PHP ${{ matrix.php }} tests on ${{ matr... |
9e9ccc92-c3e4-459e-82c7-963560c3d003 | {
"language": "YAML"
} | ```yaml
- name: download consul
get_url: >
url={{consul_ui_download}}
dest={{consul_download_folder}}
register: consul_ui_was_downloaded
- name: copy and unpack
unarchive: >
src={{ consul_download_folder }}/{{ consul_ui_archive }}
dest={{ consul_home }}
copy=no
when: consul_ui_was_downloade... | ```yaml
- name: download consul ui
get_url: >
url={{consul_ui_download}}
dest={{consul_download_folder}}
register: consul_ui_was_downloaded
- name: copy and unpack ui
unarchive: >
src={{ consul_download_folder }}/{{ consul_ui_archive }}
dest={{ consul_home }}
copy=no
when: consul_ui_was_dow... |
d916345b-251c-4929-900f-6e6a5746feb3 | {
"language": "YAML"
} | ```yaml
uuid: 92528819-9819-4c33-af31-49bfb52ce0bb
langcode: en
status: true
dependencies:
config:
- field.storage.node.field_picture
- node.type.blog
module:
- image
id: node.blog.field_picture
field_name: field_picture
entity_type: node
bundle: blog
label: Picture
description: ''
required: false
trans... | ```yaml
uuid: 92528819-9819-4c33-af31-49bfb52ce0bb
langcode: en
status: true
dependencies:
config:
- field.storage.node.field_picture
- node.type.blog
module:
- image
id: node.blog.field_picture
field_name: field_picture
entity_type: node
bundle: blog
label: Picture
description: "Some help text\r\n"
req... |
594b76ba-a767-483f-ad22-68d458d11abf | {
"language": "YAML"
} | ```yaml
postsubmits:
# this is the github repo we'll build from; this block needs to be repeated for each repo.
kubernetes-sigs/k8s-container-image-promoter:
- name: cip-postsubmit-push-to-staging
cluster: test-infra-trusted
annotations:
# this is the name of some testgrid dashboard to repor... | ```yaml
postsubmits:
# this is the github repo we'll build from; this block needs to be repeated for each repo.
kubernetes-sigs/k8s-container-image-promoter:
- name: cip-postsubmit-push-to-staging
cluster: test-infra-trusted
annotations:
# this is the name of some testgrid dashboard to repor... |
355addd9-5882-4c32-8af9-cfe23aeaa4ba | {
"language": "YAML"
} | ```yaml
homepage: https://github.com/kberger/anapioficeandfire-haskell#readme
changelog-type: ''
hash: 5a32a3e7ce9259b39964d4e5f890482ddeb529231c8a58124788f6ec72074599
test-bench-deps:
base: -any
apioiaf-client: -any
maintainer: krab.berger@gmail.com
synopsis: Consumer library for anapioficeandfire.com
changelog: '... | ```yaml
homepage: https://github.com/kberger/anapioficeandfire-haskell#readme
changelog-type: ''
hash: 4edef07ad38f9b3f3d627257aeb7a13b73fa7e73dce2a64d7dacda02c94ed241
test-bench-deps:
base: -any
apioiaf-client: -any
maintainer: krab.berger@gmail.com
synopsis: Consumer library for anapioficeandfire.com
changelog: '... |
15a50e43-696a-423d-8fa0-81a9e581665c | {
"language": "YAML"
} | ```yaml
---
- name: Starting horizon container
kolla_docker:
action: "start_container"
common_options: "{{ docker_common_options }}"
image: "{{ horizon_image_full }}"
name: "horizon"
environment:
ENABLE_CLOUDKITTY: "{{ 'yes' if enable_cloudkitty | bool else 'no' }}"
ENABLE_DESIGNATE: "... | ```yaml
---
- name: Starting horizon container
kolla_docker:
action: "start_container"
common_options: "{{ docker_common_options }}"
image: "{{ horizon_image_full }}"
name: "horizon"
environment:
ENABLE_CLOUDKITTY: "{{ 'yes' if enable_cloudkitty | bool else 'no' }}"
ENABLE_DESIGNATE: "... |
2f097793-2b11-4c4f-a901-70b39da5368c | {
"language": "YAML"
} | ```yaml
name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
matrix:
java: [8, 11]
steps:
- uses: actions/checkout@v2
- name: Cache
uses: actions/cache@v2.1.5
env:
cache-name: cache-sbt-libs
with:
... | ```yaml
name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
matrix:
java: [8, 11]
steps:
- uses: actions/checkout@v2
- name: Cache
uses: actions/cache@v2.1.6
env:
cache-name: cache-sbt-libs
with:
... |
b4c3579c-45c0-4f3f-8cfb-09a28aef7c03 | {
"language": "YAML"
} | ```yaml
name: Sonar ESQL build
on:
push:
branches:
- '**'
tags:
- '[0-9]+.[0-9]+.[0-9]+'
- '[0-9]+.[0-9]+.[0-9]+-RC[0-9]+'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
... | ```yaml
name: Sonar ESQL build
on:
push:
branches:
- '**'
tags:
- '[0-9]+.[0-9]+.[0-9]+'
- '[0-9]+.[0-9]+.[0-9]+-RC[0-9]+'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
... |
3047ffd3-5b76-4e23-a93f-9a5b21d7899d | {
"language": "YAML"
} | ```yaml
name: build
on:
push:
paths-ignore:
- ".editorconfig"
- ".gitignore"
- ".screenrc"
- "LICENSE.txt"
- "README.md"
- "scripts/release"
- "TODO.md"
tags-ignore:
- "**"
schedule:
# Minute (0-59), Hour (0-23), Day of the month (1-31), Month of the Year... | ```yaml
name: build
on:
push:
tags-ignore:
- "**"
schedule:
# Minute (0-59), Hour (0-23), Day of the month (1-31), Month of the Year (1-12), Day of the week (0-6, 0 = Sunday)
- cron: "0 6 * * 1"
workflow_dispatch:
jobs:
automated-tests:
runs-on: ubuntu-20.04
name: Run automated tests... |
e8e67801-1812-4287-abd9-eee6ca27ebb8 | {
"language": "YAML"
} | ```yaml
name: Tests
on: [ push, pull_request ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby:
- 2.3
- 2.4
- 2.5
- 2.6
- 2.7
- 3.0
- head
continue-on-error: ${{ endsWith(matrix.ruby, 'h... | ```yaml
name: Tests
on: [ push, pull_request ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby:
- 2.3
- 2.4
- 2.5
# - 2.6
- 2.7
- 3.0
- head
continue-on-error: ${{ endsWith(matrix.ruby, ... |
f725abf3-fda0-4784-b50c-d6f7c0279e84 | {
"language": "YAML"
} | ```yaml
name: Tests
on:
pull_request:
push:
branches:
- main
schedule:
- cron: '0 0 * * 0' # weekly
jobs:
tests:
timeout-minutes: 30
runs-on: ubuntu-20.04
services:
postgres:
image: postgres:13
ports:
- 5432:5432
options: >-
--health-c... | ```yaml
name: Tests
on:
pull_request:
push:
branches:
- main
schedule:
- cron: '0 0 * * 0' # weekly
jobs:
tests:
timeout-minutes: 30
runs-on: ubuntu-20.04
services:
postgres:
image: postgres:13
ports:
- 5432:5432
options: >-
--health-c... |
93bb818c-bf53-4b56-9cc6-4aec6bf3bf52 | {
"language": "YAML"
} | ```yaml
name: build
on:
push:
branches: [ master, dev ]
pull_request:
branches: [ master, dev ]
jobs:
build:
runs-on: ${{ matrix.platform }}
strategy:
max-parallel: 4
matrix:
platform:
- ubuntu-latest
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11-dev']... | ```yaml
name: build
on:
push:
branches: [ master, dev ]
pull_request:
branches: [ master, dev ]
jobs:
build:
runs-on: ${{ matrix.platform }}
strategy:
max-parallel: 4
matrix:
platform:
- ubuntu-latest
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11-dev']... |
75ff324b-dd97-4a8e-98d7-20481ea5eeaa | {
"language": "YAML"
} | ```yaml
#
# MVC configuration for the Flow Framework
#
Neos:
Flow:
mvc:
# Defines routes that should be included after existing routes defined in the main Routes.yaml (if any)
# Note: This only allows to include existing Routes.yaml files from other packages, you can't adjust the routes via Settings.... | ```yaml
#
# MVC configuration for the Flow Framework
#
Neos:
Flow:
mvc:
# Defines routes that should be included after existing routes defined in the main Routes.yaml (if any)
# Note: This only allows to include existing Routes.yaml files from other packages, you can't adjust the routes via Settings.... |
9d41cf73-6f7a-43e2-b14b-112d3fe40274 | {
"language": "YAML"
} | ```yaml
---
name: build
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
ci:
name: Run checks and tests over ${{matrix.otp_vsn}} and ${{matrix.os}}
runs-on: ${{matrix.os}}
container:
image: erlang:${{matrix.otp_vsn}}
strategy:
matrix:
otp_... | ```yaml
---
name: build
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
ci:
name: Run checks and tests over ${{matrix.otp_vsn}} and ${{matrix.os}}
runs-on: ${{matrix.os}}
container:
image: erlang:${{matrix.otp_vsn}}
strategy:
matrix:
otp_... |
9a2521ca-adec-4dd5-b602-bd95d6a6dd22 | {
"language": "YAML"
} | ```yaml
name: Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
env:
PGPASSWORD: postgres
PGUSER: postgres
services:
postgres:
image: postgis/postgis:9.5-2.5
env:
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd pg_isre... | ```yaml
name: Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
env:
PGPASSWORD: postgres
PGUSER: postgres
strategy:
matrix:
go:
- '1.12'
- '1.19'
postgis:
- '9.5-2.5'
- '9.5-3.0'
- '10-2.5'
... |
0cf5b472-dbe1-4527-9085-1da1311a264f | {
"language": "YAML"
} | ```yaml
name: CI
on:
push:
branches: [ '*' ]
pull_request:
branches: [ '*' ]
jobs:
build:
name: Build and test
strategy:
matrix:
scala: [ 2.11.12, 2.12.15, 2.13.7 ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Scala
uses: olafurpg/... | ```yaml
name: CI
on:
push:
branches: [ '*' ]
pull_request:
branches: [ '*' ]
jobs:
build:
name: Build and test
strategy:
matrix:
scala: [ 2.11.12, 2.12.15, 2.13.7 ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Scala
uses: olafurpg/... |
f8cc2662-8da0-4da6-b9ad-50abd84117d6 | {
"language": "YAML"
} | ```yaml
name: ci
on:
pull_request:
push:
branches:
- master
tags:
- v*
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Prepare
id: prepare
run: |
TAG=${GITHUB_REF##*/}
echo ::set-output name=tag_nam... | ```yaml
name: ci
on:
pull_request:
push:
branches:
- main
tags:
- v*
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Prepare
id: prepare
run: |
TAG=${GITHUB_REF##*/}
echo ::set-output name=tag_name:... |
c9687f5a-77bb-4bc5-8dbd-2a63abec1701 | {
"language": "YAML"
} | ```yaml
name: ci
on:
- push
- pull_request
jobs:
test:
strategy:
matrix:
java: [ 8, 16 ]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup
uses: actions/setup-java@v3
with:
distribution: 'zulu'
... | ```yaml
name: ci
on:
- push
- pull_request
jobs:
test:
strategy:
matrix:
java: [ 8, 16 ]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup
uses: actions/setup-java@v3
with:
distribution: 'zulu'
... |
c9c19e97-9bfd-41df-b225-befdc0adf088 | {
"language": "YAML"
} | ```yaml
name: CI
on:
push:
branches:
- master
pull_request:
- "*"
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu]
# We still kind of support Ruby 1.8.7
ruby: [2.5, 2.6, 2.7, 3.0, head, jruby]
name: >-
${{matrix.os}}-ruby${{matrix.rub... | ```yaml
name: CI
on:
push:
branches:
- master
pull_request:
branches:
- "*"
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu]
# We still kind of support Ruby 1.8.7
ruby: [2.5, 2.6, 2.7, 3.0, head, jruby]
name: >-
${{matrix.os}}-rub... |
faad909a-6283-45f6-8bb0-77b29d3aa1af | {
"language": "YAML"
} | ```yaml
name: test with macos
on: [push, pull_request]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- run: git clone --depth 1 https://github.com/sstephenson/bats.git
- run: PATH="./bats/bin:$PATH" script/test
```
Test Linux in GitHub Actions too | ```yaml
name: Test
on: [push, pull_request]
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- run: git clone --depth 1 https://github.com/sstephenson/bats.git
- run: PATH="./bats... |
43218c1e-25f0-48c5-ba4d-57db69a0e012 | {
"language": "YAML"
} | ```yaml
name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.12', '1.13', '1.14']
steps:
- name: Set up Go ${{ matrix.go }}
uses: actions/setup-go@v2
with:
... | ```yaml
name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.12', '1.13', '1.14']
steps:
- name: Set up Go ${{ matrix.go }}
uses: actions/setup-go@v2
with:
... |
e173fa4d-1e89-4a3a-8c2d-c5c44f2c93b2 | {
"language": "YAML"
} | ```yaml
# https://dev-accel.shopify.io/dev/railgun/Railgun-Config
name: gozk-recipes
vm:
image: /opt/dev/misc/railgun-images/default
ip_address: 192.168.64.87
memory: 2G
cores: 2
volumes:
root: '2G'
services:
- toxiproxy
- zookeeper
hostnames:
- gozk-recipes.myshopify.io
```
Change the memory... | ```yaml
# https://dev-accel.shopify.io/dev/railgun/Railgun-Config
name: gozk-recipes
vm:
image: /opt/dev/misc/railgun-images/default
ip_address: 192.168.64.87
memory: 200M
cores: 2
volumes:
root: '100M'
services:
- toxiproxy
- zookeeper
hostnames:
- gozk-recipes.myshopify.io
``` |
8719a8d3-775b-4ca3-8488-0febb8f371a6 | {
"language": "YAML"
} | ```yaml
# Configuration for probot-stale - https://github.com/probot/stale
# Number of days of inactivity before an Issue or Pull Request becomes stale
daysUntilStale: 60
# Number of days of inactivity before a stale Issue or Pull Request is closed
daysUntilClose: 7
# Issues or Pull Requests with these labels will nev... | ```yaml
# Configuration for probot-stale - https://github.com/probot/stale
# Number of days of inactivity before an Issue or Pull Request becomes stale
daysUntilStale: 60
# Number of days of inactivity before a stale Issue or Pull Request is closed
daysUntilClose: 7
# Issues or Pull Requests with these labels will nev... |
abd5ed7f-9362-4934-913e-f2ba16d4d1e9 | {
"language": "YAML"
} | ```yaml
site_name: Keras-vis Documentation
theme: readthedocs
docs_dir: sources
site_description: 'Documentation for keras-vis, Neural Network Visualization Toolkit.'
extra_javascript:
- https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML
extra_css:
- css/extras.css
markdown_extensions... | ```yaml
site_name: Keras-vis Documentation
theme: readthedocs
docs_dir: sources
repo_url: http://github.com/raghakot/keras-vis
edit_uri: blob/master/docs/templates
site_description: 'Documentation for keras-vis, Neural Network Visualization Toolkit.'
extra_javascript:
- https://cdn.mathjax.org/mathjax/latest/MathJax... |
3f5e03c1-2fa6-419e-abb5-16d1e026d6bc | {
"language": "YAML"
} | ```yaml
meta: ~
compilation:
cloud_properties:
ram: 1024
disk: 6144
cpu: 2
networks: (( merge ))
resource_pools:
- name: services-small
stemcell:
name: bosh-vsphere-esxi-ubuntu-trusty-go_agent
version: (( merge || 2671 ))
cloud_properties:
ram: 1024
# enough for extrac... | ```yaml
meta: ~
compilation:
cloud_properties:
ram: 1024
disk: 10240
cpu: 2
networks: (( merge ))
resource_pools:
- name: services-small
stemcell:
name: bosh-vsphere-esxi-ubuntu-trusty-go_agent
version: (( merge || 2671 ))
cloud_properties:
ram: 1024
# enough for extra... |
36cd3ba7-2219-4abd-958d-353c20e1cfd5 | {
"language": "YAML"
} | ```yaml
name: cocoscore
channels:
- defaults
- conda-forge
dependencies:
- xgboost=0.6a2
- nltk=3.2.4
- numpy=1.13.3
- pandas=0.20.3
- python=3.6.1
- scikit-learn=0.19.1
- scipy=0.19.1
- pip:
- gensim==3.0.1
```
Fix boto version in dependencies as this seems to be needed by gensim | ```yaml
name: cocoscore
channels:
- defaults
- conda-forge
dependencies:
- xgboost=0.6a2
- nltk=3.2.4
- numpy=1.13.3
- pandas=0.20.3
- python=3.6.1
- scikit-learn=0.19.1
- scipy=0.19.1
- pip:
- boto==2.48.0
- gensim==3.0.1
``` |
58015627-fedd-4546-9e58-f272692379cd | {
"language": "YAML"
} | ```yaml
on: [push, pull_request]
name: CI
jobs:
clippy_rustfmt:
name: Lint & Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: rustfmt, clippy
... | ```yaml
on: [push, pull_request]
name: CI
jobs:
clippy_rustfmt:
name: Lint & Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: rustfmt, clippy
... |
788a1b8e-57ff-414a-995b-a5477e02ec36 | {
"language": "YAML"
} | ```yaml
name: CI
# This workflow run tests and build for each push
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Update local toolchain
run: |
rustup update
rustup component add clippy
... | ```yaml
name: CI
# This workflow run tests and build for each push
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- name: Update local toolchain
run: |
rustup update
rustup component add clippy
... |
8afe8154-7d7e-4add-8293-65b1e07516ea | {
"language": "YAML"
} | ```yaml
---
languages:
- __sugilite__
- android
- c
- c++
- clojure
- cplusplus
- cpp
- crystal
- csharp
- d
- dart
- default
- elixir
- erlang
- go
- groovy
- haskell
- haxe
- java
- julia
- legacy
- mega
- node_js
- perl
- perl6
# FIXME: wat
# - php
- pure_java
- python
- r
- ruby
- rust
- scala
- universe
features:
... | ```yaml
---
languages:
- __sugilite__
- android
- c
- c++
- clojure
- cplusplus
- cpp
- crystal
- csharp
- d
- dart
- default
- elixir
- erlang
- go
- groovy
- haskell
- haxe
- java
- julia
- legacy
- mega
- node_js
- perl
- perl6
# FIXME: wat
# - php
- pure_java
- python
- r
- ruby
- rust
- scala
- universe
features:
... |
1d4ec7d8-e351-4b14-960a-03bb550df093 | {
"language": "YAML"
} | ```yaml
homepage: ''
changelog-type: markdown
hash: 68af058da872f8fbdb2596a1dfabd7e8da5a0e6603b065e0a497cc759b40dfff
test-bench-deps:
language-sygus: -any
base: ! '>=4.10 && <4.13'
text: -any
tasty-hunit: ! '>=0.10'
tasty: ! '>=1.0'
deepseq: ! '>=1.4 && <1.5'
maintainer: william.hallahan@yale.edu
synopsis: ... | ```yaml
homepage: ''
changelog-type: markdown
hash: 834f737d0c29ac29cda68399d4e99ddcd81317ec28838f4bf588c0387b8324dc
test-bench-deps:
language-sygus: -any
base: ! '>=4.10 && <4.13'
text: -any
tasty-hunit: ! '>=0.10'
tasty: ! '>=1.0'
deepseq: ! '>=1.1 && <1.5'
maintainer: william.hallahan@yale.edu
synopsis: ... |
d9acf91e-000f-412d-bac5-3efe3151fd80 | {
"language": "YAML"
} | ```yaml
# .readthedocs.yaml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
version: 2
build:
os: ubuntu-22.04
tools:
python: "3.10"
commands:
- git fetch --unshallow
- pip install tox
- tox -e rtd
python:
install:
- method: pi... | ```yaml
# .readthedocs.yaml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
version: 2
build:
os: ubuntu-22.04
tools:
python: "3.10"
commands:
- git fetch --unshallow
- pip install tox
- tox -e rtd
``` |
04129524-7afc-484a-8d8e-c2e1635bebf5 | {
"language": "YAML"
} | ```yaml
# This configuration was generated by
# `rubocop --auto-gen-config`
# on 2016-10-25 22:09:12 +0200 using RuboCop version 0.44.1.
# The point is for the user to remove these configuration records
# one by one as the offenses are removed from the code base.
# Note that changes in the inspected code, or installati... | ```yaml
# This configuration was generated by
# `rubocop --auto-gen-config`
# on 2016-10-25 22:09:12 +0200 using RuboCop version 0.44.1.
# The point is for the user to remove these configuration records
# one by one as the offenses are removed from the code base.
# Note that changes in the inspected code, or installati... |
1aa73105-f0b9-4590-8e27-8c7d8db1541a | {
"language": "YAML"
} | ```yaml
id: 54532
update_date: Wed, 19 Jun 2019 10:36:17 UTC
```
Update the course on Stepik | ```yaml
id: 54532
update_date: Mon, 20 Jan 2020 15:20:43 UTC
``` |
456f0752-fee1-4a45-abcb-04f6b5bb5d22 | {
"language": "YAML"
} | ```yaml
homepage: ''
changelog-type: markdown
hash: 4a66b145c51015367a0eb7302bdb6062d5d0d114e53d5e84128fb9c25f7eae07
test-bench-deps: {}
maintainer: dan.firth@homotopic.tech
synopsis: Functions for mapping vinyl records in polysemy.
changelog: |
# Changelog for polysemy-vinyl
## v0.1.2.0
* Add `separateRecInput... | ```yaml
homepage: ''
changelog-type: markdown
hash: 8ee86ed8b3d1952a0fba4e151d17b5b0cc2e5bc7a3c65bc024578599f21e5a28
test-bench-deps: {}
maintainer: dan.firth@homotopic.tech
synopsis: Functions for mapping vinyl records in polysemy.
changelog: |
# Changelog for polysemy-vinyl
## v0.1.3.0
* Add `runInputConstFC`... |
70f77882-b32c-4ec6-aae3-fa09b6d6d592 | {
"language": "YAML"
} | ```yaml
homepage: https://github.com/andrewthad/primitive-sort
changelog-type: ''
hash: 41988da30b66173ef52a5eb702636cff26dafdbc646f44ea5b29951a83d9ba90
test-bench-deps:
tasty-smallcheck: -any
base: -any
doctest: ! '>=0.10'
primitive-sort: -any
HUnit: -any
smallcheck: -any
gauge: -any
containers: -any
... | ```yaml
homepage: https://github.com/andrewthad/primitive-sort
changelog-type: ''
hash: 1c7dd5f4ce22e0b4418acd90e037e2498469fc24edccd05bcd6e5930d842242c
test-bench-deps:
tasty-smallcheck: -any
base: -any
doctest: ! '>=0.10'
primitive-sort: -any
HUnit: -any
smallcheck: -any
gauge: -any
containers: -any
... |
16b54894-dc7c-48b8-92c2-51c2dd344ca6 | {
"language": "YAML"
} | ```yaml
ui: tape
browsers:
- name: chrome
version: 28..latest
- name: firefox
version: 13..latest
- name: ie
version: 10..latest
- name: safari
version: 6..latest
```
Reduce the number of Firefox versions checked | ```yaml
ui: tape
browsers:
- name: chrome
version: 28..latest
- name: firefox
version: 24..latest
- name: ie
version: 10..latest
- name: safari
version: 6..latest
``` |
4f54af5f-c623-431d-ac80-7c501c44dfcf | {
"language": "YAML"
} | ```yaml
ui: tape
browsers:
- name: chrome
version: 30..latest
# - name: safari
# version: latest
# - name: ie
# version: 9..latest
- name: firefox
version: 25..latest
# server: ./test/server.js```
Update browsers (chrome >= 32, ff >= 26) | ```yaml
ui: tape
browsers:
- name: chrome
version: 32..latest
- name: firefox
version: 26..latest
# server: ./test/server.js``` |
acec3df6-ec01-4328-ba7c-53f46c60f4f0 | {
"language": "YAML"
} | ```yaml
{% set name = "pytransform3d" %}
{% set version = "1.8" %}
package:
name: "{{ name|lower }}"
version: "{{ version }}"
source:
url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz"
sha256: 4608079a30ef3f8e927f3b3aee7b58a1e47cdcd7c46be6d889d1cb0f82650baa
build:... | ```yaml
{% set name = "pytransform3d" %}
{% set version = "1.8" %}
package:
name: "{{ name|lower }}"
version: "{{ version }}"
source:
url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz"
sha256: 4608079a30ef3f8e927f3b3aee7b58a1e47cdcd7c46be6d889d1cb0f82650baa
build:... |
9ee1863b-8668-49d0-9a3d-75300f3cf557 | {
"language": "YAML"
} | ```yaml
---
- name: Ensure old versions of Docker are not installed. | Debian
package:
name: '{{ item }}'
state: absent
with_items:
- docker
- docker-engine
when:
- ansible_os_family == 'Debian'
- (docker_versioned_pkg[docker_version | string] | search('docker-ce'))
- name: Ensure old ver... | ```yaml
---
- name: Ensure old versions of Docker are not installed. | Debian
package:
name: '{{ item }}'
state: absent
with_items:
- docker
- docker-engine
- docker.io
when:
- ansible_os_family == 'Debian'
- (docker_versioned_pkg[docker_version | string] | search('docker-ce'))
- name... |
1cf70647-4283-4598-acbd-e7814d0d1980 | {
"language": "YAML"
} | ```yaml
---
- name: start elasticsearch container
docker_container:
name: elasticsearch
image: "docker.elastic.co/elasticsearch/elasticsearch:{{ es_version }}"
restart_policy: always
network_mode: host
```
Add options to elasticsearch task | ```yaml
---
- name: set vm.max_map_count
command: sysctl -w vm.max_map_count=262144
- name: start elasticsearch container
docker_container:
name: elasticsearch
image: "docker.elastic.co/elasticsearch/elasticsearch:{{ es_version }}"
restart_policy: always
network_mode: host
env... |
10a9a576-2cff-402e-ae57-e2ffd2b7ea3c | {
"language": "YAML"
} | ```yaml
nelmio_security_report:
path: /nelmio/csp/report
defaults: { _controller: nelmio_security.csp_reporter_controller:indexAction }
methods: [POST]
```
Remove /nelmio from CSP report path. | ```yaml
nelmio_security_report:
path: /csp/report
defaults: { _controller: nelmio_security.csp_reporter_controller:indexAction }
methods: [POST]
``` |
0106c782-fda9-49f7-a37a-26a1974ee63c | {
"language": "YAML"
} | ```yaml
- clean: ['~']
- defaults:
link:
create: true
- shell: # Pre-install
- command: git submodule update --init --remote
stdout: true
stderr: true
- command: rustup completion > ~/.zfunc/_rustup
stdout: true
stderr: true
- link:
# vim/Vundle
~/.config/nvim/bund... | ```yaml
- clean: ['~']
- defaults:
link:
create: true
- shell: # Pre-install
- command: git submodule update --init --remote
stdout: true
stderr: true
- command: rustup completions zsh > ~/.zfunc/_rustup
stdout: true
stderr: true
- link:
# vim/Vundle
~/.config/nvim... |
f31f6390-c216-485f-9ac2-a48323efa73c | {
"language": "YAML"
} | ```yaml
---
- name: Initialize | Download seed data
get_url:
dest: '/tmp/cbioportal-seed.sql.gz'
url: '{{ seed_database }}'
- name: Initialize | Load seed data
mysql_db:
name: "{{mysql_database_name}}"
state: import
target: '/tmp/cbioportal-seed.sql.gz'
login_user: "{{mysql_database_user}}"... | ```yaml
---
- name: Initialize | Download seed data
get_url:
dest: '/tmp/cbioportal-seed.sql.gz'
url: '{{ seed_database }}'
## Just how many mutations exactly?
- name: Retrieve stuff from mysql
command: >
mysql --user={{mysql_database_user}} --password={{mysql_database_password}} {{mysql_database_name... |
b7db5e71-dd85-4079-a241-3658e50efe28 | {
"language": "YAML"
} | ```yaml
name: Trigger Benchmarks
on: push
jobs:
trigger_measurement:
if: github.repository_owner == 'graphhopper'
runs-on: ubuntu-22.04
environment: benchmarks
steps:
- name: trigger
run: |
curl -X POST -H "Authorization: token ${{ secrets.BENCHMARKS_TOKEN }}" \
-H "A... | ```yaml
name: Trigger Benchmarks
on: push
jobs:
trigger_measurement:
if: github.repository_owner == 'graphhopper'
runs-on: ubuntu-22.04
environment: benchmarks
steps:
- name: trigger
run: |
curl -X POST -H "Authorization: token ${{ secrets.BENCHMARKS_TOKEN }}" \
-H "A... |
ef529501-9046-41a6-b378-edb843aa4268 | {
"language": "YAML"
} | ```yaml
version: '2'
services:
libvirt:
build: ../docker/libvirt/
pid: host
privileged: true
# ports:
# - "16509:16509"
# network_mode: host
restart: always
environment:
- LIBVIRT_CLEANUP=""
volumes:
- /lib/modules:/lib/modules:ro
- /run:/run
- /dev:/dev
... | ```yaml
version: '2'
services:
libvirt:
build: ../docker/libvirt/
pid: host
privileged: true
# ports:
# - "16509:16509"
# network_mode: host
restart: always
environment:
- LIBVIRT_CLEANUP
volumes:
- /lib/modules:/lib/modules:ro
- /run:/run
- /dev:/dev
... |
27d3321b-b864-4a45-90ba-cd404b7474bb | {
"language": "YAML"
} | ```yaml
homepage: https://bitbucket.org/tdammers/string-convert
changelog-type: ''
hash: acef5d25cffde13a151ba02b1e6de1515c461dc9678664dd7f8eb13be906482c
test-bench-deps: {}
maintainer: tdammers@gmail.com
synopsis: Provide universal string conversions between any two string-like types
changelog: ''
basic-deps:
bytest... | ```yaml
homepage: https://bitbucket.org/tdammers/string-convert
changelog-type: ''
hash: f84f86ec950de02ccb5729ec1a40c1576ba6a7875eb0749f94de59c35d45df43
test-bench-deps:
bytestring: -any
string-convert: -any
base: ! '>=4.5 && <5.0'
text: -any
utf8-string: -any
tasty-hunit: -any
tasty: -any
maintainer: td... |
319bc256-e362-477d-933e-895199727711 | {
"language": "YAML"
} | ```yaml
---
- name: Install apt keys for Google Chrome
apt_key: url=https://dl-ssl.google.com/linux/linux_signing_key.pub state=present
tags: behat-selenium
- name: Adding Chrome APT repo to local database
shell: sh -c 'echo deb http://dl.google.com/linux/chrome/deb/ stable main > /etc/apt/sources.list.d/google... | ```yaml
---
- name: Install apt keys for Google Chrome
apt_key: url=https://dl-ssl.google.com/linux/linux_signing_key.pub state=present
tags: behat-selenium
- name: Adding Chrome APT repo to local database
shell: sh -c 'echo deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main > /etc/apt/sources.... |
55e8a3fb-11e8-4411-8e20-5dfdd3f032a0 | {
"language": "YAML"
} | ```yaml
# Configuration for probot-no-response - https://github.com/probot/no-response
# Number of days of inactivity before an issue is closed for lack of response.
daysUntilClose: 21
# Label requiring a response.
responseRequiredLabel: "need-info"
# Comment to post when closing an Issue for lack of response.
close... | ```yaml
# Configuration for probot-no-response - https://github.com/probot/no-response
# Number of days of inactivity before an issue is closed for lack of response.
daysUntilClose: 21
# Label requiring a response.
responseRequiredLabel: "needs-info"
# Comment to post when closing an Issue for lack of response.
clos... |
5dd0aa45-8d64-4198-889c-39661a9ac3c1 | {
"language": "YAML"
} | ```yaml
repos:
# Automatically sort imports
- repo: https://github.com/PyCQA/isort
rev: 5.9.2
hooks:
- id: isort
# Automatic source code formatting
- repo: https://github.com/psf/black
rev: 21.6b0
hooks:
- id: black
args: [--safe, --quiet]
# Linting
- repo: https://github.com/PyCQA/flake8
rev: 3.9.... | ```yaml
repos:
# Automatically sort imports
- repo: https://github.com/PyCQA/isort
rev: 5.9.3
hooks:
- id: isort
# Automatic source code formatting
- repo: https://github.com/psf/black
rev: 21.6b0
hooks:
- id: black
args: [--safe, --quiet]
# Linting
- repo: https://github.com/PyCQA/flake8
rev: 3.9.... |
6243db2f-61b6-4d74-9b77-2b845520e1bc | {
"language": "YAML"
} | ```yaml
s3_id: <%= ENV['S3_ACCESS_KEY_ID'] %>
s3_secret: <%= ENV['S3_SECRET_KEY'] %>
s3_bucket: docs.gigaspaces.com
# Below are examples of all the available configurations.
# See README for more detailed info on each of them.
max_age:
"*": 300
# gzip:
# - .html
# - .css
# - .md
s3_endpoint: us-east-1
s... | ```yaml
s3_id: <%= ENV['S3_ACCESS_KEY_ID'] %>
s3_secret: <%= ENV['S3_SECRET_KEY'] %>
s3_bucket: docs.gigaspaces.com
# Below are examples of all the available configurations.
# See README for more detailed info on each of them.
max_age:
"*": 300
# gzip:
# - .html
# - .css
# - .md
s3_endpoint: us-east-1
s... |
15848328-6c32-48e7-8cc3-44821733959e | {
"language": "YAML"
} | ```yaml
version: '2'
services:
gp-finder-frontend:
image: "nhsuk/gp-finder:$DOCKER_IMAGE_TAG"
environment:
NODE_ENV: production
HOTJAR_ANALYTICS_TRACKING_ID: $HOTJAR_ANALYTICS_TRACKING_ID
GOOGLE_ANALYTICS_TRACKING_ID: $GOOGLE_ANALYTICS_TRACKING_ID
WEBTRENDS_ANALYTICS_TRACKING_ID: $WE... | ```yaml
version: '2'
services:
gp-finder-frontend:
image: "nhsuk/gp-finder:$DOCKER_IMAGE_TAG"
environment:
CACHE_TIMEOUT_SECONDS: 1800
ES_HOST: ${ES_HOST}
GOOGLE_ANALYTICS_TRACKING_ID: $GOOGLE_ANALYTICS_TRACKING_ID
HOTJAR_ANALYTICS_TRACKING_ID: $HOTJAR_ANALYTICS_TRACKING_ID
NOD... |
6cf6d0d9-24b1-4004-a454-e39f5f529c57 | {
"language": "YAML"
} | ```yaml
---
name: "workroom_puppet_st2_ci_setup"
runner_type: "action-chain"
description: "Tests st2express deployment script that is used in st2workroom"
enabled: true
entry_point: "workflows/workroom_puppet_st2_ci_setup.yaml"
parameters:
build_host:
type: "string"
description: "Host where ... | ```yaml
---
name: "workroom_puppet_st2_ci_setup"
runner_type: "action-chain"
description: "Tests st2express deployment script that is used in st2workroom"
enabled: true
entry_point: "workflows/workroom_puppet_st2_ci_setup.yaml"
parameters:
build_host:
type: "string"
description: "Host where ... |
e100bd03-0573-43e4-ad08-8afde8b279dd | {
"language": "YAML"
} | ```yaml
- name: GitHub
url: https://github.com/librarycarpentry
class: fa-github
title: "Library Carpentry GitHub"
- name: Twitter
url: https://twitter.com/libcarpentry
class: fa-twitter
title: "Library Carpentry Twitter"
- name: Gitter
url: https://gitter.im/LibraryCarpentry/Lobby
class: fa-gitter
... | ```yaml
- name: GitHub
url: https://github.com/librarycarpentry
class: fa-github
title: "Library Carpentry GitHub"
- name: Twitter
url: https://twitter.com/libcarpentry
class: fa-twitter
title: "Library Carpentry Twitter"
- name: Connect
url: https://librarycarpentry.org/contact/
class: fa-gitter
ti... |
c7a6bbdb-3eee-4a80-9e0e-5bee6212e35e | {
"language": "YAML"
} | ```yaml
mlapi_source_repo: git@github.com:edx/ml-service-api.git
ml_source_repo: git@github.com:edx/machine-learning.git
ml_dir: $app_base_dir/machine-learning
ml_api_dir: $app_base_dir/ml-service-api
ml_api_settings: ml_service_api.settings
nltk_data_dir: /usr/share/nltk_data
remote_user: ubuntu
ml_branch: master
ml_a... | ```yaml
mlapi_source_repo: git@github.com:edx/ml-service-api.git
ml_source_repo: git@github.com:edx/machine-learning.git
ml_dir: $app_base_dir/machine-learning
ml_api_dir: $app_base_dir/ml-service-api
ml_api_settings: ml_service_api.aws
nltk_data_dir: /usr/share/nltk_data
remote_user: ubuntu
ml_branch: master
ml_api_br... |
72d090d8-153a-4071-85ae-501e717c40bc | {
"language": "YAML"
} | ```yaml
AntiFeatures:
- UpstreamNonFree
Categories:
- Development
License: Apache-2.0
AuthorName: massivemadness
SourceCode: https://github.com/massivemadness/Brackeys-IDE
IssueTracker: https://github.com/massivemadness/Brackeys-IDE/issues
Changelog: https://github.com/massivemadness/Brackeys-IDE/releases
AutoName... | ```yaml
AntiFeatures:
- UpstreamNonFree
Categories:
- Development
License: Apache-2.0
AuthorName: massivemadness
SourceCode: https://github.com/massivemadness/Brackeys-IDE
IssueTracker: https://github.com/massivemadness/Brackeys-IDE/issues
Changelog: https://github.com/massivemadness/Brackeys-IDE/releases
AutoName... |
3056d008-2213-4aaa-a7ca-a1f4ee41a176 | {
"language": "YAML"
} | ```yaml
- url: "https://stemcamp.aurorak12.org/"
title: "STEM Summer Camp Homepage"
- url: "https://projecteuler.net/"
title: "Project Euler"
```
Add link to repo on static site | ```yaml
- url: "https://stemcamp.aurorak12.org/"
title: "STEM Summer Camp Homepage"
- url: "https://github.com/jamesfolberth/jupyterhub_AWS_deployment/tree/master/notebooks"
title: "Jupyter Notebooks GitHub Repo"
- url: "https://projecteuler.net/"
title: "Project Euler"
``` |
f647743e-5ec0-449c-a1cd-b279ac9ef8a8 | {
"language": "YAML"
} | ```yaml
common:
target:
- lpc11u35-501
macros:
- INTERFACE_LPC11U35
- DAPLINK_HDK_ID=0x646c0002 # DAPLINK_HDK_ID_LPC11U35
includes:
- source/common/cmsis-core/nxp/lpc11u35
- source/common/hal/nxp/lpc11u35
sources:
host:
- source/common/cmsis-c... | ```yaml
common:
target:
- lpc11u35_501
macros:
- INTERFACE_LPC11U35
- DAPLINK_HDK_ID=0x646c0002 # DAPLINK_HDK_ID_LPC11U35
includes:
- source/common/cmsis-core/nxp/lpc11u35
- source/common/hal/nxp/lpc11u35
sources:
host:
- source/common/cmsis-c... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.