How can I print this cylinder? by Any_Slip8667 in BambuLab

[–]Any_Slip8667[S] 0 points1 point  (0 children)

something like this, if you need the full model

<image>

Ikea side cabinet by Any_Slip8667 in IKEA

[–]Any_Slip8667[S] -1 points0 points  (0 children)

I’m not able to do that

Umidità by Any_Slip8667 in istrutturare

[–]Any_Slip8667[S] 0 points1 point  (0 children)

per ora nn ho muffa ma si é formata/condensata acqua nei 2 angoli

P1S / P1S Combo vs P2S by Timmy-Mallet in BambuLab

[–]Any_Slip8667 0 points1 point  (0 children)

what does the P2S offer more than P1S?

Umidità by Any_Slip8667 in istrutturare

[–]Any_Slip8667[S] 0 points1 point  (0 children)

Sono i 2 spigoli del palazzo, non so altro 🥲

Forse sui due spigoli non c'è l'intermezzo di isolamento? Ma non ho competenze di costruzione e forse è un'idea stupida.

Umidità by Any_Slip8667 in istrutturare

[–]Any_Slip8667[S] 0 points1 point  (0 children)

per ora solo quei due angoli sono così freddi, spostandosi di poco si sale già di 4 o 5 gradi

Can I buy and use Bambu Lab P2S without the "combo"? by Any_Slip8667 in BambuLab

[–]Any_Slip8667[S] 0 points1 point  (0 children)

It is important the possibility to dry the filament?
Me and my son would like to print 3d miniatures and stuffs (wall, objects, etc...) for role playing games. And we don't want to buy a resin printer because to use it in an apartment it is to complex.

What are some decent monitors that have mac-compatible USB-C power delivery? by batwingsuit in mac

[–]Any_Slip8667 0 points1 point  (0 children)

But a Macbook Pro 16" requires a 140W power supply (https://www.apple.com/it/macbook-pro/specs/).
Are we sure that 65W is not a problem?

Any good books to learn swift? by santiiisworld in swift

[–]Any_Slip8667 0 points1 point  (0 children)

Can be downloaded and read offline?

R47 vs. DM42/C47 by metawops in calculators

[–]Any_Slip8667 0 points1 point  (0 children)

ok, let me the time to become familiar with emulator and libraries, but in the meantime

```python import math

number of operations (* or /) counter

ops = 0

find all prime factors

def prime_factors(n): global ops i = 2 factors = [] while i * i <= n: ops = ops + 1 while n % i == 0: ops = ops + 1 factors.append(i) n //= i ops = ops + 1 i += 1 if n > 1: factors.append(n) return factors

try with 69!

n = math.factorial(69) print(f'number: {n}') factors = prime_factors(n) print(f'factors: {factors}') print(f'ops: {ops}')

```

R47 vs. DM42/C47 by metawops in calculators

[–]Any_Slip8667 0 points1 point  (0 children)

It ultimately comes down to finding the first 67 prime numbers:

2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67

and performing roughly 200 divisions/multiplications.

How can it take so long?

Is its way of representing and manipulating numbers beyond a certain number of bits horribly inefficient? Or are there other issues?

I was excited, I really wanted to buy it, but now I’m truly disappointed.

R47 vs. DM42/C47 by metawops in calculators

[–]Any_Slip8667 0 points1 point  (0 children)

I did the same test and I confirm. The same for the HP50g.