Home Backend Development C++ Piscine - How To Prepare? A Reflection And The Golden Ticket

Piscine - How To Prepare? A Reflection And The Golden Ticket

Oct 07, 2024 am 06:10 AM

This post is a continuation and the last post of my personal experiences during the 42 Piscine. I will write about my reflection and how I prepared for the Piscine. Do you want to know more about the 42 School and their piscine program? Read my previous two posts.

A Blink Of The Final Weeks

My last post ended with a reflection on the second week of the Piscine and my experience with failure. The third and fourth weeks (the final week) were very exhausting for me. During the middle of the third week, I felt tired, energy-wise. The projects became more complex, and my brain felt slower in terms of functionality. I was not alone in this feeling; everyone felt similarly, and we motivated each other to keep swimming. We were in this together.

That being said, the learning continued. We learned to create funky functions like atoi, Fibonacci, and putnbr. New concepts like recursion were on my learning list. I also completed a community service. Community service is a volunteering program where students can sign up for various tasks (e.g., cleaning equipment). In return, students receive virtual coins, which can be used to buy merch, drinks, etc.

In the final week, peer evaluations were hard to get. Everyone wanted to advance in their level and get their projects reviewed and validated. It became a hunt for points and peer review slots. Unfortunately, I also got sick during the last week and was knocked out for a few days. However, two days before the final exam, I was able to attend school again, and it felt like a final fight with my own willpower. The end was so near that it was almost sad, as it meant the month full of fast-paced learning was coming to an end.

As for the exams, I failed the third one but passed the final one. The relief after the final exam was unreal. I was happy, relieved, but also soooooo tired. And still a bit sick. Some students organized a party as a celebration. We partied—or rather, my peers partied. Unfortunately, I had to go back to bed to fully recover from my sick days.

And that was it. Four weeks of learning, failing, and growing came to an end. I was sad and happy.

Piscine - How To Prepare? A Reflection And The Golden Ticket
Kudos to one of our peers who baked this cake for our celebration party ?

A Final Round Reflection

The Piscine was a roller coaster of emotions for me. It was a month full of humbling interactions and experiences with my peers, full of ups and downs. It wasn’t just about learning C; it was much more about reaching my limits, stepping out of my comfort zone, and becoming a team with 150 strangers. I struggled with failure, overcame it, and continued learning. I had to accept when I couldn't push further and needed to prioritize my health. Besides the daily interactions on campus with my peers, I couldn’t have many other social interactions with my friends. I left in the morning, headed to campus, and came back in the evening—tired, but somehow filled with a sense of power and an overwhelming curiosity to repeat the same schedule the next day.

Within two weeks after the final exam, I was waiting to hear whether I had been accepted to enroll in the core program. And guess what? I still can’t believe it—I got the Golden Ticket. I was accepted. I passed the Piscine. May the 42 School story continue.

Piscine - How To Prepare? A Reflection And The Golden Ticket

The Factors That Helped Me Prepare And Pass The Piscine

I honestly believe that it is impossible to be actually prepared for the Piscine. Also, it’s a known fact that no one knows exactly what it takes to be accepted. I doubt that it’s about reaching a super high level in your projects or passing all the exams. I got as far as C06 and passed two out of four exams. I believe it’s more about the individual learning journey and progress throughout the month and how you engage with and support your peers and the community.

That being said, I nailed it down to three factors that I reflected on and which supported me get closer to the golden ticket.

Learn C Basic [Before]

  • Courses: Crash course C w3school, Havardx
  • Books: How computers really work

Relax [Before]

  • Get a good rest and fill your energy bars beforehand (if you can). Also if possible, try to fully be free of other duties for the Piscine. The Piscine is an intense month. I probably used the word "intense" very often in my last posts. But this is what it was.

Be kind to Yourself and Other. Your aren't Alone in this. Grow together, Fail together. [During]

  • Remember to be kind to yourself and others, it is an intense month full of learning. There are students from various backgrounds starting the Piscine at different levels.
  • Try not to compare yourself against your peers, instead be a supportive shoulder for each other and grow from each other.

This is a wrap about my experience going through the Piscine at the Berliner campus. I want to express my gratitude to my support system: my closed ones and my mentor, my fellow Pisciners and soon-to-be 42 student peers (YAY), the staff of 42 Berlin, and the Grizzlies.

? Original post on my own blog

The above is the detailed content of Piscine - How To Prepare? A Reflection And The Golden Ticket. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

