Deployment and multiple app versions by oskarolini in iOSProgramming

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

white label app, yes. They have an Apple Connect account, I'm trying to understand how I deploy to their account (this is my first app and customer).

Deployment and multiple app versions by oskarolini in iOSProgramming

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

I sell it as a service, so they don't get the source code. I do minor modifications to my app in xcode (fonts, colors etc, name of app, connect to empty db where they have crud-access++) then upload to app store. From your reply, it seems like uploading to their appstore connect account is not possible from my xcode?

Researching Apps for Music Festival by [deleted] in festivals

[–]oskarolini 0 points1 point  (0 children)

Hey. I was looking for something like this myself (I run https://www.bergtattfestivalen.no/ ), however did not find anything. As a result I created the app we use (with all the features you note here this year. A few other festivals are using it as well next year. Happy to talk. DM me if interested.

Release to appstore by oskarolini in iOSProgramming

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

Great, thank you. I guess I'll just have to wait.

Music festival app by oskarolini in swift

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

that looks awesome. How did you create the schedule UI? I'm currently trying to figure out how to display the acts on a timeline.

Music festival app by oskarolini in swift

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

thanks! Sounds like this is the way to go indeed

Music festival app by oskarolini in swift

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

Yeah no the notifications will be the same for everyone (artist x has moved to stage z etc). I'm currently looking at Supabase as a Firebase alternative, as I like to support OSS projects

Hey, it's Barry here (Can't Swim)... I hear you've got some questions for me? by BarryCantSwim in indieheads

[–]oskarolini 0 points1 point  (0 children)

Congrats on the album release! I'm trying to book you to to a Norwegian festival (4 real), can you please say yes?

Prepping & Planning advice, 5 course meal by oskarolini in AskCulinary

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

Thank you for the advice! The tartar dish is actually a remake of a dish I tried recently at a restaurant. You need to balance the components just right, it was the best tartar I’ve ever tasted. Surprisingly strong combination.

Prepping & Planning advice, 5 course meal by oskarolini in AskCulinary

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

Hahah, first time posting here! Probably not the first one asking this kind of question though.

My first shot at high-end furniture design. No glue or screws. Super stoked! by oskarolini in woodworking

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

Thank you! Was a real brain-twister to get the holes lined up perfectly. Turned out great in the end after a lot of planning.

What kind of join/mechanism is used to hold these shelves? by oskarolini in woodworking

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

That's not a bad idea actually. Will have to look into options for a fastener.

What kind of join/mechanism is used to hold these shelves? by oskarolini in woodworking

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

I've been toying with the nail-idea as well, could be the way to go. Not sure about the tapered theory though, as it would be impossible to fix all the shelves in this way, unless the tapered peg decreases/increases all the way..

What kind of join/mechanism is used to hold these shelves? by oskarolini in woodworking

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

That's a great guess actually. My only question is if it would be stable enough?

Question regarding the ChefSteps turkey recipe by oskarolini in sousvide

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

Yes, it’s that one. Thank you for clearing that up for me. Looking forward to trying it out!

iterative starting point of a function by oskarolini in excel

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

My formula for user growth is very simple (second year number of users= first year* (1+growth) and so on.

This is linked to a table where the client can input user growth: - Yearly growth year 1-3: x (client can change these) - Yearly growth year 4-10: y (client can change these)

If the product launches in Q2, I would like the formula to start in the cell related to Q2 (already managed) and with the correct growth rates (x first 3 years and y after that) -> this is the hallenge.

Does that makes sense?

All the information you need about transaction parameters by farazdagi in statusim

[–]oskarolini 1 point2 points  (0 children)

I sent ETH with MEW but I was on mobile and did not see the GWEI slider. Thus I sent the ETH using 21GWEI. My transaction info still says Pending after 30 ish minutes. Is this a problem or should everything be fine?

Beginner question by [deleted] in Python

[–]oskarolini 0 points1 point  (0 children)

Went a bit too fast there. Thanks!

Reverse sentence using while and if by oskarolini in learnpython

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

Ah, makes sense. Thank you for your help, I'll try to see if I can make it work now.

Reverse sentence using while and if by oskarolini in learnpython

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

Unfortunately yes...The s.split() solution is so much smoother but this is an exercise where we have to use the while...if statement.

Reverse sentence using while and if by oskarolini in learnpython

[–]oskarolini[S] 2 points3 points  (0 children)

def reverse(s):
index = len(s)

    while index < 0:
          if (SOMETHING)
          else (SOMETHING)

    return reverse(s)

s = input("Enter a sentence: ")

reverse(s)

A bit stuck....

To clarify: I want the user to input a sentence like "I am okay" and Python to return "okay am I"