ter

Evolving Traditions: 15 Years of Viget Internships

This week we will bid farewell to our fifteenth cohort of summer interns. Ciel Park (UI Developer Intern), Faye Stover (Product Designer Intern), and Paul McKissock (Application Developer Intern) joined our team ten weeks ago and have been hard at work learning and growing, teaching and sharing, and iterating ever since – and so have we. 

Viget’s 15th Summer Internship Cohort: Faye Stover, Paul McKissock, Ciel Park (left to right)

At Viget we are committed to fostering curiosity and drive both for budding engineers and designers but also for our team of full-timers who are eager to learn themselves and flex their mentorship muscles. As we’ve shared over the years, the internship is one of our favorite traditions and while a lot has changed in fifteen years, that commitment remains the same. 

Here’s a quick look at three core aspects of the Viget internship that remain flexible. 

Cohort size and available roles.

We are not married to a specific number of interns. We recruit for and match interns with available mentors who serve as our interns’ dedicated advisors.

Working location. 

This summer our interns primarily worked from our Falls Church, Virginia headquarters. We required interns to work in the office for the first three weeks of the program and the last. During weeks four through nine they were able to work remotely two to three days a week. In the past the internship has been fully in-person and fully remote

Cross-discipline internship project. 

Interns can expect cross-discipline collaboration during their time at Viget but how exactly that takes shape remains flexible. In years past interns spent 8 weeks coming up with, designing and building a working product. This year, with our smaller cohort of interns, we opted for a smaller approach to the group project. The project was pre-defined, scoped by our advisors, and happened over just two short weeks.   

Earlier this summer we hosted an internship alumni panel and invited Hayley McMillon (2022 Summer Cohort), Andrea Brucculeri (2019), Gabriel Kay (2019), and Vigenesh Gopalan (2018) to discuss lessons learned at Viget, life after Viget, underrated skills worth developing, tips for remote collaboration and more. The event was open to all and both current staff and other alums sat in on the moderated panel discussion. It was awesome, and everyone – long-timers and interns alike – left feeling inspired. This is my favorite aspect of the internship, our alumni network, and how our interns graduate to be active contributors.

Summer 2024 Internship Alumni Panel

I’m looking forward to staying in touch with Ciel, Faye, and Paul and I cannot wait to see all the wonderful things they accomplish. 

Does this sound like an experience you want to be a part of? We’ll host our 16th cohort of college students and recent grads next summer. Bookmark our internship page to keep an eye on future opportunities. 



  • News & Culture
  • Internships and Apprenticeships

ter

Motion Magic: Project Insights From My Viget Internship

When we open an app or website, we do so to accomplish a task or find information. A well-designed user experience ensures users can achieve their goals efficiently. But what keeps us engaged beyond basic functionality? What differentiates a mundane interface from an exciting one? In my opinion as an up and coming UI developer, one key element is motion.

During my summer internship at Viget, I had the opportunity to dive deep into the world of agency work. From getting the chance to contribute to client sites to participating in a hackathon and pursuing a personal project, I seriously leveled up my stack and gained valuable development experience. Not to mention the amount I learned from exceptional, dedicated mentorship and micro-classes on everything from React to SQL to business models. 

However, coming into the internship, I had the specific goal of learning how to add motion to my web projects. I walked in on day one with no idea where to start, and now I’m leaving my last week with a complex knowledge of Rive, canvas elements, JavaScript animation, GSAP, and more. Here’s how… 

Spinet

In this two week hackathon project, I worked alongside Faye and Paul, the Product Designer and App Developer interns, to create a spinning wheel name picker. During the first week, I took on branding and visual design work. 

I spent the second week implementing wireframes. Through this project I learned how to transform client specifications into design directions, a style guide, and ultimately, UI components.

For this app, the motion of the spinning wheel was critical to the experience. Initially, client feedback indicated that the spin felt too uniform. I adjusted the motion parameters by extending the slowdown time and changing the easing function from linear to cubic, which increased feelings of suspense at the end of the spin animation. 

