Skip to content
  • Pitfalls of autodidactism

    The Lounge design c++ com graphics iot
    13
    0 Votes
    13 Posts
    0 Views
    B
    One of the points made in my essay is the superiority of autodidactism is at least due to the opportunity to read multiple authors. I discovered even in specialized technical fields different authors have new and different things to say even on the same subject.
  • 0 Votes
    1 Posts
    0 Views
    No one has replied
  • "I'm not an engineer"

    The Lounge design business question
    16
    0 Votes
    16 Posts
    0 Views
    L
    No, the shuttle disasters were a result of management interfering in design and safety decisions. Worth a watch if you’ve never seen it The Challenger Disaster - YouTube[^]
  • 0 Votes
    3 Posts
    0 Views
    H
    I ended up going with is_color_model<> which makes perfect sense in my library's vernacular where a color model is a composition of color channels with particular names. 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
    9 Posts
    0 Views
    H
    Thanks. I mean in hindsight, I agree because I used the stuff I engineered for. :) Edit: As far as directx, that's true, except for the format used for the last mile native draw surface. the alpha channel is not used in that situation. I actually do use variadic templates to do my template definitions. (background docs if you're interested: https://honeythecodewitch.com/gfx/wiki/pixels.md[^]) Each pixel has one or more channel_traits that are fed into it using variadic templates. Like so: // creates an RGB pixel by making each channel // one third of the whole. Any remainder bits // are added to the green channel template using rgb_pixel = pixel< channel_traits, channel_traits, channel_traits ; // creates an RGBA pixel by making each channel // one quarter of the whole. Any remainder bits // are added to the green channel template using rgba_pixel = pixel< channel_traits, channel_traits, channel_traits, channel_traits ; // creates a grayscale or monochome pixel template using gsc_pixel = pixel< channel_traits ; // creates a Y'UV pixel by making each channel // one third of the whole. Any remainder bits // are added to the Y' channel template using yuv_pixel = pixel< channel_traits, channel_traits, channel_traits ; // creates a Y'UV/A pixel by making each // channel 1/4 of the whole. Remaining bits // are added to Y' template using yuva_pixel = pixel< channel_traits, channel_traits, channel_traits, channel_traits ; And here's the actual pixel class. // represents the pixel base class template str
  • 0 Votes
    1 Posts
    7 Views
    No one has replied
  • All friggin day

    The Lounge design c++ com graphics iot
    3
    0 Votes
    3 Posts
    0 Views
    C
    The make -> cmake transition marks (at least in my mind) the 'bare metal' to 'higher level, more complex stuff' and I don't like it. "In testa che avete, Signor di Ceprano?" -- Rigoletto
  • Is Noam Chomsky dead?

    The Lounge design com graphics iot question
    16
    0 Votes
    16 Posts
    0 Views
    0
    This I read today in german speaking area. But with google translate, more or less easy to understand. Gesundheit: Noam Chomsky aus Spital in São Paolo entlassen | blue News[^]
  • Fun with AliExpress

    The Lounge design com graphics iot
    12
    0 Votes
    12 Posts
    1 Views
    J
    Where is that confounded bridge!? "The Crunge" Led Zeppelin, Houses of the Holy. 1973
  • What the hell gcc?

    The Weird and The Wonderful design com graphics iot
    24
    0 Votes
    24 Posts
    83 Views
    0
    Try it ;) I think it simply informs the compiler 'you are aware' about a maybe not safe conversion ...
  • 0 Votes
    2 Posts
    0 Views
    M
    So we can rename C "Black Mamba"? I’ve given up trying to be calm. However, I am open to feeling slightly less agitated. I’m begging you for the benefit of everyone, don’t be STUPID.
  • I've been so productive!

    The Lounge hardware asp-net graphics design iot
    7
    0 Votes
    7 Posts
    1 Views
    H
    Good luck! Check out my IoT graphics library here: https://honeythecodewitch.com/gfx And my IoT UI/User Experience library here: https://honeythecodewitch.com/uix
  • "16MB.csv"

    The Lounge design com graphics adobe ai-models
    3
    0 Votes
    3 Posts
    0 Views
    H
    It didn't. Some PIO update somehow either nuked the propagation of the flash partition tables to the project, or it is ignoring them altogether and going to a very conservative default (for an ESP32) of 2MB, which I get half of normally. So what I did was I got that 16MB.csv file which specifies the standard partitions on an ESP32 with 16MB flash. Then I referenced locally within the project instead of trying to get PIO to just work with what it had, because it wasn't 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
    D
    I've always thought exactly that. Except I don't have any vegan friends. At least, not any self-admitted ones. That I'm aware of.
  • 0 Votes
    1 Posts
    0 Views
    No one has replied
  • Is this a little outmoded?

    Site Bugs / Suggestions question design com graphics iot
    4
    0 Votes
    4 Posts
    9 Views
    C
    When I head back to Australia I'm often sitting on sub-1Mbps internet. In Melbourne. It's an odd situation but it reminds me every single time that not everyone in the world runs at 200Mbps. cheers Chris Maunder
  • I Need Your Ideas

    The Lounge javascript html css com design
    25
    0 Votes
    25 Posts
    1 Views
    S
    Jeremy Falcon wrote: Plot thickens. :laugh: Ah, yes. Elementary my dear Watson. OK, so let me see. You're using Firefox as your HTTP client. Are you able to replicate this bug using other browsers such as Chrome, or Edge? I've found that such things as third-party browser extensions, and various browser settings that aren't set to their default values can be the source of many mysterious bugs. I'll check it out using Firefox on my end. What actions do you take to cause this glitch to occur? If I can replicate the glitch, that will allow me to pin it down.
  • Non-blocking sockets are the worst

    The Lounge design c++ com graphics iot
    9
    0 Votes
    9 Posts
    0 Views
    H
    If I wasn't working on a system with a very primitive scheduler and a miserly amount of RAM I would have seriously considered it. It *did* cross my mind. But in the end I got it to work without doing so, and it was actually a bit easier than the documentation seemed to suggest. Helped that I found example code. Check out my IoT graphics library here: https://honeythecodewitch.com/gfx And my IoT UI/User Experience library here: https://honeythecodewitch.com/uix
  • Taking huge "leaps of faith" while coding

    The Lounge design com graphics iot testing
    34
    0 Votes
    34 Posts
    0 Views
    H
    It started out that way for me too, and then I got a bit obsessive about the project, as happens with me. :laugh: 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
    3 Posts
    0 Views
    A
    Me to hubby: "Maybe you were just pondering in your mind, about how to articulate your thoughts to speech. Therefore I couldn't listen".