Lucy Yu | Think like a human: Self-driving vehicles and the rules of the road
By www.wired.com
Published On :: Mon, 08 Jul 2019 11:41:20 +0000
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
How Pilots and Scientists Are Thinking About the Future of Air Travel
By www.wired.com
Published On :: Thu, 24 Aug 2023 16:00:00 +0000
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.
By www.thehindubusinessline.com
Published On :: Sun, 28 Apr 2024 17:05:42 +0530
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
Twitters CEO thinks that social media platforms can be addictive, while Facebooks CEO does not agree with him
By www.rss-specifications.com
Published On :: Wed, 9 Dec 2020 11:42:17 -0500
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.
Using the Engineering Method to Teach Important Thinking and Problem-Solving Skills to Vibrant Minds
By catswhocode.com
Published On :: Mon, 05 Jun 2023 00:00:00 +0000
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, […]
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 thesimplestand 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.
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.
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.”
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.
‘Seeing’ chemistry: investigating the contribution of mental imagery strength on students’ thinking in relation to visuospatial problem solving in chemistry.
By pubs.rsc.org
Published On ::
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
When Tillotama Shome thinks of Irrfan Khan | An excerpt from Shubhra Gupta’s new book, Irrfan: A Life in Movies
By www.thehindu.com
Published On :: Wed, 14 Jun 2023 13:53:11 +0530
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
Alireza Firouzja Interview | Now I mostly think about becoming No. 1 player in the world
By www.thehindu.com
Published On :: Mon, 14 Oct 2024 23:58:01 +0530
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
587: Why Ethan Marcotte Thinks Tech Workers Deserve a Union
By shoptalkshow.com
Published On :: Mon, 16 Oct 2023 08:04:08 +0000
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.
Sneakerheads, your shoes are worth more than you think
By www.thehindu.com
Published On :: Fri, 11 Nov 2022 20:54:39 +0530
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?
By www.thehindu.com
Published On :: Mon, 28 Oct 2024 23:06:06 +0530
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
By www.thehindu.com
Published On :: Thu, 23 Aug 2012 21:33:07 +0530
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
Government thinks of the RBI as a part of itself: Subbarao
By www.thehindu.com
Published On :: Wed, 26 Jun 2024 08:00:00 +0530
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
Jaipur-based South Western Command establishes think tank Gyan Shakti
By www.thehindu.com
Published On :: Tue, 12 Nov 2024 22:47:18 +0530
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
By www.rediff.com
Published On :: Thu, 09 Feb 2023 10:22:09 +0530
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.
By www.rediff.com
Published On :: Tue, 02 Jan 2024 13:41:58 +0530
'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.
By www.rediff.com
Published On :: Thu, 07 Apr 2022 18:59:16 +0530
'We focus on the masses, to watch a film while clapping, dancing and whistling.''But there should be strong content.''Every dialogue in the film has a thought process, which people can relate to.'
Can single-cell genomics lead to a new wave of drug targets? Celsius Therapeutics thinks so
By cen.acs.org
Published On :: 15 May 2018 10:30:00 +0000
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