mirror of
https://github.com/Pagwin-Fedora/website.git
synced 2025-07-18 22:35:42 +00:00
Compare commits
2 commits
b5eac75dbd
...
7c0dda8b70
Author | SHA1 | Date | |
---|---|---|---|
|
7c0dda8b70 | ||
|
43e22ca3b8 |
3 changed files with 58 additions and 0 deletions
15
content/blog/micro_blogs_2.md
Normal file
15
content/blog/micro_blogs_2.md
Normal file
|
@ -0,0 +1,15 @@
|
|||
---
|
||||
|
||||
title: "Micro blogs (2)"
|
||||
|
||||
description: "a bunch of thoughts ideas and what not that aren't worth of full blogs but that I still want to write down"
|
||||
|
||||
date: "2024-01-30"
|
||||
|
||||
draft: true
|
||||
|
||||
---
|
||||
|
||||
# I think react native or expo is haunted
|
||||
|
||||
|
16
content/critique.md
Normal file
16
content/critique.md
Normal file
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
|
||||
title: "Rust flaws and skill issues randomly critiquing a blog"
|
||||
|
||||
description: ""
|
||||
|
||||
date: "2024-01-30"
|
||||
|
||||
draft: true
|
||||
|
||||
---
|
||||
|
||||
read this and write about thoughts: https://medium.com/@austin-starks/i-spent-18-months-rebuilding-my-algorithmic-trading-in-rust-im-filled-with-regret-d300dcc147e0
|
||||
|
||||
https://doc.rust-lang.org/std/backtrace/index.html
|
||||
and gdb for backtrace
|
27
content/critique2.md
Normal file
27
content/critique2.md
Normal file
|
@ -0,0 +1,27 @@
|
|||
---
|
||||
|
||||
title: "How is C useful for for understanding how computers work?"
|
||||
|
||||
description: ""
|
||||
|
||||
date: "2024-01-30"
|
||||
|
||||
draft: true
|
||||
|
||||
---
|
||||
|
||||
Read this first [https://irreal.org/blog/?p=12304](https://irreal.org/blog/?p=12304) I'm going to be critiquing it and you should read it and understand what it says first so you can make fun of me for misreading it.
|
||||
|
||||
- It's not verilog
|
||||
- Most C programs written by beginners aren't operating systems
|
||||
- Most C programs written by beginners aren't using syscalls directly
|
||||
- C doesn't map cleanly to asm due to UB and compiler optimizations and also because of compiler optimizations
|
||||
|
||||
```c
|
||||
// what x86 asm does this translate to and is it really a clean mapping?
|
||||
int example(){
|
||||
int a = 5;
|
||||
int b = something();
|
||||
return a;
|
||||
}
|
||||
```
|
Loading…
Reference in a new issue