think

Lucy Yu | Think like a human: Self-driving vehicles and the rules of the road

Lucy Yu, Director of Public Policy at FiveAI, is focusing on how to translate the rules of the road – designed and written with human drivers in mind – to the language of computers. Autonomous vehicles may have better sensors than humans, but their ability to reason in ambiguous or new situations is limited. To codify the intuitions many humans rely on when driving, FiveAI starts by providing rules for the car to follow in the most standard conditions, then gives it experience in a controlled version of real world driving. ABOUT WIRED PULSE: AI AT THE BARBICAN 450 business executives, technologists and enthusiasts gathered at The Barbican Centre’s Concert Hall in London, for WIRED Pulse: AI at the Barbican on June 15, 2019. Discover some of the fascinating insights from speakers here: http://wired.uk/ai-event ABOUT WIRED PULSE AND WIRED EVENTS The WIRED Pulse series offers an engaging, top-level perspective on how disruptive technology and fast-changing industries - such as artificial intelligence, deep tech and health - are impacting the human experience. The aim is to distill the most pertinent strands of themes within each complex topic and to share it with the wider public as a thought-provoking conversation-starter. WIRED events shine a spotlight on the innovators, inventors and entrepreneurs who are changing our world for the better. Explore this channel for videos showing on-stage talks, behind-the-scenes action, exclusive interviews and performances from our roster of events. Join us as we uncover the most relevant, up-and-coming trends and meet the people building the future. ABOUT WIRED WIRED brings you the future as it happens - the people, the trends, the big ideas that will change our lives. An award-winning printed monthly and online publication. WIRED is an agenda-setting magazine offering brain food on a wide range of topics, from science, technology and business to pop-culture and politics. CONNECT WITH WIRED Events: http://wired.uk/events Web: http://po.st/WiredVideo Twitter: http://po.st/TwitterWired Facebook: http://po.st/FacebookWired Google+: http://po.st/GoogleWired Instagram: http://po.st/InstagramWired Magazine: http://po.st/MagazineWired Newsletter: http://po.st/NewslettersWired




think

How Pilots and Scientists Are Thinking About the Future of Air Travel

It's not just you—in-flight turbulence really is getting worse. WIRED spoke with pilot Andrea Themely and atmospheric scientist Dr. Paul Williams about why conditions are becoming more severe and how the scientific and commercial aviation communities are approaching the future of air travel.




think

Rethinking sizes

When the shoe does not fit, it’s time to rethink size measures! And that’s what is happening in India. There may soon be a new sizing system called ‘Bha’ to measure footwear for Indians




think

Brands and billboards: Will marketers rethink outdoor advertising?

The Mumbai billboard crash has shaken up the advertising industry. Will brands be reluctant to spend on the outdoor medium now? 




think

Transcom thinks its CX centres are gold mines for brands

Travis Coates, COO of Swedish firm Transcom feels India’s talent and skill pool over time will make it another important hub for them




think

Twitters CEO thinks that social media platforms can be addictive, while Facebooks CEO does not agree with him

During a hearing before the Senate Judiciary Committee, a discussion was being held about the content moderation policies of various platforms and the impact of the recent US General Election. When Senator Lindsey Graham asked both Jack and Mark about their opinion whether their platforms can become addictive for the users, both answered differently.

As per Jack Dorsey, (like any other tech) social media platforms including Twitter and Facebook can make users addicted to continue using them. His opinion is in line with the opinions of several psychologists also who say that these social media networks give the users a sense of well-being by giving them a feeling of connection with others. One post after the other, and the urge of users to keep returning to these platforms to see newer posts one after another is like a trigger for their dopamine centers in the brain. And that is why psychologists believe that all social media platforms tend to become addicting for their users.

However, Mark Zuckerberg is of a different opinion. He stated in front of the Senate Committee that he believes that all the research regarding this matter is still inconclusive, and no one can say for sure if the social media platforms are addicting or not.




think

Using the Engineering Method to Teach Important Thinking and Problem-Solving Skills to Vibrant Minds

The technological innovation process is acknowledged as a sequence of procedures that engineers follow to find the best solution to a problem. That allows designers to use math concepts, applied research and technological innovation sciences to obtain a high level of optimization that meets the requirements of an goal. The steps incorporate defining the situation, […]




think

'Katrina thinks a lot'

'She is a very thoughtful actor.''She is in the industry not only because she is beautiful, but also because she is sensible.'




think

