From 6cd8c60d24a1c8cd1852b2c760766925c3c8a49c Mon Sep 17 00:00:00 2001
From: rasmus
Date: Fri, 31 Jan 2025 14:13:57 +0100
Subject: [PATCH] Add first Fortran page
---
src/components/About.vue | 16 +++++++---------
src/components/Fortran/Fortran_Index.vue | 4 ++++
src/components/Fortran/Fortran_Reading_Files.vue | 11 +++++++++++
src/components/Lisp/Lisp_Index.vue | 11 +++++++++++
src/main.ts | 16 ++++++++++++++--
5 files changed, 47 insertions(+), 11 deletions(-)
create mode 100644 src/components/Fortran/Fortran_Reading_Files.vue
create mode 100644 src/components/Lisp/Lisp_Index.vue
diff --git a/src/components/About.vue b/src/components/About.vue
index 563d7cf..b36f4a8 100644
--- a/src/components/About.vue
+++ b/src/components/About.vue
@@ -22,29 +22,27 @@
really. The most important part is that I learn something. Like with my project
where I was setting
up a Blazor Interactive SSR web app. I learned quite a lot doing that project. For example how to handle file
- upload, or some of the newer C# syntax, like the "Index from end expression" [^1]
+ upload, or some of the newer C# syntax, like the "Index from end expression" that looks like this [^1]
-
- Another project I'm also quite proud of, is my own, custom search engine. Or well, it was supposed to be a search
- engine, but ended up as a crawler, that collected statistics of various metrics, such as response codes, server
- type, Tls version, Etc. It's still on-going, as the IPv4 space is quite large. Some of the best aspects of the
+
Another project I'm also quite proud of, is my own custom search engine. Or well, it was supposed to be a search
+ engine, but ended up as a crawler, that collects statistics of various metrics, such as response codes, server
+ type, Tls version, Etc. It's still running, as the IPv4 space is quite large. Some of the best aspects of the
projects, was that I learned how to optimally handle high amounts of threads (up to 256 threads) for the scanner
to use, when finding websites on the internet.
-
- A little more about me :) I like to bike. I have a normal, bog-standard bike cycle, that I like to bike large
+
A little more about me :) I like to bike. I have a normal, bog-standard bike cycle, that I like to bike large
distances with. I try to aim at 80Km and as early as possible. Usually, when biking those distances, I aim to
start the journey at 5 in the morning. It gives a good jolt of energy, when the morning fog hits. Plus, when
start that early on, you usually find some pretty cool scenes. Like this image I took at 5:30 in the morning, not
too far from my apartment.
-
+
Not bad huh? The things you see when everyone is asleep.
-
+
And this is my humble bike. It has taken me many places, and it's still going strong.
diff --git a/src/components/Fortran/Fortran_Index.vue b/src/components/Fortran/Fortran_Index.vue
index 3a895a1..fd14b70 100644
--- a/src/components/Fortran/Fortran_Index.vue
+++ b/src/components/Fortran/Fortran_Index.vue
@@ -7,6 +7,10 @@
Fortran
Fortran is an interesting language. It's one of the older languages still in use to this very day.
+
+
diff --git a/src/components/Fortran/Fortran_Reading_Files.vue b/src/components/Fortran/Fortran_Reading_Files.vue
new file mode 100644
index 0000000..5d00924
--- /dev/null
+++ b/src/components/Fortran/Fortran_Reading_Files.vue
@@ -0,0 +1,11 @@
+
+
+
+
+
Reading A File In Fortran 90
+
+
+
+
\ No newline at end of file
diff --git a/src/components/Lisp/Lisp_Index.vue b/src/components/Lisp/Lisp_Index.vue
new file mode 100644
index 0000000..96c0baf
--- /dev/null
+++ b/src/components/Lisp/Lisp_Index.vue
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/main.ts b/src/main.ts
index 2a13c28..5470033 100644
--- a/src/main.ts
+++ b/src/main.ts
@@ -3,15 +3,27 @@ import {createRouter, createWebHistory} from "vue-router";
import './index.css'
import App from './App.vue'
import Home from "./components/Home.vue";
-import FortranIndex from "./components/Fortran/Fortran_Index.vue";
import About from "./components/About.vue";
+import FortranIndex from "./components/Fortran/Fortran_Index.vue";
+import PascalIndex from "./components/Pascal/Pascal_Index.vue";
+import LispIndex from "./components/Lisp/Lisp_Index.vue";
+import FortranReadingFiles from "./components/Fortran/Fortran_Reading_Files.vue";
const router = createRouter({
history: createWebHistory(),
routes: [
{path: '/', name: 'Home', component: Home},
{path: '/About', name: 'About', component: About},
- {path: '/Fortran', name: 'Fortran', component: FortranIndex}
+
+ {path: '/Fortran', name: 'Fortran', component: FortranIndex},
+ {path: '/Fortran/ReadingAFile', name: 'ReadingAFile', component: FortranReadingFiles},
+
+ {path: '/Pascal', name: 'Pascal', component: PascalIndex},
+
+
+ {path: '/Lisp', name: 'Lisp', component: LispIndex}
+
+
]
})