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 |