Skip to content

Instantly share code, notes, and snippets.

View thoth-ky's full-sized avatar
👨‍💻
Code.Eat.Watch

Mutuku Kyalo thoth-ky

👨‍💻
Code.Eat.Watch
View GitHub Profile
@thoth-ky
thoth-ky / JosephKyalo.md
Last active April 20, 2020 14:15
Joseph Kyalo Resume

JOSEPH MUTUKU KYALO

Software Developer (2 Years)

I am a passionate technophile and full-stack software engineer. I have a background in Electrical & Telecommunication Engineering. Over the last 2 years, I have been working professionally as a Software Engineer in remote teams building world-class products. I do not shy away from a challenge and I am always willing to seek help from my team. Beyond web development, I am always looking for ways I can use emerging technologies such as AI to make the product better. Outside work, I love music and when not listening to music I am either reading a book or enjoying a friendly game of chess.

CONTACTS

@thoth-ky
thoth-ky / App.js
Created April 29, 2020 06:25
React Table Component
import React, {useState } from 'react';
import './App.css';
const initialStuff =[[1,"a","b"], [2,"c","d"], [3,"e","f"]]
function App() {
const [stuff, setStuff] = useState(initialStuff)
const updateStuff = () => {