Mobile-First CSS: Is It Time for a Rethink?

The mobile-first design methodology is great—it focuses on what really matters to the user, it’s well-practiced, and it’s been a common design pattern for years. So developing your CSS mobile-first should also be great, too…right? 

Well, not necessarily. Classic mobile-first CSS development is based on the principle of overwriting style declarations: you begin your CSS with default style declarations, and overwrite and/or add new styles as you add breakpoints with min-width media queries for larger viewports (for a good overview see “What is Mobile First CSS and Why Does It Rock?”). But all those exceptions create complexity and inefficiency, which in turn can lead to an increased testing effort and a code base that’s harder to maintain. Admit it—how many of us willingly want that?

On your own projects, mobile-first CSS may yet be the best tool for the job, but first you need to evaluate just how appropriate it is in light of the visual design and user interactions you’re working on. To help you get started, here’s how I go about tackling the factors you need to watch for, and I’ll discuss some alternate solutions if mobile-first doesn’t seem to suit your project.

Advantages of mobile-first

Some of the things to like with mobile-first CSS development—and why it’s been the de facto development methodology for so long—make a lot of sense:

Development hierarchy. One thing you undoubtedly get from mobile-first is a nice development hierarchy—you just focus on the mobile view and get developing. 

Tried and tested. It’s a tried and tested methodology that’s worked for years for a reason: it solves a problem really well.

Prioritizes the mobile view. The mobile view is the simplest and arguably the most important, as it encompasses all the key user journeys, and often accounts for a higher proportion of user visits (depending on the project). 

Prevents desktop-centric development. As development is done using desktop computers, it can be tempting to initially focus on the desktop view. But thinking about mobile from the start prevents us from getting stuck later on; no one wants to spend their time retrofitting a desktop-centric site to work on mobile devices!

Disadvantages of mobile-first

Setting style declarations and then overwriting them at higher breakpoints can lead to undesirable ramifications:

More complexity. The farther up the breakpoint hierarchy you go, the more unnecessary code you inherit from lower breakpoints. 

Higher CSS specificity. Styles that have been reverted to their browser default value in a class name declaration now have a higher specificity. This can be a headache on large projects when you want to keep the CSS selectors as simple as possible.

Requires more regression testing. Changes to the CSS at a lower view (like adding a new style) requires all higher breakpoints to be regression tested.

The browser can’t prioritize CSS downloads. At wider breakpoints, classic mobile-first min-width media queries don’t leverage the browser’s capability to download CSS files in priority order.

The problem of property value overrides

There is nothing inherently wrong with overwriting values; CSS was designed to do just that. Still, inheriting incorrect values is unhelpful and can be burdensome and inefficient. It can also lead to increased style specificity when you have to overwrite styles to reset them back to their defaults, something that may cause issues later on, especially if you are using a combination of bespoke CSS and utility classes. We won’t be able to use a utility class for a style that has been reset with a higher specificity.

With this in mind, I’m developing CSS with a focus on the default values much more these days. Since there’s no specific order, and no chains of specific values to keep track of, this frees me to develop breakpoints simultaneously. I concentrate on finding common styles and isolating the specific exceptions in closed media query ranges (that is, any range with a max-width set). 

This approach opens up some opportunities, as you can look at each breakpoint as a clean slate. If a component’s layout looks like it should be based on Flexbox at all breakpoints, it’s fine and can be coded in the default style sheet. But if it looks like Grid would be much better for large screens and Flexbox for mobile, these can both be done entirely independently when the CSS is put into closed media query ranges. Also, developing simultaneously requires you to have a good understanding of any given component in all breakpoints up front. This can help surface issues in the design earlier in the development process. We don’t want to get stuck down a rabbit hole building a complex component for mobile, and then get the designs for desktop and find they are equally complex and incompatible with the HTML we created for the mobile view! 

Though this approach isn’t going to suit everyone, I encourage you to give it a try. There are plenty of tools out there to help with concurrent development, such as Responsively App, Blisk, and many others. 

Having said that, I don’t feel the order itself is particularly relevant. If you are comfortable with focusing on the mobile view, have a good understanding of the requirements for other breakpoints, and prefer to work on one device at a time, then by all means stick with the classic development order. The important thing is to identify common styles and exceptions so you can put them in the relevant stylesheet—a sort of manual tree-shaking process! Personally, I find this a little easier when working on a component across breakpoints, but that’s by no means a requirement.

Closed media query ranges in practice 

