fbpx
Home Blog Page 777

What’s Going On in This Picture? | Dec. 4, 2023

0
What’s Going On in This Picture? | Dec. 4, 2023

1. After looking closely at the image above (or at the full-size image), think about these three questions:

2. Next, join the conversation by clicking on the comment button and posting in the box that opens on the right. (Students 13 and older are invited to comment, although teachers of younger students are welcome to post what their students have to say.)

3. After you have posted, try reading back to see what others have said, then respond to someone else by posting another comment. Use the “Reply” button or the @ symbol to address that student directly.

Each Monday, our collaborator, Visual Thinking Strategies, will facilitate a discussion from 9 a.m. to 2 p.m. Eastern time by paraphrasing comments and linking to responses to help students’ understanding go deeper. You might use their responses as models for your own.

4. On Thursday afternoons, we will reveal at the bottom of this post more information about the photo. How does reading the caption and learning its back story help you see the image differently?

We’ll post more information here on Thursday afternoon. Stay tuned!


More?

See all images in this series or slide shows of 40 of our favorite images — or 40 more.

Learn more about this feature in this video, and discover how and why other teachers are using it in their classrooms in our on-demand webinar.

Find out how teachers can be trained in the Visual Thinking Strategies facilitation method.

Students 13 and older in the United States and the Britain, and 16 and older elsewhere, are invited to comment. All comments are moderated by the Learning Network staff, but please keep in mind that once your comment is accepted, it will be made public.

Practice These Spring Boot Interview Questions to Prepare for Your Technical Interview 

0
Practice These Spring Boot Interview Questions to Prepare for Your Technical Interview 

If you’re interviewing for a job that requires you to know Spring Boot — like a Java Developer, Software Engineer, or Back-end Developer — your technical interview will include questions about this popular Java-based framework. 

One of the best ways to prepare for your technical interview is to review Spring Boot interview questions and practice answering them in a mock interview. You can do this with another person or practice on your own. If you want to practice solo, consider filming yourself so you can play back the recording and find any areas you want to improve before your interview. 

To help you practice, here are 13 Spring Boot interview questions and tips on how to answer them.

Learn something new for free

1. What is Spring Boot? 

Before jumping into more technical questions, the interviewer may ask you some ice-breaker questions to ease you into the interview. So while this question seems easy, it’s a nice way to kick off your interview before you face the more challenging questions.  

If asked, explain that Spring Boot is an open-source, Java-based Spring framework that’s commonly used to create standalone applications that don’t rely on an external web server. Bonus points if you mention that it’s a popular choice for rapid application development (RAD) and building microservices.  

2. What are some advantages of using Spring Boot? 

There are several advantages to using Spring Boot, and you may want to discuss the ones that you have the most experience with. Not only can you talk in more detail about the advantages if you’ve benefited from them personally, but you’ll likely be able to answer follow-up questions as well. Here are a few advantages you can consider covering in your answer: 

  • Spring Boot applications “just run.” They don’t require an external web server to function. 
  • Spring Boot’s opinionated design makes it easy to get started “out of the box.” 
  • There’s no need for XML configuration with Spring Boot applications. 
  • Spring Boot helps reduce the amount of source code. 
  • There’s a large Spring Boot community and a variety of training materials to help developers quickly learn Spring Boot. 

3. What are the key features of Spring Boot? 

The key features of the Spring Boot framework are:: 

  • Starters: Dependency descriptors 
  • Auto-configuration: Configures Spring apps based on jar dependencies 
  • Actuators: Displays an apps operational info 
  • Security: Provides authentication and authorization features 
  • Logging: Tracks the events that occur after code is run 

4. What are some differences between Spring Boot and Spring? 

Spring is a Java-based framework that provides infrastructure support for developing customized Java applications. Spring comes with out-of-the-box modules and also supports many libraries and tools. 

Spring is an unopinionated framework, meaning that it’s easy for developers to set up their  configurations, architecture, conventions, and best practices. But this means that developers need to spend more time setting up the framework before it’s ready to use. 