To add a level of joy and celebration to the winner announcement popup at the end of a spin, I incorporated confetti animations. In doing so, I discovered the world of JavaScript animation libraries that make implementing animations as easy as simple as adding the script to my HTML and adjusting the timing and placement of the animation object. Finally, we had ultimately decided on a modern, clean-cut video game aesthetic for the branding, and pulled this in through inspired sound effects, the logo design, and a 3D button component with a click animation accomplished entirely through Tailwind. 

Luna chatbot

After the hackathon, I got the chance to work on a personal project of my choice: an AI mental health chatbot inspired by tools like Woebot and EarKick. I was motivated by the question of what could make conversational AI feel less intimidating and more empathetic. My answer was an AI support companion with an animated avatar to enhance feelings of emotional connection and understanding. 

To get started, I experimented with various chatbot APIs and found that the Llama3 model was the best at following system prompts and offered the most natural interactions. A huge part of this project was the chatbot’s expression animations. I surveyed several popular tools and found Rive was the best fit for this, offering intricate animation capabilities, easy web integration, and a state machine for managing overlapping states and complex transitions.

The first step of animating in Rive is to create a design. Luckily, Rive has a vibrant open-source community, and I learned a lot from examining and remixing community files. The second step was learning to create the animations themselves. This was my first time animating anything, but the concept of keyframes was relatively intuitive, and the UI reminded me of video editing software, like iMovie, I’d used in the past.

The third and most challenging step for me was making all the animations work together in a state machine. 

This is the logic that connects animations together, taking input values that determine when to transition between states. Getting smooth animations between emotional states required a lot of rewiring and experimenting. Finally, embedding the Rive file in my project and linking the emotion data from API responses to the animation inputs was relatively straightforward using vanilla JavaScript. 

In conclusion

Animations, whether simple or complex, add a layer of interactivity and visual interest to digital products. Over a short 10 weeks, my internship projects allowed me to explore UI development, modern animation tools, and motion using CSS and JavaScript.

If you’re interested in bringing ideas to life and sparking joy through motion design, then diving into a passion project, seeking inspiration from the community, and exploring tools like Rive and GSAP will definitely kickstart your journey!



  • Code
  • Internships and Apprenticeships

ter

Some Thoughts after a Major Ruby on Rails Upgrade

For the past few weeks, I've been upgrading an older, fairly large Ruby on Rails app from Rails 5.2 to Rails 7.1 and from Ruby 2.7 to Ruby 3.3. During this time, I have also made the switch from Webpacker to Vite for asset bundling and made various JS and CSS upgrades to go along with that change. Here are a few takeaways from the experience.

Upgrade Regularly #

First, I know I am probably preaching to the choir with this one, but just upgrading your tech as you go and whenever you can is great. It prevents you from being in the position that I was in–having to make such a big jump all in one go. It also makes sure you keep getting security upgrades, and more security is never a bad thing. If you are up for it, you can even automate the process like GitHub does for their Rails upgrades or by using something like Dependabot for notifying you on when to upgrade dependencies.

Commit Often #

This is good advice for any project, but I think it is specifically good when working through issues that arise from upgrading. Whenever I have done a larger upgrade, there’s always at least one tricky issue that takes time to diagnose. This leads to me experimenting and trying a few different things before I figure out the actual fix. Committing often allows me to reset back away from these false paths whenever I decide to go down a new one. But I could also commit these false paths if I'm stuck, store them away in a separate branch, and come back to them later if I feel like an approach is worth a second look.

Leave Code Comments #

If you have a particularly confusing piece of code where its purpose or function is unclear, leave a comment. This is another piece of advice that is relevant at any time, but I found those comments to be extra helpful during this latest round of upgrades. There were several instances of code that had not been touched in years (and never touched by me) causing errors after upgrading the underlying tech. Some of these were well commented, which made it much easier to understand their purpose and decide how to fix them—or even whether to keep them. On the flip side, there were some pieces of code that were not well documented, which made fixing the errors much harder.

