Hardscrabble šŸ«

By Max Jacobson

See also: the archives and an RSS feed

Learning new things

August 26, 2012

What have I learned lately?

Iā€™ve watched my friend make a web app from scratch and it made me dizzy. I helped develop the idea and given some direction for the project.

Iā€™ve learned how to use GitHub to collaborate on that project. I have one public repo there today and itā€™s mainly just there for me to learn to use git with.

And also to practice web design. Things like sass and CSS. And Pixelmator.

I put all I learned from that into re-designing my homepage maxjacobson.net, which remains a pretty version of my public Pinboard page. I removed the half-assed Pelican blog in favor of this Wordpress install, which I casually mention at the bottom of the homepage.

To set up this Wordpress blog I had to follow some tricky instructions, including setting up a MySQL process and database. Still donā€™t really know how that stuff works, but itā€™s working.

The blog doesnā€™t look anything like the homepage, but Wordpress themes are pretty tricky. Theyā€™re all built with PHP which I donā€™t know how to use. Iā€™ll probably not go down that rabbit hole.

There are a lot of broken links, which I find beautiful.

People only use RSS when they don't know they're using it so maybe the 'sub box' is its future

July 17, 2012

Google owns,

  • Google Reader
  • YouTube, which has a ā€œsub boxā€ for subscribing to Channels

Nerds use the first one and regular people use the second one. Maybe they can like ā€¦ merge them?

The easiest way to indent paragraphs online, not that you necessarily should

March 21, 2012

Today I read DC Piersonā€™s recent essay Writing About 2Pac In Los Angeles, A Place It Turns Out He Isnā€™t From and even though I liked reading it a lot, the main thing Iā€™ve been thinking about since has nothing to do with hip-hop or Los Angeles or writing. Itā€™s this: why did he indent his paragraphs?

If this essay were printed in a book, I wouldnā€™t have blinked. Thatā€™s normal. But indented paragraphs online are somewhat unusual. Maybe the key to it is this line from the essay:

I wonder if Hampton will read what I end up writing and make fun of me, the way I imagine most comics will when they discover that I write earnest-ish prose stuff, in particular, douchey prose stuff about writing about music.

My feeling is this: prose needs not be indented, but earnest-ish prose stuff does. Or thatā€™s how it feels anyway. In the past Iā€™ve written short stories, put them on a blog, and felt like they looked wrong. Thatā€™s not a blog! Iā€™d think. Itā€™s a heart-breaking story, it should be indented!

And, maybe. More on that later.

First, letā€™s delve into the nitty gritty of formatting for the web. Letā€™s look at the beginning of one of Piersonā€™s paragraphs, in HTML, to see how he accomplished indentation:

<p class="body1"><span>            </span>Then I moved[...]</p>

Basically, he inserted a bunch of spaces at the beginning of each paragraph. I think a lot of people do it this way. I donā€™t know if this is ā€œwrongā€ so much asā€¦ I think thereā€™s a better way. Iā€™m no expert but hereā€™s my take on the best way to format indented paragraphs online.

Basically, just add this code anywhere in your post:

<style>p+p { text-indent: 2em; margin-top: -1em; }</style>

The text-indent: 2em part will indent the first line of each non-first paragraph by two ems. An em is basically whatever size the text is. 2em seemed right to me. Popcorn Fiction uses 3em. You can adjust that figure or replace it with 25px or whatever you want.

I just learned that p+p trick today. In the past Iā€™ve just used p for paragraph, but this way the style will only apply to paragraphs that directly follow another paragraph. Thatā€™s good because indentations are usually omitted in the first paragraph. If youā€™d like the style to apply to every paragraph, replace p+p with just p.

The margin-top: -1em part will decrease the spacing between paragraphs a little. Now that paragraphs are being indented, we donā€™t need spacing to identify a new paragraph as much.

This will affect the whole page, not just your post, so be careful. If you put this in a Tumblr post, for example, youā€™ll find that every post on your homepage is now affected. To avoid this, put the code ā€œafter the jumpā€ with the Read More button code, <!-- more -->.

The advantage is that you donā€™t need to worry about HTML or anything. Just write your thing then put the one line of CSS in there, and itā€™ll look good.

(If youā€™d like to see what this looks like, check out this old short story of mine. This had no indentation yesterday but I just added it all with one line of code.)