C language data structure: data representation and operation of trees and graphs C language data structure: data representation and operation of trees and graphs Apr 04, 2025 am 11:18 AM

C language data structure: The data representation of the tree and graph is a hierarchical data structure consisting of nodes. Each node contains a data element and a pointer to its child nodes. The binary tree is a special type of tree. Each node has at most two child nodes. The data represents structTreeNode{intdata;structTreeNode*left;structTreeNode*right;}; Operation creates a tree traversal tree (predecision, in-order, and later order) search tree insertion node deletes node graph is a collection of data structures, where elements are vertices, and they can be connected together through edges with right or unrighted data representing neighbors.

The truth behind the C language file operation problem The truth behind the C language file operation problem Apr 04, 2025 am 11:24 AM

The truth about file operation problems: file opening failed: insufficient permissions, wrong paths, and file occupied. Data writing failed: the buffer is full, the file is not writable, and the disk space is insufficient. Other FAQs: slow file traversal, incorrect text file encoding, and binary file reading errors.

What are the basic requirements for c language functions What are the basic requirements for c language functions Apr 03, 2025 pm 10:06 PM

C language functions are the basis for code modularization and program building. They consist of declarations (function headers) and definitions (function bodies). C language uses values ​​to pass parameters by default, but external variables can also be modified using address pass. Functions can have or have no return value, and the return value type must be consistent with the declaration. Function naming should be clear and easy to understand, using camel or underscore nomenclature. Follow the single responsibility principle and keep the function simplicity to improve maintainability and readability.

How to calculate c-subscript 3 subscript 5 c-subscript 3 subscript 5 algorithm tutorial How to calculate c-subscript 3 subscript 5 c-subscript 3 subscript 5 algorithm tutorial Apr 03, 2025 pm 10:33 PM

The calculation of C35 is essentially combinatorial mathematics, representing the number of combinations selected from 3 of 5 elements. The calculation formula is C53 = 5! / (3! * 2!), which can be directly calculated by loops to improve efficiency and avoid overflow. In addition, understanding the nature of combinations and mastering efficient calculation methods is crucial to solving many problems in the fields of probability statistics, cryptography, algorithm design, etc.

Function name definition in c language Function name definition in c language Apr 03, 2025 pm 10:03 PM

The C language function name definition includes: return value type, function name, parameter list and function body. Function names should be clear, concise and unified in style to avoid conflicts with keywords. Function names have scopes and can be used after declaration. Function pointers allow functions to be passed or assigned as arguments. Common errors include naming conflicts, mismatch of parameter types, and undeclared functions. Performance optimization focuses on function design and implementation, while clear and easy-to-read code is crucial.

Concept of c language function Concept of c language function Apr 03, 2025 pm 10:09 PM

C language functions are reusable code blocks. They receive input, perform operations, and return results, which modularly improves reusability and reduces complexity. The internal mechanism of the function includes parameter passing, function execution, and return values. The entire process involves optimization such as function inline. A good function is written following the principle of single responsibility, small number of parameters, naming specifications, and error handling. Pointers combined with functions can achieve more powerful functions, such as modifying external variable values. Function pointers pass functions as parameters or store addresses, and are used to implement dynamic calls to functions. Understanding function features and techniques is the key to writing efficient, maintainable, and easy to understand C programs.

C language multithreaded programming: a beginner's guide and troubleshooting C language multithreaded programming: a beginner's guide and troubleshooting Apr 04, 2025 am 10:15 AM

C language multithreading programming guide: Creating threads: Use the pthread_create() function to specify thread ID, properties, and thread functions. Thread synchronization: Prevent data competition through mutexes, semaphores, and conditional variables. Practical case: Use multi-threading to calculate the Fibonacci number, assign tasks to multiple threads and synchronize the results. Troubleshooting: Solve problems such as program crashes, thread stop responses, and performance bottlenecks.

CS-Week 3 CS-Week 3 Apr 04, 2025 am 06:06 AM

Algorithms are the set of instructions to solve problems, and their execution speed and memory usage vary. In programming, many algorithms are based on data search and sorting. This article will introduce several data retrieval and sorting algorithms. Linear search assumes that there is an array [20,500,10,5,100,1,50] and needs to find the number 50. The linear search algorithm checks each element in the array one by one until the target value is found or the complete array is traversed. The algorithm flowchart is as follows: The pseudo-code for linear search is as follows: Check each element: If the target value is found: Return true Return false C language implementation: #include#includeintmain(void){i

See all articles