Avoid Fancy Code #

As somewhat of an alternative to the code comments, you can also just avoid fancier code. Try seeing if any code that is fairly complex can be simplified into something a bit easier to understand. Also, you want to avoid calling any private APIs that might change out from under you during your upgrade process which can lead to all sorts of weird bugs and behavior. I'm not saying do this completely in place of relevant comments, but simplifying where you can will somewhat cut back the need for them.

Be Selective with Dependencies #

When upgrading a massive Rails app and the Javascript associated with said app, you are often going to have to upgrade some of your dependencies as well. The more of these you have to upgrade, the higher chance you have of breaking something, so it is important to be selective when choosing these dependencies. During these upgrades, I ran into several issues caused by a dependency that really was not doing much for us in the grand scheme of things, but was causing more than its fair share of issues. If you want to read more about how to go about choosing dependencies, feel free to reference my colleague Sol's article on the subject.

The End #

I don't think these insights are particularly original or profound, but hopefully they give you something to think about as you make major upgrades on your own app or as you think ahead to future upgrades.



  • Code
  • Front-end Engineering
  • Back-end Engineering
  • Tooling

ter

Sony A9 III: Game-changing Full-Frame Global Shutter, 120FPS 24.6MPx Camera

This post: Sony A9 III: Game-changing Full-Frame Global Shutter, 120FPS 24.6MPx Camera was first published on Beyond Photo Tips by Susheel Chandradhas

Sony announced the Sony A9 iii on 07 November 2023, a 24.6 Megapixel Full-frame mirrorless camera with the world’s first global shutter full-frame stacked CMOS image sensor capable of shooting at 120 frames per second. The camera also boasts a processor, the BIONZ XR, that is 8 times faster than the previous Sony BIONZ X […]

This post: Sony A9 III: Game-changing Full-Frame Global Shutter, 120FPS 24.6MPx Camera was first published on Beyond Photo Tips




ter

RIP a Livecast #639 – Leak After Leak

We kick things off by talking about the early 2000s. We also discuss the latest Machine Gun Kelly drama. Then, we discuss a group of metalheads who were denied an […]




ter

Situs Slot Online Terbaik Dengan Fasilitas Lengkap

Slot menjadi permainan yang banyak di pilih oleh pemain, bukan tanpa alasan game tersebut populer di kalangan pemain. Pasalnya, slot memiliki cara main yang sederhan dan mudah dipahami. Bagi pemain pemula akan sangat mudah mainkan game satu ini. Cara bermain slot sangat mengandalkan keberuntungan, para pemainnya membutuhkan sebuah strategi terbaik untuk menangkan game satu ini. […]



  • Tutorial Perang Dadu

ter

Abstract Table, An Interesting Tasting Menu in Oakland, California

Chefs Duncan Kwitkor and Andrew Greene — Abstract Table, offering up a 5 and 7 course tasting menu Friday and Saturday nights at Gastropig. Last night my wife and I had a chance to dine at the opening of a new pop up style 7 course tasting menu called Abstract Table, currently being offered as …




ter

Twitter vs. Flickr a View Count Comparison

Yesterday Twitter announced that they were adding view counts to tweets on Twitter. I thought I’d use this announcement to very unscientifically compare the number of views one of my photos received on Twitter vs. Flickr. While some might call this an “apples vs. oranges” comparison, and Flickr is admittedly more of a photography centric …




ter

Why Twitter’s Paid Subscription Model May Be a Smart Move

Boom! And just like that Elon Musk dropped a game changer. After several months of encouraging people to pay $7/month in the form of $84/year, Elon announced yesterday that starting April 15th, only verified Twitter accounts will be eligible to be in the “For You” tab. This was also after he announced that everyone who …




ter

Graphic Hunters: Pushing the Boundaries of Sports Visual Identity

Graphic Hunters: Pushing the Boundaries of Sports Visual Identity

abduzeedo

