start new:
tmux
start new with session name:
tmux new -s myname
#include <poll.h> | |
#include <stdio.h> | |
#include <sys/time.h> | |
#define SECONDS_TO_MICRO 1000000 | |
int main(int argc, char *argv[]) | |
{ |
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
from argparse import ArgumentParser | |
from netCDF4 import Dataset | |
import subprocess | |
import tempfile | |
import os | |
netcdf US_WhiteShoalMichigan_2013 { | |
dimensions: | |
time = 2; | |
variables: | |
double time(time) ; | |
time:long_name = "Days since 1/1/1904" ; | |
time:standard_name = "time" ; | |
time:units = "days since 1904-01-01 00:00:00" ; | |
time:axis = "T" ; |