Meet The Bunnies

function meetTheBunnyTeam() {

const bunnies = ["Mushu", "Meeshu", "MoonMoon"];

for (const name of bunnies) {

if (name === "MoonMoon") {

console.log(

`I hope you are frolicking all over a plush green field and eating carrots to your heart's content. Rest in peace to my first love, ${name}.`

);

} else if (name === "Mushu") {

console.log(

`${name} is stealing everyone's carrots. Quick, hide them!`

);

} else {

console.log(

`${name} is suspiciously quiet today. Let's go find her!`

);

}

}

return `Farhana's Angels: ${bunnies.join(" * ")}`;

}

Farhana's Bunnies

Welcome to my page!

Hi, I’m Farhana — a Full-Stack Software Engineer who thrives at the intersection of creativity and code. I have a deep love for SaaS development and enjoy building platforms that are not only scalable and efficient but actually make people’s lives easier. When I’m not writing code, I’m being outwitted by my two bunnies. I believe the best tech connects people, solves problems, and leaves room for curiosity. If you’re into a little creative chaos — we’ll get along just fine.

Contact Me

function callMeBeepMeIfYouWantToReachMe() {

const contactMethods = [

{

Phone: "929-365-8413",

Email: "farhana.hossainse@gmail.com",

LinkedIn: "linkedin.com/in/hfarhana/",

},

];

const roleTypes = [

"Recruiter/HR Manager/Companies",

"Fellow Software Engineer",

];

return contactMethods

.map((method) => {

return roleTypes.map((role) => {

switch (role) {

case "Recruiter/HR Manager/Companies":

return `Recruiter/HR Manager/Companies: If you are looking to hire or inquire about my services, please contact me via Email: ${method.Email}, Phone: ${method.Phone}, or LinkedIn: ${method.LinkedIn}`;

case "Fellow Software Engineer":

return `Software Engineer: If you are looking to network, pair-program with, or wanted to say "Hi", please contact me via Email: ${method.Email} or LinkedIn: ${method.LinkedIn}`;

default:

return `General Inquires: Please send me an email with your inquiry at ${method.Email}.`;

}

});

})

.flat();

}