By editor, 24 June, 2021 State API Tags Drupal 8 Code Drupal 9 State servic eallow to store variables such as state of the server temporarily or permanently
By editor, 15 June, 2021 Drupal Site Settings : Using settings.php Tags Drupal 8 Code Settings Drupal settings file can contains variable which can use to use for different configuration in different environments. Example: env_name default_info_nid $settings['env_name'] = 'Local'; $settings['default_info_nid'] = 1';
By editor, 6 April, 2021 Squash commits into one with Git, Rebase Tags Git Steps: 1. Update branche git reset --hard origin/features/BRANCHNAME OR git pull origin features/BRANCHNAME
By editor, 6 April, 2021 Chocolatey packages installer Tags Windows Chocolatey is a software manager for Windows. Can use to install packages like php, tig, make Examples: Install php choco install php Install TIG choco install tig Site : https://chocolatey.org/install
By editor, 8 March, 2021 Convert M4A, OGG or OPUS audio file in to MP3 on linux Tags Shell Linux Audio Convert OGG to MP3 ffmpeg -v 5 -y -i file.m4a -acodec libmp3lame -ac 2 -ab 192k file.mp3 Convert M4A to MP3 ffmpeg -i file.ogg file.mp3#Orffmpeg -i file.{ogg,mp3}