Skip to content

Commit

Permalink
logos updated
Browse files Browse the repository at this point in the history
  • Loading branch information
ilkersigirci committed Nov 2, 2024
1 parent ac21a08 commit a1324f2
Show file tree
Hide file tree
Showing 17 changed files with 80 additions and 138 deletions.
2 changes: 1 addition & 1 deletion journey/2020/1.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Bachelor's degree, Computer Engineering 🎓
month: 'June'
image: './metu-logo.svg'
image: '/metu_logo.svg'
---
Graduated from Middle East Technical University, Computer Engineering Department.
2 changes: 1 addition & 1 deletion journey/2020/2.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Started working at HAVELSAN
month: 'October'
image: './cg-logo.png'
image: '/havelsan_logo.svg'
---
I have started as Software Engineer at HAVELSAN Simulation Department.
2 changes: 1 addition & 1 deletion journey/2023/1.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Master of Science, Computer Engineering 🎓
month: 'September'
image: './cg-logo.png'
image: '/metu_logo.svg'
---
Graduated from Middle East Technical University, Computer Engineering Department.

Expand Down
4 changes: 2 additions & 2 deletions posts/blog-development/page.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
title: How This Blog is Built
description: Understanding the optimizations and technologies used in building this blog
date: '2024-7-26'
image: https://miro.medium.com/v2/resize:fit:1400/format:webp/1*PLD7lQ5hH8_6QVfDtCflcg.png
icon: '/posts/logo.png'
image: https://blog.ronin.cloud/content/images/size/w2000/2022/02/markdown.png
icon: '/posts/logo.jpg'
useIconInHome: true
tags:
- SvelteKit
Expand Down
58 changes: 0 additions & 58 deletions posts/code-test/page.md

This file was deleted.

Binary file added posts/logo.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed posts/logo.png
Binary file not shown.
52 changes: 49 additions & 3 deletions posts/markdown-compatibility/page.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
title: Markdown Compatibility
description: Markdown Compatibility Description
date: '2024-1-1'
image: https://miro.medium.com/v2/resize:fit:1400/format:webp/1*PLD7lQ5hH8_6QVfDtCflcg.png
icon: '/posts/logo.png'
useIconInHome: true
image: https://blog.ronin.cloud/content/images/size/w2000/2022/02/markdown.png
icon: '/posts/logo.jpg'
useIconInHome: false
tags:
- Programming
draft: true
Expand Down Expand Up @@ -299,3 +299,49 @@ function greet(name: string) {
- If one uses `enhanced:img` instead of default `img`, images must be located inside `src/assets/images` and they can be referenced only by their file name.
- [ ] Research this
- ![Svelte](/favicon.png)


## Long Code Block

```ts
import * as config from '$lib/config'
import type { Post } from '$lib/types'

export async function GET({ fetch }) {
const response = await fetch('api/posts')
const posts: Post[] = await response.json()

const headers = { 'Content-Type': 'application/xml' }

const xml = `
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
<channel>
<title>${config.title}</title>
<description>${config.description}</description>
<link>${config.url}</link>
<atom:link href="${config.url}/rss.xml" rel="self" type="application/rss+xml"/>
${posts
.map(
(post) => `
<item>
<title>${post.title}</title>
<description>${post.description}</description>
<link>${config.url}/${post.slug}</link>
<guid isPermaLink="true">${config.url}/${post.slug}</guid>
<pubDate>${new Date(post.date).toUTCString()}</pubDate>
</item>
`
)
.join('')}
</channel>
</rss>
`.trim()

return new Response(xml, { headers })
}
```

```python
# Long variable scroll test
longvariablename = "longvariablename_longvariablename_longvariablename_longvariablename_longvariablename_longvariablename_longvariablename_longvariablename_longvariablename_longvariablename"
```
4 changes: 2 additions & 2 deletions posts/my-thesis/page.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
title: My Thesis
description: ON THE USE OF LARGE LANGUAGE MODEL FOR VIRTUAL SCREENING
date: '2024-7-27'
image: https://miro.medium.com/v2/resize:fit:1400/format:webp/1*PLD7lQ5hH8_6QVfDtCflcg.png
icon: '/posts/logo.png'
image: https://blog.ronin.cloud/content/images/size/w2000/2022/02/markdown.png
icon: '/posts/logo.jpg'
useIconInHome: true
tags:
- Programming
Expand Down
64 changes: 0 additions & 64 deletions series/guide-markdown-blog/config.md

This file was deleted.

8 changes: 3 additions & 5 deletions series/guide-markdown-blog/create-new-blog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Creating a new Blog
description: Let's look at how to create a new Blog (Indivdual & Series)
date: '2023-12-20'
order: 2
image: https://res.cloudinary.com/practicaldev/image/fetch/s--YFzS8yLr--/c_imagga_scale,f_auto,fl_progressive,h_720,q_auto,w_1280/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/w9o5387e8s37g7r4i6dy.png
image: https://blog.ronin.cloud/content/images/size/w2000/2022/02/markdown.png
draft: false
---

Expand Down Expand Up @@ -106,7 +106,7 @@ date: '2023-12-20'
tags:
- SvelteKit
- MDsveX
image: https://res.cloudinary.com/practicaldev/image/fetch/s--YFzS8yLr--/c_imagga_scale,f_auto,fl_progressive,h_720,q_auto,w_1280/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/w9o5387e8s37g7r4i6dy.png
image: https://blog.ronin.cloud/content/images/size/w2000/2022/02/markdown.png
draft: false
---
```
Expand All @@ -118,7 +118,7 @@ title: Creating a new Blog
description: Let's look at how to create a new Blog (Indivdual & Series)
date: '2023-12-20'
order: 2
image: https://res.cloudinary.com/practicaldev/image/fetch/s--YFzS8yLr--/c_imagga_scale,f_auto,fl_progressive,h_720,q_auto,w_1280/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/w9o5387e8s37g7r4i6dy.png
image: https://blog.ronin.cloud/content/images/size/w2000/2022/02/markdown.png
draft: false
---
```
Expand Down Expand Up @@ -282,7 +282,5 @@ this becomes
\nabla \times \mathbf{B} = \mu_0 \left(\mathbf{J} + \varepsilon_0 \frac{\partial \mathbf{E}}{\partial t}\right)
```

in the next part, we'll look at other configurations.

---

2 changes: 1 addition & 1 deletion series/guide-markdown-blog/page.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ date: '2023-12-16'
tags:
- SvelteKit
- MDsveX
image: https://res.cloudinary.com/practicaldev/image/fetch/s--YFzS8yLr--/c_imagga_scale,f_auto,fl_progressive,h_720,q_auto,w_1280/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/w9o5387e8s37g7r4i6dy.png
image: https://blog.ronin.cloud/content/images/size/w2000/2022/02/markdown.png
draft: false
---
Binary file removed static/corgi-ai-dashboard.png
Binary file not shown.
20 changes: 20 additions & 0 deletions static/havelsan_logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed static/linear-reg-scratch.png
Binary file not shown.
File renamed without changes
Binary file removed static/og-root.png
Binary file not shown.

0 comments on commit a1324f2

Please sign in to comment.