In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.
I hereby claim:
- I am crstnmac on github.
- I am crstnmac (https://keybase.io/crstnmac) on keybase.
- I have a public key ASAAFLFqdMvwGhrRDj7T9RtaA1gfmfbZusjpKAc0nVn0vgo
To claim this, I am signing this object:
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
{ | |
"workbench.iconTheme": "material-icon-theme", | |
"editor.fontLigatures": true, | |
"editor.formatOnSave": true, | |
"editor.formatOnType": true, | |
"editor.formatOnPaste": true, | |
"window.zoomLevel": 2, | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, |
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
alexcvzz.vscode-sqlite | |
Angular.ng-template | |
antfu.icons-carbon | |
bradlc.vscode-tailwindcss | |
ceciljacob.code-plus-theme | |
ChakrounAnas.turbo-console-log | |
christian-kohler.npm-intellisense | |
christian-kohler.path-intellisense | |
CodeSandbox-io.codesandbox-projects-theme | |
cyrilletuzi.angular-schematics |
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
CMAKE error log | |
Compiling the C compiler identification source file "CMakeCCompilerId.c" failed. | |
Compiler: cl | |
Build flags: | |
Id flags: | |
The output was: | |
The system cannot find the file specified |
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
Import-Module posh-git | |
Import-Module PSReadLine | |
oh-my-posh init pwsh --config "$env:POSH_THEMES_PATH/cris.omp.json" | Invoke-Expression | |
# This will enable the prediction source for IntelliSense | |
Set-PSReadLineOption -PredictionSource 'History' | |
# (Optional) Change the darker grey to a lighter grey to account for dark backgrounds | |
Set-PSReadLineOption -Colors @{ InlinePrediction = '#9CA3AF' } | |
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
{ | |
"$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json", | |
"blocks": [ | |
{ | |
"alignment": "left", | |
"segments": [ | |
{ | |
"background": "#003543", | |
"foreground": "#00c983", | |
"leading_diamond": "\ue0b6", |
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
"editor.fontLigatures": true, | |
"editor.formatOnSave": true, | |
"editor.formatOnType": true, | |
"editor.formatOnPaste": true, | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": true | |
}, | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, |
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
import React, { useState } from "react"; | |
export default function useReactHTMLTableToExcel() { | |
const [isLoading, setIsLoading] = useState(false); | |
function base64(s) { | |
return window.btoa(unescape(encodeURIComponent(s))); | |
} | |
function format(s, c) { |
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 | |
# macOS Fullstack Developer Setup Script | |
# This script sets up a macOS environment for fullstack development with zsh completions | |
# Enhanced with senior developer tooling and configurations | |
# Exit on error | |
set -e | |
echo "🚀 Starting macOS Fullstack Developer Setup..." |