What is the newest installment of 'Random Thoughts' on Physics Forums?

  • Thread starter Thread starter Evo
  • Start date Start date
  • Tags Tags
    Random Thoughts
Click For Summary
The discussion revolves around frustrations with current documentary programming, particularly criticizing the History Channel's focus on sensational topics like time travel conspiracies instead of real historical content. Participants express disappointment over National Geographic's sale to Fox, fearing a decline in quality programming. The conversation shifts to lighter topics, including humorous anecdotes about everyday life, such as a malfunctioning kitchen fan discovered to be blocked by installation instructions. There are also discussions about the challenges of understanding various dialects in Belgium, the complexities of language, and personal experiences with weather and housing in California. Members share their thoughts on food, including a peculiar dish of zucchini pancakes served with strawberry yogurt, and delve into mathematical concepts related to sandwich cutting and the properties of numbers. The thread captures a blend of serious commentary and lighthearted banter, reflecting a diverse range of interests and perspectives among participants.
  • #3,691
My project lost it's sysadmin a few weeks ago. I've had to take over until we can get a replacement (and I train him).
So, this has been my life for the past few weeks... :rolleyes:

TonightWeTestInProd.jpg
 

Attachments

  • TonightWeTestInProd.jpg
    TonightWeTestInProd.jpg
    38.7 KB · Views: 816
  • Like
Likes Ibix
Physics news on Phys.org
  • #3,692
Can someone provide an answer to a question I have, that seems half baked to me, before I start a thread.

Namely, in the MWI, every possible world is equally real. Yet, this reality seems only seems real to me. I mean, to kind of dumb down the question into a nutshell, 'why haven't I won the lottery yet'?
 
  • #3,693
There people from this company "AE" that read "AE better world". Why leave out a measure-zero non-better world?
 
  • #3,694
Borg said:
So, this has been my life for the past few weeks... :rolleyes:

View attachment 225519
I explained the distinction between dev, test and prod to my wife, and then showed her the Leonidas meme. She laughed, then questioned whether the punchline was worth the two minute lecture on IT methodology. :frown:
 
  • #3,695
Ibix said:
I explained the distinction between dev, test and prod to my wife, and then showed her the Leonidas meme. She laughed, then questioned whether the punchline was worth the two minute lecture on IT methodology. :frown:
Is this part of the whole " This is Parta" (Sparta?) t-shirt logos I have been seeing?
 
  • #3,696
WWGD said:
Is this part of the whole " This is Parta" (Sparta?) t-shirt logos I have been seeing?
I've not seen those logos, but I don't see the link beyond both being lines from 300 (edit: both from Leonidas, in fact). I think the movie is just so scenery chewingly over-the-top (mis-)quotable that it gets used for all sorts of things.
 
  • #3,697
Ibix said:
I explained the distinction between dev, test and prod to my wife, and then showed her the Leonidas meme. She laughed, then questioned whether the punchline was worth the two minute lecture on IT methodology. :frown:
There is a difference?
 
  • #3,698
fresh_42 said:
There is a difference?
A difference between dev, test and prod? So I'm told.
 
  • #3,699
Ibix said:
A difference between dev, test and prod? So I'm told.
Yeah, sometimes there can be found traces in the mud, but often it's too difficult to observe them in the wild ... because it's ...
 
  • #3,700
Ibix said:
A difference between dev, test and prod? So I'm told.
In the prod version all the error-checking is removed, so you won't know why it went wrong.
 
  • Like
Likes Borg
  • #3,701
DrGreg said:
In the prod version all the error-checking is removed, so you won't know why it went wrong.
No, only their name is different: they are called change requests instead of error protocol :biggrin:
 
  • #3,702
DrGreg said:
In the prod version all the error-checking is removed, so you won't know why it went wrong.
In production it doesn't go wrong. There are just unintended features.
 
  • Like
Likes StoneTemplePython and Bystander
  • #3,703
DrGreg said:
In the prod version all the error-checking is removed, so you won't know why it went wrong.
Even if using Agile/Sprint? EDIT: Agile/Scrum.
 
Last edited:
  • #3,705

Attachments

  • 1277035813-239197_1_schuh-1FNG.jpg
    1277035813-239197_1_schuh-1FNG.jpg
    27.6 KB · Views: 674
  • #3,707
Ibix said:
In production it doesn't go wrong. There are just unintended features.

