brew install berkeley-db@5
export LDFLAGS="-L/usr/local/opt/berkeley-db@5/lib"
export CPPFLAGS="-I/usr/local/opt/berkeley-db@5/include"
pip install bsddb3
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 python | |
# brought to you by pythonforbeginners.com | |
import socket | |
import subprocess | |
import sys | |
from datetime import datetime | |
# Clear the screen | |
subprocess.call('clear', shell=True) |
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
http://www.nlm.nih.gov | |
http://www.loc.gov | |
http://www.nal.usda.gov | |
http://n2t.net | |
http://www.wipo.int | |
http://libraries.ucsd.edu | |
http://library.ucsf.edu | |
http://library.berkeley.edu | |
http://rci.rutgers.edu | |
https://ark.archive.org |
Find some RDF datasets in DataCite:
$ curl 'https://api.datacite.org/dois?query=formats:application%2Frdf%2Bxml' \
| jq '{"id":.data[].id, "formats":.data[].attributes.formats}'
{
"id": "10.18434/t4/1435037",
"formats": [
"application/rdf+xml",
"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
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
// | |
// Run this in the Sandcastle. | |
// | |
function randomCoordinateJitter(degree, margin) { | |
return degree + margin * (Math.random() - 0.5) / 0.5; | |
} | |
const viewer = new Cesium.Viewer("cesiumContainer", { | |
terrain: Cesium.Terrain.fromWorldTerrain() |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<!-- Include the CesiumJS JavaScript and CSS files --> | |
<script src="https://cesium.com/downloads/cesiumjs/releases/1.108/Build/Cesium/Cesium.js"></script> | |
<link href="https://cesium.com/downloads/cesiumjs/releases/1.108/Build/Cesium/Widgets/widgets.css" rel="stylesheet"> | |
<style> | |
.fullsize { | |
position:absolute; |
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
name: test_terminate_duplicate | |
on: | |
workflow_dispatch | |
jobs: | |
check_duplicate: | |
runs-on: ubuntu-latest | |
env: | |
GH_TOKEN: ${{ github.token }} | |
steps: | |
- name: show_vars |