Skip to content
View jack-pepper's full-sized avatar

Highlights

  • Pro

Block or report jack-pepper

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
jack-pepper/README.md
int main()
{
  Profile my; // 🪪
  
  my._name = "Morgan";
  my._school = 42; /* Nice (France) */
  my._areasOfInterest = {

    "Software_Architecture" : "Designing scalable and efficient systems";
    "Web Development"       : "Javascript";
    "Game Development"      : "Unity, C#";
    "AI & Machine Learning" : "Natural language processing, cognitive science applications";
  
  };
  my._languages = { "English", "Русский", "Français", "汉语", "Esperanto" };
  my._assets = { "ambitious", "pragmatic", "adaptable" };
  my._currentTarget = "study";
  
  Background previousCarrier; // 📚
  
  previousCarrier._field = "Early education";
  previousCarrier._speciality = "Teaching French as a Foreign Language";
  previousCarrier._top[3] = { "Trainer & Coordinator", "Preschool Designer", "School Director" };
  
  Company business; // 💼
  
  business._status = "IE"; /* Individual Entrepreneur */
  business._commercialName = "MARIDO";
  business._services = {
    
    "educational" : "private tutoring";
    "linguistic"  : "translation & localisation (en/ru/eo > fr); copyrighting"
    "informatics" : "undefined";
  
  }
  business._website = "https://www.marido.fr";

  Skills stack; // 🛠️

  stack.os[3] = { "Linux", "MacOS", "Windows" };
  stack.languages.computer = { "C", "C++", "HTML", "Javascript", "Python" };
  stack.ai_tools = { "GPT", "Claude", "Copilot", "Suno" };
  
  if ( wantToKnowMore )
    sendMessage( "marido.entreprise[at]gmail.com" );
  else
    std::cout << "Thanks for reading, have a nice day!" << '\n';

  return ( $? );
}
`

Pinned Loading

  1. so_long so_long Public

    👾 [42] A 2D graphical game project built using the MiniLibX library, featuring interactive elements and player navigation and implementing event handling, game loop mechanics, and graphical rendering.

    C 1

  2. mylibft mylibft Public

    🏛️ My own extended version of libft including additional C utility functions libraries (LIBBIN, LIBSORT, LIBXKIT...).

    C 1 1

  3. push_swap push_swap Public

    🫸 [42] A sorting algorithm project focused on efficiently sorting a stack using a minimal number of operations through algorithmic problem-solving in C.

    C

  4. Minitalk Minitalk Public

    📻 [42] A project that implements inter-process communication using Unix signals. It provides a practical application of process synchronization on a low-level system.

    C

  5. ft_printf ft_printf Public

    🖨️ [42] A custom implementation of the standard printf variadic function, designed to handle various format specifiers and argument types and efficiently format and output text to the console.

    C

  6. get_next_line get_next_line Public

    ✏️ [42] A function that reads and returns one line at a time from a file descriptor, implementing buffering techniques and a scalable approach to handle potentially large files.

    C