create different ssh key, Git Bash on Windows / GNU/Linux / macOS:
$ ssh-keygen -t rsa -C "[email protected]"
create different ssh key, Git Bash on Windows / GNU/Linux / macOS:
$ ssh-keygen -t rsa -C "[email protected]"
/* biblioteca */ | |
#include <stdio.h> | |
/* declaração da função */ | |
int SomaDosQuadrados(int n); | |
/* função principal do programa */ | |
int main( ) { | |
/* declaração da variáveis locais a zero */ | |
int n, soma = 0; | |
/* Total de números a inserir */ | |
printf( "Valor de n: "); |
# Change this path to your config directory | |
CONFIG_DIR="/config" | |
cd /tmp | |
# Install required software | |
apt-get update | |
apt-get upgrade | |
apt-get install unzip | |
apt-get install git |
#include <stdio.h> | |
#include <math.h> | |
#include <stdlib.h> | |
#define N_MAX 100 | |
int v[N_MAX]; | |
int b,i,resultado,a; | |
int main(void) |
sudo -i | |
add-apt-repository universe | |
apt-get update | |
apt-get install -y apparmor-utils apt-transport-https avahi-daemon ca-certificates curl dbus jq network-manager socat software-properties-common | |
curl -sSL https://get.docker.com | sh | |
curl -sL "https://raw.githubusercontent.com/home-assistant/hassio-build/master/install/hassio_install" | bash -s |
CONFIG_DIR='/config' | |
apt update | |
apt upgrade -y | |
apt-get install unzip git nano -y | |
cd /tmp | |
git clone --depth 1 https://github.com/tensorflow/models.git tensorflow-models |
#https://www.devroom.io/2006/11/13/cups-426-upgrade-required/
docker run -d -p 631:631 --name cupsd --net=host olbat/cupsd
sudo -i | |
apt-get install software-properties-common | |
add-apt-repository universe | |
apt-get update | |
apt-get install -y apparmor-utils apt-transport-https avahi-daemon ca-certificates curl dbus jq network-manager socat | |
#The jetson already has docker installed | |
#curl -fsSL get.docker.com | sh | |
curl -sL "https://raw.githubusercontent.com/home-assistant/hassio-installer/master/hassio_install.sh" | bash -s -- -m qemuarm-64 |
ffmpeg -f concat -safe 0 -i <(for f in ./*.MP4; do echo "file '$PWD/$f'"; done) -c copy output.MP4 | |
ffmpeg -f concat -safe 0 -i <(for f in ./*.mp4; do echo "file '$PWD/$f'"; done) -c:v libx264 -an output.mp4 |
for /r %%i in (*.MP4) do echo file '%%i'>> list.txt | |
ffmpeg.exe -f concat -safe 0 -i list.txt -c copy -an output.mp4 | |
del list.txt | |
pause |