Postingan

Menampilkan postingan dari 2023

Situs Convert Online | Video App Audio PDF

Video Resize dan Gabung : https://online-video-cutter.com/id/ Video Convert to mp4 : https://convertio.co/id/webm-mp4/   HTML : https://www.freeformatter.com/html-formatter.html Merge PDF : https://www.ilovepdf.com/merge_pdf PDF To Word : https://www.ilovepdf.com/pdf_to_word PDF Resize : https://www.ilovepdf.com/compress_pdf Combine PDF : https://combinepdf.com/id/

PHP | Cara pengambilan data Looping diawal dan diakhir

Sumber :  https://www.w3docs.com/snippets/php/how-to-determine-the-first-and-last-iteration-in-a-foreach-loop.html#:~:text=A%20handy%20solution%20to%20determining,)%20%7B%20%2F%2F%20last%20%7D%20%2F%2F%20%E2%80%A6 <?php $i = 0; $len = count($array); foreach ($array as $item) {   if ($i == 0) {     // first   } elseif ($i == $len - 1) {     // last   }   // …   $i++; } ?>

Cara Reset TWS Haylou GT1 Pro yang Tidak Stereo | Headphone, Headset Bluetooth

Gambar
Sumber : https://mukharom.com/cara-reset-tws-haylou-gt1-pro-yang-tidak-stereo/ Alasan Menyimpan : karena saya sering mencari blog ini untuk perangkat saya sendiri yang error.   Mukharom.com  –   Haylou GT1 Pro sudah menjadi TWS harian yang saya gunakan untuk berbagai kegiatan. Mulai dari mendengarkan musik, podcast, hingga online meeting. Ada beberapa alasan saya memilih TWS tersebut, alasannya sudah saya tulis pada artikel:   Hal yang Saya Suka dari TWS Haylou GT1 Pro . TWS ini memiliki sistem stereo, yang secara otomatis dapat terhubung antara earbuds kanan dan earbuds kiri sehingga suara dapat dihasilkan oleh 2 output. Lalu apakah sistem tersebut dapat error dan tidak dapat terkoneksi secara otomatis? Ya, itu baru saja terjadi beberapa waktu lalu pada TWS haylou milik teman saya. Yang menyebabkan earbuds kanan dan kiri terpisahkan dan tidak bisa saling terhubung secara stereo. Akibatnya kita hanya dapat menggunakan salah satu earbud saja dari TWS Haylou GT1 P...

Install PHP, composer di mac os monterey

 Xampp : redirect php dari bin/php ke bash profile Composer : menggunak curl install

Perbaikan Error Laravel | 21 Feb 2023

 > cURL error 77: error setting certificate verify locations: CAfile: \xampp\apache\bin\curl-ca-bundle.crt CApath: none (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) Jawaban :  sumber : https://stackoverflow.com/questions/55488982/failed-loading-cafile-stream-c-xampp-apache-bin-curl-ca-bundle-crt You are not providing a valid ca bundle file. Try downloading  this file  (https://curl.haxx.se/ca/cacert.pem) and save it as  C:\xampp\apache\bin\curl-ca-bundle.crt  You can read the explanation on  the Certificate Verification section of the curl documentation .

Cara instalasi web server nginx dan php-fpm pada Server CentOS 7 | 21 Feb 2023

 referensi : https://www.youtube.com/watch?v=RqYFHD0bgUE&ab_channel=impstudio #NGINX sudo yum -y install epel-release sudo yum -y install nginx sudo systemctl start nginx sudo systemctl enable nginx sudo firewall-cmd --add-service=http --permanent sudo firewall-cmd --add-service=https --permanent sudo firewall-cmd --reload #PHP-FPM --cd /tmp --sudo yum -y install wget --sudo wget -q http://rpms.remirepo.net/enterprise/remi-release-7.rpm --sudo rpm -Uvh remi-release-7.rpm sudo yum install http://rpms.remirepo.net/enterprise/remi-release-7.rpm sudo yum -y install yum-utils sudo yum-config-manager --enable remi-php74 sudo yum -y install php-fpm php-common sudo yum -y install php-opcache php-pecl-apcu php-cli php-pear php-pdo php-mysqlnd php-pgsql \ php-pecl-mongodb php-pecl-redis php-pecl-memcache php-pecl-memcached php-gd php-mbstring \ php-mcrypt php-xml sudo vim /etc/php.ini cgi.fix_pathinfo=0 date.timezone = Asia/Jakarta sudo vim /etc/php-fpm.d/www.conf user = nginx group...

ReactJs React JS | Install Running

> Install : - npm install > Running : - npm start > Install di project existing npm run build > Jika saat install masih belum  npm install --force

Running Redis Memcache Windows

Gambar
sumber : https://hackthedeveloper.com/how-to-install-redis-on-windows-10/ dir : D:\LKPP\katalog5-dev\Redis\redis-server   This blog’s primary focus is to discuss   How to install Redis on Windows 10 ? Before addressing the main question, let’s first take a brief look on what is   Redis . What Is Redis? Redis  full form is  Re mote  Di rectory  S erver. Redis is a NO-SQL in-memory remote database that offers high performance, replication, and a unique data model. Now when we have a brief idea of what Redis is, let’s see how we can install  Redis on windows 10 . Redis was not developed for windows and thus a team of Microsoft handles the task to make it available to us. How To Install Redis On Windows 10 Follow the steps as shown to properly install Redis on Windows 10. Step 1: Download .Zip Or .Msi File As told earlier, Redis is not available on windows but Microsoft makes it available for the Windows users. Go to  https://github.com...