Skip to content
View sedfarouk's full-sized avatar
๐Ÿ˜‚
Live Laugh Love
๐Ÿ˜‚
Live Laugh Love

Block or report sedfarouk

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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
sedfarouk/README.md

๐Ÿš€ Hey there! I'm Farouk

Typing SVG

๐ŸŽ“ Computer Engineering @ University of Ghana | '26

Portfolio LeetCode Email

Profile Views


๐ŸŽฏ About Me

interface Developer {
  name: string;
  location: string;
  education: string;
  passions: string[];
  currentFocus: string[];
  superpower: string;
}

const farouk: Developer = {
  name: "Farouk Sedick",
  location: "Accra, Ghana ๐Ÿ‡ฌ๐Ÿ‡ญ",
  education: "Computer Engineering @ UG",
  passions: ["Web3 Innovation", "Full-Stack Development", "Problem Solving"],
  currentFocus: ["DeFi Protocols", "Smart Contract Architecture", "Scalable dApps"],
  superpower: "Turning coffee into code and blockchain dreams into reality โ˜•โ†’๐Ÿ’ป"
};

๐ŸŒŸ Mission: Building the decentralized future while debugging the present!

I'm a passionate full-stack developer and Web3 architect who thrives at the intersection of traditional software engineering and cutting-edge blockchain technology. When I'm not crafting smart contracts or optimizing React applications, you'll find me conquering algorithmic challenges or analyzing Barcelona's latest tactical masterpiece! โšฝ

๐ŸŽฎ Fun Fact: I approach debugging like playing chess - always thinking three moves ahead, and yes, I've watched Game of Thrones enough times to quote Tyrion Lannister during code reviews! ๐Ÿ‰


๐Ÿ› ๏ธ Tech Stack & Arsenal

๐ŸŽจ Frontend & Mobile Development

React
React
Next.js
Next.js
JavaScript
JavaScript
TypeScript
TypeScript
HTML5
HTML5
CSS3
CSS3
Flutter
Flutter
Dart
Dart
Tailwind
Tailwind CSS
Bootstrap
Bootstrap
Axios
Axios
TanStack Query
TanStack Query

โš™๏ธ Backend & Database

C#
C#
.NET
.NET Core
EF Core
EF Core
Python
Python
C++
C++
Java
Java
MySQL
MySQL
SQLite
SQLite
PostgreSQL
PostgreSQL
SQL Server
SQL Server
AutoMapper
AutoMapper
xUnit
xUnit

๐ŸŒ Web3 & Blockchain

Solidity
Solidity
Hardhat
Hardhat
Scaffold-ETH
Scaffold-ETH
Ethereum
Ethereum
OpenZeppelin
OpenZeppelin
Web3.js
Web3.js
Wagmi
Wagmi
Viem
Viem
RainbowKit
RainbowKit
MetaMask
MetaMask
Mocha
Mocha
Chai
Chai

๐Ÿ”ง Development Tools & Utilities

Git
Git
GitHub
GitHub
VS Code
VS Code
Visual Studio
Visual Studio
Postman
Postman
npm
npm
Yarn
Yarn
Webpack
Webpack
Vite
Vite
Docker
Docker
Figma
Figma
Notion
Notion
Jest
Jest
ESLint
ESLint
Prettier
Prettier
Vercel
Vercel
Netlify
Netlify
Firebase
Firebase

๐Ÿ“ˆ GitHub Analytics

GitHub Stats GitHub Streak
Top Languages

๐Ÿ“Š Activity Graph

GitHub Activity Graph


๐ŸŽฎ Beyond the Code

๐Ÿงฉ Competitive Programming โšฝ Football Fanatic ๐ŸŽฌ Entertainment
Grinding LeetCode daily FC Barcelona till I die! Game of Thrones enthusiast
Algorithm optimization wizard Tactical analysis geek "Winter is coming... to my GitHub!"
Problem-solving addict Messi is the GOAT ๐Ÿ Currently: House of the Dragon

๐Ÿš€ Current Missions

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;

contract FaroukGoals2024 {
    mapping(string => bool) public achievements;
    
    constructor() {
        achievements["Master DeFi Protocols"] = false;
        achievements["Build Production dApp"] = false;
        achievements["Contribute to Open Source"] = false;
        achievements["Graduate with Honors"] = false;
        achievements["Land Dream Job"] = false;
    }
    
    function updateAchievement(string memory goal) external {
        achievements[goal] = true;
        emit GoalCompleted(goal, block.timestamp);
    }
    
    event GoalCompleted(string goal, uint256 timestamp);
}

๐Ÿค Let's Build Something Epic!

๐Ÿ”ฅ Always excited to collaborate on:

  • Revolutionary Web3 applications
  • Clean, scalable full-stack solutions
  • Open source contributions
  • Barcelona vs Real Madrid debates (kidding... or am I? ๐Ÿ˜‰)

Let's connect and build the future together! ๐ŸŒŸ

๐Ÿ“ง Reach out for collaborations, opportunities, or just to chat about tech!

"The best way to predict the future is to build it... preferably with clean code and proper gas optimization!" โšก


โญ If you find my work interesting, consider starring some repositories!

Pinned Loading

  1. Competitive_Programming Competitive_Programming Public

    Worked solutions of problems on Hackerrank, LeetCode, Codeforces, etc.

    Python 1

  2. DixLang DixLang Public

    Building an interpreted language with another interpreted language ๐Ÿคก Might be your next fav language ๐Ÿ’ƒ

    Python

  3. OpenSci-Connect OpenSci-Connect Public

    A web app built during the NASA Space Apps Challenge to help connect users' projects with collaborators with the necessary skills

    Python 1

  4. TOP TOP Public

    Solved Challenges and Completed Projects in The Odin's Project (TOP)

    HTML 1

  5. Hack-A-Ton Hack-A-Ton Public

    Forked from bryanmax9/Hack-A-Ton

    ๐Ÿง‘โ€๐Ÿ’ป๐Ÿ’ป๐Ÿ”Ž A Web app to learn cybersecurity through open source resources

    JavaScript

  6. sedixscope.web sedixscope.web Public

    A web app built to display my dev blogs and personal portfolio. Provides social-media-like features such as likes, comments and authentication.

    C#