Search
Phil Spencer Says Halo Studio Remains ‘Critical’ To Xbox Despite Cuts
28.1.2023
Things haven’t been going great for Xbox recently. Microsoft is facing stiff resistance in its attempt to acquire Activision Blizzard. It released hardly any big exclusive blockbusters last year. And it just cut over 10,000 jobs last week, including many senior developers at Halo Infinite studio...
Halo Infinite: The Kotaku Review
6.12.2021
How do you even consider Halo Infinite in totality? Not just any Halo game but this Halo game—one that was supposed to herald a new generation of Xboxes but was delayed out of the launch window; one that’s had no shortage of public scrutiny over its tumultuous development process; one that’s...
CSS Tips for New Devs
27.5.2020
Amber Wilson has some CSS Tips for New Devs, like:
It’s not a good idea to fix shortcomings in your HTML with CSS. Fix your HTML first!
And…
You can change CSS right in your browser’s DevTools (to open them, right-click the browser window and choose “inspect”...
User agents
19.5.2020
Jeremy beating the classic drum:
For web development, start with HTML, then CSS, then JavaScript (and don’t move on to JavaScript too quickly—really get to grips with HTML and CSS first).
And then…
That’s assuming you want to be a good well-rounded web developer. But it might be that...
How to Create a “Skip to Content” Link
17.3.2020
Skip links are little internal navigation links that help users move around a page. It’s possible you’ve never actually seen one before because they’re often hidden from view and used as an accessibility enhancement that lets keyboard users and screen readers jump from the top of the page to...
The Order of CSS Classes in HTML Doesn’t Matter
17.12.2019
That’s right! And I can prove it, too. Let’s look at some CSS first:
.a {
color: red;
}
.b {
color: blue;
}
And now let’s look at some markup:
<div class="a b">Here’s some text</div>
The text is going to be blue because .b is defined last in the CSS, right? But what if we...
React Starter: JSX Basics
11.6.2019
JSX is the templating language for React. JSX is also one of the main reasons why devs say they dislike React at first.
As with all new tools, there will be a learning curve. JSX is no diffe