CH1
ON/OFF: Received NEC: address=0x6D82, command=0x40BF command_repeats=1
Full: Received NEC: address=0x6D82, command=0x59A6 command_repeats=1
明るく: Received NEC: address=0x6D82, command=0x45BA command_repeats=1
暗く: Received NEC: address=0x6D82, command=0x44BB command_repeats=1
白色: Received NEC: address=0x6D82, command=0x58A7 command_repeats=1
暖色: Received NEC: address=0x6D82, command=0x57A8 command_repeats=1
CH2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function() { | |
| const buttonLabelPattern = /^Trash \d+$/; | |
| const interval = 1000; | |
| const checkInterval = 500; | |
| let clickIntervalId = null; | |
| let checkTimeoutId = null; | |
| function clickButton() { | |
| const buttons = document.querySelectorAll('button'); |
Notes to install Ubuntu 22.04.4LTS (Upgraded to 24.04LTS) up and running on my 2017 MacBook Pro 15 inch (MacBookPro14,3).
Now everything except the TouchID (Fingerprint), Suspend and Hibernation seems to work for me.
About Ubuntu 24.04LTS: I tried to install Ubuntu 24.04 and didn't have success. There was a crash issue during installation. https://bugs.launchpad.net/subiquity/+bug/2065310 But I installed 22.04 and upgraded it to the 24.04LTS later and it working same as 22.04.4.
- I advice you to buy SSL Certs from officially Comodo only , or some SSL reseller whose you trust.
These are the steps I went through to set up an SSL cert. Purchase the cert
Prior to purchasing a cert, you need to generate a private key, and a CSR file (Certificate Signing Request). You’ll be asked for the content of the CSR file when ordering the certificate:
openssl req -new -newkey rsa:2048 -nodes -keyout example_com.key -out example_com.csr
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| yum -y install postgresql postgresql-server postgresql-devel postgresql-libs | |
| yum install -y python27-devel python27 python27-libs python27-setuptools python27-pip python27-virtualenv | |
| # Dev tools for compile | |
| yum -y install gcc zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel gdbm-devel db4-devel libffi-devel libxslt libxslt-devel libxml2 libxml2-devel openldap-devel libjpeg-turbo-devel openjpeg-devel libtiff-devel git libpng libXext libz.so.1 xorg-x11-fonts-Type1 curl cabextract | |
| # wkhtmltopdf install | |
| cd /tmp | |
| wget http://download.gna.org/wkhtmltopdf/0.12/0.12.2/wkhtmltox-0.12.2_linux-centos6-amd64.rpm |