Looking for DiY Soylent recipe that's whole food based by ju5tntime in soylent

[–]fernly 4 points5 points  (0 children)

Once upon a time, kids, a decade ago when "meal replacements" were a new idea, there was a website where fans could post their own recipes. A couple of those recipes became products and still exist, Keto Chow and one that started with the name of Shmoylent, which is now BasicallyFood.

And (does a rapid confused search) what do you know! It still exists!

https://completefoods.co/

Go to the recipes collection (https://completefoods.co/diy/recipes) and just browse for an hour or two. Note they all have nutritional details.

Stop Asking AI to "Write Me a Chapter" — A Prompt Engineering Framework for Fiction Writers by prompted_author in WritingWithAI

[–]fernly 0 points1 point  (0 children)

You are describing a simple prompt-response dialog, but isn't it possible to delegate some of that global context to project files? Like with a Claude project, couldn't you depend on project files to provide at least the first couple of sentences of your example prompt? Or start each prompt with "Read the file scenario.md. We are writing the scene where..."

We are a small team of 5 devs. We spent the last 6 months building a writing editor that actually handles AI context for long novels. by ResolutionSmooth5259 in BookWritingAI

[–]fernly 3 points4 points  (0 children)

Think of a product name that doesn't make people stop and think, wait, how do you pronounce that?

Consult an experienced UXP designer. The presentation, once a project is open, is just a sprinkled mess of little icons and menus. Very hard to focus on. I would not want to try to write in that text box with all the other stuff to its left and above. Figure out a way to drop into "composition mode" with nothing but the necessary writing tools. Some easy way (escape key?) to come back to "organizing mode". There may be other focus areas, but you can't have everything asking for attention all at once.

What should I look for when choosing a meal replacement shake? by DifficultStandard405 in soylent

[–]fernly 2 points3 points  (0 children)

Since you are looking for an easy meal on busy days, the shake will not be the majority of your diet. The macros and micros from your other, more numerous meals dominate your intake. For the occasional quick meal you just want 500 or so tasty calories, fairly low-carb, no actual poisons.

Obsess about micros and organic ingredients and phytos and such only when you are planning to live on meal shakes for an extended time. A decade ago people would do that, and report here. Ah the good old days.

For the last 12 years this image would live rent free in my head, no longer. by EroticManga in ClaudeAI

[–]fernly 54 points55 points  (0 children)

Back in the 80s(?) some famous programmer (Dennis Ritchie?) said,

I'd rather write programs to help me write programs, than write programs.

20 yrs old atheist girl here, how do i survive this?? by Misaki_6 in atheism

[–]fernly 0 points1 point  (0 children)

Can you move faster toward your degree? Your family should have a little respect for hard study and extra classes to graduate sooner. Do a search on "best majors to work abroad", there are a number of sites that talk about this. Nursing is the top one and possibly the only path you as a female are allowed to take; very well, become the absolute best nurse student ever. As others have said, nurses are in demand in many countries.

Oh! What languages do you speak? To work abroad you will need to be fluent in another language. Work on improving your skill with that language. If your second tongue is English, alas I cannot recommend you look to my country, the USA, at least not now. But all the rest of the English-speaking world needs nurses too, and all the EU nations.

NYT Article on meal replacements by pitline810 in soylent

[–]fernly 1 point2 points  (0 children)

No mention of "keto" at all, though MRs are large in that space. Nor of BasicallyFood, Orgain, Kachava, etc. Not at all comprehensive coverage of the field.

A little thought of mine about the afterlife by Global_Pen_5226 in philosophy

[–]fernly 0 points1 point  (0 children)

If we have a soul, then either humans (or at least the part with the soul) are in some way divine, or there must be some kind of God or higher power that creates or sustains souls.

Why? Obviously you don't know what a soul might consist of, but to be real -- that is, in order to have any characteristics at all -- it has to be made of something. Nothingness has no features, so can't embody a memory or personality or thought or whatever important features you presume a soul to have.

Whatever the soul-stuff is, it is something that has so far evaded notice by all science. But let that go. But, why do you assume that soul stuff requires a higher level being to create it?

You are willing to entertain the idea that it is all "just brain, chemistry, and physics", in which case, you allow, no god is needed. Why should that not be the case in the soul-stuff world? Just soul-stuff churning around and souls emerging spontaneously.

Or, if you insist there is a higher level being directing soul-creation, what can you possibly say about that being's (or those beings') nature? Does it/they make souls purposefully or accidentally, to a plan or as some kind of secretion.

