POST /api/series
Content-type: application/json;charset=utf-8
Accept: application/json;charset=utf-8
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 | |
# Examples: | |
# download_isos.sh /tmp/waf http://cbibs-dev.asa.rocks/thredds/catalog/stations/WaterQuality/44064/2015/catalog.xml | |
# download_isos.sh /tmp/waf http://sos.maracoos.org/stable/agg_catalog.html | |
# download_isos.sh /tmp/waf http://tds.glos.us/thredds/catalog/glos/habs/catalog.html | |
NC_ISO_PATH=$HOME/lib/ncISO-2.3.jar | |
CLASSPATH=$HOME/lib | |
OUTPUT=$1 |
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/eng python | |
#-*- coding: utf-8 -*- | |
''' | |
''' | |
from multiprocessing import Pool | |
import sys | |
import os | |
def task(path): |
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 | |
import sys | |
def valid_character(i): | |
return ord(i) < 128 and (ord(i) > 31 or ord(i) == 10 or ord(i) == 0) | |
def main(args): | |
''' |
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
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCU1iLY+1zoKuPmNH7TJfjG3i1Ph/XdVAIH/JizOmwUlnZ1INNXiuT9SkmLoiemNMqF4IAEOT0OqbBGOx+5av1R/xHOvqBm5LqSlEgiv6mK2kO4DGjpmhgeoGZ+hBS3CKiLvLbdOHBvkS5gqL1tlEhjBLaVjYkaaDFlhinQ8AembroJp2ZS4bWXt2lQr1LjnBcWFMcOuufZRhvzG0Af9aqMxbypRs7Qamcn5iq34XRqf2RHJZTwe/WWAjbQb5F6q6oEeuqAOisdAhm0wtgNWAJvyzLywqqU306ppD34CswUlJJC6MPwMZWPyjQjliJcWiop6mgtvubuh739QtNzthZV [email protected] |
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
glc='git log --color --graph --pretty=format:'\''%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset'\'' --abbrev-commit --' |
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 | |
from compliance_checker.runner import CheckSuite | |
import base64 | |
import logging | |
import requests | |
import json | |
logger = logging.getLogger(__name__) | |
logger.setLevel(logging.DEBUG) |