Why I’m Taking A Break From Twitter - by Matt Glassman
During the pandemic, I didn’t do a ton of actual writing. I barely blogged. I don’t think I did more than 1 or 2 publication, popular or academic. Even worse, I didn’t do a ton of actual reading. At first, I thought it was the pandemic itself. This is stressful stuff, my work life had been through into complete chaos, and my daily living routine was in tatters.
Over the past year or so, however, I slowly realized it was something bigger: I was having trouble concentrating, especially for the 3 or 4 hour blocks of time it took to write well. Or to blow through a book. Or to really study bridge defense. At first I thought I was just getting old. Doesn’t this happen to everyone when they hit their mid-40s? But the more I examined it, the more I started to believe it was a function of how I was consuming information. I was massively multi-tasking, almost full-time. And the two biggest culprits were my email inbox and my twitter feed.
Workers now inherently multitask, because they build their work world around their inbox, which is constantly delivering them different streams of work.
Is Coffee Good For House Plants | Southern Living
Give tired plants a wake-up call with a little leftover coffee
Thus, I began pouring coffee for my fig tree a couple of times a week. I made sure the liquid was room-temperature to avoid burning the roots. And because coffee is quite acidic, I diluted it half-and-half with tap water. My tap water is hard (alkaline - pH over 7), so the mixture's pH should be about neutral.
Ohno Type School: X ☠️ OH no Type Company
OH no Type Co. Retail and custom typefaces. Life’s a thrill, fonts are chill!

