| Command | Description |
|---|---|
git init |
Initialize a local Git repository |
git clone ssh://git@github.com/[username]/[repository-name].git |
Create a local copy of a remote repository |
| Command | Description |
| # Brian Blaylock | |
| # January 5, 2017 It's snowing outside | |
| """ | |
| Simple Basemap examples | |
| Example gallery: http://matplotlib.org/basemap/users/examples.html | |
| Documentation: https://basemaptutorial.readthedocs.io/en/latest/ | |
| """ |
| ; wrf_gsmcsn_raindaily.ncl | |
| ; wrf_gsmcsn_raindaily plots rainfall map on a 24 hour time period. | |
| ; The script implicitly expect that the result is from 00Z, and the | |
| ; netxt 24 hour interval is also on 00Z. | |
| ; Author: Jamal Uddin Khan | |
| ; Email: jamal919@gmail.com | |
| load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_code.ncl" | |
| load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_csm.ncl" | |
| load "$NCARG_ROOT/lib/ncarg/nclscripts/wrf/WRFUserARW.ncl" |
| ################################################################################ | |
| # Parallel SCHISM Makefile | |
| # | |
| # User makes environment settings for particular OS / PLATFORM / COMPILER / MPI | |
| # below as well as setting flags having to do with included algorithms (e.g. sediment) | |
| # and the compiler configuration (debug, timing). | |
| # | |
| # The environment settings are based on the following options. | |
| # | |
| # Compiler name: |
| <?xml version='1.0' encoding='utf-8'?> | |
| <!DOCTYPE fontconfig SYSTEM "fonts.dtd"> | |
| <fontconfig> | |
| <dir>/usr/share/fonts</dir> | |
| <dir>/usr/local/share/fonts</dir> | |
| <dir>~/.fonts</dir> | |
| <dir>~/.local/share/fonts</dir> | |
| <dir>/usr/X11R6/lib/X11/fonts</dir> | |
| <dir prefix="xdg">fonts</dir> | |
| <alias> |
| <?xml version='1.0' encoding='utf-8'?> | |
| <!DOCTYPE fontconfig SYSTEM "fonts.dtd"> | |
| <fontconfig> | |
| <alias> | |
| <family>cursive</family> | |
| <prefer> | |
| <family>ITC Zapf Chancery Std</family> | |
| <family>Zapfino</family> | |
| <family>Comic Sans MS</family> | |
| </prefer> |
| #!/bin/bash | |
| ## WRF installation with parallel process. | |
| # Download and install required library and data files for WRF. | |
| # License: LGPL | |
| # Jamal Khan <jamal.khan@legos.obs-mip.fr> | |
| # Tested in Ubuntu 18.04 LTS | |
| # basic package managment | |
| sudo apt update | |
| sudo apt upgrade |