Spring Boot is essentially an opinionated extension or module of Spring, and it’s often used to create REST APIs. Spring Boot makes default assumptions about software architecture, conventions, and best practices. This makes it faster and more efficient to develop applications in Spring Boot than Spring, provided that the application doesn’t require a lot of customized configuration. 

5. How can you create a Spring Boot application with Maven? 

Here are a few approaches to creating a Spring Boot application using Maven: 

  • Spring Maven Project 
  • Spring Initializr 
  • Spring Boot CLI 
  • Spring Starter Project Wizard 

6. What’s Spring Boot dependency management? 

The Spring Boot framework includes dependency management, which automatically detects, downloads, and stores other frameworks, libraries, and applications you need to run your Spring Boot application. Spring Boot also checks that you’re using the most updated versions of application dependencies and downloads updates as needed. 

7. What’s a Spring Boot starter, and what are some available starters? 

Spring Boot starters are a set of dependency management providers that enable dependencies in your application. This helps make developing a Spring Boot application both easier and faster. 

All available Spring Boot starters are under the org.springframework.boot group. Here are a few of the most popular Spring Boot starters and their features: 

  • spring-boot-starter: The primary starter, which includes auto-configuration, YAML, and logging 
  • spring-boot-starter-JDBC: For accessing relational databases with Java database connectivity (JDBC) 
  • spring-boot-starter-web: For web applications, including with the Spring Model-View-Control (Spring MVC) framework 
  • spring-boot-starter-data-JPA: For using Spring Data with Java Persistence API (Spring Data JPA) with Hibernate 
  • spring-boot-starter-security: For use with the Spring Security framework 
  • spring-boot-starter-AOP: For use with aspect-oriented programming (AspectJ and Spring AOP) 
  • spring-boot-starter-test: For testing Spring Boot applications 

8. What is Thymeleaf, and how do you use it? 

Thymeleaf is a Java-based library that contains templates for web applications. It utilizes the concept of natural templates or template files that can be read by browsers directly and displayed properly as web pages. Thymeleaf integrates well with the Spring framework and HTML5 Java web applications. 

To use Thymeleaf, you must add it to your Project Object Model (pom.xml) file in Maven. 

9. How do you create a Spring Boot project with Spring Initializr? 

Spring Initializr is a web application that lets you create an initial Spring Boot project structure before providing a Maven file that you can use to build your application. 

To create a Spring Boot project with Initializr,  follow these steps: 

  1. Choose the appropriate Maven project and required dependencies, along with other details.  
  1. Generate the project. (This creates a .zip file.) 
  1. Download and extract the project to your system. 
  1. Import the project in Spring. 

Since the project type is Maven, the source project should contain the pom.xml file. 

10. How can you deploy to a different server with Spring Boot? 

To deploy to a different server using Spring Boot, you  first generate a WAR file, a special type of Java Archive (JAR) file used for packaging web applications. Then, you deploy the WAR file to the new server and run it. 

To generate WAR files in Spring Boot, it’s necessary first to add the spring-boot-maven-plugin to the pom.xml file. 

11. How can you use Spring Boot for command-line applications? 

As with any other Java-based program, you can use Spring Boot to develop command-line applications. However, the application must have a main method, which bootstraps the application by invoking the SpringApplication.run method. The SpringApplication class then starts the Spring container. 

After calling this method, you can execute other statements as usual. 

12. What does it mean to say that Spring Boot supports relaxed binding? 

A property key doesn’t have to be an exact match of a property name with relaxed binding. With frameworks like Spring Boot, environment properties can be written in snake_case, camelCase, kebab-case, or in all uppercase, separated by an underscore. 

For example, if a certain property of a class is named myProperty, it can be bound in Spring Boot to any of these environment properties: 

  • myProperty 
  • my-property 
  • my_property 
  • MY_PROPERTY 

13. What is Spring Data? 

