← Home ← Back to /r9k/

Thread 82562701

9 posts 6 images /r9k/
ruby !!w/iqVkZlyVP No.82562701 [Report] >>82562745 >>82562764 >>82562774 >>82562777 >>82562785
i vibe coded my own nutrition app in two hours with chat gpt which is easy to use on my phone i can just tell chat gpt the foods i ate and they builds the json which runs in my app with cool emojis and correct calories then i can save which foods i selected and know later on how much food i ate so far
Anonymous No.82562745 [Report] >>82562759
>>82562701 (OP)
Congratulations you made a shitty myfitnesspal
ruby !!w/iqVkZlyVP No.82562759 [Report]
>>82562745
i dont wanna view ads and i eat the same foods every day so ill probably add like eight more things to this list in the next year might update with protein tho
Anonymous No.82562764 [Report]
>>82562701 (OP)
why use an app at all though and not just a note, it's honestly more work to use the app
Anonymous No.82562774 [Report]
>>82562701 (OP)
how do I make ai porn of someone though
Anonymous No.82562777 [Report] >>82562931
>>82562701 (OP)
do you understand any of the programming tho
Anonymous No.82562785 [Report] >>82562931
>>82562701 (OP)
you can do so much with chatgpt not just emails and AI sloppa, im so happy someone is using the tools my colleagues made... throughly. That's the future Geoffrey hinton envisioned for sure, you will adapt well in this world, just don't let it decide for you.

You should try out some more academic models like have you tried chatgpt with temp 0 and connecting it to other outputs you can make your own deep learning system basically it's heaven for the open source..except most people just don't care :(
ruby !!w/iqVkZlyVP No.82562931 [Report] >>82562938
>>82562785
i havent done much with training my own models i know things like dalle and self driving cars and drones interface with chat gpt as the knowledge and thinking context to think autonomously
>>82562777
define two js constants as the html elements with the IDs
food container and calories total
render foods function uses those parts of the app to display certain values to be updated after loads and interactions
food list is built by the load functions and is a list of food class objects with emoji calorie count and names
for each food build html div which is the foods button in the app
selected class turns the foods button green in css
inner html is built dynamically for each food in json and displays the info of the food class object with font twenty four food emoji
then normal font text title along with the count which is JavaScript in a template literal since the dollar symbole denotes js and the back ticks are template literals the question mark is a ternary operator or one line conditional if the operator is false then no count is displayed
the event listeners are added to each food div element which recognize taps on the phone as incrementing food count and long holds as decrementing food counts
then the calorie is update and the render function is updated whenever these listeners are triggered
the whole div is added to the container class which is the main class of the web app
ruby !!w/iqVkZlyVP No.82562938 [Report]
>>82562931
heres the code tho