|
I loved this one. I feel smarter when I’m not the only one who can’t figure it out!
If you can't laugh at yourself - ask me and I will do it for you.
|
|
|
|
|
So, after a long battle between a short and elegant clue (but maybe too easy) or a long wordy one, I went for length (and none of this is a clue):
Following a distorted representation of my surroundings, my very existence seems confused with an area beyond my vision. This will only increase! (9)
Clue 2, still 9 letters!
Pilfer! I am wicked and this will only increase!
modified 11-Aug-21 6:30am.
|
|
|
|
|
|
Sadly, universe has only 8 letters.
|
|
|
|
|
Damn! I miscounted... 
|
|
|
|
|
CONFUSION?
Well, it's nine letters, and it's been increased since reading your clue ...
"I have no idea what I did, but I'm taking full credit for it." - ThisOldTony
"Common sense is so rare these days, it should be classified as a super power" - Random T-shirt
AntiTwitter: @DalekDave is now a follower!
|
|
|
|
|
Whilst "confusion" may be an accurate assessment, it is not the answer!
(Apologies, I have to pop out soon but should be back by 10:30)
|
|
|
|
|
I have absolutely no idea
"I didn't mention the bats - he'd see them soon enough" - Hunter S Thompson - RIP
|
|
|
|
|
This could be a major error on my part, the stress of doing another one might finish me off!
All I can say is that, when broken down into small parts it looks do-able, but then again, it's easy when you know the answer.
(And there are no subtle clues hidden in this response!)
|
|
|
|
|
They always look doable when you compose them - I ask a mate of mine what he thinks if I'm unsure of the doability - as I've said before composing a challenging but solvable clue is very difficult.
"I didn't mention the bats - he'd see them soon enough" - Hunter S Thompson - RIP
|
|
|
|
|
|
|
Does anyone else keep track of these? I set a couple of simple filters for them, probably miss a lot, and am amazed at how many business and mailing list emails I get containing them. I don't open most of them. Some are legit, like eCommerce order information.
>64
If you can keep your head while those about you are losing theirs, perhaps you don't understand the situation.
|
|
|
|
|
I have no clue what you are talking about.
CI/CD = Continuous Impediment/Continuous Despair
|
|
|
|
|
Old stuff:
https://www.theverge.com/2019/7/3/20681508/tracking-pixel-email-spying-superhuman-web-beacon-open-tracking-read-receipts-location
I see things like this:
img src=3D"https://openrate.aweber.com/y/=
o/?l=3DGtG2v&m=3Dxxxxxxxxxxxxxx" width=3D"1" height=3D"1"
x's to protect the guilty. Sometimes it is width="1", etc.
>64
If you can keep your head while those about you are losing theirs, perhaps you don't understand the situation.
|
|
|
|
|
How about an article on this topic? I will be interested!
Get me coffee and no one gets hurt!
|
|
|
|
|
I don't bother tracking them. I have "block remote content" as default and I can allow an individual message or whitelist an origin. The mailing lists I'm on are NOT whitelisted!
Software rusts. Simon Stephenson, ca 1994. So does this signature. me, 2012
|
|
|
|
|
I was working on a minor UI update. I need to add a "close" button to an alert. It's 30 seconds work, but the alert wasn't showing so I couldn't test the button. I fire up the debugger and start tracing why the alert wasn't showing.
Funnily enough it was because the "show alert" flag wasn't being set. Which was because the query string for the "show alert" trigger was malformed. Which meant a "Do I show the alert" function had the wrong input.
Except it was totally and utterly the wrong "Do I show the alert" function. The function being called was in code that was obsolete and wholly replaced by a new component. Which opened up an entire new level of bugs and issues and testing and my afternoon completely shot.
Because I couldn't test a single bit of CSS properly.
I'm just curious as to what innocuous seeming bugs you've worked on that let loose the Kraken of bugs for you to deal with.
cheers
Chris Maunder
|
|
|
|
|
The Kraken and I are on a first name basis and regularly go for coffee.
"Time flies like an arrow. Fruit flies like a banana."
|
|
|
|
|
The source of the majority of the problems I see daily is the mentality that 1) we don’t have enough unit tests, so rather than refactor and force QA/myself to retest all affected code paths, I’ll create a *new copy* of existing code and 2) there’s no way to know when my code changes actually cause dead code, so don’t ever worry about cleaning up.
|
|
|
|
|
(1) is a major problem almost everywhere. (2) is difficult in the absence of serious code coverage, for which all those unit tests are a prerequisite--unless you simply mean types, data, and functions that aren't even used. Most static analysis tools don't identify the latter, which suggests that the people responsible for the tool's specifications have no experience as architects.
|
|
|
|
|
|
my head already hurts. That stuff is evil.
Charlie Gilley
<italic>Stuck in a dysfunctional matrix from which I must escape...
"Where liberty dwells, there is my country." B. Franklin, 1783
“They who can give up essential liberty to obtain a little temporary safety deserve neither liberty nor safety.” BF, 1759
|
|
|
|
|
Not so much with bugs, but new feature requests. I had a request to change a combo box (single select) to a multi-select checked list box for a search application. Seemed simple enough until I started down this rabbit hole of missing functionality and archaic code. What should have taken me 30 minutes or so took me 4 days.
"When you are dead, you won't even know that you are dead. It's a pain only felt by others; same thing when you are stupid."
Ignorant - An individual without knowledge, but is willing to learn.
Stupid - An individual without knowledge and is incapable of learning.
Idiot - An individual without knowledge and allows social media to do the thinking for them.
modified 19-Nov-21 21:01pm.
|
|
|
|
|
I have received a perf issue that a machine was unusable due to a schtasks.exe consuming all CPU. When looking at the MiniDump I did only see garbage stack traces. Ok send me a full dump but the stacks were still ending in heap allocated memory which is strange for a process not having dynamic code generation.
When checking which code the many threads did execute I found highly optimized AVX2 assembly and unusal assembly instructions such as aesenc and related. These instructions are only known to guys creating cryptographic algos with the Intel AES-NI instructions to speed up AES encryption.
After counting the possibilities I did suspect that a Trojan was just encrypting that machine.
That turned from a perf issue to a really serious problem.
With Windbg and the mex extension I could save the exe to disk which my AV Scanner would after a few seconds delete because it has detected malicious software. This helped to find out what it actually was. In this case it was a Monero miner.
Ok it was not encrypting the disk but still a bad issue which needs to some cleaning of that machine.
My colleagues still ask me to write a book about such stuff.
|
|
|
|