This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
How to get HEVC Video Extensions from Device Manufacturer for free 2023: | |
1: Go to https://store.rg-adguard.net/ | |
2: Select ProductID and paste in 9n4wgh0z6vhq then press ✔ to search | |
3: Select right one for your cpu type and download the .appx file then install by clicking on the file | |
enjoy |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Windows Registry Editor Version 5.00 | |
[HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced] | |
"ShowSecondsInSystemClock"=dword:00000001 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"id": "a31e146ad80c6044f19d26bb2741793e", | |
"_format": "hh-sol-build-info-1", | |
"solcVersion": "0.8.7", | |
"solcLongVersion": "0.8.7+commit.e28d00a7", | |
"input": { | |
"language": "Solidity", | |
"sources": { | |
"index.sol": { | |
"content": "// SPDX-License-Identifier: MIT\r\npragma solidity ^0.8.7;\r\ncontract calculator {\r\n // addition\r\n function add(uint x, uint y) external pure returns(uint) {\r\n return x+y;\r\n }\r\n // multiply\r\n function mul(uint x, uint y) external pure returns(uint) {\r\n return x*y;\r\n }\r\n // division\r\n function div(uint x, uint y) external pure returns(uint) {\r\n return x/y;\r\n }\r\n // subtrhuction\r\n function sub(uint x, uint y) external pure returns(uint) {\r\n return x-y;\r\n }\r\n}\r\n" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"id": "a31e146ad80c6044f19d26bb2741793e", | |
"_format": "hh-sol-build-info-1", | |
"solcVersion": "0.8.7", | |
"solcLongVersion": "0.8.7+commit.e28d00a7", | |
"input": { | |
"language": "Solidity", | |
"sources": { | |
"index.sol": { | |
"content": "// SPDX-License-Identifier: MIT\r\npragma solidity ^0.8.7;\r\ncontract calculator {\r\n // addition\r\n function add(uint x, uint y) external pure returns(uint) {\r\n return x+y;\r\n }\r\n // multiply\r\n function mul(uint x, uint y) external pure returns(uint) {\r\n return x*y;\r\n }\r\n // division\r\n function div(uint x, uint y) external pure returns(uint) {\r\n return x/y;\r\n }\r\n // subtrhuction\r\n function sub(uint x, uint y) external pure returns(uint) {\r\n return x-y;\r\n }\r\n}\r\n" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"deploy": { | |
"VM:-": { | |
"linkReferences": {}, | |
"autoDeployLib": true | |
}, | |
"main:1": { | |
"linkReferences": {}, | |
"autoDeployLib": true | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Source: | |
https://docs.microsoft.com/en-us/DeployOffice/vlactivation/gvlks | |
GVLKs for Office 2019 | |
===================== | |
Office Professional Plus 2019 | |
NMMKJ-6RK4F-KMJVX-8D9MJ-6MWKP | |
Office Standard 2019 |
#How to make automatically run the WSL services for ssh, apache2, mysql at Startup:
Step: 1
Add below lines in sudo nano /etc/sudoers
WSL to prevent asking password:
%sudo ALL=(ALL) NOPASSWD: /usr/sbin/service ssh start
%sudo ALL=(ALL) NOPASSWD: /usr/sbin/service apache2 start
%sudo ALL=(ALL) NOPASSWD: /usr/sbin/service mysql start
Step: 2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class ListNode | |
{ | |
public int Val; | |
public ListNode Next; | |
public ListNode(int x = 0, ListNode Next = null) | |
{ | |
Val = x; | |
Next = Next; | |
} | |
} |
- You can permanently add a user PATH to PATH with the setx command:
setx PATH "C:\flutter\bin;%PATH%"
- Add the /M flag if you want to set the system PATH instead of the user PATH.
You need run the cmd Run as Administrator
setx /M PATH "C:\flutter\bin;%PATH%"