| Service | SSL | status | Response Type | Allowed methods | Allowed headers |
|---|
Exhaustive list of SPDX (Software Package Data Exchange) licenses: https://spdx.org/licenses/
type StringBool = "true"|"false";
interface AnyNumber { prev?: any, isZero: StringBool };
interface PositiveNumber { prev: any, isZero: "false" };
type IsZero<TNumber extends AnyNumber> = TNumber["isZero"];
type Next<TNumber extends AnyNumber> = { prev: TNumber, isZero: "false" };
type Prev<TNumber extends PositiveNumber> = TNumber["prev"];- Press win+R then type gpedit.msc and press enter
- This will open the group policy editor. Browse through the 'tree' to the following entry:
Computer Configuration > Administrative Templates > Windows Components > Windows Update. - Look on the right panel and search for the option named No auto-restart with logged on users for scheduled automatic updates installations.
- Double-click on it, then change the radio button in the popup window that will appear from not configured to enabled and click OK.
- To make the system immediately apply the changes you just made, press win+R again and issue the gpupdate /force command
Essentially just copy the existing video and audio stream as is into a new container, no funny business!
The easiest way to "convert" MKV to MP4, is to copy the existing video and audio streams and place them into a new container. This avoids any encoding task and hence no quality will be lost, it is also a fairly quick process and requires very little CPU power. The main factor is disk read/write speed.
With ffmpeg this can be achieved with -c copy. Older examples may use -vcodec copy -acodec copy which does the same thing.
These examples assume ffmpeg is in your PATH. If not just substitute with the full path to your ffmpeg binary.
When many different people are working on a project simultaneously, pull requests can go stale quickly. A "stale" pull request is one that is no longer up to date with the main line of development, and it needs to be updated before it can be merged into the project. The most common reason why pull requests go stale is due to conflicts: if two pull requests both modify similar lines in the same file, and one pull request gets merged, the unmerged pull request will now have a conflict. Sometimes, a pull request can go stale without conflicts: perhaps changes in a different file in the codebase require corresponding changes in your pull request to conform to the new architecture, or perhaps the branch was created when someone had accidentally merged failing unit tests to the master branch. Regardless of the reason, if your pull request has gone stale, you will need to rebase your branch onto the latest version of the master branch before it can be merged.
| /* | |
| Towers of Hanoi | |
| (non-recursive solution) | |
| https://blog.svpino.com/2015/06/07/programming-challenge-towers-of-hanoi | |
| */ | |
| function solveHanoi(discs){ | |
| var towers = {a:[],b:[],c:[]}; |
To create anchor links that jump down to different sections of a README (as in an interactive table of contents), first create a heading:
#Real Cool Heading
The anchor link for that heading is the lowercase heading name with dashes where there are spaces. You can always get the anchor name by visiting the README on Github.com and clicking on the anchor that appears when you hover to the left of the heading. Copy everything starting at the #:
#real-cool-heading
Wherever you want to link to your Real Cool Heading section, put your desired text in brackets, followed by the anchor link in parentheses:
[Go to Real Cool Heading section](#real-cool-heading)
| # If you don't remember the exact path/name, search the log for deleted files | |
| git log --diff-filter=D --summary | grep delete | |
| # Find the file you want to get from the ouput, and use the path | |
| # Find the commits that involved that path | |
| git log --all -- some/path/to/deleted.file | |
| # Bring the file back to life to the current repo (sha commit of parent of commit that deleted) | |
| git checkout shaofthecommitthatdeletedthefile^ -- some/path/to/deleted.file |
| LEFT PARENTHESIS (U+0028, Ps): ( | |
| RIGHT PARENTHESIS (U+0029, Pe): ) | |
| LEFT SQUARE BRACKET (U+005B, Ps): [ | |
| RIGHT SQUARE BRACKET (U+005D, Pe): ] | |
| LEFT CURLY BRACKET (U+007B, Ps): { | |
| RIGHT CURLY BRACKET (U+007D, Pe): } | |
| LEFT-POINTING DOUBLE ANGLE QUOTATION MARK (U+00AB, Pi): « | |
| RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK (U+00BB, Pf): » | |
| TIBETAN MARK GUG RTAGS GYON (U+0F3A, Ps): ༺ | |
| TIBETAN MARK GUG RTAGS GYAS (U+0F3B, Pe): ༻ |