class Bio {
constructor() {
this.aboutMe = {
name: "Bishwa Jung Shah",
description: "Self-taught Fullstack Developer, Student at Yeti International College",
status: "Living my best life, learning Node.js, Vue.js , Nuxt , Optimization",
goalsFor2024: ["Nest", "HackerRank problem solver ", "Analytical skills"]
};
this.workExperience = [
{
role: "Intern",
company: "Mediaholic",
duration: "5 months",
responsibilities: "Worked on Vue.js projects and contributed to front-end development."
},
{
role: "Junior Developer",
company: "Hyteno/Morgenland",
duration: "8 months",
responsibilities: "Developed web applications, improved coding skills, and worked with Vue.js."
},
{
role: "Fullstack Developer",
company: "Detech",
duration: "Current",
responsibilities: "Currently working as a Fullstack Developer, focusing on modern web technologies."
}
];
this.tools = {
frameworks: ["Nuxt", "Vue", "React", "Svelte"],
languages: ["HTML", "CSS", "Bash", "Markdown"],
databases: ["MongoDB", "Postgres"],
platforms: ["GNU/Linux", "Windows"],
otherTools: ["Git", "Figma", "Nginx", "SCSS", "TypeScript"]
};
this.randomStuff = {
funFact: "More people are killed annually by donkeys than airplane crashes.",
advice: "Do not compare yourself with others."
};
this.socialLinks = {
instagram: "https://instagram.com/shah.bishwa77",
linkedin: "https://linkedin.com/in/bishwa777",
facebook: "https://facebook.com/profile.php?id=100089079516208",
medium: "https://medium.com/@shahbishwa21",
portfolio: "https://bishwa-shah.netlify.app/"
};
}
display() {
console.log(this);
}
}
const bio = new Bio();
bio.display();
Code Cycle
Lexical scope refers to how variable scope is determined by the structure of the code. A variable’s scope is defined by where it is declared, and it is accessible within that scope and any nested scopes 👉🏽 Read more |
|
Automating commits might seem quirky, but it’s actually pretty useful! It keeps your GitHub repo active, lets you test GitHub Actions, and adds a bit of fun. While some might say it’s cheating, I just think it’s a clever way to keep my GitHub updated — even if I’m not around (Into this world 😆). 👉🏽 Read more |
|
JavaScript is introducing a new operator, ?=, called the Safe Assignment Operator. This operator is designed to simplify error handling in your code, making it easier and more readable, especially when dealing with functions that might fail or throw errors. 👉🏽 Read more |
Tailwind CSS is a utility-first CSS framework that promotes a different approach to styling compared to traditional CSS methodologies. Instead of defining styles in a separate CSS file or in your style sheets... 👉🏽 Read more |
|
Did you know how destructure works in arrays behind in JavaScript? This feature is quite powerful and can simplify how you access and work with array elements. Let’s dive into how it works. 👉🏽 Read more |
|
SCSS (Sassy CSS) is a powerful extension of CSS that adds features like variables, nesting, and mixins, making your stylesheets more maintainable and modular. In this blog post .. 👉🏽 Read more |