graph TD;
A-->B;
A-->C;
B-->D;
C-->D;
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # Find the latest Amazon-created "Deep Learning AMI (Ubuntu 18.04)" AMI image ID | |
| # | |
| # args explanation: | |
| # --region us-east-1 | |
| # Specifies the AWS region (you can also specify it in your | |
| # ~/.aws/config or via the `AWS_REGION` or `AWS_DEFAULT_REGION` | |
| # env vars) | |
| # |
Getting an on-call page is the worst. Unfortunately most task-based orchestrators page teams frequently, whenever jobs fail. With Dagster you can reduce this alert fatigue by using retry strategies and only getting notified when SLAs are violated.
Resources:
🚚 The bookmarklet has moved to https://github.com/bramus/mastodon-profile-redirect/
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| api_call() { | |
| curl --no-progress-meter https://api.openai.com/v1/completions \ | |
| -H "Content-Type: application/json" \ | |
| -H "Authorization: Bearer your-api-key" \ | |
| -d "{ | |
| \"model\": \"text-davinci-003\", | |
| \"prompt\": \"$@\", | |
| \"temperature\": 0, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # see https://github.com/microsoft/RoadDetections | |
| # 1) get the data | |
| wget https://usaminedroads.blob.core.windows.net/road-detections/Oceania-Full.zip | |
| # 2) extract the records for Australia, second column of tsv only | |
| zgrep AUS Oceania-Full.zip | cut -f2 > AUS.geojson | |
| # 3) convert to GPKG, works better in QGIS |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # main | |
| llama-index | |
| langchain |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Copyright (c) 2023 Derrick W. Turk / terminus, LLC | |
| # Permission is hereby granted, free of charge, to any person obtaining a copy | |
| # of this software and associated documentation files (the "Software"), to deal | |
| # in the Software without restriction, including without limitation the rights | |
| # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| # copies of the Software, and to permit persons to whom the Software is | |
| # furnished to do so, subject to the following conditions: | |
| # The above copyright notice and this permission notice shall be included in all |