Skip to content

Instantly share code, notes, and snippets.

@iegik
Last active November 4, 2025 09:16
Show Gist options
  • Select an option

  • Save iegik/76c49cc98fcc526fcaf0051c758be556 to your computer and use it in GitHub Desktop.

Select an option

Save iegik/76c49cc98fcc526fcaf0051c758be556 to your computer and use it in GitHub Desktop.
console.table(new hire({
"name": "Arthur Janson",
"role": "Software Developer",
"skills": ["js", "html", "css", "json", "php", "sql"],
"url": "https:\/\/linkedin.com\/in\/iegik"
}));
function hire ($ = {}) {
setTimeout(() => hire.d.invite(), 300);
if (hire.d) return hire.d;
Object.assign(hire.d = this, $, { invite(){
location.href = hire.d.url } });
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment