Some of these you can eat and others make great firestarters. That’s all I remember about them
luluu
- 12 Posts
- 73 Comments
Technically correct, the best kind of correct
I thought it would be a metal 3D printing process, not a 3d mold printing :(
Crazy. Mine is almost the reverse of your order
luluu@lemmy.worldOPto
Ask Lemmy@lemmy.world•What kinds of toxic masculinity have you encountered?
3·4 个月前Love the ideas
luluu@lemmy.worldOPto
Ask Lemmy@lemmy.world•What kinds of toxic masculinity have you encountered?
18·4 个月前To make satire of them and laugh about it
luluu@lemmy.worldOPto
Ask Lemmy@lemmy.world•What kinds of toxic masculinity have you encountered?
11·4 个月前Thanks for your view, I hadn’t considered music before.
luluu@lemmy.worldOPto
Ask Lemmy@lemmy.world•What kinds of toxic masculinity have you encountered?
11·4 个月前Except 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
Lemmy Shitpost@lemmy.world•Why is Lemmy attempting to radicalise people to enforce class wars?
15·4 个月前I am really confused by the community this was posted in. Is it a genius shitpost or someone not understanding how social media works?
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.
Nah thanks, I want to program by solving logic problems, not syntax problems.
vim evangelists incoming although they are on panel 3
luluu@lemmy.worldto
No Stupid Questions@lemmy.world•How much has the ratio of accidental vs intentional pregnancies changed over time?
16·5 个月前I suspect now 80 years later we’re at a much narrower elongated triangle shape again.
Nope, every developed country with a birthrate below 2.1 (surprise, that’s every developed country) currently has a vase shape with the peak at people around 50-60 years, which is a massive problem for pensions. Social systems are going to be challenged massively
Yes I cheated. To be fair, I used each of those languages at one point and knew how to do it but was to lazy to look it up again.
Edit: except Fortran
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) end6. Bash (Shell Script)
for i in $(seq 0 10); do echo $i done7. 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_ten13. Haskell
main :: IO () main = mapM_ print [0..10]14. Julia
for i in 0:10 println(i) end










I’ve been using it for months now and I had zero crashes. Is this a platform thing or just because I’m mostly only using the parts menu?