|
I recognize myself in all this again. Have you also experienced that it is more difficult to perform in front of people you know (more or less), but it is much easier with completely strangers?
Btw. did you noticed my note about thyroid function...
[Edit]
I think the basic problem is that we put too much demand on ourselves, that we always expect to be perfect.
Do yourself a favour, _allow_ yourself to fail then and when
[Edit1]
Queen - The Show Must Go On (with lyrics) – In memory of Freddie Mercury - YouTube[^]
It does not solve my Problem, but it answers my question
modified 9hrs 5mins ago.
|
|
|
|
|
0x01AA wrote: Btw. did you noticed my note about thyroid function... Yeah, never had it checked.
What would be wrong with it?
0x01AA wrote: Have you also experienced that it is more difficult to perform in front of people you know (more or less), but it is much easier with completely strangers? Nope, it's all pretty much the same I think.
0x01AA wrote: _allow_ yourself to fail I've failed plenty of times, that's why I now take beta blockers
One time I failed miserably in English class, much to the pleasure of my class mates.
I did a presentation on gaming and I didn't really prepare.
So I discussed the various genres, sweating, stuttering and sounding like a mix between a sheep and a goat.
They then started to ask me all kinds of silly questions, like if I ever came outside or if sat behind my computer all day.
I just rolled with it, answering like "sun, what's that?" and "you mean there's something different than gaming?"
They asked me questions until the end of that class, just to mock me.
I then got a 9 (out of 10) because "my pronunciation was correct and apparently the class liked my presentation because they kept asking questions."
The class expected me to fail, but that backfired when I got the highest grade of the class.
Those assholes were not amused
Task failed successfully!
|
|
|
|
|
Many years ago, my mentor at the time told me: "When you have to speak to a large group of people, imagine that you are looking out over a field of cabbages. Then address them like you are talking to a cabbage patch."
I never forgot that advice.
|
|
|
|
|
Unfortunately, it's not that simple.
Cabbages make me very nervous
|
|
|
|
|
Quote: Cabbages make me very nervous
Why? Remember they are at your mercy. You can always boil them and eat them! 
|
|
|
|
|
Sander Rossel wrote: Not the answer I was expecting. I don't see how that's a problem. You may have preferred a more boring answer, but it's just that; an answer. It's not like she offered you some.
Bastard Programmer from Hell
If you can't read my code, try converting it here[^]
"If you just follow the bacon Eddy, wherever it leads you, then you won't have to think about politics." -- Some Bell.
|
|
|
|
|
I just didn't know how to respond to that and it made things a bit awkward.
I don't think she really appreciated my advice of taking more (legal) drugs
The conversation was pretty much over after that.
My friend and I had a good laugh about it afterwards
|
|
|
|
|
So talking about beta-blockers is a c*ck-blocker?
Gotcha. Cheers.
I wanna be a eunuchs developer! Pass me a bread knife!
|
|
|
|
|
They generally take a couple of days to be visible, but I got the "approve" email from Urban Dictionary for Manrange: Of flowers, to be stuffed in a vase so the multi-coloured bits are at the top.
I got you some flowers dear - I manranged them in that vase
I've had one of those days: we got up this morning, and found no hot water, so I've had to fix that - turned out it was the immersion heater thermostat (cheap to buy) but whoever built the abortion that is the water cabinet only gave me 16 inches between the top of the hot tank and the bottom of the shelf supporting the cold water tank. And the thermostat is 18 inches, so getting it out was ... um ... fun. Getting the new one in was even more so since I had to be rather more careful with this one.
Arranging Herself's weekly flowers tidily was never going to happen. Manranging was. And did.
"I have no idea what I did, but I'm taking full credit for it." - ThisOldTony
AntiTwitter: @DalekDave is now a follower!
|
|
|
|
|
Congratulations on the word! I also had a nasty experience with a household contraption last week. We suddenly found our refrigerator bottom drawer for the freezer compartment was stuck. It turns out over time some stuff in the freezer had fallen out and behind the freezer drawer, preventing its door from closing completely. Moisture got into the freezer and froze the drawer slides solidly in place.
Luckily it was just a matter of cleaning out the freezer compartment, to get the drawer operating again.
The joys of home ownership! 
|
|
|
|
|
|
The element is always fun - particularly with an old tank, as the neck gets brittle. So when you put that big spanner on and start turning, it may not be the thread that is moving - and then it;s new tank time.
I leave those to people who have insurance against damage like that ... fortunately this was just the thermostat, which is - in theory - remove two wires and lift up. Until it hits the ceiling and there is no more up to lift it into. :swearword: :swearword: :swearword:
"I have no idea what I did, but I'm taking full credit for it." - ThisOldTony
AntiTwitter: @DalekDave is now a follower!
|
|
|
|
|
Congrats with the word !
I had some fun too today placing a floodlight next to the backdoor of our house, mounting the thing was no problem but then I had to connect it to an existing junction box.
The box seemed large enough, but it proved to be a real hassle to cram everything in!