Ricardo Signes - The Perl 5 Debugger: Wuh?
95% of all debugging is print statements, but once or twice a year, a problem shows up that is best attached with perl5db.pl, the venerable core Perl 5 debugger. Like a light saber, it dates back to a forgotten time and its operations are poorly understood. Unlike a light saber, it is not elegant, and nobody aspires to use it. Also, it can cut limbs right off. Still, it’s a very useful multi-purpose tool, and if you learn how to use it, it can save a lot of time and clear up a lot of mysteries.
This talk will cover what the debugger is, how to use it at a basic and intermediate level, how to customize it, and at least one or two stories about how it is very, very awful.
Minimum Static Site Setup with Sass | Stephanie Eckles
If you don't need any templating languages and just need to get a simple site built plus Sass, use this as the contents of a fresh package.json:
npm start - copies src files to public and starts Browsersync server at localhost:3000
npm run build - copies files to public and autoprefixes/minifies css
Node.js :: Eloquent JavaScript
One of the more difficult problems with writing systems that communicate over the network is managing input and output—that is, the reading and writing of data to and from the network and hard drive. Moving data around takes time, and scheduling it cleverly can make a big difference in how quickly a system responds to the user or to network requests.
In such programs, asynchronous programming is often helpful. It allows the program to send and receive data from and to multiple devices at the same time without complicated thread management and synchronization.
Commits are snapshots, not diffs | The GitHub Blog
Git has a reputation for being confusing. Users stumble over terminology and phrasing that misguides their expectations. This is most apparent in commands that “rewrite history” such as git cherry-pick or git rebase. In my experience, the root cause of this confusion is an interpretation of commits as diffs that can be shuffled around. However, commits are snapshots, not diffs! I believe that Git […]
10 inspiring illustration styles
CSS { In Real Life } | Aspect Ratio is Great
aspect-ratio is a great example of a humble property that fills a long-awaited need in the CSS community. It’s simple to use and behaves in a way that respects content, without the need for any extra CSS.
David East - 11ty tips I wish I knew from the start
- Get comfortable with 11ty’s configuration
- Set a source folder and an output folder
- Configure markdown for Nunjucks syntax
- Supercharge markdown with containers and classes
- Embrace the Data Cascade
- Async shortcodes are for dynamic data fetching
- Use Eleventy Navigation
How to add a relative directory to @INC
Solution 5 - Path::Tiny
The solution that I currently like the best, involves the use of the Path::Tiny module
use Path::Tiny qw(path);
use lib path($0)->absolute->parent(2)->child('lib')->stringify;
Javascript Data Files and You by Bryan Robinson [ Jamstack Toronto ] - YouTube
A talk by Bryan Robinson during 11ties: a series of 11 min lightning talks on 11ty, recorded on 11/11, 2020 -- for Jamstack TORONTO.
How To Give Not-Toxic Constructive Criticism | The Startup
Give criticism without hurting people's feelings while opening the relationship for constructive collaboration.
He was taught criticism had to tick two simple boxes. It had to be constructive, and it had to be criticism of an action or thing instead of a person.
But no one ever bothered to teach us how to criticize constructively— without making humans miserable. At least nobody ever taught me the secret.
What I didn’t get at the time was that my advice was not nearly as valuable to the receivers as I estimated in my mind.
My advice was totally unsolicited.
Radical Candor by Kim Scott — a book every “boss” should read.
After reading The Coaching Habit, I realized that the best criticism is criticism that doesn’t have to come out of your mouth, but ideally from the receiver of the criticism’s mouth.
- “What” questions drive exploration.
- “How” questions drive action.
- “Why” questions drive justification.
- “When” questions drive accountability.
Step 1: Set the stage, tone, and rules
While we dive deeper into ____, I may also say some stupid things that might make you feel like this bizarre person doesn’t know what the heck they’re talking about. I’d like to openly invite you to poke holes in my ideas whenever you can.
I’d love for this to be a space where we can collaboratively challenge each other’s thinking so that we can both leave this conversation with sharper thoughts.
Step 2: Ask curious “what” questions
Step 3: Ask “what else” questions
Step 4: Ask “how” questions
That’s excellent! How would you go about improving ____?
Step 5: Ask the first step question
That’s excellent! What would be the first tiny step to improve on ____?
6. Ask the “when”
11 Secrets to Building a Better Salad
It would surprise most people to know that my bologna-loving self is really good at making delicious salads. Even self-proclaimed salad haters have been wooed by my artfully arranged piles of leaves and stuff. As one might expect, I have many strategies, tips, and tricks for making special-tasting salads, and I would…
- don’t be afraid to get a little monosodium glutamate or nutritional yeast involved
- Use way less oil in your vinaigrettes
- A little bit of sugar (honey, maple) is all it takes make your dressings feel more finished.
- add a little vanilla
Technical Writing: Your Engineering Superpower. How to Write Well | by Sophie DeBenedetto | The Pragmatic Programmers
In part II on your engineering superpower (technical writing), Sophie DeBenedetto talks about how to write well.
Blogging
Try these strategies to help you get started:
- Write an outline first.
- Start with a detailed introduction.
- Write the conclusion first.
If you use the conclusion first approach, focus on what the reader should walk away from your post having learned.
Pull Requests
A good PR description has a few elements:
- A descriptive title.
- An explanation of the what, why, and how.
- ____ What problem does the code solve?
- ____ Why is this solution needed?
- ____ How does the code solve the problem?
- Extras: Anything from usage instructions to info on testing/QA.
How to Write a Ticket
- What problem needs to be solved and why?
- What value does the project gain by delivering this work?
How To Ask For Help
- What is the current behavior? Describe the bug that is occurring.
- Under what circumstances does the behavior occur?
- How does the behavior differ from the expected behavior?
Minify - JavaScript and CSS minifier
Minify JS and CSS online, or include the minifier in your project for on-the-fly compression.
https://medium.com/ux-seo-sem-and-webdev-bitesized/top-7-css-minifiers-comparison-f90e28ea0e20
Slideshare Downloader
Slideshare Downloader, Download slideshare presentations to PDF and Powerpoint. Online tool to save document in PDF and PPT/PPTX format from slideshare.net for free.
Questions About Pivoting Data in SQL Server You Were Too Shy to Ask - Simple Talk
Of all the basic SQL operations, the pivot seems to cause the most problems. We can tell from the way that old articles on Simple-Talk on the topic continue to be read. It turns out that there are several questions that come to mind while learning about pivoting, but which are seldom asked on forums. Once more, Robert Sheldon attempts to answer these unspoken questions.
22 CSS Libraries For Website Design | by Niemvuilaptrinh | Dec, 2021 | Medium
Normalize.css is a library that helps you build all elements more consistently when displayed in today’s popular browsers. I hope that the article will provide you with useful CSS libraries for web…
https://philipwalton.github.io/solved-by-flexbox/
https://tobiasahlin.com/spinkit/
https://connoratherton.com/loaders
https://github.com/AllThingsSmitty/css-protips
https://csslayout.io/close-button/
https://bansal.io/pattern-css
https://github.com/codrops/PageTransitions
https://lokesh-coder.github.io/pretty-checkbox/#basic-checkbox
Upgrade To Windows 11 Pro From Windows 11 Home Without Reinstalling Windows
Upgrade To Windows 11 Pro From Windows 11 Home Without Reinstalling Windows. Need a Cheap Win 10 pro OEM key (make sure you use code BR09 for a 35% discount) Check out the links below
▬ Windows 10 pro (£9.74) https://www.cdkeysales.com/microsoft-windows-10-pro-oem-cd-key-global.html
▬ Buy Office 2021 (£30.61) https://www.cdkeysales.com/office2021-professional-plus-cd-key-global.html
So you need a cheap windows 10 licence key, well I got you covered.
To get 35% off, use discount code: BR09
