All notable changes to this project will be documented in this file.
The format is inspired by Keep a Changelog 1.0.0.
The versions follow the rules of Semantic Versioning 2.0.0.
| # | |
| # Automatically generated file; DO NOT EDIT. | |
| # ImmortalWrt Configuration | |
| # | |
| CONFIG_MODULES=y | |
| CONFIG_HAVE_DOT_CONFIG=y | |
| CONFIG_HOST_OS_LINUX=y | |
| # CONFIG_HOST_OS_MACOS is not set | |
| # CONFIG_TARGET_airoha is not set | |
| # CONFIG_TARGET_d1 is not set |
All notable changes to this project will be documented in this file.
The format is inspired by Keep a Changelog 1.0.0.
The versions follow the rules of Semantic Versioning 2.0.0.
| #!/usr/bin/env bash | |
| set -o errexit | |
| set -o nounset | |
| set -o pipefail | |
| shopt -s inherit_errexit | |
| [[ -n "${VERBOSE:-}" ]] && set -o verbose | |
| [[ -n "${DEBUG:-}" ]] && IS_DEBUG=true || IS_DEBUG=false | |
| foo() { |
| #!/usr/bin/env bash | |
| set -o errexit | |
| set -o nounset | |
| set -o pipefail | |
| shopt -s inherit_errexit | |
| declare -a k | |
| echo "IFS=$IFS" |
| #!/usr/bin/env bash | |
| set -o errexit | |
| set -o nounset | |
| f() { | |
| echo -n hello | |
| INVALID_COMMAND | |
| echo -n world | |
| } |
| const _ = require('lodash'); | |
| const hasLength = { | |
| length: 4, | |
| a: 1, | |
| b: 2, | |
| }; | |
| const normal = { | |
| a: 1, |
| var vm = require('vm'); | |
| function printError(e) { | |
| // console.log(e instanceof Error, e, e.stack); | |
| console.log(e instanceof Error); | |
| } | |
| console.log('====== Example 1 ======'); | |
| try { |
| [user] | |
| name = ADoyle | |
| email = [email protected] | |
| [color] | |
| ui = true | |
| [core] | |
| editor = nvim | |
| excludesfile = ~/.gitignore | |
| autocrlf = input | |
| safecrlf = true |
| var http = require('http'); | |
| var targetUrl = 'https://www.douban.com/'; | |
| var body = '<html>' | |
| + '<head></head>' | |
| + '<body>' | |
| + '<form action="' + targetUrl + '" method="POST">' | |
| + '<input type="text" name="hello" value="world"/>' | |
| + '</form>' |
| The licenses in the npm-registry from their package.json, from the latest version of each module | |
| 23.11.2013 | |
| [ { key: 'undefined', value: 27785 }, | |
| { key: 'MIT', value: 20811 }, | |
| { key: 'BSD', value: 5240 }, | |
| { key: 'BSD-2-Clause', value: 621 }, | |
| { key: 'Apache 2.0', value: 263 }, | |
| { key: 'GPL', value: 233 }, |