http://www.sitemaps.org/schemas/sitemap/0.9" http://www.google.com/schemas/sitemap-news/0.9" http://www.w3.org/1999/xhtml" http://www.google.com/schemas/sitemap-mobile/1.0" http://www.google.com/schemas/sitemap-image/1.1" http://www.google.com/schemas/sitemap-video/1.1"> https://bgoonz-blog.netlify.app/ https://bgoonz-blog.netlify.app/admin https://bgoonz-blog.netlify.app/blog https://bgoonz-blog.netlify.app/docs
export default function toCamelCase(string: string) { | |
const result = string | |
.toLowerCase() | |
.trim() | |
.split(/[ -_]/g) | |
.map(word => word.replace(word[0], word[0].toString().toUpperCase())) | |
.join(''); | |
return result.replace(result[0], result[0].toLowerCase()); | |
} |
# Moving all files in a directory to a subdirectory with the same name as the file. | |
#!/usr/bin/env python3 | |
import shutil | |
import os | |
import sys | |
dr = sys.argv[1] | |
for root, dirs, files in os.walk('./'): | |
for f in files: |
title: Accessibility in React weight: 0 excerpt: At this point, we have accomplished all of the features we set out to implement. A user can add a new task, check and uncheck tasks, delete tasks, or edit task names. And they can filter their task list by all, active, or completed tasks. seo: title: 'Accessibility in React' description: 'At this point, we have accomplished all of the features we set out to implement. A user can add a new task, check and uncheck tasks, delete tasks, or edit task names. And they can filter their task list by all, active, or completed tasks.' robots: [] extra: [] template: docs
title: Learn Accessibility weight: 0 excerpt: Learn Accessibility seo: title: '' description: '' robots: [] extra: [] type: stackbit_page_meta
Request
cross-origin referrer
stripped out and navigate
mode converted to same-origin
when constructor created from existing Request
object.
init.referrer
parameter
navigate
mode
- Guest post the article to as many sites as possible
- Create an infographics and share it with relevant bloggers
- Create diverse and unnatural links
- Distribute links in comment sections of websites
A Pen by Bryan C Guner on CodePen.