When you type a new method, VS aids you and you end up with this:
private void Foo()
{
}
// Longitud entre 6 - 24 caracteres | |
// Al Menos una letra mayúscula (A-Z) | |
// Al Menos una letra minúscula (a-z) | |
// Al Menos un número (0-9) | |
// Máximo 2 caracteres repetitivos | |
// Ejemplos: | |
// "aa" is OK 👍 | |
// "aaa" is NOT OK 👎 | |
// | |
// Caracteres especiales soportados: ! @ # $ % ^ & * ( ) + = _ - { } [ ] : ; ” ’ ? < > , . |
// source: https://superuser.com/a/1547727/1158937 | |
const otherEngines = document.querySelector("body > settings-ui") | |
.shadowRoot.querySelector("#main") | |
.shadowRoot.querySelector("settings-basic-page") | |
.shadowRoot.querySelector("#basicPage > settings-section.expanded > settings-search-page") | |
.shadowRoot.querySelector("#pages > settings-subpage > settings-search-engines-page") | |
.shadowRoot.querySelector("#otherEngines").shadowRoot | |
let n = otherEngines.querySelector('iron-list').childElementCount - 1; | |
let rmbtn = otherEngines.querySelector('#frb0') |
or checking out later
This comparison table is inspired by staticsitegenerators.net. Contribute at github — add the missing data. Github-related data (stars, open issues + PR, etc.) are updated daily automatically. Want different columns? Noted a bug? Submit an issue.
<?xml version="1.0" encoding="Windows-1252" ?> | |
<!-- | |
Style Name: Deep Black | |
Description: Based on the theme Port VibrantInk by tyler | |
File name: Deep Black.xml | |
Created by: Mariusz Kasperkiewicz | |
Personalized by: Santiago González | |
Featured language: SQL, C, C++, Pascal, Php, Css, JavaScript, Html, XML, others? | |
Note: Feel free to modify this style and re-release it. This style is available under the terms of the GNU Free License. |
You can use these on the inspector's console, or save them as bookmarks by turning them into a oneliner and writing javascript:
before the code.
document.body.innerHTML = "";
document.head.innerHTML = "";