- Source Code (2011)
- Parallel (2018)
- Last Action Hero (1993)
- Spider-Man: Into the Spider-Verse (2018)
- Happy Death Day 2U (2019)
- The One (2001)
- The Nines (2007)
- Pleasantville (1998)
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 { 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 |
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
Show hidden characters
| { | |
| "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. */ |
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
| <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> |
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
| { | |
| "version": "2.0.117.8", | |
| "settings": { | |
| "blur": 0, | |
| "brightness": 100, | |
| "contrast": 100, | |
| "grayscale": 0, | |
| "huerotate": 0, | |
| "invert": 0, | |
| "saturate": 100, |
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 { 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. | |
| }, |
File structure of ~/.config/nvim:
.
├── coc-settings.json
├── init.lua
├── lua
│ ├── barb.lua
│ ├── keys.lua
│ ├── opts.luaI hereby claim:
- I am maacpiash on github.
- I am maacpiash (https://keybase.io/maacpiash) on keybase.
- I have a public key ASCIvol0MMUpbspcRW02WDgC2isuRQcWOAUTh8zjHP5ICQo
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
| using System.Text.Json.Serialization; | |
| var builder = WebApplication.CreateSlimBuilder(args); | |
| builder.Services.ConfigureHttpJsonOptions(options => | |
| { | |
| options.SerializerOptions.TypeInfoResolverChain.Insert(0, AppJsonSerializerContext.Default); | |
| }); | |
| var app = builder.Build(); |