Skip to content

Commit

Permalink
update links
Browse files Browse the repository at this point in the history
  • Loading branch information
Ridermansb committed Aug 20, 2024
1 parent bb8518c commit 8126704
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 17 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
[![wakatime](https://wakatime.com/badge/user/de65bb6a-656d-4719-97a5-9ed3c5797ec7.svg)](https://wakatime.com/@de65bb6a-656d-4719-97a5-9ed3c5797ec7)

<h2>It's me, @ridermansb!</h2>
<p><em>Software Enginner at <a href="https://securityscorecard.com/">Security Scorecard</a></br>
<p><em>Staff Software Enginner</br>
</em></p>

<a
Expand Down
31 changes: 15 additions & 16 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,16 @@ const questions = [
value: () => {
open("mailto:ridermansb@gmail.com");
console.log("\nDone, see you soon.\n");
}
},
},
{
name: "Just quit.",
value: () => {
console.log("Ok, bye.\n");
}
}
]
}
},
},
],
},
];

const data = {
Expand All @@ -46,7 +46,7 @@ const data = {
npm: chalk.gray("https://npmjs.com/") + chalk.red("~ridermansb"),
github: chalk.gray("https://github.com/") + chalk.green("ridermansb"),
linkedin: chalk.gray("https://linkedin.com/in/") + chalk.blue("ridermansb"),
web: chalk.cyan("https://about.me/ridermansb"),
web: chalk.cyan("https://ridermansb.dev/"),
npx: chalk.red("npx") + " " + chalk.white("ridermansb"),
wakatime: chalk.gray("https://wakatime.com/") + chalk.black("@ridermansb"),

Expand All @@ -58,7 +58,7 @@ const data = {
labelLinkedIn: chalk.white.bold(" LinkedIn:"),
labelWeb: chalk.white.bold(" Web:"),
labelCard: chalk.white.bold(" Card:"),
labelWakatime: chalk.white.bold(" Wakatime:")
labelWakatime: chalk.white.bold(" Wakatime:"),
};

const me = boxen(
Expand All @@ -79,25 +79,24 @@ const me = boxen(
`${chalk.italic(
"I'm curious, enthusiastic and student most of the time."
)}`,
`${chalk.italic("The rest of the time I write code that others can read.")}`
`${chalk.italic(
"The rest of the time I write code that others can read."
)}`,
].join("\n"),
{
margin: 1,
float: 'center',
float: "center",
padding: 1,
borderStyle: "single",
borderColor: "green"
borderColor: "green",
}
);

console.log(me);
const tip = [
`Tip: Try ${chalk.cyanBright.bold(
"cmd/ctrl + click"
)} on the links above`,
'',
`Tip: Try ${chalk.cyanBright.bold("cmd/ctrl + click")} on the links above`,
"",
].join("\n");
console.log(tip);


prompt(questions).then(answer => answer.action());
prompt(questions).then((answer) => answer.action());

0 comments on commit 8126704

Please sign in to comment.