Thursday, August 19, 2021

Real Stories, Real Voices: An Experience You Don’t Want To Miss Out On

let mobile = false; let prev = 100; if (navigator.userAgent.match(/Android|BlackBerry|iPhone|iPad|iPod|Opera Mini|IEMobile/i)) { mobile = true; } function rotateOn(id) { let tshid = ["shape" + id]; let tsh = document.getElementById(tshid); tsh.classList.add("shape-rotate"); } function rotateOff(id) { let tshid = ["shape" + id]; let tsh = document.getElementById(tshid); tsh.classList.remove("shape-rotate"); } function audioOn(id) { // Buttons let ionID = ['icon-on' + id]; let iconPlay = document.getElementById(ionID); iconPlay.style.display = "none"; let ioffID = ['icon-off' + id]; let iconPause = document.getElementById(ioffID); iconPause.style.display = "block"; // Visualization rotateOn(id); } function audioOff(id) { // Buttons let ionID = ['icon-on' + id]; let iconPlay = document.getElementById(ionID); iconPlay.style.display = "block"; let ioffID = ['icon-off' + id]; let iconPause = document.getElementById(ioffID); iconPause.style.display = "none"; // Visualization rotateOff(id); } function activateAudio(id) { for (let e = 0; e < count; e++) { // Pause all audio and reset to start let afReset = ['video' + e]; let audReset = document.getElementById(afReset); //let vzReset = ['vizvideo' + e]; //let vizReset = document.getElementById(vzReset); // Reset icon to play //let iReset = ['icon' + e]; //let iconReset = document.getElementById(iReset); ///iconReset.classList.remove('tmp-aud-pause'); // Ignore the selected audio if (e != id) { audReset.pause(); rotateOff(e); audioOff(e); } } // Play selected audio let afPlay = ['video' + id]; let audPlay = document.getElementById(afPlay); // let vzPlay = ['vizvideo' + id]; // let vizPlay = document.getElementById(vzPlay); let iPlay = ['icon' + id]; let iconPlay = document.getElementById(iPlay); if (audPlay.paused == true) { //iconPlay.classList.add('tmp-aud-pause'); audPlay.play(); rotateOn(id); audioOn(id); } else { //iconPlay.classList.remove('tmp-aud-pause'); audPlay.pause(); rotateOff(id); audioOff(id); } } function formatDuration(d) { let m = parseInt(d / 60, 10); let s = Math.round(d % 60); let mp = ''; let sp = ''; if (m < 10) { mp = '0'; } if (s { audPlay.pause(); audPlay.currentTime = 0; durPlay.innerHTML = formatDuration(audPlay.duration); }); } function toggleAudio(id) { // Stop other players from playing, start or pause selected audio activateAudio(id); // Monitor the selected audio, for end and duration monitorAudio(id); } function replayAudio(id) { let afPlay = ['video' + id]; let audPlay = document.getElementById(afPlay); let ionID = ['icon-on' + id]; let iconPlay = document.getElementById(ionID); iconPlay.style.display = "none"; let ioffID = ['icon-off' + id]; let iconPause = document.getElementById(ioffID); iconPause.style.display = "block"; rotateOn(id); audPlay.play(); audPlay.currentTime = 0; if(prev != id) { let prPlay = ['video' + prev]; let prevPlay = document.getElementById(prPlay); prevPlay.pause(); rotateOff(prev); audioOff(prev); } monitorAudio(id); } // Find all the audio players and populate with ids and functions let count; function setupMedia() { // Get all media players let m = document.getElementsByClassName('tmp-media'); // Get the media file container let mf = document.getElementsByClassName('tmp-media-file'); // Get the video tag for the media file let mfv = document.querySelectorAll(".tmp-media-file video"); // Get the visualizer container //let viz = document.getElementsByClassName("tmp-visualizer"); // Get the visualizer video tag // let vizv = document.querySelectorAll(".tmp-visualizer video"); // Get the progress container // let prog = document.getElementsByClassName("tmp-progress"); // Get the duration container let dur = document.getElementsByClassName("tmp-duration"); // Get the current time container let time = document.getElementsByClassName("tmp-time"); // Get the controls container let cntrl = document.getElementsByClassName("tmp-controls"); // Get the on icon let iconon = document.getElementsByClassName("tmp-icon-on"); // Get the off icon let iconoff = document.getElementsByClassName("tmp-icon-off"); // Get the replay icon let iconrp = document.getElementsByClassName("tmp-icon-replay"); // Get the shape file let tsh = document.getElementsByClassName("tmp-shape"); let lng = 3; // m.length; for (let e = 0; e < lng; e++) { // Setup 'tmp-media' let mID = ['media' + e]; m[e].setAttribute('id', mID); // Setup 'tmp-media-file' let mfID = ['mediafile' + e]; mf[e].setAttribute('id', mfID); // Setup 'tmp-media-file video' let mfvID = ['video' + e]; mfv[e].setAttribute('id', mfvID); // Setup 'tmp-visualizer' // let vizID = ['viz' + e]; // viz[e].setAttribute('id', vizID); // Setup 'tmp-visualizer video' // let vizvID = ['vizvideo' + e]; // vizv[e].setAttribute('id', vizvID); // Setup 'tmp-progress' //let progID = ['prog' + e]; //prog[e].setAttribute('id', progID); // Setup 'tmp-duration' let durID = ['dur' + e]; dur[e].setAttribute('id', durID); dur[e].innerHTML = formatDuration(mfv[e].duration); // Setup 'tmp-time' let timeID = ['time' + e]; time[e].setAttribute('id', timeID); // Setup 'tmp-controls' let cntrlID = ['controls' + e]; cntrl[e].setAttribute('id', cntrlID); // Setup 'tmp-icon-on' let ionID = ['icon-on' + e]; iconon[e].setAttribute('id', ionID); // Setup 'tmp-icon-off' let ioffID = ['icon-off' + e]; iconoff[e].setAttribute('id', ioffID); // Setup 'tmp-icon-replay' let irpID = ['icon-replay' + e]; iconrp[e].setAttribute('id', irpID); // Add the toggle play/pause to the icons let audFunc = ['toggleAudio(' + e + ')']; let audrpFunc = ['replayAudio(' + e + ')']; iconon[e].setAttribute('onclick', audFunc); iconoff[e].setAttribute('onclick', audFunc); iconrp[e].setAttribute('onclick', audrpFunc); // and to the visualizer //viz[e].setAttribute('onclick', audFunc); // Setup shape let tshid = ['shape' + e]; tsh[e].setAttribute('id', tshid); } // Store the number of audio players count = m.length; // Cleanup m,mf,mfv,dur,time,cntrl,iconon,iconoff,tsh,(iconrp= undefined); } function setup() { setupMedia(); } /* Preload */ function ready(e){(document.attachEvent?"complete"===document.readyState:"loading"!==document.readyState)?e():document.addEventListener("DOMContentLoaded",e)}document.onmouseleave=function(){window.isReady=!1},window.addEventListener("resize",function(){window.isReady=!1}),window.isReady=void 0!==window.isReady&&window.isReady,ready(function(){var e=setInterval(function(){window.imagesLoaded&&(imagesLoaded("#tmp-load",{background:!0},function(){window.isReady=!1,clearInterval(e)}),clearInterval(e))},100);if(!1!==window.isReady)return;window.isReady=!0;const t=setTimeout(function(){clearTimeout(t),setup()},300)});

In a digital-centric world rife with filters, highlight reels, and surface-level connections, being real — in all of its messy, complicated, beautiful glory — can feel staggeringly radical. In partnership with Aerie, we’re interested only in peeling back the layers and telling powerful stories that are authentic. Meaningful. Real. And we’re asking you to join us.

LISTEN TO OUR STORIES

00:00
00:00
00:00
00:00
00:00
00:00

Like what you see? How about some more R29 goodness, right here?

Here’s Your WFH And Office Hybrid Fashion Guide For These Weird Times (And Beyond)

I mostly work from home, occasionally co-works with friends in a vaccinated environment, and even more sporadically from a limited-capacity office. So I can tell you that, sartorially speaking, I've been in an interesting spot. Like many people in a hybrid or WFH setup, I've been figuring out what to do with my day-to-day work style.

Obviously, I'm not planning on going full-on biz mode with suits or heels. I mean, who is there to impress anyway? But I always strive to be respectfully presentable. It's why I've adopted the flexible "work from home and office" outfit that can take me straight from a morning Zoom call to an afternoon check-in at the office to an evening dinner date without needing a wardrobe change. And while style points are very much top of mind, comfort is the real north star here . Think stretchy pants, big shirts, slip-on shoes, soft bralettes, and roomy totes. These are borderline lounge clothes that, in a pinch, you can run out the door and don't have to feel self-conscious in. (They will do just fine for an impromptu siesta.)

Ahead, a hybrid fashion guide for anyone trying to navigate how to wear work clothes for a vaccinated-but-still-in-a-pandemic world. It's a total work-in-progress, but hey, that's the name of the game with this whole covid situation.

At Refinery29, we’re here to help you navigate this overwhelming world of stuff. All of our market picks are independently selected and curated by the editorial team. All product details reflect the price and availability at the time of publication. If you buy something we link to on our site, Refinery29 may earn commission.

Stretchy Pants For Work (& Lounging)


Elastic-waist pants are a blessing. Wearing them requires minimum effort, they stretch with your body, and they come in so many trendy silhouettes and fabrics. The top and shoe you pair it with can determine if it's for the office or an errands-and-yoga day.

PLEATS PLEASE ISSEY MIYAKE plissé wide-leg trousers, $, available at Farfetch


Simon Miller rib cyrene pant, $, available at Simon Miller


Splits59 Raquel High Waist Crop Flare, $, available at Splits59


Uniqlo x Mame Kurogouchi 3D KNIT RIBBED FRONT SLIT LONG PANTS, $, available at Uniqlo

Slipper-Style Work Shoes


All hail the mule! Worn like indoor slippers, but absolutely meant for outside-world skimming.


Madewell The Gemma Mule, $, available at Madewell


Everlane The Woven Leather Mule, $, available at Everlane


Freda Salvador Freda Salvador Stitched Mules, $, available at Anthropologie


Aerosoles Grandprix Mule, $, available at Nordstrom

Buttery-Feel Dresses


Dresses made from any blend of cotton, modal, spandex, linen, or cashmere will have a super soft and super stretchy hand feel. Plus, they drape and contour comfortably while still looking polished.
These are fabrics that almost feel like a second skin.

Skims SOFT LOUNGE LONG SLIP DRESS, $, available at Skims


Cuyana Gathered Front Tee Dress, $, available at Cuyana


Naadam Ribbed Lightweight Maxi Dress, $, available at Naadam


Young Fabulous & Broke X REVOLVE Dax Midi Dress, $, available at Revolve

Cloud-Like Puffer Bags


No need for heavy-duty structured leather bags yet. Instead, grab a soft multi-purpose tote that's quilted and pillowy, or crinkly and crushable — one that you don't mind getting beat up. Just get one large enough to accommodate your WFH laptop should you need it on the go.

Baggu Cloud Bag, $, available at Baggu


Lululemon Quilted Embrace Backpack 13L, $, available at Lululemon


Free People Organic Veg Dyed Solid Tote, $, available at Free People


Carrotez Quilted Tote Bag, $, available at Amazon

Very Baggy Button-Ups


The most "work-appropriate" top has got to be the button-up. But wearing one doesn't have to be a chore. Grab a size larger than you'd normally get, and let it float and flutter on your body. Whether you wear it tucked in is up to you.

Zara OVERSIZED SATIN EFFECT SHIRT, $, available at Zara


H&M Oversized Shirt, $, available at H&M


Good American tabbed poplin shirt, $, available at Good American


American Eagle Striped Oversized Oxford Button-Up Shirt, $, available at American Eagle

Soft Bralettes For All Bust Sizes


While some people have fully pivoted towards the anti-bra movement, others definitely still need support. Luckily, there are plenty of comfy, no-wire bras on the market now, with intimates brands offering cute cuts in a wide range of extended sizes.

HONEYLOVE Crossover Bra, $, available at Honeylove


Parade Triangle Bralette Re:Play, $, available at Parade


ThirdLove WonderRib™ Scoop Bralette, $, available at ThirdLove


Lively The All-You Busty Bralette, $, available at Lively

Bed-To-Desk Jumpsuits


This may be cheating, but then again, no one's stopping us from wearing actual pajama jumpsuits to work. Besides, these slinky, stretchy onesies are streetwear-ready — if you want some coverage, layer a tee underneath or throw on a cardigan before you head out.

LOFT Luxe Knit Pocket Pajama Romper, $, available at LOFT


Universal Thread Sleeveless Cropped Jumpsuit, $, available at Target


Athleta Nighttime Bliss Sleep V Neck Romper, $, available at Athleta


Lunya Organic Pima Romper, $, available at Lunya

Like what you see? How about some more R29 goodness, right here?

WFH Outfit Ennui? Try An Oversized Blazer

11 Work Shoes For Your Back-To-Office Situation

How To Make Your Office Desk Feel Like Home

Beyoncé Wore Chaps & Cow-Print Opera Gloves In Ivy Park’s Now-Available Rodeo Collection

Update: The Ivy Park Rodeo collection is now available to shop on adidas.com and below.

This story was originally published on August 6, 2021.

Giddy up: For her latest Ivy Park collection with Adidas, Beyoncé released a Rodeo-themed campaign video that, like any good Western, will have you on the edge of your seat saddle.

In the nearly two-minute promo, which the brand posted on Instagram on Friday, viewers will find model Paloma Elsesser, musician Orville Peck, singer Snoh Aalegra, and, of course, Queen Bey herself. Musician Monaleo and Emmy-winning actor Glynn Turman also star in the campaign. 

But even with the star-studded cast, the collection remains the star. Included in the video are denim corsets and matching chaps, Canadian tuxedos worn with Ivy Park-embossed belt buckles, crystal-covered cowboy hats, and fringe face masks that take bandanas to a whole new level. Those, and a pink-and-brown cow-print workout set with opera-style gloves to match. (Casual.)

The theme had little to do with the recent spike in Western-inspired productions (think: Dua Lipa’s music video for “Love Again”). Rather, according to WWD, the collection was designed to highlight Black cowboys.

To showcase that, Ivy Park posted an Instagram video earlier this week that showed Turman and his granddaughter Melinda, wearing pieces from the collection while caring for horses on a ranch. “I’ve always loved horses, ever since I was a kid,” Turman says in the video. “I used to go up to Central Park to the stables and I’d say to the man, ‘Hey, I’ll shovel all that horse manure if you’ll let me ride the horse for free.’” Turman — in addition to starring in shows like Fargo, The Wire, and How To Get Away With Murder — co-founded a free Western-style summer camp for inner-city and at-risk youth with his wife Jo-Ann, according to the Instagram post’s caption. He also won the 1999 Regional Team Roping Finals, was inducted into the Western Heritage Multi-Cultural Museum’s Hall of Fame in 2011, and was instrumental in bringing the Black Rodeo to CBS on Juneteenth this year.

The #IVYPARKRODEO collection is the second Ivy Park drop that Beyoncé has orchestrated this summer. A swim collection, called #IVYPARKFLEX, launched on July 22. Similarly, the line — which included orange floss bikinis, mesh naked dresses, and baby tees — came with its own talent, including Chloe Bailey, model Tabria Majors, and Jay Z. 

Shop #IVYPARKRODEO at adidas.com/ivypark, as well as below.

At Refinery29, we’re here to help you navigate this overwhelming world of stuff. All of our market picks are independently selected and curated by the editorial team. If you buy something we link to on our site, Refinery29 may earn commission.

Like what you see? How about some more R29 goodness, right here?

Beyonce's Courtside Look Was Peak Party Fashion

Beyoncé Tapped Hailey Bieber For New Ivy Park Drop

Dua Lipa Wears A Zebra Bikini In “Love Again”

From A Sense Of Belonging To Body Acceptance: How 4 New York Women Were Shaped By The City

// Show numbers on the images in page, set to false before publish to turn them off const toolsOn = false; // Should dots be onclick for all views? const clickOn = false; // ////////////////////// ANNOTATIONS CODE ////////////////////// // // Setup Annotation Content, the first spot is 0, second spot is 1 etc. let content = new Array ( "

"I love this sweater not only because it keeps me warm, but because I know it will match any outfit I throw on."

"These sweat shorts are so soft and comfortable. They're perfect for lounging around in while still looking cute — even if it’s only for me to see."

"I like to be comfortable but look put-together when I work from home, and there’s something magical about matching sets that do that for me."

", "

"I don’t know what it is about cardigans, but I think they have superpowers. Not only is this one practical and chic, but I love the way it frames my whole outfit."

"Gimme a little pattern play any day! This breezy tank adds the perfect whimsical touch."

"I’m all about comfy-cute these days, and these shorts are the true embodiment of that. I love how seamless, effortless, and cozy they are."

"It doesn’t get better than a goes-with-everything purse that’s as functional as it is pretty."

"As a sneaker girl, I forgot how much I love sandals — these are cool-looking and also easy to walk in."

", "

"I love the rugby shirt because it's loose and it's olive green (my favorite silhouette and color)."

"Plaid skirts are my closet must-have — they're easy to style and so versatile. I can wear them anywhere, from skating to running errands."

", "

"I love a good knit cardigan — this one is cozy and lightweight, both which I'm a huge fan of."

"I'm all about comfort, and this top has the softest, most breathable fabric."

"I would wear these shorts all day every day if I could (plus, they don't ride up when you walk)."

", "", "", "" ); // Tools function tagImages(){let e,t=document.querySelectorAll(".section-image .img-container");for(e=0;e<t.length;e++){if(t[e].setAttribute("id",["image"+e]),1==toolsOn){let n=document.createElement("DIV");t[e].appendChild(n),n.innerHTML="
"+e+"
"}let n=document.createElement("DIV");t[e].appendChild(n),8==e&&(n.innerHTML="
")}} function countDots() { let annos = document.querySelectorAll(".anno-dot"); let count = annos.length; let n = document.createElement("DIV"); n.setAttribute("class", "dotCount"); if (toolsOn == false) { n.style.display = "none"; } let w = document.getElementsByClassName("body"); w[0].appendChild(n); n.innerHTML = "
Setup CSS for " + count + " dots & pops
"; } // Setup Annotations, do not alter var grabnav, elem = new Array(), mobilebuy = new Array(), closebutton = new Array(), init = !1, previous = 100, mobile = !1, desktop = !0; function assembleArray(n, e) { return [document.getElementById("anno-tip" + n), document.getElementById("anno-dot" + n + "-hint"), e]; } function tipOn(n) { var e = n[0], i = n[1], t = n[2]; 0 == init && (initAnnotations(), (init = !0)), 1 == mobile ? (showPop(e, t, !0), window.innerWidth < 768 && hideGlobalNav()) : window.innerWidth < 768 ? (showPop(e, t, !0), hideGlobalNav()) : (showPop(e, t, !1), showHint(i)); } function tipOff(n) { var e = n[0], i = n[1], t = n[2]; 1 == mobile ? (hidePop(e, t, !0), window.innerWidth < 768 && showGlobalNav()) : window.innerWidth 540 && mobileExtraOn(n); } function closeTip(n) { tipOff(assembleArray(n, "0")), window.innerWidth > 540 && mobileExtraOff(n); } function showTip(n) { 1 == desktop && window.innerWidth > 720 && tipOn(assembleArray(n, "-15%")); } function hideTip(n) { 1 == desktop && window.innerWidth > 720 && tipOff(assembleArray(n, "0")); } function mobileExtraOn(n) { (mobilebuy[n].style.display = "block"), (closebutton[n].style.display = "block"); } function mobileExtraOff(n) { (mobilebuy[n].style.display = "none"), (closebutton[n].style.display = "none"); } function initAnnotations() { document.getElementsByClassName("global-header")[0].setAttribute("id", "tmp-global-header"), (grabnav = document.getElementById("tmp-global-header")), (mobilebuy = document.getElementsByClassName("anno-mobile-buy")), (closebutton = document.getElementsByClassName("anno-tip-close")); } function showGlobalNav() { grabnav.style.display = "block"; } function hideGlobalNav() { grabnav.style.display = "none"; } navigator.userAgent.match(/Android|BlackBerry|iPhone|iPad|iPod|Opera Mini|IEMobile/i) && ((mobile = !0), (desktop = !1)); function setupAnnotation(t, e) { let n = document.querySelectorAll(".section-image .img-container"), o = document.createElement("DIV"), l = ["an" + e]; n[t].classList.add("anno-layers"), n[t].setAttribute("id", l), n[t].appendChild(o), (o.innerHTML = content[e]), (content[e] = void 0), 0 == e; } function setAnnoDelays(t) { let e = ["#an" + t + " .anno-dot"], n = document.querySelectorAll(e); for (let e = 0; e < n.length; e++) { let n = ["#an" + t + " .anno-dot"], o = ["anno-dot-delay" + e]; document.querySelectorAll(n)[e].classList.add(o); } } function setClick(t, e) { let n = ["openTip(" + e + ")"]; t.setAttribute("onclick", n); } function setRollover(t, e) { let n = ["showTip(" + e + ")"], o = ["hideTip(" + e + ")"]; t.setAttribute("onmouseenter", n), t.setAttribute("onmouseleave", o); } function activateAnnotations() { let t = document.querySelectorAll(".anno-dot"); for (let e = 0; e 760 && 0 == clickOn ? setRollover(t[e], e) : setClick(t[e], e); } } function setupPopups() { let t = document.querySelectorAll(".anno-tip"); let tc = document.querySelectorAll(".anno-tip-close"); let ti = document.querySelectorAll(".anno-tip-image"); for (let e = 0; e < t.length; e++) { let tid = ["anno-tip" + e]; t[e].setAttribute("id", tid); let tcid = ["closeTip(" + e + ")"]; tc[e].setAttribute("onclick", tcid); let tiid = ["anno-tip" + e + "_img"]; ti[e].setAttribute("id", tiid); if (clickOn == true) { tc[e].style.display = "block"; } } activateAnnotations(); } function setup() { // Annotations, set number based on image tag using the tag images function // first variable is image location // second variable is the content array position setupAnnotation(0,0); setupAnnotation(1,1); setupAnnotation(3,2); setupAnnotation(4,3); // Setup the popups setupPopups(); setAnnoDelays(0); setAnnoDelays(1); setAnnoDelays(2); setAnnoDelays(3); // Number the images, turn off for publish tagImages(); // How many dots to css countDots(); } /* Preload */ function ready(e){(document.attachEvent?"complete"===document.readyState:"loading"!==document.readyState)?e():document.addEventListener("DOMContentLoaded",e)}document.onmouseleave=function(){window.isReady=!1},window.addEventListener("resize",function(){window.isReady=!1}),window.isReady=void 0!==window.isReady&&window.isReady,ready(function(){var e=setInterval(function(){window.imagesLoaded&&(imagesLoaded("#tmp-load",{background:!0},function(){window.isReady=!1,clearInterval(e)}),clearInterval(e))},100);if(!1!==window.isReady)return;window.isReady=!0;const t=setTimeout(function(){clearTimeout(t),setup()},300)});

It’d be narrow-minded to believe that buildings exist to provide nothing more than shelter, constructed with brick and mortar and little else, or that parks are simply areas in which to congregate. The truth is, these spaces are layered with meaning and etched with stories by the people who occupy them. In partnership with Aerie, we asked four New Yorkers — some born and bred; others transplants — to pinpoint the places that hold meaning to them. For one, it’s a memory of one specific street that has shaped her into the person she is today; for another, it’s an ice cream shop that serves as an embodiment of her body acceptance journey. Scroll through to read their inspiring stories, told in their own words. 

Christianne Gromley

Freelance Vice Media Group Video Editor & Producer, 25
Location: Brooklyn Bridge Park, Dumbo

Three years ago, right after college, I moved to New York City with nothing but two suitcases. No job, no friends, no apartment. But it didn’t matter; I knew the city was going to be my home. I'd known since high school — as the lone artist in a sea of jocks, as one of only a handful of Filipinos living in the tiny, predominantly white town of Hot Springs, Ark. (my graduating class was a total of seven people) — that New York City was where I was meant to be. I felt like it was the place where I could be whoever I was, without feeling like I was the weird one.  

Things worked out: I found an apartment in downtown Brooklyn through the Roomi app, and I met friends through church, supplemented by visits from my college friends who lived on Long Island. But, I’ll admit, it was lonely at first. I spent a lot of time in my room writing, applying for jobs, waiting for my start. So, I’d go to BKG Coffee Roasters on Myrtle Avenue to be around people, to be inspired. I had my spot (the corner), my go-to order (a vanilla latte), and it became a routine. The coffee shop was where I applied to jobs and where people knew me, which is what I love about Brooklyn — the sense of community. 

But my absolute favorite thing to do was bring my croissant and coffee to one of the parks in Dumbo (it’s also the place where I still bring my friends when they visit), because I love gazing at the city. Not only is the view breathtaking, it’s also unbelievably inspiring. 

In the summer of 2019, my mom applied for me to compete in Miss New York. My platform was art education, because there’s an expectation for Asian kids to go into the medical or science fields, and while I’m grateful that my parents are supportive of me and my creative journey, I want to help other kids express themselves creatively. I was titled Miss Brooklyn, and the moment cemented what I knew to be true: I was representing a place that was my home. 

The pandemic solidified those feelings even further. When I was told that I would start working from home, I flew back to Arkansas and stayed with my parents for the next nine months, and it was hard because I missed New York. Because I was missing home. When I came back, I signed the lease for a studio of my own. And now, when I sit in the parks in Dumbo and look out into the city, I can’t help but reflect just how blessed I am to be able to live here, to be financially independent, to be who I want to be. 

Kayla Isaacs

Vice Media Group Senior Creative, 27
Location: Ample Hills Creamery

Let me start off by saying that I have a sweet tooth. A major chocolate lover. I discovered Ample Hills a couple years ago on one hot, fateful summer day and got the Chocolate Milk & Cookies flavor — I became obsessed. It is the best flavor

Flash forward to last summer during COVID. I was in a new relationship — my quarantine bae — and there wasn’t much to do other than walk around. We happened on Ample Hills, and it soon became a Sunday ritual. We’d end the week with a walk and ice cream, either at the West Village or Brooklyn location. 

I was in the city during lockdown, but if my mom didn’t live here, I would’ve been one of those people to leave during the height of it. My sister and I stayed with her and we were here through it all — the ups and downs, and now, the reemergence of New York City. I didn’t officially move here until 2016 (my first memory is from sixth grade, when I began to take annual trips from Allentown, Penn., to get a cut at a curly-hair salon), but I think I always knew I wanted to live in New York. 

I’m in a studio in Chelsea now, but my boyfriend no longer lives in the city. We were driving out to his place one day recently when we passed by Ample Hills, and he immediately pulled the car over so we could get ice cream before we left (I also bought us Ample Hills T-shirts to commemorate our love for it). I love how this shop has inadvertently become a staple in our relationship. But more than that, I love the way ice cream makes me feel. In the past, I’ve had issues with body acceptance and I’ve experienced disordered eating — and that’s why I feel really powerful when I’m able to, on a Sunday evening, decide to eat ice cream. There was a time in my life when I wouldn’t have allowed myself to eat the way I wanted or to consume something like ice cream that truly brings me so much joy. So the fact that I can go to Ample Hills and enjoy ice cream is a reminder just how far I’ve come, how much I’ve grown. 

Z

Artist, 26
Location: Maria Hernandez Park, Bushwick, Brooklyn

The first time I ever pulled on a pair of roller skates wasn’t that long ago: December 2019, a month before I made the move from New York to Los Angeles. A few months later, I bought my first pair of skates — holographic with sparkly blue wheels that made me feel like a little kid again. But then COVID hit, and the city went on lockdown where there was nothing for me to do except to wake up, lace up, and skate for hours. 

Living in LA was hard: I was in a toxic/racist roommate situation, I didn’t have any friends I could count on, and I felt incredibly alone and depressed. But I found that skating uplifted me, putting me in a better head space. As an artist, I’ve always been able to express myself through art, but by roller skating, which is inextricably linked to music, I’m able to channel how I’m feeling through my movements. It became an avenue of self-discovery and self-expression (one of my favorite parts is dressing up in glittery, celestial, fairy-like looks that are cute but also sporty). 

I moved back to New York last June to be around family and friends (I was born in Harlem, grew up in Queens, and then lived in Brooklyn). Returning to Bushwick also meant returning to Maria Hernandez Park, where I grew up going to all the time. I remember knowing all the kids, and in turn, all the neighbors knew who I was. There was a sense of community that’s missing in today’s digital age. Now, being at the park as a roller skater, I feel that connection to my community again. Roller skating has not only brought me confidence, it’s also allowed me to get to know my neighbors, especially the kids, who like to ask about it.

Skateboarders at the park told me they’ve noticed a recent crop of roller skaters, which is beautiful — I had no idea I would influence and inspire others to pick up their skates. When I see a new face, I welcome them to skate with me, so they know they’re not alone. I know how much joy skating brings me, so seeing others attempting to find that same joy makes me really happy. That’s also why I launched a skate community called Sk8mamis, a space for womxn and femme-identifying non-binary people, because I hadn’t found one that was welcoming or inviting or safe. Roller skating should be fun and you shouldn’t have to worry about being harassed or touched without your consent. As soon as I realized I could do something about it, I, along with the help of others, created this dream community together.

Veronica Bonilla

Content Creator, 27
Location: Troutman Street, Bushwick, Brooklyn

I remember the moment like it was yesterday: My mom and eight-year-old me standing in front of the building of her first apartment on Troutman Street in Bushwick. She was crying tears of joy because she finally had a place of her own to call home. And she was so excited to give me my own room, which she decorated with Rugrats-themed curtains (my favorite). That single memory is what inspires me to make it on my own, because it’s something that my mom strived to achieve. I’ll never forget it. 

That was after spending about a year in a homeless shelter. At the time, I didn’t understand what was going on. We had a bed and shared a kitchen and bathroom with others. But was this our home? Why didn’t we have our own place? And why couldn’t we stay with grandma? My mom, a single parent, was young — in her 20s — and she was set on carving her own path. I was born in Williamsburg and lived there until the age of five before we moved to my grandmother’s at Marcy Projects in Bedford-Stuyvesant. We were there until my mom and my aunt had a falling out, and we packed up our things and headed to the shelter.  

We stayed at the apartment on Troutman for two years — until my mom lost her job and we had to move back to my grandmother’s. In an interesting turn of events, when the pandemic hit, I also moved back to my grandmother’s. I had been living in an apartment with roommates but made the decision to go home during lockdown, help my family out, and then get my own place once it was all over. What I loved about it was spending quality time with my family, getting reacquainted with my grandmother, and listening to retellings of childhood stories as an adult. It’s beautiful to see the parallels in my mom’s life and mine — we’re two very different people, but we share the same drive that keeps us going no matter what. 

Still, moving back home triggered some childhood traumas (my rocky relationship with my grandmother, memories of my mother and father), which prompted me to start therapy and to heal from those wounds. Now, I communicate better. And during the holidays last year, we were all communicating and having fun — I never dreamed we would ever get to that place. I lost my grandmother a month ago, and I’m happy that I have those memories of us I can cherish, that I made the decision to go back home. 

I moved out this January into my own apartment on Knickerbocker Avenue, which is where my mom and I used to frequent when we lived on Troutman. All the mom-and-pop shops are still there, which is unbelievable. It’s definitely a full-circle moment — eight-year-old me would be so proud.

Like what you see? How about some more R29 goodness, right here?