CyberSec Scholarship, AI Mentor, and HTML Interview Questions

Insight on the infamous blue screen

This week we’re talking about a new cybersecurity scholarship, rolling out a free AI resource for tech skills, and sharing a good HTML interview question (and answer). There’s also a poll at the end of the newsletter, so please let us know what you think!

This Week’s Resources

Learn Something New

We found a special discount for on-demand courses at Udemy. This sale just launched today, and we expect it to run for a limited time.

Highlights include dozens of popular tech resources (including one listed in our article detailing the best Python courses) under $15 and many starting at $9.99.

Jim Carrey Reaction GIF

If you’re looking for discounted courses on cybersecurity, programming languages, or full-stack development, this is worth checking out.

What’s the Last Mile Education Fund

Last Mile Education Fund has a specific grant for those who want to learn cybersecurity.

While traditional scholarships help students pay for tuition, books, and on-campus resources, the Last Mile Education Fund has a different approach. They provide vital resources for students who might otherwise lack the resources to graduate.

And they're now helping professionals upskill.

"Virtually no university in the nation has the capacity to teach students what it's going to be like to work in AI in tech right now. It's moving so fast. And so we're genuinely concerned about the students who are graduating in 2025 and 2026 having enough AI on their resume, and so we're working on a project to incentivize students to take an additional course."

Ruthe Farmer, Founder & CEO of Last Mile Education Fund

The New Way to Find Tech Resources

If you’ve already submitted your favorite tutorials on Hackr.io, you’ll understand the power of community-supported tech education. But what’s the quickest way to find the best tools?

Check out Mentor. It’s the new AI tool at Hackr, and it’s free to use. Please share it with anyone who wants to learn a new skill.

Just tell Mentor what you want to learn, and it will show the best online resources.

Tell Mentor what you want to learn, and it will show all the best resources we’ve seen. That includes community-submitted tutorials, university courses, and free videos.

Tech Jobs: CyberSec, Dev, and Design

Check out this week’s latest job opportunities on the Hackr job board.

And we also have resources for job seekers. This includes practice interview questions, course recommendations, and certification evaluations. Check out all of our our career development articles.

HTML Interview Questions

Here’s one of the best common HTML interview questions. For a deeper dive, check out our full guide.

Question: Write HTML5 code to demonstrate the use of Geolocation API.

Answer: See the code below. (You can test it in the HTML editor).

<!DOCTYPE html>

<html>
<body>
    <p>Click the My Location button to know your location.</p>
    <button onClick="getLocation()"> My Location </button>
    <p id="location"></p>
    <script>
        var x = document.getElementById("location");

        function getLocation() {
            if (navigator.geolocation) {
                navigator.geolocation.getCurrentPosition(showPosition);
            } else {
                x.innerHTML = "Geolocation is not supported by this browser.";
            }
        }

        function showPosition(position) {
            x.innerHTML = "Latitude: " + position.coords.latitude + "<br>Longitude: " + position.coords.longitude;
        }
    </script>
</body>
</html>

Additional Reading

Has this been helpful? Please share this newsletter. We’d love to help grow the community here at hackr.io.

Rate this Newsletter

The team at Hackr.io aims to provide the best information possible. Please let us know how we're doing!

Login or Subscribe to participate in polls.