Add first Fortran page

This commit is contained in:
Rasmus Rasmussen 2025-01-31 14:13:57 +01:00
parent f5a3fb8de5
commit 6cd8c60d24
5 changed files with 47 additions and 11 deletions

View File

@ -22,29 +22,27 @@
really. The most important part is that I learn something. Like with my project
<a class="underline" href="https://rbwr.dk/posts/setting_up_a_new_blazor_interactive_server_side_render_project/">where I was setting
up a Blazor Interactive SSR web app.</a> 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" <code>[^1]</code></p>
upload, or some of the newer C# syntax, like the "Index from end expression" that looks like this <code>[^1]</code></p>
<br>
<p>
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
<p>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.</p>
<br>
<p>
A little more about me :) I like to bike. I have a normal, bog-standard bike cycle, that I like to bike large
<p>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.</p>
<br>
<img src="/public/Images/avif/PXL_20230708_030149199_scaled.avif" alt="Meadow with fog.">
<img src="/public/Images/avif/PXL_20230708_030149199_scaled.avif" alt="Meadow with fog." loading="lazy" decoding="async">
<p>Not bad huh? The things you see when everyone is asleep.</p>
<br>
<img src="/public/Images/avif/PXL_20230720_032828882_scaled.avif" alt="My humble bike.">
<img src="/public/Images/avif/PXL_20230720_032828882_scaled.avif" alt="My humble bike." loading="lazy" decoding="async">
<p>And this is my humble bike. It has taken me many places, and it's still going strong.</p>
</div>

View File

@ -7,6 +7,10 @@
<h1 class="text-3xl">Fortran</h1>
<hr>
<p>Fortran is an interesting language. It's one of the older languages still in use to this very day.</p>
<br>
<ul>
<li><RouterLink to="/Fortran/ReadingAFile">Reading A File</RouterLink></li>
</ul>
</div>

View File

@ -0,0 +1,11 @@
<script setup lang="ts">
</script>
<template>
<div>
<h1 class="text-3xl">Reading A File In Fortran 90</h1>
<hr>
<p></p>
</div>
</template>

View File

@ -0,0 +1,11 @@
<script setup lang="ts">
</script>
<template>
</template>
<style scoped>
</style>

View File

@ -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}
]
})