Explore how Graphic Hunters’ visual identity redefines sports branding through innovative design inspired by fashion and art.

Graphic Hunters, a Dutch studio dedicated to sports branding, isn’t playing by the typical design rulebook. Instead, their newly crafted visual identity steps outside the confines of traditional sports aesthetics, introducing elements drawn from fashion and high design. The result is a high-impact, versatile identity that positions Graphic Hunters as a creative club worth joining—whether as a client or a collaborator.

A New Playbook for Sports Branding

At the heart of Graphic Hunters’ approach is the idea that the sports industry deserves a more refined and exclusive visual experience. This belief is woven into every part of their branding, which Monga Design and Vogau led with a clear vision. The goal was to create a system that balances functionality with creative exploration, breaking conventions while still delivering practical, adaptable solutions for various applications.

This innovative take on visual identity isn’t just about aesthetics; it’s a strategy aimed at redefining the brand’s place in the market. Graphic Hunters has always described itself as a team hungry for new challenges, and now, their brand identity reflects that spirit. The new look aims to make the studio stand out in the sports arena and beyond, appealing to clients and team members who value originality and impact.

Graphic Hunters’ identity combines familiar elements from the sports world—like motion and heat—with unexpected treatments. The design team drew inspiration from fashion and abstract art to create a visual language that transcends typical sports branding. This cross-pollination of ideas manifests in several core elements:

1. Typographic Experimentation: Instead of relying on traditional sports typefaces, the team played with a variety of fonts that feel bold and contemporary. Typography serves as both structure and disruption, bringing energy to each layout.

2. Photographic Treatments: The identity includes photographs that have been creatively manipulated, breaking up the grid and adding an element of surprise. This technique turns static images into dynamic design features, echoing the constant motion of sports.

3. Grid System and Stickers: To keep the brand’s applications cohesive yet flexible, a structured grid underpins the design. However, this is cleverly offset by playful elements like stickers and graphical interventions, which keep the brand feeling fresh and exciting.

One of the biggest challenges was making the visual system adaptable yet creatively open. Sports branding often leans into themes of power and motion, but Graphic Hunters wanted to do more. The result is a brand that’s equally at home on a team jersey or a digital campaign, seamlessly moving between refined, impactful moments and bold, playful expressions. This adaptability speaks to the studio’s ethos of being a “creative club,” where everyone is encouraged to push the boundaries.

Another essential aspect was research. The design team explored references beyond the sports realm, looking at high fashion and experimental graphic design. This broader inspiration palette allowed Graphic Hunters to create something genuinely unique for the industry. The identity’s experimental typography and abstract motifs capture the feeling of heat and energy—core elements of sports—while grounding them in a sophisticated design language.

Elevating Sports Design Beyond the Field

By combining these unexpected references with a strong foundation of sports elements, Graphic Hunters has crafted a visual identity that is both striking and functional. It stands as a testament to the idea that sports design can be more than bold fonts and action shots. It can be a narrative of innovation and exclusivity, appealing to an audience that appreciates both the adrenaline of sports and the sophistication of high design.

Graphic Hunters’ reimagined branding proves that sports-focused design can be just as experimental and refined as any high-fashion brand. It’s a visual identity that elevates the sports studio into a space where design meets performance, art meets action, and innovation becomes the new norm. As the brand continues to grow, this identity will serve as a powerful statement of their ambition: to bring high-impact, original design to the world of sports, one project at a time.

Branding and visual identity artifacts

