Skip to content
View Bernard2806's full-sized avatar
👾
👾

Block or report Bernard2806

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

Hello! I’m Bernardo, a passionate programmer with experience in web development and technology. I have experience with C#, Entity Framework Core, and Blazor, and I'm familiar with Git and GitHub. On this profile, I share my projects, ranging from academic work to personal experiments. Feel free to explore and connect with me!


🛠 Languages and Tools

Programming Languages

C logo C# logo JavaScript logo PHP logo Arduino logo

Frameworks and Libraries

Ant Design logo Blazor logo Bootstrap logo Unity logo

Databases

MySQL logo MariaDB logo

Web and Cloud Platforms

Azure logo Apache logo

Version Control & CI/CD

Git logo GitHub Actions logo

🔥 My Stats :

stats graph languages graph


Pinned Loading

  1. Ejercicios-UTN-FRSN-Programacion1 Ejercicios-UTN-FRSN-Programacion1 Public

    📘 Ejercicios - Programación 1 (UTN FRSN) - UTN Aula Chivilcoy

    C

  2. UTN-FRSN-Actividades-Programacion UTN-FRSN-Actividades-Programacion Public

    Índice visual de actividades en PDF de todas las materias de Programación (UTN FRSN, Chivilcoy) con acceso rápido vía GitHub Pages.

    HTML

  3. Material-UTN-FRSN-Programacion1 Material-UTN-FRSN-Programacion1 Public

    📚 Material - Programación 1 (UTN FRSN) - UTN Aula Chivilcoy

  4. Ejemplos-UTN-FRSN-Programacion1-2021 Ejemplos-UTN-FRSN-Programacion1-2021 Public

    Forked from nicocastanio/tuc-prog1-2021-1c

    📙 Ejemplos - Programación 1 (UTN FRSN) - 2021

    C

  5. Programación en C – Árbol Binario de... Programación en C – Árbol Binario de Búsqueda (ABB) – Que es y cómo se usan
    1
    #include <stdio.h>
    2
    #include <string.h>
    3
    #include <stdlib.h>
    4
    #include <ctype.h>
    5
     
  6. Programación en C – Listas Enlazadas... Programación en C – Listas Enlazadas – Que son y cómo se usan
    1
    #include <stdio.h>
    2
    #include <stdlib.h>
    3
     
    4
    typedef struct snodo{ //snodo es el nombre de la estructura
    5
        int valor;