windows and macos terminal customize

https://www.youtube.com/watch?v=bM0FYTi11Wg     https://www.jondjones.com/tactics/productivity/customise-your-powershell-prompt-like-a-boss/   https://www.hanselman.com/blog/my-ultimate-powershell-prompt-with-oh-my-posh-and-the-windows-terminal https://www.youtube.com/watch?v=u_LbDWqYUJg https://www.youtube.com/watch?v=u_LbDWqYUJg   Macos https://www.youtube.com/watch?v=7rWmfDZI4Oo            

wordpress hestiacp and vestacp permission

find  /home/admin/web/sera.seraincubation.com/public_html/  -type f -exec chmod 664 {} ;   find  /home/admin/web/sera.seraincubation.com/public_html/  -type f -exec chmod 755 {} ;   chgrp -R admin   /home/admin/web/sera.seraincubation.com/public_html/   chown -R admin:admin /home/admin/web…

PgAdmin And PostgreSQL With docker-compose.yml

https://turreta.com/2020/07/31/docker-compose-yml-for-pgadmin-and-postgresql/https://www.youtube.com/watch?v=XeLg525z-eE services: demo-container-db: image: postgres:12 mem_limit: 1536MB mem_reservation: 1G environment: POSTGRES_USER: turreta POSTGRES_PASSWORD: a1128f69-e6f7-4e93-a2df-3d4db6030abc ports: - "5442:5432" networks: - turreta_network volumes: - db-data:/var/lib/postgresql/data demo-pgadmin4: image: dpage/pgadmin4 environment: PGADMIN_DEFAULT_EMAIL: karl.sangabriel@gmail.com PGADMIN_DEFAULT_PASSWORD:…

React Native Yeni başlayanlar için Yol Haritası

Aşağıdaki laboratuar uygulamasını Version 1.0.0 i,  1 yıl önce yazdım yani markete yüklenme tarihi 02.01.2020 sonra bunun kodlarını backend tarafını github a yedekledim. 1.5 yıl sonra video oynatıcı ve bazı geliştirmeler…

react native windows kurulumu

cmd yi admin yetkisi ile aç @"%SystemRoot%System32WindowsPowerShellv1.0powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%chocolateybin" choco install -y nodejs.install python2 jdk8 devamı https://www.techomoro.com/how-to-install-and-setup-react-native-on-windows-10/

golang code

https://www.geeksforgeeks.org/minimum-number-of-bottles-required-to-fill-k-glasses/Given N glasses having water, and a list A of each of their capacity. The task is to find the minimum number of bottles required to fill out exactly K…