|
|
|
|
|
Does the sound of one hand clapping necessitate the user wearing protective ear defenders with a SNR between 20 and 30?
"I have no idea what I did, but I'm taking full credit for it." - ThisOldTony
AntiTwitter: @DalekDave is now a follower!
|
|
|
|
|
Yes - on one ear!
Freedom is the freedom to say that two plus two make four. If that is granted, all else follows.
-- 6079 Smith W.
|
|
|
|
|
Microsoft's CodeDOM does not support operators like += or ++ so while I can emulate them, sort of, my emulated operators will not call the appropriate operator overloads.
Well in the C# compiler that shipped with very early .NET I think you could call the static operator overload methods like op_Addition() manually.
Now, it throws a compile error. This is terrible.
A) There shouldn't be special knowledge of certain static methods, such that the compiler flags them as uncallable.
B) Now I have no way to truly simulate certain operators using the CodeDOM in a language independent manner.
When I was growin' up, I was the smartest kid I knew. Maybe that was just because I didn't know that many kids. All I know is now I feel the opposite.
|
|
|
|
|
Can't you just translate the lines with that operators back to "normal"?
M.D.V.
If something has a solution... Why do we have to worry about?. If it has no solution... For what reason do we have to worry about?
Help me to understand what I'm saying, and I'll explain it better to you
Rating helpful answers is nice, but saying thanks can be even nicer.
|
|
|
|
|
No because I don't render the code in the final target language. I simply build the abstract syntax tree for it, and the AST doesn't have anywhere to indicate these types of operators, ergo, the target renderers cannot render them.
A long time ago, I made my own custom renderer for C# that would take things like that, and turn them back to normal as you say, but it requires a custom renderer for each target language, which defeats the purpose of my code.
When I was growin' up, I was the smartest kid I knew. Maybe that was just because I didn't know that many kids. All I know is now I feel the opposite.
|
|
|
|
|
Quote: On behalf of Microsoft, International Data Corporation (IDC), a leading technology market research firm, is conducting a global research study. Are you getting these emails? Are you filling in the survey? How seriously do you take it?
.
.
.
.
.
.
Because they take it ultra-non-seriously...
Quote: Survey Completed - Thank You
We are sorry, but it appears that you don't meet the requirements for this survey.
Thank you! And the survey was sent via my Microsoft account that registered with a co.il email address and the country on it is Israel...
"The only place where Success comes before Work is in the dictionary." Vidal Sassoon, 1928 - 2012
|
|
|
|
|
They are probably using Microsoft software with Microsoft AI 
|
|
|
|
|
RickZeeland wrote: They are probably using Microsoft software with Microsoft AI
Ad-Lib Intelligence?
They call me different but the truth is they're all the same!
JaxCoder.com
|
|
|
|
|
Yes, very old intelligence (it was used in the Ad-Lib soundcard) 
|
|
|
|
|
Kornfeld Eliyahu Peter wrote: Are you getting these emails? No
Kornfeld Eliyahu Peter wrote: Are you filling in the survey? Very probably no
Kornfeld Eliyahu Peter wrote: How seriously do you take it? Not that much
Considering the previous "listen to users / insiders / professionals" that Microsoft has done last years... Do you really think it would make a difference if the survey was answered?
M.D.V.
If something has a solution... Why do we have to worry about?. If it has no solution... For what reason do we have to worry about?
Help me to understand what I'm saying, and I'll explain it better to you
Rating helpful answers is nice, but saying thanks can be even nicer.
|
|
|
|
|
Kornfeld Eliyahu Peter wrote: Are you getting these emails? Unsolicited, and therefore deleted unopened.
I wanna be a eunuchs developer! Pass me a bread knife!
|
|
|
|
|
Slang will read it's own program file, that contains C# code to turn C# code into VB code.
It will then use that on itself to turn its own C# code into VB code.
Woot.
It's stupid, and ridiculous, and cool.
When I was growin' up, I was the smartest kid I knew. Maybe that was just because I didn't know that many kids. All I know is now I feel the opposite.
|
|
|
|