New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Bootstrap from Twitter(getbootstrap.com ↗)
    discuss
  2. GPT Image 2.5 Prompts(github.com/vulcaneon ↗)
    discuss
  3. How Streaks Work?(sheets.works ↗)
    discuss
  4. How meaning is fundamentally altered by sonic environments(danieldeboulay.com ↗)
    discuss
  5. Atria Dawn Preview: an AI model trained end-to-end on verifiable research(atominnolab.com ↗)
    discuss
  6. Show HN: Nerdulator – put something in, get everything out (no AI)(nerdulator.com ↗)
    discuss
  7. EchoMuse – Alexa replacement and controller for Echo Dot 2nd Generation device(github.com/wilbowes ↗)
    discuss
  8. The Controversial Linear No-Threshold Model(snmjournals.org ↗)
    discuss
  9. Amazon says cloud infrastructure in Bahrain, UAE 'beyond saving'(thecradle.co ↗)
    discuss
  10. Housekeeping and Manpower Outsourcing Services
    discuss
  11. My HP EliteDesk 800 G1 Decrypts Bitlocker(postimg.cc ↗)
    2comments
  12. We don't need AI regulation – leave safety to us, Nvidia's Jensen Huang says(techcrunch.com ↗)
    2comments
  13. The Customizable Select(utilitybend.com ↗)
    discuss
  14. Schadenfreude(wikipedia.org ↗)
    1comments
  15. The Unwilding of Patagonia's Pollinators(biographic.com ↗)
    discuss
  16. Ask HN: Are requests/demands coming from AI companies for regulation genuine?
    3comments
  17. Show HN: MinMAX Sort – A Stable Bidirectional Selection Sort Family Algorithm
    1comments
  18. Prefill a 284B model on Nvidia. Decode it on Apple Silicon. Over plain 10GbE(github.com/chadhurley25075-png ↗)
    1comments
  19. MartyPC – A Cycle-Accurate IBM PC/XT Emulator(github.com/dbalsom ↗)
    discuss
  20. We are all Product Engineers now(seldo.com ↗)
    discuss
  21. Show HN: An open-source Socratic coach for competitive programming(chromewebstore.google.com ↗)
    1comments
  22. Looking back on Servo's first donation-funded role(servo.org ↗)
    discuss
  23. Show HN: Check an NPM package or MCP server for malicious code before install(bouncer.run ↗)
    discuss
  24. The first ever API built for dictation;Today we're launching the Dictation API(assemblyai.com ↗)
    1comments
  25. There are no optical corrections in the Parthenon(doi.org ↗)
    discuss
  26. I wrote a kill number before I wrote the landing page copy(deskthaw.com ↗)
    1comments
  27. A software thing I built: GPS on a 25MHz 486-SX(vcfed.org ↗)
    2comments
  28. I built dual cam app because I had credits left and didn't know what else to do(play.google.com ↗)
    1comments
  29. Noise-Coded Illumination for Forensic and Photometric Video Analysis(arxiv.org ↗)
    discuss
  30. Show HN: HTMLCATS – Editor-First Learning for HTML, CSS, and JavaScript(htmlcats.com ↗)
    2comments

Show HN: MinMAX Sort – A Stable Bidirectional Selection Sort Family Algorithm

2 pointsby 56m ago
1 comments
Repository: https://github.com/tsuJack-Devs/minMAX-Sorting-Algorithm/tre... I made a sorting algorithm last year out of curiosity and hobby not knowing that this was actually a selection sort variant. It still has outer and inner loop but, half of the operations than the traditional selection sort or O(n^2) sorting algorithm variants. Making outer loop n/2 smaller and inner loop is (n x n)/2 smaller as well. This is well tested with a lot of number arrangements like cliff, spike, reverse, duplicates, and any possible chaotic array of numbers. Kinda crazy to promoting an improved selection sort algorithm but yeah, made it with passion of CS. :D
48m agoHN ↗

Not saying I invented an a new sorting algorithm, just implemented an improvement. This is the algorithm my professor dismissed me in front of the class. She said how can I prove it and don't ever said claiming this as mine. That's why it took a year to gain confidence once again, to share my solution online, after that shameful day, it left me sad for a while. Glad to hear comments. :D