Random Thoughts 7

  • Thread starter Thread starter Evo
  • Start date Start date
Click For Summary
The discussion in the "Random Thoughts 7" thread begins with a user expressing a desire to have the first civilian post. Participants reminisce about a missing member, Evo, and share their hopes for her well-being. The conversation shifts to humorous musings about chatbots and the origins of the term "robot," followed by reflections on pop culture, including reactions to Matthew Perry's passing. There are also light-hearted anecdotes about close encounters with deer while driving and observations on the challenges of transitioning from undergraduate to graduate studies. Overall, the thread captures a mix of nostalgia, humor, and personal experiences.
  • #1,861
skyshrimp said:
I first thought they would just make a synthetic human, but these robots will be super human.

If this tech got in the wrong hands, with rogue AI, I have no idea what might happen.

The future is very uncertain. I'm not just talking robotics. AI can make a virus can can kill mankind.

The world as we know it is about to change rapidly.
skyshrimp said:
Obviously, we won't have synthetic humans in 12 months, but with each yearly quarter, AI will change the world.

Sorry, just rambling random thoughts :smile:
Don't put all your money in AI stocks just yet:
nsaspook said:
https://garymarcus.substack.com/p/the-last-few-months-have-been-devastating

Game over. AGI is not imminent, and LLMs are not the royal road to getting there.​

 
Physics news on Phys.org
  • #1,862
I finally understood " Escalation of Privilege", after a visit by relatives.
 
  • #1,863
skyshrimp said:
This video is 16 years old.
This video showing high speed reactions is all very interesting but not what the adverage person needs .. We need robotic house servants , INDISTINGUISHABLE FROM HUMANS . not the clunking robot looking contraptions which are state of the art at present .... to pick our dirty laundry from the floor and put in the washing machine , wash the dishes, make our beds... they would move with the smoothness and grace of a human . The human form is large , no challenging miniturizationn to overcome . Why his hasn"t been done already is beyond me.
 
  • #1,864
Given there are .dat files, shouldn't we also have .dis files?
 
  • #1,865
WWGD said:
Given there are .dat files, shouldn't we also have .dis files?
You mean dis?

File created by Oracle Discoverer, a spreadsheet program. Saves a workbook that can consist of multiple populated spreadsheets, referred to as worksheets. Used for business intelligence reporting and analysis.
 
  • #1,866
fresh_42 said:
You mean dis?
Indeed, dieser.
 
  • #1,867
triangles.webp
 
  • Like
Likes BillTre, dextercioby, Klystron and 1 other person
  • #1,868
oz93666 said:
This video showing high speed reactions is all very interesting but not what the adverage person needs .. We need robotic house servants , INDISTINGUISHABLE FROM HUMANS . not the clunking robot looking contraptions which are state of the art at present .... to pick our dirty laundry from the floor and put in the washing machine , wash the dishes, make our beds... they would move with the smoothness and grace of a human . The human form is large , no challenging miniturizationn to overcome . Why his hasn"t been done already is beyond me.

I was just imagining if a family purchased one of the currently available robots (like the G1 Unitree) as a house servant. It would have a learning AI that grew with the household and witnesed al the deaths and births. They could transfer the AI to an upgraded model and it will live with the family for decades until the upgrades became an actual synthetic human. If someone inherited the robot in their will, they could transfer the AI to another robot to give to another sibling.

That is actually almost possible now. It would make a good sci-fi movie.
 
  • #1,869
In mathematics:

* The symbol **x** usually represents an **unknown** quantity or **variable** quantity.
Example:
( 2x + 3 = 7 )

So here, **x** has no fixed value until you solve for it.

---

In computer science / programming:

When you write something like:

```c
int x;
```

it means:

* **`int`** = data type (an integer type — whole numbers)
* **`x`** = the name of a variable (a named storage location in memory)

So this line says:

“Create a variable named `x` that can hold an integer value.”

But does it mean “unknown”?

Not really — at least, **not in the same way** as in math.

In programming:

* `x` is *a container* for data, not an unknown to solve.
* It might start out uninitialized (i.e., it doesn’t yet *contain* a known value), but it’s not “unknown” in the algebraic sense.

For example:

```c
int x; // declared, but has no value yet (uninitialized)
x = 5; // now x holds the integer 5
```

