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
{ | |
inputs = { | |
# emacs.url = github:nix-community/emacs-overlay; | |
nixpkgs.url = github:NixOS/nixpkgs/nixos-23.05; | |
nixpkgs-unstable.url = github:NixOS/nixpkgs/nixos-unstable; | |
nixos-hardware.url = github:NixOS/nixos-hardware; | |
# home-manager.url = github:nix-community/home-manager; | |
}; | |
outputs = { |
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
#!/usr/bin/env python2 | |
from __future__ import print_function | |
from datetime import datetime | |
import json | |
import os | |
import sys | |
try: |
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
title: Proper name of dataset used as title | |
# keep this short but descriptive, used as tag, no spaces | |
shortname: short-name | |
# plain text description, no markup | |
description: > | |
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam | |
nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam | |
erat, sed diam voluptua. |
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
import flask_sqlalchemy | |
from sqlalchemy import schema | |
from sqlalchemy.ext.compiler import compiles | |
db = flask_sqlalchemy.SQLAlchemy() | |
class Tag(db.Model): | |
__table_args__ = {'info': {'without_rowid': True}} | |
text = db.Column(db.String, primary_key=True) |
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
{ | |
} |