23
121
lukstru

@lemmy.world

lukstru 95 points a year ago

Arch Linux

path: 0 18177629, hotness: undefined, score: 95, children: 14
lukstru 95 points 2 years ago

path: 0 13903003, hotness: undefined, score: 95, children: 1
lukstru 90 points 2 years ago

If they think Adblock should be forbidden because it changes source code, then this is hypocrisy

path: 0 13657195, hotness: undefined, score: 90, children: 0
lukstru 86 points 2 years ago

I recently held a science slam about this topic! It's a mix of the first computer scientists being mathematicians, who love their abbreviations, and limited screen size, memory and file size. It's a trend in computing that has been well justified in the past, but has been making it harder for people to work together. And the need to use abbreviations has completely gone with the age of auto completion and language servers.

path: 0 12001423 12002720, hotness: undefined, score: 86, children: 31
lukstru 76 points a year ago

Why is the tooth Italian and what’s wrong with an Italian tooth??

path: 0 16836855, hotness: undefined, score: 76, children: 1
lukstru 66 points a year ago

1. Python

for i in range(11):
    print(i)

2. R

for (i in 0:10) {
  print(i)
}

3. C/C++

#include <iostream>

int main() {
  for (int i = 0; i <= 10; ++i) {
    std::cout << i << std::endl;
  }
  return 0;
}

4. Java

public class CountToTen {
  public static void main(String[] args) {
    for (int i = 0; i <= 10; i++) {
      System.out.println(i);
    }
  }
}

5. Lua

for i = 0, 10 do
  print(i)
end

6. Bash (Shell Script)

for i in $(seq 0 10); do
  echo $i
done

7. Batch (Windows Command Script)

@echo off
for /l %%i in (0,1,10) do (
  echo %%i
)

8. Go

package main

import "fmt"

func main() {
  for i := 0; i <= 10; i++ {
    fmt.Println(i)
  }
}

9. Rust

fn main() {
  for i in 0..=10 {  // 0..=10 includes 10
    println!("{}", i);
  }
}

10. Zig

const std = @import("std");

pub fn main() !void {
    var i: i32 = 0;
    while (i <= 10) {
        std.debug.print("{}\n", .{i});
        i += 1;
    }
}

11. Scala

for (i <- 0 to 10) {
  println(i)
}

12. Fortran

program count_to_ten
  implicit none
  integer :: i

  do i = 0, 10
    print *, i
  end do

end program count_to_ten

13. Haskell

main :: IO ()
main = mapM_ print [0..10]

14. Julia

for i in 0:10
    println(i)
end
path: 0 16517575, hotness: undefined, score: 66, children: 10
lukstru 61 points 2 years ago

path: 0 13657039, hotness: undefined, score: 61, children: 0
lukstru 60 points 2 years ago

path: 0 11767950 11768345 11769089, hotness: undefined, score: 60, children: 0
lukstru 49 points 2 years ago

path: 0 14046211, hotness: undefined, score: 49, children: 0
lukstru 46 points a year ago

vim evangelists incoming although they are on panel 3

path: 0 17358433, hotness: undefined, score: 46, children: 5
lukstru 39 points 2 years ago

Seith rechnet mit einem Freispruch. »Die Schweiz würde sich ja sonst als Rückzugsort der internationalen Finanzmarktkriminalität präsentieren«, sagte er.

monkey puppet meme mit der Schrift: Schweiz

path: 0 13886346, hotness: undefined, score: 39, children: 0
lukstru 35 points 2 years ago

White, male privilege and loving parents that supported me in all ways when needed. Seriously, life has been almost on peaceful mode, definitely easy mode.

path: 0 13895001, hotness: undefined, score: 35, children: 2
lukstru 33 points 2 years ago

The cybertruck was a douchebag car from the beginning

path: 0 15067335 15067513, hotness: undefined, score: 33, children: 3
lukstru 33 points 2 years ago

It has always worked exactly as I expected it to

Just expect it to break, then it will behave as expected taps head

path: 0 13950078 13950685 13950741, hotness: undefined, score: 33, children: 1
lukstru 28 points 2 years ago

path: 0 13509030, hotness: undefined, score: 28, children: 0
lukstru 25 points 2 years ago

Cursed sibling of uwuntu

path: 0 13827387, hotness: undefined, score: 25, children: 2
lukstru 24 points 2 years ago

path: 0 11781146 11782267, hotness: undefined, score: 24, children: 0
lukstru 21 points 2 years ago

Tbh it's not only grandma. Grandpa was involved as well, and it was usual that grandpa wanted to but grandma not, and they did it anyways.

path: 0 11398967, hotness: undefined, score: 21, children: 0
lukstru 20 points 2 years ago

Obligatory comment that recommends Framework, as they support linux out of the box.

Aside from that, more important than the brand is the laptop model. Some parts (like fingerprint, camera or touchpad) may not work with linux, and that depends on the model, not the brand. So I'd suggest searching for the model you're interested in, and then combining that search with Arch (usually has the latest - but sometimes unstable - packages, so you'll see what's probably possible), Debian (wide user base, but older packages, so you'll see what definitely works) and then EndeavourOS, to see any issues that may come up that are really relevant for you.

path: 0 13644386, hotness: undefined, score: 20, children: 8
lukstru 20 points 2 years ago

path: 0 11830498, hotness: undefined, score: 20, children: 0

thanks for using Leebra!

go to feed...