Skip to content

Instantly share code, notes, and snippets.

View coderboy-raiyan's full-sized avatar
🖥️
Coding makes me happy

MD.Tajkier Haque Raiyan coderboy-raiyan

🖥️
Coding makes me happy
View GitHub Profile
vercel.json
{
"version": 2,
"builds": [
{
"src": "myweb/wsgi.py",
"use": "@vercel/python",
"config": { "maxLambdaSize": "15mb", "runtime": "python3.9" }
},
@coderboy-raiyan
coderboy-raiyan / XPSC contest 2023
Last active September 23, 2023 05:19
Contest 2023
https://www.hackerrank.com/contests/xpsc-club-preliminary-contest-a-batch-03/challenges
commands :
"C_Cpp.default.cppStandard": "c++20",
"C_Cpp.default.cStandard": "c11",
"c": "cd $dir && gcc $fileName -o $fileNameWithoutExt.exe && timeout 15s $dir$fileNameWithoutExt.exe <input.txt> output.txt || (echo -n > output.txt && echo 'Time limit is over')",
"cpp": "cd $dir && g++ $fileName -o $fileNameWithoutExt.exe && timeout 15s $dir$fileNameWithoutExt.exe <input.txt> output.txt || (echo -n > output.txt && echo 'Time limit is over')"