By Greg Nowak, 21 April, 2026 Logistics Optimization in 2026: Practical IT That Makes Supply Chains Work Better How logistics teams can improve planning, routes, dashboards, and AI readiness in 2026 by fixing data flow and constraints before buying bigger tools. Tags logistics Data Web supply chain optimization
By Greg Nowak, 13 June, 2017 CSV Kit Notes Tips and Examples Nice thing to use when working with CSV-files is CSV Kit. See the file statistics: csvstat -e UTF-16 test.csv Merge all files in a folder: csvstack -e UTF-16 -t *.csv > all.csv Save column 2 to output .csv: csvcut -c 2 -e UTF-8 all.csv > output.csv Tags Linux csv Data
By Greg Nowak, 21 January, 2016 Shrink PDF In Linux Here is a great reference how to compress and reduce the size of PDF files with Ghost Scrip (gs) in Linux: http://blog.virtualzone.de/2012/11/how-to-reduce-pdf-file-size-in-linux… Example: "gs -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dPDFSETTINGS=/screen -sOutputFile=output.pdf input.pdf" Tags Linux Data