- intellisense :
tab
(can use in command(:) mode) - keymap site :
- select block :
ctrl + space
- shit buffer :
shit + h,j,k,l
#!/bin/env python3 | |
import argparse | |
import io | |
import json | |
import os | |
import sys | |
import urllib.parse | |
import urllib.request | |
from typing import Optional, NamedTuple |
This content from this markdown file has moved a new, happier home where it can serve more people. Please check it out : https://docs.microsoft.com/azure/azure-cache-for-redis/cache-best-practices.
<div class="text-right"> | |
<div class="custom-control custom-switch"> | |
<mat-checkbox type="checkbox" | |
class="custom-control-input" | |
id="darkMode" | |
[checked]="isThemeDark | async" | |
(change)="toggleDarkTheme($event)"> | |
<label class="custom-control-label" for="darkMode"></label> | |
<a class="text-capitalize">Dark Mode</a> | |
</mat-checkbox> |
UPDATED 3.12.2020
The old version of youtube with "disable_polymer" is not working anymore, so the script also stopped working.
Thanks to JanTheDeveloper we have a new working script. Big up!
I just changed the '//span[contains(text(),"Watch later")]',
to '//span[contains(text(),"Remove from")]',
and it should work for any playlist, not just the watch later one. (thanks to hudsonite for the tip)
setInterval(function () {
document.querySelector('#primary button[aria-label="Action menu"]').click();
We will compare ASP.NET and Node.js for backend programming.
Source codes from examples.
This document was published on 21.09.2015 for a freelance employer. Some changes since then (14.02.2016):
async/await
. yield
and await
are used almost in the same way, so I see no point to rewrite the examples.using System; | |
using System.Diagnostics; | |
namespace BinarySearchTree | |
{ | |
class Node | |
{ | |
public int value; | |
public Node left; | |
public Node right; |
Visual Studio 2019 Product Key | |
Visual Studio 2019 Enterprise | |
BF8Y8-GN2QH-T84XB-QVY3B-RC4DF | |
Visual Studio 2019 Professional | |
NYWVH-HT4XC-R2WYW-9Y3CM-X4V3Y | |
[Please Star this gist] |