├── .github └── workflows │ └── snake.yml ├── README.md ├── assets ├── docs ├── github-snake.svg └── language.jpg /.github/workflows/snake.yml: -------------------------------------------------------------------------------- 1 | - uses: Platane/snk@v3 2 | with: 3 | # github user name to read the contribution graph from (**required**) 4 | # using action context var `github.repository_owner` or specified user 5 | github_user_name: ${{ github.repository_owner }} 6 | 7 | # list of files to generate. 8 | # one file per line. Each output can be customized with options as query string. 9 | # 10 | # supported options: 11 | # - palette: A preset of color, one of [github, github-dark, github-light] 12 | # - color_snake: Color of the snake 13 | # - color_dots: Coma separated list of dots color. 14 | # The first one is 0 contribution, then it goes from the low contribution to the highest. 15 | # Exactly 5 colors are expected. 16 | outputs: | 17 | dist/github-snake.svg 18 | dist/github-snake-dark.svg?palette=github-dark 19 | dist/ocean.gif?color_snake=orange&color_dots=#bfd6f6,#8dbdff,#64a1f4,#4b91f1,#3c7dd9 20 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![Github](https://i.pinimg.com/736x/81/29/92/812992f44a2cd6e6787b8b61209abf48.jpg) 2 |
3 | 4 | 5 |

6 | 7 | 8 | 9 | SVG Typing 10 | 11 |