If youā€™re not comfortable with HTML, Iā€™d recommend writing in Markdown using something like Mou (Mac), Dillinger (web), or MarkdownPad (Windows) to preview or generate clean HTML for you. For this blog I write everything in Markdown and almost never see the HTML.

Both Tumblr and Calepin allow you to write in Markdown without ever seeing HTML. Check the Tumblr Preferences to flip that switch. Highly recommended.


So itā€™s possible to do it and pretty painless to implement. But Iā€™ll ask this question next: why bother? Donā€™t indented paragraphs look a little weird on the web? A little out of place? I think so. The web has so trained my perception of this that I sort of wonder why books have indented paragraphs now. Hmm. If paragraphs were spaced out, books would be longer. I wonder by how much.

Hereā€™s some quick math:

  • My copy of A Feast for Crows is 976 pages
  • There are 34 lines per page
  • There are an average of 7.8 paragraphs per page (from a random sampling of ten pages)
  • There are approximately 7,612.8 paragraphs in the book (976 pages * 7.8 paragraphs per page)
  • Thatā€™s an additional 7,612.8 new lines to the book if we spaced out the paragraphs with one extra line worth of spacing
  • Thatā€™s an approximate additional 223.9 pages (7,612.8 lines / 34 lines per page)

So thatā€™s a significant amount of paper. Foregoing indentations would save some pages but I donā€™t think it would nearly balance out. Indentations are much more compact than spacing.

Okay, so indentations are greener, but thatā€™s not something we really have to worry about on the web. Maybe it looks better or is easier to read. I donā€™t know. I only like it when writers take the care to format their work in the way that best expresses themselves. So go for it if you want.

On June 4th, 2011, someone named TigerCrane asked the internet ā€œWhen and why did we stop indenting paragraphs?ā€

I particularly like this response by Sys Rq:

I havenā€™t seen a not-indented paragraph in a while, outside of situations like this online one where itā€™s basically impossible.

Where are you seeing them?

There are some other great theories there as well.


Letā€™s take a look at some publications.

Publication Indents on screens Indents in print
Most blogs No N/A
Most magazines I donā€™t know Yes
The New York Times No Yes
The New Yorker No Yes
Popcorn Fiction Yes N/A
Kindle eBooks Yes (by default) N/A
Apple iBooks Yes (by default) N/A
Instapaper No N/A

I find it very curious that the eBooks are styled like print books when they donā€™t need to be. I suspect itā€™s a matter of familiarity and comfort.

Thereā€™s one, possibly dire consequence of replacing indentations with spacing in long form writing. These pieces are broken up into units of discourse. The novel is made up of two parts, maybe, and those parts are made up of chapters, and those chapters are made up of sections, which are made up of paragraphs, which are made up of sentences, which are made up of words.

If a writer chooses to use spacing to separate paragraphs, how does she separate sections? Iā€™m talking about those parts where the action stops, thereā€™s a rare space between paragraphs, and then action resumes. Maybe itā€™s a good moment to walk the dog. If all paragraphs are spaced out, that break wonā€™t stand out.

I solve that problem with horizontal rules now. I think it works okay. It looks a little something like this in Markdown:

# The Book

## Chapter one

Some stuff.

* * *

Some more stuff.

## Chapter two

The thrilling conclusion. What a short book.

And you can style the <hr /> (horizontal rule) to look however you want, including being invisible. Hereā€™s what mine looks like on this site:


So anyway I generally avoid indenting text online. I think the urge is mostly to do with wanting to put on book airs. But Iā€™m not writing a book, even if Iā€™m writing a novel. Iā€™m writing a web page.

Introducing myself to the command line

February 26, 2012

I never really understood how to use the command line. I kind of got it in principle but not in practice.

So I taught myself the basics by reading this mini- book on Learn Code The Hard Way. Itā€™s awesome. The book is an alpha release and may have some errors but I didnā€™t spot any. Would I, though?

Here are my thoughts and notes I jotted down while learning this. Itā€™s fairly stream of conscious and certainly less accurate or helpful than the aforelinked mini-book. If youā€™d like to learn it along with me, maybe this could possibly be useful to you. Itā€™s a little different on a Windows computer, but if youā€™re on a Mac or Linux computer, this should all work for you too.


I wonder how much stuff Iā€™m gonna have to memorize.

Iā€™m in the terminal! Iā€™m in Terminal!

