File structure of ~/.config/nvim:
.
├── coc-settings.json
├── init.lua
├── lua
│ ├── barb.lua
│ ├── keys.lua
│ ├── opts.luaFile structure of ~/.config/nvim:
.
├── coc-settings.json
├── init.lua
├── lua
│ ├── barb.lua
│ ├── keys.lua
│ ├── opts.lua| import { useEffect, useState } from 'react' | |
| export default function App() { | |
| const [title, setTitle] = useState({ | |
| firstTitle: 'Java', | |
| secondTitle: 'Script', | |
| renderCount: { | |
| value: 0, // this will increase by 1 every time the button is clicked | |
| comment: 'The count value preserves the count of the clicks.' // a constant. no change ever. | |
| }, |
| { | |
| "version": "2.0.117.8", | |
| "settings": { | |
| "blur": 0, | |
| "brightness": 100, | |
| "contrast": 100, | |
| "grayscale": 0, | |
| "huerotate": 0, | |
| "invert": 0, | |
| "saturate": 100, |
| <p>I am looking forward to hearing from you.</p> | |
| <table cellpadding="0" cellspacing="0"> | |
| <tbody> | |
| <tr> | |
| <td colspan="2"> | |
| <div style="padding-bottom: 15px"> | |
| <div>Mohammad Abdul <strong>Ahad</strong> Chowdhury</div> | |
| <div>Graduate student of data science, Macquarie University</div> | |
| <div>Software Engineer, Apollo International</div> |
| { | |
| "compilerOptions": { | |
| /* Visit https://aka.ms/tsconfig.json to read more about this file */ | |
| /* Basic Options */ | |
| "target": "es5", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', or 'ESNEXT'. */ | |
| "module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */ | |
| "allowJs": false, /* Allow javascript files to be compiled. */ | |
| // "jsx": "preserve", /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */ | |
| "outDir": "./out", /* Redirect output structure to the directory. */ |
| import { readdirSync, renameSync } from 'fs' | |
| const dirName = process.argv[2] ?? './' | |
| // if the path to the folders is not to be specified, | |
| // the script should be run from inside the folder. | |
| readdirSync(dirName, { withFileTypes: true }) | |
| .filter(dir => dir.isDirectory()) | |
| .map(dir => { | |
| const oldName = dir.name |
- import LeftIcon from 'material-ui/svg-icons/hardware/keyboard-arrow-left';
- import RightIcon from 'material-ui/svg-icons/hardware/keyboard-arrow-right';
+ import { KeyboardArrowLeftIcon, KeyboardArrowRightIcon } from '@material-ui/icons/Keyboard';| using System; | |
| namespace DelegateMath | |
| { | |
| class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| PrintResult(Multiply, 5, 12); | |
| } |
| #!/usr/bin/env bash | |
| SCM_THEME_PROMPT_DIRTY=" ${red}✗" | |
| SCM_THEME_PROMPT_CLEAN=" ${bold_green}✓" | |
| SCM_THEME_PROMPT_PREFIX=" |" | |
| SCM_THEME_PROMPT_SUFFIX="${green}|" | |
| GIT_THEME_PROMPT_DIRTY=" ${red}✗" | |
| GIT_THEME_PROMPT_CLEAN=" ${bold_green}✓" | |
| GIT_THEME_PROMPT_PREFIX=" ${green}|" | |
| GIT_THEME_PROMPT_SUFFIX="${green}|" |