Skip to content
  • 0 Votes
    1 Posts
    0 Views
    jobsfordevelopers@mastodon.worldJ
    Roblox is hiring Principal Software Engineer - Roblox Database #c #cplusplus #rust #cicd #kubernetes #mysql #postgresql #principalengineer San Mateo, California Full-time RobloxJob details https://jobsfordevelopers.com/jobs/principal-software-engineer-roblox-database-at-roblox-com-dec-17-2025-60f1b4?utm_source=mastodon.world&utm_medium=social&utm_campaign=posting#jobalert #jobsearch #hiring
  • 0 Votes
    1 Posts
    0 Views
    jobsfordevelopers@mastodon.worldJ
    Nuro is hiring Software Engineer, Teleoperation #c #cplusplus #golang Mountain View, California Full-time NuroJob details https://jobsfordevelopers.com/jobs/software-engineer-teleoperation-at-nuro-ai-dec-23-2025-1828f0?utm_source=mastodon.world&utm_medium=social&utm_campaign=posting#jobalert #jobsearch #hiring
  • 0 Votes
    1 Posts
    0 Views
    jobsfordevelopers@mastodon.worldJ
    Nuro is hiring Embedded Software Engineer Intern #c #cplusplus Mountain View, California Internship NuroJob details https://jobsfordevelopers.com/jobs/embedded-software-engineer-intern-at-nuro-ai-jan-16-2026-c9eee7?utm_source=mastodon.world&utm_medium=social&utm_campaign=posting#jobalert #jobsearch #hiring
  • 0 Votes
    1 Posts
    0 Views
    jobsfordevelopers@mastodon.worldJ
    CookUnity is hiring Senior Data Scientist, Growth & Retention #cplusplus #java #python #scala #seniorengineer New York City, New York Full-time CookUnityJob details https://jobsfordevelopers.com/jobs/senior-data-scientist-growth-retention-at-cookunity-com-dec-23-2025-713557?utm_source=mastodon.world&utm_medium=social&utm_campaign=posting#jobalert #jobsearch #hiring
  • 0 Votes
    1 Posts
    0 Views
    marcelschmall@infosec.exchangeM
    Generating cryptographically secure random values in C and C++ – what are your options?After writing about how secure random links work, a few people asked about the underlying libraries. So here is a quick overview. libsodium is the easiest and most recommended choice. One function call, cross-platform, and built specifically for cryptography:randombytes_buf(buffer, size);That is really all there is to it. libsodium picks the best available entropy source on the OS automatically. OpenSSL / LibreSSL is the classic option. RAND_bytes() does the job and is available almost everywhere. Worth using if you already have OpenSSL as a dependency – otherwise libsodium is cleaner.️ If you want no external dependency at all, go directly to the OS:Linux: getrandom() – available since kernel 3.17macOS / BSD: arc4random_buf() – even simpler, no error handling neededBoth are solid choices for system-level code.️ What about std::random_device in C++? It looks convenient but the standard does not guarantee cryptographic security. On some platforms it falls back to a predictable seed. Fine for games or simulations – not for security-critical code.So for anything security-related: libsodium or the OS primitives directly. std::random_device is a trap if you care about real randomness.What do you use in your projects for secure randomness? Still rolling your own or already on libsodium? #CPlusPlus #C #Security #Cryptography #libsodium #Infosec #SystemsProgramming
  • 0 Votes
    4 Posts
    0 Views
    justinderrick@mstdn.caJ
    @iskropixel I’d also recommend the #GetFediHired hashtag for extending the reach of your messages. Good luck!
  • MongoDB is hiring Solutions Architect

    Uncategorized csharp cplusplus java python
    1
    0 Votes
    1 Posts
    0 Views
    jobsfordevelopers@mastodon.worldJ
    MongoDB is hiring Solutions Architect #c #csharp #cplusplus #java #python #node #aws #azure #gcp #kafka #kubernetes #mongodb #sql #solutionsarchitect Gurugram, India Full-time MongoDBJob details https://jobsfordevelopers.com/jobs/solutions-architect-at-mongodb-com-jan-22-2026-49619f?utm_source=mastodon.world&utm_medium=social&utm_campaign=posting#jobalert #jobsearch #hiring
  • 0 Votes
    1 Posts
    0 Views
    jobsfordevelopers@mastodon.worldJ
    Roblox is hiring Principal Software Engineer - Asset Loading #cplusplus #principalengineer San Mateo, California Full-time RobloxJob details https://jobsfordevelopers.com/jobs/principal-software-engineer-asset-loading-at-roblox-com-dec-17-2025-d0bf4b?utm_source=mastodon.world&utm_medium=social&utm_campaign=posting#jobalert #jobsearch #hiring
  • 0 Votes
    1 Posts
    0 Views
    jobsfordevelopers@mastodon.worldJ
    Roblox is hiring Senior QA Engineer, Game Engine #cplusplus #python #cicd #seniorengineer San Mateo, California Full-time RobloxJob details https://jobsfordevelopers.com/jobs/senior-qa-engineer-game-engine-at-roblox-com-dec-22-2025-4cf16f?utm_source=mastodon.world&utm_medium=social&utm_campaign=posting#jobalert #jobsearch #hiring
  • 0 Votes
    1 Posts
    0 Views
    jobsfordevelopers@mastodon.worldJ
    Zoox is hiring Machine Learning Engineer - Scene Understanding #cplusplus #python #machinelearning Boston, Massachusetts Full-time ZooxJob details https://jobsfordevelopers.com/jobs/machine-learning-engineer-scene-understanding-at-zoox-com-jan-16-2026-92fc5c?utm_source=mastodon.world&utm_medium=social&utm_campaign=posting#jobalert #jobsearch #hiring
  • 0 Votes
    1 Posts
    0 Views
    jobsfordevelopers@mastodon.worldJ
    Crypto.com is hiring C++ Trading Developer, Quant Trading Team #cplusplus #mongodb London, United Kingdom Full-time Crypto.comJob details https://jobsfordevelopers.com/jobs/c-trading-developer-quant-trading-team-at-crypto-com-jun-25-2024-189d81?utm_source=mastodon.world&utm_medium=social&utm_campaign=posting#jobalert #jobsearch #hiring
  • 0 Votes
    2 Posts
    0 Views
    W
    @thing how about you stay away from that mess?Jokes aside I use this website quite a lot to look for specific APIs: https://cppreference.com/