https://medium.dave-bailey.com/how-to-hold-your-team-accountable-9fa57bfb315d
Dave Bailey
CEOコーチとして、このような発言を何度も耳にしたことがあります。
「副社長が力を発揮してくれない」
>「仕事をきちんとやってくれるとは思えない」
| env: | |
| browser: true | |
| node: true | |
| es6: true | |
| extends: | |
| - eslint:recommended | |
| - plugin:react/recommended | |
| - plugin:redux-saga/recommended | |
| - plugin:import/react | |
| - plugin:import/errors |
| env: | |
| browser: true | |
| node: true | |
| es6: true | |
| extends: | |
| - eslint:recommended | |
| - plugin:react/recommended | |
| - plugin:redux-saga/recommended | |
| - plugin:react-hooks/recommended | |
| - plugin:jsx-a11y/recommended |
| // create-react-appのconfigを書き換えるファイル(react-app-rewiredにより適用) | |
| const path = require('path'); | |
| const fs = require('fs'); | |
| const appDirectory = fs.realpathSync(process.cwd()); | |
| const resolveApp = relativePath => path.resolve(appDirectory, relativePath); | |
| const MiniCssExtractPlugin = require('mini-css-extract-plugin'); | |
| // エントリーポイントの定義 | |
| // プロパティ名がJS、CSSのファイル名になる。値には必ずindex.jsの相対パスを指定すること。 | |
| const entryList = { |
https://medium.dave-bailey.com/how-to-hold-your-team-accountable-9fa57bfb315d
Dave Bailey
CEOコーチとして、このような発言を何度も耳にしたことがあります。
「副社長が力を発揮してくれない」
>「仕事をきちんとやってくれるとは思えない」
| C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\MSBuild\Current\Bin\Microsoft.Common.CurrentVersion.targets | |
| Build | |
| BeforeBuild | |
| CoreBuild | |
| BuildOnlySetting | |
| PrepareForBuild | |
| PreBuildEvent | |
| Compile | |
| BeforeCompile |
| <?xml version="1.0" encoding="utf-8" ?> | |
| <nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" | |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| autoReload="true" | |
| throwExceptions="true" | |
| internalLogLevel="Error" | |
| internalLogFile=".\nlog-internal.log"> | |
| <extensions> | |
| <add assembly="NLog.Web.AspNetCore" /> | |
| <add assembly="NLog.AWS.Logger" /> |
| <?xml version="1.0" encoding="utf-8" ?> | |
| <nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" | |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| xsi:schemaLocation="http://www.nlog-project.org/schemas/NLog.xsd NLog.xsd" | |
| autoReload="true" | |
| throwExceptions="true" | |
| internalLogLevel="Error" internalLogFile=".\nlog-internal.log"> | |
| <targets> | |
| <target |
| function getQueryParams() { | |
| var params = {}; | |
| var pair = location.search.substring(1).split('&'); | |
| for(var i = 0; pair[i]; i++) { | |
| var kv = pair[i].split('='); | |
| params[kv[0]]=kv[1]; | |
| } | |
| return params; | |
| } |
| DateTime.Now.toString("yyyy/MM/dd") | |
| Enumerable.First(match1).Value() | |
| Enumerable.ElementAt(match1, 0).Value() |
| select * | |
| into OUT_TABLE | |
| from IN_TABLE | |
| where 0 = 1; | |
| SELECT IsNull(field, 0) FROM A; | |
| SELECT SUBSTRING(FirstName, 1, 1) FROM A; | |
| SELECT Len(field, 0) FROM A; |