virtualstaticvoid/heroku-buildpack-r#156
https://www.rdocumentation.org/packages/duckdb/versions/0.3.1-1
# clone sources
git clone https://gist.github.com/33cd2ba01757088acb834df76e13c99f.git issue-156
window.indexedDB.databases().then((r) => { | |
for (var i = 0; i < r.length; i++) window.indexedDB.deleteDatabase(r[i].name); | |
}).then(() => { | |
alert('Browser IndexedDB cleared.'); | |
}); |
#!/bin/bash | |
# | |
# Description: | |
# | |
# Synchronises the local repository with _all_ the configured remotes | |
# | |
# Optionally, it will safely perform a rebase of the checked out branch | |
# with it's corresponding tracking (remote) branch | |
# |
#!/bin/bash | |
# | |
# Description: | |
# | |
# Resets the local branch which has diverged from it's tracking (remote) branch | |
# can also be used to switch over from "master" to "main" branch | |
# | |
# Usage: | |
# |
FROM virtualstaticvoid/heroku-docker-r:build | |
CMD ["/usr/bin/R", "--no-save", "-f", "/app/app.R"] |
virtualstaticvoid/heroku-buildpack-r#156
https://www.rdocumentation.org/packages/duckdb/versions/0.3.1-1
# clone sources
git clone https://gist.github.com/33cd2ba01757088acb834df76e13c99f.git issue-156
#!/bin/bash | |
git remote set-head origin main | |
git branch -m master main |
#!/bin/bash | |
set -e | |
# | |
# NOTE: can be used to switch over to another branch such from "master" to "main" | |
# | |
# git reset-branch main origin/main | |
# | |
if [ ! -d .git ]; then |
*.xz | |
*.zip | |
mnt/* |
docker inspect --format='{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' container |