2023년 9월 30일 토요일

Free Partition Recovery Tool: TestDisk

Lost a partition while updating Ventoy, but successfully recovered it using TestDisk.

Ventoy's Non-Destructive mode, allowing installation without affecting existing partitions.


2023년 6월 6일 화요일

Leptos rust

Interlude: Reactivity and Functions (leptos-rs.github.io)

The post highlights the importance of closures in achieving reactivity. They enable the framework to rerun the smallest possible unit of your application in response to a change. Consequently, two key points to remember are:

Your component function is a setup function, not a render function, and it runs only once.

For values in your view template to be reactive, they must be functions: either signals (which implement the Fn traits) or closures​1​.

2023년 5월 14일 일요일

firewall-cmd Examples

  sudo firewall-cmd --zone=trusted --list-sources

 sudo firewall-cmd --zone=trusted --list-all


sudo firewall-cmd --permanent --zone=trusted --remove-source=x.x.x.x

sudo firewall-cmd --zone=trusted --add-source=x.x.x.x


sudo firewall-cmd --runtime-to-permanent --filename=./firewalld-runtime.xml


sudo firewall-cmd --reload


FFmpeg Usecases

Trimming Video

ffmpeg -i input.mp4 -ss 00:01:34.610 -c copy output.mp4


2023년 5월 7일 일요일

Control Panel shortcuts

appwiz.cpl - Programs and Features (Add/Remove Programs)

bthprops.cpl - Bluetooth Devices

desk.cpl - Display Settings

firewall.cpl - Windows Firewall

hdwwiz.cpl - Device Manager

inetcpl.cpl - Internet Options

intl.cpl - Region and Language Options

irprops.cpl - Infrared

joy.cpl - Game Controllers

main.cpl - Mouse Properties

mmsys.cpl - Sound and Audio Devices

ncpa.cpl - Network Connections

netsetup.cpl - Network Setup Wizard

nusrmgr.cpl - User Accounts

powercfg.cpl - Power Options

sysdm.cpl - System Properties

telephon.cpl - Phone and Modem Options

timedate.cpl - Date and Time Properties

wscui.cpl - Windows Security Center

wuaucpl.cpl - Windows Update

Free Partition Recovery Tool: TestDisk

Lost a partition while updating Ventoy, but successfully recovered it using TestDisk. Ventoy's Non-Destructive mode, allowing installati...