In classic mobile-first CSS we overwrite the styles, but we can avoid this by using media query ranges. To illustrate the difference (I’m using SCSS for brevity), let’s assume there are three visual designs: 

  • smaller than 768
  • from 768 to below 1024
  • 1024 and anything larger 

Take a simple example where a block-level element has a default padding of “20px,” which is overwritten at tablet to be “40px” and set back to “20px” on desktop.

Classic min-width mobile-first

.my-block {
  padding: 20px;
  @media (min-width: 768px) {
    padding: 40px;
  }
  @media (min-width: 1024px) {
    padding: 20px;
  }
}

Closed media query range

.my-block {
  padding: 20px;
  @media (min-width: 768px) and (max-width: 1023.98px) {
    padding: 40px;
  }
}

The subtle difference is that the mobile-first example sets the default padding to “20px” and then overwrites it at each breakpoint, setting it three times in total. In contrast, the second example sets the default padding to “20px” and only overrides it at the relevant breakpoint where it isn’t the default value (in this instance, tablet is the exception).

The goal is to: 

  • Only set styles when needed. 
  • Not set them with the expectation of overwriting them later on, again and again. 

To this end, closed media query ranges are our best friend. If we need to make a change to any given view, we make it in the CSS media query range that applies to the specific breakpoint. We’ll be much less likely to introduce unwanted alterations, and our regression testing only needs to focus on the breakpoint we have actually edited. 

Taking the above example, if we find that .my-block spacing on desktop is already accounted for by the margin at that breakpoint, and since we want to remove the padding altogether, we could do this by setting the mobile padding in a closed media query range.

.my-block {
  @media (max-width: 767.98px) {
    padding: 20px;
  }
  @media (min-width: 768px) and (max-width: 1023.98px) {
    padding: 40px;
  }
}

The browser default padding for our block is “0,” so instead of adding a desktop media query and using unset or “0” for the padding value (which we would need with mobile-first), we can wrap the mobile padding in a closed media query (since it is now also an exception) so it won’t get picked up at wider breakpoints. At the desktop breakpoint, we won’t need to set any padding style, as we want the browser default value.

Bundling versus separating the CSS

Back in the day, keeping the number of requests to a minimum was very important due to the browser’s limit of concurrent requests (typically around six). As a consequence, the use of image sprites and CSS bundling was the norm, with all the CSS being downloaded in one go, as one stylesheet with highest priority. 

With HTTP/2 and HTTP/3 now on the scene, the number of requests is no longer the big deal it used to be. This allows us to separate the CSS into multiple files by media query. The clear benefit of this is the browser can now request the CSS it currently needs with a higher priority than the CSS it doesn’t. This is more performant and can reduce the overall time page rendering is blocked.

Which HTTP version are you using?

To determine which version of HTTP you’re using, go to your website and open your browser’s dev tools. Next, select the Network tab and make sure the Protocol column is visible. If “h2” is listed under Protocol, it means HTTP/2 is being used. 

Note: to view the Protocol in your browser’s dev tools, go to the Network tab, reload your page, right-click any column header (e.g., Name), and check the Protocol column.

Note: for a summarized comparison, see ImageKit’s “HTTP/2 vs. HTTP/1.”

Also, if your site is still using HTTP/1...WHY?!! What are you waiting for? There is excellent user support for HTTP/2.

Splitting the CSS

Separating the CSS into individual files is a worthwhile task. Linking the separate CSS files using the relevant media attribute allows the browser to identify which files are needed immediately (because they’re render-blocking) and which can be deferred. Based on this, it allocates each file an appropriate priority.

In the following example of a website visited on a mobile breakpoint, we can see the mobile and default CSS are loaded with “Highest” priority, as they are currently needed to render the page. The remaining CSS files (print, tablet, and desktop) are still downloaded in case they’ll be needed later, but with “Lowest” priority. 

With bundled CSS, the browser will have to download the CSS file and parse it before rendering can start.

While, as noted, with the CSS separated into different files linked and marked up with the relevant media attribute, the browser can prioritize the files it currently needs. Using closed media query ranges allows the browser to do this at all widths, as opposed to classic mobile-first min-width queries, where the desktop browser would have to download all the CSS with Highest priority. We can’t assume that desktop users always have a fast connection. For instance, in many rural areas, internet connection speeds are still slow. 

The media queries and number of separate CSS files will vary from project to project based on project requirements, but might look similar to the example below.

