We're re-starting from scratch

Another plan came out
This commit is contained in:
2025-02-11 22:00:40 +01:00
parent 6629f83eb6
commit 956c324273
23 changed files with 132 additions and 3356 deletions

1
.gitignore vendored
View File

@@ -1 +0,0 @@
node_modules/

View File

@@ -1,33 +1 @@
# nerdslab
This template should help get you started developing with Vue 3 in Vite.
## Recommended IDE Setup
[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur).
## Type Support for `.vue` Imports in TS
TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types.
## Customize configuration
See [Vite Configuration Reference](https://vite.dev/config/).
## Project Setup
```sh
npm install
```
### Compile and Hot-Reload for Development
```sh
npm run dev
```
### Type-Check, Compile and Minify for Production
```sh
npm run build
```
# Hi !

1
env.d.ts vendored
View File

@@ -1 +0,0 @@
/// <reference types="vite/client" />

View File

@@ -1,13 +0,0 @@
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="UTF-8">
<link rel="icon" href="/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vite App</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>

2835
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,31 +0,0 @@
{
"name": "website",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --build --force"
},
"dependencies": {
"@tsparticles/vue3": "^3.0.1",
"jquery": "^3.7.1",
"vue": "^3.5.12",
"vue-router": "^4.4.5"
},
"devDependencies": {
"@tsconfig/node22": "^22.0.0",
"@types/jquery": "^3.5.32",
"@types/node": "^22.9.0",
"@vitejs/plugin-vue": "^5.1.4",
"@vue/tsconfig": "^0.5.1",
"npm-run-all2": "^7.0.1",
"typescript": "~5.6.3",
"vite": "^5.4.10",
"vite-plugin-vue-devtools": "^7.5.4",
"vue-tsc": "^2.1.10"
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

View File

@@ -1,27 +0,0 @@
<script setup lang="ts">
import { RouterLink, RouterView } from 'vue-router'
import Header from './components/Header.vue';
</script>
<template>
<header>
<!--<Header :links="[['About me', 'a'], ['Projects', '#projects']]"></Header>-->
</header>
<div id="view_content">
<RouterView />
</div>
</template>
<style scoped>
#view_content{
width: 80%;
margin: auto;
}
@media (min-width: 1024px) {
}
</style>

View File

@@ -1,86 +0,0 @@
/* color palette from <https://github.com/vuejs/theme> */
:root {
--vt-c-white: #ffffff;
--vt-c-white-soft: #f8f8f8;
--vt-c-white-mute: #f2f2f2;
--vt-c-black: #181818;
--vt-c-black-soft: #222222;
--vt-c-black-mute: #282828;
--vt-c-indigo: #2c3e50;
--vt-c-divider-light-1: rgba(60, 60, 60, 0.29);
--vt-c-divider-light-2: rgba(60, 60, 60, 0.12);
--vt-c-divider-dark-1: rgba(84, 84, 84, 0.65);
--vt-c-divider-dark-2: rgba(84, 84, 84, 0.48);
--vt-c-text-light-1: var(--vt-c-indigo);
--vt-c-text-light-2: rgba(60, 60, 60, 0.66);
--vt-c-text-dark-1: var(--vt-c-white);
--vt-c-text-dark-2: rgba(235, 235, 235, 0.64);
}
/* semantic color variables for this project */
:root {
--color-background: var(--vt-c-white);
--color-background-soft: var(--vt-c-white-soft);
--color-background-mute: var(--vt-c-white-mute);
--color-border: var(--vt-c-divider-light-2);
--color-border-hover: var(--vt-c-divider-light-1);
--color-heading: var(--vt-c-text-light-1);
--color-text: var(--vt-c-text-light-1);
--section-gap: 160px;
}
@media (prefers-color-scheme: dark) {
:root {
--color-background: var(--vt-c-black);
--color-background-soft: var(--vt-c-black-soft);
--color-background-mute: var(--vt-c-black-mute);
--color-border: var(--vt-c-divider-dark-2);
--color-border-hover: var(--vt-c-divider-dark-1);
--color-heading: var(--vt-c-text-dark-1);
--color-text: var(--vt-c-text-dark-2);
}
}
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
font-weight: normal;
}
body {
min-height: 100vh;
color: var(--color-text);
background: var(--color-background);
transition:
color 0.5s,
background-color 0.5s;
line-height: 1.6;
font-family:
Inter,
-apple-system,
BlinkMacSystemFont,
'Segoe UI',
Roboto,
Oxygen,
Ubuntu,
Cantarell,
'Fira Sans',
'Droid Sans',
'Helvetica Neue',
sans-serif;
font-size: 15px;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

View File

@@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 261.76 226.69"><path d="M161.096.001l-30.225 52.351L100.647.001H-.005l130.877 226.688L261.749.001z" fill="#41b883"/><path d="M161.096.001l-30.225 52.351L100.647.001H52.346l78.526 136.01L209.398.001z" fill="#34495e"/></svg>

Before

Width:  |  Height:  |  Size: 276 B

View File

@@ -1,39 +0,0 @@
@import './base.css';
/*#app {
max-width: 1280px;
margin: 0 auto;
padding: 2rem;
font-weight: normal;
}
a,
.green {
text-decoration: none;
color: hsla(160, 100%, 37%, 1);
transition: 0.4s;
padding: 3px;
}
@media (hover: hover) {
a:hover {
background-color: hsla(160, 100%, 37%, 0.2);
}
}
@media (min-width: 1024px) {
body {
display: flex;
place-items: center;
}
#app {
display: grid;
grid-template-columns: 1fr 1fr;
padding: 0 2rem;
}
}*/
p, h1, h2, h3, h4, h5{
color: #F5F5F5;
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 297 KiB

View File

@@ -1,53 +0,0 @@
<script setup lang="ts">
defineProps({
links: {
type: Array<[string, string]>,
required: true
}
})
</script>
<template>
<nav class="head_div">
<ul>
<a v-for="link in links" :href="link[1]"><li ><p>{{ link[0] }}</p></li></a>
</ul>
</nav>
</template>
<style scoped>
.head_div{
min-height: 5vh;
max-height: 20vh;
margin: 0;
width: 100vw;
/*background-color: #022B3A;*/
}
ul{
display: flex;
flex-flow: row;
flex-direction: row;
justify-content: flex-start;
}
a{
list-style: none;
padding: 10px;
margin: 15px;
border-radius: 8px;
width: fit-content;
font-size: 1.4em;
text-decoration: none;
}
a:visited {
color: inherit;
}
a:hover{
background-color: rgb(53, 53, 53);
}
</style>

View File

@@ -1,21 +0,0 @@
<script setup lang="ts">
</script>
<template>
<div class="projects">
<h1 id="projects">My projects</h1>
</div>
</template>
<style scoped>
.projects{
width: 100%;
border: 2px green dotted;
display: flex;
justify-content: space-between;
flex-wrap: wrap-reverse;
}
</style>

View File

@@ -1,98 +0,0 @@
<script setup lang="ts">
import { ref, onMounted } from 'vue';
const delay = (ms: number): Promise<void> => new Promise(resolve => setTimeout(resolve, ms));
const jobTitles = ["Computer Science student", "AI enthousiast", "Full-stack web developer"];
let currentJob = ref('');
let currentChar = 0;
let currentTitle = 0;
async function startTypewriter(){
let recursive = async ()=>{
if(currentChar > jobTitles[currentTitle].length-1){
//We finished to write this title
//Let's wait a little, so user can read it
await delay(1500);
currentChar = 0;
currentTitle = (currentTitle+1) % jobTitles.length;
currentJob.value = ''; // Clear of wrote value
}
currentJob.value = currentJob.value + jobTitles[currentTitle][currentChar];
currentChar++;
await delay(400);
recursive();
}
recursive();
}
onMounted(() => {
startTypewriter();
});
</script>
<template>
<div class="typewriter_welcome">
<div class="typewriter">
<h1>Hi ! It's Kévin Sailly</h1>
<br><h2 class="job_title">{{currentJob}}</h2>
</div>
<div class="picture">
<img src="@/assets/welcome_picture.jpg" width="100%" height="100%"/>
</div>
</div>
</template>
<style scoped>
.typewriter_welcome{
width: 100%;
border: 2px green dotted;
display: flex;
justify-content: space-between;
flex-wrap: wrap-reverse;
}
.typewriter{
border: 2px yellow dotted;
display: flex;
justify-content: center;
flex-wrap: wrap;
flex-direction: column;
margin-left: 5vw;
width: 20vw;
min-width: 350px;
overflow:visible;
}
.typewriter h1{
font-size: 2.8em;
}
.job_title{
width: fit-content;
font-size: 1.8em;
animation: blink-caret .75s step-end infinite;
border-right: .15em solid orange;
}
.picture{
border: 2px greenyellow dotted;
width: 25vw;
margin-right: 10vw;
min-width: 300px;
}
.picture img{
border-radius: 50%;
border: 3px #976391 solid;
}
/* Animation */
/* The typewriter cursor effect */
@keyframes blink-caret {
from, to { border-color: transparent }
50% { border-color: orange; }
}
</style>

View File

@@ -1,11 +0,0 @@
import './assets/main.css'
import { createApp } from 'vue'
import App from './App.vue'
import router from './router'
const app = createApp(App)
app.use(router)
app.mount('#app')

View File

@@ -1,23 +0,0 @@
import { createRouter, createWebHistory } from 'vue-router'
import HomeView from '../views/HomeView.vue'
const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),
routes: [
{
path: '/',
name: 'home',
component: HomeView,
},
/*{
path: '/about',
name: 'about',
// route level code-splitting
// this generates a separate chunk (About.[hash].js) for this route
// which is lazy-loaded when the route is visited.
component: () => import('../views/AboutView.vue'),
},*/
],
})
export default router

