kiran singh

Your Set-Top Box Will Now Support more DTH Operators

Telecom Regulatory Authority of India (TRAI) has decided that set-top boxes will be interoperable from now on so that in case customers wanted to switch their service providers, they wouldn’t need to change their set top boxes every time. 
As of now, the STBs that are offered by telecom operators are non-interoperable, which means that if you change your telecom provider, you will need a new set top box for the new one.
TRAI To Make Set Top Boxes Interoperable :-
The discussion of making the set top boxes interoperability has been on the table for a long time now and TRAI has finally made the decision to make it official. TRAI has stated that all the set top boxes in the entire country should support technical interoperability. 

Additionally, DTH and Multi-System Operators (MSOs) have been given a time period of six months to adapt to the new changes. As per TRAI, the new standard is DVB CI Plus 2.0 (with USB CAM) as per the ESTI TS 103 605 standards.
The Ministry of Information and Broadcasting (MIB) will probably include a suitable clause to ‘compulsorily facilitate’ the service of interoperability of set top boxes.
However, we should remember that the set top boxes of DTH and cable TV operators will not be interoperable. This means that a DTH subscriber cannot change to cable TV and vice versa. The reason behind this is that there are technical and commercial constraints to the universal STB, and hence, the interoperability will be applicable within the DTH and within the cable segment respectively.
USB Port-based Common Interface :-
TRAI has also advised that there be a mandatory provision of USB port-based Common Interface for all the digital television sets in India. The MIB, TRAI and the Ministry of Electronics and Information Technology (MeitY) will probably request BIS to change the specifications for digital television sets to include USB based Common Interface port as per DVI CI Plus 2.0 standard based on ETS TS 103 605.

All the TV manufacturers must provide all digital television sets with minimum one open interface port that is based on DVB CI Plus 2.0 standards that will allow a simple connection of USB CAM to allow reception of television signals. They will also be required to launch TV sets with built-in tuners to enable the reception of television content through both satellite and cable platforms.

source:techiyogiz

Laravel 8 migrate specific table

php artisan migrate --path=/database/migrations/fileName.php
php artisan migrate --path=/database/migrations/2020_04_10_130703_create_test_table.php
php artisan migrate:refresh --path=/database/migrations/2021_06_23_093317_create_users_table.php
To rollback one step:

php artisan migrate:rollback

To rollback multiple steps:

php artisan migrate:rollback --step=[x]
  
To drop all tables and reload all migrations:

php artisan migrate:fresh

What is the difference between init 6 and reboot

Reboot

reboot uses the shutdown command (with the -r switch). The shutdown command used to kill all the running processes, unmount all the file systems and finally tells the kernel to issue the ACPI power command.

Init 6

init 6 tells the init process to shutdown all of the spawned processes/daemons as written in the init files (in the inverse order they started) and lastly invoke the shutdown -r now command to reboot the machine

why swap memory not used with ssd

0

SSD Endurance is measured in so called DWPD units. DWPD stands for Drive full Writes Per Day. For Mobile, Client and Enterprise Storage Market segments DWPD requirements are very different. SSD Vendors usually state warranty as, for example, 0.8 DWPD / 3 years or 3.0 DWPD / 5 years. First example means that writing 80% of Drive Capacity every single day will result into 3 years life-time. Technically you can kill your 480GB Drive (let’s say with 1 DWPD / 3 years warranty) within 12 days if to perform non-stop write access at the speed of 500 MB/s.

SSDs show much higher throughput on the one side if to compare with HDDs, but at the same time quite low endurance level. Partially it is due to the media physical structure and mapping. For example, when writing 1GB of user data to the HDD drive – internally physical media will receive around 10% more data (meta data, error protection data, etc.). Ratio between Host Data Amount and Internal Data Amount is called Write Amplification Factor (WAF). In comparison SSD may need to write 4 times more data than received from Host. Pure Random access is the worst scenario, when writing 1GB of Host Data will result into writing 4GB of data to the Internal Flash Media. If to perform only sequential write access WAF for SSDs will be close to 1.0, like for HDDs.

Enabling System swap and its intensive usage (probably due to DRAM shortage) will generate more Random access to the SSD. Endurance will degrade quicker if to compare with disable swap. Unless you are running Enterprise System with non-stop IO traffic to the SSD, I would not expect Swap enablement to affect SSD endurance much. You can always monitor SSD SMART Health parameter called – SSD Life Left. How it is changing in dynamic with/without swap enabled will help to make a decision.

How To Add Swap on CentOS 7

Although swap is generally recommended for systems utilizing traditional spinning hard drives, using swap with SSDs can cause issues with hardware degradation over time. Due to this consideration, we do not recommend enabling swap on DigitalOcean or any other provider that utilizes SSD storage. Doing so can impact the reliability of the underlying hardware for you and your neighbors.

If you need to improve the performance of your server, we recommend upgrading your Droplet. This will lead to better results in general and will decrease the likelihood of contributing to hardware issues that can affect your service.

Laravel database migrate command

php artisan migrate
php artisan migrate:fresh
php artisan migrate:install
php artisan migrate:refresh
php artisan migrate:reset
php artisan migrate:rollback
php artisan migrate:status

How to stop corruption in India | भारत में भ्रष्टाचार को कैसे रोकें

How to stop corruption in India | भारत में भ्रष्टाचार को कैसे रोकें

यदि केंद्र सरकार के किसी विभाग/कंपनी/सरकारी बैंक का कोई कर्मचारी/अधिकारी किसी सरकारी कार्य करने या अपने सरकारी कर्तव्य का निर्वहन करने के लिए रिश्वत/घूस मांगे तो सी.बी.आई., भ्रष्टाचार निरोधक शाखा, नयी दिल्ली को फ़ोन नंबर 011-24363460, 011-24367887, 011-24367341 मोबाइल नंबर - 9650394847 पर फ़ोन/एस.एम.एस. करें

Fatal error: Maximum execution time of 300 seconds exceeded in

Xampp Users

  1. Go to xampp\phpMyAdmin\
  2. Open config.inc.php
  3. Search for $cfg['ExecTimeLimit'] = 300;
  4. Set a larger value or change to 0 for unlimited
  5. If not found add $cfg['ExecTimeLimit'] = 900; (or 0 for unlimited)
  6. Save the file and restart the server

Laravel useful commands for clear cache

php artisan config:clear
php artisan view:clear
php artisan route:clear
php artisan cache:clear
php artisan route:cache 
php artisan config:cache