Credits

  • Authors: Monga DesignVogau and Clint Studio
  • Visual identity: Monga Design (Mateus Yuzo, Michel Refatti) and Vogau (Carlos Eduardo Marin, Gabriela Colebrusco Peres)
  • Motion: Clint Studio (Bruno Vitalino, Danilo Coelho, Gustavo Brazzalle, Lucas José Galego, Luciano Burger




ter

Exploring Editorial Design in ‘EN TORNO A LA MATERNIDAD’

Exploring Editorial Design in ‘EN TORNO A LA MATERNIDAD’

abduzeedo

Dive into the thoughtful editorial design of ‘EN TORNO A LA MATERNIDAD,’ crafted to resonate with themes of motherhood.

Pau Marín’s project, EN TORNO A LA MATERNIDAD, explores the essence of motherhood through a refined editorial design that merges visual storytelling with emotive impact. The design embodies the themes of care, strength, and the cycle of life, delivering a visual experience that’s as insightful as it is aesthetically appealing.

Design Approach and Concept

At the heart of this project lies a narrative-driven approach. Marín carefully crafted the layout to reflect the nuances of motherhood, using visual metaphors and deliberate design choices. The typographic elements are minimal yet impactful, guiding the reader’s eye through the content seamlessly. Serif and sans-serif typefaces interplay to emphasize the transitions between vulnerability and empowerment that define the maternal experience.

Photography plays a crucial role in this work, capturing tender moments that resonate with authenticity. Each image, strategically placed, adds layers of meaning, complementing the textual narrative. Marín’s ability to weave text and imagery together in a harmonious flow highlights the power of good editorial design to evoke emotions.

Layout and Visual Hierarchy

Marín’s layout decisions ensure readability while also inviting reflection. White space is used masterfully, giving the design room to breathe and allowing the reader to absorb the emotional weight of the content. The flow from one spread to the next feels intentional, never rushed, mirroring the natural rhythms of life.

The visual hierarchy emphasizes important sections, using bold headings and thoughtful subheadings. This structure not only aids in navigation but also underscores key messages without overwhelming the viewer. The balance between text, imagery, and negative space is a testament to Marín’s understanding of editorial design principles.

Thematic Consistency and Visual Metaphors

Colors in the project echo themes of nature and nurture, employing soft pastels and earth tones. These choices create a calming yet evocative palette that enhances the emotional resonance of the design. Visual metaphors, like the cyclical patterns in layouts, symbolize the never-ending cycles of care and love associated with motherhood.

For designers and illustrators, EN TORNO A LA MATERNIDAD serves as an inspiring example of how editorial design can amplify storytelling. The project encapsulates the emotional and cultural dimensions of its subject matter, offering a blueprint for blending design and narrative seamlessly.

Discover more about this project and Pau Marín’s impressive portfolio on Behance at behance.net/paumarn1.

Editorial design artifacts

Credits and thanks

  • Fina Perelló Andreu
  • Maria José Fuentes Perelló
  • Nuria Fuentes Perelló
  • Nuria Marín Fuentes
  • Claudia Marín Penella
  • Pablo Lázaro Ballester
  • Diane Gello
  • Irene Martinez De La Vega
  • Andrea Peregrín Moreno
  • Coribel Zubillaga García




ter

9 Social Media Marketing Tips to Deliver Better Results

Social media has quickly morphed into one of the most important marketing channels. Within a few short years, it has moved from being a mere fad into the most powerful marketing tool on the planet. Facebook, for example, is just over a decade old but no business can afford not to have a Facebook marketing … Continue reading 9 Social Media Marketing Tips to Deliver Better Results

The post 9 Social Media Marketing Tips to Deliver Better Results appeared first on Design Shard.




ter

Duplicator Vs. UpdraftPlus Vs. BackupBuddy – Which One is Better?

Are you looking for a great backup solution for your WordPress site? Duplicator, UpdraftPlus, and BackupBuddy are three of the best plugins to help you back up your site.  They stand above the rest because of their simplicity of use, many features, and security.  Even though they are all great, you need just one backup […]

The post Duplicator Vs. UpdraftPlus Vs. BackupBuddy – Which One is Better? first appeared on IsItWP - Free WordPress Theme Detector.




ter

7 Best Divi Builder Alternatives for Your Website (Compared)

Are you looking for Divi alternatives to help build your website? Divi is one of the most popular WordPress builders, but some users may find Divi’s interface to have a bit of a learning curve, making it harder for beginners to catch on. There are other builders that are more user-friendly and designed for anyone […]

The post 7 Best Divi Builder Alternatives for Your Website (Compared) first appeared on IsItWP - Free WordPress Theme Detector.




ter

Guide to Building a Pinterest Presence for Bloggers

Introduction Why Pinterest Deserves Your Attention Now, let’s talk numbers—impressive numbers. With over 450 million active dreamers and doers, Pinterest is not merely thriving; it’s bustling with opportunity. For the astute blogger, these aren’t just stats—they represent a bustling metropolis of potential readers, engaged followers, and eventual customers. Each user is searching, planning, and ready […]

The post Guide to Building a Pinterest Presence for Bloggers appeared first on WPCult.




ter

Grow Your Real Estate Business With Pinterest

Pinterest is a social media website where users share their favorite images from around the web with their followers. Rather than using words to express themselves, Pinterest users use images and photographs instead. Like other forms of social media, Pinterest offers a unique opportunity for real estate agents looking to grow their businesses. With so […]

The post Grow Your Real Estate Business With Pinterest appeared first on WPCult.




ter

Do Smart Research on Keywords for Better Search Engine Optimization

                        Would you like a recipe, if it doesn’t contain salt? Of course not, as it is one of the most important ingredients of food. So does ‘Keywords’ for Search Engine Optimization. This is the reason, that researching keywords is very crucial for your online marketing, as this […]

The post Do Smart Research on Keywords for Better Search Engine Optimization appeared first on WPCult.




ter

How To Make The Most Out Of Pinterest

Pinterest is an electronic scrapbooking website that was specifically created for people to post up content that describes their favorite things through pictures and comments. Much like traditional scrapbooking, Pinterest is a great way for a person to creatively express the events or topics that are most important to his or her life, only this […]

The post How To Make The Most Out Of Pinterest appeared first on WPCult.




ter

New website design launched for Community Presbyterian Church, Englewood Florida

Brief The team at Community Presbyterian Church in Englewood, Florida came to us with an outdated website that they struggled...continue reading

The post New website design launched for Community Presbyterian Church, Englewood Florida first appeared on Website Design in Naples, Fort Myers Florida | Logo Design | Brian Joseph Studios.





ter

Getting To The Bottom Of Minimum WCAG-Conformant Interactive Element Size

WCAG provides guidance for making interactive elements more accessible by specifying minimum size requirements. In this article, Eric Bailey discusses the nuances of interactive element sizes and clarifies what it looks like to provide accessible interactive experiences using WCAG-compliant target sizes.




ter

If I Was Starting My Career Today: Thoughts After 15 Years Spent In UX Design (Part 1)

In this two-part series, Andrii Zhdan outlines common challenges faced at the start of a design career and offers advice to smooth your journey based on insights from his experience hiring designers. Learn why mastering design tools is crucial, how to build a strong portfolio, and tips for acing your first interviews.




ter

If I Was Starting My Career Today: Thoughts After 15 Years Spent In UX Design (Part 2)

In this two-part series, Andrii Zhdan outlines common challenges faced at the start of a design career and offers advice to smooth your journey based on insights from his experience hiring designers. In Part 2, Andrii speaks about how you can grow faster in your brand-new junior UX job.




ter

Mastering Typography In Logo Design

Finding the right typeface for a logo is a challenge and can be a very time-consuming process that requires both creativity and a practical approach. Levi Honing provides the essential background and tools to enhance your typography journey and apply this knowledge to your logo design. Let’s dive deep to learn how to create a logo that is not only expressive but also purposeful and well-thought-out.




ter

How To Manage Dangerous Actions In User Interfaces

One of the main laws that applies to almost everything in our lives, including building digital products, is Murphy’s Law: “Anything that can go wrong will go wrong.” Our goal is to prevent things from going wrong and, if they do, mitigate the consequences. In this article, Victor Ponamarev explores different strategies for preventing users from making mistakes.




ter

Interview With Björn Ottosson, Creator Of The Oklab Color Space

Go behind the scenes with Björn Ottosson, the Swedish engineer who created Oklab color space, and discover how he developed a simple yet effective model with good hue uniformity while also handling lightness and saturation well — and is “okay” to use.




ter

Alternatives To Typical Technical Illustrations And Data Visualisations

Thomas Bohm rethinks technical illustrations and data visualizations, sharing interesting and uncommon examples of how to present data and information. Bar graphs and pie charts are great, but there’s so much more to explore!




ter

Kluge Interactive





ter

11 Year Old, Gitanjali Rao, Tackles Lead Contamination in Water

Concerned by the Flint, Michigan water contamination crisis, 11 year old Gitanjali Rao went to work. She developed a portable and inexpensive device that can identify lead compounds in water. This is Gitanjali’s video submission for the Discovery Education 3M … Continue reading




ter

Heritage Staffers Think Lying to Voters is Hilarious

Tweets are flying around X about how, actually, now that Donald Trump has won, Republicans can admit that Project 2025 really is the agenda. And the thing is, no one is laughing harder than the actual staffers at The Heritage Foundation. Sources told NOTUS that, in recent days, Heritage group chats have been filled with these sorts of tweets, celebrating how conservatives "tricked the Libs into believing Project 2025 wasn't real."




ter

Russian Doctor, Accused of Antiwar Stance, Jailed After Child's Testimony

The mother of a 7-year-old boy accused the Moscow pediatrician, Nadezhda Buyanova, of telling him that his father's death while fighting in Ukraine was justified.




ter

6 Reasons to Stop Buying Bottled Water

University of Alberta Student Life Have you ever thought about what happens after you throw your plastic water bottle in the recycling bin? Maybe you have, maybe you haven’t, but unless you work at a recycling plant, you may not … Continue reading




ter

NASA Guide to Air-filtering Houseplants

This excellent infographic created by lovethegarden.com is based on The NASA Clean Air Study of 1989. While researching ways to clean air in space stations, it was determined that these air-filtering houseplants significantly eliminate benzene, formaldehyde and trichloroethylene from the … Continue reading




ter

✚ Make the Chart: Scatterplot Using Text Instead of Dots

I made a chart about Halloween candy. Even dumb charts need attention and require that choices are made.

Tags: ,





ter

Moments of Wonder Near & Far: International Garden Photographer of the Year

These beautiful 11th International Garden Photographer of the Year award-winning photographs irrefutably evidence diverse, tender and grand wonders to be found in our cultivated and natural environs the world over today. From Brazil to Canada, from China to Croatia, Hong … Continue reading




ter

Taking the Pulse of Underwater Forests

By UC Santa Barbara News A new study from UCSB’s National Center for Ecological Analysis and Synthesis finds kelps are doing better than other key coastal ecosystem-forming species Like all marine ecosystems around the world, kelp forests are threatened by … Continue reading




ter

A Great Chart: How Much Hotter This June Has Been

I really like this chart! It hits all of the data visualization design best practices for me. This was published by the NYTimes in the article: Here’s How Much Hotter Than Normal This June Has Been

Here’s what I like:

  • It’s time series data, so it’s visualized as a line chart

  • Year-over-year data is easy to compare as overlapping lines for the same Jan-Dec time period

  • No chart legend! The lines are labeled directly within your field of view in the chart

  • Using the pre attentive attribute of color, 2023 is highlighted in orange and the rest are gray lines

  • The chosen orange color isn’t red or green so there isn’t any implication of good or bad

  • The 2022 line is a darker shade of gray, so it’s also distinguishable, but not the focus

  • The x-axis labels are only every other month to minimize the text on the page

  • The is one example of when a non-zero baseline is appropriate so you can see the details

NOTE: This NYTimes article is behind their paywall, so you may not be able to see the original article without a subscription. I have a limited amount of “gift articles” I can share. You can CLICK THIS LINK if you don’t have a subscription and want to see the full article. It will let you see the article until I run out of shares!