Skip to content
View Wolfie8935's full-sized avatar
🎯
Focusing
🎯
Focusing
  • 18:28 (UTC +05:30)

Highlights

  • Pro

Block or report Wolfie8935

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
Wolfie8935/README.md

πŸ’« About Me:

πŸ‘‹ Hello, I'm Wolfie8935!

πŸš€ Welcome to my digital domain where coding, creativity, and curiosity converge.

πŸ‘¨β€πŸ’» As a passionate programmer, I excel in the art of turning lines of code into functional magic. My preferred languages are C++ and Java, where I craft intricate digital worlds and bring ideas to life.

🌐 Web development has a special place in my heart, as I meticulously master the art of designing and developing immersive online experiences. HTML, CSS, and JavaScript are my trusty tools for creating captivating web solutions.

🎾 Tennis is my other love. Just as I gracefully volley on the court, I navigate the complex game of coding with finesse, adaptability, and strategy. Whether it's a perfect serve or a well-optimized algorithm, I relish the thrill of pushing my limits.

🌱 Embracing the new is in my DNA. I'm always on the lookout for the latest technologies, trends, and techniques in the ever-evolving world of tech. This hunger for knowledge keeps me on the cutting edge of innovation.

πŸ“§ Let's Connect!
I thrive on fruitful conversations and collaborations. Whether you're interested in discussing code architecture, sharing web design insights, or just geeking out about the latest tech trends, drop me a line at wolfie8935@gmail.com.

🀝 Open to Opportunities
Whether it's brainstorming on a coding project, fine-tuning a web design, or exploring uncharted territories, I'm up for the challenge. Let's collaborate and create something amazing together.

🌟 Remember, life is a lot like coding: embrace the errors, learn from them, and always keep exploring for that perfect solution!

Stay curious, keep coding, and let's inspire the digital world together!

Connect with me:

aman goel wolfie8935 wolfie8935

Languages and Tools:

anaconda logo bash logo blender logo bootstrap logo c logo cplusplus logo css3 logo django logo figma logo flutter logo flask logo github logo go logo git logo googlecloud logo html5 logo illustrator logo java logo javascript logo jquery logo kaggle logo linkedin logo mysql logo nodejs logo opencv logo openal logo pandas logo pycharm logo python logo react logo raspberrypi logo tensorflow logo tailwindcss logo unity logo ubuntu logo unrealengine logo vscode logo webflow logo

Snake animation

Support:

wolfie8935



πŸ“Š GitHub Stats:



πŸ† GitHub Trophies

✍️ Random Dev Quote

Pinned Loading

  1. Print ODD and EVEN numbers from 1 to... Print ODD and EVEN numbers from 1 to 20 and the odd numbers should be printed in child process and the even numbers should be printed in parent process using fork command
    1
    #include <stdio.h>
    2
    #include <stdlib.h>
    3
    #include <unistd.h>
    4
    
                  
    5
    int main (){
  2. Mutual Exclusions using semaphores Mutual Exclusions using semaphores
    1
    //Mutual Exclusion Using Semaphores
    2
    #include <stdio.h>
    3
    #include <stdlib.h>
    4
    #include <pthread.h>
    5
    #include <semaphore.h>
  3. c_codes_wolfie8935 c_codes_wolfie8935 Public

    All of my practiced c codes

    C

  4. Cpp_codes_wolfie8935 Cpp_codes_wolfie8935 Public

    This is just the normal code practice for codes

    C++

  5. thread creation practice using pthre... thread creation practice using pthread library
    1
    #include <stdio.h>
    2
    #include <stdlib.h>
    3
    #include <unistd.h>
    4
    #include <pthread.h>
    5
    
                  
  6. Write a c program to create 3 threa... Write a c program to create 3 threads and print the grade sheet of 3 students (1 thread for each student). Implement the mutual exclusion using semaphore such that the grade calculation is done by only one thread at a time. If average >9.0 then grade is O, average > 8.0 and <8.9 then A, average > 7.0 and < 7.9 then B, and average < 7.0 then C.
    1
    #include <stdio.h>
    2
    #include <stdlib.h>
    3
    #include <pthread.h>
    4
    #include <unistd.h>
    5
    #include <semaphore.h>