-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cfcb7c1
commit 9772881
Showing
53 changed files
with
410 additions
and
96 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- | ||
crosscompute: 0.9.4 | ||
imports: | ||
- path: automate.yaml | ||
- path: see-airport-traffic/automate.yaml | ||
- path: gather-internet-speeds/automate.yaml | ||
- path: gather-cell-towers/automate.yaml | ||
- path: make-pdf/automate.yaml | ||
- path: merge-pdfs/automate.yaml | ||
- path: set-points/automate.yaml | ||
display: | ||
templates: | ||
- id: base | ||
path: base.html |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- | ||
crosscompute: 0.9.4 | ||
imports: | ||
- path: diff-texts/automate.yaml | ||
- path: make-qr/automate.yaml | ||
- path: paint-letters/automate.yaml | ||
- path: see-ip-address/automate.yaml | ||
- path: show-flashcards/automate.yaml | ||
- path: subscribe-newsletter/automate.yaml | ||
- path: watch-machine/automate.yaml | ||
display: | ||
templates: | ||
- id: base | ||
path: base.html |
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
--- | ||
crosscompute: 0.9.4 | ||
name: Compare Text | ||
slug: compare-text | ||
description: Compare differences between two texts using the diff algorithm | ||
version: 0.0.1 | ||
input: | ||
variables: | ||
- id: text1 | ||
view: text | ||
path: text1.txt | ||
- id: text2 | ||
view: text | ||
path: text2.txt | ||
templates: | ||
- path: input.md | ||
output: | ||
variables: | ||
- id: diff | ||
view: text | ||
path: diff.txt | ||
templates: | ||
- path: output.md | ||
batches: | ||
- folder: batches/standard | ||
scripts: | ||
- command: bash run.sh | ||
display: | ||
styles: | ||
- path: style.css | ||
pages: | ||
- id: output | ||
configuration: | ||
design: none |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
crosscompute: 0.9.4 | ||
imports: | ||
- path: report-tower/automate.yaml | ||
- path: map-towers/automate.yaml |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
--- | ||
crosscompute: 0.9.4 | ||
name: Map Cell Towers | ||
description: See a map of cell towers as submitted by users | ||
version: 0.0.1 | ||
output: | ||
variables: | ||
- id: map | ||
view: map-mapbox | ||
path: locations.geojson | ||
configuration: | ||
style: mapbox://styles/mapbox/satellite-streets-v11 | ||
layers: | ||
- type: circle | ||
paint: | ||
circle-color: ['match', ['get', 'is_contributed'], 1, 'orange', 'yellow'] | ||
circle-radius: 5 | ||
templates: | ||
- path: output.md | ||
batches: | ||
- folder: batches/standard | ||
datasets: | ||
- path: datasets/cell-towers.csv | ||
reference: | ||
uri: https://query.data.world/s/cfxj66w6rvg3zhk3r25dum575czl3q | ||
- folder: datasets/runs | ||
reference: | ||
folder: ../report-tower/runs | ||
scripts: | ||
- path: run.ipynb | ||
environment: | ||
interval: 1 hour | ||
display: | ||
pages: | ||
- id: automation | ||
configuration: | ||
design: output | ||
- id: output | ||
configuration: | ||
design: none |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
crosscompute: 0.9.4 | ||
name: Report Cell Tower | ||
description: Report the location of a cell tower to help people get better reception and faster data | ||
version: 0.0.1 | ||
input: | ||
variables: | ||
- id: location | ||
view: map-mapbox-location | ||
path: variables.dictionary | ||
label: Drop Pin to Annotate Cell Tower Location | ||
configuration: | ||
longitude: -76.872932 | ||
latitude: 42.380592 | ||
zoom: 10 | ||
style: mapbox://styles/mapbox/satellite-streets-v11 | ||
templates: | ||
- path: input.md | ||
output: | ||
templates: | ||
- path: output.md | ||
batches: | ||
- folder: batches/standard |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
crosscompute: 0.9.4 | ||
imports: | ||
- path: report-speed/automate.yaml | ||
- path: map-speeds/automate.yaml |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
--- | ||
crosscompute: 0.9.4 | ||
name: Map Internet Speeds | ||
description: See a map of internet speeds as submitted by users | ||
version: 0.0.1 | ||
output: | ||
variables: | ||
- id: map-speeds-download | ||
view: map-deck-screengrid | ||
path: speeds-download.json | ||
configuration: | ||
style: mapbox://styles/mapbox/dark-v11 | ||
position: d => [d[0], d[1]] | ||
weight: d => d[2] | ||
- id: map-speeds-upload | ||
view: map-deck-screengrid | ||
path: speeds-upload.json | ||
configuration: | ||
style: mapbox://styles/mapbox/dark-v11 | ||
position: d => [d[0], d[1]] | ||
weight: d => d[2] | ||
templates: | ||
- path: output.md | ||
batches: | ||
- folder: batches/standard | ||
datasets: | ||
- folder: datasets/runs | ||
reference: | ||
folder: ../report-speed/runs | ||
scripts: | ||
- path: run.ipynb | ||
environment: | ||
image: python | ||
packages: | ||
- id: numpy | ||
manager: pip | ||
interval: 1 hour | ||
display: | ||
pages: | ||
- id: automation | ||
configuration: | ||
design: output |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
--- | ||
crosscompute: 0.9.4 | ||
name: Report Internet Speed | ||
description: Report your internet speed | ||
version: 0.0.1 | ||
input: | ||
variables: | ||
- id: service-location | ||
view: map-mapbox-location | ||
path: variables.dictionary | ||
label: Where are you? Press the button below to share your location. Location tracking will have low accuracy on a desktop but high accuracy on a smartphone. | ||
configuration: | ||
longitude: -104.715279 | ||
latitude: 44.590279 | ||
zoom: 10 | ||
style: mapbox://styles/mapbox/streets-v12 | ||
- id: download-speed | ||
view: number | ||
path: variables.dictionary | ||
label: What is your download speed in megabits per second? | ||
- id: upload-speed | ||
view: number | ||
path: variables.dictionary | ||
label: What is your upload speed in megabits per second? | ||
- id: service-provider | ||
view: string | ||
path: variables.dictionary | ||
label: What is the name of your service provider? | ||
templates: | ||
- path: input.md | ||
output: | ||
templates: | ||
- path: output.md | ||
batches: | ||
- folder: batches/standard |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
crosscompute: 0.9.4 | ||
imports: | ||
- path: log-pomodoro/automate.yaml | ||
- path: see-pomodoros/automate.yaml |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
--- | ||
crosscompute: 0.9.4 | ||
name: Convert Markdown to PDF | ||
slug: convert-markdown-to-pdf | ||
description: Convert markdown text into a PDF document | ||
version: 0.0.1 | ||
input: | ||
templates: | ||
- path: input.md | ||
variables: | ||
- id: document-markdown | ||
view: markdown | ||
path: document.md | ||
label: Enter markdown | ||
- id: css-style | ||
view: text | ||
path: style.css | ||
label: Enter styles in CSS format | ||
output: | ||
variables: | ||
- id: document-pdf | ||
view: pdf | ||
path: document.pdf | ||
- id: document-link | ||
view: link | ||
path: document.pdf | ||
batches: | ||
- folder: batches/standard | ||
scripts: | ||
- command: bash run.sh | ||
environment: | ||
packages: | ||
- id: chromium | ||
manager: dnf | ||
- id: md-to-pdf | ||
manager: npm | ||
display: | ||
styles: | ||
- path: style.css | ||
pages: | ||
- id: output | ||
configuration: | ||
design: none |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
--- | ||
crosscompute: 0.9.4 | ||
name: Make QR Code | ||
slug: make-qr | ||
description: Turn text into a QR code | ||
version: 0.0.1 | ||
input: | ||
variables: | ||
- id: data | ||
view: text | ||
path: data.txt | ||
templates: | ||
- path: input.md | ||
output: | ||
variables: | ||
- id: qr | ||
view: image | ||
path: qr.png | ||
batches: | ||
- folder: batches/standard | ||
scripts: | ||
- path: run.ipynb | ||
environment: | ||
packages: | ||
- id: qrcode[pil] | ||
manager: pip | ||
display: | ||
styles: | ||
- path: style.css | ||
pages: | ||
- id: output | ||
configuration: | ||
design: none |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.