This file contains hidden or 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
// env: an array of user-defined variables for substitution in configurations | |
// configurations: an array of configuration objects for IntelliSense engine | |
// version: tracks current version of c_cpp_properties.json file | |
{ | |
"env": { | |
"myDefaultIncludePath": [ | |
"${workspaceFolder}", | |
"${workspaceFolder}/include" | |
], | |
"myCompilerPath": "/usr/local/bin/gcc-7" |
This file contains hidden or 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
// https://learn.microsoft.com/en-us/azure/azure-functions/functions-host-json | |
{ | |
"version": "2.0", | |
// Specifies how many function invocations are aggregated when calculating metrics for Application Insights. | |
"aggregator": { | |
"batchSize": 1000, | |
"flushTimeout": "00:00:30" | |
}, | |
"concurrency": { | |
"dynamicConcurrencyEnabled": true, |
This file contains hidden or 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
{ | |
"author": "Ian Beck", | |
"comment": "Light, peaceful coding.", | |
"name": "Quiet Light for VSC", | |
"tokenColors": [ | |
{ | |
"name": "Comments", | |
"scope": [ | |
"comment", | |
"punctuation.definition.comment" |
This file contains hidden or 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
""" | |
19/04/2023: MacOS | |
- cmd+shift+y: select all selected occurence | |
- cmd+ctrl+o: outline | |
20/04/2023: Search Editor (MacOS) | |
- ctrl+f: open | |
- ctrl+0 or 9: focus Next or prev | |
- cmd+[ or ]: next or prev input box | |
- better split vertical and horizontal (> 2 editor tabs) | |
24/04/2023: diff editor (MacOS) |
This file contains hidden or 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
#!/bin/bash | |
########## Check for tmux and bash-completion installed | |
if [[ "$(uname)" == "Darwin" ]]; then | |
if ! command -v brew >/dev/null 2>&1; then | |
echo "Homebrew is not installed. Please install Homebrew and try again." | |
exit 1 | |
else | |
# Install tmux if not installed | |
if ! command -v tmux >/dev/null 2>&1; then |
Reference: Mermaid Docs
This file contains hidden or 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
Checks: 'clang-diagnostic-*,clang-analyzer-*,-modernize-*,-clang-diagnostic-#pragma-messages,-readability-identifier-naming,-clang-diagnostic-switch' | |
WarningsAsErrors: '*' | |
HeaderFilterRegex: '' | |
AnalyzeTemporaryDtors: false | |
FormatStyle: none | |
CheckOptions: | |
- key: cert-dcl16-c.NewSuffixes | |
value: 'L;LL;LU;LLU' | |
- key: cppcoreguidelines-non-private-member-variables-in-classes.IgnoreClassesWithAllMemberVariablesBeingPublic | |
value: '1' |