분류 전체보기 (97) 썸네일형 리스트형 Home assistant ha> login nmcli radio nmcli device wifi rescan nmcli device wifi nmcli device wifi connect "SSID" password "PASSWORD" REBOOT the machine, then it will be connected the way of access address is as below; http://X.X.X.X:8123 homeassistant:8123 WIFI connection through command line ha> network update wlan0 --piv4-method auto --wifi-auth wpa-psk --wifi-mode infrastructure --wifi-ssid "MY-SSID" --wifi.. Blender frequnetly using functions Enable Measureit Edit > Preferences > Add-ons > search 'measureit' > Check box then, you can see measureit from 'View' panel. Add texture image Select object > Material objects > New > Surface > Diffuse BSDF > Color > Image Texture > Open > Load image Rendering F12 Rendering view point set Ctrl+Alt+0 Rendering background color change World property tab > change 'Color' Rendering with outline Sel.. 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 .. Apache virtualhost with Python CGI cd /etc/apache2/mods-enabled/ sudo ln -s ../mods-available/cgi.load cgi.load #check if symbolic link is activated ls -la cgi.load sudo nano /etc/apache2/apache2.conf #insert followings at the end of the file ServerName localhost ScriptAlias /cgi-bin/ /var/www/cgi-bin/ Options +ExecCGI AddHandler cgi-script .cgi .pl .py sudo nano /etc/apache2/conf-available/serve-cgi-bin.conf #change directory # .. 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.. Excel macro send key Application.SendKeys("{UP}") Application.SendKeys("{DOWN}") Application.SendKeys("{LEFT}") Application.SendKeys("{RIGHT}") Application.SendKeys("{ENTER}") BACKSPACE/{BACKSPACE} or {BS} BREAK/{BREAK} CAPS LOCK/{CAPSLOCK} CLEAR/{CLEAR} DELETE or DEL/{DELETE} or {DEL} DOWN ARROW/{DOWN} END/{END} ENTER (numeric keypad)/{ENTER} ENTER/~ (tilde) ESC/{ESCAPE} or {ESC} HELP/{HELP} HOME/{HOME} INS/{INSERT.. Excel macro - Visual Basic loop To loop, insert following 'First of the code For I = 0 To 999 ' End of the code Next I 이전 1 2 3 4 5 ··· 13 다음