This is a sample gist.
サブタイトルがどうなるか。
| Understand the Task: Grasp the main objective, goals, requirements, constraints, and expected output. | |
| - Minimal Changes: If an existing prompt is provided, improve it only if it's simple. For complex prompts, enhance clarity and add missing elements without altering the original structure. | |
| - Reasoning Before Conclusions: Encourage reasoning steps before any conclusions are reached. ATTENTION! If the user provides examples where the reasoning happens afterward, REVERSE the order! NEVER START EXAMPLES WITH CONCLUSIONS! | |
| - Reasoning Order: Call out reasoning portions of the prompt and conclusion parts (specific fields by name). For each, determine the ORDER in which this is done, and whether it needs to be reversed. | |
| - Conclusion, classifications, or results should ALWAYS appear last. | |
| - Examples: Include high-quality examples if helpful, using placeholders [in brackets] for complex elements. | |
| - What kinds of examples may need to be included, how many, and whether they are complex enough to benefit from p |
| これはサンプルです。 |
| baseURL = 'https://user_account.github.io/nikki2022/' | |
| languageCode = 'ja-JP' | |
| title = 'わたしのサイト' | |
| theme = "ananke" | |
| canonifyurls = true | |
| publishDir = "docs" | |
| SectionPagesMenu = "main" | |
| resourceDir = "../resources" | |
| Paginate = 9 # this is set low for demonstrating with dummy content. Set to a higher number | |
| googleAnalytics = "" |
| <?php | |
| /** | |
| * Enable unfiltered_html capability for Editors. | |
| * | |
| * @param array $caps The user's capabilities. | |
| * @param string $cap Capability name. | |
| * @param int $user_id The user ID. | |
| * @return array $caps The user's capabilities, with 'unfiltered_html' potentially added. | |
| */ |
$ sudo npm install -g hexo-cli
$ hexo -v
hexo-cli: 0.1.9
| # NOTE: This builds on data prep from here: https://gist.github.com/keberwein/a61651d1de90476d5fb28dc08bbbc617 | |
| # and shape file prep from here: https://gist.github.com/keberwein/815cca98e7d99fc360ab27faa651e5cc | |
| library(dplyr) | |
| library(leaflet) | |
| library(scales) | |
| library(RColorBrewer) | |
| #Format popup data for leaflet map. | |
| popup_dat <- paste0("<strong>County: </strong>", | |
| county_dat$county_name, |
| library(sp) | |
| library(ggplot2) | |
| library(rgeos) | |
| library(rgdal) | |
| library(maptools) | |
| ### Begin data prep | |
| # Grab air/water quality data from the EPA | |
| url = "https://data.cdc.gov/api/views/cjae-szjv/rows.csv?accessType=DOWNLOAD" | |
| dat <- read.csv(url, stringsAsFactors = FALSE) | |
| # Colnames tolower |