• 5 Posts
  • 355 Comments
Joined 2 年前
cake
Cake day: 2023年6月9日

help-circle




  • If you’re coding or whatever this is fine.

    I want coders to learn from trusted sources too. How do you authorize a user and store the password (plain text, hash, encrypt)? Do you use MD5 or SHA-256? (Always hash passwords, don’t use MD5)

    If you have to encrypt some information, do you use AES or Triple DES ? (never Triple DES)

    When authorizing with OAuth, should one send the auth url, client id, client secret, scopes, and redirect url to the client machine? (yes, yes, no, yes, yes)


    These are basic questions with answers that are easy to find…and many programmers get them very, very wrong. Mostly out of carelessness, often the question itself doesn’t even pop into their head.

    Relavent XKCD


  • As long as they let you turn off the upscaling I won’t complain about it. Unfortunately there has been a trend as of late to force it on; the artifacting drives me nuts. It’s always harder to to see in youtube videos though, since they are compressed quite a bit compared to live play.

    Biggest thing that concerns me was their focus on pushing one into multiplayer in V. I’m worried that is going to intensify since it made them so damn much money doing that last time.

    Either way, game isn’t out for a year, and it isn’t out for PC for probably two years. So, just going to go back to enjoying my Breath of Fire IV playthrough I’m currently doing. :)


  • BombOmOm@lemmy.worldtoSelfhosted@lemmy.worldManage things "To be Read"
    link
    fedilink
    English
    arrow-up
    2
    arrow-down
    1
    ·
    edit-2
    10 天前

    Make a textfile you sync between your devices. Save the URL, book name, or whatever; each on a new line.

    So tags and the option to filter them would be nice!

    You can tag them at will. Put “#TagName” next to an entry and later you can ctrl-f “#TagName” (or anything else) in the file. Notepad++, grep, and other tools will even give you a list of everything that matched your search criteria if you want to see all items that match at once.


    I like to keep things simple!







  • All I did for that one was search “Threadripper” and look at the pictures for ones with 4x x16 slots that were not hella expensive. There are technically filters for that, but, I don’t trust people to list their things correctly.

    For which chipsets, ect to look for, check out this page. If you click on Learn More next to AM5 for example, it tells you how many PCIe lanes are on each chipset type which can give you some initial search criteria to look for. (That is what made me point out x670E as it has the most lanes, but is not newest gen, so you can find used versions.)




  • BombOmOm@lemmy.worldtoProgrammer Humor@programming.devDev Interviews
    link
    fedilink
    English
    arrow-up
    3
    arrow-down
    1
    ·
    edit-2
    1 个月前

    Yeah, it’s a solved problem. I’m going to call the library’s default sort and move on. If it somehow is a problem, I’ll revisit later.

    Now, optimizing database calls, fixing (and avoiding!) security holes, writing tests that don’t take forever to run, writing functions so they can be easily re-used later, and not duplicating code. Now there are some skills!

    “It’s faster if we make a duplicate of this function and change this section, then we can move onto other things”

    “No it’s much slower, because your code review just came back telling you to throw that idea in the garbage and do it right”