Someone wrote a story about my life. It’s a report from The Verge called “File Not Found: A generation that grew up with Google is forcing professors to rethink their lesson plans”.
When I started teaching an advanced data analytics class to undergraduates in 2017, I noticed that some of them did not know how to locate files on a PC. Something that is unavoidable in data analytics is getting software to access data from a storage device. It’s not “programming” nor is it “predictive analytics”, but you can’t get far without it. You need to know what directory to point the software to, meaning that you need to know what directory contains the data file.
As the article says
the concept of file folders and directories, essential to previous generations’ understanding of computers, is gibberish to many modern students. It’s the idea that a modern computer doesn’t just save a file in an infinite expanse; it saves it in the “Downloads” folder, the “Desktop” folder, or the “Documents” folder, all of which live within “This PC,” and each of which might have folders nested within them, too. It’s an idea that’s likely intuitive to any computer user who remembers the floppy disk.
I am a long-time PC user. Navigating File Explorer is about as instinctive as drinking a glass of water for me. The so-called digital natives of Gen Z have been glued to mobile device screens that shield them from learning anything about computers.
Not everyone needs to know how computers work. I myself only know the layer that I was forced to learn.
My Dad, to whom I owe so much, kept a Commodore 64 in a closet in our house. About once a year, he would try to entice me into learning how to use it. I remember screwing up my 9-year-old eyes and trying to care. Care, I could not. It’s hard to force yourself to do extra work without a clear goal. The Verge article explains
But it may also be that in an age where every conceivable user interface includes a search function, young people have never needed folders or directories for the tasks they do. The first internet search engines were used around 1990, but features like Windows Search and Spotlight on macOS are both products of the early 2000s. Most of 2017’s college freshmen were born in the very late ‘90s. They were in elementary school when the iPhone debuted; they’re around the same age as Google. While many of today’s professors grew up without search functions on their phones and computers, today’s students increasingly don’t remember a world without them.
One area in which I do minimum archiving is my email. I rely heavily on the search function. I could spend time creating email folders, but I’m not going to put in the time unless I’m forced to.
Here’s where the “problem” lies:
The primary issue is that the code researchers write, run at the command line, needs to be told exactly how to access the files it’s working with — it can’t search for those files on its own. Some programming languages have search functions, but they’re difficult to implement and not commonly used. It’s in the programming lessons where STEM professors, across fields, are encountering problems.
Regardless of source, the consequence is clear. STEM educators are increasingly taking on dual roles: those of instructors not only in their field of expertise but in computer fundamentals as well.
Personally, I don’t mind taking on that dual role. I didn’t learn to program until I really wanted to. The only reason I wanted to was that I had discovered economics. I wanted to be able to participate in social science research. Let these STEM or business courses be the motivation for students to learn to use computers as tools instead of just for entertainment.
Allen Downey wrote a great blog on this topic back in 2018 that is more practical for teachers than the Verge report. He argues that learning to program will be harder for the 20-year-olds of today than it was for “us” (old people as defined by entering college before 2016). He recommends a few practical strategies, while acknowledging that there is “pain” somewhere along the process. He thinks it is sometimes appropriate to delay that pain by using browser-based programming interfaces, in the beginning.
I gave my students a break from pain this week with a little in-browser game that you can play at https://www.brainpop.com/games/blocklymaze/ They got 10 minutes to forget about file paths, and then it was back to the hard work.
I have found that a lot of students need individual attention for this step – the finding a file in their hard drive. I only have to do that once per student. Students pick the system up quickly. File Explorer is a pretty user-friendly mechanism. Everyone just has to have a first time. Sometimes, Zoomers just need a real person who cares about them to come along and say, “The file you downloaded exists on this machine.”
One way around this problem is to reference data that lives on the internet instead of in a local machine. If you are working through the examples in Scott Cunningham’s new book Causal Inference, here’s a piece of the code he provides to import data from his public repository into R.
full_path <- paste(https://raw.github.com/scunning1975/mixtape/master/, df, sep=“”)
df <- read_dta(full_path)
The nice thing about referencing data that is freely available online is that the same line of code will work on every machine as long as the student is connected to the internet.
As more and more of life moves into the cloud, technologists might increasingly be pointing programs to a web address instead of the /Downloads folder on their local machine. Nevertheless, the kids need to have a better sense of where files are stored. He or she who can understand file architecture is going to get paid a lot more than their peers who only know who to poke and scroll on a smartphone.
There is a future scenario in which AI does most of the programming for us. When AI can fetch files for us, then File Explorer may seem obsolete. But I worry about a world in which fewer and fewer humans know where their information is stored.
Yes to:
Sometimes, Zoomers just need a real person who cares about them to come along and say, “The file you downloaded exists on this machine.”
LikeLike
https://twitter.com/adamjnafa/status/1600916310090661888 12/8/2022 “Google Docs and other cloud apps have probably been one of the worst things to happen to computer literacy. Like, we have an entire generation who quite literally cannot find files on their computer.”
LikeLike