Skip to content
  • 0 Votes
    2 Posts
    0 Views
    Richard DeemingR
    Latest Messages[^] An AI-generated garbage comment, with the link to his site buried at the bottom. "These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer
  • What is SEO?

    The Lounge performance question design algorithms sales
    1
    0 Votes
    1 Posts
    3 Views
    No one has replied
  • 0 Votes
    3 Posts
    16 Views
    N
    Hi Fabina, Can you try following seteps Check Console for Errors: Open browser dev tools (F12) and inspect the console for JavaScript errors. Network Tab: Check if API requests or WebSocket connections fail in the "Network" tab. Async Code: Ensure async/await or Promise chains are handled correctly. Script Conflicts: Review if other scripts on the site are conflicting with yours. Event Listeners: Ensure event listeners for real-time data are properly attached. Error Logs: Add more logging to trace what fails during updates. I hope this will help you to resolve this issue.......
  • I'm too sick for this nonsense

    The Lounge design help com graphics
    7
    0 Votes
    7 Posts
    1 Views
    B
    I've spent all day beating on a problem with no success. Then: 1) I put it away, the next morning I spot the problem in 3 seconds. 2) Or, I call someone over; they spot the problem in 3 seconds. 3) Or, I call someone over; then *I* spot the problem in 3 seconds. Of course, I've had co-workers call me to help, and I spot the problem in 3 seconds. Typically, the person feels stupid, but the reality is that after staring at something too long, we don't see what's there -- we see what we expect to be there. The best course of action is to walk away for an hour -- do something else, then come back. To be fair, not all problems are solved so easily. My freshman year in college, working on a DEC/VAX, the program I wrote was failing to compile on a specific line, and the error made no sense. I took it to the professor, and he acted disgusted, expecting a newbie programmer problem. He read through that section twice. Frowned, and said, "That is written correctly." He thought for another moment and said, "Delete that line plus the one above and below. Retype them." An unprintable character had been inserted into the file and the compiler choaked on it. Retyping those 3 lines solved it.
  • 0 Votes
    8 Posts
    3 Views
    N
    I recommend you to see: Backstabbing for Beginners (2018) - IMDb[^] Goes pretty much in the line of your comment. 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.
  • Apparently I've found my limit

    The Lounge design com graphics iot
    14
    0 Votes
    14 Posts
    2 Views
    F
    I got Paxlovid and it actually seemed to help a lot with the stamina levels. - I would love to change the world, but they won’t give me the source code.
  • 0 Votes
    5 Posts
    0 Views
    pkfoxP
    You have done well HTW 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
  • 0 Votes
    9 Posts
    1 Views
    H
    I have a book, a collection called "Great Short Stories of the English Speaking World" (or something like that) whose foreword explains that writing a great short story is far harder than writing a great novel. Perhaps the principle is more widely applicable than I thought!
  • 0 Votes
    2 Posts
    2 Views
    N
    I do not give a crap if a guy is using a brain interface to play computer... I am more worried if the computer is learning how we think in a "military" situation due to his brain Although being voluntary for that... not sure if the brain is the best model to learn from. :rolleyes: :-D 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.
  • 0 Votes
    10 Posts
    1 Views
    K
    I predict that in about two weeks you're going to post about how you wish you had saved it this code because suddenly you had a need to look at it again. :-D
  • 0 Votes
    3 Posts
    0 Views
    Richard Andrew x64R
    Consider it lucky that she likes to watch from your shoulders as opposed to lying across your keyboard! The difficult we do right away... ...the impossible takes slightly longer.
  • 0 Votes
    1 Posts
    0 Views
    No one has replied
  • 0 Votes
    3 Posts
    0 Views
    H
    Oh, don't worry. I'm left wanting in several topics. :) Check out my IoT graphics library here: https://honeythecodewitch.com/gfx And my IoT UI/User Experience library here: https://honeythecodewitch.com/uix
  • 0 Votes
    2 Posts
    0 Views
    J
    I was playing with XNA a long time ago and was doing a space thing where multiple transparent images of stars would be stacked to do parallax. The images were screen sized. They would wrap the screen so if the focal point (player) went a pixel left, the far right column of pixels would wrap to the left. This gets more complicated on diagonals. I had to grab a ruler and mark up a physical sheet of paper to work out the code for how to cut the rectangles and glue them back together in real time so that one image could be infinitely scrolled any direction.
  • 0 Votes
    1 Posts
    0 Views
    No one has replied
  • Now I'm just getting silly

    The Lounge design python com graphics iot
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • 0 Votes
    16 Posts
    0 Views
    H
    This particular code is really complicated. Look at this mess typedef struct NSVGattrib { char id[64]; float xform[6]; gfx::rgba_pixel<32> fillColor; gfx::rgba_pixel<32> strokeColor; float opacity; float fillOpacity; float strokeOpacity; char fillGradient[64]; char strokeGradient[64]; float strokeWidth; float strokeDashOffset; float strokeDashArray[NSVG_MAX_DASHES]; int strokeDashCount; svg_line_join strokeLineJoin; svg_line_cap strokeLineCap; float miterLimit; svg_fill_rule fillRule; float fontSize; gfx::rgba_pixel<32> stopColor; float stopOpacity; float stopOffset; char hasFill; char hasStroke; char visible; } NSVGattrib; using reader_t = ml_reader_ex<2048>; struct svg_css_class { char selector[512]; char* value; svg_css_class* next; }; struct svg_parse_result { reader_t* reader; svg_css_class* css_classes; svg_css_class* css_class_tail; void* (*allocator)(size_t); void* (*reallocator)(void*, size_t); void (*deallocator)(void*); char lname[32]; char aname[512]; char avalue[512]; char style_val[256]; char class_val[128]; char* d; size_t d_size; NSVGattrib attr[NSVG_MAX_ATTR]; int attrHead; float* pts; int npts; int cpts; svg_path* plist; size_t image_size; svg_image_info* image; NSVGgradientData* gradients; svg_shape* shapesTail; float viewMinx, viewMiny, viewWidth, viewHeight; int alignX, alignY, alignType; float dpi; char pathFlag; char defsFlag; }; I highlighted the portion of the inner structure I forgot to initialize (the head attribute, as the rest are copied from that) Check out my IoT graphics library here: https://honeythecodewitch.com/gfx And my IoT UI/User Experience library here: https://honeythecodewitch.com/uix
  • Word of the day

    The Lounge design com graphics iot
    7
    0 Votes
    7 Posts
    0 Views
    H
    I miss the days when you could test by telnetting to port 80 and issuing GET / HTTP1/1\nHost: foo.com\n\n Check out my IoT graphics library here: https://honeythecodewitch.com/gfx And my IoT UI/User Experience library here: https://honeythecodewitch.com/uix
  • 0 Votes
    8 Posts
    0 Views
    L
    People still use outlook?? Whatever next? You’ll be telling me next that people actually have a Microsoft account. 🤦
  • 0 Votes
    1 Posts
    8 Views
    No one has replied