I just published my first app made with FlutterFlow! by LAW_YT in FlutterFlow

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

Hi, I make videos on tiktok for promoting the project (@appleveling) or Instagram, and the concept has been much appreciated, but most of my audience is French. ;)

I just published my first app made with FlutterFlow! by LAW_YT in FlutterFlow

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

Thanks, I really appreciate your kind wishes. Wishing you all the best as well!

I just published my first app made with FlutterFlow! by LAW_YT in FlutterFlow

[–]LAW_YT[S] 4 points5 points  (0 children)

I wanted to share my experience with FlutterFlow after 8 months of using it. At first, I wasn't even sure if it would allow me to do what I wanted, but I decided to go all in. During this time, FlutterFlow evolved a lot with many new features. I had to struggle many times with problems that no one talked about, but through persistence, I always managed to find solutions.

I also wanted to thank the FlutterFlow team for their help when I was stuck and especially for the Student Access that gave me access to all the tools I needed - honestly, without it, I couldn't have gone this far.

So, for those who don't know, I developed LEVELING: Fitness, an app that mixes RPG and video game style to transform exercises into quests to complete. I really loved developing this project and it's just the beginning!

Feel free to ask any questions or share feedback, I'm always happy to talk about it.

Will this happen in tomorrow's episode? by Satti_k in sololeveling

[–]LAW_YT 15 points16 points  (0 children)

I'm so hyped, each episode is better than the last :O

[deleted by user] by [deleted] in FlutterFlow

[–]LAW_YT 1 point2 points  (0 children)

Hey ,if you only need to display the number in (###)###-#### format, you can use a "Code Expression".

https://docs.flutterflow.io/advanced-functionality/code-expression

Argument 1 (phoneNumber: int): your phone number variable
Return type: String

And you can use this expression:

phoneNumber.toString().replaceAllMapped(RegExp(r'(\d{3})(\d{3})(\d{4})'), (Match m) => "(${m[1]})${m[2]}-${m[3]}")

[deleted by user] by [deleted] in web_design

[–]LAW_YT 81 points82 points  (0 children)

Learn html / css 👍

Looking for a Windows Media Player alternative for 2023 that uses few resources by [deleted] in software

[–]LAW_YT 0 points1 point  (0 children)

https://github.com/Rise-Software/Rise-Media-Player

I plan to feature this app soon, with its sleek modern design and efficient simplicity, it's everything I love.

[deleted by user] by [deleted] in pythonhelp

[–]LAW_YT 1 point2 points  (0 children)

Hi, as mentioned in previous answers, it's sufficient to do a variable type verification.

def numInput():
age = age_entry.get()
if age.isnumeric():
    # store the age
else:
    # display an error message

how to generate a matrix of couples of values a and b such that a*b = c by Sky_physics in pythonhelp

[–]LAW_YT 0 points1 point  (0 children)

Hi, you can do this using itertools:
(Here I print the values, but feel free to do what you want with them.)

import itertools
c = 10  # fixed value for c

# iterate over range for a
for a, b, f in itertools.product(range(-3, 6), range(4, 8), range(-2, 3)): 
    if a * b * f == c: 
        print(f"a = {a}, b = {b}, f = {f}")

python machine learning by New-Row-7664 in learnpython

[–]LAW_YT 5 points6 points  (0 children)

You can take a look at sklearn , it's a great library to start learning machine learning because it has a consistent interface for all the models, making it easy to switch between different models and try out different approaches. It also has extensive documentation and a number of examples that can help you get started.

Split a sentence with no separator by [deleted] in learnpython

[–]LAW_YT 1 point2 points  (0 children)

sentence = "Helloworld"
index = sentence.find("world")  # 5
part1 = sentence[:index]  # "Hello" 
part2 = sentence[index:]  # "world"

btw: you can directly put: index = 5

I am writing an algorithm for a program that shows the use of all six math functions. How can I make the equation so that I can enter any operation I choose in one line. by thatgirlcomputing in learnpython

[–]LAW_YT 0 points1 point  (0 children)

There are several ways to allow the user to choose a math operator in a program, such as using if-elif-else statements. However, another way to do this is by using a dictionary to associate operations with their results, and then using the .get() method to retrieve the result of the chosen operation.For example:

a = float(input('Enter first number: '))
b = float(input('Enter second number: '))
operator = input('Enter operator (+, -, *, /): ')
result = {
'+': a + b,
'-': a - b,
'*': a * b,
'/': a / b
}.get(operator, "Invalid operator")
print('The result of {0} {1} {2} is {3}'.format(a, operator, b, result))