Skip to content
View diouri844's full-sized avatar
👽
Ch___Open
👽
Ch___Open

Block or report diouri844

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

Hi 👋, I'm Chopen

Fullstack developer || python expert

⚡Hi, my name is Salah, and I am a passionate full-stack developer with expertise in JavaScript and Python. With a strong foundation in JavaScript, I specialize in building robust and interactive web applications using popular client-side frameworks like Vue.js and React.js. Additionally, I have extensive experience with TypeScript, enhancing the development process with its static typing capabilities.

On the back-end, I possess a wide range of skills and proficiency in powerful frameworks such as Express, Flask, Django, and Fiber. These frameworks enable me to create scalable and efficient server-side solutions, ensuring seamless communication between the front-end and back-end components of an application.

As a dedicated professional, I thrive in collaborative environments and am always eager to contribute my skills and knowledge to a team. I am committed to continuously learning and staying up-to-date with the latest technologies and best practices in the field of web development.

diouri844

diouri844

DiourSalah

  • 🔭 I’m currently working on BeeKeeping-project

  • 🌱 I’m currently learning svelte / fiber / pocketbase

  • 💬 Ask me about VueJs , React , Flask ,MongoDb

Connect with me:

diourisalah salah iddine diouri salahiddine_dio1

Languages and Tools:

bash bootstrap bulma c cassandra cplusplus css3 django docker electron express figma firebase flask git go graphql heroku html5 java javascript laravel linux mariadb mongodb mssql mysql nextjs nodejs opencv php postgresql postman python qt rails react redux rust sass selenium sqlite svelte tailwind tensorflow typescript vuejs vuetify

diouri844

 diouri844

Pinned Loading

  1. java class to manipulate doubly link... java class to manipulate doubly linked-list
    1
    public class ComplexLinkedList {
    2
        ComplexNode Header;
    3
        Integer size = 0;
    4
        public void InsertFerst(Integer data){
    5
            // check if list is empty:
  2. Create and simply use liked-list wit... Create and simply use liked-list with python
    1
    # implement my linked list :
    2
    
                  
    3
    class LinkedList:
    4
        def __init__(self, node_header: Node):
    5
            self.Header = node_header