afif
Version:
Get to know me through npm
33 lines (23 loc) ⢠1.01 kB
JavaScript
const chalk = require('chalk')
const logSymbols = require('./logSymbols')
const init = require("./utils/init")
const log = console.log;
const github = chalk.hex(`6cc644`).bold
const website = chalk.hex(`dd5143`).bold;
const linkedin = chalk.hex(`0077b5`).bold;
const dim = chalk.dim;
(() => {
init()
log(`
${dim("I'm a computer science student at Pes University, Bangalore")}
š ${dim("currently working on a social media application using aws serverless architecture and reactjs")}
š± ${dim("currently learning devops and serverless")}
šÆ ${dim("looking to collaborate on some webddev projects")}
š„
${dim("2021 goals: learn android app development brushup DSA skills and read books")}
${github.inverse(" Github ")} ${dim(" https://github.com/afif1400")}
${website.inverse(" Website ")} ${dim(" https://afifahmed.me")}
${linkedin.inverse(" Linkedin ")} ${dim("https://linkedin.com/afif-ahmed")}
`)
// ${logSymbols.success} ${dim("I'm a full stack developer")}
})();