Spring Data is a Java specification for managing data between Java objects in your application and a relational database. In particular, Spring Data allows you to persist — or store — data and properties about an object so that you can access it later. It also allows data access from non-relational databases (like MongoDB), map-reduce frameworks, and cloud-based data services. 

Looking for more Spring Boot interview prep? 

If you’re looking for more ways to prepare, check out our complete guide to the technical interview, tips on answering behavioral interview questions, and advice for the whiteboard interview.  

Our Career Center also offers more interview support, as well as job-hunting resources for your resume, portfolio, and networking. 

And if you need a quick refresher, our Learn Spring course will teach you how to build RESTful APIs with the annotations-based approach to Spring and Spring Boot. Also, check out our Learn Java to brush up on your Java programming skills.

Free December 2023 Wallpaper & Instagram quote

0
Free December 2023 Wallpaper & Instagram quote

Free December 2023 Wallpaper & Instagram quote

Free December 2023 wallpaper is here!

Are you ready to feel the festive spirit? Check out our latest wallpaper for 2023, featuring beautiful green Christmas tree branches that will add a touch of holiday cheer to your screens. Not only does the green color look stunning, but it also has a calming effect on the mind and body, making it the perfect choice for unwinding after a busy year and getting into the festive mood. So, let’s gear up to celebrate Christmas and welcome the new year with this amazing wallpaper!

Each wallpaper download from December 2023 includes the following:

  • Desktop wallpaper x3 (plain, with the calendar, and with a quote)
  • Phone wallpaper x3 (plain, with the calendar and with a quote)
  • Tablet wallpaper
  • Instagram ready quote

December's wallpaper phone preview

Quote for December 2023

As we gear up for the holiday season and all the buzz around gift-giving, let’s take a moment to remember the true essence of Christmas. The greatest gift we can give ourselves is realizing all the amazing things we already have in our lives – like the love and care of our family and friends, good health, or a sense of purpose and meaning. Let this quote remind you ab out that every day!

the best Christmas gift is to realise how much you already have

P.S the square image is also included as a larger file in the download package below! Feel free to post it on your Instagram.



Looking for more? Check our previous wallpapers!

You can get three different desktop options with the free download – one with a calendar, one without the calendar, and another with a quote. Additionally, there’s a wallpaper available for tablets and three phone options too. You’ll also find an Instagram-ready square that features the weekly quote.

Free December 2023 Wallpaper & Instagram quote with green Christmas tree branches

FOR PERSONAL USE ONLY.

NOTE: This wallpaper is available as a free download through December 31, 2023 only. After that, a $5 download fee applies.


Looking for more?

Browse all wallpapers from this series.



How about a new design?

Since you just got a new wallpaper, consider updating your blog’s appearance with a fresh and modern look too! There are many different blog templates available that can make your page more enjoyable to read and navigate. Take some time to browse through them and see what catches your eye.

Blogger templates

WordPress Themes


Your voice matters!

If you have your favorite quotes and would like them to appear on the next free wallpaper, make sure to post them in the comments below or send us your ideas via email.

Enjoy!

What Is Perl Used For? 

0
What Is Perl Used For? 

With so many programming languages available, it’s easy to get muddled in all the different options. Some languages are versatile enough to handle most — if not all — of your programming needs. For many programmers, Perl is that kind of solution. Ahead, you’ll learn what Perl is, how you can use it, and how we can help you get started.

Learn something new for free

What is Perl? 

Perl is what ​is called​ a “general purpose” language, which means you can use it to fulfill various needs. Perl is different than languages with a more specific use case, like SQL, which is is typically used for databases and similar applications, for example. 

When Perl was first created, it was used as a text manipulation tool, but its uses have ballooned into a wide range of solutions. 

What is Perl used for? 

What is Perl in the context of the programming sphere? Like many general-purpose programming languages, Perl has an array of uses. But here are some of the most helpful: 

​Text manipulation 

Manipulating text was one of Perl’s original intended uses. Perl is still an excellent option for parsing HTML, manipulating JSON, working within regex, and other text manipulation-related tasks like scraping data from web pages to use in a marketing database. 

