MMMichael Mitrakosininitjs.hashnode.dev·Jul 11 · 6 min readThere is no universal 'Apply' button: building an agent that survives a dozen ATS platformsEveryone assumes applying to a job is a solved, boring problem. Fill a form, hit submit. Then you try to automate it across the real internet and discover it's one of the messiest integration problems00
MMMichael Mitrakosininitjs.hashnode.dev·Apr 20, 2024 · 2 min readTechnology and Helping Kids with AutismTechnology has emerged as a powerful tool in supporting educational and developmental interventions for children with autism spectrum disorders (ASD). By integrating tech solutions into educational settings, schools are now better equipped to cater t...00
MMMichael Mitrakosininitjs.hashnode.dev·Nov 1, 2020 · 3 min readImplement Bucket Sort in JavaScriptThis article is part of a series covering sort algorithms in JavaScript. You can find the rest of the series here. Today I’ll be covering everything you need to know about bucket sort. Bucket sort is a distribution sort. It works by arranging element...00
MMMichael Mitrakosininitjs.hashnode.dev·Nov 1, 2020 · 3 min readImplement Merge Sort in JavaScriptThis article is part of a series covering sort algorithms in JavaScript. You can find the rest of the series here. Today I’ll be covering the ins and outs of merge sort. This is probably the first useful sorting algorithm I’m covering. Merge sort is ...00
MMMichael Mitrakosininitjs.hashnode.dev·Nov 1, 2020 · 3 min readImplement Insertion Sort in JavaScriptThis article is part of a series covering sort algorithms in JavaScript. Today I’ll be covering the ins and outs of insertion sort. Insertion sort is more complex but a little more useful than bubble sort. The worst case scenario for it is similar to...00