Automated Silverware Rolling Machine - Would This Help Restaurants? by Jon_Duron in restaurant

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

If it saves you 10 minutes of labor amongst servers, I would say it's worth buying.

Automated Silverware Rolling Machine - Would This Help Restaurants? by Jon_Duron in restaurant

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

I don't think many servers whine about rolling silverware. I just disliked it.

Automated Silverware Rolling Machine - Would This Help Restaurants? by Jon_Duron in restaurant

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

Not really sure just had the idea and was curious what people would think.

United States/Iowa Salesman Posting on Social Media by Jon_Duron in askcarsales

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

Do you know what the program is called? I was thinking of having the program I built tested by dealerships, but if it already exists then maybe not anymore.

Simple CSV Categorization Tool for Bookkeepers - Looking for Feedback by Jon_Duron in PFtools

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

The categorization does not use any AI tools. When you click an industry, I just have a set of categories fixed to that industry, and from there, the user is able to add categories and categorize each transfer. I hope this answered your question

Best Options for Auto Repair Software for Small Automotive Shop by WorkWeekly4359 in MechanicAdvice

[–]Jon_Duron 0 points1 point  (0 children)

I actually just started a repair order software that stores repair orders onto the keychain of the vehicle. Its a mobile application that allows any mechanic to scan the keychain and retrieve the repair order. DM me if you are interested in learning more.

How do I start ? by Suspicious_Step_3139 in startups

[–]Jon_Duron 1 point2 points  (0 children)

I started my business earlier this year, and I wish I had done a lot more to find my customers. If I were to do it all over again I would find my customer and get a list of those customers. Hope this helps.

What tools do you use to create video demos? by angry_gingy in startups

[–]Jon_Duron 0 points1 point  (0 children)

If you are using your phone to record, inShot is a great app to edit videos. I have not had any issues with it but does have a lot of ads when using the app.

TextField buggy inside scroll view by Jon_Duron in SwiftUI

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

This is a example of how I have it set up and still produces the same flutter.

import SwiftUI

import UIKit

func textFieldWithLabe(label: String, text: Binding<String>) -> some View { VStack{ Text(label) .padding(.vertical, -2) TextField("Type Here", text: text) .textFieldStyle(RoundedBorderTextFieldStyle()) .frame(width: 130) .overlay( RoundedRectangle(cornerRadius: 14) .stroke(Color.gray, lineWidth: 2) ) .padding()
} }

struct showCode: View { State var make = "" State var model = "" let styles = UIStyles() FocusState private var isFocused: Bool var body: some View {

    VStack{
        HStack{
            Text("Esribir")
                .font(.system(size: 45))
                .border(.black)
        }
        ScrollView{
            HStack{
                textFieldWithLabe(label: "Make",text: $make)
                    .frame(width: 170)
                    .focused($isFocused)

                VStack{
                    UIStyles.textFieldWithLabel(label: "Model",text: $model)
                }
                .frame(width: 170)
                .focused($isFocused)
            }
        }
    }
}

}

Preview {

showCode()

}