Posts

Showing posts from October, 2022

Digital Marketing

How to Hard Reset My Apple Watch?

Press and hold the Digital Crown and Side button simultaneously. Continue holding both buttons until the Apple logo appears, then let go.

Apple Crash Detection Feature

Apple Crash Detection Feature is a Life Saving Feature When a severe car crash is detected, your iPhone or Apple Watch sounds an alarm and displays an alert. The device reads an alert in case you are not able to see the screen. If you are able, you can choose to call the emergency services or dismiss the alert. If you are unable to do so, the device will automatically call emergency services after a 20-second delay. Apple's crash detection feature can detect severe car crashes like front-impact, side-impact and rear end collisions and rollovers. 

The verbosity of the MySQL server in writing error, warning, and note messages to the error log.

If you don't want to see the  [Note] Aborted connection 7757 to db: 'goyun' user: 'info' host: '192.168.1.100' (Got an error reading communication packets) Change your log error verbosity: mysql> select @@log_error_verbosity; +-----------------------+ | @@log_error_verbosity | +-----------------------+ |                     3 | +-----------------------+ 1 row in set (0.00 sec) mysql> set global log_error_verbosity=1; Query OK, 0 rows affected (0.00 sec) mysql> select @@log_error_verbosity; +-----------------------+ | @@log_error_verbosity | +-----------------------+ |                     1 | +-----------------------+ 1 row in set (0.00 sec)

Default git branch name change

Change the default git branch from master to main. If the parent branch of your fork or branch is master, the following instructions tell you how to change the parent branch to main. To show the parent branch, where BRANCH is the name of your branch: Navigate to the root of your branch or fork. Make sure your branch is the current branch (git checkout BRANCH). Run git branch --contains. Changing a branch parent branch from master to main To change the parent branch for your branch to main, navigate to the root of your branch and enter the following commands, where BRANCH is the name of your branch:    git branch -m master main    git fetch origin    git branch -u origin/main main    git remote set-head origin -a    git remote update --prune

Changing a fork's default branch from master to main

GitHub will notify you when a parent branch has changed. To change your fork's default branch to main: Navigate to main web page of your fork. You should see a "The default branch on the parent repository has been renamed" message. Select the branch settings link. Change master to main.

REST APIs and HTTP APIs are both RESTful API products.

REST APIs support more features than HTTP APIs, while HTTP APIs are designed with minimal features so that they can be offered at a lower price. Choose REST APIs if you need features such as API keys, per-client throttling, request validation

Deployment Image Servicing and Management tool DISM features

Deployment Image Servicing and Management tool Version: 10.0.22621.1 Image Version: 10.0.22621.674 Features listing for package : Microsoft-Windows-Foundation-Package Feature Name : Windows-Defender-Default-Definitions State : Disabled Feature Name : Printing-PrintToPDFServices-Features State : Enabled Feature Name : Printing-XPSServices-Features State : Enabled Feature Name : TelnetClient State : Enabled Feature Name : TFTP State : Disabled Feature Name : TIFFIFilter State : Disabled Feature Name : LegacyComponents State : Disabled Feature Name : DirectPlay State : Disabled Feature Name : MSRDC-Infrastructure State : Enabled Feature Name : Windows-Identity-Foundation State : Disabled Feature Name : MicrosoftWindowsPowerShellV2Root State : Enabled Feature Name : MicrosoftWindowsPowerShellV2 State : Enabled Feature Name : SimpleTCP State : Disabled Feature Name : NetFx4-AdvSrvs State : Enabled Feature Name : NetFx4Extended-ASPNET45 State : Disabled Feature Name : WCF-Services45 State :

Install driver for vGPU to benefit from hardware accelerated OpenGL rendering on WSL

GPU driver for WSL To run Linux GUI apps, you should first install the driver matching your system below. This will enable you to use a virtual GPU (vGPU) so you can benefit from hardware accelerated OpenGL rendering. Intel  GPU driver for WSL AMD  GPU driver for WSL NVIDIA  GPU driver for WSL

Tail risk refers to the probability of an extreme outcome from a rare event.

Tail risk describes the likelihood of rare events at the ends of a probability distribution. Specifically, greater tail risk would suggest that the probability of a rare event is greater than what a normal distribution would indicate.