So while `x` might not have a *value yet*, it’s not an *unknown* to be solved — it’s just a variable ( name ) that will eventually store data.
 
  • #1,870
laymanhobbist said:
In mathematics:

* The symbol **x** usually represents an **unknown** quantity or **variable** quantity.
Example:
( 2x + 3 = 7 )

So here, **x** has no fixed value until you solve for it.

---

In computer science / programming:

When you write something like:

```c
int x;
```

it means:

* **`int`** = data type (an integer type — whole numbers)
* **`x`** = the name of a variable (a named storage location in memory)

So this line says:

“Create a variable named `x` that can hold an integer value.”

But does it mean “unknown”?

Not really — at least, **not in the same way** as in math.

In programming:

* `x` is *a container* for data, not an unknown to solve.
* It might start out uninitialized (i.e., it doesn’t yet *contain* a known value), but it’s not “unknown” in the algebraic sense.

For example:

```c
int x; // declared, but has no value yet (uninitialized)
x = 5; // now x holds the integer 5
```

So while `x` might not have a *value yet*, it’s not an *unknown* to be solved — it’s just a variable ( name ) that will eventually store data.
It seems you got your posts mixed up. Which post are you addressing here?
 
  • #1,871
fresh_42 said:
You mean dis?
The universe makes sense again. Danke.
 
  • #1,872
laymanhobbist said:
So while `x` might not have a *value yet*, it’s not an *unknown* to be solved — it’s just a variable ( name ) that will eventually store data.
If this is intended as a "random thought" - and yes, it does qualify as such - what's going on here is that the word "variable" means something different to mathematicians and computer programmers. That's not a problem with either the mathematicians or the software people, it's an example of how natural language naturally overload words.
 
  • Like
  • Agree
Likes laymanhobbist, collinsmark, WWGD and 1 other person
  • #1,873
Nugatory said:
If this is intended as a "random thought" - and yes, it does qualify as such - what's going on here is that the word "variable" means something different to mathematicians and computer programmers. That's not a problem with either the mathematicians or the software people, it's an example of how natural language naturally overload words.
I used to get pretty confused at the swap between the informal use of words in daily language and in the technical sense. Maybe we can choose a special font to go between the two. The term 'Likelihood' comes to mind here, used informally to mean the probability, and technically refers to something else.
 
  • #1,874
Nugatory said:
If this is intended as a "random thought" - and yes, it does qualify as such - what's going on here is that the word "variable" means something different to mathematicians and computer programmers. That's not a problem with either the mathematicians or the software people, it's an example of how natural language naturally overload words.
And your IDE/Programming environment is like your autistic friend who can't use context to narrow down or discard different possible meanings. You may correctly write 1,000 lines of code and the 1,001 st line contains one mistake and the code will not run/compile.
 
  • #1,875
WWGD said:
I used to get pretty confused at the swap between the informal use of words in daily language and in the technical sense. Maybe we can choose a special font to go between the two.
No way. I can't count how many different fonts I have used throughout the years. I have \mathbb{}, \mathcal{}, \mathfrak{}, \mathrm{}, \mathbf{}, \mathscr{} on this keyboard alone, now add the fonts I downloaded (Sueterlin, Cyrillic, e.g.), Greek, and whatnot. Another font would only complicate things even further, and most of all, would be immediately and inevitably abused by mathematicians.
 
Last edited:
  • Like
Likes collinsmark
  • #1,876
fresh_42 said:
No way. I can count how many different fonts I have used throughout the years. I have \mathbb{}, \mathcal{}, \mathfrak{}, \mathrm{}, \mathbf{}, \mathscr{} on this keyboard alone, now add the fonts I downloaded (Sueterlin, Cyrillic, e.g.), Greek, and whatnot. Another font would only complicate things even further, and most of all, would be immediately and inevitably abused by mathematicians.
I meant a general font to separate the formal use of a fixed term to determine if it's used formally or informally.
 
  • #1,877
WWGD said:
I meant a general font to separate the formal use of a fixed term to determine if it's used formally or informally.
Good luck with that, but chances of it sticking are virtually nil (if the past is any indication of the future). Language is chaotic and weird.