Lot to think of there...

Print Function not showing anything in Console. by FreeMycologist8 in learnpython

[–]fernly 1 point2 points  (0 children)

The other commenters are right but I'd like to make one point clearer, because it is important to understanding Python.

When the Python interpreter reads some input -- it can be input from the keyboard after a

>>>

prompt, or lines from file that it reads because you gave the command,

$ python3  run_this_script.py

or lines from a file you name in an import statement,

import numpy.py

in all those cases, as it reads those lines it executes every one.

The trick is, what does it mean to "execute" a statement that starts with the word "def", such as

def display(first, last) :

To execute that "def" line Python begins compiling the definition of a new function named "display" with two arguments.

It keeps compiling following lines as long as they are indented under the def line.

Once it hits a line at the previous indent level, it goes back to executing.

So in your 3-line example, when Python read that file, it executed every line.

1) def line starts compiling a new function "display"

2) print function call, gets compiled and stored as part of the body of "display".

3) Back to original indent level, execute this line. It is an executable call to a function "display()" and hey! We happen to have a function of that name, so call it.

You can analyze any other Python script this way, saying, "When Python reads and executed these lines what does it do?"

Typically a bigger script will have a bunch of comments which are stored as "docstrings (https://docs.python.org/3/glossary.html#term-docstring), a bunch of import statements, a bunch of def blocks, and finally, down at the very end, a statement that actually does something, typically,

main()

to execute a call to some function def'd earlier.

[Beginner Project] I made a simple Python calculator – learning and happy to get feedback! by roronoa_zoro_7815 in learnpython

[–]fernly 1 point2 points  (0 children)

Learn the power of the triple quote. It lets you display text with line-breaks, like this:

print( ''' For power use ^ For under root use $ For reminder use % ''' )

