| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | |||
| 5 | 6 | 7 | 8 | 9 | 10 | 11 |
| 12 | 13 | 14 | 15 | 16 | 17 | 18 |
| 19 | 20 | 21 | 22 | 23 | 24 | 25 |
| 26 | 27 | 28 | 29 | 30 |
- forks
- API
- Methods
- Filecoin
- .gitignore
- crawler
- commands
- GIT
- basics
- github
- project
- python
- MySQL
- directories
- JSON
- workbench
- Classes
- ansible
- Django
- Blockchain
- SCV
- Linux
- pandas
- Anime
- Jupyter Notebook
- strings
- cached
- DATABASE
- MyAnimeList
- noob
- Today
- Total
목록분류 전체보기 (24)
제니 블로그
SSH is used to connect to remote servers. It's the fundamental of basic Linux operations. It's convenient, but sometimes people make a big mistake of thinking that using a password is safe enough. Big Nono! Before the server goes into some kind of production mode, or even in development servers, SSH security is something that should be set up immedietely. The default port for SSH is 22, and if ..
What is LVM (Logical Volume Management)? LVM is a form of storage virtualization that offers system admins a more flexible approach to managing disk storage space. In our case, it’s used for NVMe partitioning for workers. It could be described as a smart layer that sits between the physical hard drives and the operating system, giving you much more control and flexibility than rigid partitions...
We installed Ansible on the previous post. Now it's time to use it in real application. I have currently set up a new inventory file in YAML format is usually the preferred way of setting up an inventory file. # /home/user/ansible/inventory.yml# Organized in YAML formatall: vars: ansible_user: user ansible_ssh_private_key_file: ~/.ssh/id_rsa # Define the python interpreter ansible_..
As a system admin, I am currently managing a very small data center with about 40 servers. Imagine having to go in every server and updating/installing a library one by one! It's such a pain. This is where Ansible comes in. Ansible is a very useful tool when managing servers.It can automate repetitive tasks across multiple servers simultaneously. Unlike many other configuration management tools..
First you have to generate a new key on your terminal. You can use any kind of terminal like git bash, powershell etc, but can have different available commands. (I use git bash because it's clean and convenient for when using git!) You can do this on both Unix and Windows; but this time, I'm running it on windows. ssh-keygen is a utility that generates a key pair - public and private key. ssh..
CUDA (Compute Unified Device Architecture) is a parallel computing platform and application programming interface (API) model created by NVIDIA. IT enables CUDA-enabled graphics processing unit for general-purpose preprocessing. It extended the capabilities of the GPU to handle computational workloads beyond graphic. Key Features: Parallel Computing: CUDA enables running thousands of threads con..
Since we have our project folders ready, it's time to set it up. This includes adding urlpatterns in urls.py, and altering the settings.py and view.py files. The most basic setup is the urlpatterns named index in our root folder from our app folder. urlpatterns = [ path('', views.index, name='index') ] This sets up the first pattern matches the root URL ('') and maps it to the index view functio..
Since we somewhat have the backend code ready to go, we choose a framework to start developing a web applicaiton. We chose Django, an open-source python web framework that helps developers build database-driven websites. First we need to install it. This process is very easy. As long as we have python installed, we type this in the command line. $ pip install django Ta-Da ~ Done. Now we need to ..