Bundled CSS

<link href="site.css" rel="stylesheet">

This single file contains all the CSS, including all media queries, and it will be downloaded with Highest priority.

Separated CSS

<link href="default.css" rel="stylesheet"><link href="mobile.css" media="screen and (max-width: 767.98px)" rel="stylesheet"><link href="tablet.css" media="screen and (min-width: 768px) and (max-width: 1083.98px)" rel="stylesheet"><link href="desktop.css" media="screen and (min-width: 1084px)" rel="stylesheet"><link href="print.css" media="print" rel="stylesheet">

Separating the CSS and specifying a media attribute value on each link tag allows the browser to prioritize what it currently needs. Out of the five files listed above, two will be downloaded with Highest priority: the default file, and the file that matches the current media query. The others will be downloaded with Lowest priority.

Depending on the project’s deployment strategy, a change to one file (mobile.css, for example) would only require the QA team to regression test on devices in that specific media query range. Compare that to the prospect of deploying the single bundled site.css file, an approach that would normally trigger a full regression test.

Moving on

The uptake of mobile-first CSS was a really important milestone in web development; it has helped front-end developers focus on mobile web applications, rather than developing sites on desktop and then attempting to retrofit them to work on other devices.

I don’t think anyone wants to return to that development model again, but it’s important we don’t lose sight of the issue it highlighted: that things can easily get convoluted and less efficient if we prioritize one particular device—any device—over others. For this reason, focusing on the CSS in its own right, always mindful of what is the default setting and what’s an exception, seems like the natural next step. I’ve started noticing small simplifications in my own CSS, as well as other developers’, and that testing and maintenance work is also a bit more simplified and productive. 

In general, simplifying CSS rule creation whenever we can is ultimately a cleaner approach than going around in circles of overrides. But whichever methodology you choose, it needs to suit the project. Mobile-first may—or may not—turn out to be the best choice for what’s involved, but first you need to solidly understand the trade-offs you’re stepping into.




think

‘Seeing’ chemistry: investigating the contribution of mental imagery strength on students’ thinking in relation to visuospatial problem solving in chemistry.

Chem. Educ. Res. Pract., 2025, Accepted Manuscript
DOI: 10.1039/D4RP00234B, Paper
Lauren Baade, Efpraxia Kartsonaki, Hassan Khosravi, Gwendolyn Angela Lawrie
Effective learning in chemistry education requires students to understand visual representations across multiple conceptual levels. Essential to this process are visuospatial skills which enable students to interpret and manipulate these...
The content of this RSS Feed (c) The Royal Society of Chemistry




think

When Tillotama Shome thinks of Irrfan Khan | An excerpt from Shubhra Gupta’s new book, Irrfan: A Life in Movies

Film critic Shubhra Gupta engages with members of the cinema fraternity to unearth little-known facets of the late actor’s life and personality in her new book




think

The Separation and Reunification of Germany: Rethinking a Natural Experiment Interpretation of the Enduring Effects of Communism [electronic journal].




think

Rethinking International Subsidy Rules [electronic journal].




think

ReThink Group Ltd. MarketLine Company Profile [electronic journal].

Marketline




think

‘I’d like to think that one day I’ll be Chinese’

Committed Sinophile and one of the debut filmmakers at MAMI this year, Jordan Schiele is alsoan enthusiastic Mumbaikar discovers Satya Kandala




think

A khadi way of thinking

Fashion designer returns to her first love khadi for her new festive collection titled Vichar Vastra




think

Alireza Firouzja Interview | Now I mostly think about becoming No. 1 player in the world

I was playing chess for 11 or 12 years in a row before deciding that I wanted to have a social life; I am focusing a lot on the game again; I managed to win the Grand Chess Tour, but could have done a bit better at the Candidates; Gukesh is a big favourite for the World title but Ding has the experience




think

587: Why Ethan Marcotte Thinks Tech Workers Deserve a Union

Ethan Marcotte is here to talk about his new book, You Deserve a Tech Union, and discusses topics such as why we need unions in tech, who gets to be in the union, how unions can help deal with the AI question, union busting, and some arguments against unions.




think

Sneakerheads, your shoes are worth more than you think  

Festivals, custom designs and limited edition pieces fuel India’s sneaker subculture. How do you curate a sneaker collection that increases in value and boosts your social currency?



  • Life &amp; Style

think

Why we should nurture the thinking and creative mind

We need “thinking teachers” who can enable students think clearly, creatively, logically and critically.




