Skip to content
  • Did I dodge a bullet?

    The Lounge database question csharp career
    35
    0 Votes
    35 Posts
    2 Views
    J
    Cezar Lamann wrote: and that they do everything inside application code, I code to the business and not to odd-ball extremes that some person with no objective data came up with. Using stored procedures can be much more effective that at some tasks then attempting to do it in code. I have seen systems that attempted to do the work only in the application and their performance was orders of magnitude larger than it could have been. I have also seen cases where because there was no clean separation of data access (because after all it should be right were it is needed right?) that a conversion to a different database took years (actual years) to do. And that conversion was driven by real business needs and not just because the newest CTO decided they wanted something different.
  • 0 Votes
    1 Posts
    0 Views
    No one has replied
  • Why is there so much to SVG?

    The Lounge graphics database hardware question
    3
    0 Votes
    3 Posts
    0 Views
    H
    You're right, a lot of people have no idea what they need, and that SVG isn't special in its bloat. It's just overwhelming to deal with. But I really want nice pretty vector graphics for my little ARMs and stuff, and now the 32 bit ones have enough ooomph to do it. I just got sick of interfaces that look like they were crafted in the mid 1990s. LVGL seems to find its way around that, even with raster graphics, but I couldn't make heads or tails of its rendering process. I wasn't really going to do a whole vector engine, aside from loading and rendering a reasonable SVG subset which I already had finished, but not one with an exposed API you could draw with. The reason I did is I could not find efficient algorithms for doing anti-aliased draws with alpha-blending. The anti-aliasing would cause pixels to be drawn in the same place twice, which fouls alpha-blending. With vector graphics you get the mess basically as a series of polygons except all the lines are actually bezier curves. When you go to render, the way it's done, the issue above isn't an issue. But it's sort of an all or nothing deal because the latter works nothing like the former at all. 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
    12 Views
    J
    Member 16359559 wrote: displayed correctly under html in Debian 9, but not later. I would start with the assumptions in there. A stored character has a binary representation. There is no way you can see a character until it is 'translated' into a viewer. Doesn't matter what the viewer is it still must do that translation. And sometimes there is more than one translation in the pipeline (for example database to driver, to a 'string', then to 'html', then to a browser.) Member 16359559 wrote: Greek alphabet That also is an assumption. There is a character set, a binary representation, which is used for a 'language'. It will have a specific name. So you really need to determine what that is. Then the steps First extract the binary data from the database. Probably test data. Determine if the form is correct. That is does the binary value (hex or binary) match the character set. Note that if you attempt this by displaying a 'character' then you are not doing it correctly. If the binary value is not correct for the character set then nothing you can do in the code will fix that. Second step determine the pipeline from binary to display. This does include the driver between the whatever application/code that reads the database itself. For each step you must determine whether the binary value retains its original correct value. If you find a step where it is wrong then you have found where the problem is. You should also look for a different way to view the data besides html and a browser. Even just initially that might be the easiest way to determine if those are the problem.
  • There's a hole in the bog...

    The Lounge database collaboration announcement
    5
    0 Votes
    5 Posts
    0 Views
    J
    kmoorevs wrote: Sure I have version control, I worked with a DBA and I wanted to look at the DDL. So I asked him where to find the code in "version control". He then asked "what is version control". A short conversation later I found out he did all of his work solely on the production database.
  • 0 Votes
    3 Posts
    10 Views
    Y
    To use isolated styles correctly: In DisplayComponent.razor, apply the class directly: DisplayComponent How cool, it works In Index.razor, remove the class from the wrapping : that's how the component will display with the styles applied correctly.
  • 0 Votes
    3 Posts
    5 Views
    L
    This is a Qt issue as far as using the toInt function. And as the documentation (QString Class | Qt Core 5.15.17[^]) clearly shows, it handles numbers in any base from 2 to 36.
  • 0 Votes
    1 Posts
    0 Views
    No one has replied
  • Non-Recursive Combinations Generator

    Free Tools c++ database tutorial lounge
    1
    0 Votes
    1 Posts
    3 Views
    No one has replied
  • SQL Server Permissions

    Database database sql-server sysadmin question
    3
    0 Votes
    3 Posts
    5 Views
    Richard Andrew x64R
    Thanks, Richard! The difficult we do right away... ...the impossible takes slightly longer.
  • 0 Votes
    5 Posts
    0 Views
    O
    It's not a bug, it's an undocumented feature - "How to restart your iPhone user interface." :cool:
  • Plaintext passwords may have struck again

    The Insider News database com
    2
    0 Votes
    2 Posts
    0 Views
    N
    Kent Sharkey wrote: Maybe requiring a license to program isn't such a bad idea after all Maybe hiring good specialists instead of cheap ones isn't such a bad idea after all 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
    7 Posts
    5 Views
    L
    See the answer at https://stackoverflow.com/questions/74261165/how-to-get-the-exact-ubuntu-kernel-source-files[^]. Not really too dificult to find.
  • 0 Votes
    1 Posts
    7 Views
    No one has replied
  • 0 Votes
    4 Posts
    6 Views
    R
    Then, at a guess, you're using some form of authorization restrictions. Without any enabled authentication methods, all users will be anonymous, and will only have access to resources that are explicitly marked as available to anonymous users. :) "These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer
  • 0 Votes
    7 Posts
    6 Views
    E
    Thank you for sharing this information. I really enjoyed your blog post. You have indeed shared an informative and interesting blog post with people.[Enigma](https://emigna.org/)
  • 0 Votes
    3 Posts
    0 Views
    R
    The conspiracy theorist in me thinks it was actually Equifax who did it in a scheme to boost subscriptions to their service. "They have a consciousness, they have a life, they have a soul! Damn you! Let the rabbits wear glasses! Save our brothers! Can I get an amen?"
  • 0 Votes
    13 Posts
    0 Views
    J
    OriginalGriff wrote: Come on guys! If you have data which uniquely identifies a transaction and you are compiling a transaction report INCLUDE IT! If you have an "industry standard format" like Excel, use the modern version, not one 15 years out of date! Don't restrict the transaction count to an arbitrary number, restrict it to an arbitrary number or the end of a month / week / year whichever is appropriate! And whatever you do, don't add a further length limit to one particular format! I pointed all of that out to them. I suggested upgrades for years. I even wrote the tickets, added the designs, the breakdowns and estimates. But the architect and manager kept saying that no one actually uses that stuff and we really need more razzle dazzle for facebook. ------ I really have worked on multiple systems that would fail all the time because the original designer never even considered the possibility that a data dump might be too large at some point.
  • 0 Votes
    1 Posts
    0 Views
    No one has replied
  • 0 Votes
    7 Posts
    0 Views
    C
    Wait, you tweaked the PRODUCTION server? CloudStrike is hiring. :) Charlie Gilley “They who can give up essential liberty to obtain a little temporary safety deserve neither liberty nor safety.” BF, 1759 Has never been more appropriate.