본문 바로가기

Computer

(84)
Galaxy camera mute 1. enable development mode mobile info > software info > bulid number(click several times) 2. enable debugging development option > enable USB debugging 3. download ADB application, https://developer.android.com/tools/releases/platform-tools?hl=ko 4. run command by Admin mode 5. enable camera mute adb devices adb shell settings put system csc_pref_camera_forced_shuttersound_key 0
Adding new path to Environment Variables Control panel -> System and security -> System -> Advanced system setting -> Environment Variables... -> Select 'Path in System variables' -> Edit -> New examples #OFFICE 365 programs location C:\Program Files\Microsoft Office\root\Office16\
Windows app short-cut run by command line create following bash file, and save it in 'C:\Users\AccountName' folder @echo off cd "C:\Program Files (x86)\location\" start AppName.exe exit press below, Win+R {Enter} AppName {Enter} then, the application will be started.
Disable "What's new in Chrome" tab from Chrome Chrome what's new가 계속 생길때 해결방법 방법1 주소창에서 chrome://flags/ 입력 후 "Show Chrome What's New page at chrome://whats-new" 탭에서 'Disable' 선택 후 크롬 재실행 방법2 cmd 에서 아래 실행 후 chrome 재실행 chrome.exe --disable-features=ChromeWhatsNewUI
Remove the folders from THis PC / 내 PC 에서 폴더 지우기 In Regedit, change 'ThisPCPolicy' from 'Show' to 'Hide' Documents HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{f42ee2d3-909f-4907-8871-4c22fc0bf756}\PropertyBag Pictures HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{0ddd015d-b06c-45d5-8c4c-f59713854639}\PropertyBag Videos HKEY_LOCAL_MACHINE\SOFTWARE\Microsof..
Selenium #installation sudo pip3 install selenium sudo pip3 install xlrd sudo pip3 install pyvirtualdisplay sudo pip3 install selenium xlrd pyvirtualdisplay sudo apt install xvfb sudo apt install chromium-chromedriver sudo apt install xserver-xephyr sudo apt install chromium-chromedriver xvfb xserver-xephyr -y sudo pip3 install bs4 from selenium import webdriver from pyvirtualdisplay import Display from ..
Oracle server installation [Free] https://cloud.oracle.com/ Sequence of creating VM oracle cloud -> Create a VM instance > image and shape > select OS(Ubuntu) > Select CPU & Memory > Create * Ubuntu 22.02 does not support ssh-key as of June 8, 2022, use 20.04 instead. Setting reserved public IP Compute > Instance > Attached VNICs > instance click > IP4v address > instance edit > no public IP > update Compute > Instance > Attache..
VBA 엑셀 모든 시트의 함수를 값으로 변경 Developer > Visual Basic > Insert > Module > 아래값 복사하여 붙여넣기 > F5 Sub FormulaToValue() WCount = Worksheets.Count For i = 1 To WCount If Worksheets(WCount - i + 1).Visible Then Worksheets(WCount - i + 1).Select RCount = ActiveCell.SpecialCells(xlLastCell).Row CCount = ActiveCell.SpecialCells(xlLastCell).Column a = Cells(1, 1).Resize(RCount, CCount).Value Cells(1, 1).Resize(RCount, CCount) = a End I..