Just think of how kids* commandeered the use of the word literally, making it an emotive, sarcastic synonym of figuratively. "My head literally exploded when I heard the news about Jesse." The same fate would await the font.

*kids at the time, of a few decades ago
 
  • #1,878
collinsmark said:
Good luck with that, but chances of it sticking are virtually nil (if the past is any indication of the future). Language is chaotic and weird.

Just think of how kids* commandeered the use of the word literally, making it an emotive, sarcastic synonym of figuratively. "My head literally exploded when I heard the news about Jesse." The same fate would await the font.

*kids at the time, of a few decades ago
I will try to find a way, irregardless ;).
Edit: I would use parentheses with my hands at times. Maybe there's some gesture that can be used to the effect of the distinction for/in speech.
 
  • Like
Likes collinsmark
  • #1,879
WWGD said:
I meant a general font to separate the formal use of a fixed term to determine if it's used formally or informally.
Many legal documents do that. At the beginning of most of my insurance policies there is a section of definitions, stuff like “PERMITTED DRIVER means ….” and throughout the document the term is capitalized to indicate that that is exactly what is intended.
 
  • Like
  • Wow
Likes symbolipoint, WWGD and collinsmark
  • #1,880
collinsmark said:
Language is chaotic and weird.
The better wording would be that language is highly context sensitive.
WWGD said:
I will try to find a way, irregardless ;).
Don't we already have italic, cursive, all kinds of quotation marks, hyphen, semicolon, parentheses? What more do you need?
 
  • Agree
Likes jack action
  • #1,881
fresh_42 said:
The better wording would be that language is highly context sensitive.

Don't we already have italic, cursive, all kinds of quotation marks, hyphen, semicolon, parentheses? What more do you need?
Maybe just that at least one of those is consistently used, implemented.
 
  • Informative
Likes symbolipoint
  • #1,882
fresh_42 said:
The better wording would be that language is highly context sensitive.

What I meant to convey is that languages change over time. Sure you can define your terms for a specific document (as @Nugatory points out above), but expanding usage outside of use specific documents with well defined terms (e.g., a glossary), the general usage of any given common language changes chaotically.
 
  • #1,883
Does anyone here worry that AI will make them unemployed in the near future?

It will soon process information instantly, rendering your services obsolete.
 
  • #1,884
skyshrimp said:
Does anyone here ...
At PF?
skyshrimp said:
... worry that AI will make them unemployed ...
Well, we aren't employed.
skyshrimp said:
... in the near future?
There is a trend of fewer new posts over the last decade, but I don't think this is because of AI.
skyshrimp said:
It will soon process information instantly, rendering your services obsolete.
No. Learning in STEM fields cannot be compared with studies like law, where mainly facts are important rather than their combinations, or with courses like anatomy. You can learn facts in mathematics or physics, but you won't understand them just by facts.
 
  • #1,885
fresh_42 said:
At PF?

Well, we aren't employed.

There is a trend of fewer new posts over the last decade, but I don't think this is because of AI.

No. Learning in STEM fields cannot be compared with studies like law, where mainly facts are important rather than their combinations, or with courses like anatomy. You can learn facts in mathematics or physics, but you won't understand them just by facts.
If it were possible for AI to do that there wouldn't be hundres/thousands of Annotator jobs in several areas.
 
  • #1,886
It took only half an hour with an oldtimer Slot1 device to remember why did I hate Asus motherboards so much way back... o0) :doh:
 
  • #1,887
I tossed out some trash in the kitchen at work this morning and saw that someone had thrown out two bins worth of perfectly good, unopened and unexpired food. Usually people put things on the counter if they don't want stuff. What a senseless waste. :frown:
 
  • #1,888
Screenshot 2025-11-14 at 9.45.31 AM.webp
 

Similar threads

Replies
11K
Views
560K
  • · Replies 3K ·
89
Replies
3K
Views
159K
  • · Replies 2K ·
76
Replies
2K
Views
170K
  • · Replies 53 ·
2
Replies
53
Views
6K
  • · Replies 14 ·
Replies
14
Views
2K
  • · Replies 4K ·
134
Replies
4K
Views
235K
  • · Replies 113 ·
4
Replies
113
Views
9K
  • Sticky
  • · Replies 0 ·
Replies
0
Views
4K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 8 ·
Replies
8
Views
2K