This setup includes:
- Setting up a project with Parcel and React
- Healthy codebase: linting and formatting with ESLint and Prettier
- Initialize Styled-Components
- Implement files
| import http | |
| import json | |
| def call_publicapi(table_name): | |
| """ | |
| purpose: | |
| This function does bla bla bla. | |
| params: reads 3 global parameters | |
| status, execution_log: for sttaus and loogging | |
| database name: for creating database | |
| response: |
| // .eslintrc | |
| { | |
| "env": { | |
| "browser": true, | |
| "es6": true, | |
| "node": true | |
| }, | |
| "extends": [ | |
| "react-app", | |
| "plugin:react/recommended", |
https://www.nerdfonts.com/font-downloads
The following solution thanks to @hackerzgz & @snacky101 will install all nerd fonts;
brew tap homebrew/cask-fonts
brew search '/font-.*-nerd-font/' | awk '{ print $1 }' | xargs -I{} brew install --cask {} || true[TOC]
| # Quick start for youtube-dl | |
| - https://github.com/ytdl-org/youtube-dl/ | |
| ## Default usage | |
| youtube-dl URL | |
| ## Download certain resolution | |
| youtube-dl -f "best[height<=480]" URL | |
| ## Download certain extension |
| RootsDev | |
| https://github.com/rootsdev/roots-search (Chrome Plug-in / JavaScript) | |
| https://github.com/rootsdev/familysearch-javascript-sdk | |
| https://github.com/rootsdev/gofamilysearch (Go FamilySearch SDK) | |
| https://github.com/rootsdev/polygenea (Java and D, Collaborative Research-centric Data Model) | |
| https://github.com/rootsdev/familysearch-reference-client (JavaScript/Angular, Tree Client for FamilySearch API) | |
| https://github.com/rootsdev/genealogy-search (Chrome Extension) | |
| https://github.com/rootsdev/people-inspector (Chrome Extension - historical-data.org microdata reader) |
| Based on **b_levitt** answer to http://stackoverflow.com/questions/16660900/webforms-unobtrusivevalidationmode-requires-a-scriptresourcemapping-for-jquery | |
| But avoiding hardcoding the jQuery version (doesn't play nice with nuget) by using some regex as explained by **Hao Kung** on http://stackoverflow.com/questions/12029161/version-wildcard-in-mvc4-bundle |