Skip to content

Instantly share code, notes, and snippets.

View anphxyz's full-sized avatar
🎯
Focusing

Anph anphxyz

🎯
Focusing
View GitHub Profile
@anphxyz
anphxyz / meta-tags.md
Created September 18, 2019 08:41 — forked from lancejpollard/meta-tags.md
Complete List of HTML Meta Tags

Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/

Basic HTML Meta Tags

<meta name="keywords" content="your, tags"/>
<meta name="description" content="150 words"/>
<meta name="subject" content="your website's subject">
<meta name="copyright"content="company name">
<meta name="language" content="ES">
@anphxyz
anphxyz / detect-private-browsing.js
Created June 4, 2016 10:07 — forked from cou929/detect-private-browsing.js
Detect private browsing mode (InPrivate Browsing or Incognito).
function retry(isDone, next) {
var current_trial = 0, max_retry = 50, interval = 10, is_timeout = false;
var id = window.setInterval(
function() {
if (isDone()) {
window.clearInterval(id);
next(is_timeout);
}
if (current_trial++ > max_retry) {
window.clearInterval(id);