Author's posts

Misc. on Power Shell Script

Misc. on Power Shell Script How to read data from users? Read-Host How to write/print output data/text to the user: Write-Output How to Check if a file exists? Test-Path $filePath How to append data to a file? Add-Content -Path $filePath -Value “x: $x, y: $y” How to create a file? New-Item -Path $filePath -ItemType File …

Continue reading

Linux Script: Read Data from User and Show Some Columns

read -p “Give me some data: ” user_data echo $user_data echo $user_data | cut -d ‘ ‘ -f 1,3

Power Shell and Process

Get-Process Get-Process winword, explorer | Format-List * Get-Process | Where-Object {$_.WorkingSet -gt 20000000} $A = Get-Process $A | Get-Process | Format-Table -View priority Get-Process pwsh -FileVersionInfo (did not work) Get-Process SQL* -Module Stop-Process -Name “notepad” Stop-Process -Id 3952 -Confirm –PassThru calc $p = Get-Process -Name “calc” Stop-Process -InputObject $p Get-Process | Where-Object {$_.HasExited} Get-Process -Name …

Continue reading

What Is the Efficient Market Hypothesis (EMH)

What Is the Efficient Market Hypothesis (EMH)?The efficient market hypothesis (EMH), alternatively known as the efficient market theory, is a hypothesis that states that share prices reflect all available information and consistent alpha generation is impossible. According to the EMH, stocks always trade at their fair value on exchanges, making it impossible for investors to …

Continue reading

Solution that worked for the issue: Your current session has been expired. for Magento2

Solution that worked for the issue: Your current session has been expired. for Magento2 cat shell-scripts/temp.sh# fix misc issues, can be routine sudo php bin/magento maintenance:enable#sudo rm -rf var/cache/#sudo rm -rf generated/sudo chmod +x bin/magentosudo php bin/magento setup:upgrade#sudo php bin/magento setup:static-content:deploy -fsudo php bin/magento setup:di:compilesudo php bin/magento indexer:reindexsudo php bin/magento cache:cleansudo php bin/magento cache:flushsudo php …

Continue reading

test

Test Test

Exciting new post today: 12/22/2018

Vacations Vacations are the best thing in this life.

Continue reading

মাইএসকিউএল এ পিএইচপি সংযোগ (PHP Connect to MySQL)

মাইএসকিউএল এ পিএইচপি সংযোগ নয়ন চন্দ্র দত্ত কি খবর সবার? সবাই ভালতো । আজ আমি অনেক গুরুত্বপুর্ণ একটা বিষয় মাইএসকিউএল এ পিএইচপি সংযোগ নিয়ে বিস্তারিত আলোচনা করবো । মাইএসকিউএল এ কীভাবে পিএইচপি সংযোগ করতে হয় তা আজ আমরা দেখব। তাহলে চলুন শুরু করা যাক …। পিএইচপি 5 এবং পরে্র একটি মাইএসকিউএল ডাটাবেস ব্যবহার করে কাজ …

Continue reading

Resources for PMP Certification

পিএমপি সার্টিফিকেট পরীক্ষার জন্য তথ্যঃ রিদওয়ান বিন শামিম পিএমপি সার্টিফিকেট পরীক্ষাটি প্রকল্প পরিচালক হওয়ার ক্ষেত্রে খুব ভাল একটি সহায়ক বিশেষ করে কোন ব্যক্তির অভিজ্ঞতার পাশাপাশি খুবই প্রয়োজনীয় হতে পারে যদি সে কোন সফটওয়ার কোম্পানি বা এই জাতীয় কোম্পানির প্রকল্প পরিচালক হতে চায়। কিন্তু এ ক্ষেত্রে শুধু মাত্র প্রাতিষ্ঠানিক সার্টিফিকেট হয়ত প্রকল্প পরিচালক হিসেবে সফল হওয়ার …

Continue reading

SEO Miscellaneous Techniques

এস ই ও করার বিভিন্ন টিপস স্বর্ণা আখতার এস ই ও করার ক্ষেত্রে কিছু কিছু টিপস বা পদ্ধতি আছে সেগুলো সাধারণত বিশেষ কোন কাঠামোতে অন্তর্ভুক্ত করা যায় না। তবে সেগুলোও সমানভাবে গুরুত্বপূর্ণ। নিচে এমনই কিছু বিষয়াবলী সম্পর্কে সংক্ষেপে আলোচনা করা হল। যে বিষয়গুলি মনে রাখা জরুরি, ১. ওয়েবপেজ এ কোন লুকায়িত বিষয়বস্তু রাখবেন না। ২. …

Continue reading