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
#Jetson Containers tags the output the l4t version - check yours is the right one | |
FROM your_container_tag:l4t-r36.2.0 | |
ENV DEBIAN_FRONTEND=noninteractive | |
ARG UID=1000 | |
ARG GID=1000 | |
# Some of this is from https://github.com/atinfinity/l4t-ros2-docker | |
# add new sudo user | |
ENV USERNAME jetson |
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
<?php | |
require __DIR__ . '/vendor/autoload.php'; | |
use PhpOffice\PhpSpreadsheet\Chart\Chart; | |
use PhpOffice\PhpSpreadsheet\Chart\DataSeries; | |
use PhpOffice\PhpSpreadsheet\Chart\DataSeriesValues; | |
use PhpOffice\PhpSpreadsheet\Chart\Legend; | |
use PhpOffice\PhpSpreadsheet\Chart\PlotArea; | |
use PhpOffice\PhpSpreadsheet\Chart\Title; | |
use PhpOffice\PhpSpreadsheet\Style\Alignment; | |
use PhpOffice\PhpSpreadsheet\Style\Border; |
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
<?php | |
require __DIR__ . '/vendor/autoload.php'; | |
use PhpOffice\PhpSpreadsheet\Chart\Chart; | |
use PhpOffice\PhpSpreadsheet\Chart\DataSeries; | |
use PhpOffice\PhpSpreadsheet\Chart\DataSeriesValues; | |
use PhpOffice\PhpSpreadsheet\Chart\Legend; | |
use PhpOffice\PhpSpreadsheet\Chart\PlotArea; | |
use PhpOffice\PhpSpreadsheet\Chart\Title; | |
use PhpOffice\PhpSpreadsheet\IOFactory; | |
use PhpOffice\PhpSpreadsheet\Spreadsheet; |