sudo snap install julia --classic
(base) yosepkim@sony:~$ julia
_
_ _ _(_)_ | Documentation: https://docs.julialang.org
#!/bin/bash | |
python3 -m venv .venv | |
source .venv/bin/activate | |
pip3 install --upgrade pip wheel setuptools | |
pip3 install --index-url https://download.pytorch.org/whl/cu121 \ | |
torch \ | |
torchvision \ | |
torchaudio |
# Dockerfile | |
#FROM pytorch/pytorch:2.1.2-cuda11.8-cudnn8-runtime | |
FROM pytorch/pytorch:2.1.2-cuda12.1-cudnn8-runtime | |
# Remove any third-party apt sources to avoid issues with expiring keys. | |
RUN rm -f /etc/apt/sources.list.d/*.list | |
# Install some basic utilities & python prerequisites | |
RUN apt-get update -y && apt-get install -y --no-install-recommends\ | |
wget \ |
https://cdnjs.com/libraries/vue | |
https://cdnjs.com/libraries/tailwindcss | |
https://cdnjs.com/libraries/bokeh |
#!/bin/bash | |
files=('data_extraction' 'installation' 'simulation_0_setup' 'simulation_1_rungui' 'simulation_2_runcli') | |
for file in "${files[@]}"; do | |
ffmpeg -y \ | |
-i "${file}.mp4" \ | |
-c:v libx264 \ | |
-c:a aac -strict experimental -tune fastdecode -pix_fmt yuv420p \ | |
-b:a 192k -ar 48000 "../${file}.mp4" |
Doxygen is a documentation generator for various programming languages, including C++. This guide will show you how to use Doxygen to generate documentation for a C++ project in a structured and readable format.
Ensure that Doxygen is installed on your system. You can download it from the official website.
Navigate to your project's root directory in your command line interface and run the following command to create a default configuration file:
#!/bin/bash | |
# Add Docker's official GPG key: | |
sudo apt-get update | |
sudo apt-get install ca-certificates curl gnupg | |
sudo install -m 0755 -d /etc/apt/keyrings | |
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg | |
sudo chmod a+r /etc/apt/keyrings/docker.gpg | |
# Add the repository to Apt sources: |
# 설치 방법 | |
snap install graphviz | |
# 그래프 이미지 생성 방법 | |
dot -Tpng -Gdpi=300 <dot 파일명> -o <이미지 파일명> # png | |
dot -Tjpg -Gdpi=300 <dot 파일명> -o <이미지 파일명> # jpg | |
dot -Tsvg <dot 파일명> -o <이미지 파일명> # svg |
Installing Zoom Using Terminal
Download the Zoom DEB installation file:
wget https://zoom.us/client/5.16.2.8828/zoom_amd64.deb
Install Zoom using the downloaded DEB file:
sudo apt install ./zoom_amd64.deb -y