Skip to content
View danielkhendricks's full-sized avatar

Block or report danielkhendricks

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this userโ€™s behavior. Learn more about reporting abuse.

Report abuse
danielkhendricks/README.md

Daniel Hendricks - Software Engineer and Adventurer

Hey there! ๐Ÿ‘‹ I'm Daniel - a software engineer who loves to code, laugh, and explore the great outdoors.

type Hobby = "Flying planes" | "Kite surfing" | "Surfing" | "Fishing" | "Driving boats" | "Camping" | "Hiking";

const hobbies: Hobby[] = [
  "Flying planes",
  "Kite surfing",
  "Surfing",
  "Fishing",
  "Driving boats",
  "Camping",
  "Hiking"
];

function getCurrentHobby(hobbies: Hobby[]): Hobby {
  const randomIndex: number = Math.floor(Math.random() * hobbies.length);
  return hobbies[randomIndex];
}

const currentHobby: Hobby = getCurrentHobby(hobbies);

console.log(`Current hobby: ${currentHobby}`);
  • ๐Ÿ”ญ Iโ€™m currently working on: Eonic.ai, a no-code AI project using tensorflow as the main ML framework for technical and non technical people, creating various models in the browsers that can be exported or used in context of solving workflow automations, all without writing a single line of code.
  • ๐ŸŒฑ Iโ€™m currently learning: more about machine learning and AI technologies.
  • ๐Ÿ‘ฏ Iโ€™m looking to collaborate on: open source projects related to web development or machine learning.
  • ๐Ÿค” Iโ€™m looking for help with: improving my skills in machine learning.
  • ๐Ÿ’ฌ Ask me about: my experience working as a full-stack developer and my passion for integrating innovative technologies into software development, everything from ideation to final realease of a product.
  • ๐Ÿ“ซ How to reach me: Feel free to connect with me on LinkedIn at https://www.linkedin.com/in/daniel-hendricks
  • ๐Ÿ˜„ Pronouns: he/him
  • โšก Fun fact: Did you hear the one about mathematical models being able to process more information than our brains? Looks like Chris Rock may have to step aside and let the machines take over the comedy scene too.

Popular repositories Loading

  1. danielkhendricks danielkhendricks Public

  2. CmdGPT CmdGPT Public

    Forked from aleksanderhan/CmdGPT

    python program that uses chatgpt to perform various tasks

    Python

  3. visual-chatgpt visual-chatgpt Public

    Forked from chenfei-wu/TaskMatrix

    Official repo for the paper: Visual ChatGPT: Talking, Drawing and Editing with Visual Foundation Models

    Python

  4. Prompt-Engineering-Guide Prompt-Engineering-Guide Public

    Forked from dair-ai/Prompt-Engineering-Guide

    ๐Ÿ™ Guides, papers, lecture, notebooks and resources for prompt engineering

    Jupyter Notebook

  5. gpt4all gpt4all Public

    Forked from nomic-ai/gpt4all

    gpt4all: a chatbot trained on a massive collection of clean assistant data including code, stories and dialogue

    Python

  6. llama-cpu llama-cpu Public

    Forked from markasoftware/llama-cpu

    Fork of Facebooks LLaMa model to run on CPU

    Python