Wait, I know this one.

ItsAFeature.jpg
 

Attachments

  • ItsAFeature.jpg
    ItsAFeature.jpg
    20.7 KB · Views: 690
  • Like
Likes collinsmark and Ibix
  • #3,709
Speaking of features. What can I do when my company installs a version of Windows 10 that locks the screen if there isn't any input for 15 minutes and the settings can't be changed even with admin rights?
This of course. :devil:
Java:
public static void main(String args...) {
    Robot robot = new Robot();
    Random random = new Random();
    while(true) {
        Point point = MouseInfo.getPointerInfo().getLocation();    // Get the current mouse location
        point.setLocation(point.getX()+random.nextInt(1), point.getY()+random.nextInt(1));    // Move x and y one pixel randomly
        robot.mouseMove(((int)point.getX()), ((int)point.getY());
        Thread.sleep(800000);      // wait 14 minutes and move it again  
    }
}
 
  • Like
Likes collinsmark, fresh_42 and Ibix
  • #3,710
I don't know why search results never contain actual answer visible without/before clicking. If you, e.g., ask for the translation of Sturgeon to German, all you see are hits with lines like: The word Sturgeon translates into German as ... and you have to click to see the actual answer.
 
  • #3,711
Borg said:
Speaking of features. What can I do when my company installs a version of Windows 10 that locks the screen if there isn't any input for 15 minutes and the settings can't be changed even with admin rights?
Clearly the solution is to find your system admin and hurt him.
 
  • Like
Likes fresh_42
  • #3,712
Borg said:
Speaking of features. What can I do when my company installs a version of Windows 10 that locks the screen if there isn't any input for 15 minutes and the settings can't be changed even with admin rights?
This of course. :devil:
Java:
public static void main(String args...) {
    Robot robot = new Robot();
    Random random = new Random();
    while(true) {
        Point point = MouseInfo.getPointerInfo().getLocation();    // Get the current mouse location
        point.setLocation(point.getX()+random.nextInt(1), point.getY()+random.nextInt(1));    // Move x and y one pixel randomly
        robot.mouseMove(((int)point.getX()), ((int)point.getY());
        Thread.sleep(800000);      // wait 14 minutes and move it again 
    }
}
One had to laugh if it wasn't so sad.
 
  • #3,713
WWGD said:
I don't know why search results never contain actual answer visible without/before clicking. If you, e.g., ask for the translation of Sturgeon to German, all you see are hits with lines like: The word Sturgeon translates into German as ... and you have to click to see the actual answer.
Another example of an English word in which one missing letter leads to a completely different meaning. English is the worst error correcting code I've ever seen.
 
  • #3,714
fresh_42 said:
Another example of an English word in which one missing letter leads to a completely different meaning. English is the worst error correcting code I've ever seen.
So you won't reveal the answer either. You're as bad as they are...;).
 
  • #3,716
WWGD said:
So you won't reveal the answer either. You're as bad as they are...;).
I'm still working on a good answer. My best guess so far is, that you've won a bet and we're talking about caviar.
 
  • #3,717
fresh_42 said:
I'm still working on a good answer. My best guess so far is, that you've won a bet and we're talking about caviar.
More like something to see with the Sturgeon General. Who recommends _not_ to eat fish. At least not sturgeon.
 
Last edited:
  • Like
Likes phinds
  • #3,718
WWGD said:
More like something to see with the Sturgeon General.
No, I just saw they were selling sturgeon in a store and I was curious.
 
  • #3,719
WWGD said:
No, I just saw they were selling sturgeon in a store and I was curious.
You can't write it here anyway without stearching for the ASCII code of "ö" :-p
 
  • #3,720
fresh_42 said:
You can't write it here anyway without stearching for the ASCII code of "ö" :-p

"ö" No!
 

Similar threads

  • · Replies 2K ·
63
Replies
2K
Views
57K
  • · Replies 3K ·
89
Replies
3K
Views
159K
  • · Replies 2K ·
76
Replies
2K
Views
170K
  • · Replies 4K ·
134
Replies
4K
Views
235K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 3K ·
112
Replies
3K
Views
360K
  • · Replies 21 ·
Replies
21
Views
2K
  • · Replies 14 ·
Replies
14
Views
2K
Replies
5
Views
1K
  • · Replies 8 ·
Replies
8
Views
2K