Iā€™m learning bash. Apparently my nerd friends will tell me to learn zsh instead. I wonder if my actual nerd friends would.

Ok I think I get the whole cd and .. thing. If youā€™re in a directory you can cd into any subdirectory or cd .. to go back one. From the downloads directory I can cd ../documents to get to the documents folder. That goes up one and then back down into another.

I wonder if up and down are the right words to use there. In the Finder I think of it more as left and right, in the column view.

So far basically all Iā€™m doing is making folders and moving through them. Loving it.

Whoa, I just deleted john! john was a directory I made. rmdir john is deadly.

At this point, the guide is saying if I want to I can take a break and come back tomorrow. It thinks Iā€™m weak. I can do this.

I like that I can do mkdir -p i/like/icecream and itā€™ll make all three of those folders from scratch.

I wonder if I rmdir i, if itā€™ll remove all the subfolders too. Ohh cool, it wonā€™t let me. Thatā€™s nice.

Itā€™s kind of weird that when I rmdir something, it doesnā€™t go to the trash, itā€™s just gone.

pushd and popd are kind of baking my noodle (as Corey likes to say (note: this used to link to a podcast, but that podcast is gone). Is this like the popping and locking of the programming world? Maybe I should take a break.

OK so youā€™re in a directory. You pushd to/a/folder and now youā€™re there, but you sort of bookmarked where you were. If you want to go back there you popd. If you push somewhere, then push somewhere else, then pushd over and over you can cycle back and forth between them. If you popd over and over you can go back through the stack (from most recent to least recent I think?) of your pushds.

I love putting things in code brackets itā€™s really easy in Markdown/Calepin. I might be misusing it.

Ahh and the stack isnā€™t hidden! Thatā€™s whatā€™s printed/returned when you pushd. I think Iā€™m wrapping my head around this. Not sure if Iā€™ve explained it well or anything, though.

Iā€™m up to chapter nine. I just made an empty text file by writing touch iamcool.txt. Hey, your words.

I just wrote touch butts.mp3 and it made a song called Butts that Iā€™m gonna be sending out to radio stations first thing tomorrow.

Ok so if I want to make a copy of iamcool.txt called awesome.txt itā€™s as easy as writing cp iamcool.txt awesome.txt! Okay! (In fact I am getting tired).

Iā€™m slowly piecing together that -r doesā€¦ well, something. I donā€™t know. If I mkdir afolder, I can then cp -r afolder ~/Desktop to make a copy of that folder on my desktop. But to copy awesome.txt to my desktop I just write cp awesome.txt ~/Desktop. So that -r I guess makes it work for a directory.

Hmm so now Iā€™m moving files. But it sounds like renaming to me. mv awesome.txt lame.txt will basically rename it from awesome to lame. I suppose itā€™s moving the data from one file to a new one? Like, when you die your soul leaves your body and enters a baby just as itā€™s being born? If you believe in a very literal, specific form of reincarnation?

I know how to open a file in vim, and I even know how to do some basic vim commands, but I have no idea how to save a file and exit vim.

Ok I took a break. Itā€™s two days later from when I started this. Iā€™m happy that I still remember the commands Iā€™ve learned this far.

I donā€™t know how to delete files but I can sort of do it by renaming one file into something else that exists, and it basically disappears I think.

I can also move a file from one folder into another folder with this. mv hello.txt afolder/hello.txt moves that file into the folder (though it doesnā€™t create the folder). So itā€™s moving and renaming.

Hmm.

Okay so now Iā€™m using the less command to view the contents of text files. it seems to work just fine. I press q to exit. If itā€™s a long document I can page through it with w (up) or space (down), one page-worth at a time. Got it.

I can read markdown files in the terminal pretty nicely. Iā€™m gonna navigated to my Calepin folder and open up this draft file. cd ../Dropbox/Apps/Calepin, ls, less cli.md wow there it is! Ha! This is fun.

I just whipped up a background image for my terminal. I wish it could tile and not just stretch. Looks good as long as I donā€™t resize the window.

Now Iā€™m catting things. That just sort of displays the contents of the text file in a slightly different way than less. So exciting.

Oh thank goodness rm exists. I didnā€™t like that other way of deleting files.

OK so I can rm hello.txt to delete it but I canā€™t use rm to delete a folder (thatā€™s what rmdir is for). Oh wait, I can, I just have to do some weird business. rm -rf folder works. Yoosh how do I remember that? Wait a moment. rm -rf can delete folder even if they have stuff in them. That one ups rmdir. This is ā€œrecursive deletingā€.

I like this possibly self-delusional quote from the mini-book:

Now we get to the cool part of the command line: redirection.

I kinda knew about the | but not the < or >.

Oh! This is fun.

I just had a breakthrough wherein I learned how to save and close from vim, so Iā€™ve just been playing in that for a little while. Itā€™s :wq! So simple!

Ok, wildcard matchingā€¦ ya yah.

Ex, ls *.txt will list only the text files. thatā€™s handy. This command surprised me: cat *.txt > bigfile.txt took all of the txt files and combined them into one new one, which it also created. Then rm *.txt removed all of the txt files. Thatā€™s vicious.

Ok so this is a fun thing. I just realized I can open tabs in the Terminal! So Iā€™m gonna write this post in one tab and learn things in another. Whoa. Although the switch-tab shortcut is kind of unwieldy (command-shift-] or [). I can learn it.

So I can run a command like grep hello *.txt and itā€™ll find the string ā€œhelloā€ in all the txt files and then return a list of all of the lines from all of the txt files that have that string in them. Useful. And if I want, I can pipe that to less and itā€™ll be the same thing, but easier to flip through (with space and w).

I thought I was done when I reached the section on man, which looks up the manual for any given command, but thereā€™s a whole nother section. Great. I can handle some more knowledge.

Iā€™m up to chapter 21. Weeks have elapsed. Iā€™m not sure exactly what I just did and I can only hope it wasnā€™t bad. one of the thrills of using the command line is that I can completely destroy my whole computer at any point by writing the wrong thing.

In this chapter I ā€œlooked at my environmentā€ and then set a variable and then printed out the variable. But where is this variable? In my environment? I feel like I donā€™t want it to be there anymore but donā€™t know how to get it out. Environmentalism! (I actually echoā€˜d it, not print. For what itā€™s worth.)

Now it wants me to research online ā€œhow you change your PATH for your computerā€ and do it all in the terminal. I think Iā€™m just gonna skip this one.

Ah! Chapter 22 to the rescue. unset will flush that variable. Cool. Iā€™m so relieved. I wonder if I can unset something important. That would be very unpsetting.

ā€œYou have completed the crash course. At this point you should be a barely capable shell user.ā€ ā€“ Nice. I feel that way. It feels pretty great.

The conclusion links to this official bash reference. Also this cheat sheet. Maybe Iā€™ll tackle those next.

Mosh Pits

May 7, 2011

ā€œI think itā€™s something thatā€™s hard to recognize if you donā€™t experience it yourselfā€

Mariel Loveland:

I stood on the outskirts of the crowd for the entire show knowing I wanted absolutely nothing to do [with] the mass of 15 to 20-year-old boys pushing each other around, but the minute the closing band struck its first chord, I was shoved right into the middle. I immediately tried to look for a way out but was completely surrounded, and no matter how much I pushed, I couldnā€™t move. I was getting punched, kicked, and pummeled until I eventually fell down, and all I could see was a wave of dust and sneakers kicking and stepping on me. I couldnā€™t get up, and I couldnā€™t breathe. I choked on dirt and started sobbing until one man, probably someoneā€™s dad, heard me screaming for help. He reached underneath the crowd and threw me over his shoulder. As he was pulling me away, I heard one voice cut through the music: ā€œThatā€™s why you donā€™t bring your little girl to shows.ā€ I was 15.

I liked this little essay about being a girl at punk shows. It got me thinking back on my first time in a mosh pit (of not too many). It was at my Temple, at the annual Gefiltefest. Some local punk band was playing and kids got rambunctious. I was just enjoying the music but I got shoved into the vortex. I was around fifteen too. It was kind of fun at first but then I fell down and my glasses fell off. One of those naĆÆve ā€œis this the end?ā€ moments. Almost immediately someone pulled me up, shoved my glasses into my hands, and pushed me out of the circle. There definitely werenā€™t any girls in there.

Another time, in college, I went to Montreal with some friends to see the band Thrice. This was during their Alchemy Index tour, which is when I first started listening to them. My friend Sung loved them, I think because he was an asian guitarist and Thriceā€™s lead guitarist is asian, and heā€™s pretty great. Sung had a friend in college in Montreal whose place we could stay at, and so we left our bags there, went and bought some of those extra-large bottles of canadian beer, wandered around a little, and went to the show. Say Anything was opening for Thrice, and were playing when we got there. The venue was way bigger than Iā€™d anticipated. Less the grubby little rooms I was used to, more of a huge, multi-layered club. You could work your way up close to the stage if you want, and mosh around, or get a drink and watch from the mezzanine. We went right to the floor and got separated right away.

Say Anything didnā€™t sound so great so I went for a walk, to the bathroom, then the bar. There were a lot of French seeming girls there, not so many up front on the floor. Maybe they didnā€™t feel safe there. I donā€™t know. I didnā€™t, really, but that was kind of the fun of it.

By the time Thrice came on, things were getting to be kind of a blur. I didnā€™t know where my friends were. The plan was to find them later. I was never a massive Thrice fan, but one thing I really like is how theyā€™ve progressed from a hardcore band in their early outings to a slightly more experimental rock and roll group. So I was a little surprised by how heavy the show was once it started, and how immediately the mosh pit congealed and dwarfed Say Anythingā€™s. I was drawn in, willingly. The energy is hard to resist. I didnā€™t brave the thrashy center but I got shoved around a little, and shoved people around a little. And then my shoe fell off and disappeared into the crashing waves of converse all stars.

So now Iā€™m kind of drunk and in a faraway land, and Iā€™m hopping on one foot and everyone is shoving everyone and really loud music is playing and Iā€™m not sure where my friends are. The adrenaline Iā€™d been looking for? Found it.

Suddenly I see my shoe. Someoneā€™s holding it above their head like a trophy, less than ten feet away, but a shifting mass of dozens of sweaty canadians between us. I start forcing my way through, on one foot, and reaching out, but the guy tosses it across the floor, like one might with a beach ball at a concert your parents would take you to. The crowd tossed it a couple more times before I managed to intercept it and pull it back on, at which point I receded to the edges where all youā€™re doing is helping people not fall down and being the one who picks up other peopleā€™s glasses and enjoying the music and catching your breath.


While writing this I listened to Ms. Lovelandā€™s band Candy Heartsā€™ album Ripped Up Jeans and Silly Dreams which you can download for free there. Itā€™s kind of nice. Hits that sweet spot between plaintive got-no-friends-but-my-guitar and us-against-the-world propulsion when the drums kick in. Not sure if that means much of anything, but Iā€™m no music critic.

Un Americano re JapĆ³n y mucho cafe e ansiedad

March 12, 2011

So today on my lunch break I walk to the Stumptown cafe in the Ace Hotel on 29th street in Manhattan to buy a pound of ā€œHair Benderā€ coffee beans. Iā€™d heard some good things, you know? Itā€™s supposed to be really great. Ace Hotel seems like a really expensive youth hostel, or like a teen opium lounge, or like a nightclub/library hybrid with a chill bouncer or - and so I got on a serious line to buy some coffee, I was probably waiting for like ten minutes, and I hand over the bag and ask for an Americano - (which I used to be embarrassed to order because I was told itā€™s named that by Europeans who think weā€™re sissy for watering town our coffee but now I realize thatā€™s actually how I like my coffee and it canā€™t be that pejorative if weā€™re using it all the time, like we can call each other and our drinks that and weā€™re sort of taking it back you know?) - and as the quiet, vested, bearded man makes it for me I realize itā€™s cash only and I only have two dollars and Iā€™m going to have to go to the ATM in the lobby and I say sorry, Iā€™ll be right back, da da da, and I go to the lobby and of course the ATM is currently being serviced and Iā€™ll have to go find another one if I want any cash any time soon. So I start walking around and I think I remember I passed my bank on the way here and so I walk the three blocks and get some money and walk the three blocks back, and when I get back thereā€™s, like, a gaggle of Muslims on 29th street now, like maybe fifty or sixty guys, all facing the same way - I look for a mosque and donā€™t see one, just a middle eastern restaurant - and preparing their prayer rugs, some on the sidewalk and some on the edge of the street, and praying as cars whiz by and the residents of stumptown gawk indifferently.

I go in and thereā€™s another serious line - a bunch of people all facing the same way and praying you might say, and not unfairly - and I figure I should probably get back on it even though I donā€™t have all the time in the world, but the Vest sees me after a minute and says I should come up and pick up my things. They donā€™t seem to mind that I kinda ditched them for twenty minutes as I had fretted. He happily makes me another watered down pussy drink and offers me a bag for the hair bender, which I decline and (maybe) awkwardly stuff it in my coat pocket, and leave, past where all the guys had been and had somehow evacuated already.1


Iā€™ve just done some light googling to learn more about the coffee I bought and Iā€™m a little sorry to confess that my attentions drifted immediately to an essay by Ethan Epstein which seems aimed to splash cold water in the face of those who think theyā€™re right to be taking certain pleasures in this endeavor of fancy coffee.

Yes, yes, itā€™s fun to pay an extra two dollars for them to brew it with that chemex thing you read about on the internet, and yes itā€™s fun to put on vests and not worry about the economic consequences of our purchases, and it is highly seductive to just take them at their word that they are in fact making the very best coffee in the world.

(Not that they actually said that, though you might feel like they didnā€™t need to.)

Ethan Epstein writes:

Stumptown shouldnā€™t be mistaken for the bohemian paradise that its owner and his legions of promoters and sycophants would have you believe. Like Starbucks, the company it professes to abhor, Stumptown provides a ready-made, generic bohemianism, one where people know exactly what to expect. Stumptownā€™s current strategy is essentially a retread of Starbucksā€™ corporate model from more than a decade ago.

That was published twenty-seven months ago, but I can report that they donā€™t seem to have been cowed by his criticism. Thereā€™s more to the article, and itā€™s certainly worth a read. But as much as I enjoyed the irascibility factor, it reminded me of another essay, one I read several months ago (via my cousin Rachelā€™s blog) called ā€œBeing a Hipster Is an Excellent and Wonderful Thing!ā€

In it, Maria Bustillos writes:

Itā€™s easy to tell the difference between a hipster and a poseur, because while the former are mainly enjoying, the latter are mainly judging. The poseur is an aesthetic snob without aesthetic discernment; he sneers but has no understanding of standards. So instead of having fun sharing their arcane things together, the poseurs are having zero fun pretending to not like anything. As Nietzsche put it most memorably: The man who despises himself nevertheless esteems himself as one who despises. These two kinds of people really are just worlds apart, even though they may find themselves living in the same neighborhood and going to the same rock show.

It would be unfair of me to take her general criticism and pass it through a magnifying class and focus them on this relatively old piece. What I really mean to focus it on is my own weird head, because these are things I struggle with and I relate to both pieces very much, and theyā€™re both pulling at me, and I want to be more like ā€œMariaā€ but Iā€™m afraid Iā€™m not.

Maria continues:

So what are these alleged good reasons for praising the hipsters? There are two. One is to decrease suffering among the youngs, because there should be no shame ever surrounding the love of or identification with a place, a way of life, a band or a pair of glasses. There could be so much more happiness (and inventiveness, and liberty) if people were just free to just love what they love without having to worry about whether or not they are going to be crucified for being a hipster.

That was five months ago. It was around then that I probably first heard of the Aerobie Aeropress espressor maker, which comes from the same inventor of such ā€œHigh Performance Sport Toysā€ as the Aerobie Pro ring, which apparently has been thrown farther than anything else has been thrown.

Lately Iā€™ve been growing dissatisfied with my french press for a couple of reasons that the Aeropress seems to solve2 so I said ā€œunnnnh fuck itā€ and bought one and tonight I used it to make some hairs bend and it was good. I think itā€™ll get better as I get a hang of the contraption (which looks like a penis enlarger). I enjoyed it, and I think thatā€™s an important step toward being my inner Maria.

  1. Now Iā€™m wondering if the Muslims were perhaps sending their prayers to Japan, and if perhaps Iā€™m a real rube for thinking about coffee and hipster culture and anxiety while thousands of people are losing their homes and dying across the world and how I never know what to say on days like today so I either stay quiet or canā€™t stop talking and today I tweeted this and maybe that wasnā€™t that funny but it was all I could think to say.Ā 

  2. It brews faster, is easier to clean up, and doesnā€™t have the sediment in the drink, without losing the taste. It had been my understanding that the main boon of french press was the lack of paper filter, which ensured that all of the oils in the coffee grounds werenā€™t stuck in the filter. The Aeropress does have a filter, but claims that this isnā€™t an issue.Ā