Perl’s text manipulation features work by setting rules that determine how strings of data are used. This opens up lots of possibilities, and gives you the flexibility you need to create innovative solutions. 

Log management 

The logs generated by distributed computer systems are key to improving performance, addressing issues, and enhancing safety. Log management enables you to keep track of the logs generated by the system and categorize and prioritize them so you can use them to solve problems. This is where Perl can come in handy:. You can program a system that works with common logging solutions like syslog or proprietary offerings published by a variety of companies. 

For instance, if you’re managing a network of servers that power an e-commerce solution, you need to know which alerts signify a mission-critical failure and which you can address later. If the server that provides names and addresses information malfunctions, customers may not be able to check out promptly. You could use Perl to program a system that aggregates the logs from various sources, surfacing the ones that come from the name and address server so you, as an admin, can quickly mitigate the issue. 

System administration automation 

Suppose you need to know which applications are installed on the computers of users connected to your organization’s network. You can check them one by one, ask people to self-report their app installs, or you can automate this arduous task by writing a script. Perl can help you do this and other system admin tasks. 

Similarly, you can use Perl to build a script that provides users with automatic updates at preset times, making each machine — and your entire network — more secure. Because Perl is a cross-platform solution, you can do this on multiple operating systems, including Linux and Windows. 

Managing data in the cloud 

While cloud vendors tend to have tools you can use to access the data you have stored within their systems, you can use Perl utilities to access data stored in: 

With this functionality, you can design your own systems for managing your cloud data. This gives you the freedom to create apps that grab and manipulate data in novel ways, producing a unique experience for the end-user and creating cutting-edge applications. 

Using Perl, for example, you could design a system that fetched different sets of data for customers based on preset conditions, such as their location, purchase history, or certain demographics, such as age. Then, you could use this to create unique experiences for users based on their situation or needs, making the app a dynamic environment custom-built to meet customers where they are. 

Managing virtual machines (VMs) and cloud virtual machines

A virtual machine is, in simple terms, a computer that’s all software. This means you could control the functions you expect from a hardware component using the VM’s software. 

VMs are often installed in cloud-based environments, and you can use Perl to access them. For a Network Administrator, this means you can assign virtual machines to different users within the company according to what they need to do their jobs. 

For instance, someone on the sales team may need access to the company’s customer relationship management (CRM) system, but a temporary worker may not. You can use Perl to ensure that your sales staff has access while keeping sensitive data, like customers’ contact information, unavailable to a temporary worker who doesn’t need it. 

Speech recognition 

You can leverage Perl to add speech recognition to an application using pre-designed modules. For example, with Perl, you can: 

  • Set up a system that enables users to use voice commands to control elements of software 
  • Make a text transcript of audio files, like the audio recording of an important meeting 

For instance, you can use the Google::Cloud::Speech module as an interface that allows you to interact with their Cloud Speech API. You can use this for anything from voice typing to collecting and analyzing the content of spoken conversations. 

Converting text to speech 

On the flipside, Perl is also a powerful tool for converting the written word into spoken audio files, which enables accessibility tasks such as: 

  • Reading text within an app for users that can’t read it themselves 
  • Helping people learn a different language 
  • Hearing directions on a page while following them on another screen or device 

For example, you can utilize Perl’s text-to-speech to ensure better access to your applications, particularly by people who may have limited sight.  

Testing software 

Whether you’re using DevOps, Agile, or another development approach, you need to be able to test your software quickly, on an ongoing basis, and automatically. Perl provides multiple testing solutions, such as the popular Test Anything Protocol (TAP)

Using TAP or a similar solution, you can use Perl to test code iterations on the fly, enabling a more risk-free, agile development process. In this way, it’s easier to find bugs and security vulnerabilities, addressing them before they impact the end user’s experience. 

Web servers 

