Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)LU
Posts
18
Comments
92
Joined
1 yr. ago

Dungeons and Dragons @lemmy.world

What kinds of toxic masculinity have you encountered?

Ask Lemmy @lemmy.world

What kinds of toxic masculinity have you encountered?

  • A decent custom made surfboard, two very good but stock surfboards or 3-10(maybe more?) used surfboards. Or take 500 for a cheap flight to a surf destination and 500 for a board, which can get you a very good new one or 2-5 used surfboards.

  • Lemmy Shitpost @lemmy.world

    Which one did you choose????

  • 1. Python

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

    2. R

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

    3. C/C++

     c++
        
    #include <iostream>
    
    int main() {
      for (int i = 0; i <= 10; ++i) {
        std::cout << i << std::endl;
      }
      return 0;
    }
    
      

    4. Java

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

    5. Lua

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

    6. Bash (Shell Script)

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

    7. Batch (Windows Command Script)

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

    8. Go

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

    9. Rust

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

    10. Zig

     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

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

    12. Fortran

     fortran
        
    program count_to_ten
      implicit none
      integer :: i
    
      do i = 0, 10
        print *, i
      end do
    
    end program count_to_ten
    
      

    13. Haskell

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

    14. Julia

     julia
        
    for i in 0:10
        println(i)
    end
    
    
      
  • 3DPrinting @lemmy.world

    Why are there triangles in the infill that get filled with one layer?

    memes @lemmy.world

    Yes

    No Stupid Questions @lemmy.world

    If landlords didn’t exist anymore, how would shared flats work?

    3DPrinting @lemmy.world

    Weird extrusions

    Memes @lemmy.ml

    Nintendo announced the switch 2

    196 @lemmy.blahaj.zone

    rule

    Ask Lemmy @lemmy.world

    Is this a 2230 M.2 Slot?

    pics @lemmy.world

    Sunset Surf

    pics @lemmy.world

    Carcans Plage

    Ask Lemmy @lemmy.world

    What is this beautiful specimen called?

    Memes @lemmy.ml

    I’m that bench

    Ask Lemmy @lemmy.world

    When is it okay to tilt the camera for a photo?

    Science Memes @mander.xyz

    yarr

    memes @lemmy.world

    Seriously, almost all the posts are just doom scrolling. And yes, I'm aware of the irony

    Ask Lemmy @lemmy.world

    What’s happening with my cactus?