think

Force 2: Do not put the thinking cap on!

Abhinay Deo just wants to please us with long chases and car crashes, bullets and blood.




think

Thinking stitches

Designer Isha Kapoor feels good casual wear, specially in cotton, is hard to find




think

Calicut FC thinking big, eyes the ISL

Budget for a SLK club is almost similar to that of an I-League side, says team owner Mathews




think

VVIP visits and traffic jams: Time to think out of the box?




think

Stop, think, digitise

Don’t look at the technology first but at what delivers the most business impact




think

‘India not an ‘abuser’ of tariffs, Trump’s claims unfair,’ says think tank GTRI

The numbers demonstrate that the U.S. also protects specific products of its economy with high tariffs, GTRI said in a report.




think

German economy to shrink further in 2024, think-tanks issue statement




think

No rethink on FDI curbs in multi-brand retail sector: Piyush Goyal

Piyush Goyal said there will be no rethink on the Foreign Direct Investment (FDI) curbs in the multi-brand retail sector.




think

Cyclical slowdown? Nomura thinks so

Days after its research report stating ‘the growth glass looks half empty’ for India, Nomura economists signal weak urban demand is unlikely to rebound soon and GDP growth may even slip under 6.7% this year




think

Can’t think straight

Wajood is a group that supports the LGBT community by helping them stand up against social stigma and aims to empower them with skill sets, discovers Prabalika M. Borah




think

Time to think…

Can our city handle another environmental problem?




think

Government thinks of the RBI as a part of itself: Subbarao

The most common view today is that the IAS is not able to perform because of political pressure but the question is why should IAS officers succumb to the carrots dangled by politicians, asks former RBI Governor Duvvuri Subbarao




think

I was raised by one family, but I think it represents so many of our families: Priyanka Mattoo, author of Bird Milk and Mosquito Bones

Priyanka Mattoo on her journey across countries, and why she sees herself as the ‘megaphone’ for a culture




think

Make America think again

The country needs to think again —beyond elections and their shores




think

Jaipur-based South Western Command establishes think tank Gyan Shakti

The think tank aims to create a combined pool of talent of all stakeholders, which would be ideally suited to advise the industry and the government on the way forward




think

When Pathaan's Villain Made You Think

Let us get high on Pathaan and his simple-minded antics, sure, but let us also take a moment to think about Jim who, with that one cunning piece of dialogue, goes on to boldly state that patriotism is a many-hued thing, observes Sreehari Nair.




think

NYT Praised Kaathal. What Did We Think?

'As I watched Mammootty 'try out' Mathew Devassy, I could hear from my theatre seat the ready-made appreciation of the liberal press, their applause for the great actor having flirted with queerness on screen.''But it is a flirtation and nothing more, for I could not detect in Devassy any hint of love, not for his homosexual lover, not for his wife,,' observes Sreehari Nair.




think

MWC 2024: Lenovo showcases transparent laptop, new ThinkBook lineup and more

The focus is on seamless connectivity and AI-experiences 





think

Can single-cell genomics lead to a new wave of drug targets? Celsius Therapeutics thinks so

The start-up, based on the work of Broad Institute scientist Aviv Regev, has raised $65 million to develop therapies for cancer and autoimmune disease




think

Plastics recycling with microbes and worms is further away than people think

Headlines about plastic-eating organisms belie tough, competitive road to development




think

Entrepreneur rethinks lithium-ion batteries with an eye toward storing renewable energy

Chemist Amy Prieto of Colorado State University discusses her work to commercialize a safer, more customizable battery




think

I don’t think too much, while Kohli is a thinker: de Villiers

He insists that there is a fine line between getting out to a bad shot and pulling off the incredible.



  • Indian Premier League

think

Ashwin needs to think of improvement and bowl more off-spinners: Sangakkara

Opting to bat first, RR were restricted to 130/9, which was chased by GT in 18.1 overs




think

I don’t think that the Indian batters are going to stand up to our quicks: Brad Haddin




think

Not just Australia — as a parent, I think other countries too should ban social media for kids under 16




think

“I think there are many ways to reach youngsters”, says Sri Vidyadheesha Teertha Swami, of the Palimar Matha

The swamiji conducts online classes on Vedanta and delivers lectures




think

A modest proposal: time to rethink the impact of US tax reform




think

Rethinking American music / edited by Tara Browner and Thomas L. Riis

Lewis Library - ML200.R46 2019