Say a small company has a network of Internet of Things (IoT) devices that they want to connect using a central server, but they don’t have the full gamut of hardware resources that the big players often boast. Not a problem. They can hire a Perl programmer to build a web server that can easily manage all the IoT devices in the network, and they can do it with far fewer lines of code. 

Even though you may not want to use your Perl-based server for large, complex networks that have to handle expansive, dynamic workloads, it can be a suitable solution for relatively simple networks, such as those needed to connect IoT devices. 

Genomics and bioinformatics 

Even though genomics and bioinformatics may not be the most common uses of Perl or any other language, these areas of research play a crucial role in developing health solutions. A community known as BioPerl focuses on developing applications that can aid in collecting and processing biological information. This can then be used to develop medicines, perform genomic testing, study the genetic make-ups of different populations, and more. 

Get started 

Perl is your gateway to a number of different coding possibilities. While some may consider it an “older” language, new iterations are constantly being developed, enabling programmers to create powerful, flexible solutions for a wide variety of applications. 

Perl really excels as a source of modules that you can use in conjunction with code produced by other languages. If you want to learn a programming language through interactive, self-guided lessons, check out our coding courses to get started.

What Role Does Humor Play in Your Life?

0
What Role Does Humor Play in Your Life?

It is often said that laughter is the best medicine. Do you agree? Why or why not?

When has humor lightened an uncomfortable moment or made you feel better?

In “When Everything Is Heavy, a Touch of Humor Can Help,” Carolyn Todd writes that, beyond making tough moments a little easier, cultivating levity is good for your health:

Wendi Aarons was writing at her local library when the sound of an angry voice made everyone look up. A patron, outraged over a book policy, vowed to take her child to another library and stormed off after berating the staff. The entire room was “so upset,” recalled Ms. Aarons, a humorist in Austin, Texas. “It was just this awful, uncomfortable silence.”

But Ms. Aarons, a pro at balancing humor and discomfort, saw an opening: She stood up and said, “Hey, does anybody have the number for this other library? Because I want to call and give them a heads up.”

Laughter erupted; the mood lifted. Things returned to normal. This is the subtle power of “lightening up.”

“Levity is a mind-set,” said Naomi Bagdonas, a lecturer at the Stanford Graduate School of Business who advises executives on leading with humor and humanity. “It’s looking for reasons to be delighted rather than disappointed in the world around you.”

Ms. Bagdonas joins a chorus of experts who say cultivating levity is essential to well-being. Trying to lighten up might seem challenging given the state of the world; a more somber practice — like mindfulness, which certainly comes with perks — can feel more appropriate for “these unprecedented times.” But taking things less seriously allows us to “travel more lightly,” said Willibald Ruch, a professor and positive psychology researcher at the University of Zurich, and “saves the organism and the soul from too much of a bumpy road.”

Students, read the entire article and then tell us:

  • What role does humor play in your life? Do you feel like you laugh enough?

  • In what ways does humor provide benefits in your life, whether physical, social, mental or emotional? Have you ever noticed any health benefits from laughing? Tell us about a time when laughter has made you feel better.

  • Naomi Bagdonas, a lecturer at the Stanford Graduate School of Business, said: “Levity is a mind-set. It’s looking for reasons to be delighted rather than disappointed in the world around you.” Do you agree? In what ways do you have a levity mind-set?

  • What do you think of the suggested ways to incorporate a little more levity into your life, such as trying to take things lightly when something goes wrong, or creating a levity diary? What recommendations of your own would you give to others?

  • The article advises readers to get to know their own sense of humor. How would you describe yours? Is it irreverent? Sarcastic? Self-deprecating? Do you think of yourself as a funny person?

  • What makes you laugh these days?


Students 13 and older in the United States and Britain, and 16 and older elsewhere, are invited to comment. All comments are moderated by the Learning Network staff, but please keep in mind that once your comment is accepted, it will be made public and may appear in print.

Find more Student Opinion questions here. Teachers, check out this guide to learn how you can incorporate these prompts into your classroom.

Notetaking Formats

0
Notetaking Formats

