|
I love eggs benedict, and will always order it if it is on the menu. My current favourite is on the breakfast menu of De Juf in Middelburg. EGGS BENEDICT €14,50, served on light multi-grain toast with avocado and poached eggs, and Hollandaise sauce, options: warm smoked salmon, or pulled pork, or bacon, or tomato.
Delicious
The most over the top eggs benedict that I have had was made with lobster and served at the Atlantis Hotel, Paradise island, in The Bahamas. There was a huge aquarium built into the wall of the restaurant with, amongst other fish, sharks and rays.
|
|
|
|
|
Sounds good, have to remember that address when I visit Middelburg again
|
|
|
|
|
Yesterday I enjoyed fresh kale w/ raisins to my surprise. I insist on an egg w/ each meal however I can not recall last occasion I enjoyed same as much as I expected to.
|
|
|
|
|
Wordle 1,169 5/6*
⬜⬜🟩🟨⬜
🟩🟨🟩⬜⬜
🟩⬜🟩🟨⬜
🟩⬜🟩🟩🟩
🟩🟩🟩🟩🟩
"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!
|
|
|
|
|
⬜⬜⬜⬜⬜
🟨⬜🟩🟩🟨
🟩🟩🟩🟩🟩
In a closed society where everybody's guilty, the only crime is getting caught. In a world of thieves, the only final sin is stupidity. - Hunter S Thompson - RIP
|
|
|
|
|
Wordle 1,169 4/6
⬛⬛⬛⬛🟩
🟩⬛⬛⬛🟩
🟩⬛🟩⬛🟩
🟩🟩🟩🟩🟩
No yellows.
Jeremy Falcon
|
|
|
|
|
Wordle 1,169 2/6
⬛⬛🟩⬛⬛
🟩🟩🟩🟩🟩
A second 2 row in a week!
I must have done something good to deserve this!
Ok, I have had my coffee, so you can all come out now!
|
|
|
|
|
Wordle 1,169 3/6
🟨⬜⬜⬜⬜
⬜⬜🟨🟩🟩
🟩🟩🟩🟩🟩
"A little time, a little trouble, your better day"
Badfinger
|
|
|
|
|
Wordle 1,169 4/6
⬜⬜⬜🟨⬜
🟨⬜🟨⬜🟨
⬜⬜🟨🟩🟩
🟩🟩🟩🟩🟩
Within you lies the power for good - Use it!
|
|
|
|
|
Some of my code is causing heap corruption.
I don't know what code, but I suspect it's my SVG code. The issue is that it works sometimes. But if I look at it funny it starts crashing, and my stack trace keeps pointing me to different places depending on the seemingly unrelated changes I make in main(). Sometimes it points me to some font rendering code. Sometimes it points me to a seemingly innocuous assign to a local variable in my SVG parser code. It's maddening.
It doesn't reproduce on the PC, at least 64-bit. I haven't tried 32 because trying to get 32-bit executables built on a windows machine these days I think requires a VM?
I tried running Deleaker against it, not sure if it would pick up heap corruption - it either doesn't, or it isn't coming up on the PC.
Unfortunately, much of this code is derived in many places from work that wasn't mine to begin with, and so instrumenting it to detect heap corruption if I have to wrap all malloc/reallocs etc will cause me real pain.
I don't know what to do. Maybe this would rear its head if I had kilobytes instead of gigabytes of RAM? but i wouldn't even know how to set that up on a PC without altering my code to use a custom constrained heap.
I'm so frustrated I've put it down, but it's gnawing at me, because it's definitely blocking any attempt I make at releasing.
I wish these little IoT devices had good memory protection. It just now occurred to me to try this on an ARM and hope i can reproduce it. Maybe I'll get a better stack trace. Who knows?
Check out my IoT graphics library here:
https://honeythecodewitch.com/gfx
And my IoT UI/User Experience library here:
https://honeythecodewitch.com/uix
|
|
|
|
|
Can you compile on Linux? There at least you have ulimit so you could restrict your stack size. A quick google leads to Windows Resource Manager, which may or may not be available.
"A little song, a little dance, a little seltzer down your pants"
Chuckles the clown
|
|
|
|
|
Yeah it compiles everywhere I've tried.
Hmmm, I have WSL. I hadn't heard of ulimit. Thanks
Check out my IoT graphics library here:
https://honeythecodewitch.com/gfx
And my IoT UI/User Experience library here:
https://honeythecodewitch.com/uix
|
|
|
|
|
Also check out valgrind. It might give you some clues as to where to look.
"A little song, a little dance, a little seltzer down your pants"
Chuckles the clown
|
|
|
|
|
Doesn't valgrind require instrumentation? I'm trying to avoid that, in favor of something that hooks the system calls.
Check out my IoT graphics library here:
https://honeythecodewitch.com/gfx
And my IoT UI/User Experience library here:
https://honeythecodewitch.com/uix
|
|
|
|
|
Yeah, it probably does. But as a starting point, you could run under valgrind, with lots of stack, to see if it detects anything it thinks is not kosher (which might be everything you're doing from it's point of view )
GNU libc allows you to hook various system calls : Hooks for Malloc (The GNU C Library) Maybe that can help? or the Previous link on that page re heap consistency checking?
"A little song, a little dance, a little seltzer down your pants"
Chuckles the clown
|
|
|
|
|
It looks like valgrind has a utility that hooks for you.
However, it also looks like valgrind requires linux to build, so I'm doing it but it's more work than I originally hoped.
Check out my IoT graphics library here:
https://honeythecodewitch.com/gfx
And my IoT UI/User Experience library here:
https://honeythecodewitch.com/uix
|
|
|
|
|
valgrind should be an installable package.
"A little song, a little dance, a little seltzer down your pants"
Chuckles the clown
|
|
|
|
|
maybe it was. I built it from the sources.
Check out my IoT graphics library here:
https://honeythecodewitch.com/gfx
And my IoT UI/User Experience library here:
https://honeythecodewitch.com/uix
|
|
|
|
|
honey the codewitch wrote: I haven't tried 32 because trying to get 32-bit executables built on a windows machine these days I think requires a VM? Not if you're using older versions of Visual Studio. We have a couple products still maintained using Visual Studio 2008 that build for 32 bit.
Software Zen: delete this;
|
|
|
|
|
We build a part of our application called "DriverHost" as 32-bits in VS2022 and .NET 8.
|
|
|
|
|
That won't work.
Whatever the MSVC was able to compile back then, it wasn't C++. It was "C++-ish"
Check out my IoT graphics library here:
https://honeythecodewitch.com/gfx
And my IoT UI/User Experience library here:
https://honeythecodewitch.com/uix
|
|
|
|
|
It served our purposes at the time; after all it made Mr. Object (one of my coworkers) happy .
The fact that we're still using VS2008 to maintain these products is a reflection on how engineering management here is hardware-centric and it makes them lose their sphincter control when we mention changing tools.
Software Zen: delete this;
|
|
|
|
|
I'm sure wored/works for you.
My code won't compile with anything less than GCC within the last 7 years or so, or VS2022.
It took microsoft that long to get their crap together.
Is it really that hard to make stdint.h?
And fix their template syntax madness?
Check out my IoT graphics library here:
https://honeythecodewitch.com/gfx
And my IoT UI/User Experience library here:
https://honeythecodewitch.com/uix
|
|
|
|
|
We build 32 bit executables and dlls in VS2022 from C++ source. We still have to support 32 bit applications.
|
|
|
|
|
Yeah, for some reason when I was looking through installed targeting packs I didn't see x86 for some reason. It's there. I just missed it the first time.
Check out my IoT graphics library here:
https://honeythecodewitch.com/gfx
And my IoT UI/User Experience library here:
https://honeythecodewitch.com/uix
|
|
|
|