-L 3 == 3 levels deep
-I node_modules ignore
tree -v -L 3 --charset utf-8 -I node_modules
| /* | |
| Generic Canvas Overlay for leaflet, | |
| Stanislav Sumbera, April , 2014 | |
| - added userDrawFunc that is called when Canvas need to be redrawn | |
| - added few useful params fro userDrawFunc callback | |
| - fixed resize map bug | |
| inspired & portions taken from : https://github.com/Leaflet/Leaflet.heat | |
| License: MIT |
| #!/bin/bash | |
| # Script to install hdf5 and netCDF4 libraries on a Linux Ubuntu system | |
| # After: https://code.google.com/p/netcdf4-python/wiki/UbuntuInstall | |
| # And http://unidata.github.io/netcdf4-python/ | |
| # You can check for newer version of the programs on | |
| # ftp://ftp.unidata.ucar.edu/pub/netcdf/netcdf-4/ | |
| # and other sources |
| server { | |
| listen 80; | |
| server_name app.example.com; | |
| rewrite ^ https://$server_name$request_uri? permanent; | |
| } | |
| server { | |
| listen 443; | |
| server_name app.example.com; |
| # /usr/share/applications/jetbrains-idea.desktop | |
| [Desktop Entry] | |
| Version=1.0 | |
| Type=Application | |
| Name=IntelliJ IDEA | |
| Icon=/opt/idea-IU-143.2370.31/bin/idea.png | |
| Exec=env JAVA_HOME=/usr/java/jdk1.8.0_131 "/opt/idea-IU-143.2370.31/bin/id$ | |
| Comment=Develop with pleasure! | |
| Categories=Development;IDE; | |
| Terminal=false |
| let myJSON = JSON.stringify(objectToClone, function(key, value){ | |
| if(key == "troublesomeProperty"){ | |
| return undefined; | |
| } | |
| return value; | |
| }); |
| import gdal | |
| in_file = '/Users/foo/Desktop/reproject/before.tif' | |
| out_file = '/Users/foo/Desktop/reproject/after.tif' | |
| # minX, minY, maxX, maxY | |
| new_bounds = [ | |
| -78.0078239440917969, | |
| -40.0333147430419922, | |
| -66.0144157409667969, |
| # setup | |
| from cdo import * | |
| cdo = Cdo() | |
| cdo.debug = True | |
| in_file = '/path/to/in_file.nc' | |
| out_file = '/path/to/out_file.nc' | |
| date1 = '2018-03-01T00:00:00' | |
| date2 = '2018-03-01T02:00:00' | |
| # my target is in meters |
-L 3 == 3 levels deep
-I node_modules ignore
tree -v -L 3 --charset utf-8 -I node_modules
| <!--https://stackoverflow.com/a/39731911/1177832--> | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <script src="//cdnjs.cloudflare.com/ajax/libs/d3/3.5.3/d3.js"></script> | |
| <style> | |
| .node { | |
| fill: #dddddd; | |
| stroke: gray; |