As with any of the formats above, the key to making combination notes is recognizing what type of information needs to be recorded/learned and choosing the appropriate format, while making sure it’s in a format that you can practice spaced retrieval with. 

I really like using these different formats because they are already set up to practice spaced retrieval with, they condense large amounts of information, and by selecting how the information is organized they help learners build their understanding of the material. An additional tip that I give students is to create a cover sheet, or a tracking sheet, to help track and monitor their progress on the material. This could also be achieved by a header at the top of the page of notes that logs previous practice attempts with this set of material (e.g. “11/5 40%”, “11/6 70%”, “11/7 100%”, “11/15 95%”, “11/30 100%”). Recording progress can help you to identify which material you still need to work on, which material you have a good handle on and can set aside for now, and which material you may need to revisit for some spaced practice. 

References

(1) Mueller, P. A., & Oppenheimer, D. M. (2014). The pen is mightier than the keyboard: Advantages of longhand over laptop note taking. Psychological Science, 25, 1159-1168.

 (2) Kelman, E. G., & Straker, K. C. (2000). Study Without Stress: Mastering Medical Sciences. Sage Publications.

(3) Rivers, M. L. (2021). Metacognition about practice testing: a Review of learners’ beliefs, monitoring, and control of test-enhanced learning. Educational Psychology Review, 33, 823-862. https://doi.org/10.1007/s10648-020-09578-2 

(4) Ebbinghaus, H. (1885). Über das Gedächtnis: Untersuchungen zur experimentellen Psychologie. Dunker & Humbolt.

(5) Küpper-Tetzel, C. E., Kaper, I. V., & Wiseheart, M. (2014). Contracting, equal, and expanding learning schedules: The optimal distribution of learning sessions depends on retention interval. Memory & Cognition, 42(5), 729-741. https://doi.org/10.3758/s13421-014-03941 

(6) Gerbier, E. Toppino, T. C., & Koenig, O. (2015). Optimising retention through multiple study opportunities over days: The benefit of an expanding schedule of repetitions. Memory, 23(6), 943-954. https://doi.org/10.1080/09658211.2014.944916 

(7) Maquet, P. (2001). The role of sleep in learning and memory. Science, 294(5544), 1048-1052. https://doi.org/10.1126/science.1062856 

(8) Pan, S. C. (2015). The interleaving effect: Mixing it up boosts learning. Scientific American, 313(2). www.scientificamerican.com/article/the-interleaving-effect-mixing-it-up-boosts-learning/ 

(9) Blunt, J. R., & Karpicke, J. D. (2014). Learning with retrieval-based concept mapping. Journal of Educational Psychology, 106(3), 849–858. https://doi.org/10.1037/a0035934 

(10) Clark, J. M., & Paivio, A. (1991). Dual coding theory and education. Educational Psychology Review, 3(3), 149-210. www.jstor.org/stable/23359208 

(11) Meyers-Levy, J. (1991). Elaborating on elaboration: The distinction between relational and item-specific elaboration. Journal of Consumer Research, 18, 358-367. 

Do You Like Spending Time Alone With Your Thoughts?

0
Do You Like Spending Time Alone With Your Thoughts?

What do you do when you need a break from the hustle and bustle of daily life? When you need to recharge your mental and physical batteries? Have you ever gone on a silent walk?

Do you like to spend time alone with your thoughts?

In “The Beauty of a Silent Walk,” Christina Caron writes about the simple power of setting one foot in front of the other and taking note of the world around you.

In a TikTok video that has now amassed nearly half a million views, the influencer Mady Maio describes taking a walk. But not just any walk: a silent one.

For her, the 30-minute stroll was revelatory. No podcasts, no music. Just “me, myself and I.”

She was resistant at first. (It was her boyfriend’s idea.) “My anxiety could never,” she said in the video.

Ms. Maio described the first two minutes as mental “mayhem” that eventually gave way to a “flow state.” Her brain fog lifted. Ideas started popping into her head because she was “giving them space to enter.”

