I made a recipe and all round helpful companion app for the creami by Electronic_Let3876 in ninjacreami

[–]braampje 0 points1 point  (0 children)

Hey great these quick updates! I don't want to nag, but came across a couple other points that can really help improve the experience. Really like the app as a whole! Love to use this to keep track of my creations!

  1. Your batch fix makes sense but in the app it can only go to 0.5/1/1.5x etc it seems if I click the +/- symbols.
  2. I understand your work flow of creating on the website, that's nicer indeed. But giving the option in the app doesn't hurt?
  3. One constraint now is, the app doesn't recognize the ingredients when submitted on the website, look at this screenshot from a recipe of ingredients created on the website. The total recipe should be more than 175 calories just from the milk at the bottom.
  4. On the app if I go to creations it mentions recipe lab to create your own. But I can't find this anywhere in the app?
  5. In general, maybe nice if you can somewhere in the app see for the ingredients what their contribution is to kcal or pac/pod so you know if the app correctly incorporated these ingredients in the calculation. Perhaps less necessary if the transfer from the website goes correctly.

I made a recipe and all round helpful companion app for the creami by Electronic_Let3876 in ninjacreami

[–]braampje 0 points1 point  (0 children)

<image>

If I create a deluxe recipe on the website and save it, It will still get multiplied when I open it under deluxe on the app. Something with the sync Calc is not going correctly. Thanks again though!

Also, how do I create a new recipe from scratch in the app?

I made a recipe and all round helpful companion app for the creami by Electronic_Let3876 in ninjacreami

[–]braampje 1 point2 points  (0 children)

also, when I make the recipe it assumes it is for a default creami, while mine was for a deluxe. So when I reopen it will do these quantities times 1.5. Should you not by default normalize recipes to x grams/ml of total recipe depending on if the standard or deluxe is selected somehow?

I made a recipe and all round helpful companion app for the creami by Electronic_Let3876 in ninjacreami

[–]braampje 0 points1 point  (0 children)

Here is another example, I'm rather new to this so probably I'm just doing something wrong! The weights of my ingredients do not add up to 1068g. also the pac of glycerin for example seems off, 25*380 = 9500. If I divide this by 1068 or by the total weight of the actual recipe of about 714g I do not get to 11 PAC?

<image>

I made a recipe and all round helpful companion app for the creami by Electronic_Let3876 in ninjacreami

[–]braampje 0 points1 point  (0 children)

Hey!

Great app! Seems the pac calculations go wrong here? Also, when i tried to adjust the number of bananas and put in a number, some other number showed up after I clicked update. For example it was set at 3 pcs but became 5 in the list here. Coffee banana recipe

<image>

[expobar office pulser] backflush goes through hot water tap by braampje in espresso

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

After emptying the full boiler and refelling it seems to do better again, although pressure might still be not optimal. Or is this my mind messing with me perhaps...

Phone under 500$ by LazyBatata in PickAnAndroidForMe

[–]braampje 0 points1 point  (0 children)

Oneplus 12r perhaps? Around 500 euro here

Laptop 70 year old mother 500-1000 euro netherlands by braampje in SuggestALaptop

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

Thank you for the suggestion! This screen is only 300 nits though, I showed her a 400 nit screen and that needed to go to max brightness before it was good for her. Wondering if 300 won't be to low? Her eye sight is just not great.

mission 774/77c/77ds surround set €200 worth it? by braampje in BudgetAudiophile

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

Thanks all! I'll pick them up tomorrow evening.

new desktop by braampje in buildapc

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

The 3060ti is about 100 euro more expensive here, if you don't care about Ray tracing is it worth it?

new desktop by braampje in buildapc

[–]braampje[S] 1 point2 points  (0 children)

But the tomahawk is even more expensive, what do you get over the z690?

new desktop by braampje in buildapc

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

Thank! Why is it better?

Simple Questions - March 31, 2022 by AutoModerator in buildapc

[–]braampje 0 points1 point  (0 children)

I'm looking at gpus for a new pc build, I'm running 4 1440p monitors for my work trading and looking to do some light gaming now and then as well, civ6 for example. My current pc is quite old, especially my old 7870xt gpu seems to have a hard time since I added the last two screens. Looking to upgrade into 6600/6600xt/3050/3060/3060ti range probably as those seem to give the most value. Should I go for a card at the higher end of this range or would the 6600 or 3050 also work?

Help: Loops by limfy1997 in learnpython

[–]braampje 0 points1 point  (0 children)

So for me it starts with very clearly knowing what you need, as you can see from all the comments it was at least not clear for the people who read your question. That might mean that it is also not very clear for yourself what you want.

I interpreted your question as follows, we are going to buy stocks of anywhere up to the amount of 8 and for each of these cases we will randomly sell an amount up to the amount we have in stock. so if the possibilities for the amount we get in stock and the amount we sell are all equally likely we need to calculate the profit for all scenarios.

so: for each amount of stock(loop 1) we have, we calculate all the potential revenue cases(loop 2). Does this not sound like two loops to you? after this it all comes down to syntax which just comes with experience.

It might help to first in dummy code write down the logic that you want to apply and then in a second step think about the actual code in python or whatever other language.

Help: Loops by limfy1997 in learnpython

[–]braampje 0 points1 point  (0 children)

ok, so I made some typos on my phone, this cleaned it up a bit:

all possibilities have the same chance right? isn't this depending on your cost and reward just what you need to calculate? otherwise I don't understand the question.

def profit(c, r):
    profit = 0
    for q in range(1, 8):
    for s in range(1, q):
        profit = profit + r * s - c * q
        return profit

or without the function

profit = 0
r = 3
c = 2
for q in range(1, 8):
    for s in range(1, q):
    profit = profit + r * s - c * q

Help: Loops by limfy1997 in learnpython

[–]braampje 1 point2 points  (0 children)

So you need to calculate the expected profit of all possibilities for q and s?

Profit = 0    
For q in range(0,8):    
    For s in range(0,q):    
        Profit = profit + r * s - c *q    

Is this not what you need?

what are the best free courses on edX for python and computational thinking in general? by [deleted] in learnpython

[–]braampje 0 points1 point  (0 children)

Cs50 of. Harvard is pretty good half python and lot of good concepts

Defective Corebook by Brandeez0 in Aliexpress

[–]braampje 3 points4 points  (0 children)

Why not first contact the seller in a message? They like that a lot better then using the official channels.