diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/DevWebStatique/Index.md b/DevWebStatique/Index.md new file mode 100644 index 0000000..8cf141a --- /dev/null +++ b/DevWebStatique/Index.md @@ -0,0 +1,4 @@ +Compte rendu: + +- On génére un code pour faire une interface, et cette interface va montrer des liens pour ouvrir des fichiers +- On utilise deux langages : HTML et CSS (HTML -> Structure, CSS -> style) \ No newline at end of file diff --git a/DevWebStatique/trombinoscope/.gitignore b/DevWebStatique/trombinoscope/.gitignore new file mode 100644 index 0000000..a14702c --- /dev/null +++ b/DevWebStatique/trombinoscope/.gitignore @@ -0,0 +1,34 @@ +# dependencies (bun install) +node_modules + +# output +out +dist +*.tgz + +# code coverage +coverage +*.lcov + +# logs +logs +_.log +report.[0-9]_.[0-9]_.[0-9]_.[0-9]_.json + +# dotenv environment variable files +.env +.env.development.local +.env.test.local +.env.production.local +.env.local + +# caches +.eslintcache +.cache +*.tsbuildinfo + +# IntelliJ based IDEs +.idea + +# Finder (MacOS) folder config +.DS_Store diff --git a/DevWebStatique/trombinoscope/README.md b/DevWebStatique/trombinoscope/README.md new file mode 100644 index 0000000..88a3585 --- /dev/null +++ b/DevWebStatique/trombinoscope/README.md @@ -0,0 +1,15 @@ +# trombinoscope + +To install dependencies: + +```bash +bun install +``` + +To run: + +```bash +bun run index.ts +``` + +This project was created using `bun init` in bun v1.2.22. [Bun](https://bun.com) is a fast all-in-one JavaScript runtime. diff --git a/DevWebStatique/trombinoscope/bun.lock b/DevWebStatique/trombinoscope/bun.lock new file mode 100644 index 0000000..04d0279 --- /dev/null +++ b/DevWebStatique/trombinoscope/bun.lock @@ -0,0 +1,29 @@ +{ + "lockfileVersion": 1, + "workspaces": { + "": { + "name": "trombinoscope", + "devDependencies": { + "@types/bun": "latest", + }, + "peerDependencies": { + "typescript": "^5", + }, + }, + }, + "packages": { + "@types/bun": ["@types/bun@1.2.22", "", { "dependencies": { "bun-types": "1.2.22" } }, "sha512-5A/KrKos2ZcN0c6ljRSOa1fYIyCKhZfIVYeuyb4snnvomnpFqC0tTsEkdqNxbAgExV384OETQ//WAjl3XbYqQA=="], + + "@types/node": ["@types/node@24.5.2", "", { "dependencies": { "undici-types": "~7.12.0" } }, "sha512-FYxk1I7wPv3K2XBaoyH2cTnocQEu8AOZ60hPbsyukMPLv5/5qr7V1i8PLHdl6Zf87I+xZXFvPCXYjiTFq+YSDQ=="], + + "@types/react": ["@types/react@19.1.13", "", { "dependencies": { "csstype": "^3.0.2" } }, "sha512-hHkbU/eoO3EG5/MZkuFSKmYqPbSVk5byPFa3e7y/8TybHiLMACgI8seVYlicwk7H5K/rI2px9xrQp/C+AUDTiQ=="], + + "bun-types": ["bun-types@1.2.22", "", { "dependencies": { "@types/node": "*" }, "peerDependencies": { "@types/react": "^19" } }, "sha512-hwaAu8tct/Zn6Zft4U9BsZcXkYomzpHJX28ofvx7k0Zz2HNz54n1n+tDgxoWFGB4PcFvJXJQloPhaV2eP3Q6EA=="], + + "csstype": ["csstype@3.1.3", "", {}, "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw=="], + + "typescript": ["typescript@5.9.2", "", { "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" } }, "sha512-CWBzXQrc/qOkhidw1OzBTQuYRbfyxDXJMVJ1XNwUHGROVmuaeiEm3OslpZ1RV96d7SKKjZKrSJu3+t/xlw3R9A=="], + + "undici-types": ["undici-types@7.12.0", "", {}, "sha512-goOacqME2GYyOZZfb5Lgtu+1IDmAlAEu5xnD3+xTzS10hT0vzpf0SPjkXwAw9Jm+4n/mQGDP3LO8CPbYROeBfQ=="], + } +} diff --git a/DevWebStatique/trombinoscope/front/img/alice-martin.jpg b/DevWebStatique/trombinoscope/front/img/alice-martin.jpg new file mode 100644 index 0000000..8a6a5f3 Binary files /dev/null and b/DevWebStatique/trombinoscope/front/img/alice-martin.jpg differ diff --git a/DevWebStatique/trombinoscope/front/img/benjamin-dubois.jpg b/DevWebStatique/trombinoscope/front/img/benjamin-dubois.jpg new file mode 100644 index 0000000..62d8caa Binary files /dev/null and b/DevWebStatique/trombinoscope/front/img/benjamin-dubois.jpg differ diff --git a/DevWebStatique/trombinoscope/front/img/camille-bernard.jpg b/DevWebStatique/trombinoscope/front/img/camille-bernard.jpg new file mode 100644 index 0000000..9453073 Binary files /dev/null and b/DevWebStatique/trombinoscope/front/img/camille-bernard.jpg differ diff --git a/DevWebStatique/trombinoscope/front/img/david-rousseau.jpg b/DevWebStatique/trombinoscope/front/img/david-rousseau.jpg new file mode 100644 index 0000000..77e7028 Binary files /dev/null and b/DevWebStatique/trombinoscope/front/img/david-rousseau.jpg differ diff --git a/DevWebStatique/trombinoscope/front/img/emma-leroy.jpg b/DevWebStatique/trombinoscope/front/img/emma-leroy.jpg new file mode 100644 index 0000000..3d8697d Binary files /dev/null and b/DevWebStatique/trombinoscope/front/img/emma-leroy.jpg differ diff --git a/DevWebStatique/trombinoscope/front/img/florent-moreau.jpg b/DevWebStatique/trombinoscope/front/img/florent-moreau.jpg new file mode 100644 index 0000000..63c1da5 Binary files /dev/null and b/DevWebStatique/trombinoscope/front/img/florent-moreau.jpg differ diff --git a/DevWebStatique/trombinoscope/front/img/gabrielle-simon.jpg b/DevWebStatique/trombinoscope/front/img/gabrielle-simon.jpg new file mode 100644 index 0000000..6101132 Binary files /dev/null and b/DevWebStatique/trombinoscope/front/img/gabrielle-simon.jpg differ diff --git a/DevWebStatique/trombinoscope/front/img/hugo-laurent.jpg b/DevWebStatique/trombinoscope/front/img/hugo-laurent.jpg new file mode 100644 index 0000000..d9821c9 Binary files /dev/null and b/DevWebStatique/trombinoscope/front/img/hugo-laurent.jpg differ diff --git a/DevWebStatique/trombinoscope/front/img/img7.jpg b/DevWebStatique/trombinoscope/front/img/img7.jpg new file mode 100644 index 0000000..3962231 Binary files /dev/null and b/DevWebStatique/trombinoscope/front/img/img7.jpg differ diff --git a/DevWebStatique/trombinoscope/front/index.html b/DevWebStatique/trombinoscope/front/index.html new file mode 100644 index 0000000..f2da848 --- /dev/null +++ b/DevWebStatique/trombinoscope/front/index.html @@ -0,0 +1,48 @@ + + + +
+ + +
+ Email: alice.martin@school.edu | Phone: +33 6 12 34 56 78
+Passionate computer science student with a strong foundation in software development and + artificial intelligence. Dedicated to creating innovative solutions and contributing to + cutting-edge technology projects.
+3rd Year | 2023 - 2026
+Specialization in Artificial Intelligence and Machine Learning
+GPA: 16.5/20
+TechCorp | Summer 2024
+Developed a web application using React and Node.js, improving user engagement by 25%
+University AI Lab | 2024 - Present
+Contributing to machine learning research on natural language processing
+Developed a mobile application for campus navigation using Flutter and Firebase
+Created an intelligent chatbot using NLP techniques and deployed it on AWS
+
+ Email: benjamin.dubois@school.edu | Phone: +33 6 87 65 43 21
+Dedicated mechanical engineering student with expertise in CAD design and manufacturing + processes. Passionate about sustainable engineering solutions and renewable energy technologies. +
+2nd Year | 2024 - 2027
+Specialization in Renewable Energy Systems
+GPA: 15.8/20
+GreenTech Industries | Summer 2024
+Designed and tested wind turbine components using SolidWorks and ANSYS
+University Machine Shop | 2024 - Present
+Assisting students with 3D printing and CNC machining projects
+Designed an automated solar panel tracking system to maximize energy efficiency
+Participated in a team project to design a lightweight, fuel-efficient vehicle
+
+ Email: camille.bernard@school.edu | Phone: +33 6 55 44 33 22
+Innovative electrical engineering student specializing in embedded systems and IoT technologies. + Passionate about creating smart solutions for modern challenges through advanced electronics and + programming.
+3rd Year | 2023 - 2026
+Specialization in Embedded Systems and IoT
+GPA: 17.2/20
+SmartTech Solutions | Summer 2024
+Developed IoT sensors for smart home applications using Arduino and Raspberry Pi
+Electronics Laboratory | 2024 - Present
+Supporting circuit design and microcontroller programming courses
+Designed a complete home automation system with mobile app control and voice recognition
+Created a mesh network of environmental sensors for campus monitoring
+
+ Email: david.rousseau@school.edu | Phone: +33 6 77 88 99 11
+Ambitious civil engineering student with a focus on sustainable infrastructure and urban + planning. Committed to developing environmentally conscious solutions for modern construction + challenges.
+1st Year | 2024 - 2027
+Foundation in Structural Engineering and Environmental Planning
+GPA: 15.5/20
+First-year project designing an eco-friendly pedestrian bridge using recycled materials
+
+ Email: emma.leroy@school.edu | Phone: +33 6 33 22 11 44
+Dedicated biomedical engineering student passionate about developing medical devices and + biotechnology solutions. Combining engineering principles with biological sciences to improve + healthcare outcomes.
+2nd Year | 2024 - 2027
+Specialization in Medical Device Design
+GPA: 16.8/20
+BioMed Research Institute | Summer 2024
+Assisted in developing prosthetic limb control systems using EMG signals
+Designed a 3D-printed prosthetic hand with muscle signal control interface
+
+ Email: florent.moreau@school.edu | Phone: +33 6 99 88 77 66
+Passionate aerospace engineering student with dreams of contributing to space exploration and + aviation innovation. Specialized in aerodynamics and propulsion systems with hands-on experience + in rocket design.
+3rd Year | 2023 - 2026
+Specialization in Propulsion and Space Systems
+GPA: 17.5/20
+AeroSpace Dynamics | Summer 2024
+Worked on computational fluid dynamics simulations for aircraft wing optimization
+University Space Club | 2024 - Present
+Leading a team of 15 students in designing and building competition rockets
+Designed and launched a rocket reaching 3000m altitude in national competition
+Optimized drone wing design using CFD simulations, improving efficiency by 15%
+
+ Email: gabrielle.simon@school.edu | Phone: +33 6 11 22 33 55
+Enthusiastic chemical engineering student with a passion for sustainable chemistry and green + technology. Focused on developing environmentally friendly industrial processes and renewable + energy solutions.
+1st Year | 2024 - 2027
+Foundation in Process Engineering and Green Chemistry
+GPA: 16.2/20
+First-year research project on developing eco-friendly plastic alternatives from agricultural + waste
+
+ Email: hugo.laurent@school.edu | Phone: +33 6 44 55 66 77
+Motivated industrial engineering student with expertise in process optimization and lean + manufacturing. Passionate about improving operational efficiency and implementing Industry 4.0 + technologies.
+2nd Year | 2024 - 2027
+Specialization in Operations Research and Supply Chain
+GPA: 16.0/20
+Manufacturing Solutions Inc. | Summer 2024
+Analyzed production workflows and implemented lean manufacturing principles, reducing waste + by 20%
+Developed a digital twin model for optimizing production line efficiency using IoT sensors +
+