The silent walk is TikTok’s latest wellness obsession, a blend of meditation and exercise that aims to improve mental health. Unlike the similarly trendy “hot girl walk,” a four-mile odyssey that requires goal-setting and giving thanks, the silent walk does not involve multitasking. There is no agenda other than to set one foot in front of the other and take note of the world around you.

Walking in silence is an ancient tradition rooted in mindfulness, a form of meditation that helps people focus on the physical sensations, thoughts and emotions of the present moment, without any judgment.

The article explores the benefits of silent walks:

Walking is a well-established balm for the mind and body. Research has shown that walking for as little as 10 extra minutes a day may lead to a longer life. And a 2020 study in The Journal of Environmental Psychology found that a 30-minute walk in an urban park reduced the amount of time that people dwelled on negative thoughts. Walking has also been shown to improve creativity and help fend off depression.

Ms. Lorre, who walks in silence for at least 45 minutes roughly four times a week, said that since she started this practice about a year ago, she now sleeps better, feels calmer and has more consistent energy throughout the day.

But for some people, the idea of a silent walk might seem torturous. One 2014 study found that, if left with no other option, people would shock themselves rather than sit alone with their thoughts.

“Most people seem to prefer to be doing something rather than nothing, even if that something is negative,” the study authors wrote.

Walking, however, can make it more pleasant to spend time with ourselves, experts say.

Students, read the entire article and then tell us:

  • Does the idea of spending time alone in your thoughts appeal to you? Or does it sound boring or intimidating?

  • Have you ever tried taking a silent walk? If so, how was the experience? Did you find it relaxing, invigorating or healing?

  • What do you do to practice mindfulness or wellness? How do these activities affect your mental or physical health?

  • Arielle Lorre, a content creator in Los Angeles, says that she now sleeps better, feels calmer and has more consistent energy throughout the day because of her new walking ritual. Which benefits of silent walks described in the article resonate most with you?

  • One expert said, “There is great beauty and aliveness in the world outside of whatever it is we’re doing on our devices.” Do you agree? Do you find it hard to get away from digital devices and to be attentive to the beauty of the world around you?

  • After reading the article, do you think you might try walking in silence? What other wellness rituals would you recommend to friends or family?


Students 13 and older in the United States and Britain, and 16 and older elsewhere, are invited to comment. All comments are moderated by the Learning Network staff, but please keep in mind that once your comment is accepted, it will be made public and may appear in print.

Find more Student Opinion questions here. Teachers, check out this guide to learn how you can incorporate these prompts into your classroom.

The Red Planet

0
The Red Planet

Use your imagination to write the opening of a short story or poem inspired by this illustration or, describe a memory from your own life that this image makes you think of.

Tell us in the comments, then read the related article to learn more.


Students 13 and older in the United States and Britain, and 16 and older elsewhere, are invited to comment. All comments are moderated by the Learning Network staff, but please keep in mind that once your comment is accepted, it will be made public and may appear in print.

Find more Picture Prompts here.

Word of the Day: allusive

0
Word of the Day: allusive

The word allusive has appeared in 11 articles on NYTimes.com in the past year, including on Sept. 7 in “Confessions of a Drag Legend: Charles Busch’s Memoir Is Here, Darling” by Ben Brantley:

I had arrived just 10 minutes earlier chez Busch, whose “Leading Lady: A Memoir of a Most Unusual Boy” comes out on Tuesday. But already much of the essence of this man who plays women had been established: the encyclopedic frame of reference, the conjuring of a sparklingly sophisticated Manhattan, the summoning of a decades-spanning parade of actresses and, above all, the giddy Judy-and-Mickey-style excitement of putting on a show.

… But as the memoir’s title suggests, Busch is above all a leading lady. His self-starring plays — inspired by the female-centric melodramas of vintage Hollywood — usually find him elaborately bewigged and begowned, cherry picking gestures and inflections from the likes of Stanwyck, Jean Harlow, Rosalind Russell and Joan Crawford. These traits coalesce into a single, swirlingly allusive portrait, usually of a strong, fabulously dressed woman in jeopardy.

