Crazy. Mine is almost the reverse of your order
luluu
- 7 Posts
- 49 Comments
luluu@lemmy.worldOPto Ask Lemmy@lemmy.world•What kinds of toxic masculinity have you encountered?3·1 month agoLove the ideas
luluu@lemmy.worldOPto Ask Lemmy@lemmy.world•What kinds of toxic masculinity have you encountered?18·1 month agoTo make satire of them and laugh about it
luluu@lemmy.worldOPto Ask Lemmy@lemmy.world•What kinds of toxic masculinity have you encountered?11·1 month agoThanks for your view, I hadn’t considered music before.
luluu@lemmy.worldOPto Ask Lemmy@lemmy.world•What kinds of toxic masculinity have you encountered?10·1 month agoExcept the stuff about men being better than women, toxic masculinity sounds a lot like men gatekeeping other men (and themselves) 🤔 thanks for the long answer!
luluu@lemmy.worldto Ask Lemmy@lemmy.world•What does 1000€ buy you in your favourite hobby?2·1 month agoA 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.
Why is the tooth Italian and what’s wrong with an Italian tooth??
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
luluu@lemmy.worldto Technology@lemmy.world•YouTube removes 'gender identity' from hate speech policyEnglish10·4 months agoPeerTube isn’t bad, it just has no content
luluu@lemmy.worldto Ask Lemmy@lemmy.world•*HOW* can we coax search-engines in to being able to do the simple "lemmy" + "search word" thing..?1·4 months agoYou mean that zeppelin was high in the clouds and motorhead are oil heads?
luluu@lemmy.worldto Selfhosted@lemmy.world•What does the 3-2-1 rule look like for you?English1·6 months agoCurrently only have pictures and documents stored, so everything easily fits on 1tb. One copy on my homeserver (unencrypted), one copy on my laptop (Luks encrypted), and one copy with rsync and a raspi at my parents (unencrypted). Might change encryption strategies to all luks.
The cybertruck was a douchebag car from the beginning
Your porn websites have cookie banners?
luluu@lemmy.worldto Technology@lemmy.world•Apple accused of using conflict mineralsEnglish501·8 months 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.
luluu@lemmy.worldto Technology@lemmy.world•Wubuntu: The lovechild of Windows and Linux nobody asked forEnglish25·8 months agoCursed sibling of uwuntu
Arch Linux