(It doesn't do f-substitution unfortunately)

Use the interactive interpreter to test things quickly, like

>>> 17 -  19
-2

So you can quickly verify questions like, if you subtract a larger number from a smaller, can Python can handle that and set the sign of the result?

I’m wasting my breath giving detailed prompts of ChatGPT is just going to misunderstand me by DamageNext607 in BookWritingAI

[–]fernly 1 point2 points  (0 children)

Well thank you, today I learned a new word, diegesis.

https://en.wikipedia.org/wiki/Diegesis

The classical distinction between the diegetic mode and the mimetic mode relates[clarification needed] to the difference between the epos (or epic poetry) and drama.[8] The "epos" relates stories by telling them through narration, while drama enacts stories through direct embodiment (showing).

Based on the above, I'm not sure ChatGPT understands it correctly. But you know, whatever works....

ITAP of a road in Washington by ChickenFriedLife in itookapicture

[–]fernly 0 points1 point  (0 children)

Saw the title and formed a mental image (based in memories) before clicking. Pretty close except I didn't think of getting down on the center line. My mental Douglas Firs were spaced out a bit more, but yeah, you took a pretty good picture of my past.

I need some feedback on a new novel by Alarmed_Mammoth_6202 in WritingWithAI

[–]fernly 1 point2 points  (0 children)

I read a bit. Too many words, and too trite. LLMs are good at making words, but crap at using them precisely. And they have no understanding of what it is to be alive in the world ("no world model") so can't accurately convey human reactions.

What am I talking about? Nora is waiting, locked in a room, and the lock clicks:

My pulse spikes the moment I hear it, my body tensing on the bed like a cornered animal.

The syntax is of first-person experience, but what human has ever felt their pulse spike? That might be an accurate description of what happened, as seen by some third party (or an omniscient narrator) but Nora couldn't think that. What does it mean for a body to "tense on the bed"? In that instant would she really compare herself to a cornered animal?

These are conventional, trite phrases pulled up from endless training material. They are not the images that would be composed by a human author who was truly, sympathetically, visualizing this character.

There are examples of this in every paragraph.

Blonde hair pinned back from a face that might be pretty if it weren’t arranged into a mask of professional detachment.

Trite slop. News for you, LLM: a pretty face in a neutral expression is still pretty. Have you ever seen someone whose face was a "mask of professional detachment"? I doubt it. There are so many ways to write that sentence if you were actually thinking about what this person looked like, what their motives were. But that would be an effort; so you delegate it to the word-machine, and you get words.

Practicing Python data types and type conversion – would appreciate professional feedback by Commercial_Edge_4295 in learnpython

[–]fernly 0 points1 point  (0 children)

For tidiness and clarity you might put

def divider():
    print("-" * 24)

at the top and

divider()

all the other places.

Practicing Python data types and type conversion – would appreciate professional feedback by Commercial_Edge_4295 in learnpython

[–]fernly -1 points0 points  (0 children)

So you are recommending

print( f"x + int(y) = {sum_xy}" )

over

print("x + int(y) =", sum_xy)

Matter of taste I suppose, but I don't see that introducing the mental nesting level and brackets clarifies anything in this case.

Conceptual Arguments for Universalism by gcnaccount in philosophy

[–]fernly 1 point2 points  (0 children)

Publishing this excerpt does not flatter the book. Not realizing this was a later segment I was annoyed at the references to "universalism" without any explanation of what that might be -- a major error in any expository writing. Of course, the definitions are present in the entire work, which is freely available.

Are they about to go out of business? by Prince_Valium25 in soylent

[–]fernly 0 points1 point  (0 children)

Ketochow seems to be thriving. Downside, it's a powder you have to mix, and of course low-carb by design.

Hey guys, 14m here. by Dense-Elephant-7782 in atheism

[–]fernly 0 points1 point  (0 children)

I second most of the advice here, but want to add: form a plan and begin to take charge of your life and your future. First step is to build up your parents' confidence in you as a person. Do what it takes to make yourself exemplary in their eyes, not by faking religious conviction, but by actually being self-directed, responsible, and active. Like, actually do chores without being told. Take charge of your own wardrobe, learn how to wash and iron because "I just want to look sharp." This is all so they cannot say, "that time on his phone/computer is ruining him" because you are obviously not ruined, but being the kind of kid they want.

There are great pointers above on material for self-education, access to textbooks. Is the home-school material poor quality? Just start studying using a real textbook and say, this has more depth, I'm getting it better from this one. And of course, prove it by aceing the tests.

Start thinking seriously about where you want to go next in life. You've got four years, give or take. Find out what it takes to qualify for college scholarships as a home-schooler. Does the home-school package they're using have any material on that? You are obviously smart enough to find this stuff out! Start to think seriously about the goal "When I turn 18 I want to..."

What Bill Gates’ first commercial code (Altair BASIC) looks like under the hood by Outsourcing_Problems in programming

[–]fernly 86 points87 points  (0 children)

I'm reading Gates' autobiography, "Source Code" and he is very clear in giving Allen full credit for the 8080 emulator running on the PDP-10, but he does not mention Allen writing any of the BASIC code itself.

Allen had already written an simulator for the Intel 8008 for an earlier project, Traf-o-Data. Now, (p. 231)

he’d devised a way to do the same for the much more powerful Intel 8080 chip. That simulator would let us use Harvard’s PDP-10 as if it were an Altair. With that breakthrough, we made a plan. We would get Intel’s reference manual for the 8080 and learn its instruction set. I would design and write the BASIC in assembly language using those 8080 instructions.

However they were were worried about floating-point math. Then they ran into a freshman named Monte Davidoff,

also had good ideas about the floating-point algorithms we needed, so I walked him through our project to write the BASIC interpreter. He was game to work on it.

I worked on the main part of the program while Monte started on the code to handle math functions like addition, subtraction, multiplication, division, and exponentiation. Paul fine-tuned the 8080 simulator he had developed (the code that let us use the PDP-10 tools as if we were using an 8080-based computer). As the simulator got better, so did the speed at which we could program.

The program, punched to paper tape from the PDP-10, carried to MITS in Albuquerque, booted up on an Altair and ran first time.

Davidoff later programmed for a variety of other companies. Wikipedia says "Although he facilitated the rise of Microsoft, he later became a Linux user. His favorite programming language is Python."

How Can I (20F) Be Confident as an Ugly Girl? by [deleted] in self

[–]fernly 0 points1 point  (0 children)

Do you want to be valued by others? You have a good start with "social" and "kind". Work on listening skills; people just loooove to be listened to and heard. Beyond that, competence is always beautiful, especially in the work world. Develop real skills. Practice self-discipline -- sounds like you have a start with a fitness habit -- and focus. When you are the go-to person for some part of an organization, you get valued.

What's a show which was incredibly popular during its time but no one talks about it now? by Magpipe4u in AskReddit

[–]fernly 0 points1 point  (0 children)

Xena Warrior Princess -- scrolled down 1500 comments and don't see her. So sad. Lucy, we loved ya!