View File

@@ -1,21 +0,0 @@
<script setup lang="ts">
import TypewriterWelcome from '@/components/Home/TypewriterWelcome.vue';
import Projects from '@/components/Home/Projects.vue';
</script>
<template>
<main>
<TypewriterWelcome />
<Projects />
</main>
</template>
<style scoped>
main{
margin-top: 5vh;
width: 100%;
border: 2px red dotted;
}
</style>

131
test.html Normal file
View File

@@ -0,0 +1,131 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Jeu de la vie en arrière-plan</title>
<style>
body {
margin: 0;
overflow: hidden;
background: black;
color: white;
font-family: Arial, sans-serif;
}
canvas {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
z-index: -1; /* Derrière le contenu */
border: 2px red;
}
.content {
position: relative;
z-index: 1;
text-align: center;
margin-top: 20vh;
}
</style>
</head>
<body>
<canvas id="gameOfLife"></canvas>
<div class="content">
<h1>Bienvenue sur mon site</h1>
<p>Le jeu de la vie tourne en arrière-plan !</p>
</div>
<script>
const canvas = document.getElementById("gameOfLife");
const ctx = canvas.getContext("2d");
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
// We find here the size of the grid to cover the whole screen
const cellSize = 20;
let rows = Math.floor(window.innerHeight/cellSize)+1;
let cols = Math.floor(window.innerWidth/cellSize)+1;
let grid;
let fadeEffectGrid;
function resizeCanvas() {
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
rows = Math.floor(window.innerHeight/cellSize)+1;
cols = Math.floor(window.innerWidth/cellSize)+1;
grid = []
for(let i=0; i<rows; i++){
let list = [];
for(let j=0; j<cols; j++) list.push(Math.random() > 0.85 ? 1 : 0);
grid.push(list);
}
fadeEffectGrid = grid.map(arr => [...arr]); // Full duplication
}
window.addEventListener("resize", resizeCanvas);
resizeCanvas(); // Generate for the first time the full 2d array
function nextGeneration() {
let newGrid = grid.map(arr => [...arr]); // Full duplication
for (let y = 0; y < rows; y++) { // For each row
for (let x = 0; x < cols; x++) { // For each col
let neighbors = 0; // We will count the number of living cells nearby
for (let dy = -1; dy <= 1; dy++) { // We loop through the grid, starting by the cell at the upper left corner of the one we are working on
for (let dx = -1; dx <= 1; dx++) { // And stopping at the lower right corner
if (dx == 0 && dy == 0) continue; //We don't count the considered cell
let ny = (y + dy + rows)%rows; // We find here the real coords in the grid
let nx = (x + dx + cols)%cols;
neighbors += grid[ny][nx]; // We count the adjacent cell. We are in a tore, so other side is checked as well
}
}
if (grid[y][x] == 1) { // Our cell is alive
if (neighbors < 2 || neighbors > 3 || Math.random() > 0.999) newGrid[y][x] = 0; // Dies, and a small chance to die in any case
} else { // Our cell is dead
if (neighbors == 3) newGrid[y][x] = 1; // Alive
if (Math.random() > 0.999){
// Very small chance for a new group to spawn
for (let dy = -2; dy <= 2; dy++) {
for (let dx = -2; dx <= 2; dx++) {
let ny = (y + dy + rows)%rows; // We find here the real coords in the grid
let nx = (x + dx + cols)%cols;
if(Math.random()<0.7) grid[ny][nx] = 1; // 50% of chance to be alive
}
}
} // End of chance based respawn
}
}
}
grid = newGrid;
}
function drawGrid() {
ctx.clearRect(0, 0, canvas.width, canvas.height);
for (let y = 0; y < rows; y++) {
for (let x = 0; x < cols; x++) {
if (grid[y][x]) {
fadeEffectGrid[y][x] = 1; // This cell is alive, opacity is full
} else {
fadeEffectGrid[y][x] = Math.max(0, fadeEffectGrid[y][x] - 0.4); // Cell died, it will fade out
}
if (fadeEffectGrid[y][x] > 0) {
ctx.fillStyle = `rgba(0, 255, 0, ${fadeEffectGrid[y][x]})`;
ctx.fillRect(x * cellSize, y * cellSize, cellSize, cellSize);
}
}
}
}
function update() {
nextGeneration();
drawGrid();
setTimeout(update, 200); // We don't want it to be too quick
}
update();
</script>
</body>
</html>

View File

@@ -1,14 +0,0 @@
{
"extends": "@vue/tsconfig/tsconfig.dom.json",
"include": ["env.d.ts", "src/**/*", "src/**/*.vue"],
"exclude": ["src/**/__tests__/*"],
"compilerOptions": {
"composite": true,
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
}
}
}

View File

@@ -1,11 +0,0 @@
{
"files": [],
"references": [
{
"path": "./tsconfig.node.json"
},
{
"path": "./tsconfig.app.json"
}
]
}

View File

@@ -1,19 +0,0 @@
{
"extends": "@tsconfig/node22/tsconfig.json",
"include": [
"vite.config.*",
"vitest.config.*",
"cypress.config.*",
"nightwatch.conf.*",
"playwright.config.*"
],
"compilerOptions": {
"composite": true,
"noEmit": true,
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
"module": "ESNext",
"moduleResolution": "Bundler",
"types": ["node"]
}
}

View File

@@ -1,18 +0,0 @@
import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import vueDevTools from 'vite-plugin-vue-devtools'
// https://vite.dev/config/
export default defineConfig({
plugins: [
vue(),
vueDevTools(),
],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
},
},
})