Can you correctly use the word allusive in a sentence?

Based on the definition and example provided, write a sentence using today’s Word of the Day and share it as a comment on this article. It is most important that your sentence makes sense and demonstrates that you understand the word’s definition, but we also encourage you to be creative and have fun.

Then, read some of the other sentences students have submitted and use the “Recommend” button to vote for two original sentences that stand out to you.

If you want a better idea of how allusive can be used in a sentence, read these usage examples on Vocabulary.com.


Students ages 13 and older in the United States and the United Kingdom, and 16 and older elsewhere, can comment. All comments are moderated by the Learning Network staff.

The Word of the Day is provided by Vocabulary.com. Learn more and see usage examples across a range of subjects in the Vocabulary.com Dictionary. See every Word of the Day in this column.

Film Club: ‘A Football Coach Walks the Line on C.T.E.’

0
Film Club: ‘A Football Coach Walks the Line on C.T.E.’

Note to Teachers: The film includes difficult and disturbing themes. Please preview it to make sure it is appropriate for your students.

A Football Coach Walks the Line on C.T.E.” is a six-minute film looking at the dangers of the popular sport for the young people who play it — and their families. Meiko Locksley, a standout high-school football player, was shot and killed in 2017 at age 25. After his death, a brain scan showed that he had chronic traumatic encephalopathy (C.T.E.). His father, Michael, the head coach at Maryland, is still reckoning with the implications: “The game of football gave me a degree. I met my wife. I had a family because of it. It was my way out. But I also think that it’s important for me to walk the line between being a football coach while also being parent to a son diagnosed with C.T.E.”

The brain of Meiko Locksley is one of 152 belonging to contact-sport athletes under the age of 30 that were donated between 2008 and 2022 to the UNITE Brain Bank and studied by researchers at Boston University.

In a paper published in August in JAMA Neurology, the researchers reported that 63 of the athletes, or 41.4 percent of them, had C.T.E. Most were football players who never played past college, sometimes not past high school. One was 17.

What is your reaction to the poignant and tragic story? Should children be allowed to play tackle football now that we know that even the young can get C.T.E.?

Students

1. Watch the short film above. While you watch, you might take notes using our Film Club Double-Entry Journal (PDF) to help you remember specific moments.

2. After watching, think about these questions:

  • What questions do you still have?

  • What connections can you make between this film and your own life or experience? Why? Does this film remind you of anything else you’ve read or seen? If so, how and why?

3. An additional challenge | Respond to the essential question at the top of this post: Should children be allowed to play tackle football now that we know that even the young can get C.T.E.?

4. Next, join the conversation by clicking on the comment button and posting in the box that opens on the right. (Students 13 and older are invited to comment, although teachers of younger students are welcome to post what their students have to say.)

5. After you have posted, try reading back to see what others have said, then respond to someone else by posting another comment. Use the “Reply” button or the @ symbol to address that student directly.

6. To learn more, read “After the Loss of a Son, a Football Coach Confronts a Terrible Truth.” John Branch writes:

Michael Locksley was helping coach Alabama to a national championship in 2017 when his 25-year-old son, Meiko, was shot and killed.

Meiko was a standout high-school football player who bounced between college programs as his mind and life slipped into darkness in his early 20s.

His father is now the head coach at the University of Maryland. Michael Locksley has mourned Meiko’s loss, in part, by leading discussions about mental health and trying to destigmatize it among the young men he coaches.

One thing he has not said publicly, until now: Meiko had chronic traumatic encephalopathy, or C.T.E., the degenerative brain disease caused by repeated blows to the head and often associated with football.

C.T.E. can only be diagnosed, with certainty, posthumously.


Want more student-friendly videos? Visit our Film Club column.

Students 13 and older in the United States and Britain, and 16 and older elsewhere, are invited to comment. All comments are moderated by the Learning Network staff, but please keep in mind that once your comment is accepted, it will be made public.