12 | 13 | 14 | 15 | --- 16 | 17 | 18 | 19 | ## About Me 20 | 21 | 22 | Hi! I'm a passionate developer specializing in **web applications** and **mobile apps**, focused on delivering seamless user experiences and robust functionality. My work blends innovative design, performance optimization, and modern web technologies. Check out some of my notable projects: 23 | 24 | 25 | - **[BG](https://branighan.vercel.app)**: A dynamic web application for house hunting. 26 | - **[Branighan Real Estate UI/UX](https://www.figma.com/design/58Jlic3ZY4ZMO5tFnA8dUf/Branighan-real-estate?node-id=0-1&t=DmSiw6K3SGgfetKU-1)**: A Figma project demonstrating intuitive UI/UX design for a real estate platform. 27 | 28 | ### Expertise 29 | - **Passionate About**: Distributed automated web systems, databases, APIs, caching, and UI/UX design. 30 | - **Proficient In**: Frameworks and languages like React, Express, PHP, HTML, CSS, and JavaScript. 31 | - **Experienced With**: AWS, Node.js, ES6, CodeIgniter, NLP, Linux servers, and Apache servers. 32 | - **Open Source**: Enthusiastic contributor to open-source projects, focusing on innovative web and mobile solutions. 33 | 34 | ### Connect 35 | - **Email**: [info@rackssoftwares.co.ke](mailto:info@rackssoftwares.co.ke) 36 | - **Portfolio**: Check out more of my UI/UX designs on [Figma](https://www.figma.com/@godyracks) 37 | 38 | I’m dedicated to building creative projects and exploring emerging technologies. Let’s collaborate to bring your ideas to life! 39 | 40 | --- 41 | ⭐️ If you find my work inspiring, give my repos a star on [GitHub](https://github.com/godyracks)! 42 | 📫 Reach out via [email](mailto:info@rackssoftwares.co.ke) for project inquiries or collaboration. 43 | 44 | --- 45 | 46 | ### 🛠 Languages and Tools 47 |
48 | HTML5 49 | CSS3 50 | JavaScript 51 | Vue.js 52 | React 53 | MySQL 54 | PostgreSQL 55 | MongoDB 56 | C 57 | Node.js 58 | Redis 59 | Express 60 | Python 61 | PHP 62 | CodeIgniter 63 | Mongoose 64 |
65 | 66 | 67 | 68 | 69 | --- 70 | 71 | ### 📊 GitHub Stats 72 | | ![GitHub Stats](https://github-readme-stats.vercel.app/api?username=godyracks&show_icons=true&theme=radical) | ![GitHub Streak](https://github-readme-streak-stats.herokuapp.com/?user=godyracks&theme=radical) | 73 | | --- | --- | 74 | | ![Top Languages](https://github-readme-stats.vercel.app/api/top-langs/?username=godyracks&langs_count=8&theme=radical&layout=compact) | ![Stars](http://github-profile-summary-cards.vercel.app/api/cards/productive-time?username=godyracks&theme=radical&utcOffset=5.45) | 75 | 76 | --- 77 | 78 | ### 🏆 GitHub Trophies 79 | ![Trophies](https://github-profile-trophy.vercel.app/?username=godyracks&theme=radical&no-frame=false&no-bg=true&margin-w=5) 80 | 81 | --- 82 | 83 | ### 📈 Activity Graph 84 | [![Activity Graph](https://github-readme-activity-graph.vercel.app/graph?username=godyracks&bg_color=0D1117&color=7F3FBF&line=7F3FBF&point=7F3FBF&area_color=FFFFFF&title_color=FFFFFF&area=true&border_color=7F3FBF)](https://github.com/godyracks) 85 | 86 | --- 87 | 88 | ### 🌐 Connect with Me 89 |
90 | 91 | LinkedIn 92 | 93 | 94 | Instagram 95 | 96 | 97 | Facebook 98 | 99 | 100 | Twitter 101 | 102 | 103 | Gmail 104 | 105 | 106 | Hugging Face 107 | 108 |
109 | 110 | --- 111 | 112 | Note: Follow status will be automatically adjusted. If you encounter any issues, feel free to reach out via the links above. 113 | --- 114 | 115 | -------------------------------------------------------------------------------- /assets: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /docs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /github-snake.svg: -------------------------------------------------------------------------------- 1 | 2 | 358 | 359 | 360 | 361 | 362 | 363 | 364 | 365 | 366 | 367 | 368 | 369 | 370 | 371 | 372 | 373 | 374 | 375 | 376 | 377 | 378 | 379 | 380 | 381 | 382 | 383 | 384 | 385 | 386 | 387 | 388 | 389 | 390 | 391 | 392 | 393 | 394 | 395 | 396 | 397 | 398 | 399 | 400 | 401 | 402 | 403 | 404 | 405 | 406 | 407 | 408 | 409 | 410 | 411 | 412 | 413 | 414 | 415 | 416 | 417 | 418 | 419 | 420 | 421 | 422 | 423 | 424 | 425 | 426 | 427 | 428 | 429 | 430 | 431 | 432 | 433 | 434 | 435 | 436 | 437 | 438 | 439 | 440 | 441 | 442 | 443 | 444 | 445 | 446 | 447 | 448 | 449 | 450 | 451 | 452 | 453 | 454 | 455 | 456 | 457 | 458 | 459 | 460 | 461 | 462 | 463 | 464 | 465 | 466 | 467 | 468 | 469 | 470 | 471 | 472 | 473 | 474 | 475 | 476 | 477 | 478 | 479 | 480 | 481 | 482 | 483 | 484 | 485 | 486 | 487 | 488 | 489 | 490 | 491 | 492 | 493 | 494 | 495 | 496 | 497 | 498 | 499 | 500 | 501 | 502 | 503 | 504 | 505 | 506 | 507 | 508 | 509 | 510 | 511 | 512 | 513 | 514 | 515 | 516 | 517 | 518 | 519 | 520 | 521 | 522 | 523 | 524 | 525 | 526 | 527 | 528 | 529 | 530 | 531 | 532 | 533 | 534 | 535 | 536 | 537 | 538 | 539 | 540 | 541 | 542 | 543 | 544 | 545 | 546 | 547 | 548 | 549 | 550 | 551 | 552 | 553 | 554 | 555 | 556 | 557 | 558 | 559 | 560 | 561 | 562 | 563 | 564 | 565 | 566 | 567 | 568 | 569 | 570 | 571 | 572 | 573 | 574 | 575 | 576 | 577 | 578 | 579 | 580 | 581 | 582 | 583 | 584 | 585 | 586 | 587 | 588 | 589 | 590 | 591 | 592 | 593 | 594 | 595 | 596 | 597 | 598 | 599 | 600 | 601 | 602 | 603 | 604 | 605 | 606 | 607 | 608 | 609 | 610 | 611 | 612 | 613 | 614 | 615 | 616 | 617 | 618 | 619 | 620 | 621 | 622 | 623 | 624 | 625 | 626 | 627 | 628 | 629 | 630 | 631 | 632 | 633 | 634 | 635 | 636 | 637 | 638 | 639 | 640 | 641 | 642 | 643 | 644 | 645 | 646 | 647 | 648 | 649 | 650 | 651 | 652 | 653 | 654 | 655 | 656 | 657 | 658 | 659 | 660 | 661 | 662 | 663 | 664 | 665 | 666 | 667 | 668 | 669 | 670 | 671 | 672 | 673 | 674 | 675 | 676 | 677 | 678 | 679 | 680 | 681 | 682 | 683 | 684 | 685 | 686 | 687 | 688 | 689 | 690 | 691 | 692 | 693 | 694 | 695 | 696 | 697 | 698 | 699 | 700 | 701 | 702 | 703 | 704 | 705 | 706 | 707 | 708 | 709 | 710 | 711 | 712 | 713 | 714 | 715 | 716 | 717 | 718 | 719 | 720 | 721 | 722 | 723 | 724 | 725 | 726 | 727 | 728 | 729 | 730 | 731 | 732 | 733 | 734 | 735 | 736 | 737 | 738 | 739 | 740 | 741 | 742 | 743 | 744 | 745 | 746 | 747 | 748 | 749 | 750 | 751 | 752 | 753 | 754 | 755 | -------------------------------------------------------------------------------- /language.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godyracks/GodyRacks/3b7c1aed329a831ab38b281f7792c3b60e8ef3b4/language.jpg --------------------------------------------------------------------------------