Skip to content
View pquline's full-sized avatar
🤡
🤡

Highlights

  • Pro

Block or report pquline

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

About me

#include <iostream>
#include <string>

class Dev
{
private:
    std::string	_name;
    std::string	_school;
    std::string	_location;
public:
    Dev(const std::string &name, const std::string &school, const std::string &location);
    void code(void) const;
};

int main(void)
{
    Dev pquline("Pauline", "École 42", "Paris, France");
    pquline.code();
    return (0);
}

Current interests

  • 🔐 Computer Security (Root Me)
  • 🕵️ Open Source Intelligence (OSINT)
  • 🚀 Self-hosting & Deployment
  • 🌐 Web Development (42LogTime)

Pinned Loading

  1. Volr Volr Public

    Web app to report and track dangers in public transit systems in Marseille, Paris, and Rennes.

    JavaScript 2

  2. ft_printf_tester ft_printf_tester Public

    A basic C tester for the 42 ft_printf project, comparing return values of printf and ft_printf.

    C 2