Pandoc is open-source software used to transform various filetypes such as .md
into more user-friendly filetypes including .pdf
, .docx
, and .html
.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[wsl2] | |
# An absolute Windows path to a custom Linux kernel. | |
# kernel=The Microsoft built kernel provided inbox (default) | |
# How much memory to assign to the WSL 2 VM, this can be set as whole numbers using GB or MB. Default is 50% of total memory on Windows or 8GB, whichever is less; formerly 80% of total memory on Windows. | |
memory=5700MB | |
# How many logical processors to assign to the WSL 2 VM. | |
# processors=The same number of logical processors on Windows (default) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bulbasaur | |
ivysaur | |
venusaur | |
charmander | |
charmeleon | |
charizard | |
squirtle | |
wartortle | |
blastoise | |
caterpie |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// @ts-nocheck | |
import axios from 'axios' | |
import React, { useReducer, useState } from 'react' | |
const formReducer = (state, event) => { | |
if (event.reset) { | |
return { | |
name: '', | |
email: '', | |
tel: '', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
// Controls whether bracket pair colorization is enabled or not. Use 'workbench.colorCustomizations' to override the bracket highlight colors. | |
"editor.bracketPairColorization.enabled": true, | |
// Controls whether the editor should render indent guides. | |
"editor.guides.indentation": true, | |
// Controls whether bracket pair guides are enabled or not. | |
// - true: Enables bracket pair guides. | |
// - active: Enables bracket pair guides only for the active bracket pair. | |
// - false: Disables bracket pair guides. | |
"editor.guides.bracketPairs": "active", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// sample use case: scroll to a React component by using a reference. | |
import React, { forwardRef, useRef } from 'react' | |
// @ts-ignore | |
const Article = forwardRef(function Article({ onClick }, ref) { | |
return ( | |
<article ref={ref}> | |
<h1>A React article for Latin readers</h1> | |
// Rest of the article's content... | |
<button onClick={onClick}>Back to the top</button> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// If true, any subfolders containing a .git file will be ignored when searching. | |
"todo-tree.filtering.ignoreGitSubmodules": true, | |
// Add VSCode's `files.exclude` and/or `search.exclude` list to the ignored paths. | |
// - none: Don't used any built in excludes | |
// - file excludes: Use the Files:Exclude setting | |
// - search excludes: Use the Search:Exclude setting | |
// - file and search excludes: Use the Files:Exclude and the Search:Exclude setting | |
"todo-tree.filtering.useBuiltInExcludes": "file and search excludes", | |
// Set to true to enable automatic updates when files in the workspace are created, changed or deleted. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": 1, | |
"keyboard": { | |
"bounds": { | |
"max": { | |
"x": 3, | |
"y": 1 | |
}, | |
"min": { | |
"x": 0, |
NewerOlder